msm_common.c 30 KB

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