msm_common.c 12 KB

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