msm-pcm-loopback-v2.c 44 KB

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