msm_common.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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 "asoc/msm-cdc-pinctrl.h"
  18. #include "msm_common.h"
  19. static int get_intf_index(const char *stream_name)
  20. {
  21. if (strnstr(stream_name, "PRIMARY", strlen("PRIMARY")))
  22. return PRI_MI2S_TDM_AUXPCM;
  23. else if (strnstr(stream_name, "SECONDARY", strlen("SECONDARY")))
  24. return SEC_MI2S_TDM_AUXPCM;
  25. else if (strnstr(stream_name, "TERTIARY", strlen("TERTIARY")))
  26. return TER_MI2S_TDM_AUXPCM;
  27. else if (strnstr(stream_name, "QUATERNARY", strlen("QUATERNARY")))
  28. return QUAT_MI2S_TDM_AUXPCM;
  29. else if (strnstr(stream_name, "QUINARY", strlen("QUINARY")))
  30. return QUIN_MI2S_TDM_AUXPCM;
  31. else if (strnstr(stream_name, "SENARY", strlen("SENARY")))
  32. return SEN_MI2S_TDM_AUXPCM;
  33. else
  34. return -EINVAL;
  35. }
  36. int msm_common_snd_startup(struct snd_pcm_substream *substream)
  37. {
  38. int ret = 0;
  39. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  40. struct snd_soc_card *card = rtd->card;
  41. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  42. const char *stream_name = rtd->dai_link->stream_name;
  43. int index = get_intf_index(stream_name);
  44. dev_dbg(rtd->card->dev,
  45. "%s: substream = %s stream = %d\n",
  46. __func__, substream->name, substream->stream);
  47. if (!pdata) {
  48. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  49. return -EINVAL;
  50. }
  51. if (index < 0) {
  52. dev_err(rtd->card->dev,
  53. "%s: Invalid Backend interface %d\n", __func__, index);
  54. return -EINVAL;
  55. }
  56. mutex_lock(&pdata->lock[index]);
  57. if (pdata->mi2s_gpio_p[index]) {
  58. if (atomic_read(&(pdata->mi2s_gpio_ref_cnt[index])) == 0) {
  59. ret = msm_cdc_pinctrl_select_active_state(
  60. pdata->mi2s_gpio_p[index]);
  61. if (ret) {
  62. pr_err("%s: GPIO pinctrl set active failed with %d\n",
  63. __func__, ret);
  64. goto done;
  65. }
  66. }
  67. atomic_inc(&(pdata->mi2s_gpio_ref_cnt[index]));
  68. }
  69. done:
  70. mutex_unlock(&pdata->lock[index]);
  71. return ret;
  72. }
  73. void msm_common_snd_shutdown(struct snd_pcm_substream *substream)
  74. {
  75. int ret;
  76. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  77. struct snd_soc_card *card = rtd->card;
  78. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  79. const char *stream_name = rtd->dai_link->stream_name;
  80. int index = get_intf_index(stream_name);
  81. pr_debug("%s(): substream = %s stream = %d\n", __func__,
  82. substream->name, substream->stream);
  83. if (!pdata) {
  84. dev_err(card->dev, "%s: pdata is NULL\n", __func__);
  85. return;
  86. }
  87. if (index < 0) {
  88. dev_err(card->dev,
  89. "%s: Invalid Backend interface %d\n", __func__, index);
  90. return;
  91. }
  92. mutex_lock(&pdata->lock[index]);
  93. if (pdata->mi2s_gpio_p[index]) {
  94. atomic_dec(&pdata->mi2s_gpio_ref_cnt[index]);
  95. if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) == 0) {
  96. ret = msm_cdc_pinctrl_select_active_state(
  97. pdata->mi2s_gpio_p[index]);
  98. if (ret)
  99. dev_err(card->dev, "%s: GPIO pinctrl set active failed with %d\n",
  100. __func__, ret);
  101. }
  102. }
  103. mutex_unlock(&pdata->lock[index]);
  104. }
  105. int msm_common_snd_init(struct platform_device *pdev, struct snd_soc_card *card)
  106. {
  107. struct msm_common_pdata *common_pdata = NULL;
  108. int count;
  109. common_pdata = kcalloc(1, sizeof(struct msm_common_pdata), GFP_KERNEL);
  110. if (!common_pdata)
  111. return -ENOMEM;
  112. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  113. mutex_init(&common_pdata->lock[count]);
  114. atomic_set(&common_pdata->mi2s_gpio_ref_cnt[count], 0);
  115. }
  116. common_pdata->mi2s_gpio_p[PRI_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  117. "qcom,pri-mi2s-gpios", 0);
  118. common_pdata->mi2s_gpio_p[SEC_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  119. "qcom,sec-mi2s-gpios", 0);
  120. common_pdata->mi2s_gpio_p[TER_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  121. "qcom,tert-mi2s-gpios", 0);
  122. common_pdata->mi2s_gpio_p[QUAT_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  123. "qcom,quat-mi2s-gpios", 0);
  124. common_pdata->mi2s_gpio_p[QUIN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  125. "qcom,quin-mi2s-gpios", 0);
  126. common_pdata->mi2s_gpio_p[SEN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  127. "qcom,sen-mi2s-gpios", 0);
  128. msm_common_set_pdata(card, common_pdata);
  129. return 0;
  130. };
  131. void msm_common_snd_deinit(struct msm_common_pdata *common_pdata)
  132. {
  133. int count;
  134. if (!common_pdata)
  135. return;
  136. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  137. mutex_destroy(&common_pdata->lock[count]);
  138. }
  139. }