msm_common.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942
  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 = -EINVAL;
  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. }
  258. pr_debug("%s: clk id: %d\n", __func__, clk_id);
  259. return clk_id;
  260. }
  261. static int get_tdm_clk_id(int index)
  262. {
  263. int clk_id = -EINVAL;
  264. switch(index) {
  265. case PRI_MI2S_TDM_AUXPCM:
  266. clk_id = CLOCK_ID_PRI_TDM_IBIT;
  267. break;
  268. case SEC_MI2S_TDM_AUXPCM:
  269. clk_id = CLOCK_ID_SEP_TDM_IBIT;
  270. break;
  271. case TER_MI2S_TDM_AUXPCM:
  272. clk_id = CLOCK_ID_TER_TDM_IBIT;
  273. break;
  274. case QUAT_MI2S_TDM_AUXPCM:
  275. clk_id = CLOCK_ID_QUAD_TDM_IBIT;
  276. break;
  277. case QUIN_MI2S_TDM_AUXPCM:
  278. clk_id = CLOCK_ID_QUI_TDM_IBIT;
  279. break;
  280. case SEN_MI2S_TDM_AUXPCM:
  281. clk_id = CLOCK_ID_SEN_TDM_IBIT;
  282. break;
  283. default:
  284. pr_err("%s: Invalid interface index: %d\n", __func__, index);
  285. }
  286. pr_debug("%s: clk id: %d\n", __func__, clk_id);
  287. return clk_id;
  288. }
  289. int mi2s_tdm_hw_vote_req(struct msm_common_pdata *pdata, int enable)
  290. {
  291. int ret = 0;
  292. if (!pdata || (pdata->lpass_audio_hw_vote == NULL)) {
  293. pr_err("%s: pdata or lpass audio hw vote node NULL", __func__);
  294. return -EINVAL;
  295. }
  296. pr_debug("%s: lpass audio hw vote for fractional sample rate enable: %d\n",
  297. __func__, enable);
  298. if (enable) {
  299. if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) == 0) {
  300. ret = digital_cdc_rsc_mgr_hw_vote_enable(pdata->lpass_audio_hw_vote);
  301. if (ret < 0) {
  302. pr_err("%s lpass audio hw vote enable failed %d\n",
  303. __func__, ret);
  304. return ret;
  305. }
  306. }
  307. atomic_inc(&pdata->lpass_audio_hw_vote_ref_cnt);
  308. } else {
  309. atomic_dec(&pdata->lpass_audio_hw_vote_ref_cnt);
  310. if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) == 0)
  311. digital_cdc_rsc_mgr_hw_vote_disable(pdata->lpass_audio_hw_vote);
  312. else if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) < 0)
  313. atomic_set(&pdata->lpass_audio_hw_vote_ref_cnt, 0);
  314. }
  315. return ret;
  316. }
  317. int msm_common_snd_hw_params(struct snd_pcm_substream *substream,
  318. struct snd_pcm_hw_params *params)
  319. {
  320. int ret = 0;
  321. int slot_width = TDM_SLOT_WIDTH_BITS;
  322. int slots;
  323. int sample_width;
  324. unsigned int rate;
  325. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  326. const char *stream_name = rtd->dai_link->stream_name;
  327. struct snd_soc_card *card = rtd->card;
  328. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  329. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  330. struct clk_cfg intf_clk_cfg;
  331. dev_dbg(rtd->card->dev,
  332. "%s: substream = %s stream = %d\n",
  333. __func__, substream->name, substream->stream);
  334. if (!pdata) {
  335. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  336. return -EINVAL;
  337. }
  338. if (index >= 0) {
  339. mutex_lock(&pdata->lock[index]);
  340. if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) == 0) {
  341. if ((strnstr(stream_name, "TDM", strlen(stream_name)))) {
  342. slots = pdata->tdm_max_slots;
  343. rate = params_rate(params);
  344. ret = get_tdm_clk_id(index);
  345. if ( ret < 0)
  346. goto done;
  347. intf_clk_cfg.clk_id = ret;
  348. intf_clk_cfg.clk_freq_in_hz = rate * slot_width * slots;
  349. intf_clk_cfg.clk_attri = pdata->tdm_clk_attribute[index];
  350. intf_clk_cfg.clk_root = 0;
  351. if (pdata->is_audio_hw_vote_required[index] &&
  352. is_fractional_sample_rate(rate)) {
  353. ret = mi2s_tdm_hw_vote_req(pdata, 1);
  354. if (ret < 0) {
  355. pr_err("%s lpass audio hw vote enable failed %d\n",
  356. __func__, ret);
  357. goto done;
  358. }
  359. }
  360. pr_debug("%s: clk_id :%d clk freq %d\n", __func__,
  361. intf_clk_cfg.clk_id, intf_clk_cfg.clk_freq_in_hz);
  362. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 1);
  363. if (ret < 0) {
  364. pr_err("%s: prm lpass tdm clk cfg set failed ret %d\n",
  365. __func__, ret);
  366. goto done;
  367. }
  368. } else if ((strnstr(stream_name, "MI2S", strlen(stream_name)))) {
  369. ret = get_mi2s_clk_id(index);
  370. if (ret < 0)
  371. goto done;
  372. intf_clk_cfg.clk_id = ret;
  373. rate = params_rate(params);
  374. switch (params_format(params)) {
  375. case SNDRV_PCM_FORMAT_S24_LE:
  376. case SNDRV_PCM_FORMAT_S24_3LE:
  377. case SNDRV_PCM_FORMAT_S32_LE:
  378. sample_width = 32;
  379. break;
  380. case SNDRV_PCM_FORMAT_S16_LE:
  381. default:
  382. sample_width = 16;
  383. pr_debug("%s: bitwidth set to default : %d\n",
  384. __func__, sample_width);
  385. }
  386. intf_clk_cfg.clk_freq_in_hz = rate *
  387. MI2S_NUM_CHANNELS * sample_width;
  388. intf_clk_cfg.clk_attri = pdata->mi2s_clk_attribute[index];
  389. intf_clk_cfg.clk_root = CLOCK_ROOT_DEFAULT;
  390. if (pdata->is_audio_hw_vote_required[index] &&
  391. is_fractional_sample_rate(rate)) {
  392. ret = mi2s_tdm_hw_vote_req(pdata, 1);
  393. if (ret < 0) {
  394. pr_err("%s lpass audio hw vote enable failed %d\n",
  395. __func__, ret);
  396. goto done;
  397. }
  398. }
  399. pr_debug("%s: mi2s clk_id :%d clk freq %d\n", __func__,
  400. intf_clk_cfg.clk_id, intf_clk_cfg.clk_freq_in_hz);
  401. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 1);
  402. if (ret < 0) {
  403. pr_err("%s: prm lpass mi2s clk cfg set failed ret %d\n",
  404. __func__, ret);
  405. goto done;
  406. }
  407. } else {
  408. pr_err("%s: unsupported stream name: %s\n",
  409. __func__, stream_name);
  410. goto done;
  411. }
  412. }
  413. atomic_inc(&pdata->lpass_intf_clk_ref_cnt[index]);
  414. done:
  415. mutex_unlock(&pdata->lock[index]);
  416. }
  417. return ret;
  418. }
  419. int msm_common_snd_startup(struct snd_pcm_substream *substream)
  420. {
  421. int ret = 0;
  422. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  423. struct snd_soc_card *card = rtd->card;
  424. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  425. const char *stream_name = rtd->dai_link->stream_name;
  426. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  427. dev_dbg(rtd->card->dev,
  428. "%s: substream = %s stream = %d\n",
  429. __func__, substream->name, substream->stream);
  430. if (!pdata) {
  431. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  432. return -EINVAL;
  433. }
  434. if (index >= 0) {
  435. mutex_lock(&pdata->lock[index]);
  436. if (pdata->mi2s_gpio_p[index]) {
  437. if (atomic_read(&(pdata->mi2s_gpio_ref_cnt[index])) == 0) {
  438. ret = msm_cdc_pinctrl_select_active_state(
  439. pdata->mi2s_gpio_p[index]);
  440. if (ret) {
  441. pr_err("%s:pinctrl set actve fail with %d\n",
  442. __func__, ret);
  443. goto done;
  444. }
  445. }
  446. atomic_inc(&(pdata->mi2s_gpio_ref_cnt[index]));
  447. }
  448. done:
  449. mutex_unlock(&pdata->lock[index]);
  450. }
  451. return ret;
  452. }
  453. void msm_common_snd_shutdown(struct snd_pcm_substream *substream)
  454. {
  455. int ret;
  456. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  457. struct snd_soc_card *card = rtd->card;
  458. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  459. struct snd_pcm_runtime *runtime = substream->runtime;
  460. const char *stream_name = rtd->dai_link->stream_name;
  461. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  462. struct clk_cfg intf_clk_cfg;
  463. unsigned int rate = runtime->rate;
  464. memset(&intf_clk_cfg, 0, sizeof(struct clk_cfg));
  465. pr_debug("%s(): substream = %s stream = %d\n", __func__,
  466. substream->name, substream->stream);
  467. if (!pdata) {
  468. dev_err(card->dev, "%s: pdata is NULL\n", __func__);
  469. return;
  470. }
  471. check_userspace_service_state(rtd, pdata);
  472. if (index >= 0) {
  473. mutex_lock(&pdata->lock[index]);
  474. atomic_dec(&pdata->lpass_intf_clk_ref_cnt[index]);
  475. if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) == 0) {
  476. if ((strnstr(stream_name, "TDM", strlen(stream_name)))) {
  477. ret = get_tdm_clk_id(index);
  478. if (ret > 0) {
  479. intf_clk_cfg.clk_id = ret;
  480. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 0);
  481. if (ret < 0)
  482. pr_err("%s: prm tdm clk cfg set failed ret %d\n",
  483. __func__, ret);
  484. }
  485. } else if((strnstr(stream_name, "MI2S", strlen(stream_name)))) {
  486. ret = get_mi2s_clk_id(index);
  487. if (ret > 0) {
  488. intf_clk_cfg.clk_id = ret;
  489. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 0);
  490. if (ret < 0)
  491. pr_err("%s: prm mi2s clk cfg disable failed ret %d\n",
  492. __func__, ret);
  493. }
  494. } else {
  495. pr_err("%s: unsupported stream name: %s\n",
  496. __func__, stream_name);
  497. }
  498. if (pdata->is_audio_hw_vote_required[index] &&
  499. is_fractional_sample_rate(rate)) {
  500. ret = mi2s_tdm_hw_vote_req(pdata, 0);
  501. }
  502. } else if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) < 0) {
  503. atomic_set(&pdata->lpass_intf_clk_ref_cnt[index], 0);
  504. }
  505. if (pdata->mi2s_gpio_p[index]) {
  506. atomic_dec(&pdata->mi2s_gpio_ref_cnt[index]);
  507. if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) == 0) {
  508. ret = msm_cdc_pinctrl_select_sleep_state(
  509. pdata->mi2s_gpio_p[index]);
  510. if (ret)
  511. dev_err(card->dev,
  512. "%s: pinctrl set actv fail %d\n",
  513. __func__, ret);
  514. } else if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) < 0) {
  515. atomic_set(&pdata->mi2s_gpio_ref_cnt[index], 0);
  516. }
  517. }
  518. mutex_unlock(&pdata->lock[index]);
  519. }
  520. }
  521. int msm_common_snd_init(struct platform_device *pdev, struct snd_soc_card *card)
  522. {
  523. struct msm_common_pdata *common_pdata = NULL;
  524. int count, ret = 0;
  525. uint32_t val_array[MI2S_TDM_AUXPCM_MAX] = {0};
  526. struct clk *lpass_audio_hw_vote = NULL;
  527. common_pdata = kcalloc(1, sizeof(struct msm_common_pdata), GFP_KERNEL);
  528. if (!common_pdata)
  529. return -ENOMEM;
  530. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  531. mutex_init(&common_pdata->lock[count]);
  532. atomic_set(&common_pdata->mi2s_gpio_ref_cnt[count], 0);
  533. }
  534. ret = of_property_read_u32(pdev->dev.of_node, "qcom,tdm-max-slots",
  535. &common_pdata->tdm_max_slots);
  536. if (ret) {
  537. dev_info(&pdev->dev, "%s: No DT match for tdm max slots\n",
  538. __func__);
  539. }
  540. if ((common_pdata->tdm_max_slots <= 0) || (common_pdata->tdm_max_slots >
  541. TDM_MAX_SLOTS)) {
  542. common_pdata->tdm_max_slots = TDM_MAX_SLOTS;
  543. dev_info(&pdev->dev, "%s: Using default tdm max slot: %d\n",
  544. __func__, common_pdata->tdm_max_slots);
  545. }
  546. /* Register LPASS audio hw vote */
  547. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  548. if (IS_ERR(lpass_audio_hw_vote)) {
  549. ret = PTR_ERR(lpass_audio_hw_vote);
  550. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  551. __func__, "lpass_audio_hw_vote", ret);
  552. lpass_audio_hw_vote = NULL;
  553. ret = 0;
  554. }
  555. common_pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  556. ret = of_property_read_u32_array(pdev->dev.of_node,
  557. "qcom,mi2s-tdm-is-hw-vote-needed",
  558. val_array, MI2S_TDM_AUXPCM_MAX);
  559. if (ret) {
  560. dev_dbg(&pdev->dev, "%s:no qcom,mi2s-tdm-is-hw-vote-needed in DT node\n",
  561. __func__);
  562. } else {
  563. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  564. common_pdata->is_audio_hw_vote_required[count] =
  565. val_array[count];
  566. }
  567. }
  568. ret = of_property_read_u32_array(pdev->dev.of_node, "qcom,tdm-clk-attribute",
  569. val_array, MI2S_TDM_AUXPCM_MAX);
  570. if (ret) {
  571. dev_info(&pdev->dev,
  572. "%s: No DT match for tdm clk attribute, set to default\n", __func__);
  573. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  574. common_pdata->tdm_clk_attribute[count] =
  575. CLOCK_ATTRIBUTE_COUPLE_NO;
  576. }
  577. } else {
  578. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  579. common_pdata->tdm_clk_attribute[count] =
  580. val_array[count];
  581. }
  582. }
  583. ret = of_property_read_u32_array(pdev->dev.of_node, "qcom,mi2s-clk-attribute",
  584. val_array, MI2S_TDM_AUXPCM_MAX);
  585. if (ret) {
  586. dev_info(&pdev->dev,
  587. "%s: No DT match for mi2s clk attribute, set to default\n", __func__);
  588. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  589. common_pdata->mi2s_clk_attribute[count] =
  590. CLOCK_ATTRIBUTE_COUPLE_NO;
  591. }
  592. } else {
  593. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  594. common_pdata->mi2s_clk_attribute[count] =
  595. val_array[count];
  596. }
  597. }
  598. common_pdata->mi2s_gpio_p[PRI_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  599. "qcom,pri-mi2s-gpios", 0);
  600. common_pdata->mi2s_gpio_p[SEC_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  601. "qcom,sec-mi2s-gpios", 0);
  602. common_pdata->mi2s_gpio_p[TER_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  603. "qcom,tert-mi2s-gpios", 0);
  604. common_pdata->mi2s_gpio_p[QUAT_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  605. "qcom,quat-mi2s-gpios", 0);
  606. common_pdata->mi2s_gpio_p[QUIN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  607. "qcom,quin-mi2s-gpios", 0);
  608. common_pdata->mi2s_gpio_p[SEN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  609. "qcom,sen-mi2s-gpios", 0);
  610. common_pdata->aud_dev_state = devm_kcalloc(&pdev->dev, card->num_links,
  611. sizeof(uint8_t), GFP_KERNEL);
  612. dev_info(&pdev->dev, "num_links %d \n", card->num_links);
  613. common_pdata->num_aud_devs = card->num_links;
  614. aud_dev_sysfs_init(common_pdata);
  615. msm_common_set_pdata(card, common_pdata);
  616. return 0;
  617. };
  618. void msm_common_snd_deinit(struct msm_common_pdata *common_pdata)
  619. {
  620. int count;
  621. if (!common_pdata)
  622. return;
  623. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  624. mutex_destroy(&common_pdata->lock[count]);
  625. }
  626. }
  627. int msm_channel_map_info(struct snd_kcontrol *kcontrol,
  628. struct snd_ctl_elem_info *uinfo)
  629. {
  630. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  631. uinfo->count = sizeof(uint32_t) * MAX_PORT;
  632. return 0;
  633. }
  634. int msm_channel_map_get(struct snd_kcontrol *kcontrol,
  635. struct snd_ctl_elem_value *ucontrol)
  636. {
  637. struct chmap_pdata *kctl_pdata =
  638. (struct chmap_pdata *)kcontrol->private_data;
  639. struct snd_soc_dai *codec_dai = NULL;
  640. int backend_id = 0;
  641. uint32_t rx_ch[MAX_PORT] = {0}, tx_ch[MAX_PORT] = {0};
  642. uint32_t rx_ch_cnt = 0, tx_ch_cnt = 0;
  643. uint32_t *chmap_data = NULL;
  644. int ret = 0, len = 0, i = 0;
  645. if (kctl_pdata == NULL) {
  646. pr_debug("%s: chmap_pdata is not initialized\n", __func__);
  647. return -EINVAL;
  648. }
  649. codec_dai = kctl_pdata->dai[0];
  650. backend_id = kctl_pdata->id;
  651. switch (backend_id) {
  652. case SLIM: {
  653. uint32_t *chmap;
  654. uint32_t ch_cnt;
  655. ret = snd_soc_dai_get_channel_map(codec_dai,
  656. &tx_ch_cnt, tx_ch, &rx_ch_cnt, rx_ch);
  657. if (ret || (tx_ch_cnt == 0 && rx_ch_cnt == 0)) {
  658. pr_debug("%s: got incorrect channel map for backend_id:%d\n",
  659. __func__, backend_id);
  660. return ret;
  661. }
  662. if (rx_ch_cnt) {
  663. chmap = rx_ch;
  664. ch_cnt = rx_ch_cnt;
  665. } else {
  666. chmap = tx_ch;
  667. ch_cnt = tx_ch_cnt;
  668. }
  669. len = sizeof(uint32_t) * (ch_cnt + 1);
  670. chmap_data = kzalloc(len, GFP_KERNEL);
  671. if (!chmap_data)
  672. return -ENOMEM;
  673. chmap_data[0] = ch_cnt;
  674. for (i = 0; i < ch_cnt; i++)
  675. chmap_data[i+1] = chmap[i];
  676. memcpy(ucontrol->value.bytes.data, chmap_data, len);
  677. break;
  678. }
  679. case CODEC_DMA: {
  680. uint32_t cur_rx_ch = 0, cur_tx_ch = 0;
  681. uint32_t cur_rx_ch_cnt = 0, cur_tx_ch_cnt = 0;
  682. for (i = 0; i < kctl_pdata->num_codec_dai; ++i) {
  683. codec_dai = kctl_pdata->dai[i];
  684. if(!codec_dai) {
  685. continue;
  686. }
  687. cur_rx_ch_cnt = 0;
  688. cur_tx_ch_cnt = 0;
  689. cur_tx_ch = 0;
  690. cur_rx_ch = 0;
  691. ret = snd_soc_dai_get_channel_map(codec_dai,
  692. &cur_tx_ch_cnt, &cur_tx_ch,
  693. &cur_rx_ch_cnt, &cur_rx_ch);
  694. /* DAIs that not supports get_channel_map should pass */
  695. if (ret && (ret != -ENOTSUPP)) {
  696. pr_err("%s: get channel map failed for backend_id:%d,"
  697. " ret:%d\n",
  698. __func__, backend_id, ret);
  699. return ret;
  700. }
  701. rx_ch_cnt += cur_rx_ch_cnt;
  702. tx_ch_cnt += cur_tx_ch_cnt;
  703. rx_ch[0] |= cur_rx_ch;
  704. tx_ch[0] |= cur_tx_ch;
  705. }
  706. /* reset return value from the loop above */
  707. ret = 0;
  708. if (rx_ch_cnt == 0 && tx_ch_cnt == 0) {
  709. pr_debug("%s: got incorrect channel map for backend_id:%d, ",
  710. "RX Channel Count:%d,"
  711. "TX Channel Count:%d\n",
  712. __func__, backend_id, rx_ch_cnt, tx_ch_cnt);
  713. return ret;
  714. }
  715. chmap_data = kzalloc(sizeof(uint32_t) * 2, GFP_KERNEL);
  716. if (!chmap_data)
  717. return -ENOMEM;
  718. if (rx_ch_cnt) {
  719. chmap_data[0] = rx_ch_cnt;
  720. chmap_data[1] = rx_ch[0];
  721. } else {
  722. chmap_data[0] = tx_ch_cnt;
  723. chmap_data[1] = tx_ch[0];
  724. }
  725. memcpy(ucontrol->value.bytes.data, chmap_data,
  726. sizeof(uint32_t) * 2);
  727. break;
  728. }
  729. default:
  730. pr_err("%s, Invalid backend %d\n", __func__, backend_id);
  731. ret = -EINVAL;
  732. break;
  733. }
  734. kfree(chmap_data);
  735. return ret;
  736. }
  737. void msm_common_get_backend_name(const char *stream_name, char **backend_name)
  738. {
  739. char arg[ARRAY_SZ] = {0};
  740. char value[61] = {0};
  741. sscanf(stream_name, "%20[^-]-%60s", arg, value);
  742. *backend_name = kzalloc(ARRAY_SZ, GFP_KERNEL);
  743. if (!(*backend_name))
  744. return;
  745. strlcpy(*backend_name, arg, ARRAY_SZ);
  746. }
  747. int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd)
  748. {
  749. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  750. struct snd_soc_component *component = NULL;
  751. struct snd_soc_dai_link *dai_link = rtd->dai_link;
  752. struct device *dev = rtd->card->dev;
  753. int ret = 0;
  754. int index = 0;
  755. const char *mixer_ctl_name = CODEC_CHMAP;
  756. char *mixer_str = NULL;
  757. char *backend_name = NULL;
  758. uint32_t ctl_len = 0;
  759. struct chmap_pdata *pdata;
  760. struct snd_kcontrol *kctl;
  761. struct snd_kcontrol_new msm_common_channel_map[1] = {
  762. {
  763. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  764. .name = "?",
  765. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  766. .info = msm_channel_map_info,
  767. .get = msm_channel_map_get,
  768. .private_value = 0,
  769. }
  770. };
  771. if (!codec_dai) {
  772. pr_err("%s: failed to get codec dai", __func__);
  773. return -EINVAL;
  774. }
  775. component = codec_dai->component;
  776. msm_common_get_backend_name(dai_link->stream_name, &backend_name);
  777. if (!backend_name) {
  778. pr_err("%s: failed to get backend name", __func__);
  779. return -EINVAL;
  780. }
  781. pdata = devm_kzalloc(dev, sizeof(struct chmap_pdata), GFP_KERNEL);
  782. if (!pdata)
  783. return -ENOMEM;
  784. if ((!strncmp(backend_name, "SLIM", strlen("SLIM"))) ||
  785. (!strncmp(backend_name, "CODEC_DMA", strlen("CODEC_DMA")))) {
  786. ctl_len = strlen(dai_link->stream_name) + 1 +
  787. strlen(mixer_ctl_name) + 1;
  788. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  789. if (!mixer_str)
  790. return -ENOMEM;
  791. snprintf(mixer_str, ctl_len, "%s %s", dai_link->stream_name,
  792. mixer_ctl_name);
  793. msm_common_channel_map[0].name = mixer_str;
  794. msm_common_channel_map[0].private_value = 0;
  795. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  796. ret = snd_soc_add_component_controls(component,
  797. msm_common_channel_map,
  798. ARRAY_SIZE(msm_common_channel_map));
  799. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  800. if (!kctl) {
  801. pr_err("failed to get kctl %s\n", mixer_str);
  802. ret = -EINVAL;
  803. goto free_mixer_str;
  804. }
  805. pdata->dai[0] = codec_dai;
  806. pdata->num_codec_dai = 1;
  807. if (!strncmp(backend_name, "SLIM", strlen("SLIM"))) {
  808. pdata->id = SLIM;
  809. } else {
  810. pdata->id = CODEC_DMA;
  811. if (rtd->num_codecs <= MAX_CODEC_DAI) {
  812. pdata->num_codec_dai = rtd->num_codecs;
  813. for_each_rtd_codec_dais(rtd, index, codec_dai) {
  814. pdata->dai[index] = codec_dai;
  815. }
  816. }
  817. }
  818. kctl->private_data = pdata;
  819. free_mixer_str:
  820. kfree(backend_name);
  821. kfree(mixer_str);
  822. }
  823. return ret;
  824. }