msm_common.c 12 KB

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