bolero-cdc.c 31 KB

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