msm-pcm-q6-noirq.c 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486
  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. substream = vol->pcm->streams[vol->stream].substream;
  637. if (!substream) {
  638. pr_err("%s substream not found\n", __func__);
  639. return -ENODEV;
  640. }
  641. soc_prtd = substream->private_data;
  642. if (!substream->runtime || !soc_prtd) {
  643. pr_debug("%s substream runtime or private_data not found\n",
  644. __func__);
  645. return 0;
  646. }
  647. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  648. if (!component) {
  649. pr_err("%s: component is NULL\n", __func__);
  650. return -EINVAL;
  651. }
  652. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  653. if (!pdata) {
  654. pr_err("%s: pdata not found\n", __func__);
  655. return -ENODEV;
  656. }
  657. mutex_lock(&pdata->lock);
  658. prtd = substream->runtime->private_data;
  659. if (prtd)
  660. ucontrol->value.integer.value[0] = prtd->volume;
  661. mutex_unlock(&pdata->lock);
  662. return 0;
  663. }
  664. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  665. struct snd_ctl_elem_value *ucontrol)
  666. {
  667. int rc = 0;
  668. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  669. struct msm_plat_data *pdata = NULL;
  670. struct snd_pcm_substream *substream =
  671. vol->pcm->streams[vol->stream].substream;
  672. struct snd_soc_pcm_runtime *soc_prtd = NULL;
  673. struct snd_soc_component *component = NULL;
  674. struct msm_audio *prtd;
  675. int volume = ucontrol->value.integer.value[0];
  676. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  677. if (!substream) {
  678. pr_err("%s substream not found\n", __func__);
  679. return -ENODEV;
  680. }
  681. soc_prtd = substream->private_data;
  682. if (!substream->runtime || !soc_prtd) {
  683. pr_err("%s substream runtime or private_data not found\n",
  684. __func__);
  685. return 0;
  686. }
  687. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  688. if (!component) {
  689. pr_err("%s: component is NULL\n", __func__);
  690. return -EINVAL;
  691. }
  692. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  693. if (!pdata) {
  694. pr_err("%s: pdata not found\n", __func__);
  695. return -ENODEV;
  696. }
  697. mutex_lock(&pdata->lock);
  698. prtd = substream->runtime->private_data;
  699. if (prtd) {
  700. rc = msm_pcm_set_volume(prtd, volume);
  701. prtd->volume = volume;
  702. }
  703. mutex_unlock(&pdata->lock);
  704. return rc;
  705. }
  706. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd,
  707. int stream)
  708. {
  709. int ret = 0;
  710. struct snd_pcm *pcm = rtd->pcm;
  711. struct snd_pcm_volume *volume_info;
  712. struct snd_kcontrol *kctl;
  713. dev_dbg(rtd->dev, "%s, volume control add\n", __func__);
  714. ret = snd_pcm_add_volume_ctls(pcm, stream,
  715. NULL, 1, rtd->dai_link->id,
  716. &volume_info);
  717. if (ret < 0) {
  718. pr_err("%s volume control failed ret %d\n", __func__, ret);
  719. return ret;
  720. }
  721. kctl = volume_info->kctl;
  722. kctl->put = msm_pcm_volume_ctl_put;
  723. kctl->get = msm_pcm_volume_ctl_get;
  724. kctl->tlv.p = msm_pcm_vol_gain;
  725. return 0;
  726. }
  727. #else
  728. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd,
  729. int stream)
  730. {
  731. return 0;
  732. }
  733. #endif /* CONFIG_AUDIO_QGKI */
  734. static int msm_pcm_channel_map_put(struct snd_kcontrol *kcontrol,
  735. struct snd_ctl_elem_value *ucontrol)
  736. {
  737. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  738. u64 fe_id = kcontrol->private_value;
  739. struct msm_plat_data *pdata = (struct msm_plat_data *)
  740. snd_soc_component_get_drvdata(pcm);
  741. int rc = 0, i = 0;
  742. pr_debug("%s: fe_id- %llu\n", __func__, fe_id);
  743. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  744. pr_err("%s Received out of bounds fe_id %llu\n",
  745. __func__, fe_id);
  746. rc = -EINVAL;
  747. goto end;
  748. }
  749. if (pdata->ch_map[fe_id]) {
  750. pdata->ch_map[fe_id]->set_ch_map = true;
  751. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  752. pdata->ch_map[fe_id]->channel_map[i] =
  753. (char)(ucontrol->value.integer.value[i]);
  754. } else {
  755. pr_debug("%s: no memory for ch_map, default will be set\n",
  756. __func__);
  757. }
  758. end:
  759. pr_debug("%s: ret %d\n", __func__, rc);
  760. return rc;
  761. }
  762. static int msm_pcm_channel_map_info(struct snd_kcontrol *kcontrol,
  763. struct snd_ctl_elem_info *uinfo)
  764. {
  765. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  766. uinfo->count = 8;
  767. uinfo->value.integer.min = 0;
  768. uinfo->value.integer.max = 0xFFFFFFFF;
  769. return 0;
  770. }
  771. static int msm_pcm_channel_map_get(struct snd_kcontrol *kcontrol,
  772. struct snd_ctl_elem_value *ucontrol)
  773. {
  774. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  775. u64 fe_id = kcontrol->private_value;
  776. struct msm_plat_data *pdata = (struct msm_plat_data *)
  777. snd_soc_component_get_drvdata(pcm);
  778. int rc = 0, i = 0;
  779. pr_debug("%s: fe_id- %llu\n", __func__, fe_id);
  780. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  781. pr_err("%s: Received out of bounds fe_id %llu\n",
  782. __func__, fe_id);
  783. rc = -EINVAL;
  784. goto end;
  785. }
  786. if (pdata->ch_map[fe_id]) {
  787. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  788. ucontrol->value.integer.value[i] =
  789. pdata->ch_map[fe_id]->channel_map[i];
  790. }
  791. end:
  792. pr_debug("%s: ret %d\n", __func__, rc);
  793. return rc;
  794. }
  795. static int msm_pcm_add_channel_map_control(struct snd_soc_pcm_runtime *rtd)
  796. {
  797. struct snd_soc_component *component = NULL;
  798. const char *mixer_ctl_name = "Playback Channel Map";
  799. const char *deviceNo = "NN";
  800. char *mixer_str = NULL;
  801. struct msm_plat_data *pdata = NULL;
  802. int ctl_len = 0;
  803. struct snd_kcontrol_new fe_channel_map_control[1] = {
  804. {
  805. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  806. .name = "?",
  807. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  808. .info = msm_pcm_channel_map_info,
  809. .get = msm_pcm_channel_map_get,
  810. .put = msm_pcm_channel_map_put,
  811. .private_value = 0,
  812. }
  813. };
  814. if (!rtd) {
  815. pr_err("%s: NULL rtd\n", __func__);
  816. return -EINVAL;
  817. }
  818. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  819. if (!component) {
  820. pr_err("%s: component is NULL\n", __func__);
  821. return -EINVAL;
  822. }
  823. pr_debug("%s: added new pcm FE with name %s, id %d, cpu dai %s, device no %d\n",
  824. __func__, rtd->dai_link->name, rtd->dai_link->id,
  825. rtd->dai_link->cpus->dai_name, rtd->pcm->device);
  826. ctl_len = strlen(mixer_ctl_name) + strlen(deviceNo) + 1;
  827. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  828. if (!mixer_str)
  829. return -ENOMEM;
  830. snprintf(mixer_str, ctl_len, "%s%d", mixer_ctl_name, rtd->pcm->device);
  831. fe_channel_map_control[0].name = mixer_str;
  832. fe_channel_map_control[0].private_value = rtd->dai_link->id;
  833. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  834. snd_soc_add_component_controls(component,
  835. fe_channel_map_control,
  836. ARRAY_SIZE(fe_channel_map_control));
  837. pdata = snd_soc_component_get_drvdata(component);
  838. pdata->ch_map[rtd->dai_link->id] =
  839. kzalloc(sizeof(struct msm_pcm_ch_map), GFP_KERNEL);
  840. if (!pdata->ch_map[rtd->dai_link->id]) {
  841. pr_err("%s: Could not allocate memory for channel map\n",
  842. __func__);
  843. kfree(mixer_str);
  844. return -ENOMEM;
  845. }
  846. kfree(mixer_str);
  847. return 0;
  848. }
  849. static int msm_pcm_fe_topology_info(struct snd_kcontrol *kcontrol,
  850. struct snd_ctl_elem_info *uinfo)
  851. {
  852. const struct soc_enum *e = &msm_pcm_fe_topology_enum[0];
  853. return snd_ctl_enum_info(uinfo, 1, e->items, e->texts);
  854. }
  855. static int msm_pcm_fe_topology_get(struct snd_kcontrol *kcontrol,
  856. struct snd_ctl_elem_value *ucontrol)
  857. {
  858. unsigned long fe_id = kcontrol->private_value;
  859. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  860. pr_err("%s Received out of bound fe_id %lu\n", __func__, fe_id);
  861. return -EINVAL;
  862. }
  863. pr_debug("%s: %lu topology %s\n", __func__, fe_id,
  864. msm_pcm_fe_topology_text[msm_pcm_fe_topology[fe_id]]);
  865. ucontrol->value.enumerated.item[0] = msm_pcm_fe_topology[fe_id];
  866. return 0;
  867. }
  868. static int msm_pcm_fe_topology_put(struct snd_kcontrol *kcontrol,
  869. struct snd_ctl_elem_value *ucontrol)
  870. {
  871. unsigned long fe_id = kcontrol->private_value;
  872. unsigned int item;
  873. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  874. pr_err("%s Received out of bound fe_id %lu\n", __func__, fe_id);
  875. return -EINVAL;
  876. }
  877. item = ucontrol->value.enumerated.item[0];
  878. if (item >= ARRAY_SIZE(msm_pcm_fe_topology_text)) {
  879. pr_err("%s Received out of bound topology %lu\n", __func__,
  880. fe_id);
  881. return -EINVAL;
  882. }
  883. pr_debug("%s: %lu new topology %s\n", __func__, fe_id,
  884. msm_pcm_fe_topology_text[item]);
  885. msm_pcm_fe_topology[fe_id] = item;
  886. return 0;
  887. }
  888. static int msm_pcm_add_fe_topology_control(struct snd_soc_pcm_runtime *rtd)
  889. {
  890. struct snd_soc_component *component = NULL;
  891. const char *mixer_ctl_name = "PCM_Dev";
  892. const char *deviceNo = "NN";
  893. const char *topo_text = "Topology";
  894. char *mixer_str = NULL;
  895. int ctl_len;
  896. int ret;
  897. struct snd_kcontrol_new topology_control[1] = {
  898. {
  899. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  900. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  901. .name = "?",
  902. .info = msm_pcm_fe_topology_info,
  903. .get = msm_pcm_fe_topology_get,
  904. .put = msm_pcm_fe_topology_put,
  905. .private_value = 0,
  906. },
  907. };
  908. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  909. if (!component) {
  910. pr_err("%s: component is NULL\n", __func__);
  911. return -EINVAL;
  912. }
  913. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1 +
  914. strlen(topo_text) + 1;
  915. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  916. if (!mixer_str)
  917. return -ENOMEM;
  918. snprintf(mixer_str, ctl_len, "%s %d %s", mixer_ctl_name,
  919. rtd->pcm->device, topo_text);
  920. topology_control[0].name = mixer_str;
  921. topology_control[0].private_value = rtd->dai_link->id;
  922. ret = snd_soc_add_component_controls(component, topology_control,
  923. ARRAY_SIZE(topology_control));
  924. msm_pcm_fe_topology[rtd->dai_link->id] = 0;
  925. kfree(mixer_str);
  926. return ret;
  927. }
  928. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  929. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  930. struct snd_ctl_elem_value *ucontrol)
  931. {
  932. u64 fe_id = kcontrol->private_value;
  933. int session_type = SESSION_TYPE_RX;
  934. int be_id = ucontrol->value.integer.value[3];
  935. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  936. int ret = 0;
  937. cfg_data.app_type = ucontrol->value.integer.value[0];
  938. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  939. if (ucontrol->value.integer.value[2] != 0)
  940. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  941. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  942. __func__, fe_id, session_type, be_id,
  943. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  944. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  945. be_id, &cfg_data);
  946. if (ret < 0)
  947. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  948. __func__, ret);
  949. return ret;
  950. }
  951. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  952. struct snd_ctl_elem_value *ucontrol)
  953. {
  954. u64 fe_id = kcontrol->private_value;
  955. int session_type = SESSION_TYPE_RX;
  956. int be_id = 0;
  957. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  958. int ret = 0;
  959. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  960. &be_id, &cfg_data);
  961. if (ret < 0) {
  962. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  963. __func__, ret);
  964. goto done;
  965. }
  966. ucontrol->value.integer.value[0] = cfg_data.app_type;
  967. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  968. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  969. ucontrol->value.integer.value[3] = be_id;
  970. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  971. __func__, fe_id, session_type, be_id,
  972. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  973. done:
  974. return ret;
  975. }
  976. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  977. struct snd_ctl_elem_value *ucontrol)
  978. {
  979. u64 fe_id = kcontrol->private_value;
  980. int session_type = SESSION_TYPE_TX;
  981. int be_id = ucontrol->value.integer.value[3];
  982. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  983. int ret = 0;
  984. cfg_data.app_type = ucontrol->value.integer.value[0];
  985. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  986. if (ucontrol->value.integer.value[2] != 0)
  987. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  988. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  989. __func__, fe_id, session_type, be_id,
  990. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  991. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  992. be_id, &cfg_data);
  993. if (ret < 0)
  994. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  995. __func__, ret);
  996. return ret;
  997. }
  998. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  999. struct snd_ctl_elem_value *ucontrol)
  1000. {
  1001. u64 fe_id = kcontrol->private_value;
  1002. int session_type = SESSION_TYPE_TX;
  1003. int be_id = 0;
  1004. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1005. int ret = 0;
  1006. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1007. &be_id, &cfg_data);
  1008. if (ret < 0) {
  1009. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1010. __func__, ret);
  1011. goto done;
  1012. }
  1013. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1014. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1015. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1016. ucontrol->value.integer.value[3] = be_id;
  1017. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1018. __func__, fe_id, session_type, be_id,
  1019. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1020. done:
  1021. return ret;
  1022. }
  1023. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1024. {
  1025. struct snd_pcm *pcm = rtd->pcm;
  1026. struct snd_pcm_usr *app_type_info;
  1027. struct snd_kcontrol *kctl;
  1028. const char *playback_mixer_ctl_name = "Audio Stream";
  1029. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  1030. const char *deviceNo = "NN";
  1031. const char *suffix = "App Type Cfg";
  1032. int ctl_len, ret = 0;
  1033. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  1034. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  1035. strlen(deviceNo) + 1 +
  1036. strlen(suffix) + 1;
  1037. pr_debug("%s: Playback app type cntrl add\n", __func__);
  1038. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1039. NULL, 1, ctl_len, rtd->dai_link->id,
  1040. &app_type_info);
  1041. if (ret < 0) {
  1042. pr_err("%s: playback app type cntrl add failed, err: %d\n",
  1043. __func__, ret);
  1044. return ret;
  1045. }
  1046. kctl = app_type_info->kctl;
  1047. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1048. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  1049. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  1050. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  1051. }
  1052. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  1053. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  1054. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1055. pr_debug("%s: Capture app type cntrl add\n", __func__);
  1056. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  1057. NULL, 1, ctl_len, rtd->dai_link->id,
  1058. &app_type_info);
  1059. if (ret < 0) {
  1060. pr_err("%s: capture app type cntrl add failed, err: %d\n",
  1061. __func__, ret);
  1062. return ret;
  1063. }
  1064. kctl = app_type_info->kctl;
  1065. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1066. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  1067. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  1068. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  1069. }
  1070. return 0;
  1071. }
  1072. #else
  1073. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1074. {
  1075. return 0;
  1076. }
  1077. #endif /* CONFIG_AUDIO_QGKI */
  1078. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1079. static int msm_pcm_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
  1080. unsigned int cmd, unsigned long arg)
  1081. {
  1082. int ret = 0;
  1083. struct snd_pcm *pcm = hw->private_data;
  1084. struct snd_pcm_mmap_fd __user *_mmap_fd = NULL;
  1085. struct snd_pcm_mmap_fd mmap_fd;
  1086. struct snd_pcm_substream *substream = NULL;
  1087. int32_t dir = -1;
  1088. switch (cmd) {
  1089. case SNDRV_PCM_IOCTL_MMAP_DATA_FD:
  1090. _mmap_fd = (struct snd_pcm_mmap_fd __user *)arg;
  1091. if (get_user(dir, (int32_t __user *)&(_mmap_fd->dir))) {
  1092. pr_err("%s: error copying mmap_fd from user\n",
  1093. __func__);
  1094. ret = -EFAULT;
  1095. break;
  1096. }
  1097. if (dir != OUT && dir != IN) {
  1098. pr_err("%s invalid stream dir\n", __func__);
  1099. ret = -EINVAL;
  1100. break;
  1101. }
  1102. substream = pcm->streams[dir].substream;
  1103. if (!substream) {
  1104. pr_err("%s substream not found\n", __func__);
  1105. ret = -ENODEV;
  1106. break;
  1107. }
  1108. pr_debug("%s : %s MMAP Data fd\n", __func__,
  1109. dir == 0 ? "P" : "C");
  1110. if (msm_pcm_mmap_fd(substream, &mmap_fd) < 0) {
  1111. pr_err("%s: error getting fd\n",
  1112. __func__);
  1113. ret = -EFAULT;
  1114. break;
  1115. }
  1116. if (put_user(mmap_fd.fd, &_mmap_fd->fd) ||
  1117. put_user(mmap_fd.size, &_mmap_fd->size) ||
  1118. put_user(mmap_fd.actual_size, &_mmap_fd->actual_size)) {
  1119. pr_err("%s: error copying fd\n", __func__);
  1120. return -EFAULT;
  1121. }
  1122. break;
  1123. default:
  1124. ret = -EINVAL;
  1125. break;
  1126. }
  1127. return ret;
  1128. }
  1129. #ifdef CONFIG_COMPAT
  1130. static int msm_pcm_hwdep_compat_ioctl(struct snd_hwdep *hw,
  1131. struct file *file,
  1132. unsigned int cmd,
  1133. unsigned long arg)
  1134. {
  1135. /* we only support mmap fd. Handling is common in both modes */
  1136. return msm_pcm_hwdep_ioctl(hw, file, cmd, arg);
  1137. }
  1138. #else
  1139. static int msm_pcm_hwdep_compat_ioctl(struct snd_hwdep *hw,
  1140. struct file *file,
  1141. unsigned int cmd,
  1142. unsigned long arg)
  1143. {
  1144. return -EINVAL;
  1145. }
  1146. #endif
  1147. static int msm_pcm_add_hwdep_dev(struct snd_soc_pcm_runtime *runtime)
  1148. {
  1149. struct snd_hwdep *hwdep;
  1150. int rc;
  1151. char id[] = "NOIRQ_NN";
  1152. snprintf(id, sizeof(id), "NOIRQ_%d", runtime->pcm->device);
  1153. pr_debug("%s: pcm dev %d\n", __func__, runtime->pcm->device);
  1154. rc = snd_hwdep_new(runtime->card->snd_card,
  1155. &id[0],
  1156. HWDEP_FE_BASE + runtime->pcm->device,
  1157. &hwdep);
  1158. if (!hwdep || rc < 0) {
  1159. pr_err("%s: hwdep intf failed to create %s - hwdep\n", __func__,
  1160. id);
  1161. return rc;
  1162. }
  1163. hwdep->iface = SNDRV_HWDEP_IFACE_AUDIO_BE; /* for lack of a FE iface */
  1164. hwdep->private_data = runtime->pcm; /* of type struct snd_pcm */
  1165. hwdep->ops.ioctl = msm_pcm_hwdep_ioctl;
  1166. hwdep->ops.ioctl_compat = msm_pcm_hwdep_compat_ioctl;
  1167. return 0;
  1168. }
  1169. #else
  1170. static int msm_pcm_add_hwdep_dev(struct snd_soc_pcm_runtime *runtime)
  1171. {
  1172. return 0;
  1173. }
  1174. #endif /* CONFIG_AUDIO_GKI */
  1175. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1176. {
  1177. struct snd_card *card = rtd->card->snd_card;
  1178. struct snd_pcm *pcm = rtd->pcm;
  1179. int ret;
  1180. pr_debug("%s , register new control\n", __func__);
  1181. if (!card->dev->coherent_dma_mask)
  1182. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1183. ret = msm_pcm_add_channel_map_control(rtd);
  1184. if (ret)
  1185. pr_err("%s: Could not add pcm Channel Map Control\n",
  1186. __func__);
  1187. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_PLAYBACK);
  1188. if (ret) {
  1189. pr_err("%s: Could not add pcm playback volume Control %d\n",
  1190. __func__, ret);
  1191. }
  1192. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_CAPTURE);
  1193. if (ret) {
  1194. pr_err("%s: Could not add pcm capture volume Control %d\n",
  1195. __func__, ret);
  1196. }
  1197. ret = msm_pcm_add_fe_topology_control(rtd);
  1198. if (ret) {
  1199. pr_err("%s: Could not add pcm topology control %d\n",
  1200. __func__, ret);
  1201. }
  1202. ret = msm_pcm_add_app_type_controls(rtd);
  1203. if (ret) {
  1204. pr_err("%s: Could not add app type controls failed %d\n",
  1205. __func__, ret);
  1206. }
  1207. ret = msm_pcm_add_hwdep_dev(rtd);
  1208. if (ret)
  1209. pr_err("%s: Could not add hw dep node\n", __func__);
  1210. pcm->nonatomic = true;
  1211. return ret;
  1212. }
  1213. static const struct snd_pcm_ops msm_pcm_ops = {
  1214. .open = msm_pcm_open,
  1215. .prepare = msm_pcm_prepare,
  1216. .copy_user = msm_pcm_copy,
  1217. .hw_params = msm_pcm_hw_params,
  1218. .ioctl = msm_pcm_ioctl,
  1219. #if IS_ENABLED(CONFIG_COMPAT) && IS_ENABLED(CONFIG_AUDIO_QGKI)
  1220. .compat_ioctl = msm_pcm_compat_ioctl,
  1221. #endif
  1222. .trigger = msm_pcm_trigger,
  1223. .pointer = msm_pcm_pointer,
  1224. .mmap = msm_pcm_mmap,
  1225. .close = msm_pcm_close,
  1226. };
  1227. static struct snd_soc_component_driver msm_soc_component = {
  1228. .name = DRV_NAME,
  1229. .ops = &msm_pcm_ops,
  1230. .pcm_new = msm_asoc_pcm_new,
  1231. };
  1232. static int msm_pcm_probe(struct platform_device *pdev)
  1233. {
  1234. int rc;
  1235. struct msm_plat_data *pdata;
  1236. const char *latency_level;
  1237. int perf_mode = LOW_LATENCY_PCM_MODE;
  1238. dev_dbg(&pdev->dev, "Pull mode driver probe\n");
  1239. if (of_property_read_bool(pdev->dev.of_node,
  1240. "qcom,msm-pcm-low-latency")) {
  1241. rc = of_property_read_string(pdev->dev.of_node,
  1242. "qcom,latency-level", &latency_level);
  1243. if (!rc) {
  1244. if (!strcmp(latency_level, "ultra"))
  1245. perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  1246. else if (!strcmp(latency_level, "ull-pp"))
  1247. perf_mode = ULL_POST_PROCESSING_PCM_MODE;
  1248. }
  1249. }
  1250. pdata = devm_kzalloc(&pdev->dev,
  1251. sizeof(struct msm_plat_data), GFP_KERNEL);
  1252. if (!pdata)
  1253. return -ENOMEM;
  1254. pdata->perf_mode = perf_mode;
  1255. mutex_init(&pdata->lock);
  1256. dev_set_drvdata(&pdev->dev, pdata);
  1257. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  1258. __func__, dev_name(&pdev->dev));
  1259. dev_dbg(&pdev->dev, "Pull mode driver register\n");
  1260. rc = snd_soc_register_component(&pdev->dev,
  1261. &msm_soc_component,
  1262. NULL, 0);
  1263. if (rc)
  1264. dev_err(&pdev->dev, "Failed to register pull mode driver\n");
  1265. return rc;
  1266. }
  1267. static int msm_pcm_remove(struct platform_device *pdev)
  1268. {
  1269. struct msm_plat_data *pdata;
  1270. dev_dbg(&pdev->dev, "Pull mode remove\n");
  1271. pdata = dev_get_drvdata(&pdev->dev);
  1272. mutex_destroy(&pdata->lock);
  1273. devm_kfree(&pdev->dev, pdata);
  1274. snd_soc_unregister_component(&pdev->dev);
  1275. return 0;
  1276. }
  1277. static const struct of_device_id msm_pcm_noirq_dt_match[] = {
  1278. {.compatible = "qcom,msm-pcm-dsp-noirq"},
  1279. {}
  1280. };
  1281. MODULE_DEVICE_TABLE(of, msm_pcm_noirq_dt_match);
  1282. static struct platform_driver msm_pcm_driver_noirq = {
  1283. .driver = {
  1284. .name = "msm-pcm-dsp-noirq",
  1285. .owner = THIS_MODULE,
  1286. .of_match_table = msm_pcm_noirq_dt_match,
  1287. .suppress_bind_attrs = true,
  1288. },
  1289. .probe = msm_pcm_probe,
  1290. .remove = msm_pcm_remove,
  1291. };
  1292. int __init msm_pcm_noirq_init(void)
  1293. {
  1294. return platform_driver_register(&msm_pcm_driver_noirq);
  1295. }
  1296. void msm_pcm_noirq_exit(void)
  1297. {
  1298. platform_driver_unregister(&msm_pcm_driver_noirq);
  1299. }
  1300. MODULE_DESCRIPTION("PCM NOIRQ module platform driver");
  1301. MODULE_LICENSE("GPL v2");