msm-pcm-q6-noirq.c 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/init.h>
  5. #include <linux/err.h>
  6. #include <linux/module.h>
  7. #include <linux/moduleparam.h>
  8. #include <linux/time.h>
  9. #include <linux/mutex.h>
  10. #include <linux/wait.h>
  11. #include <linux/platform_device.h>
  12. #include <linux/slab.h>
  13. #include <linux/of_device.h>
  14. #include <linux/dma-mapping.h>
  15. #include <linux/dma-buf.h>
  16. #include <sound/core.h>
  17. #include <sound/soc.h>
  18. #include <sound/soc-dapm.h>
  19. #include <sound/pcm.h>
  20. #include <sound/initval.h>
  21. #include <sound/control.h>
  22. #include <sound/timer.h>
  23. #include <sound/hwdep.h>
  24. #include <asm/dma.h>
  25. #include <sound/tlv.h>
  26. #include <sound/pcm_params.h>
  27. #include <audio/sound/devdep_params.h>
  28. #include <dsp/msm_audio_ion.h>
  29. #include <dsp/q6audio-v2.h>
  30. #include "msm-pcm-q6-v2.h"
  31. #include "msm-pcm-routing-v2.h"
  32. #define DRV_NAME "msm-pcm-q6-noirq"
  33. #define PCM_MASTER_VOL_MAX_STEPS 0x2000
  34. static const DECLARE_TLV_DB_LINEAR(msm_pcm_vol_gain, 0,
  35. PCM_MASTER_VOL_MAX_STEPS);
  36. struct snd_msm {
  37. struct snd_card *card;
  38. struct snd_pcm *pcm;
  39. };
  40. #define CMD_EOS_MIN_TIMEOUT_LENGTH 50
  41. #define CMD_EOS_TIMEOUT_MULTIPLIER (HZ * 50)
  42. #define ATRACE_END() \
  43. trace_printk("tracing_mark_write: E\n")
  44. #define ATRACE_BEGIN(name) \
  45. trace_printk("tracing_mark_write: B|%d|%s\n", current->tgid, name)
  46. #define ATRACE_FUNC() ATRACE_BEGIN(__func__)
  47. #define ATRACE_INT(name, value) \
  48. trace_printk("tracing_mark_write: C|%d|%s|%d\n", \
  49. current->tgid, name, (int)(value))
  50. #define SIO_PLAYBACK_MAX_PERIOD_SIZE PLAYBACK_MAX_PERIOD_SIZE
  51. #define SIO_PLAYBACK_MIN_PERIOD_SIZE 48
  52. #define SIO_PLAYBACK_MAX_NUM_PERIODS 512
  53. #define SIO_PLAYBACK_MIN_NUM_PERIODS PLAYBACK_MIN_NUM_PERIODS
  54. #define SIO_PLAYBACK_MIN_BYTES (SIO_PLAYBACK_MIN_NUM_PERIODS * \
  55. SIO_PLAYBACK_MIN_PERIOD_SIZE)
  56. #define SIO_PLAYBACK_MAX_BYTES ((SIO_PLAYBACK_MAX_NUM_PERIODS) * \
  57. (SIO_PLAYBACK_MAX_PERIOD_SIZE))
  58. #define SIO_CAPTURE_MAX_PERIOD_SIZE CAPTURE_MAX_PERIOD_SIZE
  59. #define SIO_CAPTURE_MIN_PERIOD_SIZE 48
  60. #define SIO_CAPTURE_MAX_NUM_PERIODS 512
  61. #define SIO_CAPTURE_MIN_NUM_PERIODS CAPTURE_MIN_NUM_PERIODS
  62. #define SIO_CAPTURE_MIN_BYTES (SIO_CAPTURE_MIN_NUM_PERIODS * \
  63. SIO_CAPTURE_MIN_PERIOD_SIZE)
  64. #define SIO_CAPTURE_MAX_BYTES (SIO_CAPTURE_MAX_NUM_PERIODS * \
  65. SIO_CAPTURE_MAX_PERIOD_SIZE)
  66. static struct snd_pcm_hardware msm_pcm_hardware_playback = {
  67. .info = (SNDRV_PCM_INFO_MMAP |
  68. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  69. SNDRV_PCM_INFO_MMAP_VALID |
  70. SNDRV_PCM_INFO_INTERLEAVED |
  71. SNDRV_PCM_INFO_NO_PERIOD_WAKEUP |
  72. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
  73. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  74. SNDRV_PCM_FMTBIT_S24_LE |
  75. SNDRV_PCM_FMTBIT_S24_3LE),
  76. .rates = SNDRV_PCM_RATE_8000_192000,
  77. .rate_min = 8000,
  78. .rate_max = 192000,
  79. .channels_min = 1,
  80. .channels_max = 8,
  81. .buffer_bytes_max = SIO_PLAYBACK_MAX_NUM_PERIODS *
  82. SIO_PLAYBACK_MAX_PERIOD_SIZE,
  83. .period_bytes_min = SIO_PLAYBACK_MIN_PERIOD_SIZE,
  84. .period_bytes_max = SIO_PLAYBACK_MAX_PERIOD_SIZE,
  85. .periods_min = SIO_PLAYBACK_MIN_NUM_PERIODS,
  86. .periods_max = SIO_PLAYBACK_MAX_NUM_PERIODS,
  87. .fifo_size = 0,
  88. };
  89. static struct snd_pcm_hardware msm_pcm_hardware_capture = {
  90. .info = (SNDRV_PCM_INFO_MMAP |
  91. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  92. SNDRV_PCM_INFO_MMAP_VALID |
  93. SNDRV_PCM_INFO_INTERLEAVED |
  94. SNDRV_PCM_INFO_NO_PERIOD_WAKEUP |
  95. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
  96. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  97. SNDRV_PCM_FMTBIT_S24_LE |
  98. SNDRV_PCM_FMTBIT_S24_3LE),
  99. .rates = SNDRV_PCM_RATE_8000_48000,
  100. .rate_min = 8000,
  101. .rate_max = 48000,
  102. .channels_min = 1,
  103. .channels_max = 4,
  104. .buffer_bytes_max = SIO_CAPTURE_MAX_NUM_PERIODS *
  105. SIO_CAPTURE_MAX_PERIOD_SIZE,
  106. .period_bytes_min = SIO_CAPTURE_MIN_PERIOD_SIZE,
  107. .period_bytes_max = SIO_CAPTURE_MAX_PERIOD_SIZE,
  108. .periods_min = SIO_CAPTURE_MIN_NUM_PERIODS,
  109. .periods_max = SIO_CAPTURE_MAX_NUM_PERIODS,
  110. .fifo_size = 0,
  111. };
  112. /* Conventional and unconventional sample rate supported */
  113. static unsigned int supported_sample_rates[] = {
  114. 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000,
  115. 88200, 96000, 176400, 192000
  116. };
  117. static struct snd_pcm_hw_constraint_list constraints_sample_rates = {
  118. .count = ARRAY_SIZE(supported_sample_rates),
  119. .list = supported_sample_rates,
  120. .mask = 0,
  121. };
  122. static unsigned long msm_pcm_fe_topology[MSM_FRONTEND_DAI_MAX];
  123. /* default value is DTS (i.e read from device tree) */
  124. static char const *msm_pcm_fe_topology_text[] = {
  125. "DTS", "ULL", "ULL_PP", "LL" };
  126. static const struct soc_enum msm_pcm_fe_topology_enum[] = {
  127. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(msm_pcm_fe_topology_text),
  128. msm_pcm_fe_topology_text),
  129. };
  130. static void event_handler(uint32_t opcode,
  131. uint32_t token, uint32_t *payload, void *priv)
  132. {
  133. uint32_t *ptrmem = (uint32_t *)payload;
  134. switch (opcode) {
  135. case ASM_DATA_EVENT_WATERMARK:
  136. pr_debug("%s: Watermark level = 0x%08x\n", __func__, *ptrmem);
  137. break;
  138. case APR_BASIC_RSP_RESULT:
  139. pr_debug("%s: Payload = [0x%x]stat[0x%x]\n",
  140. __func__, payload[0], payload[1]);
  141. switch (payload[0]) {
  142. case ASM_SESSION_CMD_RUN_V2:
  143. case ASM_SESSION_CMD_PAUSE:
  144. case ASM_STREAM_CMD_FLUSH:
  145. break;
  146. default:
  147. break;
  148. }
  149. break;
  150. default:
  151. pr_debug("Not Supported Event opcode[0x%x]\n", opcode);
  152. break;
  153. }
  154. }
  155. static int msm_pcm_open(struct snd_pcm_substream *substream)
  156. {
  157. struct snd_pcm_runtime *runtime = substream->runtime;
  158. struct msm_audio *prtd;
  159. int ret = 0;
  160. enum apr_subsys_state subsys_state;
  161. subsys_state = apr_get_subsys_state();
  162. if (subsys_state == APR_SUBSYS_DOWN) {
  163. pr_debug("%s: adsp is down\n", __func__);
  164. return -ENETRESET;
  165. }
  166. prtd = kzalloc(sizeof(struct msm_audio), GFP_KERNEL);
  167. if (prtd == NULL)
  168. return -ENOMEM;
  169. prtd->substream = substream;
  170. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  171. runtime->hw = msm_pcm_hardware_playback;
  172. else
  173. runtime->hw = msm_pcm_hardware_capture;
  174. ret = snd_pcm_hw_constraint_list(runtime, 0,
  175. SNDRV_PCM_HW_PARAM_RATE,
  176. &constraints_sample_rates);
  177. if (ret)
  178. pr_info("snd_pcm_hw_constraint_list failed\n");
  179. ret = snd_pcm_hw_constraint_integer(runtime,
  180. SNDRV_PCM_HW_PARAM_PERIODS);
  181. if (ret)
  182. pr_info("snd_pcm_hw_constraint_integer failed\n");
  183. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  184. ret = snd_pcm_hw_constraint_minmax(runtime,
  185. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  186. SIO_PLAYBACK_MIN_BYTES,
  187. SIO_PLAYBACK_MAX_BYTES);
  188. if (ret) {
  189. pr_info("%s: P buffer bytes minmax constraint ret %d\n",
  190. __func__, ret);
  191. }
  192. } else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  193. ret = snd_pcm_hw_constraint_minmax(runtime,
  194. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  195. SIO_CAPTURE_MIN_BYTES,
  196. SIO_CAPTURE_MAX_BYTES);
  197. if (ret) {
  198. pr_info("%s: C buffer bytes minmax constraint ret %d\n",
  199. __func__, ret);
  200. }
  201. }
  202. ret = snd_pcm_hw_constraint_step(runtime, 0,
  203. SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 32);
  204. if (ret) {
  205. pr_err("%s: Constraint for period bytes step ret = %d\n",
  206. __func__, ret);
  207. }
  208. ret = snd_pcm_hw_constraint_step(runtime, 0,
  209. SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 32);
  210. if (ret) {
  211. pr_err("%s: Constraint for buffer bytes step ret = %d\n",
  212. __func__, ret);
  213. }
  214. prtd->audio_client = q6asm_audio_client_alloc(
  215. (app_cb)event_handler, prtd);
  216. if (!prtd->audio_client) {
  217. pr_err("%s: client alloc failed\n", __func__);
  218. ret = -ENOMEM;
  219. goto fail_cmd;
  220. }
  221. prtd->dsp_cnt = 0;
  222. prtd->set_channel_map = false;
  223. runtime->private_data = prtd;
  224. return 0;
  225. fail_cmd:
  226. kfree(prtd);
  227. return ret;
  228. }
  229. static int msm_pcm_hw_params(struct snd_pcm_substream *substream,
  230. struct snd_pcm_hw_params *params)
  231. {
  232. struct snd_pcm_runtime *runtime = substream->runtime;
  233. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  234. struct snd_soc_component *component =
  235. snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  236. struct msm_audio *prtd = runtime->private_data;
  237. struct msm_plat_data *pdata;
  238. struct snd_dma_buffer *dma_buf = &substream->dma_buffer;
  239. struct audio_buffer *buf;
  240. struct shared_io_config config;
  241. uint16_t sample_word_size;
  242. uint16_t bits_per_sample;
  243. int ret;
  244. int dir = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? IN : OUT;
  245. unsigned long topology;
  246. int perf_mode;
  247. bool use_default_chmap = true;
  248. char *chmap = NULL;
  249. if (!component) {
  250. pr_err("%s: component is NULL\n", __func__);
  251. return -EINVAL;
  252. }
  253. pdata = (struct msm_plat_data *)
  254. dev_get_drvdata(component->dev);
  255. if (!pdata) {
  256. ret = -EINVAL;
  257. pr_err("%s: platform data not populated ret: %d\n", __func__,
  258. ret);
  259. return ret;
  260. }
  261. topology = msm_pcm_fe_topology[soc_prtd->dai_link->id];
  262. if (!strcmp(msm_pcm_fe_topology_text[topology], "ULL_PP"))
  263. perf_mode = ULL_POST_PROCESSING_PCM_MODE;
  264. else if (!strcmp(msm_pcm_fe_topology_text[topology], "ULL"))
  265. perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  266. else if (!strcmp(msm_pcm_fe_topology_text[topology], "LL"))
  267. perf_mode = LOW_LATENCY_PCM_MODE;
  268. else
  269. /* use the default from the device tree */
  270. perf_mode = pdata->perf_mode;
  271. /* need to set LOW_LATENCY_PCM_MODE for capture since
  272. * push mode does not support ULL
  273. */
  274. prtd->audio_client->perf_mode = (dir == IN) ?
  275. perf_mode :
  276. LOW_LATENCY_PCM_MODE;
  277. /* rate and channels are sent to audio driver */
  278. prtd->samp_rate = params_rate(params);
  279. prtd->channel_mode = params_channels(params);
  280. if (prtd->enabled)
  281. return 0;
  282. if (pdata->ch_map[soc_prtd->dai_link->id]) {
  283. use_default_chmap =
  284. !(pdata->ch_map[soc_prtd->dai_link->id]->set_ch_map);
  285. chmap =
  286. pdata->ch_map[soc_prtd->dai_link->id]->channel_map;
  287. }
  288. switch (runtime->format) {
  289. case SNDRV_PCM_FORMAT_S24_LE:
  290. bits_per_sample = 24;
  291. sample_word_size = 32;
  292. break;
  293. case SNDRV_PCM_FORMAT_S24_3LE:
  294. bits_per_sample = 24;
  295. sample_word_size = 24;
  296. break;
  297. case SNDRV_PCM_FORMAT_S16_LE:
  298. default:
  299. bits_per_sample = 16;
  300. sample_word_size = 16;
  301. break;
  302. }
  303. config.format = FORMAT_LINEAR_PCM;
  304. config.bits_per_sample = bits_per_sample;
  305. config.rate = params_rate(params);
  306. config.channels = params_channels(params);
  307. config.sample_word_size = sample_word_size;
  308. config.bufsz = params_buffer_bytes(params) / params_periods(params);
  309. config.bufcnt = params_periods(params);
  310. ret = q6asm_open_shared_io(prtd->audio_client, &config, dir,
  311. use_default_chmap, chmap);
  312. if (ret) {
  313. pr_err("%s: q6asm_open_write_shared_io failed ret: %d\n",
  314. __func__, ret);
  315. return ret;
  316. }
  317. prtd->pcm_size = params_buffer_bytes(params);
  318. prtd->pcm_count = params_buffer_bytes(params);
  319. prtd->pcm_irq_pos = 0;
  320. buf = prtd->audio_client->port[dir].buf;
  321. dma_buf->dev.type = SNDRV_DMA_TYPE_DEV;
  322. dma_buf->dev.dev = substream->pcm->card->dev;
  323. dma_buf->private_data = NULL;
  324. dma_buf->area = buf->data;
  325. dma_buf->addr = buf->phys;
  326. dma_buf->bytes = prtd->pcm_size;
  327. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  328. pr_debug("%s: session ID %d, perf %d\n", __func__,
  329. prtd->audio_client->session,
  330. prtd->audio_client->perf_mode);
  331. prtd->session_id = prtd->audio_client->session;
  332. pr_debug("msm_pcm_routing_reg_phy_stream w/ id %d\n",
  333. soc_prtd->dai_link->id);
  334. ret = msm_pcm_routing_reg_phy_stream(soc_prtd->dai_link->id,
  335. prtd->audio_client->perf_mode,
  336. prtd->session_id, substream->stream);
  337. if (ret) {
  338. pr_err("%s: stream reg failed ret:%d\n", __func__, ret);
  339. return ret;
  340. }
  341. atomic_set(&prtd->out_count, runtime->periods);
  342. prtd->enabled = 1;
  343. prtd->cmd_pending = 0;
  344. prtd->cmd_interrupt = 0;
  345. return 0;
  346. }
  347. static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  348. {
  349. int ret = 0;
  350. struct snd_pcm_runtime *runtime = substream->runtime;
  351. struct msm_audio *prtd = runtime->private_data;
  352. int dir = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? 0 : 1;
  353. struct audio_buffer *buf;
  354. switch (cmd) {
  355. case SNDRV_PCM_TRIGGER_START:
  356. case SNDRV_PCM_TRIGGER_RESUME:
  357. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  358. pr_debug("%s: %s Trigger start\n", __func__,
  359. dir == 0 ? "P" : "C");
  360. ret = q6asm_run(prtd->audio_client, 0, 0, 0);
  361. if (ret)
  362. break;
  363. atomic_set(&prtd->start, 1);
  364. break;
  365. case SNDRV_PCM_TRIGGER_STOP:
  366. pr_debug("%s: SNDRV_PCM_TRIGGER_STOP\n", __func__);
  367. atomic_set(&prtd->start, 0);
  368. q6asm_cmd(prtd->audio_client, CMD_PAUSE);
  369. q6asm_cmd(prtd->audio_client, CMD_FLUSH);
  370. buf = q6asm_shared_io_buf(prtd->audio_client, dir);
  371. if (buf == NULL) {
  372. pr_err("%s: shared IO buffer is null\n", __func__);
  373. ret = -EINVAL;
  374. break;
  375. }
  376. memset(buf->data, 0, buf->actual_size);
  377. break;
  378. case SNDRV_PCM_TRIGGER_SUSPEND:
  379. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  380. pr_debug("%s: SNDRV_PCM_TRIGGER_PAUSE\n", __func__);
  381. ret = q6asm_cmd_nowait(prtd->audio_client, CMD_PAUSE);
  382. atomic_set(&prtd->start, 0);
  383. break;
  384. default:
  385. ret = -EINVAL;
  386. break;
  387. }
  388. return ret;
  389. }
  390. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  391. static int msm_pcm_mmap_fd(struct snd_pcm_substream *substream,
  392. struct snd_pcm_mmap_fd *mmap_fd)
  393. {
  394. struct msm_audio *prtd;
  395. struct audio_port_data *apd;
  396. struct audio_buffer *ab;
  397. int dir = -1;
  398. struct dma_buf *buf = NULL;
  399. int rc = 0;
  400. if (!substream->runtime) {
  401. pr_err("%s substream runtime not found\n", __func__);
  402. return -EFAULT;
  403. }
  404. prtd = substream->runtime->private_data;
  405. if (!prtd || !prtd->audio_client || !prtd->mmap_flag) {
  406. pr_err("%s no audio client or not an mmap session\n", __func__);
  407. return -EINVAL;
  408. }
  409. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  410. dir = IN;
  411. else
  412. dir = OUT;
  413. apd = prtd->audio_client->port;
  414. ab = &(apd[dir].buf[0]);
  415. /*
  416. * Passing O_CLOEXEC as flag passed to fd, to be in sync with
  417. * previous implimentation.
  418. * This was the flag used by previous internal wrapper API, which
  419. * used to call dma_buf_fd internally.
  420. */
  421. mmap_fd->fd = dma_buf_fd(ab->dma_buf, O_CLOEXEC);
  422. if (mmap_fd->fd < 0) {
  423. pr_err("%s: dma_buf_fd failed, fd:%d\n",
  424. __func__, mmap_fd->fd);
  425. rc = -EFAULT;
  426. goto buf_fd_fail;
  427. }
  428. mmap_fd->dir = dir;
  429. mmap_fd->actual_size = ab->actual_size;
  430. mmap_fd->size = ab->size;
  431. buf = dma_buf_get(mmap_fd->fd);
  432. if (IS_ERR_OR_NULL(buf)) {
  433. pr_err("%s: dma_buf_get failed, fd:%d\n",
  434. __func__, mmap_fd->fd);
  435. rc = -EINVAL;
  436. }
  437. buf_fd_fail:
  438. return rc;
  439. }
  440. #endif /* CONFIG_AUDIO_QGKI */
  441. static int msm_pcm_ioctl(struct snd_pcm_substream *substream,
  442. unsigned int cmd, void *arg)
  443. {
  444. struct snd_pcm_runtime *runtime = substream->runtime;
  445. struct msm_audio *prtd = runtime->private_data;
  446. int dir = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? 0 : 1;
  447. struct audio_buffer *buf;
  448. switch (cmd) {
  449. case SNDRV_PCM_IOCTL1_RESET:
  450. pr_debug("%s: %s SNDRV_PCM_IOCTL1_RESET\n", __func__,
  451. dir == 0 ? "P" : "C");
  452. buf = q6asm_shared_io_buf(prtd->audio_client, dir);
  453. if (buf && buf->data)
  454. memset(buf->data, 0, buf->actual_size);
  455. break;
  456. default:
  457. break;
  458. }
  459. return snd_pcm_lib_ioctl(substream, cmd, arg);
  460. }
  461. #if IS_ENABLED(CONFIG_COMPAT) && IS_ENABLED(CONFIG_AUDIO_QGKI)
  462. static int msm_pcm_compat_ioctl(struct snd_pcm_substream *substream,
  463. unsigned int cmd, void *arg)
  464. {
  465. /* we only handle RESET which is common for both modes */
  466. return msm_pcm_ioctl(substream, cmd, arg);
  467. }
  468. #endif
  469. static snd_pcm_uframes_t msm_pcm_pointer(struct snd_pcm_substream *substream)
  470. {
  471. struct snd_pcm_runtime *runtime = substream->runtime;
  472. uint32_t read_index, wall_clk_msw, wall_clk_lsw;
  473. /*these are offsets, unlike ASoC's full values*/
  474. snd_pcm_sframes_t hw_ptr;
  475. snd_pcm_sframes_t period_size;
  476. int ret;
  477. int retries = 10;
  478. struct msm_audio *prtd = runtime->private_data;
  479. period_size = runtime->period_size;
  480. do {
  481. ret = q6asm_get_shared_pos(prtd->audio_client,
  482. &read_index, &wall_clk_msw,
  483. &wall_clk_lsw);
  484. } while (ret == -EAGAIN && --retries);
  485. if (ret || !period_size) {
  486. pr_err("get_shared_pos error or zero period size\n");
  487. return 0;
  488. }
  489. hw_ptr = bytes_to_frames(substream->runtime,
  490. read_index);
  491. if (runtime->control->appl_ptr == 0) {
  492. pr_debug("ptr(%s): appl(0), hw = %lu read_index = %u\n",
  493. prtd->substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
  494. "P" : "C",
  495. hw_ptr, read_index);
  496. }
  497. return (hw_ptr/period_size) * period_size;
  498. }
  499. static int msm_pcm_copy(struct snd_pcm_substream *substream, int a,
  500. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  501. {
  502. return -EINVAL;
  503. }
  504. static int msm_pcm_mmap(struct snd_pcm_substream *substream,
  505. struct vm_area_struct *vma)
  506. {
  507. struct snd_pcm_runtime *runtime = substream->runtime;
  508. struct msm_audio *prtd = runtime->private_data;
  509. struct audio_client *ac = prtd->audio_client;
  510. struct audio_port_data *apd = ac->port;
  511. struct audio_buffer *ab;
  512. int dir = -1;
  513. int ret;
  514. pr_debug("%s: mmap begin\n", __func__);
  515. prtd->mmap_flag = 1;
  516. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  517. dir = IN;
  518. else
  519. dir = OUT;
  520. ab = &(apd[dir].buf[0]);
  521. ret = msm_audio_ion_mmap(ab, vma);
  522. if (ret)
  523. prtd->mmap_flag = 0;
  524. return ret;
  525. }
  526. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  527. {
  528. int rc = 0;
  529. struct snd_pcm_runtime *runtime = substream->runtime;
  530. struct msm_audio *prtd = runtime->private_data;
  531. struct asm_softvolume_params softvol = {
  532. .period = SOFT_VOLUME_PERIOD,
  533. .step = SOFT_VOLUME_STEP,
  534. .rampingcurve = SOFT_VOLUME_CURVE_LINEAR,
  535. };
  536. if (!prtd || !prtd->mmap_flag)
  537. return -EIO;
  538. if (prtd->audio_client) {
  539. rc = q6asm_set_softvolume_v2(prtd->audio_client,
  540. &softvol, SOFT_VOLUME_INSTANCE_1);
  541. if (rc < 0)
  542. pr_err("%s: Send SoftVolume command failed rc=%d\n",
  543. __func__, rc);
  544. }
  545. return rc;
  546. }
  547. static int msm_pcm_close(struct snd_pcm_substream *substream)
  548. {
  549. struct msm_plat_data *pdata = NULL;
  550. struct snd_soc_component *component = NULL;
  551. struct snd_pcm_runtime *runtime = substream->runtime;
  552. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  553. struct msm_audio *prtd = runtime->private_data;
  554. struct audio_client *ac = prtd->audio_client;
  555. uint32_t timeout;
  556. int dir = 0;
  557. int ret = 0;
  558. if (!soc_prtd) {
  559. pr_debug("%s private_data not found\n",
  560. __func__);
  561. return 0;
  562. }
  563. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  564. if (!component) {
  565. pr_err("%s: component is NULL\n", __func__);
  566. return -EINVAL;
  567. }
  568. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  569. if (!pdata) {
  570. pr_err("%s: pdata not found\n", __func__);
  571. return -ENODEV;
  572. }
  573. mutex_lock(&pdata->lock);
  574. if (ac) {
  575. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  576. dir = IN;
  577. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  578. dir = OUT;
  579. /* determine timeout length */
  580. if (runtime->frame_bits == 0 || runtime->rate == 0) {
  581. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  582. } else {
  583. timeout = (runtime->period_size *
  584. CMD_EOS_TIMEOUT_MULTIPLIER) /
  585. ((runtime->frame_bits / 8) *
  586. runtime->rate);
  587. if (timeout < CMD_EOS_MIN_TIMEOUT_LENGTH)
  588. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  589. }
  590. q6asm_cmd(ac, CMD_CLOSE);
  591. ret = q6asm_shared_io_free(ac, dir);
  592. if (ret) {
  593. pr_err("%s: Failed to close pull mode, ret %d\n",
  594. __func__, ret);
  595. }
  596. q6asm_audio_client_free(ac);
  597. }
  598. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  599. dir == IN ?
  600. SNDRV_PCM_STREAM_PLAYBACK :
  601. SNDRV_PCM_STREAM_CAPTURE);
  602. kfree(prtd);
  603. runtime->private_data = NULL;
  604. mutex_unlock(&pdata->lock);
  605. return 0;
  606. }
  607. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  608. static int msm_pcm_set_volume(struct msm_audio *prtd, uint32_t volume)
  609. {
  610. int rc = 0;
  611. if (prtd && prtd->audio_client) {
  612. pr_debug("%s: channels %d volume 0x%x\n", __func__,
  613. prtd->channel_mode, volume);
  614. rc = q6asm_set_volume(prtd->audio_client, volume);
  615. if (rc < 0) {
  616. pr_err("%s: Send Volume command failed rc=%d\n",
  617. __func__, rc);
  618. }
  619. }
  620. return rc;
  621. }
  622. static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
  623. struct snd_ctl_elem_value *ucontrol)
  624. {
  625. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  626. struct msm_plat_data *pdata = NULL;
  627. struct snd_pcm_substream *substream = NULL;
  628. struct snd_soc_pcm_runtime *soc_prtd = NULL;
  629. struct snd_soc_component *component = NULL;
  630. struct msm_audio *prtd;
  631. pr_debug("%s\n", __func__);
  632. if (!vol) {
  633. pr_err("%s: vol is NULL\n", __func__);
  634. return -ENODEV;
  635. }
  636. if (!vol->pcm) {
  637. pr_err("%s: vol->pcm is NULL\n", __func__);
  638. return -ENODEV;
  639. }
  640. substream = vol->pcm->streams[vol->stream].substream;
  641. if (!substream) {
  642. pr_err("%s substream not found\n", __func__);
  643. return -ENODEV;
  644. }
  645. soc_prtd = substream->private_data;
  646. if (!substream->runtime || !soc_prtd) {
  647. pr_debug("%s substream runtime or private_data not found\n",
  648. __func__);
  649. return 0;
  650. }
  651. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  652. if (!component) {
  653. pr_err("%s: component is NULL\n", __func__);
  654. return -EINVAL;
  655. }
  656. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  657. if (!pdata) {
  658. pr_err("%s: pdata not found\n", __func__);
  659. return -ENODEV;
  660. }
  661. mutex_lock(&pdata->lock);
  662. if (substream->ref_count > 0) {
  663. prtd = substream->runtime->private_data;
  664. if (prtd)
  665. ucontrol->value.integer.value[0] = prtd->volume;
  666. }
  667. mutex_unlock(&pdata->lock);
  668. return 0;
  669. }
  670. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  671. struct snd_ctl_elem_value *ucontrol)
  672. {
  673. int rc = 0;
  674. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  675. struct msm_plat_data *pdata = NULL;
  676. struct snd_pcm_substream *substream =
  677. vol->pcm->streams[vol->stream].substream;
  678. struct snd_soc_pcm_runtime *soc_prtd = NULL;
  679. struct snd_soc_component *component = NULL;
  680. struct msm_audio *prtd;
  681. int volume = ucontrol->value.integer.value[0];
  682. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  683. if (!substream) {
  684. pr_err("%s substream not found\n", __func__);
  685. return -ENODEV;
  686. }
  687. soc_prtd = substream->private_data;
  688. if (!substream->runtime || !soc_prtd) {
  689. pr_err("%s substream runtime or private_data not found\n",
  690. __func__);
  691. return 0;
  692. }
  693. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  694. if (!component) {
  695. pr_err("%s: component is NULL\n", __func__);
  696. return -EINVAL;
  697. }
  698. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  699. if (!pdata) {
  700. pr_err("%s: pdata not found\n", __func__);
  701. return -ENODEV;
  702. }
  703. mutex_lock(&pdata->lock);
  704. if (substream->ref_count > 0) {
  705. prtd = substream->runtime->private_data;
  706. if (prtd) {
  707. rc = msm_pcm_set_volume(prtd, volume);
  708. prtd->volume = volume;
  709. }
  710. }
  711. mutex_unlock(&pdata->lock);
  712. return rc;
  713. }
  714. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd,
  715. int stream)
  716. {
  717. int ret = 0;
  718. struct snd_pcm *pcm = rtd->pcm;
  719. struct snd_pcm_volume *volume_info;
  720. struct snd_kcontrol *kctl;
  721. dev_dbg(rtd->dev, "%s, volume control add\n", __func__);
  722. ret = snd_pcm_add_volume_ctls(pcm, stream,
  723. NULL, 1, rtd->dai_link->id,
  724. &volume_info);
  725. if (ret < 0) {
  726. pr_err("%s volume control failed ret %d\n", __func__, ret);
  727. return ret;
  728. }
  729. kctl = volume_info->kctl;
  730. kctl->put = msm_pcm_volume_ctl_put;
  731. kctl->get = msm_pcm_volume_ctl_get;
  732. kctl->tlv.p = msm_pcm_vol_gain;
  733. return 0;
  734. }
  735. #else
  736. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd,
  737. int stream)
  738. {
  739. return 0;
  740. }
  741. #endif /* CONFIG_AUDIO_QGKI */
  742. static int msm_pcm_channel_map_put(struct snd_kcontrol *kcontrol,
  743. struct snd_ctl_elem_value *ucontrol)
  744. {
  745. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  746. u64 fe_id = kcontrol->private_value;
  747. struct msm_plat_data *pdata = (struct msm_plat_data *)
  748. snd_soc_component_get_drvdata(pcm);
  749. int rc = 0, i = 0;
  750. pr_debug("%s: fe_id- %llu\n", __func__, fe_id);
  751. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  752. pr_err("%s Received out of bounds fe_id %llu\n",
  753. __func__, fe_id);
  754. rc = -EINVAL;
  755. goto end;
  756. }
  757. if (pdata->ch_map[fe_id]) {
  758. pdata->ch_map[fe_id]->set_ch_map = true;
  759. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  760. pdata->ch_map[fe_id]->channel_map[i] =
  761. (char)(ucontrol->value.integer.value[i]);
  762. } else {
  763. pr_debug("%s: no memory for ch_map, default will be set\n",
  764. __func__);
  765. }
  766. end:
  767. pr_debug("%s: ret %d\n", __func__, rc);
  768. return rc;
  769. }
  770. static int msm_pcm_channel_map_info(struct snd_kcontrol *kcontrol,
  771. struct snd_ctl_elem_info *uinfo)
  772. {
  773. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  774. uinfo->count = 8;
  775. uinfo->value.integer.min = 0;
  776. uinfo->value.integer.max = 0xFFFFFFFF;
  777. return 0;
  778. }
  779. static int msm_pcm_channel_map_get(struct snd_kcontrol *kcontrol,
  780. struct snd_ctl_elem_value *ucontrol)
  781. {
  782. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  783. u64 fe_id = kcontrol->private_value;
  784. struct msm_plat_data *pdata = (struct msm_plat_data *)
  785. snd_soc_component_get_drvdata(pcm);
  786. int rc = 0, i = 0;
  787. pr_debug("%s: fe_id- %llu\n", __func__, fe_id);
  788. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  789. pr_err("%s: Received out of bounds fe_id %llu\n",
  790. __func__, fe_id);
  791. rc = -EINVAL;
  792. goto end;
  793. }
  794. if (pdata->ch_map[fe_id]) {
  795. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  796. ucontrol->value.integer.value[i] =
  797. pdata->ch_map[fe_id]->channel_map[i];
  798. }
  799. end:
  800. pr_debug("%s: ret %d\n", __func__, rc);
  801. return rc;
  802. }
  803. static int msm_pcm_add_channel_map_control(struct snd_soc_pcm_runtime *rtd)
  804. {
  805. struct snd_soc_component *component = NULL;
  806. const char *mixer_ctl_name = "Playback Channel Map";
  807. const char *deviceNo = "NN";
  808. char *mixer_str = NULL;
  809. struct msm_plat_data *pdata = NULL;
  810. int ctl_len = 0;
  811. struct snd_kcontrol_new fe_channel_map_control[1] = {
  812. {
  813. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  814. .name = "?",
  815. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  816. .info = msm_pcm_channel_map_info,
  817. .get = msm_pcm_channel_map_get,
  818. .put = msm_pcm_channel_map_put,
  819. .private_value = 0,
  820. }
  821. };
  822. if (!rtd) {
  823. pr_err("%s: NULL rtd\n", __func__);
  824. return -EINVAL;
  825. }
  826. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  827. if (!component) {
  828. pr_err("%s: component is NULL\n", __func__);
  829. return -EINVAL;
  830. }
  831. pr_debug("%s: added new pcm FE with name %s, id %d, cpu dai %s, device no %d\n",
  832. __func__, rtd->dai_link->name, rtd->dai_link->id,
  833. rtd->dai_link->cpus->dai_name, rtd->pcm->device);
  834. ctl_len = strlen(mixer_ctl_name) + strlen(deviceNo) + 1;
  835. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  836. if (!mixer_str)
  837. return -ENOMEM;
  838. snprintf(mixer_str, ctl_len, "%s%d", mixer_ctl_name, rtd->pcm->device);
  839. fe_channel_map_control[0].name = mixer_str;
  840. fe_channel_map_control[0].private_value = rtd->dai_link->id;
  841. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  842. snd_soc_add_component_controls(component,
  843. fe_channel_map_control,
  844. ARRAY_SIZE(fe_channel_map_control));
  845. pdata = snd_soc_component_get_drvdata(component);
  846. pdata->ch_map[rtd->dai_link->id] =
  847. kzalloc(sizeof(struct msm_pcm_ch_map), GFP_KERNEL);
  848. if (!pdata->ch_map[rtd->dai_link->id]) {
  849. pr_err("%s: Could not allocate memory for channel map\n",
  850. __func__);
  851. kfree(mixer_str);
  852. return -ENOMEM;
  853. }
  854. kfree(mixer_str);
  855. return 0;
  856. }
  857. static int msm_pcm_fe_topology_info(struct snd_kcontrol *kcontrol,
  858. struct snd_ctl_elem_info *uinfo)
  859. {
  860. const struct soc_enum *e = &msm_pcm_fe_topology_enum[0];
  861. return snd_ctl_enum_info(uinfo, 1, e->items, e->texts);
  862. }
  863. static int msm_pcm_fe_topology_get(struct snd_kcontrol *kcontrol,
  864. struct snd_ctl_elem_value *ucontrol)
  865. {
  866. unsigned long fe_id = kcontrol->private_value;
  867. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  868. pr_err("%s Received out of bound fe_id %lu\n", __func__, fe_id);
  869. return -EINVAL;
  870. }
  871. pr_debug("%s: %lu topology %s\n", __func__, fe_id,
  872. msm_pcm_fe_topology_text[msm_pcm_fe_topology[fe_id]]);
  873. ucontrol->value.enumerated.item[0] = msm_pcm_fe_topology[fe_id];
  874. return 0;
  875. }
  876. static int msm_pcm_fe_topology_put(struct snd_kcontrol *kcontrol,
  877. struct snd_ctl_elem_value *ucontrol)
  878. {
  879. unsigned long fe_id = kcontrol->private_value;
  880. unsigned int item;
  881. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  882. pr_err("%s Received out of bound fe_id %lu\n", __func__, fe_id);
  883. return -EINVAL;
  884. }
  885. item = ucontrol->value.enumerated.item[0];
  886. if (item >= ARRAY_SIZE(msm_pcm_fe_topology_text)) {
  887. pr_err("%s Received out of bound topology %lu\n", __func__,
  888. fe_id);
  889. return -EINVAL;
  890. }
  891. pr_debug("%s: %lu new topology %s\n", __func__, fe_id,
  892. msm_pcm_fe_topology_text[item]);
  893. msm_pcm_fe_topology[fe_id] = item;
  894. return 0;
  895. }
  896. static int msm_pcm_add_fe_topology_control(struct snd_soc_pcm_runtime *rtd)
  897. {
  898. struct snd_soc_component *component = NULL;
  899. const char *mixer_ctl_name = "PCM_Dev";
  900. const char *deviceNo = "NN";
  901. const char *topo_text = "Topology";
  902. char *mixer_str = NULL;
  903. int ctl_len;
  904. int ret;
  905. struct snd_kcontrol_new topology_control[1] = {
  906. {
  907. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  908. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  909. .name = "?",
  910. .info = msm_pcm_fe_topology_info,
  911. .get = msm_pcm_fe_topology_get,
  912. .put = msm_pcm_fe_topology_put,
  913. .private_value = 0,
  914. },
  915. };
  916. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  917. if (!component) {
  918. pr_err("%s: component is NULL\n", __func__);
  919. return -EINVAL;
  920. }
  921. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1 +
  922. strlen(topo_text) + 1;
  923. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  924. if (!mixer_str)
  925. return -ENOMEM;
  926. snprintf(mixer_str, ctl_len, "%s %d %s", mixer_ctl_name,
  927. rtd->pcm->device, topo_text);
  928. topology_control[0].name = mixer_str;
  929. topology_control[0].private_value = rtd->dai_link->id;
  930. ret = snd_soc_add_component_controls(component, topology_control,
  931. ARRAY_SIZE(topology_control));
  932. msm_pcm_fe_topology[rtd->dai_link->id] = 0;
  933. kfree(mixer_str);
  934. return ret;
  935. }
  936. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  937. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  938. struct snd_ctl_elem_value *ucontrol)
  939. {
  940. u64 fe_id = kcontrol->private_value;
  941. int session_type = SESSION_TYPE_RX;
  942. int be_id = ucontrol->value.integer.value[3];
  943. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  944. int ret = 0;
  945. cfg_data.app_type = ucontrol->value.integer.value[0];
  946. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  947. if (ucontrol->value.integer.value[2] != 0)
  948. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  949. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  950. __func__, fe_id, session_type, be_id,
  951. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  952. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  953. be_id, &cfg_data);
  954. if (ret < 0)
  955. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  956. __func__, ret);
  957. return ret;
  958. }
  959. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  960. struct snd_ctl_elem_value *ucontrol)
  961. {
  962. u64 fe_id = kcontrol->private_value;
  963. int session_type = SESSION_TYPE_RX;
  964. int be_id = 0;
  965. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  966. int ret = 0;
  967. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  968. &be_id, &cfg_data);
  969. if (ret < 0) {
  970. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  971. __func__, ret);
  972. goto done;
  973. }
  974. ucontrol->value.integer.value[0] = cfg_data.app_type;
  975. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  976. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  977. ucontrol->value.integer.value[3] = be_id;
  978. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  979. __func__, fe_id, session_type, be_id,
  980. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  981. done:
  982. return ret;
  983. }
  984. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  985. struct snd_ctl_elem_value *ucontrol)
  986. {
  987. u64 fe_id = kcontrol->private_value;
  988. int session_type = SESSION_TYPE_TX;
  989. int be_id = ucontrol->value.integer.value[3];
  990. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  991. int ret = 0;
  992. cfg_data.app_type = ucontrol->value.integer.value[0];
  993. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  994. if (ucontrol->value.integer.value[2] != 0)
  995. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  996. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  997. __func__, fe_id, session_type, be_id,
  998. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  999. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1000. be_id, &cfg_data);
  1001. if (ret < 0)
  1002. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1003. __func__, ret);
  1004. return ret;
  1005. }
  1006. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1007. struct snd_ctl_elem_value *ucontrol)
  1008. {
  1009. u64 fe_id = kcontrol->private_value;
  1010. int session_type = SESSION_TYPE_TX;
  1011. int be_id = 0;
  1012. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1013. int ret = 0;
  1014. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1015. &be_id, &cfg_data);
  1016. if (ret < 0) {
  1017. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1018. __func__, ret);
  1019. goto done;
  1020. }
  1021. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1022. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1023. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1024. ucontrol->value.integer.value[3] = be_id;
  1025. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1026. __func__, fe_id, session_type, be_id,
  1027. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1028. done:
  1029. return ret;
  1030. }
  1031. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1032. {
  1033. struct snd_pcm *pcm = rtd->pcm;
  1034. struct snd_pcm_usr *app_type_info;
  1035. struct snd_kcontrol *kctl;
  1036. const char *playback_mixer_ctl_name = "Audio Stream";
  1037. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  1038. const char *deviceNo = "NN";
  1039. const char *suffix = "App Type Cfg";
  1040. int ctl_len, ret = 0;
  1041. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  1042. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  1043. strlen(deviceNo) + 1 +
  1044. strlen(suffix) + 1;
  1045. pr_debug("%s: Playback app type cntrl add\n", __func__);
  1046. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1047. NULL, 1, ctl_len, rtd->dai_link->id,
  1048. &app_type_info);
  1049. if (ret < 0) {
  1050. pr_err("%s: playback app type cntrl add failed, err: %d\n",
  1051. __func__, ret);
  1052. return ret;
  1053. }
  1054. kctl = app_type_info->kctl;
  1055. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1056. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  1057. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  1058. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  1059. }
  1060. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  1061. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  1062. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1063. pr_debug("%s: Capture app type cntrl add\n", __func__);
  1064. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  1065. NULL, 1, ctl_len, rtd->dai_link->id,
  1066. &app_type_info);
  1067. if (ret < 0) {
  1068. pr_err("%s: capture app type cntrl add failed, err: %d\n",
  1069. __func__, ret);
  1070. return ret;
  1071. }
  1072. kctl = app_type_info->kctl;
  1073. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1074. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  1075. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  1076. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  1077. }
  1078. return 0;
  1079. }
  1080. #else
  1081. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1082. {
  1083. return 0;
  1084. }
  1085. #endif /* CONFIG_AUDIO_QGKI */
  1086. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1087. static int msm_pcm_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
  1088. unsigned int cmd, unsigned long arg)
  1089. {
  1090. int ret = 0;
  1091. struct snd_pcm *pcm = hw->private_data;
  1092. struct snd_pcm_mmap_fd __user *_mmap_fd = NULL;
  1093. struct snd_pcm_mmap_fd mmap_fd;
  1094. struct snd_pcm_substream *substream = NULL;
  1095. int32_t dir = -1;
  1096. switch (cmd) {
  1097. case SNDRV_PCM_IOCTL_MMAP_DATA_FD:
  1098. _mmap_fd = (struct snd_pcm_mmap_fd __user *)arg;
  1099. if (get_user(dir, (int32_t __user *)&(_mmap_fd->dir))) {
  1100. pr_err("%s: error copying mmap_fd from user\n",
  1101. __func__);
  1102. ret = -EFAULT;
  1103. break;
  1104. }
  1105. if (dir != OUT && dir != IN) {
  1106. pr_err("%s invalid stream dir\n", __func__);
  1107. ret = -EINVAL;
  1108. break;
  1109. }
  1110. substream = pcm->streams[dir].substream;
  1111. if (!substream) {
  1112. pr_err("%s substream not found\n", __func__);
  1113. ret = -ENODEV;
  1114. break;
  1115. }
  1116. pr_debug("%s : %s MMAP Data fd\n", __func__,
  1117. dir == 0 ? "P" : "C");
  1118. if (msm_pcm_mmap_fd(substream, &mmap_fd) < 0) {
  1119. pr_err("%s: error getting fd\n",
  1120. __func__);
  1121. ret = -EFAULT;
  1122. break;
  1123. }
  1124. if (put_user(mmap_fd.fd, &_mmap_fd->fd) ||
  1125. put_user(mmap_fd.size, &_mmap_fd->size) ||
  1126. put_user(mmap_fd.actual_size, &_mmap_fd->actual_size)) {
  1127. pr_err("%s: error copying fd\n", __func__);
  1128. return -EFAULT;
  1129. }
  1130. break;
  1131. default:
  1132. ret = -EINVAL;
  1133. break;
  1134. }
  1135. return ret;
  1136. }
  1137. #ifdef CONFIG_COMPAT
  1138. static int msm_pcm_hwdep_compat_ioctl(struct snd_hwdep *hw,
  1139. struct file *file,
  1140. unsigned int cmd,
  1141. unsigned long arg)
  1142. {
  1143. /* we only support mmap fd. Handling is common in both modes */
  1144. return msm_pcm_hwdep_ioctl(hw, file, cmd, arg);
  1145. }
  1146. #else
  1147. static int msm_pcm_hwdep_compat_ioctl(struct snd_hwdep *hw,
  1148. struct file *file,
  1149. unsigned int cmd,
  1150. unsigned long arg)
  1151. {
  1152. return -EINVAL;
  1153. }
  1154. #endif
  1155. static int msm_pcm_add_hwdep_dev(struct snd_soc_pcm_runtime *runtime)
  1156. {
  1157. struct snd_hwdep *hwdep;
  1158. int rc;
  1159. char id[] = "NOIRQ_NN";
  1160. snprintf(id, sizeof(id), "NOIRQ_%d", runtime->pcm->device);
  1161. pr_debug("%s: pcm dev %d\n", __func__, runtime->pcm->device);
  1162. rc = snd_hwdep_new(runtime->card->snd_card,
  1163. &id[0],
  1164. HWDEP_FE_BASE + runtime->pcm->device,
  1165. &hwdep);
  1166. if (!hwdep || rc < 0) {
  1167. pr_err("%s: hwdep intf failed to create %s - hwdep\n", __func__,
  1168. id);
  1169. return rc;
  1170. }
  1171. hwdep->iface = SNDRV_HWDEP_IFACE_AUDIO_BE; /* for lack of a FE iface */
  1172. hwdep->private_data = runtime->pcm; /* of type struct snd_pcm */
  1173. hwdep->ops.ioctl = msm_pcm_hwdep_ioctl;
  1174. hwdep->ops.ioctl_compat = msm_pcm_hwdep_compat_ioctl;
  1175. return 0;
  1176. }
  1177. #else
  1178. static int msm_pcm_add_hwdep_dev(struct snd_soc_pcm_runtime *runtime)
  1179. {
  1180. return 0;
  1181. }
  1182. #endif /* CONFIG_AUDIO_GKI */
  1183. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1184. {
  1185. struct snd_card *card = rtd->card->snd_card;
  1186. struct snd_pcm *pcm = rtd->pcm;
  1187. int ret;
  1188. pr_debug("%s , register new control\n", __func__);
  1189. if (!card->dev->coherent_dma_mask)
  1190. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1191. ret = msm_pcm_add_channel_map_control(rtd);
  1192. if (ret)
  1193. pr_err("%s: Could not add pcm Channel Map Control\n",
  1194. __func__);
  1195. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_PLAYBACK);
  1196. if (ret) {
  1197. pr_err("%s: Could not add pcm playback volume Control %d\n",
  1198. __func__, ret);
  1199. }
  1200. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_CAPTURE);
  1201. if (ret) {
  1202. pr_err("%s: Could not add pcm capture volume Control %d\n",
  1203. __func__, ret);
  1204. }
  1205. ret = msm_pcm_add_fe_topology_control(rtd);
  1206. if (ret) {
  1207. pr_err("%s: Could not add pcm topology control %d\n",
  1208. __func__, ret);
  1209. }
  1210. ret = msm_pcm_add_app_type_controls(rtd);
  1211. if (ret) {
  1212. pr_err("%s: Could not add app type controls failed %d\n",
  1213. __func__, ret);
  1214. }
  1215. ret = msm_pcm_add_hwdep_dev(rtd);
  1216. if (ret)
  1217. pr_err("%s: Could not add hw dep node\n", __func__);
  1218. pcm->nonatomic = true;
  1219. return ret;
  1220. }
  1221. static const struct snd_pcm_ops msm_pcm_ops = {
  1222. .open = msm_pcm_open,
  1223. .prepare = msm_pcm_prepare,
  1224. .copy_user = msm_pcm_copy,
  1225. .hw_params = msm_pcm_hw_params,
  1226. .ioctl = msm_pcm_ioctl,
  1227. #if IS_ENABLED(CONFIG_COMPAT) && IS_ENABLED(CONFIG_AUDIO_QGKI)
  1228. .compat_ioctl = msm_pcm_compat_ioctl,
  1229. #endif
  1230. .trigger = msm_pcm_trigger,
  1231. .pointer = msm_pcm_pointer,
  1232. .mmap = msm_pcm_mmap,
  1233. .close = msm_pcm_close,
  1234. };
  1235. static struct snd_soc_component_driver msm_soc_component = {
  1236. .name = DRV_NAME,
  1237. .ops = &msm_pcm_ops,
  1238. .pcm_new = msm_asoc_pcm_new,
  1239. };
  1240. static int msm_pcm_probe(struct platform_device *pdev)
  1241. {
  1242. int rc;
  1243. struct msm_plat_data *pdata;
  1244. const char *latency_level;
  1245. int perf_mode = LOW_LATENCY_PCM_MODE;
  1246. dev_dbg(&pdev->dev, "Pull mode driver probe\n");
  1247. if (of_property_read_bool(pdev->dev.of_node,
  1248. "qcom,msm-pcm-low-latency")) {
  1249. rc = of_property_read_string(pdev->dev.of_node,
  1250. "qcom,latency-level", &latency_level);
  1251. if (!rc) {
  1252. if (!strcmp(latency_level, "ultra"))
  1253. perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  1254. else if (!strcmp(latency_level, "ull-pp"))
  1255. perf_mode = ULL_POST_PROCESSING_PCM_MODE;
  1256. }
  1257. }
  1258. pdata = devm_kzalloc(&pdev->dev,
  1259. sizeof(struct msm_plat_data), GFP_KERNEL);
  1260. if (!pdata)
  1261. return -ENOMEM;
  1262. pdata->perf_mode = perf_mode;
  1263. mutex_init(&pdata->lock);
  1264. dev_set_drvdata(&pdev->dev, pdata);
  1265. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  1266. __func__, dev_name(&pdev->dev));
  1267. dev_dbg(&pdev->dev, "Pull mode driver register\n");
  1268. rc = snd_soc_register_component(&pdev->dev,
  1269. &msm_soc_component,
  1270. NULL, 0);
  1271. if (rc)
  1272. dev_err(&pdev->dev, "Failed to register pull mode driver\n");
  1273. return rc;
  1274. }
  1275. static int msm_pcm_remove(struct platform_device *pdev)
  1276. {
  1277. struct msm_plat_data *pdata;
  1278. dev_dbg(&pdev->dev, "Pull mode remove\n");
  1279. pdata = dev_get_drvdata(&pdev->dev);
  1280. mutex_destroy(&pdata->lock);
  1281. devm_kfree(&pdev->dev, pdata);
  1282. snd_soc_unregister_component(&pdev->dev);
  1283. return 0;
  1284. }
  1285. static const struct of_device_id msm_pcm_noirq_dt_match[] = {
  1286. {.compatible = "qcom,msm-pcm-dsp-noirq"},
  1287. {}
  1288. };
  1289. MODULE_DEVICE_TABLE(of, msm_pcm_noirq_dt_match);
  1290. static struct platform_driver msm_pcm_driver_noirq = {
  1291. .driver = {
  1292. .name = "msm-pcm-dsp-noirq",
  1293. .owner = THIS_MODULE,
  1294. .of_match_table = msm_pcm_noirq_dt_match,
  1295. .suppress_bind_attrs = true,
  1296. },
  1297. .probe = msm_pcm_probe,
  1298. .remove = msm_pcm_remove,
  1299. };
  1300. int __init msm_pcm_noirq_init(void)
  1301. {
  1302. return platform_driver_register(&msm_pcm_driver_noirq);
  1303. }
  1304. void msm_pcm_noirq_exit(void)
  1305. {
  1306. platform_driver_unregister(&msm_pcm_driver_noirq);
  1307. }
  1308. MODULE_DESCRIPTION("PCM NOIRQ module platform driver");
  1309. MODULE_LICENSE("GPL v2");