msm-pcm-loopback-v2.c 44 KB

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