msm-pcm-loopback-v2.c 45 KB

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