msm-pcm-q6-noirq.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2016-2019, 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 <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. static int msm_pcm_mmap_fd(struct snd_pcm_substream *substream,
  391. struct snd_pcm_mmap_fd *mmap_fd)
  392. {
  393. struct msm_audio *prtd;
  394. struct audio_port_data *apd;
  395. struct audio_buffer *ab;
  396. int dir = -1;
  397. struct dma_buf *buf = NULL;
  398. int rc = 0;
  399. if (!substream->runtime) {
  400. pr_err("%s substream runtime not found\n", __func__);
  401. return -EFAULT;
  402. }
  403. prtd = substream->runtime->private_data;
  404. if (!prtd || !prtd->audio_client || !prtd->mmap_flag) {
  405. pr_err("%s no audio client or not an mmap session\n", __func__);
  406. return -EINVAL;
  407. }
  408. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  409. dir = IN;
  410. else
  411. dir = OUT;
  412. apd = prtd->audio_client->port;
  413. ab = &(apd[dir].buf[0]);
  414. /*
  415. * Passing O_CLOEXEC as flag passed to fd, to be in sync with
  416. * previous implimentation.
  417. * This was the flag used by previous internal wrapper API, which
  418. * used to call dma_buf_fd internally.
  419. */
  420. mmap_fd->fd = dma_buf_fd(ab->dma_buf, O_CLOEXEC);
  421. if (mmap_fd->fd < 0) {
  422. pr_err("%s: dma_buf_fd failed, fd:%d\n",
  423. __func__, mmap_fd->fd);
  424. rc = -EFAULT;
  425. goto buf_fd_fail;
  426. }
  427. mmap_fd->dir = dir;
  428. mmap_fd->actual_size = ab->actual_size;
  429. mmap_fd->size = ab->size;
  430. buf = dma_buf_get(mmap_fd->fd);
  431. if (IS_ERR_OR_NULL(buf)) {
  432. pr_err("%s: dma_buf_get failed, fd:%d\n",
  433. __func__, mmap_fd->fd);
  434. rc = -EINVAL;
  435. }
  436. buf_fd_fail:
  437. return rc;
  438. }
  439. static int msm_pcm_ioctl(struct snd_pcm_substream *substream,
  440. unsigned int cmd, void *arg)
  441. {
  442. struct snd_pcm_runtime *runtime = substream->runtime;
  443. struct msm_audio *prtd = runtime->private_data;
  444. int dir = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? 0 : 1;
  445. struct audio_buffer *buf;
  446. switch (cmd) {
  447. case SNDRV_PCM_IOCTL1_RESET:
  448. pr_debug("%s: %s SNDRV_PCM_IOCTL1_RESET\n", __func__,
  449. dir == 0 ? "P" : "C");
  450. buf = q6asm_shared_io_buf(prtd->audio_client, dir);
  451. if (buf && buf->data)
  452. memset(buf->data, 0, buf->actual_size);
  453. break;
  454. default:
  455. break;
  456. }
  457. return snd_pcm_lib_ioctl(substream, cmd, arg);
  458. }
  459. #ifdef CONFIG_COMPAT
  460. static int msm_pcm_compat_ioctl(struct snd_pcm_substream *substream,
  461. unsigned int cmd, void *arg)
  462. {
  463. /* we only handle RESET which is common for both modes */
  464. return msm_pcm_ioctl(substream, cmd, arg);
  465. }
  466. #endif
  467. static snd_pcm_uframes_t msm_pcm_pointer(struct snd_pcm_substream *substream)
  468. {
  469. struct snd_pcm_runtime *runtime = substream->runtime;
  470. uint32_t read_index, wall_clk_msw, wall_clk_lsw;
  471. /*these are offsets, unlike ASoC's full values*/
  472. snd_pcm_sframes_t hw_ptr;
  473. snd_pcm_sframes_t period_size;
  474. int ret;
  475. int retries = 10;
  476. struct msm_audio *prtd = runtime->private_data;
  477. period_size = runtime->period_size;
  478. do {
  479. ret = q6asm_get_shared_pos(prtd->audio_client,
  480. &read_index, &wall_clk_msw,
  481. &wall_clk_lsw);
  482. } while (ret == -EAGAIN && --retries);
  483. if (ret || !period_size) {
  484. pr_err("get_shared_pos error or zero period size\n");
  485. return 0;
  486. }
  487. hw_ptr = bytes_to_frames(substream->runtime,
  488. read_index);
  489. if (runtime->control->appl_ptr == 0) {
  490. pr_debug("ptr(%s): appl(0), hw = %lu read_index = %u\n",
  491. prtd->substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
  492. "P" : "C",
  493. hw_ptr, read_index);
  494. }
  495. return (hw_ptr/period_size) * period_size;
  496. }
  497. static int msm_pcm_copy(struct snd_pcm_substream *substream, int a,
  498. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  499. {
  500. return -EINVAL;
  501. }
  502. static int msm_pcm_mmap(struct snd_pcm_substream *substream,
  503. struct vm_area_struct *vma)
  504. {
  505. struct snd_pcm_runtime *runtime = substream->runtime;
  506. struct msm_audio *prtd = runtime->private_data;
  507. struct audio_client *ac = prtd->audio_client;
  508. struct audio_port_data *apd = ac->port;
  509. struct audio_buffer *ab;
  510. int dir = -1;
  511. int ret;
  512. pr_debug("%s: mmap begin\n", __func__);
  513. prtd->mmap_flag = 1;
  514. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  515. dir = IN;
  516. else
  517. dir = OUT;
  518. ab = &(apd[dir].buf[0]);
  519. ret = msm_audio_ion_mmap(ab, vma);
  520. if (ret)
  521. prtd->mmap_flag = 0;
  522. return ret;
  523. }
  524. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  525. {
  526. int rc = 0;
  527. struct snd_pcm_runtime *runtime = substream->runtime;
  528. struct msm_audio *prtd = runtime->private_data;
  529. struct asm_softvolume_params softvol = {
  530. .period = SOFT_VOLUME_PERIOD,
  531. .step = SOFT_VOLUME_STEP,
  532. .rampingcurve = SOFT_VOLUME_CURVE_LINEAR,
  533. };
  534. if (!prtd || !prtd->mmap_flag)
  535. return -EIO;
  536. if (prtd->audio_client) {
  537. rc = q6asm_set_softvolume_v2(prtd->audio_client,
  538. &softvol, SOFT_VOLUME_INSTANCE_1);
  539. if (rc < 0)
  540. pr_err("%s: Send SoftVolume command failed rc=%d\n",
  541. __func__, rc);
  542. }
  543. return rc;
  544. }
  545. static int msm_pcm_close(struct snd_pcm_substream *substream)
  546. {
  547. struct msm_plat_data *pdata = NULL;
  548. struct snd_soc_component *component = NULL;
  549. struct snd_pcm_runtime *runtime = substream->runtime;
  550. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  551. struct msm_audio *prtd = runtime->private_data;
  552. struct audio_client *ac = prtd->audio_client;
  553. uint32_t timeout;
  554. int dir = 0;
  555. int ret = 0;
  556. if (!soc_prtd) {
  557. pr_debug("%s private_data not found\n",
  558. __func__);
  559. return 0;
  560. }
  561. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  562. if (!component) {
  563. pr_err("%s: component is NULL\n", __func__);
  564. return -EINVAL;
  565. }
  566. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  567. if (!pdata) {
  568. pr_err("%s: pdata not found\n", __func__);
  569. return -ENODEV;
  570. }
  571. mutex_lock(&pdata->lock);
  572. if (ac) {
  573. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  574. dir = IN;
  575. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  576. dir = OUT;
  577. /* determine timeout length */
  578. if (runtime->frame_bits == 0 || runtime->rate == 0) {
  579. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  580. } else {
  581. timeout = (runtime->period_size *
  582. CMD_EOS_TIMEOUT_MULTIPLIER) /
  583. ((runtime->frame_bits / 8) *
  584. runtime->rate);
  585. if (timeout < CMD_EOS_MIN_TIMEOUT_LENGTH)
  586. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  587. }
  588. q6asm_cmd(ac, CMD_CLOSE);
  589. ret = q6asm_shared_io_free(ac, dir);
  590. if (ret) {
  591. pr_err("%s: Failed to close pull mode, ret %d\n",
  592. __func__, ret);
  593. }
  594. q6asm_audio_client_free(ac);
  595. }
  596. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  597. dir == IN ?
  598. SNDRV_PCM_STREAM_PLAYBACK :
  599. SNDRV_PCM_STREAM_CAPTURE);
  600. kfree(prtd);
  601. runtime->private_data = NULL;
  602. mutex_unlock(&pdata->lock);
  603. return 0;
  604. }
  605. static int msm_pcm_set_volume(struct msm_audio *prtd, uint32_t volume)
  606. {
  607. int rc = 0;
  608. if (prtd && prtd->audio_client) {
  609. pr_debug("%s: channels %d volume 0x%x\n", __func__,
  610. prtd->channel_mode, volume);
  611. rc = q6asm_set_volume(prtd->audio_client, volume);
  612. if (rc < 0) {
  613. pr_err("%s: Send Volume command failed rc=%d\n",
  614. __func__, rc);
  615. }
  616. }
  617. return rc;
  618. }
  619. static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
  620. struct snd_ctl_elem_value *ucontrol)
  621. {
  622. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  623. struct msm_plat_data *pdata = NULL;
  624. struct snd_pcm_substream *substream =
  625. vol->pcm->streams[vol->stream].substream;
  626. struct snd_soc_pcm_runtime *soc_prtd = NULL;
  627. struct snd_soc_component *component = NULL;
  628. struct msm_audio *prtd;
  629. pr_debug("%s\n", __func__);
  630. if (!substream) {
  631. pr_err("%s substream not found\n", __func__);
  632. return -ENODEV;
  633. }
  634. soc_prtd = substream->private_data;
  635. if (!substream->runtime || !soc_prtd) {
  636. pr_debug("%s substream runtime or private_data not found\n",
  637. __func__);
  638. return 0;
  639. }
  640. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  641. if (!component) {
  642. pr_err("%s: component is NULL\n", __func__);
  643. return -EINVAL;
  644. }
  645. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  646. if (!pdata) {
  647. pr_err("%s: pdata not found\n", __func__);
  648. return -ENODEV;
  649. }
  650. mutex_lock(&pdata->lock);
  651. prtd = substream->runtime->private_data;
  652. if (prtd)
  653. ucontrol->value.integer.value[0] = prtd->volume;
  654. mutex_unlock(&pdata->lock);
  655. return 0;
  656. }
  657. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  658. struct snd_ctl_elem_value *ucontrol)
  659. {
  660. int rc = 0;
  661. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  662. struct msm_plat_data *pdata = NULL;
  663. struct snd_pcm_substream *substream =
  664. vol->pcm->streams[vol->stream].substream;
  665. struct snd_soc_pcm_runtime *soc_prtd = NULL;
  666. struct snd_soc_component *component = NULL;
  667. struct msm_audio *prtd;
  668. int volume = ucontrol->value.integer.value[0];
  669. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  670. if (!substream) {
  671. pr_err("%s substream not found\n", __func__);
  672. return -ENODEV;
  673. }
  674. soc_prtd = substream->private_data;
  675. if (!substream->runtime || !soc_prtd) {
  676. pr_err("%s substream runtime or private_data not found\n",
  677. __func__);
  678. return 0;
  679. }
  680. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  681. if (!component) {
  682. pr_err("%s: component is NULL\n", __func__);
  683. return -EINVAL;
  684. }
  685. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  686. if (!pdata) {
  687. pr_err("%s: pdata not found\n", __func__);
  688. return -ENODEV;
  689. }
  690. mutex_lock(&pdata->lock);
  691. prtd = substream->runtime->private_data;
  692. if (prtd) {
  693. rc = msm_pcm_set_volume(prtd, volume);
  694. prtd->volume = volume;
  695. }
  696. mutex_unlock(&pdata->lock);
  697. return rc;
  698. }
  699. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd,
  700. int stream)
  701. {
  702. int ret = 0;
  703. struct snd_pcm *pcm = rtd->pcm;
  704. struct snd_pcm_volume *volume_info;
  705. struct snd_kcontrol *kctl;
  706. dev_dbg(rtd->dev, "%s, volume control add\n", __func__);
  707. ret = snd_pcm_add_volume_ctls(pcm, stream,
  708. NULL, 1, rtd->dai_link->id,
  709. &volume_info);
  710. if (ret < 0) {
  711. pr_err("%s volume control failed ret %d\n", __func__, ret);
  712. return ret;
  713. }
  714. kctl = volume_info->kctl;
  715. kctl->put = msm_pcm_volume_ctl_put;
  716. kctl->get = msm_pcm_volume_ctl_get;
  717. kctl->tlv.p = msm_pcm_vol_gain;
  718. return 0;
  719. }
  720. static int msm_pcm_channel_map_put(struct snd_kcontrol *kcontrol,
  721. struct snd_ctl_elem_value *ucontrol)
  722. {
  723. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  724. u64 fe_id = kcontrol->private_value;
  725. struct msm_plat_data *pdata = (struct msm_plat_data *)
  726. snd_soc_component_get_drvdata(pcm);
  727. int rc = 0, i = 0;
  728. pr_debug("%s: fe_id- %llu\n", __func__, fe_id);
  729. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  730. pr_err("%s Received out of bounds fe_id %llu\n",
  731. __func__, fe_id);
  732. rc = -EINVAL;
  733. goto end;
  734. }
  735. if (pdata->ch_map[fe_id]) {
  736. pdata->ch_map[fe_id]->set_ch_map = true;
  737. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  738. pdata->ch_map[fe_id]->channel_map[i] =
  739. (char)(ucontrol->value.integer.value[i]);
  740. } else {
  741. pr_debug("%s: no memory for ch_map, default will be set\n",
  742. __func__);
  743. }
  744. end:
  745. pr_debug("%s: ret %d\n", __func__, rc);
  746. return rc;
  747. }
  748. static int msm_pcm_channel_map_info(struct snd_kcontrol *kcontrol,
  749. struct snd_ctl_elem_info *uinfo)
  750. {
  751. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  752. uinfo->count = 8;
  753. uinfo->value.integer.min = 0;
  754. uinfo->value.integer.max = 0xFFFFFFFF;
  755. return 0;
  756. }
  757. static int msm_pcm_channel_map_get(struct snd_kcontrol *kcontrol,
  758. struct snd_ctl_elem_value *ucontrol)
  759. {
  760. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  761. u64 fe_id = kcontrol->private_value;
  762. struct msm_plat_data *pdata = (struct msm_plat_data *)
  763. snd_soc_component_get_drvdata(pcm);
  764. int rc = 0, i = 0;
  765. pr_debug("%s: fe_id- %llu\n", __func__, fe_id);
  766. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  767. pr_err("%s: Received out of bounds fe_id %llu\n",
  768. __func__, fe_id);
  769. rc = -EINVAL;
  770. goto end;
  771. }
  772. if (pdata->ch_map[fe_id]) {
  773. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  774. ucontrol->value.integer.value[i] =
  775. pdata->ch_map[fe_id]->channel_map[i];
  776. }
  777. end:
  778. pr_debug("%s: ret %d\n", __func__, rc);
  779. return rc;
  780. }
  781. static int msm_pcm_add_channel_map_control(struct snd_soc_pcm_runtime *rtd)
  782. {
  783. struct snd_soc_component *component = NULL;
  784. const char *mixer_ctl_name = "Playback Channel Map";
  785. const char *deviceNo = "NN";
  786. char *mixer_str = NULL;
  787. struct msm_plat_data *pdata = NULL;
  788. int ctl_len = 0;
  789. struct snd_kcontrol_new fe_channel_map_control[1] = {
  790. {
  791. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  792. .name = "?",
  793. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  794. .info = msm_pcm_channel_map_info,
  795. .get = msm_pcm_channel_map_get,
  796. .put = msm_pcm_channel_map_put,
  797. .private_value = 0,
  798. }
  799. };
  800. if (!rtd) {
  801. pr_err("%s: NULL rtd\n", __func__);
  802. return -EINVAL;
  803. }
  804. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  805. if (!component) {
  806. pr_err("%s: component is NULL\n", __func__);
  807. return -EINVAL;
  808. }
  809. pr_debug("%s: added new pcm FE with name %s, id %d, cpu dai %s, device no %d\n",
  810. __func__, rtd->dai_link->name, rtd->dai_link->id,
  811. rtd->dai_link->cpu_dai_name, rtd->pcm->device);
  812. ctl_len = strlen(mixer_ctl_name) + strlen(deviceNo) + 1;
  813. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  814. if (!mixer_str)
  815. return -ENOMEM;
  816. snprintf(mixer_str, ctl_len, "%s%d", mixer_ctl_name, rtd->pcm->device);
  817. fe_channel_map_control[0].name = mixer_str;
  818. fe_channel_map_control[0].private_value = rtd->dai_link->id;
  819. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  820. snd_soc_add_component_controls(component,
  821. fe_channel_map_control,
  822. ARRAY_SIZE(fe_channel_map_control));
  823. pdata = snd_soc_component_get_drvdata(component);
  824. pdata->ch_map[rtd->dai_link->id] =
  825. kzalloc(sizeof(struct msm_pcm_ch_map), GFP_KERNEL);
  826. if (!pdata->ch_map[rtd->dai_link->id]) {
  827. pr_err("%s: Could not allocate memory for channel map\n",
  828. __func__);
  829. kfree(mixer_str);
  830. return -ENOMEM;
  831. }
  832. kfree(mixer_str);
  833. return 0;
  834. }
  835. static int msm_pcm_fe_topology_info(struct snd_kcontrol *kcontrol,
  836. struct snd_ctl_elem_info *uinfo)
  837. {
  838. const struct soc_enum *e = &msm_pcm_fe_topology_enum[0];
  839. return snd_ctl_enum_info(uinfo, 1, e->items, e->texts);
  840. }
  841. static int msm_pcm_fe_topology_get(struct snd_kcontrol *kcontrol,
  842. struct snd_ctl_elem_value *ucontrol)
  843. {
  844. unsigned long fe_id = kcontrol->private_value;
  845. if (fe_id >= MSM_FRONTEND_DAI_MAX) {
  846. pr_err("%s Received out of bound fe_id %lu\n", __func__, fe_id);
  847. return -EINVAL;
  848. }
  849. pr_debug("%s: %lu topology %s\n", __func__, fe_id,
  850. msm_pcm_fe_topology_text[msm_pcm_fe_topology[fe_id]]);
  851. ucontrol->value.enumerated.item[0] = msm_pcm_fe_topology[fe_id];
  852. return 0;
  853. }
  854. static int msm_pcm_fe_topology_put(struct snd_kcontrol *kcontrol,
  855. struct snd_ctl_elem_value *ucontrol)
  856. {
  857. unsigned long fe_id = kcontrol->private_value;
  858. unsigned int item;
  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. item = ucontrol->value.enumerated.item[0];
  864. if (item >= ARRAY_SIZE(msm_pcm_fe_topology_text)) {
  865. pr_err("%s Received out of bound topology %lu\n", __func__,
  866. fe_id);
  867. return -EINVAL;
  868. }
  869. pr_debug("%s: %lu new topology %s\n", __func__, fe_id,
  870. msm_pcm_fe_topology_text[item]);
  871. msm_pcm_fe_topology[fe_id] = item;
  872. return 0;
  873. }
  874. static int msm_pcm_add_fe_topology_control(struct snd_soc_pcm_runtime *rtd)
  875. {
  876. struct snd_soc_component *component = NULL;
  877. const char *mixer_ctl_name = "PCM_Dev";
  878. const char *deviceNo = "NN";
  879. const char *topo_text = "Topology";
  880. char *mixer_str = NULL;
  881. int ctl_len;
  882. int ret;
  883. struct snd_kcontrol_new topology_control[1] = {
  884. {
  885. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  886. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  887. .name = "?",
  888. .info = msm_pcm_fe_topology_info,
  889. .get = msm_pcm_fe_topology_get,
  890. .put = msm_pcm_fe_topology_put,
  891. .private_value = 0,
  892. },
  893. };
  894. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  895. if (!component) {
  896. pr_err("%s: component is NULL\n", __func__);
  897. return -EINVAL;
  898. }
  899. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1 +
  900. strlen(topo_text) + 1;
  901. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  902. if (!mixer_str)
  903. return -ENOMEM;
  904. snprintf(mixer_str, ctl_len, "%s %d %s", mixer_ctl_name,
  905. rtd->pcm->device, topo_text);
  906. topology_control[0].name = mixer_str;
  907. topology_control[0].private_value = rtd->dai_link->id;
  908. ret = snd_soc_add_component_controls(component, topology_control,
  909. ARRAY_SIZE(topology_control));
  910. msm_pcm_fe_topology[rtd->dai_link->id] = 0;
  911. kfree(mixer_str);
  912. return ret;
  913. }
  914. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  915. struct snd_ctl_elem_value *ucontrol)
  916. {
  917. u64 fe_id = kcontrol->private_value;
  918. int session_type = SESSION_TYPE_RX;
  919. int be_id = ucontrol->value.integer.value[3];
  920. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  921. int ret = 0;
  922. cfg_data.app_type = ucontrol->value.integer.value[0];
  923. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  924. if (ucontrol->value.integer.value[2] != 0)
  925. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  926. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  927. __func__, fe_id, session_type, be_id,
  928. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  929. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  930. be_id, &cfg_data);
  931. if (ret < 0)
  932. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  933. __func__, ret);
  934. return ret;
  935. }
  936. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  937. struct snd_ctl_elem_value *ucontrol)
  938. {
  939. u64 fe_id = kcontrol->private_value;
  940. int session_type = SESSION_TYPE_RX;
  941. int be_id = 0;
  942. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  943. int ret = 0;
  944. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  945. &be_id, &cfg_data);
  946. if (ret < 0) {
  947. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  948. __func__, ret);
  949. goto done;
  950. }
  951. ucontrol->value.integer.value[0] = cfg_data.app_type;
  952. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  953. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  954. ucontrol->value.integer.value[3] = be_id;
  955. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  956. __func__, fe_id, session_type, be_id,
  957. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  958. done:
  959. return ret;
  960. }
  961. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  962. struct snd_ctl_elem_value *ucontrol)
  963. {
  964. u64 fe_id = kcontrol->private_value;
  965. int session_type = SESSION_TYPE_TX;
  966. int be_id = ucontrol->value.integer.value[3];
  967. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  968. int ret = 0;
  969. cfg_data.app_type = ucontrol->value.integer.value[0];
  970. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  971. if (ucontrol->value.integer.value[2] != 0)
  972. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  973. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  974. __func__, fe_id, session_type, be_id,
  975. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  976. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  977. be_id, &cfg_data);
  978. if (ret < 0)
  979. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  980. __func__, ret);
  981. return ret;
  982. }
  983. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  984. struct snd_ctl_elem_value *ucontrol)
  985. {
  986. u64 fe_id = kcontrol->private_value;
  987. int session_type = SESSION_TYPE_TX;
  988. int be_id = 0;
  989. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  990. int ret = 0;
  991. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  992. &be_id, &cfg_data);
  993. if (ret < 0) {
  994. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  995. __func__, ret);
  996. goto done;
  997. }
  998. ucontrol->value.integer.value[0] = cfg_data.app_type;
  999. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1000. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1001. ucontrol->value.integer.value[3] = be_id;
  1002. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1003. __func__, fe_id, session_type, be_id,
  1004. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1005. done:
  1006. return ret;
  1007. }
  1008. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1009. {
  1010. struct snd_pcm *pcm = rtd->pcm;
  1011. struct snd_pcm_usr *app_type_info;
  1012. struct snd_kcontrol *kctl;
  1013. const char *playback_mixer_ctl_name = "Audio Stream";
  1014. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  1015. const char *deviceNo = "NN";
  1016. const char *suffix = "App Type Cfg";
  1017. int ctl_len, ret = 0;
  1018. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  1019. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  1020. strlen(deviceNo) + 1 +
  1021. strlen(suffix) + 1;
  1022. pr_debug("%s: Playback app type cntrl add\n", __func__);
  1023. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1024. NULL, 1, ctl_len, rtd->dai_link->id,
  1025. &app_type_info);
  1026. if (ret < 0) {
  1027. pr_err("%s: playback app type cntrl add failed, err: %d\n",
  1028. __func__, ret);
  1029. return ret;
  1030. }
  1031. kctl = app_type_info->kctl;
  1032. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1033. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  1034. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  1035. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  1036. }
  1037. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  1038. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  1039. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1040. pr_debug("%s: Capture app type cntrl add\n", __func__);
  1041. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  1042. NULL, 1, ctl_len, rtd->dai_link->id,
  1043. &app_type_info);
  1044. if (ret < 0) {
  1045. pr_err("%s: capture app type cntrl add failed, err: %d\n",
  1046. __func__, ret);
  1047. return ret;
  1048. }
  1049. kctl = app_type_info->kctl;
  1050. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1051. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  1052. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  1053. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  1054. }
  1055. return 0;
  1056. }
  1057. static int msm_pcm_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
  1058. unsigned int cmd, unsigned long arg)
  1059. {
  1060. int ret = 0;
  1061. struct snd_pcm *pcm = hw->private_data;
  1062. struct snd_pcm_mmap_fd __user *_mmap_fd = NULL;
  1063. struct snd_pcm_mmap_fd mmap_fd;
  1064. struct snd_pcm_substream *substream = NULL;
  1065. int32_t dir = -1;
  1066. switch (cmd) {
  1067. case SNDRV_PCM_IOCTL_MMAP_DATA_FD:
  1068. _mmap_fd = (struct snd_pcm_mmap_fd __user *)arg;
  1069. if (get_user(dir, (int32_t __user *)&(_mmap_fd->dir))) {
  1070. pr_err("%s: error copying mmap_fd from user\n",
  1071. __func__);
  1072. ret = -EFAULT;
  1073. break;
  1074. }
  1075. if (dir != OUT && dir != IN) {
  1076. pr_err("%s invalid stream dir\n", __func__);
  1077. ret = -EINVAL;
  1078. break;
  1079. }
  1080. substream = pcm->streams[dir].substream;
  1081. if (!substream) {
  1082. pr_err("%s substream not found\n", __func__);
  1083. ret = -ENODEV;
  1084. break;
  1085. }
  1086. pr_debug("%s : %s MMAP Data fd\n", __func__,
  1087. dir == 0 ? "P" : "C");
  1088. if (msm_pcm_mmap_fd(substream, &mmap_fd) < 0) {
  1089. pr_err("%s: error getting fd\n",
  1090. __func__);
  1091. ret = -EFAULT;
  1092. break;
  1093. }
  1094. if (put_user(mmap_fd.fd, &_mmap_fd->fd) ||
  1095. put_user(mmap_fd.size, &_mmap_fd->size) ||
  1096. put_user(mmap_fd.actual_size, &_mmap_fd->actual_size)) {
  1097. pr_err("%s: error copying fd\n", __func__);
  1098. return -EFAULT;
  1099. }
  1100. break;
  1101. default:
  1102. ret = -EINVAL;
  1103. break;
  1104. }
  1105. return ret;
  1106. }
  1107. #ifdef CONFIG_COMPAT
  1108. static int msm_pcm_hwdep_compat_ioctl(struct snd_hwdep *hw,
  1109. struct file *file,
  1110. unsigned int cmd,
  1111. unsigned long arg)
  1112. {
  1113. /* we only support mmap fd. Handling is common in both modes */
  1114. return msm_pcm_hwdep_ioctl(hw, file, cmd, arg);
  1115. }
  1116. #else
  1117. static int msm_pcm_hwdep_compat_ioctl(struct snd_hwdep *hw,
  1118. struct file *file,
  1119. unsigned int cmd,
  1120. unsigned long arg)
  1121. {
  1122. return -EINVAL;
  1123. }
  1124. #endif
  1125. static int msm_pcm_add_hwdep_dev(struct snd_soc_pcm_runtime *runtime)
  1126. {
  1127. struct snd_hwdep *hwdep;
  1128. int rc;
  1129. char id[] = "NOIRQ_NN";
  1130. snprintf(id, sizeof(id), "NOIRQ_%d", runtime->pcm->device);
  1131. pr_debug("%s: pcm dev %d\n", __func__, runtime->pcm->device);
  1132. rc = snd_hwdep_new(runtime->card->snd_card,
  1133. &id[0],
  1134. HWDEP_FE_BASE + runtime->pcm->device,
  1135. &hwdep);
  1136. if (!hwdep || rc < 0) {
  1137. pr_err("%s: hwdep intf failed to create %s - hwdep\n", __func__,
  1138. id);
  1139. return rc;
  1140. }
  1141. hwdep->iface = SNDRV_HWDEP_IFACE_AUDIO_BE; /* for lack of a FE iface */
  1142. hwdep->private_data = runtime->pcm; /* of type struct snd_pcm */
  1143. hwdep->ops.ioctl = msm_pcm_hwdep_ioctl;
  1144. hwdep->ops.ioctl_compat = msm_pcm_hwdep_compat_ioctl;
  1145. return 0;
  1146. }
  1147. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1148. {
  1149. struct snd_card *card = rtd->card->snd_card;
  1150. struct snd_pcm *pcm = rtd->pcm;
  1151. int ret;
  1152. pr_debug("%s , register new control\n", __func__);
  1153. if (!card->dev->coherent_dma_mask)
  1154. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1155. ret = msm_pcm_add_channel_map_control(rtd);
  1156. if (ret)
  1157. pr_err("%s: Could not add pcm Channel Map Control\n",
  1158. __func__);
  1159. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_PLAYBACK);
  1160. if (ret) {
  1161. pr_err("%s: Could not add pcm playback volume Control %d\n",
  1162. __func__, ret);
  1163. }
  1164. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_CAPTURE);
  1165. if (ret) {
  1166. pr_err("%s: Could not add pcm capture volume Control %d\n",
  1167. __func__, ret);
  1168. }
  1169. ret = msm_pcm_add_fe_topology_control(rtd);
  1170. if (ret) {
  1171. pr_err("%s: Could not add pcm topology control %d\n",
  1172. __func__, ret);
  1173. }
  1174. ret = msm_pcm_add_app_type_controls(rtd);
  1175. if (ret) {
  1176. pr_err("%s: Could not add app type controls failed %d\n",
  1177. __func__, ret);
  1178. }
  1179. ret = msm_pcm_add_hwdep_dev(rtd);
  1180. if (ret)
  1181. pr_err("%s: Could not add hw dep node\n", __func__);
  1182. pcm->nonatomic = true;
  1183. return ret;
  1184. }
  1185. static const struct snd_pcm_ops msm_pcm_ops = {
  1186. .open = msm_pcm_open,
  1187. .prepare = msm_pcm_prepare,
  1188. .copy_user = msm_pcm_copy,
  1189. .hw_params = msm_pcm_hw_params,
  1190. .ioctl = msm_pcm_ioctl,
  1191. #ifdef CONFIG_COMPAT
  1192. .compat_ioctl = msm_pcm_compat_ioctl,
  1193. #endif
  1194. .trigger = msm_pcm_trigger,
  1195. .pointer = msm_pcm_pointer,
  1196. .mmap = msm_pcm_mmap,
  1197. .close = msm_pcm_close,
  1198. };
  1199. static struct snd_soc_component_driver msm_soc_component = {
  1200. .name = DRV_NAME,
  1201. .ops = &msm_pcm_ops,
  1202. .pcm_new = msm_asoc_pcm_new,
  1203. };
  1204. static int msm_pcm_probe(struct platform_device *pdev)
  1205. {
  1206. int rc;
  1207. struct msm_plat_data *pdata;
  1208. const char *latency_level;
  1209. int perf_mode = LOW_LATENCY_PCM_MODE;
  1210. dev_dbg(&pdev->dev, "Pull mode driver probe\n");
  1211. if (of_property_read_bool(pdev->dev.of_node,
  1212. "qcom,msm-pcm-low-latency")) {
  1213. rc = of_property_read_string(pdev->dev.of_node,
  1214. "qcom,latency-level", &latency_level);
  1215. if (!rc) {
  1216. if (!strcmp(latency_level, "ultra"))
  1217. perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  1218. else if (!strcmp(latency_level, "ull-pp"))
  1219. perf_mode = ULL_POST_PROCESSING_PCM_MODE;
  1220. }
  1221. }
  1222. pdata = devm_kzalloc(&pdev->dev,
  1223. sizeof(struct msm_plat_data), GFP_KERNEL);
  1224. if (!pdata)
  1225. return -ENOMEM;
  1226. pdata->perf_mode = perf_mode;
  1227. mutex_init(&pdata->lock);
  1228. dev_set_drvdata(&pdev->dev, pdata);
  1229. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  1230. __func__, dev_name(&pdev->dev));
  1231. dev_dbg(&pdev->dev, "Pull mode driver register\n");
  1232. rc = snd_soc_register_component(&pdev->dev,
  1233. &msm_soc_component,
  1234. NULL, 0);
  1235. if (rc)
  1236. dev_err(&pdev->dev, "Failed to register pull mode driver\n");
  1237. return rc;
  1238. }
  1239. static int msm_pcm_remove(struct platform_device *pdev)
  1240. {
  1241. struct msm_plat_data *pdata;
  1242. dev_dbg(&pdev->dev, "Pull mode remove\n");
  1243. pdata = dev_get_drvdata(&pdev->dev);
  1244. mutex_destroy(&pdata->lock);
  1245. devm_kfree(&pdev->dev, pdata);
  1246. snd_soc_unregister_component(&pdev->dev);
  1247. return 0;
  1248. }
  1249. static const struct of_device_id msm_pcm_noirq_dt_match[] = {
  1250. {.compatible = "qcom,msm-pcm-dsp-noirq"},
  1251. {}
  1252. };
  1253. MODULE_DEVICE_TABLE(of, msm_pcm_noirq_dt_match);
  1254. static struct platform_driver msm_pcm_driver_noirq = {
  1255. .driver = {
  1256. .name = "msm-pcm-dsp-noirq",
  1257. .owner = THIS_MODULE,
  1258. .of_match_table = msm_pcm_noirq_dt_match,
  1259. .suppress_bind_attrs = true,
  1260. },
  1261. .probe = msm_pcm_probe,
  1262. .remove = msm_pcm_remove,
  1263. };
  1264. int __init msm_pcm_noirq_init(void)
  1265. {
  1266. return platform_driver_register(&msm_pcm_driver_noirq);
  1267. }
  1268. void msm_pcm_noirq_exit(void)
  1269. {
  1270. platform_driver_unregister(&msm_pcm_driver_noirq);
  1271. }
  1272. MODULE_DESCRIPTION("PCM NOIRQ module platform driver");
  1273. MODULE_LICENSE("GPL v2");