msm_common.c 30 KB

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