bolero-cdc.c 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/of_platform.h>
  5. #include <linux/module.h>
  6. #include <linux/io.h>
  7. #include <linux/init.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/printk.h>
  10. #include <linux/delay.h>
  11. #include <linux/kernel.h>
  12. #include <linux/clk.h>
  13. #include <soc/snd_event.h>
  14. #include <linux/pm_runtime.h>
  15. #include <soc/swr-common.h>
  16. #include "bolero-cdc.h"
  17. #include "internal.h"
  18. #include "bolero-clk-rsc.h"
  19. #define DRV_NAME "bolero_codec"
  20. #define BOLERO_VERSION_ENTRY_SIZE 32
  21. #define BOLERO_CDC_STRING_LEN 80
  22. static const struct snd_soc_component_driver bolero;
  23. /* pm runtime auto suspend timer in msecs */
  24. #define BOLERO_AUTO_SUSPEND_DELAY 100 /* delay in msec */
  25. /* MCLK_MUX table for all macros */
  26. static u16 bolero_mclk_mux_tbl[MAX_MACRO][MCLK_MUX_MAX] = {
  27. {TX_MACRO, VA_MACRO},
  28. {TX_MACRO, RX_MACRO},
  29. {TX_MACRO, WSA_MACRO},
  30. {TX_MACRO, VA_MACRO},
  31. };
  32. static bool bolero_is_valid_codec_dev(struct device *dev);
  33. int bolero_set_port_map(struct snd_soc_component *component,
  34. u32 size, void *data)
  35. {
  36. struct bolero_priv *priv = NULL;
  37. struct swr_mstr_port_map *map = NULL;
  38. u16 idx;
  39. if (!component || (size == 0) || !data)
  40. return -EINVAL;
  41. priv = snd_soc_component_get_drvdata(component);
  42. if (!priv)
  43. return -EINVAL;
  44. if (!bolero_is_valid_codec_dev(priv->dev)) {
  45. dev_err(priv->dev, "%s: invalid codec\n", __func__);
  46. return -EINVAL;
  47. }
  48. map = (struct swr_mstr_port_map *)data;
  49. for (idx = 0; idx < size; idx++) {
  50. if (priv->macro_params[map->id].set_port_map)
  51. priv->macro_params[map->id].set_port_map(component,
  52. map->uc,
  53. SWR_MSTR_PORT_LEN,
  54. map->swr_port_params);
  55. map += 1;
  56. }
  57. return 0;
  58. }
  59. EXPORT_SYMBOL(bolero_set_port_map);
  60. static void bolero_ahb_write_device(char __iomem *io_base,
  61. u16 reg, u8 value)
  62. {
  63. u32 temp = (u32)(value) & 0x000000FF;
  64. iowrite32(temp, io_base + reg);
  65. }
  66. static void bolero_ahb_read_device(char __iomem *io_base,
  67. u16 reg, u8 *value)
  68. {
  69. u32 temp;
  70. temp = ioread32(io_base + reg);
  71. *value = (u8)temp;
  72. }
  73. static int __bolero_reg_read(struct bolero_priv *priv,
  74. u16 macro_id, u16 reg, u8 *val)
  75. {
  76. int ret = 0;
  77. mutex_lock(&priv->clk_lock);
  78. if (!priv->dev_up) {
  79. dev_dbg_ratelimited(priv->dev,
  80. "%s: SSR in progress, exit\n", __func__);
  81. ret = -EINVAL;
  82. goto ssr_err;
  83. }
  84. if (priv->macro_params[VA_MACRO].dev)
  85. pm_runtime_get_sync(priv->macro_params[VA_MACRO].dev);
  86. if (priv->version < BOLERO_VERSION_2_0) {
  87. /* Request Clk before register access */
  88. ret = bolero_clk_rsc_request_clock(priv->macro_params[macro_id].dev,
  89. priv->macro_params[macro_id].default_clk_id,
  90. priv->macro_params[macro_id].clk_id_req,
  91. true);
  92. if (ret < 0) {
  93. dev_err_ratelimited(priv->dev,
  94. "%s: Failed to enable clock, ret:%d\n",
  95. __func__, ret);
  96. goto err;
  97. }
  98. }
  99. bolero_ahb_read_device(
  100. priv->macro_params[macro_id].io_base, reg, val);
  101. if (priv->version < BOLERO_VERSION_2_0)
  102. bolero_clk_rsc_request_clock(priv->macro_params[macro_id].dev,
  103. priv->macro_params[macro_id].default_clk_id,
  104. priv->macro_params[macro_id].clk_id_req,
  105. false);
  106. err:
  107. if (priv->macro_params[VA_MACRO].dev) {
  108. pm_runtime_mark_last_busy(priv->macro_params[VA_MACRO].dev);
  109. pm_runtime_put_autosuspend(priv->macro_params[VA_MACRO].dev);
  110. }
  111. ssr_err:
  112. mutex_unlock(&priv->clk_lock);
  113. return ret;
  114. }
  115. static int __bolero_reg_write(struct bolero_priv *priv,
  116. u16 macro_id, u16 reg, u8 val)
  117. {
  118. int ret = 0;
  119. mutex_lock(&priv->clk_lock);
  120. if (!priv->dev_up) {
  121. dev_dbg_ratelimited(priv->dev,
  122. "%s: SSR in progress, exit\n", __func__);
  123. ret = -EINVAL;
  124. goto ssr_err;
  125. }
  126. if (priv->macro_params[VA_MACRO].dev)
  127. pm_runtime_get_sync(priv->macro_params[VA_MACRO].dev);
  128. if (priv->version < BOLERO_VERSION_2_0) {
  129. /* Request Clk before register access */
  130. ret = bolero_clk_rsc_request_clock(priv->macro_params[macro_id].dev,
  131. priv->macro_params[macro_id].default_clk_id,
  132. priv->macro_params[macro_id].clk_id_req,
  133. true);
  134. if (ret < 0) {
  135. dev_err_ratelimited(priv->dev,
  136. "%s: Failed to enable clock, ret:%d\n",
  137. __func__, ret);
  138. goto err;
  139. }
  140. }
  141. bolero_ahb_write_device(
  142. priv->macro_params[macro_id].io_base, reg, val);
  143. if (priv->version < BOLERO_VERSION_2_0)
  144. bolero_clk_rsc_request_clock(priv->macro_params[macro_id].dev,
  145. priv->macro_params[macro_id].default_clk_id,
  146. priv->macro_params[macro_id].clk_id_req,
  147. false);
  148. err:
  149. if (priv->macro_params[VA_MACRO].dev) {
  150. pm_runtime_mark_last_busy(priv->macro_params[VA_MACRO].dev);
  151. pm_runtime_put_autosuspend(priv->macro_params[VA_MACRO].dev);
  152. }
  153. ssr_err:
  154. mutex_unlock(&priv->clk_lock);
  155. return ret;
  156. }
  157. static int bolero_cdc_update_wcd_event(void *handle, u16 event, u32 data)
  158. {
  159. struct bolero_priv *priv = (struct bolero_priv *)handle;
  160. if (!priv) {
  161. pr_err("%s:Invalid bolero priv handle\n", __func__);
  162. return -EINVAL;
  163. }
  164. switch (event) {
  165. case WCD_BOLERO_EVT_RX_MUTE:
  166. if (priv->macro_params[RX_MACRO].event_handler)
  167. priv->macro_params[RX_MACRO].event_handler(
  168. priv->component,
  169. BOLERO_MACRO_EVT_RX_MUTE, data);
  170. break;
  171. case WCD_BOLERO_EVT_IMPED_TRUE:
  172. if (priv->macro_params[RX_MACRO].event_handler)
  173. priv->macro_params[RX_MACRO].event_handler(
  174. priv->component,
  175. BOLERO_MACRO_EVT_IMPED_TRUE, data);
  176. break;
  177. case WCD_BOLERO_EVT_IMPED_FALSE:
  178. if (priv->macro_params[RX_MACRO].event_handler)
  179. priv->macro_params[RX_MACRO].event_handler(
  180. priv->component,
  181. BOLERO_MACRO_EVT_IMPED_FALSE, data);
  182. break;
  183. case WCD_BOLERO_EVT_RX_COMPANDER_SOFT_RST:
  184. if (priv->macro_params[RX_MACRO].event_handler)
  185. priv->macro_params[RX_MACRO].event_handler(
  186. priv->component,
  187. BOLERO_MACRO_EVT_RX_COMPANDER_SOFT_RST, data);
  188. break;
  189. case WCD_BOLERO_EVT_BCS_CLK_OFF:
  190. if (priv->macro_params[TX_MACRO].event_handler)
  191. priv->macro_params[TX_MACRO].event_handler(
  192. priv->component,
  193. BOLERO_MACRO_EVT_BCS_CLK_OFF, data);
  194. break;
  195. default:
  196. dev_err(priv->dev, "%s: Invalid event %d trigger from wcd\n",
  197. __func__, event);
  198. return -EINVAL;
  199. }
  200. return 0;
  201. }
  202. static int bolero_cdc_register_notifier(void *handle,
  203. struct notifier_block *nblock,
  204. bool enable)
  205. {
  206. struct bolero_priv *priv = (struct bolero_priv *)handle;
  207. if (!priv) {
  208. pr_err("%s: bolero priv is null\n", __func__);
  209. return -EINVAL;
  210. }
  211. if (enable)
  212. return blocking_notifier_chain_register(&priv->notifier,
  213. nblock);
  214. return blocking_notifier_chain_unregister(&priv->notifier,
  215. nblock);
  216. }
  217. static void bolero_cdc_notifier_call(struct bolero_priv *priv,
  218. u32 data)
  219. {
  220. dev_dbg(priv->dev, "%s: notifier call, data:%d\n", __func__, data);
  221. blocking_notifier_call_chain(&priv->notifier,
  222. data, (void *)priv->wcd_dev);
  223. }
  224. static bool bolero_is_valid_child_dev(struct device *dev)
  225. {
  226. if (of_device_is_compatible(dev->parent->of_node, "qcom,bolero-codec"))
  227. return true;
  228. return false;
  229. }
  230. static bool bolero_is_valid_codec_dev(struct device *dev)
  231. {
  232. if (of_device_is_compatible(dev->of_node, "qcom,bolero-codec"))
  233. return true;
  234. return false;
  235. }
  236. /**
  237. * bolero_clear_amic_tx_hold - clears AMIC register on analog codec
  238. *
  239. * @dev: bolero device ptr.
  240. *
  241. */
  242. void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n)
  243. {
  244. struct bolero_priv *priv;
  245. u16 event;
  246. u16 amic = 0;
  247. if (!dev) {
  248. pr_err("%s: dev is null\n", __func__);
  249. return;
  250. }
  251. if (!bolero_is_valid_codec_dev(dev)) {
  252. pr_err("%s: invalid codec\n", __func__);
  253. return;
  254. }
  255. priv = dev_get_drvdata(dev);
  256. if (!priv) {
  257. dev_err(dev, "%s: priv is null\n", __func__);
  258. return;
  259. }
  260. event = BOLERO_WCD_EVT_TX_CH_HOLD_CLEAR;
  261. if (adc_n == BOLERO_ADC0)
  262. amic = 0x1;
  263. else if (adc_n == BOLERO_ADC1)
  264. amic = 0x2;
  265. else if (adc_n == BOLERO_ADC2)
  266. amic = 0x2;
  267. else if (adc_n == BOLERO_ADC3)
  268. amic = 0x3;
  269. else
  270. return;
  271. bolero_cdc_notifier_call(priv, (amic << 0x10 | event));
  272. }
  273. EXPORT_SYMBOL(bolero_clear_amic_tx_hold);
  274. /**
  275. * bolero_get_device_ptr - Get child or macro device ptr
  276. *
  277. * @dev: bolero device ptr.
  278. * @macro_id: ID of macro calling this API.
  279. *
  280. * Returns dev ptr on success or NULL on error.
  281. */
  282. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id)
  283. {
  284. struct bolero_priv *priv;
  285. if (!dev) {
  286. pr_err("%s: dev is null\n", __func__);
  287. return NULL;
  288. }
  289. if (!bolero_is_valid_codec_dev(dev)) {
  290. pr_err("%s: invalid codec\n", __func__);
  291. return NULL;
  292. }
  293. priv = dev_get_drvdata(dev);
  294. if (!priv || (macro_id >= MAX_MACRO)) {
  295. dev_err(dev, "%s: priv is null or invalid macro\n", __func__);
  296. return NULL;
  297. }
  298. return priv->macro_params[macro_id].dev;
  299. }
  300. EXPORT_SYMBOL(bolero_get_device_ptr);
  301. /**
  302. * bolero_get_rsc_clk_device_ptr - Get rsc clk device ptr
  303. *
  304. * @dev: bolero device ptr.
  305. *
  306. * Returns dev ptr on success or NULL on error.
  307. */
  308. struct device *bolero_get_rsc_clk_device_ptr(struct device *dev)
  309. {
  310. struct bolero_priv *priv;
  311. if (!dev) {
  312. pr_err("%s: dev is null\n", __func__);
  313. return NULL;
  314. }
  315. if (!bolero_is_valid_codec_dev(dev)) {
  316. pr_err("%s: invalid codec\n", __func__);
  317. return NULL;
  318. }
  319. priv = dev_get_drvdata(dev);
  320. if (!priv) {
  321. dev_err(dev, "%s: priv is null\n", __func__);
  322. return NULL;
  323. }
  324. return priv->clk_dev;
  325. }
  326. EXPORT_SYMBOL(bolero_get_rsc_clk_device_ptr);
  327. static int bolero_copy_dais_from_macro(struct bolero_priv *priv)
  328. {
  329. struct snd_soc_dai_driver *dai_ptr;
  330. u16 macro_idx;
  331. /* memcpy into bolero_dais all macro dais */
  332. if (!priv->bolero_dais)
  333. priv->bolero_dais = devm_kzalloc(priv->dev,
  334. priv->num_dais *
  335. sizeof(
  336. struct snd_soc_dai_driver),
  337. GFP_KERNEL);
  338. if (!priv->bolero_dais)
  339. return -ENOMEM;
  340. dai_ptr = priv->bolero_dais;
  341. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  342. if (priv->macro_params[macro_idx].dai_ptr) {
  343. memcpy(dai_ptr,
  344. priv->macro_params[macro_idx].dai_ptr,
  345. priv->macro_params[macro_idx].num_dais *
  346. sizeof(struct snd_soc_dai_driver));
  347. dai_ptr += priv->macro_params[macro_idx].num_dais;
  348. }
  349. }
  350. return 0;
  351. }
  352. /**
  353. * bolero_register_res_clk - Registers rsc clk driver to bolero
  354. *
  355. * @dev: rsc clk device ptr.
  356. * @rsc_clk_cb: event handler callback for notifications like SSR
  357. *
  358. * Returns 0 on success or -EINVAL on error.
  359. */
  360. int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t rsc_clk_cb)
  361. {
  362. struct bolero_priv *priv;
  363. if (!dev || !rsc_clk_cb) {
  364. pr_err("%s: dev or rsc_clk_cb is null\n", __func__);
  365. return -EINVAL;
  366. }
  367. if (!bolero_is_valid_child_dev(dev)) {
  368. dev_err(dev, "%s: child device :%pK not added yet\n",
  369. __func__, dev);
  370. return -EINVAL;
  371. }
  372. priv = dev_get_drvdata(dev->parent);
  373. if (!priv) {
  374. dev_err(dev, "%s: priv is null\n", __func__);
  375. return -EINVAL;
  376. }
  377. priv->clk_dev = dev;
  378. priv->rsc_clk_cb = rsc_clk_cb;
  379. return 0;
  380. }
  381. EXPORT_SYMBOL(bolero_register_res_clk);
  382. /**
  383. * bolero_unregister_res_clk - Unregisters rsc clk driver from bolero
  384. *
  385. * @dev: resource clk device ptr.
  386. */
  387. void bolero_unregister_res_clk(struct device *dev)
  388. {
  389. struct bolero_priv *priv;
  390. if (!dev) {
  391. pr_err("%s: dev is NULL\n", __func__);
  392. return;
  393. }
  394. if (!bolero_is_valid_child_dev(dev)) {
  395. dev_err(dev, "%s: child device :%pK not added\n",
  396. __func__, dev);
  397. return;
  398. }
  399. priv = dev_get_drvdata(dev->parent);
  400. if (!priv) {
  401. dev_err(dev, "%s: priv is null\n", __func__);
  402. return;
  403. }
  404. priv->clk_dev = NULL;
  405. priv->rsc_clk_cb = NULL;
  406. }
  407. EXPORT_SYMBOL(bolero_unregister_res_clk);
  408. /**
  409. * bolero_register_macro - Registers macro to bolero
  410. *
  411. * @dev: macro device ptr.
  412. * @macro_id: ID of macro calling this API.
  413. * @ops: macro params to register.
  414. *
  415. * Returns 0 on success or -EINVAL on error.
  416. */
  417. int bolero_register_macro(struct device *dev, u16 macro_id,
  418. struct macro_ops *ops)
  419. {
  420. struct bolero_priv *priv;
  421. int ret = -EINVAL;
  422. if (!dev || !ops) {
  423. pr_err("%s: dev or ops is null\n", __func__);
  424. return -EINVAL;
  425. }
  426. if (!bolero_is_valid_child_dev(dev)) {
  427. dev_err(dev, "%s: child device for macro:%d not added yet\n",
  428. __func__, macro_id);
  429. return -EINVAL;
  430. }
  431. priv = dev_get_drvdata(dev->parent);
  432. if (!priv || (macro_id >= MAX_MACRO)) {
  433. dev_err(dev, "%s: priv is null or invalid macro\n", __func__);
  434. return -EINVAL;
  435. }
  436. priv->macro_params[macro_id].clk_id_req = ops->clk_id_req;
  437. priv->macro_params[macro_id].default_clk_id = ops->default_clk_id;
  438. priv->macro_params[macro_id].init = ops->init;
  439. priv->macro_params[macro_id].exit = ops->exit;
  440. priv->macro_params[macro_id].io_base = ops->io_base;
  441. priv->macro_params[macro_id].num_dais = ops->num_dais;
  442. priv->macro_params[macro_id].dai_ptr = ops->dai_ptr;
  443. priv->macro_params[macro_id].event_handler = ops->event_handler;
  444. priv->macro_params[macro_id].set_port_map = ops->set_port_map;
  445. priv->macro_params[macro_id].dev = dev;
  446. priv->current_mclk_mux_macro[macro_id] =
  447. bolero_mclk_mux_tbl[macro_id][MCLK_MUX0];
  448. if (macro_id == TX_MACRO) {
  449. priv->macro_params[macro_id].reg_wake_irq = ops->reg_wake_irq;
  450. priv->macro_params[macro_id].clk_switch = ops->clk_switch;
  451. priv->macro_params[macro_id].reg_evt_listener =
  452. ops->reg_evt_listener;
  453. }
  454. if (priv->version == BOLERO_VERSION_2_1) {
  455. if (macro_id == VA_MACRO)
  456. priv->macro_params[macro_id].reg_wake_irq =
  457. ops->reg_wake_irq;
  458. }
  459. priv->num_dais += ops->num_dais;
  460. priv->num_macros_registered++;
  461. priv->macros_supported[macro_id] = true;
  462. dev_dbg(dev, "%s: register macro successful:%d\n", macro_id);
  463. if (priv->num_macros_registered == priv->num_macros) {
  464. ret = bolero_copy_dais_from_macro(priv);
  465. if (ret < 0) {
  466. dev_err(dev, "%s: copy_dais failed\n", __func__);
  467. return ret;
  468. }
  469. if (priv->macros_supported[TX_MACRO] == false) {
  470. bolero_mclk_mux_tbl[WSA_MACRO][MCLK_MUX0] = WSA_MACRO;
  471. priv->current_mclk_mux_macro[WSA_MACRO] = WSA_MACRO;
  472. bolero_mclk_mux_tbl[VA_MACRO][MCLK_MUX0] = VA_MACRO;
  473. priv->current_mclk_mux_macro[VA_MACRO] = VA_MACRO;
  474. }
  475. ret = snd_soc_register_component(dev->parent, &bolero,
  476. priv->bolero_dais, priv->num_dais);
  477. if (ret < 0) {
  478. dev_err(dev, "%s: register codec failed\n", __func__);
  479. return ret;
  480. }
  481. }
  482. return 0;
  483. }
  484. EXPORT_SYMBOL(bolero_register_macro);
  485. /**
  486. * bolero_unregister_macro - De-Register macro from bolero
  487. *
  488. * @dev: macro device ptr.
  489. * @macro_id: ID of macro calling this API.
  490. *
  491. */
  492. void bolero_unregister_macro(struct device *dev, u16 macro_id)
  493. {
  494. struct bolero_priv *priv;
  495. if (!dev) {
  496. pr_err("%s: dev is null\n", __func__);
  497. return;
  498. }
  499. if (!bolero_is_valid_child_dev(dev)) {
  500. dev_err(dev, "%s: macro:%d not in valid registered macro-list\n",
  501. __func__, macro_id);
  502. return;
  503. }
  504. priv = dev_get_drvdata(dev->parent);
  505. if (!priv || (macro_id >= MAX_MACRO)) {
  506. dev_err(dev, "%s: priv is null or invalid macro\n", __func__);
  507. return;
  508. }
  509. priv->macro_params[macro_id].init = NULL;
  510. priv->macro_params[macro_id].num_dais = 0;
  511. priv->macro_params[macro_id].dai_ptr = NULL;
  512. priv->macro_params[macro_id].event_handler = NULL;
  513. priv->macro_params[macro_id].dev = NULL;
  514. if (macro_id == TX_MACRO) {
  515. priv->macro_params[macro_id].reg_wake_irq = NULL;
  516. priv->macro_params[macro_id].clk_switch = NULL;
  517. priv->macro_params[macro_id].reg_evt_listener = NULL;
  518. }
  519. priv->num_dais -= priv->macro_params[macro_id].num_dais;
  520. priv->num_macros_registered--;
  521. /* UNREGISTER CODEC HERE */
  522. if (priv->num_macros - 1 == priv->num_macros_registered)
  523. snd_soc_unregister_component(dev->parent);
  524. }
  525. EXPORT_SYMBOL(bolero_unregister_macro);
  526. void bolero_wsa_pa_on(struct device *dev)
  527. {
  528. struct bolero_priv *priv;
  529. if (!dev) {
  530. pr_err("%s: dev is null\n", __func__);
  531. return;
  532. }
  533. if (!bolero_is_valid_child_dev(dev)) {
  534. dev_err(dev, "%s: not a valid child dev\n",
  535. __func__);
  536. return;
  537. }
  538. priv = dev_get_drvdata(dev->parent);
  539. if (!priv) {
  540. dev_err(dev, "%s: priv is null\n", __func__);
  541. return;
  542. }
  543. bolero_cdc_notifier_call(priv, BOLERO_WCD_EVT_PA_ON_POST_FSCLK);
  544. }
  545. EXPORT_SYMBOL(bolero_wsa_pa_on);
  546. int bolero_get_version(struct device *dev)
  547. {
  548. struct bolero_priv *priv;
  549. if (!dev) {
  550. pr_err("%s: dev is null\n", __func__);
  551. return -EINVAL;
  552. }
  553. if (!bolero_is_valid_child_dev(dev)) {
  554. dev_err(dev, "%s: child device for macro not added yet\n",
  555. __func__);
  556. return -EINVAL;
  557. }
  558. priv = dev_get_drvdata(dev->parent);
  559. if (!priv) {
  560. dev_err(dev, "%s: priv is null\n", __func__);
  561. return -EINVAL;
  562. }
  563. return priv->version;
  564. }
  565. EXPORT_SYMBOL(bolero_get_version);
  566. static ssize_t bolero_version_read(struct snd_info_entry *entry,
  567. void *file_private_data,
  568. struct file *file,
  569. char __user *buf, size_t count,
  570. loff_t pos)
  571. {
  572. struct bolero_priv *priv;
  573. char buffer[BOLERO_VERSION_ENTRY_SIZE];
  574. int len = 0;
  575. priv = (struct bolero_priv *) entry->private_data;
  576. if (!priv) {
  577. pr_err("%s: bolero priv is null\n", __func__);
  578. return -EINVAL;
  579. }
  580. switch (priv->version) {
  581. case BOLERO_VERSION_1_0:
  582. len = snprintf(buffer, sizeof(buffer), "BOLERO_1_0\n");
  583. break;
  584. case BOLERO_VERSION_1_1:
  585. len = snprintf(buffer, sizeof(buffer), "BOLERO_1_1\n");
  586. break;
  587. case BOLERO_VERSION_1_2:
  588. len = snprintf(buffer, sizeof(buffer), "BOLERO_1_2\n");
  589. break;
  590. case BOLERO_VERSION_2_1:
  591. len = snprintf(buffer, sizeof(buffer), "BOLERO_2_1\n");
  592. break;
  593. default:
  594. len = snprintf(buffer, sizeof(buffer), "VER_UNDEFINED\n");
  595. }
  596. return simple_read_from_buffer(buf, count, &pos, buffer, len);
  597. }
  598. static int bolero_ssr_enable(struct device *dev, void *data)
  599. {
  600. struct bolero_priv *priv = data;
  601. int macro_idx;
  602. if (priv->initial_boot) {
  603. priv->initial_boot = false;
  604. return 0;
  605. }
  606. if (priv->rsc_clk_cb)
  607. priv->rsc_clk_cb(priv->clk_dev, BOLERO_MACRO_EVT_SSR_UP);
  608. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  609. if (priv->macro_params[macro_idx].event_handler)
  610. priv->macro_params[macro_idx].event_handler(
  611. priv->component,
  612. BOLERO_MACRO_EVT_CLK_RESET, 0x0);
  613. }
  614. regcache_cache_only(priv->regmap, false);
  615. mutex_lock(&priv->clk_lock);
  616. priv->dev_up = true;
  617. mutex_unlock(&priv->clk_lock);
  618. regcache_mark_dirty(priv->regmap);
  619. bolero_clk_rsc_enable_all_clocks(priv->clk_dev, true);
  620. regcache_sync(priv->regmap);
  621. /* Add a 100usec sleep to ensure last register write is done */
  622. usleep_range(100,110);
  623. bolero_clk_rsc_enable_all_clocks(priv->clk_dev, false);
  624. /* call ssr event for supported macros */
  625. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  626. if (!priv->macro_params[macro_idx].event_handler)
  627. continue;
  628. priv->macro_params[macro_idx].event_handler(
  629. priv->component,
  630. BOLERO_MACRO_EVT_SSR_UP, 0x0);
  631. }
  632. bolero_cdc_notifier_call(priv, BOLERO_WCD_EVT_SSR_UP);
  633. return 0;
  634. }
  635. static void bolero_ssr_disable(struct device *dev, void *data)
  636. {
  637. struct bolero_priv *priv = data;
  638. int macro_idx;
  639. if (!priv->dev_up) {
  640. dev_err_ratelimited(priv->dev,
  641. "%s: already disabled\n", __func__);
  642. return;
  643. }
  644. bolero_cdc_notifier_call(priv, BOLERO_WCD_EVT_PA_OFF_PRE_SSR);
  645. regcache_cache_only(priv->regmap, true);
  646. mutex_lock(&priv->clk_lock);
  647. priv->dev_up = false;
  648. mutex_unlock(&priv->clk_lock);
  649. if (priv->rsc_clk_cb)
  650. priv->rsc_clk_cb(priv->clk_dev, BOLERO_MACRO_EVT_SSR_DOWN);
  651. /* call ssr event for supported macros */
  652. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  653. if (!priv->macro_params[macro_idx].event_handler)
  654. continue;
  655. priv->macro_params[macro_idx].event_handler(
  656. priv->component,
  657. BOLERO_MACRO_EVT_SSR_DOWN, 0x0);
  658. }
  659. bolero_cdc_notifier_call(priv, BOLERO_WCD_EVT_SSR_DOWN);
  660. }
  661. static struct snd_info_entry_ops bolero_info_ops = {
  662. .read = bolero_version_read,
  663. };
  664. static const struct snd_event_ops bolero_ssr_ops = {
  665. .enable = bolero_ssr_enable,
  666. .disable = bolero_ssr_disable,
  667. };
  668. /*
  669. * bolero_info_create_codec_entry - creates bolero module
  670. * @codec_root: The parent directory
  671. * @component: Codec component instance
  672. *
  673. * Creates bolero module and version entry under the given
  674. * parent directory.
  675. *
  676. * Return: 0 on success or negative error code on failure.
  677. */
  678. int bolero_info_create_codec_entry(struct snd_info_entry *codec_root,
  679. struct snd_soc_component *component)
  680. {
  681. struct snd_info_entry *version_entry;
  682. struct bolero_priv *priv;
  683. struct snd_soc_card *card;
  684. if (!codec_root || !component)
  685. return -EINVAL;
  686. priv = snd_soc_component_get_drvdata(component);
  687. if (priv->entry) {
  688. dev_dbg(priv->dev,
  689. "%s:bolero module already created\n", __func__);
  690. return 0;
  691. }
  692. card = component->card;
  693. priv->entry = snd_info_create_module_entry(codec_root->module,
  694. "bolero", codec_root);
  695. if (!priv->entry) {
  696. dev_dbg(component->dev, "%s: failed to create bolero entry\n",
  697. __func__);
  698. return -ENOMEM;
  699. }
  700. priv->entry->mode = S_IFDIR | 0555;
  701. if (snd_info_register(priv->entry) < 0) {
  702. snd_info_free_entry(priv->entry);
  703. return -ENOMEM;
  704. }
  705. version_entry = snd_info_create_card_entry(card->snd_card,
  706. "version",
  707. priv->entry);
  708. if (!version_entry) {
  709. dev_err(component->dev, "%s: failed to create bolero version entry\n",
  710. __func__);
  711. snd_info_free_entry(priv->entry);
  712. return -ENOMEM;
  713. }
  714. version_entry->private_data = priv;
  715. version_entry->size = BOLERO_VERSION_ENTRY_SIZE;
  716. version_entry->content = SNDRV_INFO_CONTENT_DATA;
  717. version_entry->c.ops = &bolero_info_ops;
  718. if (snd_info_register(version_entry) < 0) {
  719. snd_info_free_entry(version_entry);
  720. snd_info_free_entry(priv->entry);
  721. return -ENOMEM;
  722. }
  723. priv->version_entry = version_entry;
  724. return 0;
  725. }
  726. EXPORT_SYMBOL(bolero_info_create_codec_entry);
  727. /**
  728. * bolero_register_wake_irq - Register wake irq of Tx macro
  729. *
  730. * @component: codec component ptr.
  731. * @ipc_wakeup: bool to identify ipc_wakeup to be used or HW interrupt line.
  732. *
  733. * Return: 0 on success or negative error code on failure.
  734. */
  735. int bolero_register_wake_irq(struct snd_soc_component *component,
  736. u32 ipc_wakeup)
  737. {
  738. struct bolero_priv *priv = NULL;
  739. if (!component)
  740. return -EINVAL;
  741. priv = snd_soc_component_get_drvdata(component);
  742. if (!priv)
  743. return -EINVAL;
  744. if (!bolero_is_valid_codec_dev(priv->dev)) {
  745. dev_err(component->dev, "%s: invalid codec\n", __func__);
  746. return -EINVAL;
  747. }
  748. if (priv->version == BOLERO_VERSION_2_1) {
  749. if (priv->macro_params[VA_MACRO].reg_wake_irq)
  750. priv->macro_params[VA_MACRO].reg_wake_irq(
  751. component, ipc_wakeup);
  752. } else {
  753. if (priv->macro_params[TX_MACRO].reg_wake_irq)
  754. priv->macro_params[TX_MACRO].reg_wake_irq(
  755. component, ipc_wakeup);
  756. }
  757. return 0;
  758. }
  759. EXPORT_SYMBOL(bolero_register_wake_irq);
  760. /**
  761. * bolero_tx_clk_switch - Switch tx macro clock
  762. *
  763. * @component: pointer to codec component instance.
  764. *
  765. * Returns 0 on success or -EINVAL on error.
  766. */
  767. int bolero_tx_clk_switch(struct snd_soc_component *component)
  768. {
  769. struct bolero_priv *priv = NULL;
  770. int ret = 0;
  771. if (!component)
  772. return -EINVAL;
  773. priv = snd_soc_component_get_drvdata(component);
  774. if (!priv)
  775. return -EINVAL;
  776. if (!bolero_is_valid_codec_dev(priv->dev)) {
  777. dev_err(component->dev, "%s: invalid codec\n", __func__);
  778. return -EINVAL;
  779. }
  780. if (priv->macro_params[TX_MACRO].clk_switch)
  781. ret = priv->macro_params[TX_MACRO].clk_switch(component);
  782. return ret;
  783. }
  784. EXPORT_SYMBOL(bolero_tx_clk_switch);
  785. /**
  786. * bolero_register_event_listener - Register/Deregister to event listener
  787. *
  788. * @component: pointer to codec component instance.
  789. * @enable: when set to 1 registers to event listener otherwise, derigisters
  790. * from the event listener
  791. *
  792. * Returns 0 on success or -EINVAL on error.
  793. */
  794. int bolero_register_event_listener(struct snd_soc_component *component,
  795. bool enable)
  796. {
  797. struct bolero_priv *priv = NULL;
  798. int ret = 0;
  799. if (!component)
  800. return -EINVAL;
  801. priv = snd_soc_component_get_drvdata(component);
  802. if (!priv)
  803. return -EINVAL;
  804. if (!bolero_is_valid_codec_dev(priv->dev)) {
  805. dev_err(component->dev, "%s: invalid codec\n", __func__);
  806. return -EINVAL;
  807. }
  808. if (priv->macro_params[TX_MACRO].reg_evt_listener)
  809. ret = priv->macro_params[TX_MACRO].reg_evt_listener(component,
  810. enable);
  811. return ret;
  812. }
  813. EXPORT_SYMBOL(bolero_register_event_listener);
  814. static int bolero_soc_codec_probe(struct snd_soc_component *component)
  815. {
  816. struct bolero_priv *priv = dev_get_drvdata(component->dev);
  817. int macro_idx, ret = 0;
  818. snd_soc_component_init_regmap(component, priv->regmap);
  819. if (!priv->version) {
  820. /*
  821. * In order for the ADIE RTC to differentiate between targets
  822. * version info is used.
  823. * Assign 1.0 for target with only one macro
  824. * Assign 1.1 for target with two macros
  825. * Assign 1.2 for target with more than two macros
  826. */
  827. if (priv->num_macros_registered == 1)
  828. priv->version = BOLERO_VERSION_1_0;
  829. else if (priv->num_macros_registered == 2)
  830. priv->version = BOLERO_VERSION_1_1;
  831. else if (priv->num_macros_registered > 2)
  832. priv->version = BOLERO_VERSION_1_2;
  833. }
  834. /* Assign bolero version 2.1 for bolero 2.1 */
  835. if ((snd_soc_component_read32(component,
  836. BOLERO_CDC_VA_TOP_CSR_CORE_ID_0) == 0x2) &&
  837. (snd_soc_component_read32(component,
  838. BOLERO_CDC_VA_TOP_CSR_CORE_ID_1) == 0xE))
  839. priv->version = BOLERO_VERSION_2_1;
  840. /* call init for supported macros */
  841. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  842. if (priv->macro_params[macro_idx].init) {
  843. ret = priv->macro_params[macro_idx].init(component);
  844. if (ret < 0) {
  845. dev_err(component->dev,
  846. "%s: init for macro %d failed\n",
  847. __func__, macro_idx);
  848. goto err;
  849. }
  850. }
  851. }
  852. priv->component = component;
  853. ret = snd_event_client_register(priv->dev, &bolero_ssr_ops, priv);
  854. if (!ret) {
  855. snd_event_notify(priv->dev, SND_EVENT_UP);
  856. } else {
  857. dev_err(component->dev,
  858. "%s: Registration with SND event FWK failed ret = %d\n",
  859. __func__, ret);
  860. goto err;
  861. }
  862. dev_dbg(component->dev, "%s: bolero soc codec probe success\n",
  863. __func__);
  864. err:
  865. return ret;
  866. }
  867. static void bolero_soc_codec_remove(struct snd_soc_component *component)
  868. {
  869. struct bolero_priv *priv = dev_get_drvdata(component->dev);
  870. int macro_idx;
  871. snd_event_client_deregister(priv->dev);
  872. /* call exit for supported macros */
  873. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++)
  874. if (priv->macro_params[macro_idx].exit)
  875. priv->macro_params[macro_idx].exit(component);
  876. return;
  877. }
  878. static const struct snd_soc_component_driver bolero = {
  879. .name = DRV_NAME,
  880. .probe = bolero_soc_codec_probe,
  881. .remove = bolero_soc_codec_remove,
  882. };
  883. static void bolero_add_child_devices(struct work_struct *work)
  884. {
  885. struct bolero_priv *priv;
  886. bool split_codec = false;
  887. struct platform_device *pdev;
  888. struct device_node *node;
  889. int ret = 0, count = 0;
  890. struct wcd_ctrl_platform_data *platdata = NULL;
  891. char plat_dev_name[BOLERO_CDC_STRING_LEN] = "";
  892. priv = container_of(work, struct bolero_priv,
  893. bolero_add_child_devices_work);
  894. if (!priv) {
  895. pr_err("%s: Memory for bolero priv does not exist\n",
  896. __func__);
  897. return;
  898. }
  899. if (!priv->dev || !priv->dev->of_node) {
  900. dev_err(priv->dev, "%s: DT node for bolero does not exist\n",
  901. __func__);
  902. return;
  903. }
  904. platdata = &priv->plat_data;
  905. priv->child_count = 0;
  906. for_each_available_child_of_node(priv->dev->of_node, node) {
  907. split_codec = false;
  908. if (of_find_property(node, "qcom,split-codec", NULL)) {
  909. split_codec = true;
  910. dev_dbg(priv->dev, "%s: split codec slave exists\n",
  911. __func__);
  912. }
  913. strlcpy(plat_dev_name, node->name,
  914. (BOLERO_CDC_STRING_LEN - 1));
  915. pdev = platform_device_alloc(plat_dev_name, -1);
  916. if (!pdev) {
  917. dev_err(priv->dev, "%s: pdev memory alloc failed\n",
  918. __func__);
  919. ret = -ENOMEM;
  920. goto err;
  921. }
  922. pdev->dev.parent = priv->dev;
  923. pdev->dev.of_node = node;
  924. priv->dev->platform_data = platdata;
  925. if (split_codec)
  926. priv->wcd_dev = &pdev->dev;
  927. ret = platform_device_add(pdev);
  928. if (ret) {
  929. dev_err(&pdev->dev,
  930. "%s: Cannot add platform device\n",
  931. __func__);
  932. platform_device_put(pdev);
  933. goto fail_pdev_add;
  934. }
  935. if (priv->child_count < BOLERO_CDC_CHILD_DEVICES_MAX)
  936. priv->pdev_child_devices[priv->child_count++] = pdev;
  937. else
  938. goto err;
  939. }
  940. return;
  941. fail_pdev_add:
  942. for (count = 0; count < priv->child_count; count++)
  943. platform_device_put(priv->pdev_child_devices[count]);
  944. err:
  945. return;
  946. }
  947. static int bolero_probe(struct platform_device *pdev)
  948. {
  949. struct bolero_priv *priv;
  950. u32 num_macros = 0;
  951. int ret;
  952. struct clk *lpass_core_hw_vote = NULL;
  953. struct clk *lpass_audio_hw_vote = NULL;
  954. priv = devm_kzalloc(&pdev->dev, sizeof(struct bolero_priv),
  955. GFP_KERNEL);
  956. if (!priv)
  957. return -ENOMEM;
  958. ret = of_property_read_u32(pdev->dev.of_node, "qcom,num-macros",
  959. &num_macros);
  960. if (ret) {
  961. dev_err(&pdev->dev,
  962. "%s:num-macros property not found\n",
  963. __func__);
  964. return ret;
  965. }
  966. priv->num_macros = num_macros;
  967. if (priv->num_macros > MAX_MACRO) {
  968. dev_err(&pdev->dev,
  969. "%s:num_macros(%d) > MAX_MACRO(%d) than supported\n",
  970. __func__, priv->num_macros, MAX_MACRO);
  971. return -EINVAL;
  972. }
  973. priv->va_without_decimation = of_property_read_bool(pdev->dev.of_node,
  974. "qcom,va-without-decimation");
  975. if (priv->va_without_decimation)
  976. bolero_reg_access[VA_MACRO] = bolero_va_top_reg_access;
  977. ret = of_property_read_u32(pdev->dev.of_node,
  978. "qcom,bolero-version", &priv->version);
  979. if (ret) {
  980. dev_dbg(&pdev->dev, "%s:bolero version not specified\n",
  981. __func__);
  982. ret = 0;
  983. }
  984. if (priv->version == BOLERO_VERSION_2_1) {
  985. bolero_reg_access[TX_MACRO] = bolero_tx_reg_access_v2;
  986. bolero_reg_access[VA_MACRO] = bolero_va_reg_access_v2;
  987. } else if (priv->version == BOLERO_VERSION_2_0) {
  988. bolero_reg_access[VA_MACRO] = bolero_va_reg_access_v3;
  989. }
  990. priv->dev = &pdev->dev;
  991. priv->dev_up = true;
  992. priv->initial_boot = true;
  993. priv->regmap = bolero_regmap_init(priv->dev,
  994. &bolero_regmap_config);
  995. if (IS_ERR_OR_NULL((void *)(priv->regmap))) {
  996. dev_err(&pdev->dev, "%s:regmap init failed\n", __func__);
  997. return -EINVAL;
  998. }
  999. priv->read_dev = __bolero_reg_read;
  1000. priv->write_dev = __bolero_reg_write;
  1001. priv->plat_data.handle = (void *) priv;
  1002. priv->plat_data.update_wcd_event = bolero_cdc_update_wcd_event;
  1003. priv->plat_data.register_notifier = bolero_cdc_register_notifier;
  1004. priv->core_hw_vote_count = 0;
  1005. priv->core_audio_vote_count = 0;
  1006. dev_set_drvdata(&pdev->dev, priv);
  1007. mutex_init(&priv->io_lock);
  1008. mutex_init(&priv->clk_lock);
  1009. mutex_init(&priv->vote_lock);
  1010. INIT_WORK(&priv->bolero_add_child_devices_work,
  1011. bolero_add_child_devices);
  1012. schedule_work(&priv->bolero_add_child_devices_work);
  1013. /* Register LPASS core hw vote */
  1014. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  1015. if (IS_ERR(lpass_core_hw_vote)) {
  1016. ret = PTR_ERR(lpass_core_hw_vote);
  1017. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1018. __func__, "lpass_core_hw_vote", ret);
  1019. lpass_core_hw_vote = NULL;
  1020. ret = 0;
  1021. }
  1022. priv->lpass_core_hw_vote = lpass_core_hw_vote;
  1023. /* Register LPASS audio hw vote */
  1024. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1025. if (IS_ERR(lpass_audio_hw_vote)) {
  1026. ret = PTR_ERR(lpass_audio_hw_vote);
  1027. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1028. __func__, "lpass_audio_hw_vote", ret);
  1029. lpass_audio_hw_vote = NULL;
  1030. ret = 0;
  1031. }
  1032. priv->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1033. return 0;
  1034. }
  1035. static int bolero_remove(struct platform_device *pdev)
  1036. {
  1037. struct bolero_priv *priv = dev_get_drvdata(&pdev->dev);
  1038. if (!priv)
  1039. return -EINVAL;
  1040. of_platform_depopulate(&pdev->dev);
  1041. mutex_destroy(&priv->io_lock);
  1042. mutex_destroy(&priv->clk_lock);
  1043. mutex_destroy(&priv->vote_lock);
  1044. return 0;
  1045. }
  1046. int bolero_runtime_resume(struct device *dev)
  1047. {
  1048. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1049. int ret = 0;
  1050. mutex_lock(&priv->vote_lock);
  1051. if (priv->lpass_core_hw_vote == NULL) {
  1052. dev_dbg(dev, "%s: Invalid lpass core hw node\n", __func__);
  1053. goto audio_vote;
  1054. }
  1055. if (priv->core_hw_vote_count == 0) {
  1056. ret = clk_prepare_enable(priv->lpass_core_hw_vote);
  1057. if (ret < 0) {
  1058. dev_err(dev, "%s:lpass core hw enable failed\n",
  1059. __func__);
  1060. goto audio_vote;
  1061. }
  1062. }
  1063. priv->core_hw_vote_count++;
  1064. audio_vote:
  1065. if (priv->lpass_audio_hw_vote == NULL) {
  1066. dev_dbg(dev, "%s: Invalid lpass audio hw node\n", __func__);
  1067. goto done;
  1068. }
  1069. if (priv->core_audio_vote_count == 0) {
  1070. ret = clk_prepare_enable(priv->lpass_audio_hw_vote);
  1071. if (ret < 0) {
  1072. dev_err(dev, "%s:lpass audio hw enable failed\n",
  1073. __func__);
  1074. goto done;
  1075. }
  1076. }
  1077. priv->core_audio_vote_count++;
  1078. done:
  1079. mutex_unlock(&priv->vote_lock);
  1080. pm_runtime_set_autosuspend_delay(priv->dev, BOLERO_AUTO_SUSPEND_DELAY);
  1081. return 0;
  1082. }
  1083. EXPORT_SYMBOL(bolero_runtime_resume);
  1084. int bolero_runtime_suspend(struct device *dev)
  1085. {
  1086. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1087. mutex_lock(&priv->vote_lock);
  1088. if (priv->lpass_core_hw_vote != NULL) {
  1089. if (--priv->core_hw_vote_count == 0)
  1090. clk_disable_unprepare(priv->lpass_core_hw_vote);
  1091. if (priv->core_hw_vote_count < 0)
  1092. priv->core_hw_vote_count = 0;
  1093. } else {
  1094. dev_dbg(dev, "%s: Invalid lpass core hw node\n",
  1095. __func__);
  1096. }
  1097. if (priv->lpass_audio_hw_vote != NULL) {
  1098. if (--priv->core_audio_vote_count == 0)
  1099. clk_disable_unprepare(priv->lpass_audio_hw_vote);
  1100. if (priv->core_audio_vote_count < 0)
  1101. priv->core_audio_vote_count = 0;
  1102. } else {
  1103. dev_dbg(dev, "%s: Invalid lpass audio hw node\n",
  1104. __func__);
  1105. }
  1106. mutex_unlock(&priv->vote_lock);
  1107. return 0;
  1108. }
  1109. EXPORT_SYMBOL(bolero_runtime_suspend);
  1110. bool bolero_check_core_votes(struct device *dev)
  1111. {
  1112. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1113. bool ret = true;
  1114. mutex_lock(&priv->vote_lock);
  1115. if ((priv->lpass_core_hw_vote && !priv->core_hw_vote_count) ||
  1116. (priv->lpass_audio_hw_vote && !priv->core_audio_vote_count))
  1117. ret = false;
  1118. mutex_unlock(&priv->vote_lock);
  1119. return ret;
  1120. }
  1121. EXPORT_SYMBOL(bolero_check_core_votes);
  1122. static const struct of_device_id bolero_dt_match[] = {
  1123. {.compatible = "qcom,bolero-codec"},
  1124. {}
  1125. };
  1126. MODULE_DEVICE_TABLE(of, bolero_dt_match);
  1127. static struct platform_driver bolero_drv = {
  1128. .driver = {
  1129. .name = "bolero-codec",
  1130. .owner = THIS_MODULE,
  1131. .of_match_table = bolero_dt_match,
  1132. .suppress_bind_attrs = true,
  1133. },
  1134. .probe = bolero_probe,
  1135. .remove = bolero_remove,
  1136. };
  1137. static int bolero_drv_init(void)
  1138. {
  1139. return platform_driver_register(&bolero_drv);
  1140. }
  1141. static void bolero_drv_exit(void)
  1142. {
  1143. platform_driver_unregister(&bolero_drv);
  1144. }
  1145. static int __init bolero_init(void)
  1146. {
  1147. bolero_drv_init();
  1148. bolero_clk_rsc_mgr_init();
  1149. return 0;
  1150. }
  1151. module_init(bolero_init);
  1152. static void __exit bolero_exit(void)
  1153. {
  1154. bolero_clk_rsc_mgr_exit();
  1155. bolero_drv_exit();
  1156. }
  1157. module_exit(bolero_exit);
  1158. MODULE_DESCRIPTION("Bolero driver");
  1159. MODULE_LICENSE("GPL v2");