bolero_cdc.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  1. /* Copyright (c) 2018, 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/of_platform.h>
  13. #include <linux/module.h>
  14. #include <linux/io.h>
  15. #include <linux/init.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/printk.h>
  18. #include <linux/delay.h>
  19. #include <linux/kernel.h>
  20. #include "bolero_cdc.h"
  21. #include "internal.h"
  22. static struct snd_soc_codec_driver bolero;
  23. static void bolero_ahb_write_device(char __iomem *io_base,
  24. u16 reg, u8 value)
  25. {
  26. u32 temp = (u32)(value) & 0x000000FF;
  27. iowrite32(temp, io_base + reg);
  28. }
  29. static void bolero_ahb_read_device(char __iomem *io_base,
  30. u16 reg, u8 *value)
  31. {
  32. u32 temp;
  33. temp = ioread32(io_base + reg);
  34. *value = (u8)temp;
  35. }
  36. static int __bolero_reg_read(struct bolero_priv *priv,
  37. u16 macro_id, u16 reg, u8 *val)
  38. {
  39. int ret = -EINVAL;
  40. if (!priv->macro_params[macro_id].mclk_fn) {
  41. dev_dbg_ratelimited(priv->dev,
  42. "%s: mclk_fn not init for macro-id-%d\n",
  43. __func__, macro_id);
  44. return ret;
  45. }
  46. ret = priv->macro_params[macro_id].mclk_fn(
  47. priv->macro_params[macro_id].dev, true);
  48. if (ret) {
  49. dev_dbg_ratelimited(priv->dev,
  50. "%s: clock enable failed\n", __func__);
  51. return ret;
  52. }
  53. bolero_ahb_read_device(
  54. priv->macro_params[macro_id].io_base, reg, val);
  55. priv->macro_params[macro_id].mclk_fn(
  56. priv->macro_params[macro_id].dev, false);
  57. return ret;
  58. }
  59. static int __bolero_reg_write(struct bolero_priv *priv,
  60. u16 macro_id, u16 reg, u8 val)
  61. {
  62. int ret = -EINVAL;
  63. if (!priv->macro_params[macro_id].mclk_fn) {
  64. dev_dbg_ratelimited(priv->dev,
  65. "%s: mclk_fn not init for macro-id-%d\n",
  66. __func__, macro_id);
  67. return ret;
  68. }
  69. ret = priv->macro_params[macro_id].mclk_fn(
  70. priv->macro_params[macro_id].dev, true);
  71. if (ret) {
  72. dev_dbg_ratelimited(priv->dev,
  73. "%s: clock enable failed\n", __func__);
  74. return ret;
  75. }
  76. bolero_ahb_write_device(
  77. priv->macro_params[macro_id].io_base, reg, val);
  78. priv->macro_params[macro_id].mclk_fn(
  79. priv->macro_params[macro_id].dev, false);
  80. return ret;
  81. }
  82. static bool bolero_is_valid_macro_dev(struct device *dev)
  83. {
  84. if (of_device_is_compatible(dev->parent->of_node, "qcom,bolero-codec"))
  85. return true;
  86. return false;
  87. }
  88. static bool bolero_is_valid_codec_dev(struct device *dev)
  89. {
  90. if (of_device_is_compatible(dev->of_node, "qcom,bolero-codec"))
  91. return true;
  92. return false;
  93. }
  94. /**
  95. * bolero_get_device_ptr - Get child or macro device ptr
  96. *
  97. * @dev: bolero device ptr.
  98. * @macro_id: ID of macro calling this API.
  99. *
  100. * Returns dev ptr on success or NULL on error.
  101. */
  102. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id)
  103. {
  104. struct bolero_priv *priv;
  105. if (!dev) {
  106. pr_err("%s: dev is null\n", __func__);
  107. return NULL;
  108. }
  109. if (!bolero_is_valid_codec_dev(dev)) {
  110. pr_err("%s: invalid codec\n", __func__);
  111. return NULL;
  112. }
  113. priv = dev_get_drvdata(dev);
  114. if (!priv || (macro_id >= MAX_MACRO)) {
  115. dev_err(dev, "%s: priv is null or invalid macro\n", __func__);
  116. return NULL;
  117. }
  118. return priv->macro_params[macro_id].dev;
  119. }
  120. EXPORT_SYMBOL(bolero_get_device_ptr);
  121. static int bolero_copy_dais_from_macro(struct bolero_priv *priv)
  122. {
  123. struct snd_soc_dai_driver *dai_ptr;
  124. u16 macro_idx;
  125. /* memcpy into bolero_dais all macro dais */
  126. if (!priv->bolero_dais)
  127. priv->bolero_dais = devm_kzalloc(priv->dev,
  128. priv->num_dais *
  129. sizeof(
  130. struct snd_soc_dai_driver),
  131. GFP_KERNEL);
  132. if (!priv->bolero_dais)
  133. return -ENOMEM;
  134. dai_ptr = priv->bolero_dais;
  135. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  136. if (priv->macro_params[macro_idx].dai_ptr) {
  137. memcpy(dai_ptr,
  138. priv->macro_params[macro_idx].dai_ptr,
  139. priv->macro_params[macro_idx].num_dais *
  140. sizeof(struct snd_soc_dai_driver));
  141. dai_ptr += priv->macro_params[macro_idx].num_dais;
  142. }
  143. }
  144. return 0;
  145. }
  146. /**
  147. * bolero_register_macro - Registers macro to bolero
  148. *
  149. * @dev: macro device ptr.
  150. * @macro_id: ID of macro calling this API.
  151. * @ops: macro params to register.
  152. *
  153. * Returns 0 on success or -EINVAL on error.
  154. */
  155. int bolero_register_macro(struct device *dev, u16 macro_id,
  156. struct macro_ops *ops)
  157. {
  158. struct bolero_priv *priv;
  159. int ret = -EINVAL;
  160. if (!dev || !ops) {
  161. pr_err("%s: dev or ops is null\n", __func__);
  162. return -EINVAL;
  163. }
  164. if (!bolero_is_valid_macro_dev(dev)) {
  165. dev_err(dev, "%s: child device for macro:%d not added yet\n",
  166. __func__, macro_id);
  167. return -EINVAL;
  168. }
  169. priv = dev_get_drvdata(dev->parent);
  170. if (!priv || (macro_id >= MAX_MACRO)) {
  171. dev_err(dev, "%s: priv is null or invalid macro\n", __func__);
  172. return -EINVAL;
  173. }
  174. priv->macro_params[macro_id].init = ops->init;
  175. priv->macro_params[macro_id].exit = ops->exit;
  176. priv->macro_params[macro_id].io_base = ops->io_base;
  177. priv->macro_params[macro_id].num_dais = ops->num_dais;
  178. priv->macro_params[macro_id].dai_ptr = ops->dai_ptr;
  179. priv->macro_params[macro_id].mclk_fn = ops->mclk_fn;
  180. priv->macro_params[macro_id].dev = dev;
  181. priv->num_dais += ops->num_dais;
  182. priv->num_macros_registered++;
  183. priv->macros_supported[macro_id] = true;
  184. if (priv->num_macros_registered == priv->child_num) {
  185. ret = bolero_copy_dais_from_macro(priv);
  186. if (ret < 0) {
  187. dev_err(dev, "%s: copy_dais failed\n", __func__);
  188. return ret;
  189. }
  190. ret = snd_soc_register_codec(dev->parent, &bolero,
  191. priv->bolero_dais, priv->num_dais);
  192. if (ret < 0) {
  193. dev_err(dev, "%s: register codec failed\n", __func__);
  194. return ret;
  195. }
  196. }
  197. return 0;
  198. }
  199. EXPORT_SYMBOL(bolero_register_macro);
  200. /**
  201. * bolero_unregister_macro - De-Register macro from bolero
  202. *
  203. * @dev: macro device ptr.
  204. * @macro_id: ID of macro calling this API.
  205. *
  206. */
  207. void bolero_unregister_macro(struct device *dev, u16 macro_id)
  208. {
  209. struct bolero_priv *priv;
  210. if (!dev) {
  211. pr_err("%s: dev is null\n", __func__);
  212. return;
  213. }
  214. if (!bolero_is_valid_macro_dev(dev)) {
  215. dev_err(dev, "%s: macro:%d not in valid registered macro-list\n",
  216. __func__, macro_id);
  217. return;
  218. }
  219. priv = dev_get_drvdata(dev->parent);
  220. if (!priv || (macro_id >= MAX_MACRO)) {
  221. dev_err(dev, "%s: priv is null or invalid macro\n", __func__);
  222. return;
  223. }
  224. priv->macro_params[macro_id].init = NULL;
  225. priv->macro_params[macro_id].num_dais = 0;
  226. priv->macro_params[macro_id].dai_ptr = NULL;
  227. priv->macro_params[macro_id].mclk_fn = NULL;
  228. priv->macro_params[macro_id].dev = NULL;
  229. priv->num_dais -= priv->macro_params[macro_id].num_dais;
  230. priv->num_macros_registered--;
  231. /* UNREGISTER CODEC HERE */
  232. if (priv->child_num - 1 == priv->num_macros_registered)
  233. snd_soc_unregister_codec(dev->parent);
  234. }
  235. EXPORT_SYMBOL(bolero_unregister_macro);
  236. static int bolero_soc_codec_probe(struct snd_soc_codec *codec)
  237. {
  238. struct bolero_priv *priv = dev_get_drvdata(codec->dev);
  239. int macro_idx, ret = 0;
  240. /* call init for supported macros */
  241. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  242. if (priv->macro_params[macro_idx].init) {
  243. ret = priv->macro_params[macro_idx].init(codec);
  244. if (ret < 0) {
  245. dev_err(codec->dev,
  246. "%s: init for macro %d failed\n",
  247. __func__, macro_idx);
  248. goto err;
  249. }
  250. }
  251. }
  252. priv->codec = codec;
  253. dev_dbg(codec->dev, "%s: bolero soc codec probe success\n", __func__);
  254. err:
  255. return ret;
  256. }
  257. static int bolero_soc_codec_remove(struct snd_soc_codec *codec)
  258. {
  259. struct bolero_priv *priv = dev_get_drvdata(codec->dev);
  260. int macro_idx;
  261. /* call exit for supported macros */
  262. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++)
  263. if (priv->macro_params[macro_idx].exit)
  264. priv->macro_params[macro_idx].exit(codec);
  265. return 0;
  266. }
  267. static struct regmap *bolero_get_regmap(struct device *dev)
  268. {
  269. struct bolero_priv *priv = dev_get_drvdata(dev);
  270. return priv->regmap;
  271. }
  272. static struct snd_soc_codec_driver bolero = {
  273. .probe = bolero_soc_codec_probe,
  274. .remove = bolero_soc_codec_remove,
  275. .get_regmap = bolero_get_regmap,
  276. };
  277. static void bolero_add_child_devices(struct work_struct *work)
  278. {
  279. struct bolero_priv *priv;
  280. struct platform_device *pdev;
  281. struct device_node *node;
  282. int ret, i, cnt = 0;
  283. priv = container_of(work, struct bolero_priv,
  284. bolero_add_child_devices_work);
  285. if (!priv) {
  286. pr_err("%s: Memory for bolero priv does not exist\n",
  287. __func__);
  288. return;
  289. }
  290. if (!priv->dev->of_node) {
  291. dev_err(priv->dev, "%s: DT node for bolero does not exist\n",
  292. __func__);
  293. return;
  294. }
  295. for_each_child_of_node(priv->dev->of_node, node) {
  296. pdev = platform_device_alloc(node->name, -1);
  297. if (!pdev) {
  298. dev_err(priv->dev, "%s: pdev memory alloc failed\n",
  299. __func__);
  300. ret = -ENOMEM;
  301. goto fail_pdev_add;
  302. }
  303. pdev->dev.parent = priv->dev;
  304. pdev->dev.of_node = node;
  305. ret = platform_device_add(pdev);
  306. if (ret) {
  307. dev_err(priv->dev,
  308. "%s: Cannot add platform device\n",
  309. __func__);
  310. goto fail_pdev_add;
  311. }
  312. priv->pdev_child_devices[cnt] = pdev;
  313. cnt++;
  314. }
  315. return;
  316. fail_pdev_add:
  317. for (i = cnt; i > 0; i--)
  318. platform_device_put(priv->pdev_child_devices[i - 1]);
  319. err:
  320. return;
  321. }
  322. static int bolero_probe(struct platform_device *pdev)
  323. {
  324. struct bolero_priv *priv;
  325. u32 num_macros = 0;
  326. int ret;
  327. priv = devm_kzalloc(&pdev->dev, sizeof(struct bolero_priv),
  328. GFP_KERNEL);
  329. if (!priv)
  330. return -ENOMEM;
  331. ret = of_property_read_u32(pdev->dev.of_node, "qcom,num-macros",
  332. &num_macros);
  333. if (ret) {
  334. dev_err(&pdev->dev,
  335. "%s:num-macros property not found\n",
  336. __func__);
  337. return ret;
  338. }
  339. priv->child_num = num_macros;
  340. if (priv->child_num > MAX_MACRO) {
  341. dev_err(&pdev->dev,
  342. "%s:child_num(%d) > MAX_MACRO(%d) than supported\n",
  343. __func__, priv->child_num, MAX_MACRO);
  344. return -EINVAL;
  345. }
  346. priv->va_without_decimation = of_property_read_bool(pdev->dev.of_node,
  347. "qcom,va-without-decimation");
  348. if (priv->va_without_decimation)
  349. bolero_reg_access[VA_MACRO] = bolero_va_top_reg_access;
  350. priv->dev = &pdev->dev;
  351. priv->regmap = bolero_regmap_init(priv->dev,
  352. &bolero_regmap_config);
  353. if (IS_ERR_OR_NULL((void *)(priv->regmap))) {
  354. dev_err(&pdev->dev, "%s:regmap init failed\n", __func__);
  355. return -EINVAL;
  356. }
  357. priv->read_dev = __bolero_reg_read;
  358. priv->write_dev = __bolero_reg_write;
  359. dev_set_drvdata(&pdev->dev, priv);
  360. mutex_init(&priv->io_lock);
  361. INIT_WORK(&priv->bolero_add_child_devices_work,
  362. bolero_add_child_devices);
  363. schedule_work(&priv->bolero_add_child_devices_work);
  364. return 0;
  365. }
  366. static int bolero_remove(struct platform_device *pdev)
  367. {
  368. struct bolero_priv *priv = dev_get_drvdata(&pdev->dev);
  369. u16 i;
  370. for (i = priv->child_num; i > 0; i--)
  371. platform_device_unregister(priv->pdev_child_devices[i - 1]);
  372. mutex_destroy(&priv->io_lock);
  373. return 0;
  374. }
  375. static const struct of_device_id bolero_dt_match[] = {
  376. {.compatible = "qcom,bolero-codec"},
  377. {}
  378. };
  379. MODULE_DEVICE_TABLE(of, bolero_dt_match);
  380. static struct platform_driver bolero_drv = {
  381. .driver = {
  382. .name = "bolero-codec",
  383. .owner = THIS_MODULE,
  384. .of_match_table = bolero_dt_match,
  385. },
  386. .probe = bolero_probe,
  387. .remove = bolero_remove,
  388. };
  389. module_platform_driver(bolero_drv);
  390. MODULE_DESCRIPTION("Bolero driver");
  391. MODULE_LICENSE("GPL v2");