msm_common.c 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129
  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);
  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);
  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. len = sizeof(uint32_t) * (ch_cnt + 1);
  732. chmap_data = kzalloc(len, GFP_KERNEL);
  733. if (!chmap_data)
  734. return -ENOMEM;
  735. chmap_data[0] = ch_cnt;
  736. for (i = 0; i < ch_cnt; i++)
  737. chmap_data[i+1] = chmap[i];
  738. memcpy(ucontrol->value.bytes.data, chmap_data, len);
  739. break;
  740. }
  741. case CODEC_DMA: {
  742. uint32_t cur_rx_ch = 0, cur_tx_ch = 0;
  743. uint32_t cur_rx_ch_cnt = 0, cur_tx_ch_cnt = 0;
  744. for (i = 0; i < kctl_pdata->num_codec_dai; ++i) {
  745. codec_dai = kctl_pdata->dai[i];
  746. if(!codec_dai) {
  747. continue;
  748. }
  749. cur_rx_ch_cnt = 0;
  750. cur_tx_ch_cnt = 0;
  751. cur_tx_ch = 0;
  752. cur_rx_ch = 0;
  753. ret = snd_soc_dai_get_channel_map(codec_dai,
  754. &cur_tx_ch_cnt, &cur_tx_ch,
  755. &cur_rx_ch_cnt, &cur_rx_ch);
  756. /* DAIs that not supports get_channel_map should pass */
  757. if (ret && (ret != -ENOTSUPP)) {
  758. pr_err("%s: get channel map failed for backend_id:%d,"
  759. " ret:%d\n",
  760. __func__, backend_id, ret);
  761. return ret;
  762. }
  763. rx_ch_cnt += cur_rx_ch_cnt;
  764. tx_ch_cnt += cur_tx_ch_cnt;
  765. rx_ch[0] |= cur_rx_ch;
  766. tx_ch[0] |= cur_tx_ch;
  767. }
  768. /* reset return value from the loop above */
  769. ret = 0;
  770. if (rx_ch_cnt == 0 && tx_ch_cnt == 0) {
  771. pr_debug("%s: got incorrect channel map for backend_id:%d, ",
  772. "RX Channel Count:%d,"
  773. "TX Channel Count:%d\n",
  774. __func__, backend_id, rx_ch_cnt, tx_ch_cnt);
  775. return ret;
  776. }
  777. chmap_data = kzalloc(sizeof(uint32_t) * 2, GFP_KERNEL);
  778. if (!chmap_data)
  779. return -ENOMEM;
  780. if (rx_ch_cnt) {
  781. chmap_data[0] = rx_ch_cnt;
  782. chmap_data[1] = rx_ch[0];
  783. } else {
  784. chmap_data[0] = tx_ch_cnt;
  785. chmap_data[1] = tx_ch[0];
  786. }
  787. memcpy(ucontrol->value.bytes.data, chmap_data,
  788. sizeof(uint32_t) * 2);
  789. break;
  790. }
  791. default:
  792. pr_err("%s, Invalid backend %d\n", __func__, backend_id);
  793. ret = -EINVAL;
  794. break;
  795. }
  796. kfree(chmap_data);
  797. return ret;
  798. }
  799. void msm_common_get_backend_name(const char *stream_name, char **backend_name)
  800. {
  801. char arg[ARRAY_SZ] = {0};
  802. char value[61] = {0};
  803. sscanf(stream_name, "%20[^-]-%60s", arg, value);
  804. *backend_name = kzalloc(ARRAY_SZ, GFP_KERNEL);
  805. if (!(*backend_name))
  806. return;
  807. strlcpy(*backend_name, arg, ARRAY_SZ);
  808. }
  809. static void msm_audio_update_qos_request(u32 latency)
  810. {
  811. int cpu = 0;
  812. int ret = -1;
  813. if (msm_audio_req) {
  814. for_each_cpu(cpu, &audio_cpu_map) {
  815. ret = dev_pm_qos_update_request(
  816. &msm_audio_req[cpu], latency);
  817. if (1 == ret ) {
  818. pr_debug("%s: updated latency of core %d to %u.\n",
  819. __func__, cpu, latency);
  820. } else if (0 == ret) {
  821. pr_debug("%s: latency of core %d not changed. latency %u.\n",
  822. __func__, cpu, latency);
  823. } else {
  824. pr_err("%s: failed to update latency of core %d, error %d \n",
  825. __func__, cpu, ret);
  826. }
  827. }
  828. }
  829. }
  830. static int msm_qos_ctl_put(struct snd_kcontrol *kcontrol,
  831. struct snd_ctl_elem_value *ucontrol)
  832. {
  833. qos_vote_status = ucontrol->value.enumerated.item[0];
  834. if (qos_vote_status) {
  835. if (dev_pm_qos_request_active(&latency_pm_qos_req))
  836. dev_pm_qos_remove_request(&latency_pm_qos_req);
  837. qos_client_active_cnt++;
  838. if (qos_client_active_cnt == 1)
  839. msm_audio_update_qos_request(MSM_LL_QOS_VALUE);
  840. } else {
  841. if (qos_client_active_cnt > 0)
  842. qos_client_active_cnt--;
  843. if (qos_client_active_cnt == 0)
  844. msm_audio_update_qos_request(PM_QOS_CPU_LATENCY_DEFAULT_VALUE);
  845. }
  846. return 0;
  847. }
  848. static int msm_qos_ctl_get(struct snd_kcontrol *kcontrol,
  849. struct snd_ctl_elem_value *ucontrol)
  850. {
  851. ucontrol->value.enumerated.item[0] = qos_vote_status;
  852. return 0;
  853. }
  854. static int msm_lpi_logging_enable_put(struct snd_kcontrol *kcontrol,
  855. struct snd_ctl_elem_value *ucontrol)
  856. {
  857. lpi_pcm_logging_enable = ucontrol->value.integer.value[0];
  858. pr_debug("%s: lpi pcm logging enable: %d", __func__,
  859. lpi_pcm_logging_enable);
  860. audio_prm_set_lpi_logging_status((int)lpi_pcm_logging_enable);
  861. return 0;
  862. }
  863. static int msm_lpi_logging_enable_get(struct snd_kcontrol *kcontrol,
  864. struct snd_ctl_elem_value *ucontrol)
  865. {
  866. ucontrol->value.integer.value[0] = lpi_pcm_logging_enable;
  867. return 0;
  868. }
  869. static const char *const qos_text[] = {"Disable", "Enable"};
  870. static SOC_ENUM_SINGLE_EXT_DECL(qos_vote, qos_text);
  871. static const struct snd_kcontrol_new card_mixer_controls[] = {
  872. SOC_ENUM_EXT("PM_QOS Vote", qos_vote,
  873. msm_qos_ctl_get, msm_qos_ctl_put),
  874. SOC_SINGLE_EXT("LPI PCM Logging Enable", 0, 0, 1, 0,
  875. msm_lpi_logging_enable_get, msm_lpi_logging_enable_put),
  876. };
  877. static int msm_register_pm_qos_latency_controls(struct snd_soc_pcm_runtime *rtd)
  878. {
  879. struct snd_soc_component *lpass_cdc_component = NULL;
  880. int ret = 0;
  881. lpass_cdc_component = snd_soc_rtdcom_lookup(rtd, "lpass-cdc");
  882. if (!lpass_cdc_component) {
  883. pr_err("%s: could not find component for lpass-cdc\n",
  884. __func__);
  885. return -EINVAL;
  886. }
  887. ret = snd_soc_add_component_controls(lpass_cdc_component,
  888. card_mixer_controls, ARRAY_SIZE(card_mixer_controls));
  889. if (ret < 0) {
  890. pr_err("%s: add common snd controls failed: %d\n",
  891. __func__, ret);
  892. return -EINVAL;
  893. }
  894. return 0;
  895. }
  896. int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd)
  897. {
  898. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  899. struct snd_soc_component *component = NULL;
  900. struct snd_soc_dai_link *dai_link = rtd->dai_link;
  901. struct device *dev = rtd->card->dev;
  902. int ret = 0;
  903. int index = 0;
  904. const char *mixer_ctl_name = CODEC_CHMAP;
  905. char *mixer_str = NULL;
  906. char *backend_name = NULL;
  907. uint32_t ctl_len = 0;
  908. struct chmap_pdata *pdata;
  909. struct snd_kcontrol *kctl;
  910. struct snd_kcontrol_new msm_common_channel_map[1] = {
  911. {
  912. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  913. .name = "?",
  914. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  915. .info = msm_channel_map_info,
  916. .get = msm_channel_map_get,
  917. .private_value = 0,
  918. }
  919. };
  920. if (!codec_dai) {
  921. pr_err("%s: failed to get codec dai", __func__);
  922. return -EINVAL;
  923. }
  924. component = codec_dai->component;
  925. msm_common_get_backend_name(dai_link->stream_name, &backend_name);
  926. if (!backend_name) {
  927. pr_err("%s: failed to get backend name", __func__);
  928. return -EINVAL;
  929. }
  930. pdata = devm_kzalloc(dev, sizeof(struct chmap_pdata), GFP_KERNEL);
  931. if (!pdata)
  932. return -ENOMEM;
  933. if ((!strncmp(backend_name, "SLIM", strlen("SLIM"))) ||
  934. (!strncmp(backend_name, "CODEC_DMA", strlen("CODEC_DMA")))) {
  935. ctl_len = strlen(dai_link->stream_name) + 1 +
  936. strlen(mixer_ctl_name) + 1;
  937. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  938. if (!mixer_str)
  939. return -ENOMEM;
  940. snprintf(mixer_str, ctl_len, "%s %s", dai_link->stream_name,
  941. mixer_ctl_name);
  942. msm_common_channel_map[0].name = mixer_str;
  943. msm_common_channel_map[0].private_value = 0;
  944. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  945. ret = snd_soc_add_component_controls(component,
  946. msm_common_channel_map,
  947. ARRAY_SIZE(msm_common_channel_map));
  948. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  949. if (!kctl) {
  950. pr_err("failed to get kctl %s\n", mixer_str);
  951. ret = -EINVAL;
  952. goto free_mixer_str;
  953. }
  954. pdata->dai[0] = codec_dai;
  955. pdata->num_codec_dai = 1;
  956. if (!strncmp(backend_name, "SLIM", strlen("SLIM"))) {
  957. pdata->id = SLIM;
  958. } else {
  959. pdata->id = CODEC_DMA;
  960. if (rtd->num_codecs <= MAX_CODEC_DAI) {
  961. pdata->num_codec_dai = rtd->num_codecs;
  962. for_each_rtd_codec_dais(rtd, index, codec_dai) {
  963. pdata->dai[index] = codec_dai;
  964. }
  965. }
  966. }
  967. kctl->private_data = pdata;
  968. }
  969. if (!kregister_pm_qos_latency_controls) {
  970. if (!msm_register_pm_qos_latency_controls(rtd))
  971. kregister_pm_qos_latency_controls = true;
  972. }
  973. free_mixer_str:
  974. if (backend_name) {
  975. kfree(backend_name);
  976. backend_name = NULL;
  977. }
  978. if (mixer_str) {
  979. kfree(mixer_str);
  980. mixer_str = NULL;
  981. }
  982. return ret;
  983. }