bolero-cdc.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  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_subdir(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. version_entry = snd_info_create_card_entry(card->snd_card,
  701. "version",
  702. priv->entry);
  703. if (!version_entry) {
  704. dev_err(component->dev, "%s: failed to create bolero version entry\n",
  705. __func__);
  706. return -ENOMEM;
  707. }
  708. version_entry->private_data = priv;
  709. version_entry->size = BOLERO_VERSION_ENTRY_SIZE;
  710. version_entry->content = SNDRV_INFO_CONTENT_DATA;
  711. version_entry->c.ops = &bolero_info_ops;
  712. if (snd_info_register(version_entry) < 0) {
  713. snd_info_free_entry(version_entry);
  714. return -ENOMEM;
  715. }
  716. priv->version_entry = version_entry;
  717. return 0;
  718. }
  719. EXPORT_SYMBOL(bolero_info_create_codec_entry);
  720. /**
  721. * bolero_register_wake_irq - Register wake irq of Tx macro
  722. *
  723. * @component: codec component ptr.
  724. * @ipc_wakeup: bool to identify ipc_wakeup to be used or HW interrupt line.
  725. *
  726. * Return: 0 on success or negative error code on failure.
  727. */
  728. int bolero_register_wake_irq(struct snd_soc_component *component,
  729. u32 ipc_wakeup)
  730. {
  731. struct bolero_priv *priv = NULL;
  732. if (!component)
  733. return -EINVAL;
  734. priv = snd_soc_component_get_drvdata(component);
  735. if (!priv)
  736. return -EINVAL;
  737. if (!bolero_is_valid_codec_dev(priv->dev)) {
  738. dev_err(component->dev, "%s: invalid codec\n", __func__);
  739. return -EINVAL;
  740. }
  741. if (priv->version == BOLERO_VERSION_2_1) {
  742. if (priv->macro_params[VA_MACRO].reg_wake_irq)
  743. priv->macro_params[VA_MACRO].reg_wake_irq(
  744. component, ipc_wakeup);
  745. } else {
  746. if (priv->macro_params[TX_MACRO].reg_wake_irq)
  747. priv->macro_params[TX_MACRO].reg_wake_irq(
  748. component, ipc_wakeup);
  749. }
  750. return 0;
  751. }
  752. EXPORT_SYMBOL(bolero_register_wake_irq);
  753. /**
  754. * bolero_tx_clk_switch - Switch tx macro clock
  755. *
  756. * @component: pointer to codec component instance.
  757. *
  758. * Returns 0 on success or -EINVAL on error.
  759. */
  760. int bolero_tx_clk_switch(struct snd_soc_component *component)
  761. {
  762. struct bolero_priv *priv = NULL;
  763. int ret = 0;
  764. if (!component)
  765. return -EINVAL;
  766. priv = snd_soc_component_get_drvdata(component);
  767. if (!priv)
  768. return -EINVAL;
  769. if (!bolero_is_valid_codec_dev(priv->dev)) {
  770. dev_err(component->dev, "%s: invalid codec\n", __func__);
  771. return -EINVAL;
  772. }
  773. if (priv->macro_params[TX_MACRO].clk_switch)
  774. ret = priv->macro_params[TX_MACRO].clk_switch(component);
  775. return ret;
  776. }
  777. EXPORT_SYMBOL(bolero_tx_clk_switch);
  778. /**
  779. * bolero_register_event_listener - Register/Deregister to event listener
  780. *
  781. * @component: pointer to codec component instance.
  782. * @enable: when set to 1 registers to event listener otherwise, derigisters
  783. * from the event listener
  784. *
  785. * Returns 0 on success or -EINVAL on error.
  786. */
  787. int bolero_register_event_listener(struct snd_soc_component *component,
  788. bool enable)
  789. {
  790. struct bolero_priv *priv = NULL;
  791. int ret = 0;
  792. if (!component)
  793. return -EINVAL;
  794. priv = snd_soc_component_get_drvdata(component);
  795. if (!priv)
  796. return -EINVAL;
  797. if (!bolero_is_valid_codec_dev(priv->dev)) {
  798. dev_err(component->dev, "%s: invalid codec\n", __func__);
  799. return -EINVAL;
  800. }
  801. if (priv->macro_params[TX_MACRO].reg_evt_listener)
  802. ret = priv->macro_params[TX_MACRO].reg_evt_listener(component,
  803. enable);
  804. return ret;
  805. }
  806. EXPORT_SYMBOL(bolero_register_event_listener);
  807. static int bolero_soc_codec_probe(struct snd_soc_component *component)
  808. {
  809. struct bolero_priv *priv = dev_get_drvdata(component->dev);
  810. int macro_idx, ret = 0;
  811. snd_soc_component_init_regmap(component, priv->regmap);
  812. if (!priv->version) {
  813. /*
  814. * In order for the ADIE RTC to differentiate between targets
  815. * version info is used.
  816. * Assign 1.0 for target with only one macro
  817. * Assign 1.1 for target with two macros
  818. * Assign 1.2 for target with more than two macros
  819. */
  820. if (priv->num_macros_registered == 1)
  821. priv->version = BOLERO_VERSION_1_0;
  822. else if (priv->num_macros_registered == 2)
  823. priv->version = BOLERO_VERSION_1_1;
  824. else if (priv->num_macros_registered > 2)
  825. priv->version = BOLERO_VERSION_1_2;
  826. }
  827. /* Assign bolero version 2.1 for bolero 2.1 */
  828. if ((snd_soc_component_read32(component,
  829. BOLERO_CDC_VA_TOP_CSR_CORE_ID_0) == 0x2) &&
  830. (snd_soc_component_read32(component,
  831. BOLERO_CDC_VA_TOP_CSR_CORE_ID_1) == 0xE))
  832. priv->version = BOLERO_VERSION_2_1;
  833. /* call init for supported macros */
  834. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  835. if (priv->macro_params[macro_idx].init) {
  836. ret = priv->macro_params[macro_idx].init(component);
  837. if (ret < 0) {
  838. dev_err(component->dev,
  839. "%s: init for macro %d failed\n",
  840. __func__, macro_idx);
  841. goto err;
  842. }
  843. }
  844. }
  845. priv->component = component;
  846. ret = snd_event_client_register(priv->dev, &bolero_ssr_ops, priv);
  847. if (!ret) {
  848. snd_event_notify(priv->dev, SND_EVENT_UP);
  849. } else {
  850. dev_err(component->dev,
  851. "%s: Registration with SND event FWK failed ret = %d\n",
  852. __func__, ret);
  853. goto err;
  854. }
  855. dev_dbg(component->dev, "%s: bolero soc codec probe success\n",
  856. __func__);
  857. err:
  858. return ret;
  859. }
  860. static void bolero_soc_codec_remove(struct snd_soc_component *component)
  861. {
  862. struct bolero_priv *priv = dev_get_drvdata(component->dev);
  863. int macro_idx;
  864. snd_event_client_deregister(priv->dev);
  865. /* call exit for supported macros */
  866. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++)
  867. if (priv->macro_params[macro_idx].exit)
  868. priv->macro_params[macro_idx].exit(component);
  869. return;
  870. }
  871. static const struct snd_soc_component_driver bolero = {
  872. .name = DRV_NAME,
  873. .probe = bolero_soc_codec_probe,
  874. .remove = bolero_soc_codec_remove,
  875. };
  876. static void bolero_add_child_devices(struct work_struct *work)
  877. {
  878. struct bolero_priv *priv;
  879. bool split_codec = false;
  880. struct platform_device *pdev;
  881. struct device_node *node;
  882. int ret = 0, count = 0;
  883. struct wcd_ctrl_platform_data *platdata = NULL;
  884. char plat_dev_name[BOLERO_CDC_STRING_LEN] = "";
  885. priv = container_of(work, struct bolero_priv,
  886. bolero_add_child_devices_work);
  887. if (!priv) {
  888. pr_err("%s: Memory for bolero priv does not exist\n",
  889. __func__);
  890. return;
  891. }
  892. if (!priv->dev || !priv->dev->of_node) {
  893. dev_err(priv->dev, "%s: DT node for bolero does not exist\n",
  894. __func__);
  895. return;
  896. }
  897. platdata = &priv->plat_data;
  898. priv->child_count = 0;
  899. for_each_available_child_of_node(priv->dev->of_node, node) {
  900. split_codec = false;
  901. if (of_find_property(node, "qcom,split-codec", NULL)) {
  902. split_codec = true;
  903. dev_dbg(priv->dev, "%s: split codec slave exists\n",
  904. __func__);
  905. }
  906. strlcpy(plat_dev_name, node->name,
  907. (BOLERO_CDC_STRING_LEN - 1));
  908. pdev = platform_device_alloc(plat_dev_name, -1);
  909. if (!pdev) {
  910. dev_err(priv->dev, "%s: pdev memory alloc failed\n",
  911. __func__);
  912. ret = -ENOMEM;
  913. goto err;
  914. }
  915. pdev->dev.parent = priv->dev;
  916. pdev->dev.of_node = node;
  917. priv->dev->platform_data = platdata;
  918. if (split_codec)
  919. priv->wcd_dev = &pdev->dev;
  920. ret = platform_device_add(pdev);
  921. if (ret) {
  922. dev_err(&pdev->dev,
  923. "%s: Cannot add platform device\n",
  924. __func__);
  925. platform_device_put(pdev);
  926. goto fail_pdev_add;
  927. }
  928. if (priv->child_count < BOLERO_CDC_CHILD_DEVICES_MAX)
  929. priv->pdev_child_devices[priv->child_count++] = pdev;
  930. else
  931. goto err;
  932. }
  933. return;
  934. fail_pdev_add:
  935. for (count = 0; count < priv->child_count; count++)
  936. platform_device_put(priv->pdev_child_devices[count]);
  937. err:
  938. return;
  939. }
  940. static int bolero_probe(struct platform_device *pdev)
  941. {
  942. struct bolero_priv *priv;
  943. u32 num_macros = 0;
  944. int ret;
  945. struct clk *lpass_core_hw_vote = NULL;
  946. struct clk *lpass_audio_hw_vote = NULL;
  947. priv = devm_kzalloc(&pdev->dev, sizeof(struct bolero_priv),
  948. GFP_KERNEL);
  949. if (!priv)
  950. return -ENOMEM;
  951. ret = of_property_read_u32(pdev->dev.of_node, "qcom,num-macros",
  952. &num_macros);
  953. if (ret) {
  954. dev_err(&pdev->dev,
  955. "%s:num-macros property not found\n",
  956. __func__);
  957. return ret;
  958. }
  959. priv->num_macros = num_macros;
  960. if (priv->num_macros > MAX_MACRO) {
  961. dev_err(&pdev->dev,
  962. "%s:num_macros(%d) > MAX_MACRO(%d) than supported\n",
  963. __func__, priv->num_macros, MAX_MACRO);
  964. return -EINVAL;
  965. }
  966. priv->va_without_decimation = of_property_read_bool(pdev->dev.of_node,
  967. "qcom,va-without-decimation");
  968. if (priv->va_without_decimation)
  969. bolero_reg_access[VA_MACRO] = bolero_va_top_reg_access;
  970. ret = of_property_read_u32(pdev->dev.of_node,
  971. "qcom,bolero-version", &priv->version);
  972. if (ret) {
  973. dev_dbg(&pdev->dev, "%s:bolero version not specified\n",
  974. __func__);
  975. ret = 0;
  976. }
  977. if (priv->version == BOLERO_VERSION_2_1) {
  978. bolero_reg_access[TX_MACRO] = bolero_tx_reg_access_v2;
  979. bolero_reg_access[VA_MACRO] = bolero_va_reg_access_v2;
  980. } else if (priv->version == BOLERO_VERSION_2_0) {
  981. bolero_reg_access[VA_MACRO] = bolero_va_reg_access_v3;
  982. }
  983. priv->dev = &pdev->dev;
  984. priv->dev_up = true;
  985. priv->initial_boot = true;
  986. priv->regmap = bolero_regmap_init(priv->dev,
  987. &bolero_regmap_config);
  988. if (IS_ERR_OR_NULL((void *)(priv->regmap))) {
  989. dev_err(&pdev->dev, "%s:regmap init failed\n", __func__);
  990. return -EINVAL;
  991. }
  992. priv->read_dev = __bolero_reg_read;
  993. priv->write_dev = __bolero_reg_write;
  994. priv->plat_data.handle = (void *) priv;
  995. priv->plat_data.update_wcd_event = bolero_cdc_update_wcd_event;
  996. priv->plat_data.register_notifier = bolero_cdc_register_notifier;
  997. priv->core_hw_vote_count = 0;
  998. priv->core_audio_vote_count = 0;
  999. dev_set_drvdata(&pdev->dev, priv);
  1000. mutex_init(&priv->io_lock);
  1001. mutex_init(&priv->clk_lock);
  1002. mutex_init(&priv->vote_lock);
  1003. INIT_WORK(&priv->bolero_add_child_devices_work,
  1004. bolero_add_child_devices);
  1005. schedule_work(&priv->bolero_add_child_devices_work);
  1006. /* Register LPASS core hw vote */
  1007. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  1008. if (IS_ERR(lpass_core_hw_vote)) {
  1009. ret = PTR_ERR(lpass_core_hw_vote);
  1010. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1011. __func__, "lpass_core_hw_vote", ret);
  1012. lpass_core_hw_vote = NULL;
  1013. ret = 0;
  1014. }
  1015. priv->lpass_core_hw_vote = lpass_core_hw_vote;
  1016. /* Register LPASS audio hw vote */
  1017. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1018. if (IS_ERR(lpass_audio_hw_vote)) {
  1019. ret = PTR_ERR(lpass_audio_hw_vote);
  1020. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1021. __func__, "lpass_audio_hw_vote", ret);
  1022. lpass_audio_hw_vote = NULL;
  1023. ret = 0;
  1024. }
  1025. priv->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1026. return 0;
  1027. }
  1028. static int bolero_remove(struct platform_device *pdev)
  1029. {
  1030. struct bolero_priv *priv = dev_get_drvdata(&pdev->dev);
  1031. if (!priv)
  1032. return -EINVAL;
  1033. of_platform_depopulate(&pdev->dev);
  1034. mutex_destroy(&priv->io_lock);
  1035. mutex_destroy(&priv->clk_lock);
  1036. mutex_destroy(&priv->vote_lock);
  1037. return 0;
  1038. }
  1039. int bolero_runtime_resume(struct device *dev)
  1040. {
  1041. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1042. int ret = 0;
  1043. mutex_lock(&priv->vote_lock);
  1044. if (priv->lpass_core_hw_vote == NULL) {
  1045. dev_dbg(dev, "%s: Invalid lpass core hw node\n", __func__);
  1046. goto audio_vote;
  1047. }
  1048. if (priv->core_hw_vote_count == 0) {
  1049. ret = clk_prepare_enable(priv->lpass_core_hw_vote);
  1050. if (ret < 0) {
  1051. dev_err(dev, "%s:lpass core hw enable failed\n",
  1052. __func__);
  1053. goto audio_vote;
  1054. }
  1055. }
  1056. priv->core_hw_vote_count++;
  1057. audio_vote:
  1058. if (priv->lpass_audio_hw_vote == NULL) {
  1059. dev_dbg(dev, "%s: Invalid lpass audio hw node\n", __func__);
  1060. goto done;
  1061. }
  1062. if (priv->core_audio_vote_count == 0) {
  1063. ret = clk_prepare_enable(priv->lpass_audio_hw_vote);
  1064. if (ret < 0) {
  1065. dev_err(dev, "%s:lpass audio hw enable failed\n",
  1066. __func__);
  1067. goto done;
  1068. }
  1069. }
  1070. priv->core_audio_vote_count++;
  1071. done:
  1072. mutex_unlock(&priv->vote_lock);
  1073. pm_runtime_set_autosuspend_delay(priv->dev, BOLERO_AUTO_SUSPEND_DELAY);
  1074. return 0;
  1075. }
  1076. EXPORT_SYMBOL(bolero_runtime_resume);
  1077. int bolero_runtime_suspend(struct device *dev)
  1078. {
  1079. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1080. mutex_lock(&priv->vote_lock);
  1081. if (priv->lpass_core_hw_vote != NULL) {
  1082. if (--priv->core_hw_vote_count == 0)
  1083. clk_disable_unprepare(priv->lpass_core_hw_vote);
  1084. if (priv->core_hw_vote_count < 0)
  1085. priv->core_hw_vote_count = 0;
  1086. } else {
  1087. dev_dbg(dev, "%s: Invalid lpass core hw node\n",
  1088. __func__);
  1089. }
  1090. if (priv->lpass_audio_hw_vote != NULL) {
  1091. if (--priv->core_audio_vote_count == 0)
  1092. clk_disable_unprepare(priv->lpass_audio_hw_vote);
  1093. if (priv->core_audio_vote_count < 0)
  1094. priv->core_audio_vote_count = 0;
  1095. } else {
  1096. dev_dbg(dev, "%s: Invalid lpass audio hw node\n",
  1097. __func__);
  1098. }
  1099. mutex_unlock(&priv->vote_lock);
  1100. return 0;
  1101. }
  1102. EXPORT_SYMBOL(bolero_runtime_suspend);
  1103. bool bolero_check_core_votes(struct device *dev)
  1104. {
  1105. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1106. bool ret = true;
  1107. mutex_lock(&priv->vote_lock);
  1108. if ((priv->lpass_core_hw_vote && !priv->core_hw_vote_count) ||
  1109. (priv->lpass_audio_hw_vote && !priv->core_audio_vote_count))
  1110. ret = false;
  1111. mutex_unlock(&priv->vote_lock);
  1112. return ret;
  1113. }
  1114. EXPORT_SYMBOL(bolero_check_core_votes);
  1115. static const struct of_device_id bolero_dt_match[] = {
  1116. {.compatible = "qcom,bolero-codec"},
  1117. {}
  1118. };
  1119. MODULE_DEVICE_TABLE(of, bolero_dt_match);
  1120. static struct platform_driver bolero_drv = {
  1121. .driver = {
  1122. .name = "bolero-codec",
  1123. .owner = THIS_MODULE,
  1124. .of_match_table = bolero_dt_match,
  1125. .suppress_bind_attrs = true,
  1126. },
  1127. .probe = bolero_probe,
  1128. .remove = bolero_remove,
  1129. };
  1130. static int bolero_drv_init(void)
  1131. {
  1132. return platform_driver_register(&bolero_drv);
  1133. }
  1134. static void bolero_drv_exit(void)
  1135. {
  1136. platform_driver_unregister(&bolero_drv);
  1137. }
  1138. static int __init bolero_init(void)
  1139. {
  1140. bolero_drv_init();
  1141. bolero_clk_rsc_mgr_init();
  1142. return 0;
  1143. }
  1144. module_init(bolero_init);
  1145. static void __exit bolero_exit(void)
  1146. {
  1147. bolero_clk_rsc_mgr_exit();
  1148. bolero_drv_exit();
  1149. }
  1150. module_exit(bolero_exit);
  1151. MODULE_DESCRIPTION("Bolero driver");
  1152. MODULE_LICENSE("GPL v2");