msm-pcm-loopback-v2.c 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2013-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/platform_device.h>
  8. #include <linux/slab.h>
  9. #include <linux/dma-mapping.h>
  10. #include <sound/core.h>
  11. #include <sound/soc.h>
  12. #include <sound/pcm.h>
  13. #include <sound/initval.h>
  14. #include <sound/control.h>
  15. #include <sound/tlv.h>
  16. #include <asm/dma.h>
  17. #include <dsp/apr_audio-v2.h>
  18. #include <dsp/q6audio-v2.h>
  19. #include <dsp/q6asm-v2.h>
  20. #include "msm-pcm-routing-v2.h"
  21. #define DRV_NAME "msm-pcm-loopback-v2"
  22. #define LOOPBACK_VOL_MAX_STEPS 0x2000
  23. #define LOOPBACK_SESSION_MAX 4
  24. static DEFINE_MUTEX(loopback_session_lock);
  25. static const DECLARE_TLV_DB_LINEAR(loopback_rx_vol_gain, 0,
  26. LOOPBACK_VOL_MAX_STEPS);
  27. struct msm_pcm_loopback {
  28. struct snd_pcm_substream *playback_substream;
  29. struct snd_pcm_substream *capture_substream;
  30. int instance;
  31. struct mutex lock;
  32. uint32_t samp_rate;
  33. uint32_t channel_mode;
  34. int playback_start;
  35. int capture_start;
  36. int session_id;
  37. struct audio_client *audio_client;
  38. uint32_t volume;
  39. };
  40. struct fe_dai_session_map {
  41. char stream_name[32];
  42. struct msm_pcm_loopback *loopback_priv;
  43. };
  44. static struct fe_dai_session_map session_map[LOOPBACK_SESSION_MAX] = {
  45. { {}, NULL},
  46. { {}, NULL},
  47. { {}, NULL},
  48. { {}, NULL},
  49. };
  50. static u32 hfp_tx_mute;
  51. struct msm_pcm_pdata {
  52. int perf_mode;
  53. struct snd_pcm *pcm_device[MSM_FRONTEND_DAI_MM_SIZE];
  54. struct msm_pcm_channel_mixer *chmixer_pspd[MSM_FRONTEND_DAI_MM_SIZE][2];
  55. };
  56. static void stop_pcm(struct msm_pcm_loopback *pcm);
  57. static int msm_pcm_loopback_get_session(struct snd_soc_pcm_runtime *rtd,
  58. struct msm_pcm_loopback **pcm);
  59. static void msm_pcm_route_event_handler(enum msm_pcm_routing_event event,
  60. void *priv_data)
  61. {
  62. struct msm_pcm_loopback *pcm = priv_data;
  63. WARN_ON(!pcm);
  64. pr_debug("%s: event 0x%x\n", __func__, event);
  65. switch (event) {
  66. case MSM_PCM_RT_EVT_DEVSWITCH:
  67. q6asm_cmd(pcm->audio_client, CMD_PAUSE);
  68. q6asm_cmd(pcm->audio_client, CMD_FLUSH);
  69. q6asm_run(pcm->audio_client, 0, 0, 0);
  70. /* fallthrough */
  71. default:
  72. pr_err("%s: default event 0x%x\n", __func__, event);
  73. break;
  74. }
  75. }
  76. static void msm_pcm_loopback_event_handler(uint32_t opcode, uint32_t token,
  77. uint32_t *payload, void *priv)
  78. {
  79. pr_debug("%s:\n", __func__);
  80. switch (opcode) {
  81. case APR_BASIC_RSP_RESULT: {
  82. switch (payload[0]) {
  83. break;
  84. default:
  85. break;
  86. }
  87. }
  88. break;
  89. default:
  90. pr_err("%s: Not Supported Event opcode[0x%x]\n",
  91. __func__, opcode);
  92. break;
  93. }
  94. }
  95. static int msm_loopback_session_mute_get(struct snd_kcontrol *kcontrol,
  96. struct snd_ctl_elem_value *ucontrol)
  97. {
  98. ucontrol->value.integer.value[0] = hfp_tx_mute;
  99. return 0;
  100. }
  101. static int msm_loopback_session_mute_put(struct snd_kcontrol *kcontrol,
  102. struct snd_ctl_elem_value *ucontrol)
  103. {
  104. int ret = 0, n = 0;
  105. int mute = ucontrol->value.integer.value[0];
  106. struct msm_pcm_loopback *pcm = NULL;
  107. if ((mute < 0) || (mute > 1)) {
  108. pr_err(" %s Invalid arguments", __func__);
  109. ret = -EINVAL;
  110. goto done;
  111. }
  112. pr_debug("%s: mute=%d\n", __func__, mute);
  113. hfp_tx_mute = mute;
  114. for (n = 0; n < LOOPBACK_SESSION_MAX; n++) {
  115. if (!strcmp(session_map[n].stream_name, "MultiMedia6"))
  116. pcm = session_map[n].loopback_priv;
  117. }
  118. if (pcm && pcm->audio_client) {
  119. ret = q6asm_set_mute(pcm->audio_client, mute);
  120. if (ret < 0)
  121. pr_err("%s: Send mute command failed rc=%d\n",
  122. __func__, ret);
  123. }
  124. done:
  125. return ret;
  126. }
  127. static struct snd_kcontrol_new msm_loopback_controls[] = {
  128. SOC_SINGLE_EXT("HFP TX Mute", SND_SOC_NOPM, 0, 1, 0,
  129. msm_loopback_session_mute_get,
  130. msm_loopback_session_mute_put),
  131. };
  132. static int msm_pcm_loopback_probe(struct snd_soc_component *component)
  133. {
  134. snd_soc_add_component_controls(component, msm_loopback_controls,
  135. ARRAY_SIZE(msm_loopback_controls));
  136. return 0;
  137. }
  138. static int pcm_loopback_set_volume(struct msm_pcm_loopback *prtd,
  139. uint32_t volume)
  140. {
  141. int rc = -EINVAL;
  142. pr_debug("%s: Setting volume 0x%x\n", __func__, volume);
  143. if (prtd && prtd->audio_client) {
  144. rc = q6asm_set_volume(prtd->audio_client, volume);
  145. if (rc < 0) {
  146. pr_err("%s: Send Volume command failed rc = %d\n",
  147. __func__, rc);
  148. return rc;
  149. }
  150. prtd->volume = volume;
  151. }
  152. return rc;
  153. }
  154. static int msm_pcm_loopback_get_session(struct snd_soc_pcm_runtime *rtd,
  155. struct msm_pcm_loopback **pcm)
  156. {
  157. struct snd_soc_component *component =
  158. snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  159. int ret = 0;
  160. int n, index = -1;
  161. if (!component) {
  162. pr_err("%s: component is NULL\n", __func__);
  163. return -EINVAL;
  164. }
  165. dev_dbg(component->dev, "%s: stream %s\n", __func__,
  166. rtd->dai_link->stream_name);
  167. mutex_lock(&loopback_session_lock);
  168. for (n = 0; n < LOOPBACK_SESSION_MAX; n++) {
  169. if (!strcmp(rtd->dai_link->stream_name,
  170. session_map[n].stream_name)) {
  171. *pcm = session_map[n].loopback_priv;
  172. goto exit;
  173. }
  174. /*
  175. * Store the min index value for allocating a new session.
  176. * Here, if session stream name is not found in the
  177. * existing entries after the loop iteration, then this
  178. * index will be used to allocate the new session.
  179. * This index variable is expected to point to the topmost
  180. * available free session.
  181. */
  182. if (!(session_map[n].stream_name[0]) && (index < 0))
  183. index = n;
  184. }
  185. if (index < 0) {
  186. dev_err(component->dev, "%s: Max Sessions allocated\n",
  187. __func__);
  188. ret = -EAGAIN;
  189. goto exit;
  190. }
  191. session_map[index].loopback_priv = kzalloc(
  192. sizeof(struct msm_pcm_loopback), GFP_KERNEL);
  193. if (!session_map[index].loopback_priv) {
  194. ret = -ENOMEM;
  195. goto exit;
  196. }
  197. strlcpy(session_map[index].stream_name,
  198. rtd->dai_link->stream_name,
  199. sizeof(session_map[index].stream_name));
  200. dev_dbg(component->dev, "%s: stream %s index %d\n",
  201. __func__, session_map[index].stream_name, index);
  202. mutex_init(&session_map[index].loopback_priv->lock);
  203. *pcm = session_map[index].loopback_priv;
  204. exit:
  205. mutex_unlock(&loopback_session_lock);
  206. return ret;
  207. }
  208. static int msm_pcm_open(struct snd_pcm_substream *substream)
  209. {
  210. struct snd_pcm_runtime *runtime = substream->runtime;
  211. struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
  212. struct snd_soc_component *component =
  213. snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  214. struct msm_pcm_loopback *pcm = NULL;
  215. int ret = 0;
  216. uint16_t bits_per_sample = 16;
  217. struct msm_pcm_routing_evt event;
  218. struct asm_session_mtmx_strtr_param_window_v2_t asm_mtmx_strtr_window;
  219. uint32_t param_id;
  220. struct msm_pcm_pdata *pdata;
  221. if (!component) {
  222. pr_err("%s: component is NULL\n", __func__);
  223. return -EINVAL;
  224. }
  225. ret = msm_pcm_loopback_get_session(rtd, &pcm);
  226. if (ret)
  227. return ret;
  228. mutex_lock(&pcm->lock);
  229. pcm->volume = 0x2000;
  230. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  231. pcm->playback_substream = substream;
  232. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  233. pcm->capture_substream = substream;
  234. pcm->instance++;
  235. dev_dbg(component->dev, "%s: pcm out open: %d,%d\n", __func__,
  236. pcm->instance, substream->stream);
  237. if (pcm->instance == 2) {
  238. struct snd_soc_pcm_runtime *soc_pcm_rx =
  239. pcm->playback_substream->private_data;
  240. struct snd_soc_pcm_runtime *soc_pcm_tx =
  241. pcm->capture_substream->private_data;
  242. if (pcm->audio_client != NULL)
  243. stop_pcm(pcm);
  244. pdata = (struct msm_pcm_pdata *)
  245. dev_get_drvdata(component->dev);
  246. if (!pdata) {
  247. dev_err(component->dev,
  248. "%s: platform data not populated\n", __func__);
  249. mutex_unlock(&pcm->lock);
  250. return -EINVAL;
  251. }
  252. pcm->audio_client = q6asm_audio_client_alloc(
  253. (app_cb)msm_pcm_loopback_event_handler, pcm);
  254. if (!pcm->audio_client) {
  255. dev_err(component->dev,
  256. "%s: Could not allocate memory\n", __func__);
  257. mutex_unlock(&pcm->lock);
  258. return -ENOMEM;
  259. }
  260. pcm->session_id = pcm->audio_client->session;
  261. pcm->audio_client->perf_mode = pdata->perf_mode;
  262. ret = q6asm_open_loopback_v2(pcm->audio_client,
  263. bits_per_sample);
  264. if (ret < 0) {
  265. dev_err(component->dev,
  266. "%s: pcm out open failed\n", __func__);
  267. q6asm_audio_client_free(pcm->audio_client);
  268. mutex_unlock(&pcm->lock);
  269. return -ENOMEM;
  270. }
  271. event.event_func = msm_pcm_route_event_handler;
  272. event.priv_data = (void *) pcm;
  273. msm_pcm_routing_reg_phy_stream(soc_pcm_tx->dai_link->id,
  274. pcm->audio_client->perf_mode,
  275. pcm->session_id, pcm->capture_substream->stream);
  276. msm_pcm_routing_reg_phy_stream_v2(soc_pcm_rx->dai_link->id,
  277. pcm->audio_client->perf_mode,
  278. pcm->session_id, pcm->playback_substream->stream,
  279. event);
  280. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  281. pcm->playback_substream = substream;
  282. ret = pcm_loopback_set_volume(pcm, pcm->volume);
  283. if (ret < 0)
  284. dev_err(component->dev,
  285. "Error %d setting volume", ret);
  286. }
  287. /* Set to largest negative value */
  288. asm_mtmx_strtr_window.window_lsw = 0x00000000;
  289. asm_mtmx_strtr_window.window_msw = 0x80000000;
  290. param_id = ASM_SESSION_MTMX_STRTR_PARAM_RENDER_WINDOW_START_V2;
  291. q6asm_send_mtmx_strtr_window(pcm->audio_client,
  292. &asm_mtmx_strtr_window,
  293. param_id);
  294. /* Set to largest positive value */
  295. asm_mtmx_strtr_window.window_lsw = 0xffffffff;
  296. asm_mtmx_strtr_window.window_msw = 0x7fffffff;
  297. param_id = ASM_SESSION_MTMX_STRTR_PARAM_RENDER_WINDOW_END_V2;
  298. q6asm_send_mtmx_strtr_window(pcm->audio_client,
  299. &asm_mtmx_strtr_window,
  300. param_id);
  301. }
  302. dev_info(component->dev, "%s: Instance = %d, Stream ID = %s\n",
  303. __func__, pcm->instance, substream->pcm->id);
  304. runtime->private_data = pcm;
  305. mutex_unlock(&pcm->lock);
  306. return 0;
  307. }
  308. static void stop_pcm(struct msm_pcm_loopback *pcm)
  309. {
  310. struct snd_soc_pcm_runtime *soc_pcm_rx;
  311. struct snd_soc_pcm_runtime *soc_pcm_tx;
  312. if (pcm->audio_client == NULL)
  313. return;
  314. q6asm_cmd(pcm->audio_client, CMD_CLOSE);
  315. if (pcm->playback_substream != NULL) {
  316. soc_pcm_rx = pcm->playback_substream->private_data;
  317. msm_pcm_routing_dereg_phy_stream(soc_pcm_rx->dai_link->id,
  318. SNDRV_PCM_STREAM_PLAYBACK);
  319. }
  320. if (pcm->capture_substream != NULL) {
  321. soc_pcm_tx = pcm->capture_substream->private_data;
  322. msm_pcm_routing_dereg_phy_stream(soc_pcm_tx->dai_link->id,
  323. SNDRV_PCM_STREAM_CAPTURE);
  324. }
  325. q6asm_audio_client_free(pcm->audio_client);
  326. pcm->audio_client = NULL;
  327. }
  328. static int msm_pcm_close(struct snd_pcm_substream *substream)
  329. {
  330. struct snd_pcm_runtime *runtime = substream->runtime;
  331. struct msm_pcm_loopback *pcm = runtime->private_data;
  332. struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
  333. struct snd_soc_component *component =
  334. snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  335. int ret = 0, n;
  336. bool found = false;
  337. if (!component) {
  338. pr_err("%s: component is NULL\n", __func__);
  339. return -EINVAL;
  340. }
  341. mutex_lock(&pcm->lock);
  342. dev_dbg(component->dev, "%s: end pcm call:%d\n",
  343. __func__, substream->stream);
  344. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  345. pcm->playback_start = 0;
  346. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  347. pcm->capture_start = 0;
  348. pcm->instance--;
  349. if (!pcm->playback_start || !pcm->capture_start) {
  350. dev_dbg(component->dev, "%s: end pcm call\n", __func__);
  351. stop_pcm(pcm);
  352. }
  353. if (!pcm->instance) {
  354. mutex_lock(&loopback_session_lock);
  355. for (n = 0; n < LOOPBACK_SESSION_MAX; n++) {
  356. if (!strcmp(rtd->dai_link->stream_name,
  357. session_map[n].stream_name)) {
  358. found = true;
  359. break;
  360. }
  361. }
  362. if (found) {
  363. memset(session_map[n].stream_name, 0,
  364. sizeof(session_map[n].stream_name));
  365. mutex_unlock(&pcm->lock);
  366. mutex_destroy(&session_map[n].loopback_priv->lock);
  367. session_map[n].loopback_priv = NULL;
  368. kfree(pcm);
  369. dev_dbg(component->dev, "%s: stream freed %s\n",
  370. __func__, rtd->dai_link->stream_name);
  371. mutex_unlock(&loopback_session_lock);
  372. return 0;
  373. }
  374. mutex_unlock(&loopback_session_lock);
  375. }
  376. mutex_unlock(&pcm->lock);
  377. return ret;
  378. }
  379. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  380. {
  381. int ret = 0;
  382. struct snd_pcm_runtime *runtime = substream->runtime;
  383. struct msm_pcm_loopback *pcm = runtime->private_data;
  384. struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
  385. struct snd_soc_component *component =
  386. snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  387. if (!component) {
  388. pr_err("%s: component is NULL\n", __func__);
  389. return -EINVAL;
  390. }
  391. mutex_lock(&pcm->lock);
  392. dev_dbg(component->dev, "%s: ASM loopback stream:%d\n",
  393. __func__, substream->stream);
  394. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  395. if (!pcm->playback_start)
  396. pcm->playback_start = 1;
  397. } else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  398. if (!pcm->capture_start)
  399. pcm->capture_start = 1;
  400. }
  401. mutex_unlock(&pcm->lock);
  402. return ret;
  403. }
  404. static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  405. {
  406. struct snd_pcm_runtime *runtime = substream->runtime;
  407. struct msm_pcm_loopback *pcm = runtime->private_data;
  408. struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
  409. struct snd_soc_component *component =
  410. snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  411. if (!component) {
  412. pr_err("%s: component is NULL\n", __func__);
  413. return -EINVAL;
  414. }
  415. switch (cmd) {
  416. case SNDRV_PCM_TRIGGER_START:
  417. case SNDRV_PCM_TRIGGER_RESUME:
  418. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  419. dev_dbg(component->dev,
  420. "%s: playback_start:%d,capture_start:%d\n", __func__,
  421. pcm->playback_start, pcm->capture_start);
  422. if (pcm->playback_start && pcm->capture_start)
  423. q6asm_run_nowait(pcm->audio_client, 0, 0, 0);
  424. break;
  425. case SNDRV_PCM_TRIGGER_SUSPEND:
  426. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  427. case SNDRV_PCM_TRIGGER_STOP:
  428. dev_dbg(component->dev,
  429. "%s:Pause/Stop - playback_start:%d,capture_start:%d\n",
  430. __func__, pcm->playback_start, pcm->capture_start);
  431. if (pcm->playback_start && pcm->capture_start)
  432. q6asm_cmd_nowait(pcm->audio_client, CMD_PAUSE);
  433. break;
  434. default:
  435. pr_err("%s: default cmd %d\n", __func__, cmd);
  436. break;
  437. }
  438. return 0;
  439. }
  440. static const struct snd_pcm_ops msm_pcm_ops = {
  441. .open = msm_pcm_open,
  442. .close = msm_pcm_close,
  443. .prepare = msm_pcm_prepare,
  444. .trigger = msm_pcm_trigger,
  445. };
  446. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  447. struct snd_ctl_elem_value *ucontrol)
  448. {
  449. int rc = 0;
  450. struct snd_pcm_volume *vol = kcontrol->private_data;
  451. struct snd_pcm_substream *substream = vol->pcm->streams[0].substream;
  452. struct msm_pcm_loopback *prtd;
  453. int volume = ucontrol->value.integer.value[0];
  454. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  455. if ((!substream) || (!substream->runtime)) {
  456. pr_err("%s substream or runtime not found\n", __func__);
  457. rc = -ENODEV;
  458. goto exit;
  459. }
  460. prtd = substream->runtime->private_data;
  461. if (!prtd) {
  462. rc = -ENODEV;
  463. goto exit;
  464. }
  465. rc = pcm_loopback_set_volume(prtd, volume);
  466. exit:
  467. return rc;
  468. }
  469. static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
  470. struct snd_ctl_elem_value *ucontrol)
  471. {
  472. int rc = 0;
  473. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  474. struct snd_pcm_substream *substream =
  475. vol->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  476. struct msm_pcm_loopback *prtd;
  477. pr_debug("%s\n", __func__);
  478. if ((!substream) || (!substream->runtime)) {
  479. pr_debug("%s substream or runtime not found\n", __func__);
  480. rc = -ENODEV;
  481. goto exit;
  482. }
  483. prtd = substream->runtime->private_data;
  484. if (!prtd) {
  485. rc = -ENODEV;
  486. goto exit;
  487. }
  488. ucontrol->value.integer.value[0] = prtd->volume;
  489. exit:
  490. return rc;
  491. }
  492. static int msm_pcm_add_volume_controls(struct snd_soc_pcm_runtime *rtd)
  493. {
  494. struct snd_pcm *pcm = rtd->pcm->streams[0].pcm;
  495. struct snd_pcm_volume *volume_info;
  496. struct snd_kcontrol *kctl;
  497. int ret = 0;
  498. dev_dbg(rtd->dev, "%s, Volume cntrl add\n", __func__);
  499. ret = snd_pcm_add_volume_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  500. NULL, 1,
  501. rtd->dai_link->id,
  502. &volume_info);
  503. if (ret < 0)
  504. return ret;
  505. kctl = volume_info->kctl;
  506. kctl->put = msm_pcm_volume_ctl_put;
  507. kctl->get = msm_pcm_volume_ctl_get;
  508. kctl->tlv.p = loopback_rx_vol_gain;
  509. return 0;
  510. }
  511. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  512. struct snd_ctl_elem_value *ucontrol)
  513. {
  514. u64 fe_id = kcontrol->private_value;
  515. int session_type = SESSION_TYPE_RX;
  516. int be_id = ucontrol->value.integer.value[3];
  517. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  518. int ret = 0;
  519. cfg_data.app_type = ucontrol->value.integer.value[0];
  520. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  521. if (ucontrol->value.integer.value[2] != 0)
  522. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  523. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  524. __func__, fe_id, session_type, be_id,
  525. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  526. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  527. be_id, &cfg_data);
  528. if (ret < 0)
  529. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  530. __func__, ret);
  531. return ret;
  532. }
  533. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  534. struct snd_ctl_elem_value *ucontrol)
  535. {
  536. u64 fe_id = kcontrol->private_value;
  537. int session_type = SESSION_TYPE_RX;
  538. int be_id = 0;
  539. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  540. int ret = 0;
  541. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  542. &be_id, &cfg_data);
  543. if (ret < 0) {
  544. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  545. __func__, ret);
  546. goto done;
  547. }
  548. ucontrol->value.integer.value[0] = cfg_data.app_type;
  549. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  550. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  551. ucontrol->value.integer.value[3] = be_id;
  552. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  553. __func__, fe_id, session_type, be_id,
  554. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  555. done:
  556. return ret;
  557. }
  558. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  559. struct snd_ctl_elem_value *ucontrol)
  560. {
  561. u64 fe_id = kcontrol->private_value;
  562. int session_type = SESSION_TYPE_TX;
  563. int be_id = ucontrol->value.integer.value[3];
  564. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  565. int ret = 0;
  566. cfg_data.app_type = ucontrol->value.integer.value[0];
  567. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  568. if (ucontrol->value.integer.value[2] != 0)
  569. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  570. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  571. __func__, fe_id, session_type, be_id,
  572. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  573. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  574. be_id, &cfg_data);
  575. if (ret < 0)
  576. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  577. __func__, ret);
  578. return ret;
  579. }
  580. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  581. struct snd_ctl_elem_value *ucontrol)
  582. {
  583. u64 fe_id = kcontrol->private_value;
  584. int session_type = SESSION_TYPE_TX;
  585. int be_id = 0;
  586. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  587. int ret = 0;
  588. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  589. &be_id, &cfg_data);
  590. if (ret < 0) {
  591. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  592. __func__, ret);
  593. goto done;
  594. }
  595. ucontrol->value.integer.value[0] = cfg_data.app_type;
  596. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  597. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  598. ucontrol->value.integer.value[3] = be_id;
  599. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  600. __func__, fe_id, session_type, be_id,
  601. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  602. done:
  603. return ret;
  604. }
  605. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  606. {
  607. struct snd_pcm *pcm = rtd->pcm->streams[0].pcm;
  608. struct snd_pcm_usr *app_type_info;
  609. struct snd_kcontrol *kctl;
  610. const char *playback_mixer_ctl_name = "Audio Stream";
  611. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  612. const char *deviceNo = "NN";
  613. const char *suffix = "App Type Cfg";
  614. int ctl_len, ret = 0;
  615. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  616. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  617. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  618. pr_debug("%s: Playback app type cntrl add\n", __func__);
  619. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  620. NULL, 1, ctl_len, rtd->dai_link->id,
  621. &app_type_info);
  622. if (ret < 0)
  623. return ret;
  624. kctl = app_type_info->kctl;
  625. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  626. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  627. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  628. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  629. }
  630. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  631. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  632. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  633. pr_debug("%s: Capture app type cntrl add\n", __func__);
  634. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  635. NULL, 1, ctl_len, rtd->dai_link->id,
  636. &app_type_info);
  637. if (ret < 0)
  638. return ret;
  639. kctl = app_type_info->kctl;
  640. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  641. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  642. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  643. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  644. }
  645. return 0;
  646. }
  647. static struct msm_pcm_channel_mixer *msm_pcm_get_chmixer(
  648. struct msm_pcm_pdata *pdata,
  649. u64 fe_id, int session_type)
  650. {
  651. if (!pdata) {
  652. pr_err("%s: missing pdata\n", __func__);
  653. return NULL;
  654. }
  655. if (fe_id >= MSM_FRONTEND_DAI_MM_SIZE) {
  656. pr_err("%s: invalid FE %llu\n", __func__, fe_id);
  657. return NULL;
  658. }
  659. if ((session_type != SESSION_TYPE_TX) &&
  660. (session_type != SESSION_TYPE_RX)) {
  661. pr_err("%s: invalid session type %d\n", __func__, session_type);
  662. return NULL;
  663. }
  664. return pdata->chmixer_pspd[fe_id][session_type];
  665. }
  666. static int msm_pcm_channel_mixer_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  667. struct snd_ctl_elem_value *ucontrol)
  668. {
  669. u64 fe_id = kcontrol->private_value & 0xFF;
  670. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  671. int ret = 0;
  672. int stream_id = 0;
  673. int be_id = 0, i = 0;
  674. struct msm_pcm_loopback *prtd = NULL;
  675. struct snd_soc_component *component =
  676. snd_soc_kcontrol_component(kcontrol);
  677. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  678. struct snd_pcm *pcm = NULL;
  679. struct snd_pcm_substream *substream = NULL;
  680. struct msm_pcm_channel_mixer *chmixer_pspd = NULL;
  681. u8 asm_ch_map[PCM_FORMAT_MAX_NUM_CHANNEL_V8] = {0};
  682. bool reset_override_out_ch_map = false;
  683. bool reset_override_in_ch_map = false;
  684. pcm = pdata->pcm_device[fe_id];
  685. if (!pcm) {
  686. pr_err("%s invalid pcm handle for fe_id %llu\n",
  687. __func__, fe_id);
  688. return -EINVAL;
  689. }
  690. if (session_type == SESSION_TYPE_RX)
  691. substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  692. else
  693. substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
  694. if (!substream) {
  695. pr_err("%s substream not found\n", __func__);
  696. return -EINVAL;
  697. }
  698. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  699. if (!chmixer_pspd) {
  700. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  701. return -EINVAL;
  702. }
  703. chmixer_pspd->enable = ucontrol->value.integer.value[0];
  704. chmixer_pspd->rule = ucontrol->value.integer.value[1];
  705. chmixer_pspd->input_channel = ucontrol->value.integer.value[2];
  706. chmixer_pspd->output_channel = ucontrol->value.integer.value[3];
  707. chmixer_pspd->port_idx = ucontrol->value.integer.value[4];
  708. if (chmixer_pspd->enable) {
  709. if (session_type == SESSION_TYPE_RX &&
  710. !chmixer_pspd->override_in_ch_map) {
  711. q6asm_map_channels(asm_ch_map,
  712. chmixer_pspd->input_channel, false);
  713. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  714. chmixer_pspd->in_ch_map[i] = asm_ch_map[i];
  715. chmixer_pspd->override_in_ch_map = true;
  716. reset_override_in_ch_map = true;
  717. } else if (session_type == SESSION_TYPE_TX &&
  718. !chmixer_pspd->override_out_ch_map) {
  719. q6asm_map_channels(asm_ch_map,
  720. chmixer_pspd->output_channel, false);
  721. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  722. chmixer_pspd->out_ch_map[i] = asm_ch_map[i];
  723. chmixer_pspd->override_out_ch_map = true;
  724. reset_override_out_ch_map = true;
  725. }
  726. } else {
  727. chmixer_pspd->override_out_ch_map = false;
  728. chmixer_pspd->override_in_ch_map = false;
  729. }
  730. /* cache value and take effect during adm_open stage */
  731. msm_pcm_routing_set_channel_mixer_cfg(fe_id,
  732. session_type,
  733. chmixer_pspd);
  734. if (chmixer_pspd->enable && substream->runtime) {
  735. prtd = substream->runtime->private_data;
  736. if (!prtd) {
  737. pr_err("%s find invalid prtd fail\n", __func__);
  738. ret = -EINVAL;
  739. goto done;
  740. }
  741. if (prtd->audio_client) {
  742. stream_id = prtd->audio_client->session;
  743. be_id = chmixer_pspd->port_idx;
  744. msm_pcm_routing_set_channel_mixer_runtime(be_id,
  745. stream_id,
  746. session_type,
  747. chmixer_pspd);
  748. }
  749. }
  750. if (reset_override_out_ch_map)
  751. chmixer_pspd->override_out_ch_map = false;
  752. if (reset_override_in_ch_map)
  753. chmixer_pspd->override_in_ch_map = false;
  754. done:
  755. return ret;
  756. }
  757. static int msm_pcm_channel_mixer_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  758. struct snd_ctl_elem_value *ucontrol)
  759. {
  760. u64 fe_id = kcontrol->private_value & 0xFF;
  761. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  762. struct snd_soc_component *component =
  763. snd_soc_kcontrol_component(kcontrol);
  764. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  765. struct msm_pcm_channel_mixer *chmixer_pspd;
  766. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  767. if (!chmixer_pspd) {
  768. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  769. return -EINVAL;
  770. }
  771. ucontrol->value.integer.value[0] = chmixer_pspd->enable;
  772. ucontrol->value.integer.value[1] = chmixer_pspd->rule;
  773. ucontrol->value.integer.value[2] = chmixer_pspd->input_channel;
  774. ucontrol->value.integer.value[3] = chmixer_pspd->output_channel;
  775. ucontrol->value.integer.value[4] = chmixer_pspd->port_idx;
  776. return 0;
  777. }
  778. static int msm_pcm_channel_mixer_output_map_ctl_put(
  779. struct snd_kcontrol *kcontrol,
  780. struct snd_ctl_elem_value *ucontrol)
  781. {
  782. u64 fe_id = kcontrol->private_value & 0xFF;
  783. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  784. int i = 0;
  785. struct snd_soc_component *component =
  786. snd_soc_kcontrol_component(kcontrol);
  787. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  788. struct msm_pcm_channel_mixer *chmixer_pspd;
  789. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  790. if (!chmixer_pspd) {
  791. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  792. return -EINVAL;
  793. }
  794. chmixer_pspd->override_out_ch_map = true;
  795. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  796. chmixer_pspd->out_ch_map[i] =
  797. ucontrol->value.integer.value[i];
  798. return 0;
  799. }
  800. static int msm_pcm_channel_mixer_output_map_ctl_get(
  801. struct snd_kcontrol *kcontrol,
  802. struct snd_ctl_elem_value *ucontrol)
  803. {
  804. u64 fe_id = kcontrol->private_value & 0xFF;
  805. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  806. int i = 0;
  807. struct snd_soc_component *component =
  808. snd_soc_kcontrol_component(kcontrol);
  809. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  810. struct msm_pcm_channel_mixer *chmixer_pspd;
  811. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  812. if (!chmixer_pspd) {
  813. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  814. return -EINVAL;
  815. }
  816. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  817. ucontrol->value.integer.value[i] =
  818. chmixer_pspd->out_ch_map[i];
  819. return 0;
  820. }
  821. static int msm_pcm_channel_mixer_input_map_ctl_put(
  822. struct snd_kcontrol *kcontrol,
  823. struct snd_ctl_elem_value *ucontrol)
  824. {
  825. u64 fe_id = kcontrol->private_value & 0xFF;
  826. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  827. int i = 0;
  828. struct snd_soc_component *component =
  829. snd_soc_kcontrol_component(kcontrol);
  830. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  831. struct msm_pcm_channel_mixer *chmixer_pspd;
  832. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  833. if (!chmixer_pspd) {
  834. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  835. return -EINVAL;
  836. }
  837. chmixer_pspd->override_in_ch_map = true;
  838. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  839. chmixer_pspd->in_ch_map[i] = ucontrol->value.integer.value[i];
  840. return 0;
  841. }
  842. static int msm_pcm_channel_mixer_input_map_ctl_get(
  843. struct snd_kcontrol *kcontrol,
  844. struct snd_ctl_elem_value *ucontrol)
  845. {
  846. u64 fe_id = kcontrol->private_value & 0xFF;
  847. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  848. int i = 0;
  849. struct snd_soc_component *component =
  850. snd_soc_kcontrol_component(kcontrol);
  851. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  852. struct msm_pcm_channel_mixer *chmixer_pspd;
  853. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  854. if (!chmixer_pspd) {
  855. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  856. return -EINVAL;
  857. }
  858. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  859. ucontrol->value.integer.value[i] =
  860. chmixer_pspd->in_ch_map[i];
  861. return 0;
  862. }
  863. static int msm_pcm_channel_mixer_weight_ctl_put(
  864. struct snd_kcontrol *kcontrol,
  865. struct snd_ctl_elem_value *ucontrol)
  866. {
  867. u64 fe_id = kcontrol->private_value & 0xFF;
  868. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  869. int channel = (kcontrol->private_value >> 16) & 0xFF;
  870. int i = 0;
  871. struct snd_soc_component *component =
  872. snd_soc_kcontrol_component(kcontrol);
  873. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  874. struct msm_pcm_channel_mixer *chmixer_pspd;
  875. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  876. if (!chmixer_pspd) {
  877. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  878. return -EINVAL;
  879. }
  880. if (channel <= 0 || channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  881. pr_err("%s: invalid channel number %d\n", __func__, channel);
  882. return -EINVAL;
  883. }
  884. channel--;
  885. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  886. chmixer_pspd->channel_weight[channel][i] =
  887. ucontrol->value.integer.value[i];
  888. return 0;
  889. }
  890. static int msm_pcm_channel_mixer_weight_ctl_get(
  891. struct snd_kcontrol *kcontrol,
  892. struct snd_ctl_elem_value *ucontrol)
  893. {
  894. u64 fe_id = kcontrol->private_value & 0xFF;
  895. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  896. int channel = (kcontrol->private_value >> 16) & 0xFF;
  897. struct snd_soc_component *component =
  898. snd_soc_kcontrol_component(kcontrol);
  899. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  900. int i = 0;
  901. struct msm_pcm_channel_mixer *chmixer_pspd;
  902. if (channel <= 0 || channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  903. pr_err("%s: invalid channel number %d\n", __func__, channel);
  904. return -EINVAL;
  905. }
  906. channel--;
  907. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  908. if (!chmixer_pspd) {
  909. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  910. return -EINVAL;
  911. }
  912. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  913. ucontrol->value.integer.value[i] =
  914. chmixer_pspd->channel_weight[channel][i];
  915. return 0;
  916. }
  917. static int msm_pcm_add_platform_controls(struct snd_kcontrol_new *kctl,
  918. struct snd_soc_pcm_runtime *rtd, const char *name_prefix,
  919. const char *name_suffix, int session_type, int channels)
  920. {
  921. int ret = -EINVAL;
  922. char *mixer_name = NULL;
  923. struct snd_pcm *pcm = rtd->pcm;
  924. const char *deviceNo = "NN";
  925. const char *channelNo = "NN";
  926. int ctl_len = 0;
  927. struct snd_soc_component *component = NULL;
  928. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  929. if (!component) {
  930. pr_err("%s: component is NULL\n", __func__);
  931. return -EINVAL;
  932. }
  933. ctl_len = strlen(name_prefix) + 1 + strlen(deviceNo) + 1 +
  934. strlen(channelNo) + 1 + strlen(name_suffix) + 1;
  935. mixer_name = kzalloc(ctl_len, GFP_KERNEL);
  936. if (mixer_name == NULL)
  937. return -ENOMEM;
  938. if (channels >= 0) {
  939. snprintf(mixer_name, ctl_len, "%s %d %s %d",
  940. name_prefix, pcm->device, name_suffix, channels);
  941. kctl->private_value = (rtd->dai_link->id) | (session_type << 8) |
  942. (channels << 16);
  943. } else {
  944. snprintf(mixer_name, ctl_len, "%s %d %s",
  945. name_prefix, pcm->device, name_suffix);
  946. kctl->private_value = (rtd->dai_link->id) | (session_type << 8);
  947. }
  948. kctl->name = mixer_name;
  949. ret = snd_soc_add_component_controls(component, kctl, 1);
  950. kfree(mixer_name);
  951. return ret;
  952. }
  953. static int msm_pcm_channel_mixer_output_map_info(struct snd_kcontrol *kcontrol,
  954. struct snd_ctl_elem_info *uinfo)
  955. {
  956. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  957. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  958. /* Valid channel map value ranges from 1 to 64 */
  959. uinfo->value.integer.min = 1;
  960. uinfo->value.integer.max = 64;
  961. return 0;
  962. }
  963. static int msm_pcm_add_channel_mixer_output_map_controls(
  964. struct snd_soc_pcm_runtime *rtd)
  965. {
  966. struct snd_pcm *pcm = rtd->pcm;
  967. const char *playback_mixer_ctl_name = "AudStr";
  968. const char *capture_mixer_ctl_name = "AudStr Capture";
  969. const char *suffix = "ChMixer Output Map";
  970. int session_type = 0, ret = 0, channel = -1;
  971. struct snd_kcontrol_new channel_mixer_output_map_control = {
  972. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  973. .name = "?",
  974. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  975. .info = msm_pcm_channel_mixer_output_map_info,
  976. .put = msm_pcm_channel_mixer_output_map_ctl_put,
  977. .get = msm_pcm_channel_mixer_output_map_ctl_get,
  978. .private_value = 0,
  979. };
  980. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  981. session_type = SESSION_TYPE_RX;
  982. ret = msm_pcm_add_platform_controls(&channel_mixer_output_map_control,
  983. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  984. if (ret < 0)
  985. goto fail;
  986. }
  987. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  988. session_type = SESSION_TYPE_TX;
  989. ret = msm_pcm_add_platform_controls(&channel_mixer_output_map_control,
  990. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  991. if (ret < 0)
  992. goto fail;
  993. }
  994. return 0;
  995. fail:
  996. pr_err("%s: failed add platform ctl, err = %d\n",
  997. __func__, ret);
  998. return ret;
  999. }
  1000. static int msm_pcm_channel_mixer_input_map_info(struct snd_kcontrol *kcontrol,
  1001. struct snd_ctl_elem_info *uinfo)
  1002. {
  1003. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1004. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  1005. /* Valid channel map value ranges from 1 to 64 */
  1006. uinfo->value.integer.min = 1;
  1007. uinfo->value.integer.max = 64;
  1008. return 0;
  1009. }
  1010. static int msm_pcm_add_channel_mixer_input_map_controls(
  1011. struct snd_soc_pcm_runtime *rtd)
  1012. {
  1013. struct snd_pcm *pcm = rtd->pcm;
  1014. const char *playback_mixer_ctl_name = "AudStr";
  1015. const char *capture_mixer_ctl_name = "AudStr Capture";
  1016. const char *suffix = "ChMixer Input Map";
  1017. int session_type = 0, ret = 0, channel = -1;
  1018. struct snd_kcontrol_new channel_mixer_input_map_control = {
  1019. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1020. .name = "?",
  1021. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1022. .info = msm_pcm_channel_mixer_input_map_info,
  1023. .put = msm_pcm_channel_mixer_input_map_ctl_put,
  1024. .get = msm_pcm_channel_mixer_input_map_ctl_get,
  1025. .private_value = 0,
  1026. };
  1027. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  1028. session_type = SESSION_TYPE_RX;
  1029. ret = msm_pcm_add_platform_controls(&channel_mixer_input_map_control,
  1030. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  1031. if (ret < 0)
  1032. goto fail;
  1033. }
  1034. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  1035. session_type = SESSION_TYPE_TX;
  1036. ret = msm_pcm_add_platform_controls(&channel_mixer_input_map_control,
  1037. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  1038. if (ret < 0)
  1039. goto fail;
  1040. }
  1041. return 0;
  1042. fail:
  1043. pr_err("%s: failed add platform ctl, err = %d\n",
  1044. __func__, ret);
  1045. return ret;
  1046. }
  1047. static int msm_pcm_channel_mixer_cfg_info(struct snd_kcontrol *kcontrol,
  1048. struct snd_ctl_elem_info *uinfo)
  1049. {
  1050. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1051. /* five int values: enable, rule, in_channels, out_channels and port_id */
  1052. uinfo->count = 5;
  1053. /* Valid range is all positive values to support above controls */
  1054. uinfo->value.integer.min = 0;
  1055. uinfo->value.integer.max = INT_MAX;
  1056. return 0;
  1057. }
  1058. static int msm_pcm_add_channel_mixer_cfg_controls(
  1059. struct snd_soc_pcm_runtime *rtd)
  1060. {
  1061. struct snd_pcm *pcm = rtd->pcm;
  1062. const char *playback_mixer_ctl_name = "AudStr";
  1063. const char *capture_mixer_ctl_name = "AudStr Capture";
  1064. const char *suffix = "ChMixer Cfg";
  1065. int session_type = 0, ret = 0, channel = -1;
  1066. struct msm_pcm_pdata *pdata = NULL;
  1067. struct snd_soc_component *component = NULL;
  1068. struct snd_kcontrol_new channel_mixer_cfg_control = {
  1069. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1070. .name = "?",
  1071. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1072. .info = msm_pcm_channel_mixer_cfg_info,
  1073. .put = msm_pcm_channel_mixer_cfg_ctl_put,
  1074. .get = msm_pcm_channel_mixer_cfg_ctl_get,
  1075. .private_value = 0,
  1076. };
  1077. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1078. if (!component) {
  1079. pr_err("%s: component is NULL\n", __func__);
  1080. return -EINVAL;
  1081. }
  1082. pdata = (struct msm_pcm_pdata *)
  1083. dev_get_drvdata(component->dev);
  1084. if (pdata == NULL) {
  1085. pr_err("%s: platform data not populated\n", __func__);
  1086. return -EINVAL;
  1087. }
  1088. pdata->pcm_device[rtd->dai_link->id] = rtd->pcm;
  1089. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  1090. session_type = SESSION_TYPE_RX;
  1091. ret = msm_pcm_add_platform_controls(&channel_mixer_cfg_control,
  1092. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  1093. if (ret < 0)
  1094. goto fail;
  1095. }
  1096. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  1097. session_type = SESSION_TYPE_TX;
  1098. ret = msm_pcm_add_platform_controls(&channel_mixer_cfg_control,
  1099. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  1100. if (ret < 0)
  1101. goto fail;
  1102. }
  1103. return 0;
  1104. fail:
  1105. pr_err("%s: failed add platform ctl, err = %d\n",
  1106. __func__, ret);
  1107. return ret;
  1108. }
  1109. static int msm_pcm_channel_mixer_weight_info(struct snd_kcontrol *kcontrol,
  1110. struct snd_ctl_elem_info *uinfo)
  1111. {
  1112. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1113. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  1114. /* Valid range: 0 to 0x4000(Unity) gain weightage */
  1115. uinfo->value.integer.min = 0;
  1116. uinfo->value.integer.max = 0x4000;
  1117. return 0;
  1118. }
  1119. static int msm_pcm_add_channel_mixer_weight_controls(
  1120. struct snd_soc_pcm_runtime *rtd,
  1121. int channel)
  1122. {
  1123. struct snd_pcm *pcm = rtd->pcm;
  1124. const char *playback_mixer_ctl_name = "AudStr";
  1125. const char *capture_mixer_ctl_name = "AudStr Capture";
  1126. const char *suffix = "ChMixer Weight Ch";
  1127. int session_type = 0, ret = 0;
  1128. struct snd_kcontrol_new channel_mixer_weight_control = {
  1129. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1130. .name = "?",
  1131. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1132. .info = msm_pcm_channel_mixer_weight_info,
  1133. .put = msm_pcm_channel_mixer_weight_ctl_put,
  1134. .get = msm_pcm_channel_mixer_weight_ctl_get,
  1135. .private_value = 0,
  1136. };
  1137. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  1138. session_type = SESSION_TYPE_RX;
  1139. ret = msm_pcm_add_platform_controls(&channel_mixer_weight_control,
  1140. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  1141. if (ret < 0)
  1142. goto fail;
  1143. }
  1144. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  1145. session_type = SESSION_TYPE_TX;
  1146. ret = msm_pcm_add_platform_controls(&channel_mixer_weight_control,
  1147. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  1148. if (ret < 0)
  1149. goto fail;
  1150. }
  1151. return 0;
  1152. fail:
  1153. pr_err("%s: failed add platform ctl, err = %d\n",
  1154. __func__, ret);
  1155. return ret;
  1156. }
  1157. static int msm_pcm_add_channel_mixer_controls(struct snd_soc_pcm_runtime *rtd)
  1158. {
  1159. int i, ret = 0;
  1160. struct snd_pcm *pcm = NULL;
  1161. struct msm_pcm_pdata *pdata = NULL;
  1162. struct snd_soc_component *component = NULL;
  1163. if (!rtd || !rtd->pcm) {
  1164. pr_err("%s invalid rtd or pcm\n", __func__);
  1165. return -EINVAL;
  1166. }
  1167. pcm = rtd->pcm;
  1168. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1169. if (!component) {
  1170. pr_err("%s: component is NULL\n", __func__);
  1171. return -EINVAL;
  1172. }
  1173. pdata = (struct msm_pcm_pdata *)
  1174. dev_get_drvdata(component->dev);
  1175. if (!pdata) {
  1176. pr_err("%s: platform data not populated\n", __func__);
  1177. return -EINVAL;
  1178. }
  1179. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream &&
  1180. !pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]) {
  1181. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX] =
  1182. kzalloc(sizeof(struct msm_pcm_channel_mixer), GFP_KERNEL);
  1183. if (!pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]) {
  1184. ret = -ENOMEM;
  1185. goto fail;
  1186. }
  1187. }
  1188. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream &&
  1189. !pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]) {
  1190. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX] =
  1191. kzalloc(sizeof(struct msm_pcm_channel_mixer), GFP_KERNEL);
  1192. if (!pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]) {
  1193. ret = -ENOMEM;
  1194. goto fail;
  1195. }
  1196. }
  1197. ret = msm_pcm_add_channel_mixer_cfg_controls(rtd);
  1198. if (ret) {
  1199. pr_err("%s: pcm add channel mixer cfg controls failed:%d\n",
  1200. __func__, ret);
  1201. goto fail;
  1202. }
  1203. ret = msm_pcm_add_channel_mixer_input_map_controls(rtd);
  1204. if (ret) {
  1205. pr_err("%s: pcm add channel mixer input map controls failed:%d\n",
  1206. __func__, ret);
  1207. goto fail;
  1208. }
  1209. ret = msm_pcm_add_channel_mixer_output_map_controls(rtd);
  1210. if (ret) {
  1211. pr_err("%s: pcm add channel mixer output map controls failed:%d\n",
  1212. __func__, ret);
  1213. goto fail;
  1214. }
  1215. for (i = 1; i <= PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++) {
  1216. ret = msm_pcm_add_channel_mixer_weight_controls(rtd, i);
  1217. if (ret) {
  1218. pr_err("%s: pcm add channel mixer weight controls failed:%d\n",
  1219. __func__, ret);
  1220. goto fail;
  1221. }
  1222. }
  1223. return 0;
  1224. fail:
  1225. kfree(pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]);
  1226. kfree(pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]);
  1227. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX] = NULL;
  1228. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX] = NULL;
  1229. return ret;
  1230. }
  1231. static int msm_pcm_add_controls(struct snd_soc_pcm_runtime *rtd)
  1232. {
  1233. int ret = 0;
  1234. pr_debug("%s\n", __func__);
  1235. ret = msm_pcm_add_volume_controls(rtd);
  1236. if (ret)
  1237. pr_err("%s: pcm add volume controls failed:%d\n",
  1238. __func__, ret);
  1239. ret = msm_pcm_add_app_type_controls(rtd);
  1240. if (ret)
  1241. pr_err("%s: pcm add app type controls failed:%d\n",
  1242. __func__, ret);
  1243. ret = msm_pcm_add_channel_mixer_controls(rtd);
  1244. if (ret)
  1245. pr_err("%s: pcm add channel mixer controls failed:%d\n",
  1246. __func__, ret);
  1247. return ret;
  1248. }
  1249. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1250. {
  1251. struct snd_card *card = rtd->card->snd_card;
  1252. int ret = 0;
  1253. if (!card->dev->coherent_dma_mask)
  1254. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1255. ret = msm_pcm_add_controls(rtd);
  1256. if (ret)
  1257. dev_err(rtd->dev, "%s, kctl add failed\n", __func__);
  1258. return ret;
  1259. }
  1260. static struct snd_soc_component_driver msm_soc_component = {
  1261. .name = DRV_NAME,
  1262. .ops = &msm_pcm_ops,
  1263. .pcm_new = msm_asoc_pcm_new,
  1264. .probe = msm_pcm_loopback_probe,
  1265. };
  1266. static int msm_pcm_probe(struct platform_device *pdev)
  1267. {
  1268. struct msm_pcm_pdata *pdata;
  1269. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  1270. __func__, dev_name(&pdev->dev));
  1271. pdata = kzalloc(sizeof(struct msm_pcm_pdata), GFP_KERNEL);
  1272. if (!pdata)
  1273. return -ENOMEM;
  1274. if (of_property_read_bool(pdev->dev.of_node,
  1275. "qcom,msm-pcm-loopback-low-latency"))
  1276. pdata->perf_mode = LOW_LATENCY_PCM_MODE;
  1277. else
  1278. pdata->perf_mode = LEGACY_PCM_MODE;
  1279. dev_set_drvdata(&pdev->dev, pdata);
  1280. return snd_soc_register_component(&pdev->dev,
  1281. &msm_soc_component,
  1282. NULL, 0);
  1283. }
  1284. static int msm_pcm_remove(struct platform_device *pdev)
  1285. {
  1286. struct msm_pcm_pdata *pdata;
  1287. int i = 0;
  1288. pdata = dev_get_drvdata(&pdev->dev);
  1289. if (pdata) {
  1290. for (i = 0; i < MSM_FRONTEND_DAI_MM_SIZE; i++) {
  1291. kfree(pdata->chmixer_pspd[i][SESSION_TYPE_RX]);
  1292. kfree(pdata->chmixer_pspd[i][SESSION_TYPE_TX]);
  1293. }
  1294. }
  1295. kfree(pdata);
  1296. snd_soc_unregister_component(&pdev->dev);
  1297. return 0;
  1298. }
  1299. static const struct of_device_id msm_pcm_loopback_dt_match[] = {
  1300. {.compatible = "qcom,msm-pcm-loopback"},
  1301. {}
  1302. };
  1303. static struct platform_driver msm_pcm_driver = {
  1304. .driver = {
  1305. .name = "msm-pcm-loopback",
  1306. .owner = THIS_MODULE,
  1307. .of_match_table = msm_pcm_loopback_dt_match,
  1308. },
  1309. .probe = msm_pcm_probe,
  1310. .remove = msm_pcm_remove,
  1311. };
  1312. int __init msm_pcm_loopback_init(void)
  1313. {
  1314. return platform_driver_register(&msm_pcm_driver);
  1315. }
  1316. void msm_pcm_loopback_exit(void)
  1317. {
  1318. platform_driver_unregister(&msm_pcm_driver);
  1319. }
  1320. MODULE_DESCRIPTION("PCM loopback platform driver");
  1321. MODULE_LICENSE("GPL v2");