msm_common.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947
  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 <sound/pcm_params.h>
  21. #include <asoc/msm-cdc-pinctrl.h>
  22. #include <dsp/spf-core.h>
  23. #include <dsp/msm_audio_ion.h>
  24. #include <sound/info.h>
  25. #include <dsp/audio_prm.h>
  26. #include <dsp/digital-cdc-rsc-mgr.h>
  27. #include "msm_common.h"
  28. struct snd_card_pdata {
  29. struct kobject snd_card_kobj;
  30. int card_status;
  31. }*snd_card_pdata;
  32. #define to_asoc_mach_common_pdata(kobj) \
  33. container_of((kobj), struct msm_common_pdata, aud_dev_kobj)
  34. #define DEVICE_ENABLE 1
  35. #define DEVICE_DISABLE 0
  36. #define ARRAY_SZ 21
  37. #define BUF_SZ 32
  38. #define DIR_SZ 10
  39. #define MAX_CODEC_DAI 8
  40. #define TDM_SLOT_WIDTH_BITS 32
  41. #define TDM_MAX_SLOTS 8
  42. #define MI2S_NUM_CHANNELS 2
  43. #define SAMPLING_RATE_44P1KHZ 44100
  44. #define SAMPLING_RATE_88P2KHZ 88200
  45. #define SAMPLING_RATE_176P4KHZ 176400
  46. #define SAMPLING_RATE_352P8KHZ 352800
  47. static struct attribute device_state_attr = {
  48. .name = "state",
  49. .mode = 0660,
  50. };
  51. static struct attribute card_state_attr = {
  52. .name = "card_state",
  53. .mode = 0660,
  54. };
  55. #define MAX_PORT 20
  56. #define CODEC_CHMAP "Channel Map"
  57. enum backend_id {
  58. SLIM = 1,
  59. CODEC_DMA,
  60. };
  61. struct chmap_pdata {
  62. int id;
  63. uint32_t num_codec_dai;
  64. struct snd_soc_dai *dai[MAX_CODEC_DAI];
  65. };
  66. #define MAX_USR_INPUT 10
  67. static ssize_t aud_dev_sysfs_store(struct kobject *kobj,
  68. struct attribute *attr,
  69. const char *buf, size_t count)
  70. {
  71. ssize_t ret = -EINVAL;
  72. struct msm_common_pdata *pdata = to_asoc_mach_common_pdata(kobj);
  73. uint32_t pcm_id, state = 0;
  74. if (count > MAX_USR_INPUT) {
  75. pr_err("%s: invalid string written", __func__);
  76. goto done;
  77. }
  78. sscanf(buf, "%d %d", &pcm_id, &state);
  79. if ((pcm_id > pdata->num_aud_devs) || (pcm_id < 0)) {
  80. pr_err("%s: invalid pcm id %d \n", __func__, pcm_id);
  81. goto done;
  82. }
  83. if ((state > DEVICE_ENABLE) || (state < DEVICE_DISABLE)) {
  84. pr_err("%s: invalid state %d \n", __func__, state);
  85. goto done;
  86. }
  87. pr_debug("%s: pcm_id %d state %d \n", __func__, pcm_id, state);
  88. pdata->aud_dev_state[pcm_id] = state;
  89. if ( state == DEVICE_ENABLE && (pdata->dsp_sessions_closed != 0))
  90. pdata->dsp_sessions_closed = 0;
  91. ret = count;
  92. done:
  93. return ret;
  94. }
  95. static const struct sysfs_ops aud_dev_sysfs_ops = {
  96. .store = aud_dev_sysfs_store,
  97. };
  98. static struct kobj_type aud_dev_ktype = {
  99. .sysfs_ops = &aud_dev_sysfs_ops,
  100. };
  101. static int aud_dev_sysfs_init(struct msm_common_pdata *pdata)
  102. {
  103. int ret = 0;
  104. char dir[10] = "aud_dev";
  105. ret = kobject_init_and_add(&pdata->aud_dev_kobj, &aud_dev_ktype,
  106. kernel_kobj, dir);
  107. if (ret < 0) {
  108. pr_err("%s: Failed to add kobject %s, err = %d\n",
  109. __func__, dir, ret);
  110. goto done;
  111. }
  112. ret = sysfs_create_file(&pdata->aud_dev_kobj, &device_state_attr);
  113. if (ret < 0) {
  114. pr_err("%s: Failed to add wdsp_boot sysfs entry to %s\n",
  115. __func__, dir);
  116. goto fail_create_file;
  117. }
  118. return ret;
  119. fail_create_file:
  120. kobject_put(&pdata->aud_dev_kobj);
  121. done:
  122. return ret;
  123. }
  124. int snd_card_notify_user(snd_card_status_t card_status)
  125. {
  126. snd_card_pdata->card_status = card_status;
  127. sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
  128. return 0;
  129. }
  130. int snd_card_set_card_status(snd_card_status_t card_status)
  131. {
  132. snd_card_pdata->card_status = card_status;
  133. return 0;
  134. }
  135. static ssize_t snd_card_sysfs_show(struct kobject *kobj,
  136. struct attribute *attr, char *buf)
  137. {
  138. return snprintf(buf, BUF_SZ, "%d", snd_card_pdata->card_status);
  139. }
  140. static ssize_t snd_card_sysfs_store(struct kobject *kobj,
  141. struct attribute *attr, const char *buf, size_t count)
  142. {
  143. sscanf(buf, "%d", &snd_card_pdata->card_status);
  144. sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
  145. return 0;
  146. }
  147. static const struct sysfs_ops snd_card_sysfs_ops = {
  148. .show = snd_card_sysfs_show,
  149. .store = snd_card_sysfs_store,
  150. };
  151. static struct kobj_type snd_card_ktype = {
  152. .sysfs_ops = &snd_card_sysfs_ops,
  153. };
  154. int snd_card_sysfs_init(void)
  155. {
  156. int ret = 0;
  157. char dir[DIR_SZ] = "snd_card";
  158. snd_card_pdata = kcalloc(1, sizeof(struct snd_card_pdata), GFP_KERNEL);
  159. ret = kobject_init_and_add(&snd_card_pdata->snd_card_kobj, &snd_card_ktype,
  160. kernel_kobj, dir);
  161. if (ret < 0) {
  162. pr_err("%s: Failed to add kobject %s, err = %d\n",
  163. __func__, dir, ret);
  164. goto done;
  165. }
  166. ret = sysfs_create_file(&snd_card_pdata->snd_card_kobj, &card_state_attr);
  167. if (ret < 0) {
  168. pr_err("%s: Failed to add snd_card sysfs entry to %s\n",
  169. __func__, dir);
  170. goto fail_create_file;
  171. }
  172. return ret;
  173. fail_create_file:
  174. kobject_put(&snd_card_pdata->snd_card_kobj);
  175. done:
  176. return ret;
  177. }
  178. static void check_userspace_service_state(struct snd_soc_pcm_runtime *rtd,
  179. struct msm_common_pdata *pdata)
  180. {
  181. dev_info(rtd->card->dev,"%s: pcm_id %d state %d\n", __func__,
  182. rtd->num, pdata->aud_dev_state[rtd->num]);
  183. if (pdata->aud_dev_state[rtd->num] == DEVICE_ENABLE) {
  184. dev_info(rtd->card->dev, "%s userspace service crashed\n",
  185. __func__);
  186. if (pdata->dsp_sessions_closed == 0) {
  187. /*Issue close all graph cmd to DSP*/
  188. spf_core_apm_close_all();
  189. /*unmap all dma mapped buffers*/
  190. msm_audio_ion_crash_handler();
  191. pdata->dsp_sessions_closed = 1;
  192. }
  193. /*Reset the state as sysfs node wont be triggred*/
  194. pdata->aud_dev_state[rtd->num] = 0;
  195. }
  196. }
  197. static int get_mi2s_tdm_auxpcm_intf_index(const char *stream_name)
  198. {
  199. if (!strnstr(stream_name, "TDM", strlen(stream_name)) &&
  200. !strnstr(stream_name, "MI2S", strlen(stream_name)) &&
  201. !strnstr(stream_name, "AUXPCM", strlen(stream_name)))
  202. return -EINVAL;
  203. if (strnstr(stream_name, "LPAIF_RXTX", strlen(stream_name)))
  204. return QUAT_MI2S_TDM_AUXPCM;
  205. else if (strnstr(stream_name, "LPAIF_WSA", strlen(stream_name)))
  206. return SEN_MI2S_TDM_AUXPCM;
  207. else if (strnstr(stream_name, "LPAIF_VA", strlen(stream_name)))
  208. return QUIN_MI2S_TDM_AUXPCM;
  209. else if (strnstr(stream_name, "LPAIF_AUD", strlen(stream_name)))
  210. return SEC_MI2S_TDM_AUXPCM;
  211. else if (strnstr(stream_name, "LPAIF", strlen(stream_name))) {
  212. if (strnstr(stream_name, "PRIMARY", strlen(stream_name)))
  213. return PRI_MI2S_TDM_AUXPCM;
  214. else if (strnstr(stream_name, "TERTIARY", strlen(stream_name)))
  215. return TER_MI2S_TDM_AUXPCM;
  216. }
  217. pr_debug("%s: stream name %s does not match\n", __func__, stream_name);
  218. return -EINVAL;
  219. }
  220. static bool is_fractional_sample_rate(unsigned int sample_rate)
  221. {
  222. switch (sample_rate) {
  223. case SAMPLING_RATE_44P1KHZ:
  224. case SAMPLING_RATE_88P2KHZ:
  225. case SAMPLING_RATE_176P4KHZ:
  226. case SAMPLING_RATE_352P8KHZ:
  227. return true;
  228. default:
  229. return false;
  230. }
  231. return false;
  232. }
  233. static int get_mi2s_clk_id(int index)
  234. {
  235. int clk_id;
  236. switch(index) {
  237. case PRI_MI2S_TDM_AUXPCM:
  238. clk_id = CLOCK_ID_PRI_MI2S_IBIT;
  239. break;
  240. case SEC_MI2S_TDM_AUXPCM:
  241. clk_id = CLOCK_ID_SEP_MI2S_IBIT;
  242. break;
  243. case TER_MI2S_TDM_AUXPCM:
  244. clk_id = CLOCK_ID_TER_MI2S_IBIT;
  245. break;
  246. case QUAT_MI2S_TDM_AUXPCM:
  247. clk_id = CLOCK_ID_QUAD_MI2S_IBIT;
  248. break;
  249. case QUIN_MI2S_TDM_AUXPCM:
  250. clk_id = CLOCK_ID_QUI_MI2S_IBIT;
  251. break;
  252. case SEN_MI2S_TDM_AUXPCM:
  253. clk_id = CLOCK_ID_SEN_MI2S_IBIT;
  254. break;
  255. default:
  256. pr_err("%s: Invalid interface index: %d\n", __func__, index);
  257. clk_id = -EINVAL;
  258. }
  259. pr_debug("%s: clk id: %d\n", __func__, clk_id);
  260. return clk_id;
  261. }
  262. static int get_tdm_clk_id(int index)
  263. {
  264. int clk_id;
  265. switch(index) {
  266. case PRI_MI2S_TDM_AUXPCM:
  267. clk_id = CLOCK_ID_PRI_TDM_IBIT;
  268. break;
  269. case SEC_MI2S_TDM_AUXPCM:
  270. clk_id = CLOCK_ID_SEP_TDM_IBIT;
  271. break;
  272. case TER_MI2S_TDM_AUXPCM:
  273. clk_id = CLOCK_ID_TER_TDM_IBIT;
  274. break;
  275. case QUAT_MI2S_TDM_AUXPCM:
  276. clk_id = CLOCK_ID_QUAD_TDM_IBIT;
  277. break;
  278. case QUIN_MI2S_TDM_AUXPCM:
  279. clk_id = CLOCK_ID_QUI_TDM_IBIT;
  280. break;
  281. case SEN_MI2S_TDM_AUXPCM:
  282. clk_id = CLOCK_ID_SEN_TDM_IBIT;
  283. break;
  284. default:
  285. pr_err("%s: Invalid interface index: %d\n", __func__, index);
  286. clk_id = -EINVAL;
  287. }
  288. pr_debug("%s: clk id: %d\n", __func__, clk_id);
  289. return clk_id;
  290. }
  291. int mi2s_tdm_hw_vote_req(struct msm_common_pdata *pdata, int enable)
  292. {
  293. int ret = 0;
  294. if (!pdata || (pdata->lpass_audio_hw_vote == NULL)) {
  295. pr_err("%s: pdata or lpass audio hw vote node NULL", __func__);
  296. return -EINVAL;
  297. }
  298. pr_debug("%s: lpass audio hw vote for fractional sample rate enable: %d\n",
  299. __func__, enable);
  300. if (enable) {
  301. if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) == 0) {
  302. ret = digital_cdc_rsc_mgr_hw_vote_enable(pdata->lpass_audio_hw_vote);
  303. if (ret < 0) {
  304. pr_err("%s lpass audio hw vote enable failed %d\n",
  305. __func__, ret);
  306. return ret;
  307. }
  308. }
  309. atomic_inc(&pdata->lpass_audio_hw_vote_ref_cnt);
  310. } else {
  311. atomic_dec(&pdata->lpass_audio_hw_vote_ref_cnt);
  312. if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) == 0)
  313. digital_cdc_rsc_mgr_hw_vote_disable(pdata->lpass_audio_hw_vote);
  314. else if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) < 0)
  315. atomic_set(&pdata->lpass_audio_hw_vote_ref_cnt, 0);
  316. }
  317. return ret;
  318. }
  319. int msm_common_snd_hw_params(struct snd_pcm_substream *substream,
  320. struct snd_pcm_hw_params *params)
  321. {
  322. int ret = 0;
  323. int slot_width = TDM_SLOT_WIDTH_BITS;
  324. int slots;
  325. int sample_width;
  326. unsigned int rate;
  327. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  328. const char *stream_name = rtd->dai_link->stream_name;
  329. struct snd_soc_card *card = rtd->card;
  330. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  331. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  332. struct clk_cfg intf_clk_cfg;
  333. dev_dbg(rtd->card->dev,
  334. "%s: substream = %s stream = %d\n",
  335. __func__, substream->name, substream->stream);
  336. if (!pdata) {
  337. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  338. return -EINVAL;
  339. }
  340. if (index >= 0) {
  341. mutex_lock(&pdata->lock[index]);
  342. if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) == 0) {
  343. if ((strnstr(stream_name, "TDM", strlen(stream_name)))) {
  344. slots = pdata->tdm_max_slots;
  345. rate = params_rate(params);
  346. intf_clk_cfg.clk_id = get_tdm_clk_id(index);
  347. if (intf_clk_cfg.clk_id < 0) {
  348. ret = -EINVAL;
  349. pr_err("%s: Invalid tdm clk id %d", __func__,
  350. intf_clk_cfg.clk_id);
  351. goto done;
  352. }
  353. intf_clk_cfg.clk_freq_in_hz = rate * slot_width * slots;
  354. intf_clk_cfg.clk_attri = pdata->tdm_clk_attribute[index];
  355. intf_clk_cfg.clk_root = 0;
  356. if (pdata->is_audio_hw_vote_required[index] &&
  357. is_fractional_sample_rate(rate)) {
  358. ret = mi2s_tdm_hw_vote_req(pdata, 1);
  359. if (ret < 0) {
  360. pr_err("%s lpass audio hw vote enable failed %d\n",
  361. __func__, ret);
  362. goto done;
  363. }
  364. }
  365. pr_debug("%s: clk_id :%d clk freq %d\n", __func__,
  366. intf_clk_cfg.clk_id, intf_clk_cfg.clk_freq_in_hz);
  367. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 1);
  368. if (ret < 0) {
  369. pr_err("%s: prm lpass tdm clk cfg set failed ret %d\n",
  370. __func__, ret);
  371. goto done;
  372. }
  373. } else if ((strnstr(stream_name, "MI2S", strlen(stream_name)))) {
  374. intf_clk_cfg.clk_id = get_mi2s_clk_id(index);
  375. if (intf_clk_cfg.clk_id < 0) {
  376. ret = -EINVAL;
  377. pr_err("%s: Invalid mi2s clk id %d", __func__,
  378. intf_clk_cfg.clk_id);
  379. goto done;
  380. }
  381. rate = params_rate(params);
  382. switch (params_format(params)) {
  383. case SNDRV_PCM_FORMAT_S24_LE:
  384. case SNDRV_PCM_FORMAT_S24_3LE:
  385. case SNDRV_PCM_FORMAT_S32_LE:
  386. sample_width = 32;
  387. break;
  388. case SNDRV_PCM_FORMAT_S16_LE:
  389. default:
  390. sample_width = 16;
  391. pr_debug("%s: bitwidth set to default : %d\n",
  392. __func__, sample_width);
  393. }
  394. intf_clk_cfg.clk_freq_in_hz = rate *
  395. MI2S_NUM_CHANNELS * sample_width;
  396. intf_clk_cfg.clk_attri = pdata->mi2s_clk_attribute[index];
  397. intf_clk_cfg.clk_root = CLOCK_ROOT_DEFAULT;
  398. if (pdata->is_audio_hw_vote_required[index] &&
  399. is_fractional_sample_rate(rate)) {
  400. ret = mi2s_tdm_hw_vote_req(pdata, 1);
  401. if (ret < 0) {
  402. pr_err("%s lpass audio hw vote enable failed %d\n",
  403. __func__, ret);
  404. goto done;
  405. }
  406. }
  407. pr_debug("%s: mi2s clk_id :%d clk freq %d\n", __func__,
  408. intf_clk_cfg.clk_id, intf_clk_cfg.clk_freq_in_hz);
  409. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 1);
  410. if (ret < 0) {
  411. pr_err("%s: prm lpass mi2s clk cfg set failed ret %d\n",
  412. __func__, ret);
  413. goto done;
  414. }
  415. } else {
  416. pr_err("%s: unsupported stream name: %s\n",
  417. __func__, stream_name);
  418. goto done;
  419. }
  420. }
  421. atomic_inc(&pdata->lpass_intf_clk_ref_cnt[index]);
  422. done:
  423. mutex_unlock(&pdata->lock[index]);
  424. }
  425. return ret;
  426. }
  427. int msm_common_snd_startup(struct snd_pcm_substream *substream)
  428. {
  429. int ret = 0;
  430. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  431. struct snd_soc_card *card = rtd->card;
  432. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  433. const char *stream_name = rtd->dai_link->stream_name;
  434. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  435. dev_dbg(rtd->card->dev,
  436. "%s: substream = %s stream = %d\n",
  437. __func__, substream->name, substream->stream);
  438. if (!pdata) {
  439. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  440. return -EINVAL;
  441. }
  442. if (index >= 0) {
  443. mutex_lock(&pdata->lock[index]);
  444. if (pdata->mi2s_gpio_p[index]) {
  445. if (atomic_read(&(pdata->mi2s_gpio_ref_cnt[index])) == 0) {
  446. ret = msm_cdc_pinctrl_select_active_state(
  447. pdata->mi2s_gpio_p[index]);
  448. if (ret) {
  449. pr_err("%s:pinctrl set actve fail with %d\n",
  450. __func__, ret);
  451. goto done;
  452. }
  453. }
  454. atomic_inc(&(pdata->mi2s_gpio_ref_cnt[index]));
  455. }
  456. done:
  457. mutex_unlock(&pdata->lock[index]);
  458. }
  459. return ret;
  460. }
  461. void msm_common_snd_shutdown(struct snd_pcm_substream *substream)
  462. {
  463. int ret;
  464. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  465. struct snd_soc_card *card = rtd->card;
  466. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  467. struct snd_pcm_runtime *runtime = substream->runtime;
  468. const char *stream_name = rtd->dai_link->stream_name;
  469. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  470. struct clk_cfg intf_clk_cfg;
  471. unsigned int rate = runtime->rate;
  472. memset(&intf_clk_cfg, 0, sizeof(struct clk_cfg));
  473. pr_debug("%s(): substream = %s stream = %d\n", __func__,
  474. substream->name, substream->stream);
  475. if (!pdata) {
  476. dev_err(card->dev, "%s: pdata is NULL\n", __func__);
  477. return;
  478. }
  479. check_userspace_service_state(rtd, pdata);
  480. if (index >= 0) {
  481. mutex_lock(&pdata->lock[index]);
  482. atomic_dec(&pdata->lpass_intf_clk_ref_cnt[index]);
  483. if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) == 0) {
  484. if ((strnstr(stream_name, "TDM", strlen(stream_name)))) {
  485. intf_clk_cfg.clk_id = get_tdm_clk_id(index);
  486. pr_debug("%s: Disable tdm clock ID: %d\n",
  487. __func__, intf_clk_cfg.clk_id);
  488. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 0);
  489. if (ret < 0)
  490. pr_err("%s: prm tdm clk cfg set failed ret %d\n",
  491. __func__, ret);
  492. } else if((strnstr(stream_name, "MI2S", strlen(stream_name)))) {
  493. intf_clk_cfg.clk_id = get_mi2s_clk_id(index);
  494. pr_debug("%s: Disable mi2s clock ID: %d\n",
  495. __func__, intf_clk_cfg.clk_id);
  496. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 0);
  497. if (ret < 0)
  498. pr_err("%s: prm mi2s clk cfg disable failed ret %d\n",
  499. __func__, ret);
  500. } else {
  501. pr_err("%s: unsupported stream name: %s\n",
  502. __func__, stream_name);
  503. }
  504. if (pdata->is_audio_hw_vote_required[index] &&
  505. is_fractional_sample_rate(rate)) {
  506. ret = mi2s_tdm_hw_vote_req(pdata, 0);
  507. }
  508. } else if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) < 0) {
  509. atomic_set(&pdata->lpass_intf_clk_ref_cnt[index], 0);
  510. }
  511. if (pdata->mi2s_gpio_p[index]) {
  512. atomic_dec(&pdata->mi2s_gpio_ref_cnt[index]);
  513. if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) == 0) {
  514. ret = msm_cdc_pinctrl_select_sleep_state(
  515. pdata->mi2s_gpio_p[index]);
  516. if (ret)
  517. dev_err(card->dev,
  518. "%s: pinctrl set actv fail %d\n",
  519. __func__, ret);
  520. } else if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) < 0) {
  521. atomic_set(&pdata->mi2s_gpio_ref_cnt[index], 0);
  522. }
  523. }
  524. mutex_unlock(&pdata->lock[index]);
  525. }
  526. }
  527. int msm_common_snd_init(struct platform_device *pdev, struct snd_soc_card *card)
  528. {
  529. struct msm_common_pdata *common_pdata = NULL;
  530. int count, ret = 0;
  531. uint32_t val_array[MI2S_TDM_AUXPCM_MAX] = {0};
  532. struct clk *lpass_audio_hw_vote = NULL;
  533. common_pdata = kcalloc(1, sizeof(struct msm_common_pdata), GFP_KERNEL);
  534. if (!common_pdata)
  535. return -ENOMEM;
  536. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  537. mutex_init(&common_pdata->lock[count]);
  538. atomic_set(&common_pdata->mi2s_gpio_ref_cnt[count], 0);
  539. }
  540. ret = of_property_read_u32(pdev->dev.of_node, "qcom,tdm-max-slots",
  541. &common_pdata->tdm_max_slots);
  542. if (ret) {
  543. dev_info(&pdev->dev, "%s: No DT match for tdm max slots\n",
  544. __func__);
  545. }
  546. if ((common_pdata->tdm_max_slots <= 0) || (common_pdata->tdm_max_slots >
  547. TDM_MAX_SLOTS)) {
  548. common_pdata->tdm_max_slots = TDM_MAX_SLOTS;
  549. dev_info(&pdev->dev, "%s: Using default tdm max slot: %d\n",
  550. __func__, common_pdata->tdm_max_slots);
  551. }
  552. /* Register LPASS audio hw vote */
  553. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  554. if (IS_ERR(lpass_audio_hw_vote)) {
  555. ret = PTR_ERR(lpass_audio_hw_vote);
  556. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  557. __func__, "lpass_audio_hw_vote", ret);
  558. lpass_audio_hw_vote = NULL;
  559. ret = 0;
  560. }
  561. common_pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  562. ret = of_property_read_u32_array(pdev->dev.of_node,
  563. "qcom,mi2s-tdm-is-hw-vote-needed",
  564. val_array, MI2S_TDM_AUXPCM_MAX);
  565. if (ret) {
  566. dev_dbg(&pdev->dev, "%s:no qcom,mi2s-tdm-is-hw-vote-needed in DT node\n",
  567. __func__);
  568. } else {
  569. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  570. common_pdata->is_audio_hw_vote_required[count] =
  571. val_array[count];
  572. }
  573. }
  574. ret = of_property_read_u32_array(pdev->dev.of_node, "qcom,tdm-clk-attribute",
  575. val_array, MI2S_TDM_AUXPCM_MAX);
  576. if (ret) {
  577. dev_info(&pdev->dev,
  578. "%s: No DT match for tdm clk attribute, set to default\n", __func__);
  579. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  580. common_pdata->tdm_clk_attribute[count] =
  581. CLOCK_ATTRIBUTE_COUPLE_NO;
  582. }
  583. } else {
  584. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  585. common_pdata->tdm_clk_attribute[count] =
  586. val_array[count];
  587. }
  588. }
  589. ret = of_property_read_u32_array(pdev->dev.of_node, "qcom,mi2s-clk-attribute",
  590. val_array, MI2S_TDM_AUXPCM_MAX);
  591. if (ret) {
  592. dev_info(&pdev->dev,
  593. "%s: No DT match for mi2s clk attribute, set to default\n", __func__);
  594. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  595. common_pdata->mi2s_clk_attribute[count] =
  596. CLOCK_ATTRIBUTE_COUPLE_NO;
  597. }
  598. } else {
  599. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  600. common_pdata->mi2s_clk_attribute[count] =
  601. val_array[count];
  602. }
  603. }
  604. common_pdata->mi2s_gpio_p[PRI_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  605. "qcom,pri-mi2s-gpios", 0);
  606. common_pdata->mi2s_gpio_p[SEC_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  607. "qcom,sec-mi2s-gpios", 0);
  608. common_pdata->mi2s_gpio_p[TER_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  609. "qcom,tert-mi2s-gpios", 0);
  610. common_pdata->mi2s_gpio_p[QUAT_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  611. "qcom,quat-mi2s-gpios", 0);
  612. common_pdata->mi2s_gpio_p[QUIN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  613. "qcom,quin-mi2s-gpios", 0);
  614. common_pdata->mi2s_gpio_p[SEN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  615. "qcom,sen-mi2s-gpios", 0);
  616. common_pdata->aud_dev_state = devm_kcalloc(&pdev->dev, card->num_links,
  617. sizeof(uint8_t), GFP_KERNEL);
  618. dev_info(&pdev->dev, "num_links %d \n", card->num_links);
  619. common_pdata->num_aud_devs = card->num_links;
  620. aud_dev_sysfs_init(common_pdata);
  621. msm_common_set_pdata(card, common_pdata);
  622. return 0;
  623. };
  624. void msm_common_snd_deinit(struct msm_common_pdata *common_pdata)
  625. {
  626. int count;
  627. if (!common_pdata)
  628. return;
  629. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  630. mutex_destroy(&common_pdata->lock[count]);
  631. }
  632. }
  633. int msm_channel_map_info(struct snd_kcontrol *kcontrol,
  634. struct snd_ctl_elem_info *uinfo)
  635. {
  636. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  637. uinfo->count = sizeof(uint32_t) * MAX_PORT;
  638. return 0;
  639. }
  640. int msm_channel_map_get(struct snd_kcontrol *kcontrol,
  641. struct snd_ctl_elem_value *ucontrol)
  642. {
  643. struct chmap_pdata *kctl_pdata =
  644. (struct chmap_pdata *)kcontrol->private_data;
  645. struct snd_soc_dai *codec_dai = NULL;
  646. int backend_id = 0;
  647. uint32_t rx_ch[MAX_PORT] = {0}, tx_ch[MAX_PORT] = {0};
  648. uint32_t rx_ch_cnt = 0, tx_ch_cnt = 0;
  649. uint32_t *chmap_data = NULL;
  650. int ret = 0, len = 0, i = 0;
  651. if (kctl_pdata == NULL) {
  652. pr_debug("%s: chmap_pdata is not initialized\n", __func__);
  653. return -EINVAL;
  654. }
  655. codec_dai = kctl_pdata->dai[0];
  656. backend_id = kctl_pdata->id;
  657. switch (backend_id) {
  658. case SLIM: {
  659. uint32_t *chmap;
  660. uint32_t ch_cnt;
  661. ret = snd_soc_dai_get_channel_map(codec_dai,
  662. &tx_ch_cnt, tx_ch, &rx_ch_cnt, rx_ch);
  663. if (ret || (tx_ch_cnt == 0 && rx_ch_cnt == 0)) {
  664. pr_debug("%s: got incorrect channel map for backend_id:%d\n",
  665. __func__, backend_id);
  666. return ret;
  667. }
  668. if (rx_ch_cnt) {
  669. chmap = rx_ch;
  670. ch_cnt = rx_ch_cnt;
  671. } else {
  672. chmap = tx_ch;
  673. ch_cnt = tx_ch_cnt;
  674. }
  675. len = sizeof(uint32_t) * (ch_cnt + 1);
  676. chmap_data = kzalloc(len, GFP_KERNEL);
  677. if (!chmap_data)
  678. return -ENOMEM;
  679. chmap_data[0] = ch_cnt;
  680. for (i = 0; i < ch_cnt; i++)
  681. chmap_data[i+1] = chmap[i];
  682. memcpy(ucontrol->value.bytes.data, chmap_data, len);
  683. break;
  684. }
  685. case CODEC_DMA: {
  686. uint32_t cur_rx_ch = 0, cur_tx_ch = 0;
  687. uint32_t cur_rx_ch_cnt = 0, cur_tx_ch_cnt = 0;
  688. for (i = 0; i < kctl_pdata->num_codec_dai; ++i) {
  689. codec_dai = kctl_pdata->dai[i];
  690. if(!codec_dai) {
  691. continue;
  692. }
  693. cur_rx_ch_cnt = 0;
  694. cur_tx_ch_cnt = 0;
  695. cur_tx_ch = 0;
  696. cur_rx_ch = 0;
  697. ret = snd_soc_dai_get_channel_map(codec_dai,
  698. &cur_tx_ch_cnt, &cur_tx_ch,
  699. &cur_rx_ch_cnt, &cur_rx_ch);
  700. /* DAIs that not supports get_channel_map should pass */
  701. if (ret && (ret != -ENOTSUPP)) {
  702. pr_err("%s: get channel map failed for backend_id:%d,"
  703. " ret:%d\n",
  704. __func__, backend_id, ret);
  705. return ret;
  706. }
  707. rx_ch_cnt += cur_rx_ch_cnt;
  708. tx_ch_cnt += cur_tx_ch_cnt;
  709. rx_ch[0] |= cur_rx_ch;
  710. tx_ch[0] |= cur_tx_ch;
  711. }
  712. /* reset return value from the loop above */
  713. ret = 0;
  714. if (rx_ch_cnt == 0 && tx_ch_cnt == 0) {
  715. pr_debug("%s: got incorrect channel map for backend_id:%d, ",
  716. "RX Channel Count:%d,"
  717. "TX Channel Count:%d\n",
  718. __func__, backend_id, rx_ch_cnt, tx_ch_cnt);
  719. return ret;
  720. }
  721. chmap_data = kzalloc(sizeof(uint32_t) * 2, GFP_KERNEL);
  722. if (!chmap_data)
  723. return -ENOMEM;
  724. if (rx_ch_cnt) {
  725. chmap_data[0] = rx_ch_cnt;
  726. chmap_data[1] = rx_ch[0];
  727. } else {
  728. chmap_data[0] = tx_ch_cnt;
  729. chmap_data[1] = tx_ch[0];
  730. }
  731. memcpy(ucontrol->value.bytes.data, chmap_data,
  732. sizeof(uint32_t) * 2);
  733. break;
  734. }
  735. default:
  736. pr_err("%s, Invalid backend %d\n", __func__, backend_id);
  737. ret = -EINVAL;
  738. break;
  739. }
  740. kfree(chmap_data);
  741. return ret;
  742. }
  743. void msm_common_get_backend_name(const char *stream_name, char **backend_name)
  744. {
  745. char arg[ARRAY_SZ] = {0};
  746. char value[61] = {0};
  747. sscanf(stream_name, "%20[^-]-%60s", arg, value);
  748. *backend_name = kzalloc(ARRAY_SZ, GFP_KERNEL);
  749. if (!(*backend_name))
  750. return;
  751. strlcpy(*backend_name, arg, ARRAY_SZ);
  752. }
  753. int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd)
  754. {
  755. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  756. struct snd_soc_component *component = NULL;
  757. struct snd_soc_dai_link *dai_link = rtd->dai_link;
  758. struct device *dev = rtd->card->dev;
  759. int ret = 0;
  760. int index = 0;
  761. const char *mixer_ctl_name = CODEC_CHMAP;
  762. char *mixer_str = NULL;
  763. char *backend_name = NULL;
  764. uint32_t ctl_len = 0;
  765. struct chmap_pdata *pdata;
  766. struct snd_kcontrol *kctl;
  767. struct snd_kcontrol_new msm_common_channel_map[1] = {
  768. {
  769. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  770. .name = "?",
  771. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  772. .info = msm_channel_map_info,
  773. .get = msm_channel_map_get,
  774. .private_value = 0,
  775. }
  776. };
  777. if (!codec_dai) {
  778. pr_err("%s: failed to get codec dai", __func__);
  779. return -EINVAL;
  780. }
  781. component = codec_dai->component;
  782. msm_common_get_backend_name(dai_link->stream_name, &backend_name);
  783. if (!backend_name) {
  784. pr_err("%s: failed to get backend name", __func__);
  785. return -EINVAL;
  786. }
  787. pdata = devm_kzalloc(dev, sizeof(struct chmap_pdata), GFP_KERNEL);
  788. if (!pdata)
  789. return -ENOMEM;
  790. if ((!strncmp(backend_name, "SLIM", strlen("SLIM"))) ||
  791. (!strncmp(backend_name, "CODEC_DMA", strlen("CODEC_DMA")))) {
  792. ctl_len = strlen(dai_link->stream_name) + 1 +
  793. strlen(mixer_ctl_name) + 1;
  794. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  795. if (!mixer_str)
  796. return -ENOMEM;
  797. snprintf(mixer_str, ctl_len, "%s %s", dai_link->stream_name,
  798. mixer_ctl_name);
  799. msm_common_channel_map[0].name = mixer_str;
  800. msm_common_channel_map[0].private_value = 0;
  801. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  802. ret = snd_soc_add_component_controls(component,
  803. msm_common_channel_map,
  804. ARRAY_SIZE(msm_common_channel_map));
  805. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  806. if (!kctl) {
  807. pr_err("failed to get kctl %s\n", mixer_str);
  808. ret = -EINVAL;
  809. goto free_mixer_str;
  810. }
  811. pdata->dai[0] = codec_dai;
  812. pdata->num_codec_dai = 1;
  813. if (!strncmp(backend_name, "SLIM", strlen("SLIM"))) {
  814. pdata->id = SLIM;
  815. } else {
  816. pdata->id = CODEC_DMA;
  817. if (rtd->num_codecs <= MAX_CODEC_DAI) {
  818. pdata->num_codec_dai = rtd->num_codecs;
  819. for_each_rtd_codec_dais(rtd, index, codec_dai) {
  820. pdata->dai[index] = codec_dai;
  821. }
  822. }
  823. }
  824. kctl->private_data = pdata;
  825. free_mixer_str:
  826. kfree(backend_name);
  827. kfree(mixer_str);
  828. }
  829. return ret;
  830. }