bolero-cdc.c 28 KB

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