bolero-cdc.c 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334
  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. u8 core_id_0 = 0, core_id_1 = 0;
  819. snd_soc_component_init_regmap(component, priv->regmap);
  820. if (!priv->version) {
  821. /*
  822. * In order for the ADIE RTC to differentiate between targets
  823. * version info is used.
  824. * Assign 1.0 for target with only one macro
  825. * Assign 1.1 for target with two macros
  826. * Assign 1.2 for target with more than two macros
  827. */
  828. if (priv->num_macros_registered == 1)
  829. priv->version = BOLERO_VERSION_1_0;
  830. else if (priv->num_macros_registered == 2)
  831. priv->version = BOLERO_VERSION_1_1;
  832. else if (priv->num_macros_registered > 2)
  833. priv->version = BOLERO_VERSION_1_2;
  834. }
  835. /* Assign bolero version */
  836. core_id_0 = snd_soc_component_read32(component,
  837. BOLERO_CDC_VA_TOP_CSR_CORE_ID_0);
  838. core_id_1 = snd_soc_component_read32(component,
  839. BOLERO_CDC_VA_TOP_CSR_CORE_ID_1);
  840. if ((core_id_0 == 0x01) && (core_id_1 == 0x0F))
  841. priv->version = BOLERO_VERSION_2_0;
  842. if ((core_id_0 == 0x02) && (core_id_1 == 0x0E))
  843. priv->version = BOLERO_VERSION_2_1;
  844. /* call init for supported macros */
  845. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  846. if (priv->macro_params[macro_idx].init) {
  847. ret = priv->macro_params[macro_idx].init(component);
  848. if (ret < 0) {
  849. dev_err(component->dev,
  850. "%s: init for macro %d failed\n",
  851. __func__, macro_idx);
  852. goto err;
  853. }
  854. }
  855. }
  856. priv->component = component;
  857. ret = snd_event_client_register(priv->dev, &bolero_ssr_ops, priv);
  858. if (!ret) {
  859. snd_event_notify(priv->dev, SND_EVENT_UP);
  860. } else {
  861. dev_err(component->dev,
  862. "%s: Registration with SND event FWK failed ret = %d\n",
  863. __func__, ret);
  864. goto err;
  865. }
  866. dev_dbg(component->dev, "%s: bolero soc codec probe success\n",
  867. __func__);
  868. err:
  869. return ret;
  870. }
  871. static void bolero_soc_codec_remove(struct snd_soc_component *component)
  872. {
  873. struct bolero_priv *priv = dev_get_drvdata(component->dev);
  874. int macro_idx;
  875. snd_event_client_deregister(priv->dev);
  876. /* call exit for supported macros */
  877. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++)
  878. if (priv->macro_params[macro_idx].exit)
  879. priv->macro_params[macro_idx].exit(component);
  880. return;
  881. }
  882. static const struct snd_soc_component_driver bolero = {
  883. .name = DRV_NAME,
  884. .probe = bolero_soc_codec_probe,
  885. .remove = bolero_soc_codec_remove,
  886. };
  887. static void bolero_add_child_devices(struct work_struct *work)
  888. {
  889. struct bolero_priv *priv;
  890. bool split_codec = false;
  891. struct platform_device *pdev;
  892. struct device_node *node;
  893. int ret = 0, count = 0;
  894. struct wcd_ctrl_platform_data *platdata = NULL;
  895. char plat_dev_name[BOLERO_CDC_STRING_LEN] = "";
  896. priv = container_of(work, struct bolero_priv,
  897. bolero_add_child_devices_work);
  898. if (!priv) {
  899. pr_err("%s: Memory for bolero priv does not exist\n",
  900. __func__);
  901. return;
  902. }
  903. if (!priv->dev || !priv->dev->of_node) {
  904. dev_err(priv->dev, "%s: DT node for bolero does not exist\n",
  905. __func__);
  906. return;
  907. }
  908. platdata = &priv->plat_data;
  909. priv->child_count = 0;
  910. for_each_available_child_of_node(priv->dev->of_node, node) {
  911. split_codec = false;
  912. if (of_find_property(node, "qcom,split-codec", NULL)) {
  913. split_codec = true;
  914. dev_dbg(priv->dev, "%s: split codec slave exists\n",
  915. __func__);
  916. }
  917. strlcpy(plat_dev_name, node->name,
  918. (BOLERO_CDC_STRING_LEN - 1));
  919. pdev = platform_device_alloc(plat_dev_name, -1);
  920. if (!pdev) {
  921. dev_err(priv->dev, "%s: pdev memory alloc failed\n",
  922. __func__);
  923. ret = -ENOMEM;
  924. goto err;
  925. }
  926. pdev->dev.parent = priv->dev;
  927. pdev->dev.of_node = node;
  928. priv->dev->platform_data = platdata;
  929. if (split_codec)
  930. priv->wcd_dev = &pdev->dev;
  931. ret = platform_device_add(pdev);
  932. if (ret) {
  933. dev_err(&pdev->dev,
  934. "%s: Cannot add platform device\n",
  935. __func__);
  936. platform_device_put(pdev);
  937. goto fail_pdev_add;
  938. }
  939. if (priv->child_count < BOLERO_CDC_CHILD_DEVICES_MAX)
  940. priv->pdev_child_devices[priv->child_count++] = pdev;
  941. else
  942. goto err;
  943. }
  944. return;
  945. fail_pdev_add:
  946. for (count = 0; count < priv->child_count; count++)
  947. platform_device_put(priv->pdev_child_devices[count]);
  948. err:
  949. return;
  950. }
  951. static int bolero_probe(struct platform_device *pdev)
  952. {
  953. struct bolero_priv *priv;
  954. u32 num_macros = 0;
  955. int ret;
  956. struct clk *lpass_core_hw_vote = NULL;
  957. struct clk *lpass_audio_hw_vote = NULL;
  958. priv = devm_kzalloc(&pdev->dev, sizeof(struct bolero_priv),
  959. GFP_KERNEL);
  960. if (!priv)
  961. return -ENOMEM;
  962. ret = of_property_read_u32(pdev->dev.of_node, "qcom,num-macros",
  963. &num_macros);
  964. if (ret) {
  965. dev_err(&pdev->dev,
  966. "%s:num-macros property not found\n",
  967. __func__);
  968. return ret;
  969. }
  970. priv->num_macros = num_macros;
  971. if (priv->num_macros > MAX_MACRO) {
  972. dev_err(&pdev->dev,
  973. "%s:num_macros(%d) > MAX_MACRO(%d) than supported\n",
  974. __func__, priv->num_macros, MAX_MACRO);
  975. return -EINVAL;
  976. }
  977. priv->va_without_decimation = of_property_read_bool(pdev->dev.of_node,
  978. "qcom,va-without-decimation");
  979. if (priv->va_without_decimation)
  980. bolero_reg_access[VA_MACRO] = bolero_va_top_reg_access;
  981. ret = of_property_read_u32(pdev->dev.of_node,
  982. "qcom,bolero-version", &priv->version);
  983. if (ret) {
  984. dev_dbg(&pdev->dev, "%s:bolero version not specified\n",
  985. __func__);
  986. ret = 0;
  987. }
  988. if (priv->version == BOLERO_VERSION_2_1) {
  989. bolero_reg_access[TX_MACRO] = bolero_tx_reg_access_v2;
  990. bolero_reg_access[VA_MACRO] = bolero_va_reg_access_v2;
  991. } else if (priv->version == BOLERO_VERSION_2_0) {
  992. bolero_reg_access[VA_MACRO] = bolero_va_reg_access_v3;
  993. }
  994. priv->dev = &pdev->dev;
  995. priv->dev_up = true;
  996. priv->initial_boot = true;
  997. priv->regmap = bolero_regmap_init(priv->dev,
  998. &bolero_regmap_config);
  999. if (IS_ERR_OR_NULL((void *)(priv->regmap))) {
  1000. dev_err(&pdev->dev, "%s:regmap init failed\n", __func__);
  1001. return -EINVAL;
  1002. }
  1003. priv->read_dev = __bolero_reg_read;
  1004. priv->write_dev = __bolero_reg_write;
  1005. priv->plat_data.handle = (void *) priv;
  1006. priv->plat_data.update_wcd_event = bolero_cdc_update_wcd_event;
  1007. priv->plat_data.register_notifier = bolero_cdc_register_notifier;
  1008. priv->core_hw_vote_count = 0;
  1009. priv->core_audio_vote_count = 0;
  1010. dev_set_drvdata(&pdev->dev, priv);
  1011. mutex_init(&priv->io_lock);
  1012. mutex_init(&priv->clk_lock);
  1013. mutex_init(&priv->vote_lock);
  1014. INIT_WORK(&priv->bolero_add_child_devices_work,
  1015. bolero_add_child_devices);
  1016. schedule_work(&priv->bolero_add_child_devices_work);
  1017. /* Register LPASS core hw vote */
  1018. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  1019. if (IS_ERR(lpass_core_hw_vote)) {
  1020. ret = PTR_ERR(lpass_core_hw_vote);
  1021. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1022. __func__, "lpass_core_hw_vote", ret);
  1023. lpass_core_hw_vote = NULL;
  1024. ret = 0;
  1025. }
  1026. priv->lpass_core_hw_vote = lpass_core_hw_vote;
  1027. /* Register LPASS audio hw vote */
  1028. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1029. if (IS_ERR(lpass_audio_hw_vote)) {
  1030. ret = PTR_ERR(lpass_audio_hw_vote);
  1031. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1032. __func__, "lpass_audio_hw_vote", ret);
  1033. lpass_audio_hw_vote = NULL;
  1034. ret = 0;
  1035. }
  1036. priv->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1037. return 0;
  1038. }
  1039. static int bolero_remove(struct platform_device *pdev)
  1040. {
  1041. struct bolero_priv *priv = dev_get_drvdata(&pdev->dev);
  1042. if (!priv)
  1043. return -EINVAL;
  1044. of_platform_depopulate(&pdev->dev);
  1045. mutex_destroy(&priv->io_lock);
  1046. mutex_destroy(&priv->clk_lock);
  1047. mutex_destroy(&priv->vote_lock);
  1048. return 0;
  1049. }
  1050. int bolero_runtime_resume(struct device *dev)
  1051. {
  1052. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1053. int ret = 0;
  1054. mutex_lock(&priv->vote_lock);
  1055. if (priv->lpass_core_hw_vote == NULL) {
  1056. dev_dbg(dev, "%s: Invalid lpass core hw node\n", __func__);
  1057. goto audio_vote;
  1058. }
  1059. if (priv->core_hw_vote_count == 0) {
  1060. ret = clk_prepare_enable(priv->lpass_core_hw_vote);
  1061. if (ret < 0) {
  1062. dev_err(dev, "%s:lpass core hw enable failed\n",
  1063. __func__);
  1064. goto audio_vote;
  1065. }
  1066. }
  1067. priv->core_hw_vote_count++;
  1068. audio_vote:
  1069. if (priv->lpass_audio_hw_vote == NULL) {
  1070. dev_dbg(dev, "%s: Invalid lpass audio hw node\n", __func__);
  1071. goto done;
  1072. }
  1073. if (priv->core_audio_vote_count == 0) {
  1074. ret = clk_prepare_enable(priv->lpass_audio_hw_vote);
  1075. if (ret < 0) {
  1076. dev_err(dev, "%s:lpass audio hw enable failed\n",
  1077. __func__);
  1078. goto done;
  1079. }
  1080. }
  1081. priv->core_audio_vote_count++;
  1082. done:
  1083. mutex_unlock(&priv->vote_lock);
  1084. pm_runtime_set_autosuspend_delay(priv->dev, BOLERO_AUTO_SUSPEND_DELAY);
  1085. return 0;
  1086. }
  1087. EXPORT_SYMBOL(bolero_runtime_resume);
  1088. int bolero_runtime_suspend(struct device *dev)
  1089. {
  1090. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1091. mutex_lock(&priv->vote_lock);
  1092. if (priv->lpass_core_hw_vote != NULL) {
  1093. if (--priv->core_hw_vote_count == 0)
  1094. clk_disable_unprepare(priv->lpass_core_hw_vote);
  1095. if (priv->core_hw_vote_count < 0)
  1096. priv->core_hw_vote_count = 0;
  1097. } else {
  1098. dev_dbg(dev, "%s: Invalid lpass core hw node\n",
  1099. __func__);
  1100. }
  1101. if (priv->lpass_audio_hw_vote != NULL) {
  1102. if (--priv->core_audio_vote_count == 0)
  1103. clk_disable_unprepare(priv->lpass_audio_hw_vote);
  1104. if (priv->core_audio_vote_count < 0)
  1105. priv->core_audio_vote_count = 0;
  1106. } else {
  1107. dev_dbg(dev, "%s: Invalid lpass audio hw node\n",
  1108. __func__);
  1109. }
  1110. mutex_unlock(&priv->vote_lock);
  1111. return 0;
  1112. }
  1113. EXPORT_SYMBOL(bolero_runtime_suspend);
  1114. bool bolero_check_core_votes(struct device *dev)
  1115. {
  1116. struct bolero_priv *priv = dev_get_drvdata(dev->parent);
  1117. bool ret = true;
  1118. mutex_lock(&priv->vote_lock);
  1119. if ((priv->lpass_core_hw_vote && !priv->core_hw_vote_count) ||
  1120. (priv->lpass_audio_hw_vote && !priv->core_audio_vote_count))
  1121. ret = false;
  1122. mutex_unlock(&priv->vote_lock);
  1123. return ret;
  1124. }
  1125. EXPORT_SYMBOL(bolero_check_core_votes);
  1126. static const struct of_device_id bolero_dt_match[] = {
  1127. {.compatible = "qcom,bolero-codec"},
  1128. {}
  1129. };
  1130. MODULE_DEVICE_TABLE(of, bolero_dt_match);
  1131. static struct platform_driver bolero_drv = {
  1132. .driver = {
  1133. .name = "bolero-codec",
  1134. .owner = THIS_MODULE,
  1135. .of_match_table = bolero_dt_match,
  1136. .suppress_bind_attrs = true,
  1137. },
  1138. .probe = bolero_probe,
  1139. .remove = bolero_remove,
  1140. };
  1141. static int bolero_drv_init(void)
  1142. {
  1143. return platform_driver_register(&bolero_drv);
  1144. }
  1145. static void bolero_drv_exit(void)
  1146. {
  1147. platform_driver_unregister(&bolero_drv);
  1148. }
  1149. static int __init bolero_init(void)
  1150. {
  1151. bolero_drv_init();
  1152. bolero_clk_rsc_mgr_init();
  1153. return 0;
  1154. }
  1155. module_init(bolero_init);
  1156. static void __exit bolero_exit(void)
  1157. {
  1158. bolero_clk_rsc_mgr_exit();
  1159. bolero_drv_exit();
  1160. }
  1161. module_exit(bolero_exit);
  1162. MODULE_DESCRIPTION("Bolero driver");
  1163. MODULE_LICENSE("GPL v2");