msm_common.c 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #include <linux/gpio.h>
  7. #include <linux/of_gpio.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/slab.h>
  10. #include <linux/of_device.h>
  11. #include <sound/control.h>
  12. #include <sound/core.h>
  13. #include <sound/soc.h>
  14. #include <sound/pcm_params.h>
  15. #include <asoc/msm-cdc-pinctrl.h>
  16. #include <dsp/spf-core.h>
  17. #include <dsp/msm_audio_ion.h>
  18. #include <sound/info.h>
  19. #include <dsp/audio_prm.h>
  20. #include <dsp/digital-cdc-rsc-mgr.h>
  21. #include "msm_common.h"
  22. struct snd_card_pdata {
  23. struct kobject snd_card_kobj;
  24. int card_status;
  25. }*snd_card_pdata;
  26. #define to_asoc_mach_common_pdata(kobj) \
  27. container_of((kobj), struct msm_common_pdata, aud_dev_kobj)
  28. #define DEVICE_ENABLE 1
  29. #define DEVICE_DISABLE 0
  30. #define ARRAY_SZ 21
  31. #define BUF_SZ 32
  32. #define DIR_SZ 10
  33. #define MAX_CODEC_DAI 8
  34. #define TDM_SLOT_WIDTH_BITS 32
  35. #define TDM_MAX_SLOTS 8
  36. #define MI2S_NUM_CHANNELS 2
  37. #define SAMPLING_RATE_44P1KHZ 44100
  38. #define SAMPLING_RATE_88P2KHZ 88200
  39. #define SAMPLING_RATE_176P4KHZ 176400
  40. #define SAMPLING_RATE_352P8KHZ 352800
  41. static struct attribute device_state_attr = {
  42. .name = "state",
  43. .mode = 0660,
  44. };
  45. static struct attribute card_state_attr = {
  46. .name = "card_state",
  47. .mode = 0660,
  48. };
  49. #define MAX_PORT 20
  50. #define CODEC_CHMAP "Channel Map"
  51. enum backend_id {
  52. SLIM = 1,
  53. CODEC_DMA,
  54. };
  55. struct chmap_pdata {
  56. int id;
  57. uint32_t num_codec_dai;
  58. struct snd_soc_dai *dai[MAX_CODEC_DAI];
  59. };
  60. static const struct snd_pcm_hardware dummy_dma_hardware = {
  61. /* Random values to keep userspace happy when checking constraints */
  62. .info = SNDRV_PCM_INFO_INTERLEAVED |
  63. SNDRV_PCM_INFO_BLOCK_TRANSFER,
  64. .buffer_bytes_max = 128*1024,
  65. .period_bytes_min = PAGE_SIZE,
  66. .period_bytes_max = PAGE_SIZE*2,
  67. .periods_min = 2,
  68. .periods_max = 128,
  69. };
  70. #define MAX_USR_INPUT 10
  71. static int qos_vote_status;
  72. static bool lpi_pcm_logging_enable;
  73. static bool vote_against_sleep_enable;
  74. static struct dev_pm_qos_request latency_pm_qos_req; /* pm_qos request */
  75. static unsigned int qos_client_active_cnt;
  76. /* set audio task affinity to core 1 & 2 */
  77. static const unsigned int audio_core_list[] = {1, 2};
  78. static cpumask_t audio_cpu_map = CPU_MASK_NONE;
  79. static struct dev_pm_qos_request *msm_audio_req = NULL;
  80. static bool kregister_pm_qos_latency_controls = false;
  81. #define MSM_LL_QOS_VALUE 300 /* time in us to ensure LPM doesn't go in C3/C4 */
  82. static ssize_t aud_dev_sysfs_store(struct kobject *kobj,
  83. struct attribute *attr,
  84. const char *buf, size_t count)
  85. {
  86. ssize_t ret = -EINVAL;
  87. struct msm_common_pdata *pdata = to_asoc_mach_common_pdata(kobj);
  88. uint32_t pcm_id, state = 0;
  89. if (count > MAX_USR_INPUT) {
  90. pr_err("%s: invalid string written", __func__);
  91. goto done;
  92. }
  93. sscanf(buf, "%d %d", &pcm_id, &state);
  94. if ((pcm_id > pdata->num_aud_devs) || (pcm_id < 0)) {
  95. pr_err("%s: invalid pcm id %d \n", __func__, pcm_id);
  96. goto done;
  97. }
  98. if ((state > DEVICE_ENABLE) || (state < DEVICE_DISABLE)) {
  99. pr_err("%s: invalid state %d \n", __func__, state);
  100. goto done;
  101. }
  102. pr_debug("%s: pcm_id %d state %d \n", __func__, pcm_id, state);
  103. pdata->aud_dev_state[pcm_id] = state;
  104. ret = count;
  105. done:
  106. return ret;
  107. }
  108. static const struct sysfs_ops aud_dev_sysfs_ops = {
  109. .store = aud_dev_sysfs_store,
  110. };
  111. static struct kobj_type aud_dev_ktype = {
  112. .sysfs_ops = &aud_dev_sysfs_ops,
  113. };
  114. static int aud_dev_sysfs_init(struct msm_common_pdata *pdata)
  115. {
  116. int ret = 0;
  117. char dir[10] = "aud_dev";
  118. ret = kobject_init_and_add(&pdata->aud_dev_kobj, &aud_dev_ktype,
  119. kernel_kobj, dir);
  120. if (ret < 0) {
  121. pr_err("%s: Failed to add kobject %s, err = %d\n",
  122. __func__, dir, ret);
  123. goto done;
  124. }
  125. ret = sysfs_create_file(&pdata->aud_dev_kobj, &device_state_attr);
  126. if (ret < 0) {
  127. pr_err("%s: Failed to add wdsp_boot sysfs entry to %s\n",
  128. __func__, dir);
  129. goto fail_create_file;
  130. }
  131. return ret;
  132. fail_create_file:
  133. kobject_put(&pdata->aud_dev_kobj);
  134. done:
  135. return ret;
  136. }
  137. int snd_card_notify_user(snd_card_status_t card_status)
  138. {
  139. snd_card_pdata->card_status = card_status;
  140. sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
  141. return 0;
  142. }
  143. int snd_card_set_card_status(snd_card_status_t card_status)
  144. {
  145. snd_card_pdata->card_status = card_status;
  146. return 0;
  147. }
  148. static ssize_t snd_card_sysfs_show(struct kobject *kobj,
  149. struct attribute *attr, char *buf)
  150. {
  151. return snprintf(buf, BUF_SZ, "%d", snd_card_pdata->card_status);
  152. }
  153. static ssize_t snd_card_sysfs_store(struct kobject *kobj,
  154. struct attribute *attr, const char *buf, size_t count)
  155. {
  156. sscanf(buf, "%d", &snd_card_pdata->card_status);
  157. sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
  158. return 0;
  159. }
  160. static const struct sysfs_ops snd_card_sysfs_ops = {
  161. .show = snd_card_sysfs_show,
  162. .store = snd_card_sysfs_store,
  163. };
  164. static struct kobj_type snd_card_ktype = {
  165. .sysfs_ops = &snd_card_sysfs_ops,
  166. };
  167. int snd_card_sysfs_init(void)
  168. {
  169. int ret = 0;
  170. char dir[DIR_SZ] = "snd_card";
  171. snd_card_pdata = kcalloc(1, sizeof(struct snd_card_pdata), GFP_KERNEL);
  172. ret = kobject_init_and_add(&snd_card_pdata->snd_card_kobj, &snd_card_ktype,
  173. kernel_kobj, dir);
  174. if (ret < 0) {
  175. pr_err("%s: Failed to add kobject %s, err = %d\n",
  176. __func__, dir, ret);
  177. goto done;
  178. }
  179. ret = sysfs_create_file(&snd_card_pdata->snd_card_kobj, &card_state_attr);
  180. if (ret < 0) {
  181. pr_err("%s: Failed to add snd_card sysfs entry to %s\n",
  182. __func__, dir);
  183. goto fail_create_file;
  184. }
  185. return ret;
  186. fail_create_file:
  187. kobject_put(&snd_card_pdata->snd_card_kobj);
  188. done:
  189. return ret;
  190. }
  191. static void check_userspace_service_state(struct snd_soc_pcm_runtime *rtd,
  192. struct msm_common_pdata *pdata)
  193. {
  194. uint32_t i;
  195. dev_info(rtd->card->dev,"%s: pcm_id %d state %d\n", __func__,
  196. rtd->num, pdata->aud_dev_state[rtd->num]);
  197. mutex_lock(&pdata->aud_dev_lock);
  198. if (pdata->aud_dev_state[rtd->num] == DEVICE_ENABLE) {
  199. dev_info(rtd->card->dev, "%s userspace service crashed\n",
  200. __func__);
  201. /*Reset the state as sysfs node wont be triggred*/
  202. pdata->aud_dev_state[rtd->num] = DEVICE_DISABLE;
  203. for (i = 0; i < pdata->num_aud_devs; i++) {
  204. if (pdata->aud_dev_state[i] == DEVICE_ENABLE)
  205. goto exit;
  206. }
  207. /*Issue close all graph cmd to DSP*/
  208. spf_core_apm_close_all();
  209. /*unmap all dma mapped buffers*/
  210. msm_audio_ion_crash_handler();
  211. }
  212. exit:
  213. mutex_unlock(&pdata->aud_dev_lock);
  214. return;
  215. }
  216. static int get_mi2s_tdm_auxpcm_intf_index(const char *stream_name)
  217. {
  218. if (!strnstr(stream_name, "TDM", strlen(stream_name)) &&
  219. !strnstr(stream_name, "MI2S", strlen(stream_name)) &&
  220. !strnstr(stream_name, "AUXPCM", strlen(stream_name)))
  221. return -EINVAL;
  222. if (strnstr(stream_name, "LPAIF_RXTX", strlen(stream_name)))
  223. return QUAT_MI2S_TDM_AUXPCM;
  224. else if (strnstr(stream_name, "LPAIF_WSA", strlen(stream_name)))
  225. return SEN_MI2S_TDM_AUXPCM;
  226. else if (strnstr(stream_name, "LPAIF_VA", strlen(stream_name)))
  227. return QUIN_MI2S_TDM_AUXPCM;
  228. else if (strnstr(stream_name, "LPAIF_AUD", strlen(stream_name))){
  229. if (strnstr(stream_name, "PRIMARY", strlen(stream_name)))
  230. return SEP_MI2S_TDM_AUXPCM;
  231. else if (strnstr(stream_name, "SECONDARY", strlen(stream_name)))
  232. return TER_MI2S_TDM_AUXPCM;
  233. }
  234. else if (strnstr(stream_name, "LPAIF", strlen(stream_name))) {
  235. if (strnstr(stream_name, "PRIMARY", strlen(stream_name)))
  236. return PRI_MI2S_TDM_AUXPCM;
  237. else if (strnstr(stream_name, "SECONDARY", strlen(stream_name)))
  238. return SEC_MI2S_TDM_AUXPCM;
  239. }
  240. pr_debug("%s: stream name %s does not match\n", __func__, stream_name);
  241. return -EINVAL;
  242. }
  243. static bool is_fractional_sample_rate(unsigned int sample_rate)
  244. {
  245. switch (sample_rate) {
  246. case SAMPLING_RATE_44P1KHZ:
  247. case SAMPLING_RATE_88P2KHZ:
  248. case SAMPLING_RATE_176P4KHZ:
  249. case SAMPLING_RATE_352P8KHZ:
  250. return true;
  251. default:
  252. return false;
  253. }
  254. return false;
  255. }
  256. static int get_mi2s_clk_id(int index)
  257. {
  258. int clk_id = -EINVAL;
  259. switch(index) {
  260. case PRI_MI2S_TDM_AUXPCM:
  261. clk_id = CLOCK_ID_PRI_MI2S_IBIT;
  262. break;
  263. case SEC_MI2S_TDM_AUXPCM:
  264. clk_id = CLOCK_ID_SEC_MI2S_IBIT;
  265. break;
  266. case TER_MI2S_TDM_AUXPCM:
  267. clk_id = CLOCK_ID_TER_MI2S_IBIT;
  268. break;
  269. case QUAT_MI2S_TDM_AUXPCM:
  270. clk_id = CLOCK_ID_QUAD_MI2S_IBIT;
  271. break;
  272. case QUIN_MI2S_TDM_AUXPCM:
  273. clk_id = CLOCK_ID_QUI_MI2S_IBIT;
  274. break;
  275. case SEN_MI2S_TDM_AUXPCM:
  276. clk_id = CLOCK_ID_SEN_MI2S_IBIT;
  277. break;
  278. case SEP_MI2S_TDM_AUXPCM:
  279. clk_id = CLOCK_ID_SEP_MI2S_IBIT;
  280. break;
  281. default:
  282. pr_err("%s: Invalid interface index: %d\n", __func__, index);
  283. }
  284. pr_debug("%s: clk id: %d\n", __func__, clk_id);
  285. return clk_id;
  286. }
  287. static int get_tdm_clk_id(int index)
  288. {
  289. int clk_id = -EINVAL;
  290. switch(index) {
  291. case PRI_MI2S_TDM_AUXPCM:
  292. clk_id = CLOCK_ID_PRI_TDM_IBIT;
  293. break;
  294. case SEC_MI2S_TDM_AUXPCM:
  295. clk_id = CLOCK_ID_SEC_TDM_IBIT;
  296. break;
  297. case TER_MI2S_TDM_AUXPCM:
  298. clk_id = CLOCK_ID_TER_TDM_IBIT;
  299. break;
  300. case QUAT_MI2S_TDM_AUXPCM:
  301. clk_id = CLOCK_ID_QUAD_TDM_IBIT;
  302. break;
  303. case QUIN_MI2S_TDM_AUXPCM:
  304. clk_id = CLOCK_ID_QUI_TDM_IBIT;
  305. break;
  306. case SEN_MI2S_TDM_AUXPCM:
  307. clk_id = CLOCK_ID_SEN_TDM_IBIT;
  308. break;
  309. case SEP_MI2S_TDM_AUXPCM:
  310. clk_id = CLOCK_ID_SEP_TDM_IBIT;
  311. break;
  312. default:
  313. pr_err("%s: Invalid interface index: %d\n", __func__, index);
  314. }
  315. pr_debug("%s: clk id: %d\n", __func__, clk_id);
  316. return clk_id;
  317. }
  318. int mi2s_tdm_hw_vote_req(struct msm_common_pdata *pdata, int enable)
  319. {
  320. int ret = 0;
  321. if (!pdata || (pdata->lpass_audio_hw_vote == NULL)) {
  322. pr_err("%s: pdata or lpass audio hw vote node NULL", __func__);
  323. return -EINVAL;
  324. }
  325. pr_debug("%s: lpass audio hw vote for fractional sample rate enable: %d\n",
  326. __func__, enable);
  327. if (enable) {
  328. if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) == 0) {
  329. ret = digital_cdc_rsc_mgr_hw_vote_enable(pdata->lpass_audio_hw_vote, NULL);
  330. if (ret < 0) {
  331. pr_err("%s lpass audio hw vote enable failed %d\n",
  332. __func__, ret);
  333. return ret;
  334. }
  335. }
  336. atomic_inc(&pdata->lpass_audio_hw_vote_ref_cnt);
  337. } else {
  338. atomic_dec(&pdata->lpass_audio_hw_vote_ref_cnt);
  339. if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) == 0)
  340. digital_cdc_rsc_mgr_hw_vote_disable(pdata->lpass_audio_hw_vote, NULL);
  341. else if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) < 0)
  342. atomic_set(&pdata->lpass_audio_hw_vote_ref_cnt, 0);
  343. }
  344. return ret;
  345. }
  346. int msm_common_snd_hw_params(struct snd_pcm_substream *substream,
  347. struct snd_pcm_hw_params *params)
  348. {
  349. int ret = 0;
  350. int slot_width = TDM_SLOT_WIDTH_BITS;
  351. int slots;
  352. int sample_width;
  353. unsigned int rate;
  354. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  355. const char *stream_name = rtd->dai_link->stream_name;
  356. struct snd_soc_card *card = rtd->card;
  357. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  358. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  359. struct clk_cfg intf_clk_cfg;
  360. dev_dbg(rtd->card->dev,
  361. "%s: substream = %s stream = %d\n",
  362. __func__, substream->name, substream->stream);
  363. if (!pdata) {
  364. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  365. return -EINVAL;
  366. }
  367. if (index >= 0) {
  368. mutex_lock(&pdata->lock[index]);
  369. if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) == 0) {
  370. if ((strnstr(stream_name, "TDM", strlen(stream_name)))) {
  371. slots = pdata->tdm_max_slots;
  372. rate = params_rate(params);
  373. ret = get_tdm_clk_id(index);
  374. if ( ret < 0)
  375. goto done;
  376. intf_clk_cfg.clk_id = ret;
  377. intf_clk_cfg.clk_freq_in_hz = rate * slot_width * slots;
  378. intf_clk_cfg.clk_attri = pdata->tdm_clk_attribute[index];
  379. intf_clk_cfg.clk_root = 0;
  380. if (pdata->is_audio_hw_vote_required[index] &&
  381. is_fractional_sample_rate(rate)) {
  382. ret = mi2s_tdm_hw_vote_req(pdata, 1);
  383. if (ret < 0) {
  384. pr_err("%s lpass audio hw vote enable failed %d\n",
  385. __func__, ret);
  386. goto done;
  387. }
  388. }
  389. pr_debug("%s: clk_id :%d clk freq %d\n", __func__,
  390. intf_clk_cfg.clk_id, intf_clk_cfg.clk_freq_in_hz);
  391. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 1);
  392. if (ret < 0) {
  393. pr_err("%s: prm lpass tdm clk cfg set failed ret %d\n",
  394. __func__, ret);
  395. goto done;
  396. }
  397. } else if ((strnstr(stream_name, "MI2S", strlen(stream_name)))) {
  398. ret = get_mi2s_clk_id(index);
  399. if (ret < 0)
  400. goto done;
  401. intf_clk_cfg.clk_id = ret;
  402. rate = params_rate(params);
  403. switch (params_format(params)) {
  404. case SNDRV_PCM_FORMAT_S24_LE:
  405. case SNDRV_PCM_FORMAT_S24_3LE:
  406. case SNDRV_PCM_FORMAT_S32_LE:
  407. sample_width = 32;
  408. break;
  409. case SNDRV_PCM_FORMAT_S16_LE:
  410. default:
  411. sample_width = 16;
  412. pr_debug("%s: bitwidth set to default : %d\n",
  413. __func__, sample_width);
  414. }
  415. intf_clk_cfg.clk_freq_in_hz = rate *
  416. MI2S_NUM_CHANNELS * sample_width;
  417. intf_clk_cfg.clk_attri = pdata->mi2s_clk_attribute[index];
  418. intf_clk_cfg.clk_root = CLOCK_ROOT_DEFAULT;
  419. if (pdata->is_audio_hw_vote_required[index] &&
  420. is_fractional_sample_rate(rate)) {
  421. ret = mi2s_tdm_hw_vote_req(pdata, 1);
  422. if (ret < 0) {
  423. pr_err("%s lpass audio hw vote enable failed %d\n",
  424. __func__, ret);
  425. goto done;
  426. }
  427. }
  428. pr_debug("%s: mi2s clk_id :%d clk freq %d\n", __func__,
  429. intf_clk_cfg.clk_id, intf_clk_cfg.clk_freq_in_hz);
  430. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 1);
  431. if (ret < 0) {
  432. pr_err("%s: prm lpass mi2s clk cfg set failed ret %d\n",
  433. __func__, ret);
  434. goto done;
  435. }
  436. } else {
  437. pr_err("%s: unsupported stream name: %s\n",
  438. __func__, stream_name);
  439. goto done;
  440. }
  441. }
  442. atomic_inc(&pdata->lpass_intf_clk_ref_cnt[index]);
  443. done:
  444. mutex_unlock(&pdata->lock[index]);
  445. }
  446. return ret;
  447. }
  448. int msm_common_snd_startup(struct snd_pcm_substream *substream)
  449. {
  450. int ret = 0;
  451. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  452. struct snd_soc_card *card = rtd->card;
  453. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  454. const char *stream_name = rtd->dai_link->stream_name;
  455. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  456. dev_dbg(rtd->card->dev,
  457. "%s: substream = %s stream = %d\n",
  458. __func__, substream->name, substream->stream);
  459. if (!pdata) {
  460. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  461. return -EINVAL;
  462. }
  463. if (!rtd->dai_link->no_pcm)
  464. snd_soc_set_runtime_hwparams(substream, &dummy_dma_hardware);
  465. if (index >= 0) {
  466. mutex_lock(&pdata->lock[index]);
  467. if (pdata->mi2s_gpio_p[index]) {
  468. if (atomic_read(&(pdata->mi2s_gpio_ref_cnt[index])) == 0) {
  469. ret = msm_cdc_pinctrl_select_active_state(
  470. pdata->mi2s_gpio_p[index]);
  471. if (ret) {
  472. pr_err("%s:pinctrl set actve fail with %d\n",
  473. __func__, ret);
  474. goto done;
  475. }
  476. }
  477. atomic_inc(&(pdata->mi2s_gpio_ref_cnt[index]));
  478. }
  479. done:
  480. mutex_unlock(&pdata->lock[index]);
  481. }
  482. return ret;
  483. }
  484. void msm_common_snd_shutdown(struct snd_pcm_substream *substream)
  485. {
  486. int ret;
  487. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  488. struct snd_soc_card *card = rtd->card;
  489. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  490. struct snd_pcm_runtime *runtime = substream->runtime;
  491. const char *stream_name = rtd->dai_link->stream_name;
  492. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  493. struct clk_cfg intf_clk_cfg;
  494. unsigned int rate = runtime->rate;
  495. memset(&intf_clk_cfg, 0, sizeof(struct clk_cfg));
  496. pr_debug("%s(): substream = %s stream = %d\n", __func__,
  497. substream->name, substream->stream);
  498. if (!pdata) {
  499. dev_err(card->dev, "%s: pdata is NULL\n", __func__);
  500. return;
  501. }
  502. check_userspace_service_state(rtd, pdata);
  503. if (index >= 0) {
  504. mutex_lock(&pdata->lock[index]);
  505. atomic_dec(&pdata->lpass_intf_clk_ref_cnt[index]);
  506. if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) == 0) {
  507. if ((strnstr(stream_name, "TDM", strlen(stream_name)))) {
  508. ret = get_tdm_clk_id(index);
  509. if (ret > 0) {
  510. intf_clk_cfg.clk_id = ret;
  511. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 0);
  512. if (ret < 0)
  513. pr_err("%s: prm tdm clk cfg set failed ret %d\n",
  514. __func__, ret);
  515. }
  516. } else if((strnstr(stream_name, "MI2S", strlen(stream_name)))) {
  517. ret = get_mi2s_clk_id(index);
  518. if (ret > 0) {
  519. intf_clk_cfg.clk_id = ret;
  520. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 0);
  521. if (ret < 0)
  522. pr_err("%s: prm mi2s clk cfg disable failed ret %d\n",
  523. __func__, ret);
  524. }
  525. } else {
  526. pr_err("%s: unsupported stream name: %s\n",
  527. __func__, stream_name);
  528. }
  529. if (pdata->is_audio_hw_vote_required[index] &&
  530. is_fractional_sample_rate(rate)) {
  531. ret = mi2s_tdm_hw_vote_req(pdata, 0);
  532. }
  533. } else if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) < 0) {
  534. atomic_set(&pdata->lpass_intf_clk_ref_cnt[index], 0);
  535. }
  536. if (pdata->mi2s_gpio_p[index]) {
  537. atomic_dec(&pdata->mi2s_gpio_ref_cnt[index]);
  538. if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) == 0) {
  539. ret = msm_cdc_pinctrl_select_sleep_state(
  540. pdata->mi2s_gpio_p[index]);
  541. if (ret)
  542. dev_err(card->dev,
  543. "%s: pinctrl set actv fail %d\n",
  544. __func__, ret);
  545. } else if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) < 0) {
  546. atomic_set(&pdata->mi2s_gpio_ref_cnt[index], 0);
  547. }
  548. }
  549. mutex_unlock(&pdata->lock[index]);
  550. }
  551. }
  552. static void msm_audio_add_qos_request(void)
  553. {
  554. int i;
  555. int cpu = 0;
  556. int ret = 0;
  557. msm_audio_req = kcalloc(num_possible_cpus(),
  558. sizeof(struct dev_pm_qos_request), GFP_KERNEL);
  559. if (!msm_audio_req)
  560. return;
  561. for (i = 0; i < ARRAY_SIZE(audio_core_list); i++) {
  562. if (audio_core_list[i] >= num_possible_cpus())
  563. pr_err("%s incorrect cpu id: %d specified.\n",
  564. __func__, audio_core_list[i]);
  565. else
  566. cpumask_set_cpu(audio_core_list[i], &audio_cpu_map);
  567. }
  568. for_each_cpu(cpu, &audio_cpu_map) {
  569. ret = dev_pm_qos_add_request(get_cpu_device(cpu),
  570. &msm_audio_req[cpu],
  571. DEV_PM_QOS_RESUME_LATENCY,
  572. PM_QOS_CPU_LATENCY_DEFAULT_VALUE);
  573. if (ret < 0)
  574. pr_err("%s error (%d) adding resume latency to cpu %d.\n",
  575. __func__, ret, cpu);
  576. pr_debug("%s set cpu affinity to core %d.\n", __func__, cpu);
  577. }
  578. }
  579. static void msm_audio_remove_qos_request(void)
  580. {
  581. int cpu = 0;
  582. int ret = 0;
  583. if (msm_audio_req) {
  584. for_each_cpu(cpu, &audio_cpu_map) {
  585. ret = dev_pm_qos_remove_request(
  586. &msm_audio_req[cpu]);
  587. if (ret < 0)
  588. pr_err("%s error (%d) removing request from cpu %d.\n",
  589. __func__, ret, cpu);
  590. pr_debug("%s remove cpu affinity of core %d.\n", __func__, cpu);
  591. }
  592. kfree(msm_audio_req);
  593. }
  594. }
  595. int msm_common_snd_init(struct platform_device *pdev, struct snd_soc_card *card)
  596. {
  597. struct msm_common_pdata *common_pdata = NULL;
  598. int count, ret = 0;
  599. uint32_t val_array[MI2S_TDM_AUXPCM_MAX] = {0};
  600. struct clk *lpass_audio_hw_vote = NULL;
  601. common_pdata = kcalloc(1, sizeof(struct msm_common_pdata), GFP_KERNEL);
  602. if (!common_pdata)
  603. return -ENOMEM;
  604. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  605. mutex_init(&common_pdata->lock[count]);
  606. atomic_set(&common_pdata->mi2s_gpio_ref_cnt[count], 0);
  607. }
  608. ret = of_property_read_u32(pdev->dev.of_node, "qcom,tdm-max-slots",
  609. &common_pdata->tdm_max_slots);
  610. if (ret) {
  611. dev_info(&pdev->dev, "%s: No DT match for tdm max slots\n",
  612. __func__);
  613. }
  614. if ((common_pdata->tdm_max_slots <= 0) || (common_pdata->tdm_max_slots >
  615. TDM_MAX_SLOTS)) {
  616. common_pdata->tdm_max_slots = TDM_MAX_SLOTS;
  617. dev_info(&pdev->dev, "%s: Using default tdm max slot: %d\n",
  618. __func__, common_pdata->tdm_max_slots);
  619. }
  620. /* Register LPASS audio hw vote */
  621. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  622. if (IS_ERR(lpass_audio_hw_vote)) {
  623. ret = PTR_ERR(lpass_audio_hw_vote);
  624. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  625. __func__, "lpass_audio_hw_vote", ret);
  626. lpass_audio_hw_vote = NULL;
  627. ret = 0;
  628. }
  629. common_pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  630. ret = of_property_read_u32_array(pdev->dev.of_node,
  631. "qcom,mi2s-tdm-is-hw-vote-needed",
  632. val_array, MI2S_TDM_AUXPCM_MAX);
  633. if (ret) {
  634. dev_dbg(&pdev->dev, "%s:no qcom,mi2s-tdm-is-hw-vote-needed in DT node\n",
  635. __func__);
  636. } else {
  637. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  638. common_pdata->is_audio_hw_vote_required[count] =
  639. val_array[count];
  640. }
  641. }
  642. ret = of_property_read_u32_array(pdev->dev.of_node, "qcom,tdm-clk-attribute",
  643. val_array, MI2S_TDM_AUXPCM_MAX);
  644. if (ret) {
  645. dev_info(&pdev->dev,
  646. "%s: No DT match for tdm clk attribute, set to default\n", __func__);
  647. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  648. common_pdata->tdm_clk_attribute[count] =
  649. CLOCK_ATTRIBUTE_COUPLE_NO;
  650. }
  651. } else {
  652. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  653. common_pdata->tdm_clk_attribute[count] =
  654. val_array[count];
  655. }
  656. }
  657. ret = of_property_read_u32_array(pdev->dev.of_node, "qcom,mi2s-clk-attribute",
  658. val_array, MI2S_TDM_AUXPCM_MAX);
  659. if (ret) {
  660. dev_info(&pdev->dev,
  661. "%s: No DT match for mi2s clk attribute, set to default\n", __func__);
  662. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  663. common_pdata->mi2s_clk_attribute[count] =
  664. CLOCK_ATTRIBUTE_COUPLE_NO;
  665. }
  666. } else {
  667. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  668. common_pdata->mi2s_clk_attribute[count] =
  669. val_array[count];
  670. }
  671. }
  672. common_pdata->mi2s_gpio_p[PRI_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  673. "qcom,pri-mi2s-gpios", 0);
  674. common_pdata->mi2s_gpio_p[SEC_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  675. "qcom,sec-mi2s-gpios", 0);
  676. common_pdata->mi2s_gpio_p[TER_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  677. "qcom,tert-mi2s-gpios", 0);
  678. common_pdata->mi2s_gpio_p[QUAT_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  679. "qcom,quat-mi2s-gpios", 0);
  680. common_pdata->mi2s_gpio_p[QUIN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  681. "qcom,quin-mi2s-gpios", 0);
  682. common_pdata->mi2s_gpio_p[SEN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  683. "qcom,sen-mi2s-gpios", 0);
  684. common_pdata->mi2s_gpio_p[SEP_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  685. "qcom,sep-mi2s-gpios", 0);
  686. common_pdata->aud_dev_state = devm_kcalloc(&pdev->dev, card->num_links,
  687. sizeof(uint8_t), GFP_KERNEL);
  688. dev_info(&pdev->dev, "num_links %d \n", card->num_links);
  689. common_pdata->num_aud_devs = card->num_links;
  690. mutex_init(&common_pdata->aud_dev_lock);
  691. aud_dev_sysfs_init(common_pdata);
  692. msm_common_set_pdata(card, common_pdata);
  693. /* Add QoS request for audio tasks */
  694. msm_audio_add_qos_request();
  695. return 0;
  696. };
  697. void msm_common_snd_deinit(struct msm_common_pdata *common_pdata)
  698. {
  699. int count;
  700. if (!common_pdata)
  701. return;
  702. msm_audio_remove_qos_request();
  703. mutex_destroy(&common_pdata->aud_dev_lock);
  704. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  705. mutex_destroy(&common_pdata->lock[count]);
  706. }
  707. }
  708. int msm_channel_map_info(struct snd_kcontrol *kcontrol,
  709. struct snd_ctl_elem_info *uinfo)
  710. {
  711. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  712. uinfo->count = sizeof(uint32_t) * MAX_PORT;
  713. return 0;
  714. }
  715. int msm_channel_map_get(struct snd_kcontrol *kcontrol,
  716. struct snd_ctl_elem_value *ucontrol)
  717. {
  718. struct chmap_pdata *kctl_pdata =
  719. (struct chmap_pdata *)kcontrol->private_data;
  720. struct snd_soc_dai *codec_dai = NULL;
  721. int backend_id = 0;
  722. uint32_t rx_ch[MAX_PORT] = {0}, tx_ch[MAX_PORT] = {0};
  723. uint32_t rx_ch_cnt = 0, tx_ch_cnt = 0;
  724. uint32_t *chmap_data = NULL;
  725. int ret = 0, len = 0, i = 0;
  726. if (kctl_pdata == NULL) {
  727. pr_debug("%s: chmap_pdata is not initialized\n", __func__);
  728. return -EINVAL;
  729. }
  730. codec_dai = kctl_pdata->dai[0];
  731. backend_id = kctl_pdata->id;
  732. switch (backend_id) {
  733. case SLIM: {
  734. uint32_t *chmap;
  735. uint32_t ch_cnt;
  736. ret = snd_soc_dai_get_channel_map(codec_dai,
  737. &tx_ch_cnt, tx_ch, &rx_ch_cnt, rx_ch);
  738. if (ret || (tx_ch_cnt == 0 && rx_ch_cnt == 0)) {
  739. pr_debug("%s: got incorrect channel map for backend_id:%d\n",
  740. __func__, backend_id);
  741. return ret;
  742. }
  743. if (rx_ch_cnt) {
  744. chmap = rx_ch;
  745. ch_cnt = rx_ch_cnt;
  746. } else {
  747. chmap = tx_ch;
  748. ch_cnt = tx_ch_cnt;
  749. }
  750. if (ch_cnt > 2) {
  751. pr_err("%s: Incorrect channel count: %d\n", __func__, ch_cnt);
  752. return -EINVAL;
  753. }
  754. len = sizeof(uint32_t) * (ch_cnt + 1);
  755. chmap_data = kzalloc(len, GFP_KERNEL);
  756. if (!chmap_data)
  757. return -ENOMEM;
  758. chmap_data[0] = ch_cnt;
  759. for (i = 0; i < ch_cnt; i++)
  760. chmap_data[i+1] = chmap[i];
  761. memcpy(ucontrol->value.bytes.data, chmap_data, len);
  762. break;
  763. }
  764. case CODEC_DMA: {
  765. uint32_t cur_rx_ch = 0, cur_tx_ch = 0;
  766. uint32_t cur_rx_ch_cnt = 0, cur_tx_ch_cnt = 0;
  767. for (i = 0; i < kctl_pdata->num_codec_dai; ++i) {
  768. codec_dai = kctl_pdata->dai[i];
  769. if(!codec_dai) {
  770. continue;
  771. }
  772. cur_rx_ch_cnt = 0;
  773. cur_tx_ch_cnt = 0;
  774. cur_tx_ch = 0;
  775. cur_rx_ch = 0;
  776. ret = snd_soc_dai_get_channel_map(codec_dai,
  777. &cur_tx_ch_cnt, &cur_tx_ch,
  778. &cur_rx_ch_cnt, &cur_rx_ch);
  779. /* DAIs that not supports get_channel_map should pass */
  780. if (ret && (ret != -ENOTSUPP)) {
  781. pr_err("%s: get channel map failed for backend_id:%d,"
  782. " ret:%d\n",
  783. __func__, backend_id, ret);
  784. return ret;
  785. }
  786. rx_ch_cnt += cur_rx_ch_cnt;
  787. tx_ch_cnt += cur_tx_ch_cnt;
  788. rx_ch[0] |= cur_rx_ch;
  789. tx_ch[0] |= cur_tx_ch;
  790. }
  791. /* reset return value from the loop above */
  792. ret = 0;
  793. if (rx_ch_cnt == 0 && tx_ch_cnt == 0) {
  794. pr_debug("%s: incorrect ch map for backend_id:%d, RX Channel Cnt:%d, TX Channel Cnt:%d\n",
  795. __func__, backend_id, rx_ch_cnt, tx_ch_cnt);
  796. return ret;
  797. }
  798. chmap_data = kzalloc(sizeof(uint32_t) * 2, GFP_KERNEL);
  799. if (!chmap_data)
  800. return -ENOMEM;
  801. if (rx_ch_cnt) {
  802. chmap_data[0] = rx_ch_cnt;
  803. chmap_data[1] = rx_ch[0];
  804. } else {
  805. chmap_data[0] = tx_ch_cnt;
  806. chmap_data[1] = tx_ch[0];
  807. }
  808. memcpy(ucontrol->value.bytes.data, chmap_data,
  809. sizeof(uint32_t) * 2);
  810. break;
  811. }
  812. default:
  813. pr_err("%s, Invalid backend %d\n", __func__, backend_id);
  814. ret = -EINVAL;
  815. break;
  816. }
  817. kfree(chmap_data);
  818. return ret;
  819. }
  820. void msm_common_get_backend_name(const char *stream_name, char **backend_name)
  821. {
  822. char arg[ARRAY_SZ] = {0};
  823. char value[61] = {0};
  824. sscanf(stream_name, "%20[^-]-%60s", arg, value);
  825. *backend_name = kzalloc(ARRAY_SZ, GFP_KERNEL);
  826. if (!(*backend_name))
  827. return;
  828. strlcpy(*backend_name, arg, ARRAY_SZ);
  829. }
  830. static void msm_audio_update_qos_request(u32 latency)
  831. {
  832. int cpu = 0;
  833. int ret = -1;
  834. if (msm_audio_req) {
  835. for_each_cpu(cpu, &audio_cpu_map) {
  836. ret = dev_pm_qos_update_request(
  837. &msm_audio_req[cpu], latency);
  838. if (1 == ret ) {
  839. pr_debug("%s: updated latency of core %d to %u.\n",
  840. __func__, cpu, latency);
  841. } else if (0 == ret) {
  842. pr_debug("%s: latency of core %d not changed. latency %u.\n",
  843. __func__, cpu, latency);
  844. } else {
  845. pr_err("%s: failed to update latency of core %d, error %d \n",
  846. __func__, cpu, ret);
  847. }
  848. }
  849. }
  850. }
  851. static int msm_qos_ctl_put(struct snd_kcontrol *kcontrol,
  852. struct snd_ctl_elem_value *ucontrol)
  853. {
  854. qos_vote_status = ucontrol->value.enumerated.item[0];
  855. if (qos_vote_status) {
  856. if (dev_pm_qos_request_active(&latency_pm_qos_req))
  857. dev_pm_qos_remove_request(&latency_pm_qos_req);
  858. qos_client_active_cnt++;
  859. if (qos_client_active_cnt == 1)
  860. msm_audio_update_qos_request(MSM_LL_QOS_VALUE);
  861. } else {
  862. if (qos_client_active_cnt > 0)
  863. qos_client_active_cnt--;
  864. if (qos_client_active_cnt == 0)
  865. msm_audio_update_qos_request(PM_QOS_CPU_LATENCY_DEFAULT_VALUE);
  866. }
  867. return 0;
  868. }
  869. static int msm_qos_ctl_get(struct snd_kcontrol *kcontrol,
  870. struct snd_ctl_elem_value *ucontrol)
  871. {
  872. ucontrol->value.enumerated.item[0] = qos_vote_status;
  873. return 0;
  874. }
  875. static int msm_lpi_logging_enable_put(struct snd_kcontrol *kcontrol,
  876. struct snd_ctl_elem_value *ucontrol)
  877. {
  878. lpi_pcm_logging_enable = ucontrol->value.integer.value[0];
  879. pr_debug("%s: lpi pcm logging enable: %d", __func__,
  880. lpi_pcm_logging_enable);
  881. audio_prm_set_lpi_logging_status((int)lpi_pcm_logging_enable);
  882. return 0;
  883. }
  884. static int msm_lpi_logging_enable_get(struct snd_kcontrol *kcontrol,
  885. struct snd_ctl_elem_value *ucontrol)
  886. {
  887. ucontrol->value.integer.value[0] = lpi_pcm_logging_enable;
  888. return 0;
  889. }
  890. static int msm_vote_against_sleep_ctl_put(struct snd_kcontrol *kcontrol,
  891. struct snd_ctl_elem_value *ucontrol)
  892. {
  893. int ret = 0;
  894. vote_against_sleep_enable = ucontrol->value.integer.value[0];
  895. pr_debug("%s: vote against sleep enable: %d", __func__,
  896. vote_against_sleep_enable);
  897. ret = audio_prm_set_vote_against_sleep((uint8_t)vote_against_sleep_enable);
  898. pr_debug("%s: vote against sleep vote ret: %d\n", __func__, ret);
  899. return ret;
  900. }
  901. static int msm_vote_against_sleep_ctl_get(struct snd_kcontrol *kcontrol,
  902. struct snd_ctl_elem_value *ucontrol)
  903. {
  904. ucontrol->value.integer.value[0] = vote_against_sleep_enable;
  905. pr_debug("%s: vote against sleep enable: %d", __func__,
  906. vote_against_sleep_enable);
  907. return 0;
  908. }
  909. static const char *const qos_text[] = {"Disable", "Enable"};
  910. static const char *const against_sleep_text[] = {"Disable", "Enable"};
  911. static SOC_ENUM_SINGLE_EXT_DECL(qos_vote, qos_text);
  912. static SOC_ENUM_SINGLE_EXT_DECL(sleep_against, against_sleep_text);
  913. static const struct snd_kcontrol_new card_mixer_controls[] = {
  914. SOC_ENUM_EXT("PM_QOS Vote", qos_vote,
  915. msm_qos_ctl_get, msm_qos_ctl_put),
  916. SOC_SINGLE_EXT("LPI PCM Logging Enable", 0, 0, 1, 0,
  917. msm_lpi_logging_enable_get, msm_lpi_logging_enable_put),
  918. SOC_ENUM_EXT("VOTE Against Sleep", sleep_against,
  919. msm_vote_against_sleep_ctl_get, msm_vote_against_sleep_ctl_put),
  920. };
  921. static int msm_register_pm_qos_latency_controls(struct snd_soc_pcm_runtime *rtd)
  922. {
  923. struct snd_soc_component *lpass_cdc_component = NULL;
  924. int ret = 0;
  925. lpass_cdc_component = snd_soc_rtdcom_lookup(rtd, "lpass-cdc");
  926. if (!lpass_cdc_component) {
  927. pr_err("%s: could not find component for lpass-cdc\n",
  928. __func__);
  929. return -EINVAL;
  930. }
  931. ret = snd_soc_add_component_controls(lpass_cdc_component,
  932. card_mixer_controls, ARRAY_SIZE(card_mixer_controls));
  933. if (ret < 0) {
  934. pr_err("%s: add common snd controls failed: %d\n",
  935. __func__, ret);
  936. return -EINVAL;
  937. }
  938. return 0;
  939. }
  940. int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd)
  941. {
  942. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  943. struct snd_soc_component *component = NULL;
  944. struct snd_soc_dai_link *dai_link = rtd->dai_link;
  945. struct device *dev = rtd->card->dev;
  946. int ret = 0;
  947. int index = 0;
  948. const char *mixer_ctl_name = CODEC_CHMAP;
  949. char *mixer_str = NULL;
  950. char *backend_name = NULL;
  951. uint32_t ctl_len = 0;
  952. struct chmap_pdata *pdata;
  953. struct snd_kcontrol *kctl;
  954. struct snd_kcontrol_new msm_common_channel_map[1] = {
  955. {
  956. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  957. .name = "?",
  958. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  959. .info = msm_channel_map_info,
  960. .get = msm_channel_map_get,
  961. .private_value = 0,
  962. }
  963. };
  964. if (!codec_dai) {
  965. pr_err("%s: failed to get codec dai", __func__);
  966. return -EINVAL;
  967. }
  968. component = codec_dai->component;
  969. msm_common_get_backend_name(dai_link->stream_name, &backend_name);
  970. if (!backend_name) {
  971. pr_err("%s: failed to get backend name", __func__);
  972. return -EINVAL;
  973. }
  974. pdata = devm_kzalloc(dev, sizeof(struct chmap_pdata), GFP_KERNEL);
  975. if (!pdata) {
  976. ret = -ENOMEM;
  977. goto free_backend;
  978. }
  979. if ((!strncmp(backend_name, "SLIM", strlen("SLIM"))) ||
  980. (!strncmp(backend_name, "CODEC_DMA", strlen("CODEC_DMA")))) {
  981. ctl_len = strlen(dai_link->stream_name) + 1 +
  982. strlen(mixer_ctl_name) + 1;
  983. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  984. if (!mixer_str) {
  985. ret = -ENOMEM;
  986. goto free_backend;
  987. }
  988. snprintf(mixer_str, ctl_len, "%s %s", dai_link->stream_name,
  989. mixer_ctl_name);
  990. msm_common_channel_map[0].name = mixer_str;
  991. msm_common_channel_map[0].private_value = 0;
  992. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  993. ret = snd_soc_add_component_controls(component,
  994. msm_common_channel_map,
  995. ARRAY_SIZE(msm_common_channel_map));
  996. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  997. if (!kctl) {
  998. pr_err("failed to get kctl %s\n", mixer_str);
  999. ret = -EINVAL;
  1000. goto free_mixer_str;
  1001. }
  1002. pdata->dai[0] = codec_dai;
  1003. pdata->num_codec_dai = 1;
  1004. if (!strncmp(backend_name, "SLIM", strlen("SLIM"))) {
  1005. pdata->id = SLIM;
  1006. } else {
  1007. pdata->id = CODEC_DMA;
  1008. if (rtd->dai_link->num_codecs <= MAX_CODEC_DAI) {
  1009. pdata->num_codec_dai = rtd->dai_link->num_codecs;
  1010. for_each_rtd_codec_dais(rtd, index, codec_dai) {
  1011. pdata->dai[index] = codec_dai;
  1012. }
  1013. }
  1014. }
  1015. kctl->private_data = pdata;
  1016. }
  1017. if (!kregister_pm_qos_latency_controls) {
  1018. if (!msm_register_pm_qos_latency_controls(rtd))
  1019. kregister_pm_qos_latency_controls = true;
  1020. }
  1021. free_mixer_str:
  1022. if (mixer_str) {
  1023. kfree(mixer_str);
  1024. mixer_str = NULL;
  1025. }
  1026. free_backend:
  1027. if (backend_name) {
  1028. kfree(backend_name);
  1029. backend_name = NULL;
  1030. }
  1031. return ret;
  1032. }