msm-pcm-loopback-v2.c 45 KB

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