msm-pcm-loopback-v2.c 45 KB

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