wcd937x.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. /*
  2. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/slab.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/device.h>
  17. #include <linux/delay.h>
  18. #include <linux/kernel.h>
  19. #include <linux/component.h>
  20. #include <sound/soc.h>
  21. #include <soc/soundwire.h>
  22. #include "../msm-cdc-pinctrl.h"
  23. struct wcd937x_priv {
  24. struct device *dev;
  25. struct snd_soc_codec *codec;
  26. struct device_node *rst_np;
  27. struct swr_device *rx_swr_dev;
  28. struct swr_device *tx_swr_dev;
  29. };
  30. struct wcd937x_pdata {
  31. struct device_node *rst_np;
  32. struct device_node *rx_slave;
  33. struct device_node *tx_slave;
  34. };
  35. static int wcd937x_soc_codec_probe(struct snd_soc_codec *codec)
  36. {
  37. struct wcd937x_priv *wcd937x = snd_soc_codec_get_drvdata(codec);
  38. if (!wcd937x)
  39. return -EINVAL;
  40. return 0;
  41. }
  42. static int wcd937x_soc_codec_remove(struct snd_soc_codec *codec)
  43. {
  44. struct wcd937x_priv *wcd937x = snd_soc_codec_get_drvdata(codec);
  45. if (!wcd937x)
  46. return -EINVAL;
  47. return 0;
  48. }
  49. static struct regmap *wcd937x_get_regmap(struct device *dev)
  50. {
  51. struct wcd937x_priv *wcd937x = dev_get_drvdata(dev);
  52. return wcd937x->regmap;
  53. }
  54. static const struct snd_kcontrol_new wcd937x_snd_controls[] = {
  55. };
  56. static const struct snd_soc_dapm_widget wcd937x_dapm_widgets[] = {
  57. };
  58. static const struct snd_soc_dapm_route wcd937x_audio_map[] = {
  59. };
  60. static struct snd_soc_codec_driver soc_codec_dev_wcd937x = {
  61. .probe = wcd937x_soc_codec_probe,
  62. .remove = wcd937x_soc_codec_remove,
  63. .get_regmap = wcd937x_get_regmap,
  64. .component_driver = {
  65. .controls = wcd937x_snd_controls,
  66. .num_controls = ARRAY_SIZE(wcd937x_snd_controls),
  67. .dapm_widgets = wcd937x_dapm_widgets,
  68. .num_dapm_widgets = ARRAY_SIZE(wcd937x_dapm_widgets),
  69. .dapm_routes = wcd937x_audio_map,
  70. .num_dapm_routes = ARRAY_SIZE(wcd937x_audio_map),
  71. },
  72. };
  73. int wcd937x_reset(struct device *dev)
  74. {
  75. struct wcd937x_priv *wcd937x = NULL;
  76. int rc = 0;
  77. int value = 0;
  78. if (!dev)
  79. return -ENODEV;
  80. wcd937x = dev_get_drvdata(dev);
  81. if (!wcd937x)
  82. return -EINVAL;
  83. if (!wcd937x->rst_np) {
  84. dev_err(dev, "%s: reset gpio device node not specified\n",
  85. __func__);
  86. return -EINVAL;
  87. }
  88. value = msm_cdc_pinctrl_get_state(wcd937x->rst_np);
  89. if (value > 0)
  90. return 0;
  91. rc = msm_cdc_pinctrl_select_sleep_state(wcd937x->rst_np);
  92. if (rc) {
  93. dev_err(dev, "%s: wcd sleep state request fail!\n",
  94. __func__);
  95. return rc;
  96. }
  97. /* 20ms sleep required after pulling the reset gpio to LOW */
  98. msleep(20);
  99. rc = msm_cdc_pinctrl_select_active_state(wcd937x->rst_np);
  100. if (rc) {
  101. dev_err(dev, "%s: wcd active state request fail!\n",
  102. __func__);
  103. return rc;
  104. }
  105. msleep(20);
  106. return rc;
  107. }
  108. struct wcd937x_pdata *wcd937x_populate_dt_data(struct device *dev)
  109. {
  110. struct wcd937x_pdata *pdata = NULL;
  111. pdata = devm_kzalloc(dev, sizeof(struct wcd937x_pdata),
  112. GFP_KERNEL);
  113. if (!pdata)
  114. return NULL;
  115. pdata->rst_np = of_parse_phandle(dev->of_node,
  116. "qcom,wcd937x-reset-node", 0);
  117. if (!pdata->rst_np) {
  118. dev_err(dev, "%s: Looking up %s property in node %s failed\n",
  119. __func__, "qcom,wcd937x-reset-node",
  120. dev->of_node->full_name);
  121. return NULL;
  122. }
  123. pdata->rx_slave = of_parse_phandle(dev->of_node, "qcom,rx-slave", 0);
  124. pdata->tx_slave = of_parse_phandle(dev->of_node, "qcom,tx-slave", 0);
  125. return pdata;
  126. }
  127. static int wcd937x_bind(struct device *dev)
  128. {
  129. int ret = 0;
  130. struct wcd937x_priv *wcd937x = NULL;
  131. struct wcd937x_pdata *pdata = NULL;
  132. wcd937x = devm_kzalloc(dev, sizeof(struct wcd937x_priv), GFP_KERNEL);
  133. if (!wcd937x)
  134. return -ENOMEM;
  135. dev_set_drvdata(dev, wcd937x);
  136. pdata = wcd937x_populate_dt_data(dev);
  137. if (!pdata) {
  138. dev_err(dev, "%s: Fail to obtain platform data\n", __func__);
  139. return -EINVAL;
  140. }
  141. wcd937x->rst_np = pdata->rst_np;
  142. wcd937x_reset(dev);
  143. /*
  144. * Add 5msec delay to provide sufficient time for
  145. * soundwire auto enumeration of slave devices as
  146. * as per HW requirement.
  147. */
  148. usleep_range(5000, 5010);
  149. ret = component_bind_all(dev, wcd937x);
  150. if (ret) {
  151. dev_err(dev, "%s: Slave bind failed, ret = %d\n",
  152. __func__, ret);
  153. return ret;
  154. }
  155. wcd937x->rx_swr_dev = get_matching_swr_slave_device(pdata->rx_slave);
  156. if (!wcd937x->rx_swr_dev) {
  157. dev_err(dev, "%s: Could not find RX swr slave device\n",
  158. __func__);
  159. ret = -ENODEV;
  160. goto err;
  161. }
  162. wcd937x->tx_swr_dev = get_matching_swr_slave_device(pdata->tx_slave);
  163. if (!wcd937x->tx_swr_dev) {
  164. dev_err(dev, "%s: Could not find TX swr slave device\n",
  165. __func__);
  166. ret = -ENODEV;
  167. goto err;
  168. }
  169. ret = snd_soc_register_codec(dev, &soc_codec_dev_wcd937x,
  170. NULL, 0);
  171. if (ret) {
  172. dev_err(dev, "%s: Codec registration failed\n",
  173. __func__);
  174. goto err;
  175. }
  176. return ret;
  177. err:
  178. component_unbind_all(dev, wcd937x);
  179. return ret;
  180. }
  181. static void wcd937x_unbind(struct device *dev)
  182. {
  183. struct wcd937x_priv *wcd937x = dev_get_drvdata(dev);
  184. snd_soc_unregister_codec(dev);
  185. component_unbind_all(dev, wcd937x);
  186. }
  187. static const struct of_device_id wcd937x_dt_match[] = {
  188. { .compatible = "qcom,wcd937x-codec" },
  189. {}
  190. };
  191. static const struct component_master_ops wcd937x_comp_ops = {
  192. .bind = wcd937x_bind,
  193. .unbind = wcd937x_unbind,
  194. };
  195. static int wcd937x_compare_of(struct device *dev, void *data)
  196. {
  197. return dev->of_node == data;
  198. }
  199. static void wcd937x_release_of(struct device *dev, void *data)
  200. {
  201. of_node_put(data);
  202. }
  203. static int wcd937x_add_slave_components(struct device *dev,
  204. struct component_match **matchptr)
  205. {
  206. struct device_node *np, *rx_node, *tx_node;
  207. np = dev->of_node;
  208. rx_node = of_parse_phandle(np, "qcom,rx-slave", 0);
  209. if (!rx_node) {
  210. dev_err(dev, "%s: Rx-slave node not defined\n", __func__);
  211. return -ENODEV;
  212. }
  213. of_node_get(rx_node);
  214. component_match_add_release(dev, matchptr,
  215. wcd937x_release_of,
  216. wcd937x_compare_of,
  217. rx_node);
  218. tx_node = of_parse_phandle(np, "qcom,tx-slave", 0);
  219. if (!tx_node) {
  220. dev_err(dev, "%s: Tx-slave node not defined\n", __func__);
  221. return -ENODEV;
  222. }
  223. of_node_get(tx_node);
  224. component_match_add_release(dev, matchptr,
  225. wcd937x_release_of,
  226. wcd937x_compare_of,
  227. tx_node);
  228. return 0;
  229. }
  230. static int wcd937x_probe(struct platform_device *pdev)
  231. {
  232. struct component_match *match = NULL;
  233. int ret;
  234. ret = wcd937x_add_slave_components(&pdev->dev, &match);
  235. if (ret)
  236. return ret;
  237. return component_master_add_with_match(&pdev->dev,
  238. &wcd937x_comp_ops, match);
  239. }
  240. static int wcd937x_remove(struct platform_device *pdev)
  241. {
  242. component_master_del(&pdev->dev, &wcd937x_comp_ops);
  243. return 0;
  244. }
  245. static struct platform_driver wcd937x_codec_driver = {
  246. .probe = wcd937x_probe,
  247. .remove = wcd937x_remove,
  248. .driver = {
  249. .name = "wcd937x_codec",
  250. .owner = THIS_MODULE,
  251. .of_match_table = of_match_ptr(wcd937x_dt_match),
  252. },
  253. };
  254. module_platform_driver(wcd937x_codec_driver);
  255. MODULE_DESCRIPTION("WCD937X Codec driver");
  256. MODULE_LICENSE("GPL v2");