msm-pcm-loopback-v2.c 45 KB

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