msm_common.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. /* Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/gpio.h>
  13. #include <linux/of_gpio.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/slab.h>
  16. #include <linux/of_device.h>
  17. #include <sound/control.h>
  18. #include <sound/core.h>
  19. #include <sound/soc.h>
  20. #include <asoc/msm-cdc-pinctrl.h>
  21. #include <dsp/spf-core.h>
  22. #include <dsp/msm_audio_ion.h>
  23. #include <sound/info.h>
  24. #include "msm_common.h"
  25. struct snd_card_pdata {
  26. struct kobject snd_card_kobj;
  27. int card_status;
  28. }*snd_card_pdata;
  29. #define to_asoc_mach_common_pdata(kobj) \
  30. container_of((kobj), struct msm_common_pdata, aud_dev_kobj)
  31. #define DEVICE_ENABLE 1
  32. #define DEVICE_DISABLE 0
  33. #define ARRAY_SZ 21
  34. #define BUF_SZ 32
  35. #define DIR_SZ 10
  36. #define MAX_CODEC_DAI 8
  37. static struct attribute device_state_attr = {
  38. .name = "state",
  39. .mode = 0660,
  40. };
  41. static struct attribute card_state_attr = {
  42. .name = "card_state",
  43. .mode = 0660,
  44. };
  45. #define MAX_PORT 20
  46. #define CODEC_CHMAP "Channel Map"
  47. enum backend_id {
  48. SLIM = 1,
  49. CODEC_DMA,
  50. };
  51. struct chmap_pdata {
  52. int id;
  53. uint32_t num_codec_dai;
  54. struct snd_soc_dai *dai[MAX_CODEC_DAI];
  55. };
  56. #define MAX_USR_INPUT 10
  57. static ssize_t aud_dev_sysfs_store(struct kobject *kobj,
  58. struct attribute *attr,
  59. const char *buf, size_t count)
  60. {
  61. ssize_t ret = -EINVAL;
  62. struct msm_common_pdata *pdata = to_asoc_mach_common_pdata(kobj);
  63. uint32_t pcm_id, state = 0;
  64. if (count > MAX_USR_INPUT) {
  65. pr_err("%s: invalid string written", __func__);
  66. goto done;
  67. }
  68. sscanf(buf, "%d %d", &pcm_id, &state);
  69. if ((pcm_id > pdata->num_aud_devs) || (pcm_id < 0)) {
  70. pr_err("%s: invalid pcm id %d \n", __func__, pcm_id);
  71. goto done;
  72. }
  73. if ((state > DEVICE_ENABLE) || (state < DEVICE_DISABLE)) {
  74. pr_err("%s: invalid state %d \n", __func__, state);
  75. goto done;
  76. }
  77. pr_debug("%s: pcm_id %d state %d \n", __func__, pcm_id, state);
  78. pdata->aud_dev_state[pcm_id] = state;
  79. if ( state == DEVICE_ENABLE && (pdata->dsp_sessions_closed != 0))
  80. pdata->dsp_sessions_closed = 0;
  81. ret = count;
  82. done:
  83. return ret;
  84. }
  85. static const struct sysfs_ops aud_dev_sysfs_ops = {
  86. .store = aud_dev_sysfs_store,
  87. };
  88. static struct kobj_type aud_dev_ktype = {
  89. .sysfs_ops = &aud_dev_sysfs_ops,
  90. };
  91. static int aud_dev_sysfs_init(struct msm_common_pdata *pdata)
  92. {
  93. int ret = 0;
  94. char dir[10] = "aud_dev";
  95. ret = kobject_init_and_add(&pdata->aud_dev_kobj, &aud_dev_ktype,
  96. kernel_kobj, dir);
  97. if (ret < 0) {
  98. pr_err("%s: Failed to add kobject %s, err = %d\n",
  99. __func__, dir, ret);
  100. goto done;
  101. }
  102. ret = sysfs_create_file(&pdata->aud_dev_kobj, &device_state_attr);
  103. if (ret < 0) {
  104. pr_err("%s: Failed to add wdsp_boot sysfs entry to %s\n",
  105. __func__, dir);
  106. goto fail_create_file;
  107. }
  108. return ret;
  109. fail_create_file:
  110. kobject_put(&pdata->aud_dev_kobj);
  111. done:
  112. return ret;
  113. }
  114. int snd_card_notify_user(int card_status)
  115. {
  116. snd_card_pdata->card_status = card_status;
  117. sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
  118. return 0;
  119. }
  120. static ssize_t snd_card_sysfs_show(struct kobject *kobj,
  121. struct attribute *attr, char *buf)
  122. {
  123. return snprintf(buf, BUF_SZ, "%d", snd_card_pdata->card_status);
  124. }
  125. static ssize_t snd_card_sysfs_store(struct kobject *kobj,
  126. struct attribute *attr, const char *buf, size_t count)
  127. {
  128. sscanf(buf, "%d", &snd_card_pdata->card_status);
  129. sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
  130. return 0;
  131. }
  132. static const struct sysfs_ops snd_card_sysfs_ops = {
  133. .show = snd_card_sysfs_show,
  134. .store = snd_card_sysfs_store,
  135. };
  136. static struct kobj_type snd_card_ktype = {
  137. .sysfs_ops = &snd_card_sysfs_ops,
  138. };
  139. int snd_card_sysfs_init(void)
  140. {
  141. int ret = 0;
  142. char dir[DIR_SZ] = "snd_card";
  143. snd_card_pdata = kcalloc(1, sizeof(struct snd_card_pdata), GFP_KERNEL);
  144. ret = kobject_init_and_add(&snd_card_pdata->snd_card_kobj, &snd_card_ktype,
  145. kernel_kobj, dir);
  146. if (ret < 0) {
  147. pr_err("%s: Failed to add kobject %s, err = %d\n",
  148. __func__, dir, ret);
  149. goto done;
  150. }
  151. ret = sysfs_create_file(&snd_card_pdata->snd_card_kobj, &card_state_attr);
  152. if (ret < 0) {
  153. pr_err("%s: Failed to add snd_card sysfs entry to %s\n",
  154. __func__, dir);
  155. goto fail_create_file;
  156. }
  157. return ret;
  158. fail_create_file:
  159. kobject_put(&snd_card_pdata->snd_card_kobj);
  160. done:
  161. return ret;
  162. }
  163. static void check_userspace_service_state(struct snd_soc_pcm_runtime *rtd,
  164. struct msm_common_pdata *pdata)
  165. {
  166. dev_info(rtd->card->dev,"%s: pcm_id %d state %d\n", __func__,
  167. rtd->num, pdata->aud_dev_state[rtd->num]);
  168. if (pdata->aud_dev_state[rtd->num] == DEVICE_ENABLE) {
  169. dev_info(rtd->card->dev, "%s userspace service crashed\n",
  170. __func__);
  171. if (pdata->dsp_sessions_closed == 0) {
  172. /*Issue close all graph cmd to DSP*/
  173. spf_core_apm_close_all();
  174. /*unmap all dma mapped buffers*/
  175. msm_audio_ion_crash_handler();
  176. pdata->dsp_sessions_closed = 1;
  177. }
  178. /*Reset the state as sysfs node wont be triggred*/
  179. pdata->aud_dev_state[rtd->num] = 0;
  180. }
  181. }
  182. static int get_intf_index(const char *stream_name)
  183. {
  184. if (strnstr(stream_name, "LPAIF_RXTX", strlen(stream_name)))
  185. return QUAT_MI2S_TDM_AUXPCM;
  186. else if (strnstr(stream_name, "LPAIF_WSA", strlen(stream_name)))
  187. return SEN_MI2S_TDM_AUXPCM;
  188. else if (strnstr(stream_name, "LPAIF_VA", strlen(stream_name)))
  189. return QUIN_MI2S_TDM_AUXPCM;
  190. else if (strnstr(stream_name, "LPAIF_AUD", strlen(stream_name)))
  191. return SEC_MI2S_TDM_AUXPCM;
  192. else if (strnstr(stream_name, "LPAIF", strlen(stream_name))) {
  193. if (strnstr(stream_name, "PRIMARY", strlen(stream_name)))
  194. return PRI_MI2S_TDM_AUXPCM;
  195. else if (strnstr(stream_name, "TERTIARY", strlen(stream_name)))
  196. return TER_MI2S_TDM_AUXPCM;
  197. }
  198. pr_debug("%s: stream name %s does not match\n", __func__, stream_name);
  199. return -EINVAL;
  200. }
  201. int msm_common_snd_startup(struct snd_pcm_substream *substream)
  202. {
  203. int ret = 0;
  204. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  205. struct snd_soc_card *card = rtd->card;
  206. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  207. const char *stream_name = rtd->dai_link->stream_name;
  208. int index = get_intf_index(stream_name);
  209. dev_dbg(rtd->card->dev,
  210. "%s: substream = %s stream = %d\n",
  211. __func__, substream->name, substream->stream);
  212. if (!pdata) {
  213. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  214. return -EINVAL;
  215. }
  216. if (index >= 0) {
  217. mutex_lock(&pdata->lock[index]);
  218. if (pdata->mi2s_gpio_p[index]) {
  219. if (atomic_read(&(pdata->mi2s_gpio_ref_cnt[index])) == 0) {
  220. ret = msm_cdc_pinctrl_select_active_state(
  221. pdata->mi2s_gpio_p[index]);
  222. if (ret) {
  223. pr_err("%s:pinctrl set actve fail with %d\n",
  224. __func__, ret);
  225. goto done;
  226. }
  227. }
  228. atomic_inc(&(pdata->mi2s_gpio_ref_cnt[index]));
  229. }
  230. done:
  231. mutex_unlock(&pdata->lock[index]);
  232. }
  233. return ret;
  234. }
  235. void msm_common_snd_shutdown(struct snd_pcm_substream *substream)
  236. {
  237. int ret;
  238. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  239. struct snd_soc_card *card = rtd->card;
  240. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  241. const char *stream_name = rtd->dai_link->stream_name;
  242. int index = get_intf_index(stream_name);
  243. pr_debug("%s(): substream = %s stream = %d\n", __func__,
  244. substream->name, substream->stream);
  245. if (!pdata) {
  246. dev_err(card->dev, "%s: pdata is NULL\n", __func__);
  247. return;
  248. }
  249. check_userspace_service_state(rtd, pdata);
  250. if (index >= 0) {
  251. mutex_lock(&pdata->lock[index]);
  252. if (pdata->mi2s_gpio_p[index]) {
  253. atomic_dec(&pdata->mi2s_gpio_ref_cnt[index]);
  254. if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) == 0) {
  255. ret = msm_cdc_pinctrl_select_sleep_state(
  256. pdata->mi2s_gpio_p[index]);
  257. if (ret)
  258. dev_err(card->dev,
  259. "%s: pinctrl set actv fail %d\n",
  260. __func__, ret);
  261. }
  262. }
  263. mutex_unlock(&pdata->lock[index]);
  264. }
  265. }
  266. int msm_common_snd_init(struct platform_device *pdev, struct snd_soc_card *card)
  267. {
  268. struct msm_common_pdata *common_pdata = NULL;
  269. int count;
  270. common_pdata = kcalloc(1, sizeof(struct msm_common_pdata), GFP_KERNEL);
  271. if (!common_pdata)
  272. return -ENOMEM;
  273. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  274. mutex_init(&common_pdata->lock[count]);
  275. atomic_set(&common_pdata->mi2s_gpio_ref_cnt[count], 0);
  276. }
  277. common_pdata->mi2s_gpio_p[PRI_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  278. "qcom,pri-mi2s-gpios", 0);
  279. common_pdata->mi2s_gpio_p[SEC_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  280. "qcom,sec-mi2s-gpios", 0);
  281. common_pdata->mi2s_gpio_p[TER_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  282. "qcom,tert-mi2s-gpios", 0);
  283. common_pdata->mi2s_gpio_p[QUAT_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  284. "qcom,quat-mi2s-gpios", 0);
  285. common_pdata->mi2s_gpio_p[QUIN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  286. "qcom,quin-mi2s-gpios", 0);
  287. common_pdata->mi2s_gpio_p[SEN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  288. "qcom,sen-mi2s-gpios", 0);
  289. common_pdata->aud_dev_state = devm_kcalloc(&pdev->dev, card->num_links,
  290. sizeof(uint8_t), GFP_KERNEL);
  291. dev_info(&pdev->dev, "num_links %d \n", card->num_links);
  292. common_pdata->num_aud_devs = card->num_links;
  293. aud_dev_sysfs_init(common_pdata);
  294. msm_common_set_pdata(card, common_pdata);
  295. return 0;
  296. };
  297. void msm_common_snd_deinit(struct msm_common_pdata *common_pdata)
  298. {
  299. int count;
  300. if (!common_pdata)
  301. return;
  302. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  303. mutex_destroy(&common_pdata->lock[count]);
  304. }
  305. }
  306. int msm_channel_map_info(struct snd_kcontrol *kcontrol,
  307. struct snd_ctl_elem_info *uinfo)
  308. {
  309. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  310. uinfo->count = sizeof(uint32_t) * MAX_PORT;
  311. return 0;
  312. }
  313. int msm_channel_map_get(struct snd_kcontrol *kcontrol,
  314. struct snd_ctl_elem_value *ucontrol)
  315. {
  316. struct chmap_pdata *kctl_pdata =
  317. (struct chmap_pdata *)kcontrol->private_data;
  318. struct snd_soc_dai *codec_dai = NULL;
  319. int backend_id = 0;
  320. uint32_t rx_ch[MAX_PORT] = {0}, tx_ch[MAX_PORT] = {0};
  321. uint32_t rx_ch_cnt = 0, tx_ch_cnt = 0;
  322. uint32_t *chmap_data = NULL;
  323. int ret = 0, len = 0, i = 0;
  324. if (kctl_pdata == NULL) {
  325. pr_debug("%s: chmap_pdata is not initialized\n", __func__);
  326. return -EINVAL;
  327. }
  328. codec_dai = kctl_pdata->dai[0];
  329. backend_id = kctl_pdata->id;
  330. switch (backend_id) {
  331. case SLIM: {
  332. uint32_t *chmap;
  333. uint32_t ch_cnt;
  334. ret = snd_soc_dai_get_channel_map(codec_dai,
  335. &tx_ch_cnt, tx_ch, &rx_ch_cnt, rx_ch);
  336. if (ret || (tx_ch_cnt == 0 && rx_ch_cnt == 0)) {
  337. pr_debug("%s: got incorrect channel map for backend_id:%d\n",
  338. __func__, backend_id);
  339. return ret;
  340. }
  341. if (rx_ch_cnt) {
  342. chmap = rx_ch;
  343. ch_cnt = rx_ch_cnt;
  344. } else {
  345. chmap = tx_ch;
  346. ch_cnt = tx_ch_cnt;
  347. }
  348. len = sizeof(uint32_t) * (ch_cnt + 1);
  349. chmap_data = kzalloc(len, GFP_KERNEL);
  350. if (!chmap_data)
  351. return -ENOMEM;
  352. chmap_data[0] = ch_cnt;
  353. for (i = 0; i < ch_cnt; i++)
  354. chmap_data[i+1] = chmap[i];
  355. memcpy(ucontrol->value.bytes.data, chmap_data, len);
  356. break;
  357. }
  358. case CODEC_DMA: {
  359. uint32_t cur_rx_ch = 0, cur_tx_ch = 0;
  360. uint32_t cur_rx_ch_cnt = 0, cur_tx_ch_cnt = 0;
  361. for (i = 0; i < kctl_pdata->num_codec_dai; ++i) {
  362. codec_dai = kctl_pdata->dai[i];
  363. if(!codec_dai) {
  364. continue;
  365. }
  366. cur_rx_ch_cnt = 0;
  367. cur_tx_ch_cnt = 0;
  368. cur_tx_ch = 0;
  369. cur_rx_ch = 0;
  370. ret = snd_soc_dai_get_channel_map(codec_dai,
  371. &cur_tx_ch_cnt, &cur_tx_ch,
  372. &cur_rx_ch_cnt, &cur_rx_ch);
  373. /* DAIs that not supports get_channel_map should pass */
  374. if (ret && (ret != -ENOTSUPP)) {
  375. pr_err("%s: get channel map failed for backend_id:%d,"
  376. " ret:%d\n",
  377. __func__, backend_id, ret);
  378. return ret;
  379. }
  380. rx_ch_cnt += cur_rx_ch_cnt;
  381. tx_ch_cnt += cur_tx_ch_cnt;
  382. rx_ch[0] |= cur_rx_ch;
  383. tx_ch[0] |= cur_tx_ch;
  384. }
  385. /* reset return value from the loop above */
  386. ret = 0;
  387. if (rx_ch_cnt == 0 && tx_ch_cnt == 0) {
  388. pr_debug("%s: got incorrect channel map for backend_id:%d, ",
  389. "RX Channel Count:%d,"
  390. "TX Channel Count:%d\n",
  391. __func__, backend_id, rx_ch_cnt, tx_ch_cnt);
  392. return ret;
  393. }
  394. chmap_data = kzalloc(sizeof(uint32_t) * 2, GFP_KERNEL);
  395. if (!chmap_data)
  396. return -ENOMEM;
  397. if (rx_ch_cnt) {
  398. chmap_data[0] = rx_ch_cnt;
  399. chmap_data[1] = rx_ch[0];
  400. } else {
  401. chmap_data[0] = tx_ch_cnt;
  402. chmap_data[1] = tx_ch[0];
  403. }
  404. memcpy(ucontrol->value.bytes.data, chmap_data,
  405. sizeof(uint32_t) * 2);
  406. break;
  407. }
  408. default:
  409. pr_err("%s, Invalid backend %d\n", __func__, backend_id);
  410. ret = -EINVAL;
  411. break;
  412. }
  413. kfree(chmap_data);
  414. return ret;
  415. }
  416. void msm_common_get_backend_name(const char *stream_name, char **backend_name)
  417. {
  418. char arg[ARRAY_SZ] = {0};
  419. char value[61] = {0};
  420. sscanf(stream_name, "%20[^-]-%60s", arg, value);
  421. *backend_name = kzalloc(ARRAY_SZ, GFP_KERNEL);
  422. if (!(*backend_name))
  423. return;
  424. strlcpy(*backend_name, arg, ARRAY_SZ);
  425. }
  426. int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd)
  427. {
  428. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  429. struct snd_soc_component *component = NULL;
  430. struct snd_soc_dai_link *dai_link = rtd->dai_link;
  431. struct device *dev = rtd->card->dev;
  432. int ret = 0;
  433. int index = 0;
  434. const char *mixer_ctl_name = CODEC_CHMAP;
  435. char *mixer_str = NULL;
  436. char *backend_name = NULL;
  437. uint32_t ctl_len = 0;
  438. struct chmap_pdata *pdata;
  439. struct snd_kcontrol *kctl;
  440. struct snd_kcontrol_new msm_common_channel_map[1] = {
  441. {
  442. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  443. .name = "?",
  444. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  445. .info = msm_channel_map_info,
  446. .get = msm_channel_map_get,
  447. .private_value = 0,
  448. }
  449. };
  450. if (!codec_dai) {
  451. pr_err("%s: failed to get codec dai", __func__);
  452. return -EINVAL;
  453. }
  454. component = codec_dai->component;
  455. msm_common_get_backend_name(dai_link->stream_name, &backend_name);
  456. if (!backend_name) {
  457. pr_err("%s: failed to get backend name", __func__);
  458. return -EINVAL;
  459. }
  460. pdata = devm_kzalloc(dev, sizeof(struct chmap_pdata), GFP_KERNEL);
  461. if (!pdata)
  462. return -ENOMEM;
  463. if ((!strncmp(backend_name, "SLIM", strlen("SLIM"))) ||
  464. (!strncmp(backend_name, "CODEC_DMA", strlen("CODEC_DMA")))) {
  465. ctl_len = strlen(dai_link->stream_name) + 1 +
  466. strlen(mixer_ctl_name) + 1;
  467. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  468. if (!mixer_str)
  469. return -ENOMEM;
  470. snprintf(mixer_str, ctl_len, "%s %s", dai_link->stream_name,
  471. mixer_ctl_name);
  472. msm_common_channel_map[0].name = mixer_str;
  473. msm_common_channel_map[0].private_value = 0;
  474. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  475. ret = snd_soc_add_component_controls(component,
  476. msm_common_channel_map,
  477. ARRAY_SIZE(msm_common_channel_map));
  478. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  479. if (!kctl) {
  480. pr_err("failed to get kctl %s\n", mixer_str);
  481. ret = -EINVAL;
  482. goto free_mixer_str;
  483. }
  484. pdata->dai[0] = codec_dai;
  485. pdata->num_codec_dai = 1;
  486. if (!strncmp(backend_name, "SLIM", strlen("SLIM"))) {
  487. pdata->id = SLIM;
  488. } else {
  489. pdata->id = CODEC_DMA;
  490. if (rtd->num_codecs <= MAX_CODEC_DAI) {
  491. pdata->num_codec_dai = rtd->num_codecs;
  492. for_each_rtd_codec_dais(rtd, index, codec_dai) {
  493. pdata->dai[index] = codec_dai;
  494. }
  495. }
  496. }
  497. kctl->private_data = pdata;
  498. free_mixer_str:
  499. kfree(backend_name);
  500. kfree(mixer_str);
  501. }
  502. return ret;
  503. }