msm_common.c 31 KB

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