msm-pcm-loopback-v2.c 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590
  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, 0};
  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. if (ucontrol->value.integer.value[4] != 0)
  558. cfg_data.copp_token = ucontrol->value.integer.value[4];
  559. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d copp_token %d\n",
  560. __func__, fe_id, session_type, be_id,
  561. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate,
  562. cfg_data.copp_token);
  563. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  564. be_id, &cfg_data);
  565. if (ret < 0)
  566. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  567. __func__, ret);
  568. return ret;
  569. }
  570. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  571. struct snd_ctl_elem_value *ucontrol)
  572. {
  573. u64 fe_id = kcontrol->private_value;
  574. int session_type = SESSION_TYPE_RX;
  575. int be_id = 0;
  576. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  577. int ret = 0;
  578. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  579. &be_id, &cfg_data);
  580. if (ret < 0) {
  581. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  582. __func__, ret);
  583. goto done;
  584. }
  585. ucontrol->value.integer.value[0] = cfg_data.app_type;
  586. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  587. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  588. ucontrol->value.integer.value[3] = be_id;
  589. ucontrol->value.integer.value[4] = cfg_data.copp_token;
  590. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d copp_token %d\n",
  591. __func__, fe_id, session_type, be_id,
  592. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate,
  593. cfg_data.copp_token);
  594. done:
  595. return ret;
  596. }
  597. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  598. struct snd_ctl_elem_value *ucontrol)
  599. {
  600. u64 fe_id = kcontrol->private_value;
  601. int session_type = SESSION_TYPE_TX;
  602. int be_id = ucontrol->value.integer.value[3];
  603. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000, 0};
  604. int ret = 0;
  605. cfg_data.app_type = ucontrol->value.integer.value[0];
  606. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  607. if (ucontrol->value.integer.value[2] != 0)
  608. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  609. if (ucontrol->value.integer.value[4] != 0)
  610. cfg_data.copp_token = ucontrol->value.integer.value[4];
  611. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d copp_token %d\n",
  612. __func__, fe_id, session_type, be_id,
  613. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate,
  614. cfg_data.copp_token);
  615. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  616. be_id, &cfg_data);
  617. if (ret < 0)
  618. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  619. __func__, ret);
  620. return ret;
  621. }
  622. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  623. struct snd_ctl_elem_value *ucontrol)
  624. {
  625. u64 fe_id = kcontrol->private_value;
  626. int session_type = SESSION_TYPE_TX;
  627. int be_id = 0;
  628. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  629. int ret = 0;
  630. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  631. &be_id, &cfg_data);
  632. if (ret < 0) {
  633. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  634. __func__, ret);
  635. goto done;
  636. }
  637. ucontrol->value.integer.value[0] = cfg_data.app_type;
  638. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  639. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  640. ucontrol->value.integer.value[3] = be_id;
  641. ucontrol->value.integer.value[4] = cfg_data.copp_token;
  642. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d copp_token %d\n",
  643. __func__, fe_id, session_type, be_id,
  644. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate,
  645. cfg_data.copp_token);
  646. done:
  647. return ret;
  648. }
  649. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  650. {
  651. struct snd_pcm *pcm = rtd->pcm->streams[0].pcm;
  652. struct snd_pcm_usr *app_type_info;
  653. struct snd_kcontrol *kctl;
  654. const char *playback_mixer_ctl_name = "Audio Stream";
  655. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  656. const char *deviceNo = "NN";
  657. const char *suffix = "App Type Cfg";
  658. int ctl_len, ret = 0;
  659. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  660. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  661. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  662. pr_debug("%s: Playback app type cntrl add\n", __func__);
  663. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  664. NULL, 1, ctl_len, rtd->dai_link->id,
  665. &app_type_info);
  666. if (ret < 0)
  667. return ret;
  668. kctl = app_type_info->kctl;
  669. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  670. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  671. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  672. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  673. }
  674. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  675. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  676. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  677. pr_debug("%s: Capture app type cntrl add\n", __func__);
  678. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  679. NULL, 1, ctl_len, rtd->dai_link->id,
  680. &app_type_info);
  681. if (ret < 0)
  682. return ret;
  683. kctl = app_type_info->kctl;
  684. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  685. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  686. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  687. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  688. }
  689. return 0;
  690. }
  691. #else
  692. static int msm_pcm_add_volume_controls(struct snd_soc_pcm_runtime *rtd)
  693. {
  694. return 0;
  695. }
  696. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  697. {
  698. return 0;
  699. }
  700. #endif /* CONFIG_AUDIO_QGKI */
  701. static struct msm_pcm_channel_mixer *msm_pcm_get_chmixer(
  702. struct msm_pcm_pdata *pdata,
  703. u64 fe_id, int session_type)
  704. {
  705. if (!pdata) {
  706. pr_err("%s: missing pdata\n", __func__);
  707. return NULL;
  708. }
  709. if (fe_id >= MSM_FRONTEND_DAI_MM_SIZE) {
  710. pr_err("%s: invalid FE %llu\n", __func__, fe_id);
  711. return NULL;
  712. }
  713. if ((session_type != SESSION_TYPE_TX) &&
  714. (session_type != SESSION_TYPE_RX)) {
  715. pr_err("%s: invalid session type %d\n", __func__, session_type);
  716. return NULL;
  717. }
  718. return pdata->chmixer_pspd[fe_id][session_type];
  719. }
  720. static int msm_pcm_channel_mixer_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  721. struct snd_ctl_elem_value *ucontrol)
  722. {
  723. u64 fe_id = kcontrol->private_value & 0xFF;
  724. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  725. int ret = 0;
  726. int stream_id = 0;
  727. int be_id = 0, i = 0;
  728. struct msm_pcm_loopback *prtd = NULL;
  729. struct snd_soc_component *component =
  730. snd_soc_kcontrol_component(kcontrol);
  731. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  732. struct snd_pcm *pcm = NULL;
  733. struct snd_pcm_substream *substream = NULL;
  734. struct msm_pcm_channel_mixer *chmixer_pspd = NULL;
  735. u8 asm_ch_map[PCM_FORMAT_MAX_NUM_CHANNEL_V8] = {0};
  736. bool reset_override_out_ch_map = false;
  737. bool reset_override_in_ch_map = false;
  738. pcm = pdata->pcm_device[fe_id];
  739. if (!pcm) {
  740. pr_err("%s invalid pcm handle for fe_id %llu\n",
  741. __func__, fe_id);
  742. return -EINVAL;
  743. }
  744. if (session_type == SESSION_TYPE_RX)
  745. substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  746. else
  747. substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
  748. if (!substream) {
  749. pr_err("%s substream not found\n", __func__);
  750. return -EINVAL;
  751. }
  752. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  753. if (!chmixer_pspd) {
  754. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  755. return -EINVAL;
  756. }
  757. chmixer_pspd->enable = ucontrol->value.integer.value[0];
  758. chmixer_pspd->rule = ucontrol->value.integer.value[1];
  759. chmixer_pspd->input_channel = ucontrol->value.integer.value[2];
  760. chmixer_pspd->output_channel = ucontrol->value.integer.value[3];
  761. chmixer_pspd->port_idx = ucontrol->value.integer.value[4];
  762. if (chmixer_pspd->enable) {
  763. if (session_type == SESSION_TYPE_RX &&
  764. !chmixer_pspd->override_in_ch_map) {
  765. if (chmixer_pspd->input_channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  766. pr_err("%s: Invalid channel count %d\n",
  767. __func__, chmixer_pspd->input_channel);
  768. return -EINVAL;
  769. }
  770. q6asm_map_channels(asm_ch_map,
  771. chmixer_pspd->input_channel, false);
  772. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  773. chmixer_pspd->in_ch_map[i] = asm_ch_map[i];
  774. chmixer_pspd->override_in_ch_map = true;
  775. reset_override_in_ch_map = true;
  776. } else if (session_type == SESSION_TYPE_TX &&
  777. !chmixer_pspd->override_out_ch_map) {
  778. if (chmixer_pspd->output_channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  779. pr_err("%s: Invalid channel count %d\n",
  780. __func__, chmixer_pspd->output_channel);
  781. return -EINVAL;
  782. }
  783. q6asm_map_channels(asm_ch_map,
  784. chmixer_pspd->output_channel, false);
  785. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  786. chmixer_pspd->out_ch_map[i] = asm_ch_map[i];
  787. chmixer_pspd->override_out_ch_map = true;
  788. reset_override_out_ch_map = true;
  789. }
  790. } else {
  791. chmixer_pspd->override_out_ch_map = false;
  792. chmixer_pspd->override_in_ch_map = false;
  793. }
  794. /* cache value and take effect during adm_open stage */
  795. msm_pcm_routing_set_channel_mixer_cfg(fe_id,
  796. session_type,
  797. chmixer_pspd);
  798. mutex_lock(&loopback_session_lock);
  799. if (substream->ref_count <= 0) {
  800. pr_err_ratelimited("%s: substream ref_count:%d invalid\n",
  801. __func__, substream->ref_count);
  802. mutex_unlock(&loopback_session_lock);
  803. return -EINVAL;
  804. }
  805. if (chmixer_pspd->enable && substream->runtime) {
  806. prtd = substream->runtime->private_data;
  807. if (!prtd) {
  808. pr_err("%s find invalid prtd fail\n", __func__);
  809. ret = -EINVAL;
  810. mutex_unlock(&loopback_session_lock);
  811. goto done;
  812. }
  813. if (prtd->audio_client) {
  814. stream_id = prtd->audio_client->session;
  815. be_id = chmixer_pspd->port_idx;
  816. msm_pcm_routing_set_channel_mixer_runtime(be_id,
  817. stream_id,
  818. session_type,
  819. chmixer_pspd);
  820. }
  821. }
  822. mutex_unlock(&loopback_session_lock);
  823. if (reset_override_out_ch_map)
  824. chmixer_pspd->override_out_ch_map = false;
  825. if (reset_override_in_ch_map)
  826. chmixer_pspd->override_in_ch_map = false;
  827. done:
  828. return ret;
  829. }
  830. static int msm_pcm_channel_mixer_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  831. struct snd_ctl_elem_value *ucontrol)
  832. {
  833. u64 fe_id = kcontrol->private_value & 0xFF;
  834. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  835. struct snd_soc_component *component =
  836. snd_soc_kcontrol_component(kcontrol);
  837. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  838. struct msm_pcm_channel_mixer *chmixer_pspd;
  839. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  840. if (!chmixer_pspd) {
  841. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  842. return -EINVAL;
  843. }
  844. ucontrol->value.integer.value[0] = chmixer_pspd->enable;
  845. ucontrol->value.integer.value[1] = chmixer_pspd->rule;
  846. ucontrol->value.integer.value[2] = chmixer_pspd->input_channel;
  847. ucontrol->value.integer.value[3] = chmixer_pspd->output_channel;
  848. ucontrol->value.integer.value[4] = chmixer_pspd->port_idx;
  849. return 0;
  850. }
  851. static int msm_pcm_channel_mixer_output_map_ctl_put(
  852. struct snd_kcontrol *kcontrol,
  853. struct snd_ctl_elem_value *ucontrol)
  854. {
  855. u64 fe_id = kcontrol->private_value & 0xFF;
  856. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  857. int i = 0;
  858. struct snd_soc_component *component =
  859. snd_soc_kcontrol_component(kcontrol);
  860. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  861. struct msm_pcm_channel_mixer *chmixer_pspd;
  862. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  863. if (!chmixer_pspd) {
  864. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  865. return -EINVAL;
  866. }
  867. chmixer_pspd->override_out_ch_map = true;
  868. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  869. chmixer_pspd->out_ch_map[i] =
  870. ucontrol->value.integer.value[i];
  871. return 0;
  872. }
  873. static int msm_pcm_channel_mixer_output_map_ctl_get(
  874. struct snd_kcontrol *kcontrol,
  875. struct snd_ctl_elem_value *ucontrol)
  876. {
  877. u64 fe_id = kcontrol->private_value & 0xFF;
  878. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  879. int i = 0;
  880. struct snd_soc_component *component =
  881. snd_soc_kcontrol_component(kcontrol);
  882. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  883. struct msm_pcm_channel_mixer *chmixer_pspd;
  884. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  885. if (!chmixer_pspd) {
  886. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  887. return -EINVAL;
  888. }
  889. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  890. ucontrol->value.integer.value[i] =
  891. chmixer_pspd->out_ch_map[i];
  892. return 0;
  893. }
  894. static int msm_pcm_channel_mixer_input_map_ctl_put(
  895. struct snd_kcontrol *kcontrol,
  896. struct snd_ctl_elem_value *ucontrol)
  897. {
  898. u64 fe_id = kcontrol->private_value & 0xFF;
  899. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  900. int i = 0;
  901. struct snd_soc_component *component =
  902. snd_soc_kcontrol_component(kcontrol);
  903. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  904. struct msm_pcm_channel_mixer *chmixer_pspd;
  905. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  906. if (!chmixer_pspd) {
  907. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  908. return -EINVAL;
  909. }
  910. chmixer_pspd->override_in_ch_map = true;
  911. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  912. chmixer_pspd->in_ch_map[i] = ucontrol->value.integer.value[i];
  913. return 0;
  914. }
  915. static int msm_pcm_channel_mixer_input_map_ctl_get(
  916. struct snd_kcontrol *kcontrol,
  917. struct snd_ctl_elem_value *ucontrol)
  918. {
  919. u64 fe_id = kcontrol->private_value & 0xFF;
  920. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  921. int i = 0;
  922. struct snd_soc_component *component =
  923. snd_soc_kcontrol_component(kcontrol);
  924. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  925. struct msm_pcm_channel_mixer *chmixer_pspd;
  926. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  927. if (!chmixer_pspd) {
  928. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  929. return -EINVAL;
  930. }
  931. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  932. ucontrol->value.integer.value[i] =
  933. chmixer_pspd->in_ch_map[i];
  934. return 0;
  935. }
  936. static int msm_pcm_channel_mixer_weight_ctl_put(
  937. struct snd_kcontrol *kcontrol,
  938. struct snd_ctl_elem_value *ucontrol)
  939. {
  940. u64 fe_id = kcontrol->private_value & 0xFF;
  941. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  942. int channel = (kcontrol->private_value >> 16) & 0xFF;
  943. int i = 0;
  944. struct snd_soc_component *component =
  945. snd_soc_kcontrol_component(kcontrol);
  946. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  947. struct msm_pcm_channel_mixer *chmixer_pspd;
  948. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  949. if (!chmixer_pspd) {
  950. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  951. return -EINVAL;
  952. }
  953. if (channel <= 0 || channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  954. pr_err("%s: invalid channel number %d\n", __func__, channel);
  955. return -EINVAL;
  956. }
  957. channel--;
  958. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  959. chmixer_pspd->channel_weight[channel][i] =
  960. ucontrol->value.integer.value[i];
  961. return 0;
  962. }
  963. static int msm_pcm_channel_mixer_weight_ctl_get(
  964. struct snd_kcontrol *kcontrol,
  965. struct snd_ctl_elem_value *ucontrol)
  966. {
  967. u64 fe_id = kcontrol->private_value & 0xFF;
  968. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  969. int channel = (kcontrol->private_value >> 16) & 0xFF;
  970. struct snd_soc_component *component =
  971. snd_soc_kcontrol_component(kcontrol);
  972. struct msm_pcm_pdata *pdata = dev_get_drvdata(component->dev);
  973. int i = 0;
  974. struct msm_pcm_channel_mixer *chmixer_pspd;
  975. if (channel <= 0 || channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  976. pr_err("%s: invalid channel number %d\n", __func__, channel);
  977. return -EINVAL;
  978. }
  979. channel--;
  980. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  981. if (!chmixer_pspd) {
  982. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  983. return -EINVAL;
  984. }
  985. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  986. ucontrol->value.integer.value[i] =
  987. chmixer_pspd->channel_weight[channel][i];
  988. return 0;
  989. }
  990. static int msm_pcm_add_platform_controls(struct snd_kcontrol_new *kctl,
  991. struct snd_soc_pcm_runtime *rtd, const char *name_prefix,
  992. const char *name_suffix, int session_type, int channels)
  993. {
  994. int ret = -EINVAL;
  995. char *mixer_name = NULL;
  996. struct snd_pcm *pcm = rtd->pcm;
  997. const char *deviceNo = "NN";
  998. const char *channelNo = "NN";
  999. int ctl_len = 0;
  1000. struct snd_soc_component *component = NULL;
  1001. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1002. if (!component) {
  1003. pr_err("%s: component is NULL\n", __func__);
  1004. return -EINVAL;
  1005. }
  1006. ctl_len = strlen(name_prefix) + 1 + strlen(deviceNo) + 1 +
  1007. strlen(channelNo) + 1 + strlen(name_suffix) + 1;
  1008. mixer_name = kzalloc(ctl_len, GFP_KERNEL);
  1009. if (mixer_name == NULL)
  1010. return -ENOMEM;
  1011. if (channels >= 0) {
  1012. snprintf(mixer_name, ctl_len, "%s %d %s %d",
  1013. name_prefix, pcm->device, name_suffix, channels);
  1014. kctl->private_value = (rtd->dai_link->id) | (session_type << 8) |
  1015. (channels << 16);
  1016. } else {
  1017. snprintf(mixer_name, ctl_len, "%s %d %s",
  1018. name_prefix, pcm->device, name_suffix);
  1019. kctl->private_value = (rtd->dai_link->id) | (session_type << 8);
  1020. }
  1021. kctl->name = mixer_name;
  1022. ret = snd_soc_add_component_controls(component, kctl, 1);
  1023. kfree(mixer_name);
  1024. return ret;
  1025. }
  1026. static int msm_pcm_channel_mixer_output_map_info(struct snd_kcontrol *kcontrol,
  1027. struct snd_ctl_elem_info *uinfo)
  1028. {
  1029. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1030. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  1031. /* Valid channel map value ranges from 1 to 64 */
  1032. uinfo->value.integer.min = 1;
  1033. uinfo->value.integer.max = 64;
  1034. return 0;
  1035. }
  1036. static int msm_pcm_add_channel_mixer_output_map_controls(
  1037. struct snd_soc_pcm_runtime *rtd)
  1038. {
  1039. struct snd_pcm *pcm = rtd->pcm;
  1040. const char *playback_mixer_ctl_name = "AudStr";
  1041. const char *capture_mixer_ctl_name = "AudStr Capture";
  1042. const char *suffix = "ChMixer Output Map";
  1043. int session_type = 0, ret = 0, channel = -1;
  1044. struct snd_kcontrol_new channel_mixer_output_map_control = {
  1045. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1046. .name = "?",
  1047. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1048. .info = msm_pcm_channel_mixer_output_map_info,
  1049. .put = msm_pcm_channel_mixer_output_map_ctl_put,
  1050. .get = msm_pcm_channel_mixer_output_map_ctl_get,
  1051. .private_value = 0,
  1052. };
  1053. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  1054. session_type = SESSION_TYPE_RX;
  1055. ret = msm_pcm_add_platform_controls(&channel_mixer_output_map_control,
  1056. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  1057. if (ret < 0)
  1058. goto fail;
  1059. }
  1060. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  1061. session_type = SESSION_TYPE_TX;
  1062. ret = msm_pcm_add_platform_controls(&channel_mixer_output_map_control,
  1063. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  1064. if (ret < 0)
  1065. goto fail;
  1066. }
  1067. return 0;
  1068. fail:
  1069. pr_err("%s: failed add platform ctl, err = %d\n",
  1070. __func__, ret);
  1071. return ret;
  1072. }
  1073. static int msm_pcm_channel_mixer_input_map_info(struct snd_kcontrol *kcontrol,
  1074. struct snd_ctl_elem_info *uinfo)
  1075. {
  1076. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1077. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  1078. /* Valid channel map value ranges from 1 to 64 */
  1079. uinfo->value.integer.min = 1;
  1080. uinfo->value.integer.max = 64;
  1081. return 0;
  1082. }
  1083. static int msm_pcm_add_channel_mixer_input_map_controls(
  1084. struct snd_soc_pcm_runtime *rtd)
  1085. {
  1086. struct snd_pcm *pcm = rtd->pcm;
  1087. const char *playback_mixer_ctl_name = "AudStr";
  1088. const char *capture_mixer_ctl_name = "AudStr Capture";
  1089. const char *suffix = "ChMixer Input Map";
  1090. int session_type = 0, ret = 0, channel = -1;
  1091. struct snd_kcontrol_new channel_mixer_input_map_control = {
  1092. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1093. .name = "?",
  1094. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1095. .info = msm_pcm_channel_mixer_input_map_info,
  1096. .put = msm_pcm_channel_mixer_input_map_ctl_put,
  1097. .get = msm_pcm_channel_mixer_input_map_ctl_get,
  1098. .private_value = 0,
  1099. };
  1100. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  1101. session_type = SESSION_TYPE_RX;
  1102. ret = msm_pcm_add_platform_controls(&channel_mixer_input_map_control,
  1103. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  1104. if (ret < 0)
  1105. goto fail;
  1106. }
  1107. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  1108. session_type = SESSION_TYPE_TX;
  1109. ret = msm_pcm_add_platform_controls(&channel_mixer_input_map_control,
  1110. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  1111. if (ret < 0)
  1112. goto fail;
  1113. }
  1114. return 0;
  1115. fail:
  1116. pr_err("%s: failed add platform ctl, err = %d\n",
  1117. __func__, ret);
  1118. return ret;
  1119. }
  1120. static int msm_pcm_channel_mixer_cfg_info(struct snd_kcontrol *kcontrol,
  1121. struct snd_ctl_elem_info *uinfo)
  1122. {
  1123. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1124. /* five int values: enable, rule, in_channels, out_channels and port_id */
  1125. uinfo->count = 5;
  1126. /* Valid range is all positive values to support above controls */
  1127. uinfo->value.integer.min = 0;
  1128. uinfo->value.integer.max = INT_MAX;
  1129. return 0;
  1130. }
  1131. static int msm_pcm_add_channel_mixer_cfg_controls(
  1132. struct snd_soc_pcm_runtime *rtd)
  1133. {
  1134. struct snd_pcm *pcm = rtd->pcm;
  1135. const char *playback_mixer_ctl_name = "AudStr";
  1136. const char *capture_mixer_ctl_name = "AudStr Capture";
  1137. const char *suffix = "ChMixer Cfg";
  1138. int session_type = 0, ret = 0, channel = -1;
  1139. struct msm_pcm_pdata *pdata = NULL;
  1140. struct snd_soc_component *component = NULL;
  1141. struct snd_kcontrol_new channel_mixer_cfg_control = {
  1142. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1143. .name = "?",
  1144. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1145. .info = msm_pcm_channel_mixer_cfg_info,
  1146. .put = msm_pcm_channel_mixer_cfg_ctl_put,
  1147. .get = msm_pcm_channel_mixer_cfg_ctl_get,
  1148. .private_value = 0,
  1149. };
  1150. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1151. if (!component) {
  1152. pr_err("%s: component is NULL\n", __func__);
  1153. return -EINVAL;
  1154. }
  1155. pdata = (struct msm_pcm_pdata *)
  1156. dev_get_drvdata(component->dev);
  1157. if (pdata == NULL) {
  1158. pr_err("%s: platform data not populated\n", __func__);
  1159. return -EINVAL;
  1160. }
  1161. pdata->pcm_device[rtd->dai_link->id] = rtd->pcm;
  1162. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  1163. session_type = SESSION_TYPE_RX;
  1164. ret = msm_pcm_add_platform_controls(&channel_mixer_cfg_control,
  1165. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  1166. if (ret < 0)
  1167. goto fail;
  1168. }
  1169. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  1170. session_type = SESSION_TYPE_TX;
  1171. ret = msm_pcm_add_platform_controls(&channel_mixer_cfg_control,
  1172. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  1173. if (ret < 0)
  1174. goto fail;
  1175. }
  1176. return 0;
  1177. fail:
  1178. pr_err("%s: failed add platform ctl, err = %d\n",
  1179. __func__, ret);
  1180. return ret;
  1181. }
  1182. static int msm_pcm_channel_mixer_weight_info(struct snd_kcontrol *kcontrol,
  1183. struct snd_ctl_elem_info *uinfo)
  1184. {
  1185. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1186. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  1187. /* Valid range: 0 to 0x4000(Unity) gain weightage */
  1188. uinfo->value.integer.min = 0;
  1189. uinfo->value.integer.max = 0x4000;
  1190. return 0;
  1191. }
  1192. static int msm_pcm_add_channel_mixer_weight_controls(
  1193. struct snd_soc_pcm_runtime *rtd,
  1194. int channel)
  1195. {
  1196. struct snd_pcm *pcm = rtd->pcm;
  1197. const char *playback_mixer_ctl_name = "AudStr";
  1198. const char *capture_mixer_ctl_name = "AudStr Capture";
  1199. const char *suffix = "ChMixer Weight Ch";
  1200. int session_type = 0, ret = 0;
  1201. struct snd_kcontrol_new channel_mixer_weight_control = {
  1202. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1203. .name = "?",
  1204. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1205. .info = msm_pcm_channel_mixer_weight_info,
  1206. .put = msm_pcm_channel_mixer_weight_ctl_put,
  1207. .get = msm_pcm_channel_mixer_weight_ctl_get,
  1208. .private_value = 0,
  1209. };
  1210. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  1211. session_type = SESSION_TYPE_RX;
  1212. ret = msm_pcm_add_platform_controls(&channel_mixer_weight_control,
  1213. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  1214. if (ret < 0)
  1215. goto fail;
  1216. }
  1217. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  1218. session_type = SESSION_TYPE_TX;
  1219. ret = msm_pcm_add_platform_controls(&channel_mixer_weight_control,
  1220. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  1221. if (ret < 0)
  1222. goto fail;
  1223. }
  1224. return 0;
  1225. fail:
  1226. pr_err("%s: failed add platform ctl, err = %d\n",
  1227. __func__, ret);
  1228. return ret;
  1229. }
  1230. static int msm_pcm_add_channel_mixer_controls(struct snd_soc_pcm_runtime *rtd)
  1231. {
  1232. int i, ret = 0;
  1233. struct snd_pcm *pcm = NULL;
  1234. struct msm_pcm_pdata *pdata = NULL;
  1235. struct snd_soc_component *component = NULL;
  1236. if (!rtd || !rtd->pcm) {
  1237. pr_err("%s invalid rtd or pcm\n", __func__);
  1238. return -EINVAL;
  1239. }
  1240. pcm = rtd->pcm;
  1241. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1242. if (!component) {
  1243. pr_err("%s: component is NULL\n", __func__);
  1244. return -EINVAL;
  1245. }
  1246. pdata = (struct msm_pcm_pdata *)
  1247. dev_get_drvdata(component->dev);
  1248. if (!pdata) {
  1249. pr_err("%s: platform data not populated\n", __func__);
  1250. return -EINVAL;
  1251. }
  1252. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream &&
  1253. !pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]) {
  1254. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX] =
  1255. kzalloc(sizeof(struct msm_pcm_channel_mixer), GFP_KERNEL);
  1256. if (!pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]) {
  1257. ret = -ENOMEM;
  1258. goto fail;
  1259. }
  1260. }
  1261. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream &&
  1262. !pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]) {
  1263. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX] =
  1264. kzalloc(sizeof(struct msm_pcm_channel_mixer), GFP_KERNEL);
  1265. if (!pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]) {
  1266. ret = -ENOMEM;
  1267. goto fail;
  1268. }
  1269. }
  1270. ret = msm_pcm_add_channel_mixer_cfg_controls(rtd);
  1271. if (ret) {
  1272. pr_err("%s: pcm add channel mixer cfg controls failed:%d\n",
  1273. __func__, ret);
  1274. goto fail;
  1275. }
  1276. ret = msm_pcm_add_channel_mixer_input_map_controls(rtd);
  1277. if (ret) {
  1278. pr_err("%s: pcm add channel mixer input map controls failed:%d\n",
  1279. __func__, ret);
  1280. goto fail;
  1281. }
  1282. ret = msm_pcm_add_channel_mixer_output_map_controls(rtd);
  1283. if (ret) {
  1284. pr_err("%s: pcm add channel mixer output map controls failed:%d\n",
  1285. __func__, ret);
  1286. goto fail;
  1287. }
  1288. for (i = 1; i <= PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++) {
  1289. ret = msm_pcm_add_channel_mixer_weight_controls(rtd, i);
  1290. if (ret) {
  1291. pr_err("%s: pcm add channel mixer weight controls failed:%d\n",
  1292. __func__, ret);
  1293. goto fail;
  1294. }
  1295. }
  1296. return 0;
  1297. fail:
  1298. kfree(pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]);
  1299. kfree(pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]);
  1300. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX] = NULL;
  1301. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX] = NULL;
  1302. return ret;
  1303. }
  1304. static int msm_pcm_add_controls(struct snd_soc_pcm_runtime *rtd)
  1305. {
  1306. int ret = 0;
  1307. pr_debug("%s\n", __func__);
  1308. ret = msm_pcm_add_volume_controls(rtd);
  1309. if (ret)
  1310. pr_err("%s: pcm add volume controls failed:%d\n",
  1311. __func__, ret);
  1312. ret = msm_pcm_add_app_type_controls(rtd);
  1313. if (ret)
  1314. pr_err("%s: pcm add app type controls failed:%d\n",
  1315. __func__, ret);
  1316. ret = msm_pcm_add_channel_mixer_controls(rtd);
  1317. if (ret)
  1318. pr_err("%s: pcm add channel mixer controls failed:%d\n",
  1319. __func__, ret);
  1320. return ret;
  1321. }
  1322. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1323. {
  1324. struct snd_card *card = rtd->card->snd_card;
  1325. int ret = 0;
  1326. if (!card->dev->coherent_dma_mask)
  1327. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1328. ret = msm_pcm_add_controls(rtd);
  1329. if (ret)
  1330. dev_err(rtd->dev, "%s, kctl add failed\n", __func__);
  1331. return ret;
  1332. }
  1333. static struct snd_soc_component_driver msm_soc_component = {
  1334. .name = DRV_NAME,
  1335. .ops = &msm_pcm_ops,
  1336. .pcm_new = msm_asoc_pcm_new,
  1337. .probe = msm_pcm_loopback_probe,
  1338. };
  1339. static int msm_pcm_probe(struct platform_device *pdev)
  1340. {
  1341. struct msm_pcm_pdata *pdata;
  1342. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  1343. __func__, dev_name(&pdev->dev));
  1344. pdata = kzalloc(sizeof(struct msm_pcm_pdata), GFP_KERNEL);
  1345. if (!pdata)
  1346. return -ENOMEM;
  1347. if (of_property_read_bool(pdev->dev.of_node,
  1348. "qcom,msm-pcm-loopback-low-latency"))
  1349. pdata->perf_mode = LOW_LATENCY_PCM_MODE;
  1350. else
  1351. pdata->perf_mode = LEGACY_PCM_MODE;
  1352. dev_set_drvdata(&pdev->dev, pdata);
  1353. return snd_soc_register_component(&pdev->dev,
  1354. &msm_soc_component,
  1355. NULL, 0);
  1356. }
  1357. static int msm_pcm_remove(struct platform_device *pdev)
  1358. {
  1359. struct msm_pcm_pdata *pdata;
  1360. int i = 0;
  1361. pdata = dev_get_drvdata(&pdev->dev);
  1362. if (pdata) {
  1363. for (i = 0; i < MSM_FRONTEND_DAI_MM_SIZE; i++) {
  1364. kfree(pdata->chmixer_pspd[i][SESSION_TYPE_RX]);
  1365. kfree(pdata->chmixer_pspd[i][SESSION_TYPE_TX]);
  1366. }
  1367. }
  1368. kfree(pdata);
  1369. snd_soc_unregister_component(&pdev->dev);
  1370. return 0;
  1371. }
  1372. static const struct of_device_id msm_pcm_loopback_dt_match[] = {
  1373. {.compatible = "qcom,msm-pcm-loopback"},
  1374. {}
  1375. };
  1376. static struct platform_driver msm_pcm_driver = {
  1377. .driver = {
  1378. .name = "msm-pcm-loopback",
  1379. .owner = THIS_MODULE,
  1380. .of_match_table = msm_pcm_loopback_dt_match,
  1381. .suppress_bind_attrs = true,
  1382. },
  1383. .probe = msm_pcm_probe,
  1384. .remove = msm_pcm_remove,
  1385. };
  1386. int __init msm_pcm_loopback_init(void)
  1387. {
  1388. return platform_driver_register(&msm_pcm_driver);
  1389. }
  1390. void msm_pcm_loopback_exit(void)
  1391. {
  1392. platform_driver_unregister(&msm_pcm_driver);
  1393. }
  1394. MODULE_DESCRIPTION("PCM loopback platform driver");
  1395. MODULE_LICENSE("GPL v2");