lpass-cdc.c 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2018-2021, The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2022-2023, Qualcomm Innovation Center, Inc. All rights reserved.
  4. */
  5. #include <linux/of_platform.h>
  6. #include <linux/module.h>
  7. #include <linux/io.h>
  8. #include <linux/init.h>
  9. #include <linux/platform_device.h>
  10. #include <linux/printk.h>
  11. #include <linux/delay.h>
  12. #include <linux/kernel.h>
  13. #include <linux/clk.h>
  14. #include <soc/snd_event.h>
  15. #include <linux/pm_runtime.h>
  16. #include <soc/swr-common.h>
  17. #include <dsp/digital-cdc-rsc-mgr.h>
  18. #include "lpass-cdc.h"
  19. #include "internal.h"
  20. #include "lpass-cdc-clk-rsc.h"
  21. #include <linux/qti-regmap-debugfs.h>
  22. #define DRV_NAME "lpass-cdc"
  23. #define LPASS_CDC_VERSION_ENTRY_SIZE 32
  24. #define LPASS_CDC_STRING_LEN 80
  25. static const struct snd_soc_component_driver lpass_cdc;
  26. /* pm runtime auto suspend timer in msecs */
  27. #define LPASS_CDC_AUTO_SUSPEND_DELAY 100 /* delay in msec */
  28. /* MCLK_MUX table for all macros */
  29. static u16 lpass_cdc_mclk_mux_tbl[MAX_MACRO][MCLK_MUX_MAX] = {
  30. {TX_MACRO, VA_MACRO},
  31. {TX_MACRO, RX_MACRO},
  32. {TX_MACRO, WSA_MACRO},
  33. {TX_MACRO, VA_MACRO},
  34. };
  35. static bool lpass_cdc_is_valid_codec_dev(struct device *dev);
  36. int lpass_cdc_set_port_map(struct snd_soc_component *component,
  37. u32 size, void *data)
  38. {
  39. struct lpass_cdc_priv *priv = NULL;
  40. struct swr_mstr_port_map *map = NULL;
  41. u16 idx;
  42. if (!component || (size == 0) || !data)
  43. return -EINVAL;
  44. priv = snd_soc_component_get_drvdata(component);
  45. if (!priv)
  46. return -EINVAL;
  47. if (!lpass_cdc_is_valid_codec_dev(priv->dev)) {
  48. dev_err_ratelimited(priv->dev, "%s: invalid codec\n", __func__);
  49. return -EINVAL;
  50. }
  51. map = (struct swr_mstr_port_map *)data;
  52. for (idx = 0; idx < size; idx++) {
  53. if (priv->macro_params[map->id].set_port_map)
  54. priv->macro_params[map->id].set_port_map(component,
  55. map->uc,
  56. SWR_MSTR_PORT_LEN,
  57. map->swr_port_params);
  58. map += 1;
  59. }
  60. return 0;
  61. }
  62. EXPORT_SYMBOL(lpass_cdc_set_port_map);
  63. static void lpass_cdc_ahb_write_device(char __iomem *io_base,
  64. u16 reg, u8 value)
  65. {
  66. u32 temp = (u32)(value) & 0x000000FF;
  67. iowrite32(temp, io_base + reg);
  68. }
  69. static void lpass_cdc_ahb_read_device(char __iomem *io_base,
  70. u16 reg, u8 *value)
  71. {
  72. u32 temp;
  73. temp = ioread32(io_base + reg);
  74. *value = (u8)temp;
  75. }
  76. static int __lpass_cdc_reg_read(struct lpass_cdc_priv *priv,
  77. u16 macro_id, u16 reg, u8 *val)
  78. {
  79. int ret = 0;
  80. mutex_lock(&priv->clk_lock);
  81. if (!priv->dev_up) {
  82. dev_dbg_ratelimited(priv->dev,
  83. "%s: SSR in progress, exit\n", __func__);
  84. ret = -EINVAL;
  85. goto ssr_err;
  86. }
  87. if (priv->macro_params[VA_MACRO].dev) {
  88. pm_runtime_get_sync(priv->macro_params[VA_MACRO].dev);
  89. mutex_lock(&priv->vote_lock);
  90. if (((priv->lpass_core_hw_vote && !priv->core_hw_vote_count) ||
  91. (priv->lpass_audio_hw_vote && !priv->core_audio_vote_count))) {
  92. goto vote_err;
  93. }
  94. }
  95. lpass_cdc_ahb_read_device(
  96. priv->macro_params[macro_id].io_base, reg, val);
  97. vote_err:
  98. if (priv->macro_params[VA_MACRO].dev) {
  99. mutex_unlock(&priv->vote_lock);
  100. pm_runtime_mark_last_busy(priv->macro_params[VA_MACRO].dev);
  101. pm_runtime_put_autosuspend(priv->macro_params[VA_MACRO].dev);
  102. }
  103. ssr_err:
  104. mutex_unlock(&priv->clk_lock);
  105. return ret;
  106. }
  107. static int __lpass_cdc_reg_write(struct lpass_cdc_priv *priv,
  108. u16 macro_id, u16 reg, u8 val)
  109. {
  110. int ret = 0;
  111. mutex_lock(&priv->clk_lock);
  112. if (!priv->dev_up) {
  113. dev_dbg_ratelimited(priv->dev,
  114. "%s: SSR in progress, exit\n", __func__);
  115. ret = -EINVAL;
  116. goto ssr_err;
  117. }
  118. if (priv->macro_params[VA_MACRO].dev) {
  119. pm_runtime_get_sync(priv->macro_params[VA_MACRO].dev);
  120. mutex_lock(&priv->vote_lock);
  121. if (((priv->lpass_core_hw_vote && !priv->core_hw_vote_count) ||
  122. (priv->lpass_audio_hw_vote && !priv->core_audio_vote_count))) {
  123. goto vote_err;
  124. }
  125. }
  126. lpass_cdc_ahb_write_device(
  127. priv->macro_params[macro_id].io_base, reg, val);
  128. vote_err:
  129. if (priv->macro_params[VA_MACRO].dev) {
  130. mutex_unlock(&priv->vote_lock);
  131. pm_runtime_mark_last_busy(priv->macro_params[VA_MACRO].dev);
  132. pm_runtime_put_autosuspend(priv->macro_params[VA_MACRO].dev);
  133. }
  134. ssr_err:
  135. mutex_unlock(&priv->clk_lock);
  136. return ret;
  137. }
  138. static int lpass_cdc_update_wcd_event(void *handle, u16 event, u32 data)
  139. {
  140. struct lpass_cdc_priv *priv = (struct lpass_cdc_priv *)handle;
  141. if (!priv) {
  142. pr_err_ratelimited("%s:Invalid lpass_cdc priv handle\n", __func__);
  143. return -EINVAL;
  144. }
  145. switch (event) {
  146. case WCD_LPASS_CDC_EVT_RX_MUTE:
  147. if (priv->macro_params[RX_MACRO].event_handler)
  148. priv->macro_params[RX_MACRO].event_handler(
  149. priv->component,
  150. LPASS_CDC_MACRO_EVT_RX_MUTE, data);
  151. break;
  152. case WCD_LPASS_CDC_EVT_IMPED_TRUE:
  153. if (priv->macro_params[RX_MACRO].event_handler)
  154. priv->macro_params[RX_MACRO].event_handler(
  155. priv->component,
  156. LPASS_CDC_MACRO_EVT_IMPED_TRUE, data);
  157. break;
  158. case WCD_LPASS_CDC_EVT_IMPED_FALSE:
  159. if (priv->macro_params[RX_MACRO].event_handler)
  160. priv->macro_params[RX_MACRO].event_handler(
  161. priv->component,
  162. LPASS_CDC_MACRO_EVT_IMPED_FALSE, data);
  163. break;
  164. case WCD_LPASS_CDC_EVT_RX_COMPANDER_SOFT_RST:
  165. if (priv->macro_params[RX_MACRO].event_handler)
  166. priv->macro_params[RX_MACRO].event_handler(
  167. priv->component,
  168. LPASS_CDC_MACRO_EVT_RX_COMPANDER_SOFT_RST, data);
  169. break;
  170. case WCD_LPASS_CDC_EVT_BCS_CLK_OFF:
  171. if (priv->macro_params[TX_MACRO].event_handler)
  172. priv->macro_params[TX_MACRO].event_handler(
  173. priv->component,
  174. LPASS_CDC_MACRO_EVT_BCS_CLK_OFF, data);
  175. break;
  176. case WCD_LPASS_CDC_EVT_RX_PA_GAIN_UPDATE:
  177. if (priv->macro_params[RX_MACRO].event_handler)
  178. priv->macro_params[RX_MACRO].event_handler(
  179. priv->component,
  180. LPASS_CDC_MACRO_EVT_RX_PA_GAIN_UPDATE,
  181. data);
  182. break;
  183. case WCD_LPASS_CDC_EVT_HPHL_HD2_ENABLE:
  184. if (priv->macro_params[RX_MACRO].event_handler)
  185. priv->macro_params[RX_MACRO].event_handler(
  186. priv->component,
  187. LPASS_CDC_MACRO_EVT_HPHL_HD2_ENABLE, data);
  188. break;
  189. case WCD_LPASS_CDC_EVT_HPHR_HD2_ENABLE:
  190. if (priv->macro_params[RX_MACRO].event_handler)
  191. priv->macro_params[RX_MACRO].event_handler(
  192. priv->component,
  193. LPASS_CDC_MACRO_EVT_HPHR_HD2_ENABLE, data);
  194. break;
  195. default:
  196. dev_err_ratelimited(priv->dev, "%s: Invalid event %d trigger from wcd\n",
  197. __func__, event);
  198. return -EINVAL;
  199. }
  200. return 0;
  201. }
  202. static int lpass_cdc_register_notifier(void *handle,
  203. struct notifier_block *nblock,
  204. bool enable)
  205. {
  206. struct lpass_cdc_priv *priv = (struct lpass_cdc_priv *)handle;
  207. if (!priv || !nblock) {
  208. pr_err_ratelimited("%s: lpass_cdc priv or nblock 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 lpass_cdc_notifier_call(struct lpass_cdc_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 lpass_cdc_is_valid_child_dev(struct device *dev)
  225. {
  226. if (of_device_is_compatible(dev->parent->of_node, "qcom,lpass-cdc"))
  227. return true;
  228. return false;
  229. }
  230. static bool lpass_cdc_is_valid_codec_dev(struct device *dev)
  231. {
  232. if (of_device_is_compatible(dev->of_node, "qcom,lpass-cdc"))
  233. return true;
  234. return false;
  235. }
  236. /**
  237. * lpass_cdc_clear_amic_tx_hold - clears AMIC register on analog codec
  238. *
  239. * @dev: lpass_cdc device ptr.
  240. *
  241. */
  242. void lpass_cdc_clear_amic_tx_hold(struct device *dev, u16 adc_n)
  243. {
  244. struct lpass_cdc_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 (!lpass_cdc_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 = LPASS_CDC_WCD_EVT_TX_CH_HOLD_CLEAR;
  261. if (adc_n == LPASS_CDC_ADC0)
  262. amic = 0x1;
  263. else if (adc_n == LPASS_CDC_ADC1)
  264. amic = 0x2;
  265. else if (adc_n == LPASS_CDC_ADC2)
  266. amic = 0x2;
  267. else if (adc_n == LPASS_CDC_ADC3)
  268. amic = 0x3;
  269. else
  270. return;
  271. lpass_cdc_notifier_call(priv, (amic << 0x10 | event));
  272. }
  273. EXPORT_SYMBOL(lpass_cdc_clear_amic_tx_hold);
  274. /**
  275. * lpass_cdc_get_device_ptr - Get child or macro device ptr
  276. *
  277. * @dev: lpass_cdc 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 *lpass_cdc_get_device_ptr(struct device *dev, u16 macro_id)
  283. {
  284. struct lpass_cdc_priv *priv;
  285. if (!dev) {
  286. pr_err_ratelimited("%s: dev is null\n", __func__);
  287. return NULL;
  288. }
  289. if (!lpass_cdc_is_valid_codec_dev(dev)) {
  290. pr_err_ratelimited("%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_ratelimited(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(lpass_cdc_get_device_ptr);
  301. /**
  302. * lpass_cdc_get_rsc_clk_device_ptr - Get rsc clk device ptr
  303. *
  304. * @dev: lpass_cdc device ptr.
  305. *
  306. * Returns dev ptr on success or NULL on error.
  307. */
  308. struct device *lpass_cdc_get_rsc_clk_device_ptr(struct device *dev)
  309. {
  310. struct lpass_cdc_priv *priv;
  311. if (!dev) {
  312. pr_err_ratelimited("%s: dev is null\n", __func__);
  313. return NULL;
  314. }
  315. if (!lpass_cdc_is_valid_codec_dev(dev)) {
  316. pr_err_ratelimited("%s: invalid codec\n", __func__);
  317. return NULL;
  318. }
  319. priv = dev_get_drvdata(dev);
  320. if (!priv) {
  321. dev_err_ratelimited(dev, "%s: priv is null\n", __func__);
  322. return NULL;
  323. }
  324. return priv->clk_dev;
  325. }
  326. EXPORT_SYMBOL(lpass_cdc_get_rsc_clk_device_ptr);
  327. static int lpass_cdc_copy_dais_from_macro(struct lpass_cdc_priv *priv)
  328. {
  329. struct snd_soc_dai_driver *dai_ptr;
  330. u16 macro_idx;
  331. /* memcpy into lpass_cdc_dais all macro dais */
  332. if (!priv->lpass_cdc_dais)
  333. priv->lpass_cdc_dais = devm_kzalloc(priv->dev,
  334. priv->num_dais *
  335. sizeof(
  336. struct snd_soc_dai_driver),
  337. GFP_KERNEL);
  338. if (!priv->lpass_cdc_dais)
  339. return -ENOMEM;
  340. dai_ptr = priv->lpass_cdc_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. * lpass_cdc_register_res_clk - Registers rsc clk driver to lpass_cdc
  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 lpass_cdc_register_res_clk(struct device *dev, rsc_clk_cb_t rsc_clk_cb)
  361. {
  362. struct lpass_cdc_priv *priv;
  363. if (!dev || !rsc_clk_cb) {
  364. pr_err_ratelimited("%s: dev or rsc_clk_cb is null\n", __func__);
  365. return -EINVAL;
  366. }
  367. if (!lpass_cdc_is_valid_child_dev(dev)) {
  368. dev_err_ratelimited(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_ratelimited(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(lpass_cdc_register_res_clk);
  382. /**
  383. * lpass_cdc_unregister_res_clk - Unregisters rsc clk driver from lpass_cdc
  384. *
  385. * @dev: resource clk device ptr.
  386. */
  387. void lpass_cdc_unregister_res_clk(struct device *dev)
  388. {
  389. struct lpass_cdc_priv *priv;
  390. if (!dev) {
  391. pr_err_ratelimited("%s: dev is NULL\n", __func__);
  392. return;
  393. }
  394. if (!lpass_cdc_is_valid_child_dev(dev)) {
  395. dev_err_ratelimited(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_ratelimited(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(lpass_cdc_unregister_res_clk);
  408. static u8 lpass_cdc_dmic_clk_div_get(struct snd_soc_component *component,
  409. u32 mode)
  410. {
  411. struct lpass_cdc_priv* priv = snd_soc_component_get_drvdata(component);
  412. int macro = (mode ? VA_MACRO : TX_MACRO);
  413. int ret = 0;
  414. if (priv->macro_params[macro].clk_div_get) {
  415. ret = priv->macro_params[macro].clk_div_get(component);
  416. if (ret >= 0)
  417. return ret;
  418. }
  419. return 1;
  420. }
  421. int lpass_cdc_dmic_clk_enable(struct snd_soc_component *component,
  422. u32 dmic, u32 tx_mode, bool enable)
  423. {
  424. struct lpass_cdc_priv* priv = snd_soc_component_get_drvdata(component);
  425. u8 dmic_clk_en = 0x01;
  426. u16 dmic_clk_reg = 0;
  427. s32 *dmic_clk_cnt = NULL;
  428. u8 *dmic_clk_div = NULL;
  429. u8 freq_change_mask = 0;
  430. u8 clk_div = 0;
  431. dev_dbg(component->dev, "%s: enable: %d, tx_mode:%d, dmic: %d\n",
  432. __func__, enable, tx_mode, dmic);
  433. switch (dmic) {
  434. case 0:
  435. case 1:
  436. dmic_clk_cnt = &(priv->dmic_0_1_clk_cnt);
  437. dmic_clk_div = &(priv->dmic_0_1_clk_div);
  438. dmic_clk_reg = LPASS_CDC_VA_TOP_CSR_DMIC0_CTL;
  439. freq_change_mask = 0x01;
  440. break;
  441. case 2:
  442. case 3:
  443. dmic_clk_cnt = &(priv->dmic_2_3_clk_cnt);
  444. dmic_clk_div = &(priv->dmic_2_3_clk_div);
  445. dmic_clk_reg = LPASS_CDC_VA_TOP_CSR_DMIC1_CTL;
  446. freq_change_mask = 0x02;
  447. break;
  448. case 4:
  449. case 5:
  450. dmic_clk_cnt = &(priv->dmic_4_5_clk_cnt);
  451. dmic_clk_div = &(priv->dmic_4_5_clk_div);
  452. dmic_clk_reg = LPASS_CDC_VA_TOP_CSR_DMIC2_CTL;
  453. freq_change_mask = 0x04;
  454. break;
  455. case 6:
  456. case 7:
  457. dmic_clk_cnt = &(priv->dmic_6_7_clk_cnt);
  458. dmic_clk_div = &(priv->dmic_6_7_clk_div);
  459. dmic_clk_reg = LPASS_CDC_VA_TOP_CSR_DMIC3_CTL;
  460. freq_change_mask = 0x08;
  461. break;
  462. default:
  463. dev_err_ratelimited(component->dev, "%s: Invalid DMIC Selection\n",
  464. __func__);
  465. return -EINVAL;
  466. }
  467. dev_dbg(component->dev, "%s: DMIC%d dmic_clk_cnt %d\n",
  468. __func__, dmic, *dmic_clk_cnt);
  469. if (enable) {
  470. clk_div = lpass_cdc_dmic_clk_div_get(component, tx_mode);
  471. (*dmic_clk_cnt)++;
  472. if (*dmic_clk_cnt == 1) {
  473. snd_soc_component_update_bits(component,
  474. LPASS_CDC_VA_TOP_CSR_DMIC_CFG,
  475. 0x80, 0x00);
  476. snd_soc_component_update_bits(component, dmic_clk_reg,
  477. 0x0E, clk_div << 0x1);
  478. snd_soc_component_update_bits(component, dmic_clk_reg,
  479. dmic_clk_en, dmic_clk_en);
  480. } else {
  481. if (*dmic_clk_div > clk_div) {
  482. snd_soc_component_update_bits(component,
  483. LPASS_CDC_VA_TOP_CSR_DMIC_CFG,
  484. freq_change_mask, freq_change_mask);
  485. snd_soc_component_update_bits(component, dmic_clk_reg,
  486. 0x0E, clk_div << 0x1);
  487. snd_soc_component_update_bits(component,
  488. LPASS_CDC_VA_TOP_CSR_DMIC_CFG,
  489. freq_change_mask, 0x00);
  490. } else {
  491. clk_div = *dmic_clk_div;
  492. }
  493. }
  494. *dmic_clk_div = clk_div;
  495. } else {
  496. (*dmic_clk_cnt)--;
  497. if (*dmic_clk_cnt == 0) {
  498. snd_soc_component_update_bits(component, dmic_clk_reg,
  499. dmic_clk_en, 0);
  500. clk_div = 0;
  501. snd_soc_component_update_bits(component, dmic_clk_reg,
  502. 0x0E, clk_div << 0x1);
  503. } else {
  504. clk_div = lpass_cdc_dmic_clk_div_get(component, tx_mode);
  505. if (*dmic_clk_div > clk_div) {
  506. clk_div = lpass_cdc_dmic_clk_div_get(component, !tx_mode);
  507. snd_soc_component_update_bits(component,
  508. LPASS_CDC_VA_TOP_CSR_DMIC_CFG,
  509. freq_change_mask, freq_change_mask);
  510. snd_soc_component_update_bits(component, dmic_clk_reg,
  511. 0x0E, clk_div << 0x1);
  512. snd_soc_component_update_bits(component,
  513. LPASS_CDC_VA_TOP_CSR_DMIC_CFG,
  514. freq_change_mask, 0x00);
  515. } else {
  516. clk_div = *dmic_clk_div;
  517. }
  518. }
  519. *dmic_clk_div = clk_div;
  520. }
  521. return 0;
  522. }
  523. EXPORT_SYMBOL(lpass_cdc_dmic_clk_enable);
  524. bool lpass_cdc_is_va_macro_registered(struct device *dev)
  525. {
  526. struct lpass_cdc_priv *priv;
  527. if (!dev) {
  528. pr_err_ratelimited("%s: dev is null\n", __func__);
  529. return false;
  530. }
  531. if (!lpass_cdc_is_valid_child_dev(dev)) {
  532. dev_err_ratelimited(dev, "%s: child device calling is not added yet\n",
  533. __func__);
  534. return false;
  535. }
  536. priv = dev_get_drvdata(dev->parent);
  537. if (!priv) {
  538. dev_err_ratelimited(dev, "%s: priv is null\n", __func__);
  539. return false;
  540. }
  541. return priv->macros_supported[VA_MACRO];
  542. }
  543. EXPORT_SYMBOL(lpass_cdc_is_va_macro_registered);
  544. /**
  545. * lpass_cdc_register_macro - Registers macro to lpass_cdc
  546. *
  547. * @dev: macro device ptr.
  548. * @macro_id: ID of macro calling this API.
  549. * @ops: macro params to register.
  550. *
  551. * Returns 0 on success or -EINVAL on error.
  552. */
  553. int lpass_cdc_register_macro(struct device *dev, u16 macro_id,
  554. struct macro_ops *ops)
  555. {
  556. struct lpass_cdc_priv *priv;
  557. int ret = -EINVAL;
  558. if (!dev || !ops) {
  559. pr_err("%s: dev or ops is null\n", __func__);
  560. return -EINVAL;
  561. }
  562. if (!lpass_cdc_is_valid_child_dev(dev)) {
  563. dev_err(dev, "%s: child device for macro:%d not added yet\n",
  564. __func__, macro_id);
  565. return -EINVAL;
  566. }
  567. priv = dev_get_drvdata(dev->parent);
  568. if (!priv || (macro_id >= MAX_MACRO)) {
  569. dev_err(dev, "%s: priv is null or invalid macro\n", __func__);
  570. return -EINVAL;
  571. }
  572. priv->macro_params[macro_id].clk_id_req = ops->clk_id_req;
  573. priv->macro_params[macro_id].default_clk_id = ops->default_clk_id;
  574. priv->macro_params[macro_id].init = ops->init;
  575. priv->macro_params[macro_id].exit = ops->exit;
  576. priv->macro_params[macro_id].io_base = ops->io_base;
  577. priv->macro_params[macro_id].num_dais = ops->num_dais;
  578. priv->macro_params[macro_id].dai_ptr = ops->dai_ptr;
  579. priv->macro_params[macro_id].event_handler = ops->event_handler;
  580. priv->macro_params[macro_id].set_port_map = ops->set_port_map;
  581. priv->macro_params[macro_id].dev = dev;
  582. priv->current_mclk_mux_macro[macro_id] =
  583. lpass_cdc_mclk_mux_tbl[macro_id][MCLK_MUX0];
  584. if (macro_id == TX_MACRO) {
  585. priv->macro_params[macro_id].reg_wake_irq = ops->reg_wake_irq;
  586. priv->macro_params[macro_id].reg_evt_listener =
  587. ops->reg_evt_listener;
  588. priv->macro_params[macro_id].clk_enable = ops->clk_enable;
  589. }
  590. if (macro_id == TX_MACRO || macro_id == VA_MACRO)
  591. priv->macro_params[macro_id].clk_div_get = ops->clk_div_get;
  592. if (macro_id == VA_MACRO)
  593. priv->macro_params[macro_id].reg_wake_irq =
  594. ops->reg_wake_irq;
  595. mutex_lock(&priv->macro_lock);
  596. priv->num_dais += ops->num_dais;
  597. priv->num_macros_registered++;
  598. priv->macros_supported[macro_id] = true;
  599. dev_info(dev, "%s: register macro successful:%d\n", __func__, macro_id);
  600. if (priv->num_macros_registered == priv->num_macros) {
  601. ret = lpass_cdc_copy_dais_from_macro(priv);
  602. if (ret < 0) {
  603. dev_err(dev, "%s: copy_dais failed\n", __func__);
  604. mutex_unlock(&priv->macro_lock);
  605. return ret;
  606. }
  607. if (priv->macros_supported[TX_MACRO] == false) {
  608. lpass_cdc_mclk_mux_tbl[WSA_MACRO][MCLK_MUX0] = WSA_MACRO;
  609. priv->current_mclk_mux_macro[WSA_MACRO] = WSA_MACRO;
  610. lpass_cdc_mclk_mux_tbl[VA_MACRO][MCLK_MUX0] = VA_MACRO;
  611. priv->current_mclk_mux_macro[VA_MACRO] = VA_MACRO;
  612. }
  613. ret = snd_soc_register_component(dev->parent, &lpass_cdc,
  614. priv->lpass_cdc_dais, priv->num_dais);
  615. if (ret < 0) {
  616. dev_err(dev, "%s: register codec failed\n", __func__);
  617. mutex_unlock(&priv->macro_lock);
  618. return ret;
  619. }
  620. }
  621. mutex_unlock(&priv->macro_lock);
  622. return 0;
  623. }
  624. EXPORT_SYMBOL(lpass_cdc_register_macro);
  625. /**
  626. * lpass_cdc_unregister_macro - De-Register macro from lpass_cdc
  627. *
  628. * @dev: macro device ptr.
  629. * @macro_id: ID of macro calling this API.
  630. *
  631. */
  632. void lpass_cdc_unregister_macro(struct device *dev, u16 macro_id)
  633. {
  634. struct lpass_cdc_priv *priv;
  635. if (!dev) {
  636. pr_err_ratelimited("%s: dev is null\n", __func__);
  637. return;
  638. }
  639. if (!lpass_cdc_is_valid_child_dev(dev)) {
  640. dev_err_ratelimited(dev, "%s: macro:%d not in valid registered macro-list\n",
  641. __func__, macro_id);
  642. return;
  643. }
  644. priv = dev_get_drvdata(dev->parent);
  645. if (!priv || (macro_id >= MAX_MACRO)) {
  646. dev_err_ratelimited(dev, "%s: priv is null or invalid macro\n", __func__);
  647. return;
  648. }
  649. priv->macro_params[macro_id].init = NULL;
  650. priv->macro_params[macro_id].num_dais = 0;
  651. priv->macro_params[macro_id].dai_ptr = NULL;
  652. priv->macro_params[macro_id].event_handler = NULL;
  653. priv->macro_params[macro_id].dev = NULL;
  654. if (macro_id == TX_MACRO) {
  655. priv->macro_params[macro_id].reg_wake_irq = NULL;
  656. priv->macro_params[macro_id].reg_evt_listener = NULL;
  657. priv->macro_params[macro_id].clk_enable = NULL;
  658. }
  659. if (macro_id == TX_MACRO || macro_id == VA_MACRO)
  660. priv->macro_params[macro_id].clk_div_get = NULL;
  661. priv->num_dais -= priv->macro_params[macro_id].num_dais;
  662. priv->num_macros_registered--;
  663. /* UNREGISTER CODEC HERE */
  664. if (priv->num_macros - 1 == priv->num_macros_registered)
  665. snd_soc_unregister_component(dev->parent);
  666. }
  667. EXPORT_SYMBOL(lpass_cdc_unregister_macro);
  668. void lpass_cdc_notify_wcd_rx_clk(struct device *dev, bool is_native_on)
  669. {
  670. struct lpass_cdc_priv *priv;
  671. u32 val;
  672. if (!dev) {
  673. pr_err_ratelimited("%s: dev is null\n", __func__);
  674. return;
  675. }
  676. if (!lpass_cdc_is_valid_child_dev(dev)) {
  677. dev_err_ratelimited(dev, "%s: not a valid child dev\n",
  678. __func__);
  679. return;
  680. }
  681. priv = dev_get_drvdata(dev->parent);
  682. if (!priv) {
  683. dev_err_ratelimited(dev, "%s: priv is null\n", __func__);
  684. return;
  685. }
  686. if (is_native_on)
  687. val = 0x2; /* 11.2896M */
  688. else
  689. val = 0x0; /* 9.6M */
  690. lpass_cdc_notifier_call(priv,
  691. ((val << 16) | LPASS_CDC_WCD_EVT_CLK_NOTIFY));
  692. }
  693. EXPORT_SYMBOL(lpass_cdc_notify_wcd_rx_clk);
  694. void lpass_cdc_wsa_pa_on(struct device *dev, bool adie_lb)
  695. {
  696. struct lpass_cdc_priv *priv;
  697. if (!dev) {
  698. pr_err_ratelimited("%s: dev is null\n", __func__);
  699. return;
  700. }
  701. if (!lpass_cdc_is_valid_child_dev(dev)) {
  702. dev_err_ratelimited(dev, "%s: not a valid child dev\n",
  703. __func__);
  704. return;
  705. }
  706. priv = dev_get_drvdata(dev->parent);
  707. if (!priv) {
  708. dev_err_ratelimited(dev, "%s: priv is null\n", __func__);
  709. return;
  710. }
  711. if (adie_lb)
  712. lpass_cdc_notifier_call(priv,
  713. LPASS_CDC_WCD_EVT_PA_ON_POST_FSCLK_ADIE_LB);
  714. else
  715. lpass_cdc_notifier_call(priv,
  716. LPASS_CDC_WCD_EVT_PA_ON_POST_FSCLK);
  717. }
  718. EXPORT_SYMBOL(lpass_cdc_wsa_pa_on);
  719. int lpass_cdc_get_version(struct device *dev)
  720. {
  721. struct lpass_cdc_priv *priv;
  722. if (!dev) {
  723. pr_err("%s: dev is null\n", __func__);
  724. return -EINVAL;
  725. }
  726. if (!lpass_cdc_is_valid_child_dev(dev)) {
  727. dev_err(dev, "%s: child device for macro not added yet\n",
  728. __func__);
  729. return -EINVAL;
  730. }
  731. priv = dev_get_drvdata(dev->parent);
  732. if (!priv) {
  733. dev_err(dev, "%s: priv is null\n", __func__);
  734. return -EINVAL;
  735. }
  736. return priv->version;
  737. }
  738. EXPORT_SYMBOL(lpass_cdc_get_version);
  739. static ssize_t lpass_cdc_version_read(struct snd_info_entry *entry,
  740. void *file_private_data,
  741. struct file *file,
  742. char __user *buf, size_t count,
  743. loff_t pos)
  744. {
  745. struct lpass_cdc_priv *priv;
  746. char buffer[LPASS_CDC_VERSION_ENTRY_SIZE];
  747. int len = 0;
  748. priv = (struct lpass_cdc_priv *) entry->private_data;
  749. if (!priv) {
  750. pr_err_ratelimited("%s: lpass_cdc priv is null\n", __func__);
  751. return -EINVAL;
  752. }
  753. switch (priv->version) {
  754. case LPASS_CDC_VERSION_1_0:
  755. len = snprintf(buffer, sizeof(buffer), "LPASS-CDC_1_0\n");
  756. break;
  757. case LPASS_CDC_VERSION_1_1:
  758. len = snprintf(buffer, sizeof(buffer), "LPASS-CDC_1_1\n");
  759. break;
  760. case LPASS_CDC_VERSION_1_2:
  761. len = snprintf(buffer, sizeof(buffer), "LPASS-CDC_1_2\n");
  762. break;
  763. case LPASS_CDC_VERSION_2_1:
  764. len = snprintf(buffer, sizeof(buffer), "LPASS-CDC_2_1\n");
  765. break;
  766. case LPASS_CDC_VERSION_2_5:
  767. len = snprintf(buffer, sizeof(buffer), "LPASS-CDC_2_5\n");
  768. break;
  769. case LPASS_CDC_VERSION_2_6:
  770. len = snprintf(buffer, sizeof(buffer), "LPASS-CDC_2_6\n");
  771. break;
  772. default:
  773. len = snprintf(buffer, sizeof(buffer), "VER_UNDEFINED\n");
  774. }
  775. return simple_read_from_buffer(buf, count, &pos, buffer, len);
  776. }
  777. static int lpass_cdc_ssr_enable(struct device *dev, void *data)
  778. {
  779. struct lpass_cdc_priv *priv = data;
  780. int macro_idx;
  781. if (priv->initial_boot) {
  782. priv->initial_boot = false;
  783. return 0;
  784. }
  785. if (priv->rsc_clk_cb)
  786. priv->rsc_clk_cb(priv->clk_dev, LPASS_CDC_MACRO_EVT_SSR_UP);
  787. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  788. if (priv->macro_params[macro_idx].event_handler)
  789. priv->macro_params[macro_idx].event_handler(
  790. priv->component,
  791. LPASS_CDC_MACRO_EVT_CLK_RESET, 0x0);
  792. }
  793. trace_printk("%s: clk count reset\n", __func__);
  794. mutex_lock(&priv->clk_lock);
  795. priv->pre_dev_up = true;
  796. mutex_unlock(&priv->clk_lock);
  797. if (priv->rsc_clk_cb)
  798. priv->rsc_clk_cb(priv->clk_dev, LPASS_CDC_MACRO_EVT_SSR_GFMUX_UP);
  799. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  800. if (!priv->macro_params[macro_idx].event_handler)
  801. continue;
  802. priv->macro_params[macro_idx].event_handler(
  803. priv->component,
  804. LPASS_CDC_MACRO_EVT_PRE_SSR_UP, 0x0);
  805. }
  806. regcache_cache_only(priv->regmap, false);
  807. mutex_lock(&priv->clk_lock);
  808. priv->dev_up = true;
  809. mutex_unlock(&priv->clk_lock);
  810. regcache_mark_dirty(priv->regmap);
  811. lpass_cdc_clk_rsc_enable_all_clocks(priv->clk_dev, true);
  812. regcache_sync(priv->regmap);
  813. /* Add a 100usec sleep to ensure last register write is done */
  814. usleep_range(100,110);
  815. lpass_cdc_clk_rsc_enable_all_clocks(priv->clk_dev, false);
  816. trace_printk("%s: regcache_sync done\n", __func__);
  817. /* call ssr event for supported macros */
  818. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  819. if (!priv->macro_params[macro_idx].event_handler)
  820. continue;
  821. priv->macro_params[macro_idx].event_handler(
  822. priv->component,
  823. LPASS_CDC_MACRO_EVT_SSR_UP, 0x0);
  824. }
  825. trace_printk("%s: SSR up events processed by all macros\n", __func__);
  826. lpass_cdc_notifier_call(priv, LPASS_CDC_WCD_EVT_SSR_UP);
  827. return 0;
  828. }
  829. static void lpass_cdc_ssr_disable(struct device *dev, void *data)
  830. {
  831. struct lpass_cdc_priv *priv = data;
  832. int macro_idx;
  833. if (!priv->dev_up) {
  834. dev_err_ratelimited(priv->dev,
  835. "%s: already disabled\n", __func__);
  836. return;
  837. }
  838. lpass_cdc_notifier_call(priv, LPASS_CDC_WCD_EVT_PA_OFF_PRE_SSR);
  839. regcache_cache_only(priv->regmap, true);
  840. mutex_lock(&priv->clk_lock);
  841. priv->dev_up = false;
  842. priv->pre_dev_up = false;
  843. mutex_unlock(&priv->clk_lock);
  844. if (priv->rsc_clk_cb)
  845. priv->rsc_clk_cb(priv->clk_dev, LPASS_CDC_MACRO_EVT_SSR_DOWN);
  846. /* call ssr event for supported macros */
  847. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  848. if (!priv->macro_params[macro_idx].event_handler)
  849. continue;
  850. priv->macro_params[macro_idx].event_handler(
  851. priv->component,
  852. LPASS_CDC_MACRO_EVT_SSR_DOWN, 0x0);
  853. }
  854. lpass_cdc_notifier_call(priv, LPASS_CDC_WCD_EVT_SSR_DOWN);
  855. }
  856. static struct snd_info_entry_ops lpass_cdc_info_ops = {
  857. .read = lpass_cdc_version_read,
  858. };
  859. static const struct snd_event_ops lpass_cdc_ssr_ops = {
  860. .enable = lpass_cdc_ssr_enable,
  861. .disable = lpass_cdc_ssr_disable,
  862. };
  863. /*
  864. * lpass_cdc_info_create_codec_entry - creates lpass_cdc module
  865. * @codec_root: The parent directory
  866. * @component: Codec component instance
  867. *
  868. * Creates lpass_cdc module and version entry under the given
  869. * parent directory.
  870. *
  871. * Return: 0 on success or negative error code on failure.
  872. */
  873. int lpass_cdc_info_create_codec_entry(struct snd_info_entry *codec_root,
  874. struct snd_soc_component *component)
  875. {
  876. struct snd_info_entry *version_entry;
  877. struct lpass_cdc_priv *priv;
  878. struct snd_soc_card *card;
  879. if (!codec_root || !component)
  880. return -EINVAL;
  881. priv = snd_soc_component_get_drvdata(component);
  882. if (priv->entry) {
  883. dev_dbg(priv->dev,
  884. "%s:lpass_cdc module already created\n", __func__);
  885. return 0;
  886. }
  887. card = component->card;
  888. priv->entry = snd_info_create_module_entry(codec_root->module,
  889. "lpass-cdc", codec_root);
  890. if (!priv->entry) {
  891. dev_dbg(component->dev, "%s: failed to create lpass_cdc entry\n",
  892. __func__);
  893. return -ENOMEM;
  894. }
  895. priv->entry->mode = S_IFDIR | 0555;
  896. if (snd_info_register(priv->entry) < 0) {
  897. snd_info_free_entry(priv->entry);
  898. return -ENOMEM;
  899. }
  900. version_entry = snd_info_create_card_entry(card->snd_card,
  901. "version",
  902. priv->entry);
  903. if (!version_entry) {
  904. dev_err_ratelimited(component->dev, "%s: failed to create lpass_cdc version entry\n",
  905. __func__);
  906. snd_info_free_entry(priv->entry);
  907. return -ENOMEM;
  908. }
  909. version_entry->private_data = priv;
  910. version_entry->size = LPASS_CDC_VERSION_ENTRY_SIZE;
  911. version_entry->content = SNDRV_INFO_CONTENT_DATA;
  912. version_entry->c.ops = &lpass_cdc_info_ops;
  913. if (snd_info_register(version_entry) < 0) {
  914. snd_info_free_entry(version_entry);
  915. snd_info_free_entry(priv->entry);
  916. return -ENOMEM;
  917. }
  918. priv->version_entry = version_entry;
  919. return 0;
  920. }
  921. EXPORT_SYMBOL(lpass_cdc_info_create_codec_entry);
  922. /**
  923. * lpass_cdc_register_wake_irq - Register wake irq of Tx macro
  924. *
  925. * @component: codec component ptr.
  926. * @ipc_wakeup: bool to identify ipc_wakeup to be used or HW interrupt line.
  927. *
  928. * Return: 0 on success or negative error code on failure.
  929. */
  930. int lpass_cdc_register_wake_irq(struct snd_soc_component *component,
  931. u32 ipc_wakeup)
  932. {
  933. struct lpass_cdc_priv *priv = NULL;
  934. if (!component)
  935. return -EINVAL;
  936. priv = snd_soc_component_get_drvdata(component);
  937. if (!priv)
  938. return -EINVAL;
  939. if (!lpass_cdc_is_valid_codec_dev(priv->dev)) {
  940. dev_err_ratelimited(component->dev, "%s: invalid codec\n", __func__);
  941. return -EINVAL;
  942. }
  943. if (priv->macro_params[VA_MACRO].reg_wake_irq)
  944. priv->macro_params[VA_MACRO].reg_wake_irq(
  945. component, ipc_wakeup);
  946. return 0;
  947. }
  948. EXPORT_SYMBOL(lpass_cdc_register_wake_irq);
  949. /**
  950. * lpass_cdc_tx_mclk_enable - Enable/Disable TX Macro mclk
  951. *
  952. * @component: pointer to codec component instance.
  953. * @enable: set true to enable, otherwise false.
  954. *
  955. * Returns 0 on success or -EINVAL on error.
  956. */
  957. int lpass_cdc_tx_mclk_enable(struct snd_soc_component *component,
  958. bool enable)
  959. {
  960. struct lpass_cdc_priv *priv = NULL;
  961. int ret = 0;
  962. if (!component)
  963. return -EINVAL;
  964. priv = snd_soc_component_get_drvdata(component);
  965. if (!priv)
  966. return -EINVAL;
  967. if (!lpass_cdc_is_valid_codec_dev(priv->dev)) {
  968. dev_err_ratelimited(component->dev, "%s: invalid codec\n", __func__);
  969. return -EINVAL;
  970. }
  971. if (priv->macro_params[TX_MACRO].clk_enable)
  972. ret = priv->macro_params[TX_MACRO].clk_enable(component,
  973. enable);
  974. return ret;
  975. }
  976. EXPORT_SYMBOL(lpass_cdc_tx_mclk_enable);
  977. /**
  978. * lpass_cdc_register_event_listener - Register/Deregister to event listener
  979. *
  980. * @component: pointer to codec component instance.
  981. * @enable: when set to 1 registers to event listener otherwise, derigisters
  982. * from the event listener
  983. *
  984. * Returns 0 on success or -EINVAL on error.
  985. */
  986. int lpass_cdc_register_event_listener(struct snd_soc_component *component,
  987. bool enable)
  988. {
  989. struct lpass_cdc_priv *priv = NULL;
  990. int ret = 0;
  991. if (!component)
  992. return -EINVAL;
  993. priv = snd_soc_component_get_drvdata(component);
  994. if (!priv)
  995. return -EINVAL;
  996. if (!lpass_cdc_is_valid_codec_dev(priv->dev)) {
  997. dev_err_ratelimited(component->dev, "%s: invalid codec\n", __func__);
  998. return -EINVAL;
  999. }
  1000. if (priv->macro_params[TX_MACRO].reg_evt_listener)
  1001. ret = priv->macro_params[TX_MACRO].reg_evt_listener(component,
  1002. enable);
  1003. return ret;
  1004. }
  1005. EXPORT_SYMBOL(lpass_cdc_register_event_listener);
  1006. static int lpass_cdc_soc_codec_probe(struct snd_soc_component *component)
  1007. {
  1008. struct lpass_cdc_priv *priv = dev_get_drvdata(component->dev);
  1009. int macro_idx, ret = 0;
  1010. u8 core_id_0 = 0, core_id_1 = 0, core_id_2 = 0;
  1011. snd_soc_component_init_regmap(component, priv->regmap);
  1012. if (!priv->version) {
  1013. /*
  1014. * In order for the ADIE RTC to differentiate between targets
  1015. * version info is used.
  1016. * Assign 1.0 for target with only one macro
  1017. * Assign 1.1 for target with two macros
  1018. * Assign 1.2 for target with more than two macros
  1019. */
  1020. if (priv->num_macros_registered == 1)
  1021. priv->version = LPASS_CDC_VERSION_1_0;
  1022. else if (priv->num_macros_registered == 2)
  1023. priv->version = LPASS_CDC_VERSION_1_1;
  1024. else if (priv->num_macros_registered > 2)
  1025. priv->version = LPASS_CDC_VERSION_1_2;
  1026. }
  1027. /* Assign lpass_cdc version */
  1028. core_id_0 = snd_soc_component_read(component,
  1029. LPASS_CDC_VA_TOP_CSR_CORE_ID_0);
  1030. core_id_1 = snd_soc_component_read(component,
  1031. LPASS_CDC_VA_TOP_CSR_CORE_ID_1);
  1032. core_id_2 = snd_soc_component_read(component,
  1033. LPASS_CDC_VA_TOP_CSR_CORE_ID_2);
  1034. if ((core_id_0 == 0x01) && (core_id_1 == 0x0F))
  1035. priv->version = LPASS_CDC_VERSION_2_0;
  1036. if ((core_id_0 == 0x02) && (core_id_1 == 0x0E))
  1037. priv->version = LPASS_CDC_VERSION_2_1;
  1038. if ((core_id_0 == 0x02) && (core_id_1 == 0x0F))
  1039. priv->version = LPASS_CDC_VERSION_2_5;
  1040. if ((core_id_0 == 0x02) && (core_id_1 == 0x0F) && (core_id_2 == 0x60 || core_id_2 == 0x61))
  1041. priv->version = LPASS_CDC_VERSION_2_6;
  1042. /* call init for supported macros */
  1043. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  1044. if (priv->macro_params[macro_idx].init) {
  1045. ret = priv->macro_params[macro_idx].init(component);
  1046. if (ret < 0) {
  1047. dev_err(component->dev,
  1048. "%s: init for macro %d failed\n",
  1049. __func__, macro_idx);
  1050. goto err;
  1051. }
  1052. }
  1053. }
  1054. priv->component = component;
  1055. ret = snd_event_client_register(priv->dev, &lpass_cdc_ssr_ops, priv);
  1056. if (!ret) {
  1057. snd_event_notify(priv->dev, SND_EVENT_UP);
  1058. } else {
  1059. dev_err(component->dev,
  1060. "%s: Registration with SND event FWK failed ret = %d\n",
  1061. __func__, ret);
  1062. goto err;
  1063. }
  1064. dev_dbg(component->dev, "%s: lpass_cdc soc codec probe success\n",
  1065. __func__);
  1066. err:
  1067. return ret;
  1068. }
  1069. static void lpass_cdc_soc_codec_remove(struct snd_soc_component *component)
  1070. {
  1071. struct lpass_cdc_priv *priv = dev_get_drvdata(component->dev);
  1072. int macro_idx;
  1073. snd_event_client_deregister(priv->dev);
  1074. /* call exit for supported macros */
  1075. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++)
  1076. if (priv->macro_params[macro_idx].exit)
  1077. priv->macro_params[macro_idx].exit(component);
  1078. return;
  1079. }
  1080. static const struct snd_soc_component_driver lpass_cdc = {
  1081. .name = DRV_NAME,
  1082. .probe = lpass_cdc_soc_codec_probe,
  1083. .remove = lpass_cdc_soc_codec_remove,
  1084. };
  1085. static void lpass_cdc_add_child_devices(struct work_struct *work)
  1086. {
  1087. struct lpass_cdc_priv *priv;
  1088. bool split_codec = false;
  1089. struct platform_device *pdev;
  1090. struct device_node *node;
  1091. int ret = 0, count = 0;
  1092. struct wcd_ctrl_platform_data *platdata = NULL;
  1093. char plat_dev_name[LPASS_CDC_STRING_LEN] = "";
  1094. priv = container_of(work, struct lpass_cdc_priv,
  1095. lpass_cdc_add_child_devices_work);
  1096. if (!priv) {
  1097. pr_err("%s: Memory for lpass_cdc priv does not exist\n",
  1098. __func__);
  1099. return;
  1100. }
  1101. if (!priv->dev || !priv->dev->of_node) {
  1102. dev_err(priv->dev, "%s: DT node for lpass_cdc does not exist\n",
  1103. __func__);
  1104. return;
  1105. }
  1106. platdata = &priv->plat_data;
  1107. priv->child_count = 0;
  1108. for_each_available_child_of_node(priv->dev->of_node, node) {
  1109. split_codec = false;
  1110. if (of_find_property(node, "qcom,split-codec", NULL)) {
  1111. split_codec = true;
  1112. dev_dbg(priv->dev, "%s: split codec slave exists\n",
  1113. __func__);
  1114. }
  1115. strlcpy(plat_dev_name, node->name,
  1116. (LPASS_CDC_STRING_LEN - 1));
  1117. pdev = platform_device_alloc(plat_dev_name, -1);
  1118. if (!pdev) {
  1119. dev_err(priv->dev, "%s: pdev memory alloc failed\n",
  1120. __func__);
  1121. ret = -ENOMEM;
  1122. goto err;
  1123. }
  1124. pdev->dev.parent = priv->dev;
  1125. pdev->dev.of_node = node;
  1126. priv->dev->platform_data = platdata;
  1127. if (split_codec)
  1128. priv->wcd_dev = &pdev->dev;
  1129. ret = platform_device_add(pdev);
  1130. if (ret) {
  1131. dev_err(&pdev->dev,
  1132. "%s: Cannot add platform device\n",
  1133. __func__);
  1134. platform_device_put(pdev);
  1135. goto fail_pdev_add;
  1136. }
  1137. if (priv->child_count < LPASS_CDC_CHILD_DEVICES_MAX)
  1138. priv->pdev_child_devices[priv->child_count++] = pdev;
  1139. else
  1140. goto err;
  1141. }
  1142. return;
  1143. fail_pdev_add:
  1144. for (count = 0; count < priv->child_count; count++)
  1145. platform_device_put(priv->pdev_child_devices[count]);
  1146. err:
  1147. return;
  1148. }
  1149. static int lpass_cdc_probe(struct platform_device *pdev)
  1150. {
  1151. struct lpass_cdc_priv *priv;
  1152. u32 num_macros = 0;
  1153. int ret;
  1154. struct clk *lpass_core_hw_vote = NULL;
  1155. struct clk *lpass_audio_hw_vote = NULL;
  1156. priv = devm_kzalloc(&pdev->dev, sizeof(struct lpass_cdc_priv),
  1157. GFP_KERNEL);
  1158. if (!priv)
  1159. return -ENOMEM;
  1160. ret = of_property_read_u32(pdev->dev.of_node, "qcom,num-macros",
  1161. &num_macros);
  1162. if (ret) {
  1163. dev_err(&pdev->dev,
  1164. "%s:num-macros property not found\n",
  1165. __func__);
  1166. return ret;
  1167. }
  1168. priv->num_macros = num_macros;
  1169. if (priv->num_macros > MAX_MACRO) {
  1170. dev_err(&pdev->dev,
  1171. "%s:num_macros(%d) > MAX_MACRO(%d) than supported\n",
  1172. __func__, priv->num_macros, MAX_MACRO);
  1173. return -EINVAL;
  1174. }
  1175. ret = of_property_read_u32(pdev->dev.of_node,
  1176. "qcom,lpass-cdc-version", &priv->version);
  1177. if (ret) {
  1178. dev_dbg(&pdev->dev, "%s:lpass_cdc version not specified\n",
  1179. __func__);
  1180. ret = 0;
  1181. }
  1182. BLOCKING_INIT_NOTIFIER_HEAD(&priv->notifier);
  1183. priv->dev = &pdev->dev;
  1184. priv->dev_up = true;
  1185. priv->pre_dev_up = true;
  1186. priv->initial_boot = true;
  1187. priv->regmap = lpass_cdc_regmap_init(priv->dev,
  1188. &lpass_cdc_regmap_config);
  1189. if (IS_ERR_OR_NULL((void *)(priv->regmap))) {
  1190. dev_err(&pdev->dev, "%s:regmap init failed\n", __func__);
  1191. return -EINVAL;
  1192. }
  1193. devm_regmap_qti_debugfs_register(priv->dev, priv->regmap);
  1194. priv->read_dev = __lpass_cdc_reg_read;
  1195. priv->write_dev = __lpass_cdc_reg_write;
  1196. priv->plat_data.handle = (void *) priv;
  1197. priv->plat_data.update_wcd_event = lpass_cdc_update_wcd_event;
  1198. priv->plat_data.register_notifier = lpass_cdc_register_notifier;
  1199. priv->core_hw_vote_count = 0;
  1200. priv->core_audio_vote_count = 0;
  1201. dev_set_drvdata(&pdev->dev, priv);
  1202. mutex_init(&priv->macro_lock);
  1203. mutex_init(&priv->io_lock);
  1204. mutex_init(&priv->clk_lock);
  1205. mutex_init(&priv->vote_lock);
  1206. INIT_WORK(&priv->lpass_cdc_add_child_devices_work,
  1207. lpass_cdc_add_child_devices);
  1208. /* Register LPASS core hw vote */
  1209. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  1210. if (IS_ERR(lpass_core_hw_vote)) {
  1211. ret = PTR_ERR(lpass_core_hw_vote);
  1212. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1213. __func__, "lpass_core_hw_vote", ret);
  1214. lpass_core_hw_vote = NULL;
  1215. ret = 0;
  1216. }
  1217. priv->lpass_core_hw_vote = lpass_core_hw_vote;
  1218. /* Register LPASS audio hw vote */
  1219. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1220. if (IS_ERR(lpass_audio_hw_vote)) {
  1221. ret = PTR_ERR(lpass_audio_hw_vote);
  1222. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1223. __func__, "lpass_audio_hw_vote", ret);
  1224. lpass_audio_hw_vote = NULL;
  1225. ret = 0;
  1226. }
  1227. priv->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1228. schedule_work(&priv->lpass_cdc_add_child_devices_work);
  1229. return 0;
  1230. }
  1231. static int lpass_cdc_remove(struct platform_device *pdev)
  1232. {
  1233. struct lpass_cdc_priv *priv = dev_get_drvdata(&pdev->dev);
  1234. if (!priv)
  1235. return -EINVAL;
  1236. of_platform_depopulate(&pdev->dev);
  1237. mutex_destroy(&priv->macro_lock);
  1238. mutex_destroy(&priv->io_lock);
  1239. mutex_destroy(&priv->clk_lock);
  1240. mutex_destroy(&priv->vote_lock);
  1241. return 0;
  1242. }
  1243. #ifdef CONFIG_PM
  1244. int lpass_cdc_runtime_resume(struct device *dev)
  1245. {
  1246. struct lpass_cdc_priv *priv = dev_get_drvdata(dev->parent);
  1247. int ret = 0;
  1248. trace_printk("%s, enter\n", __func__);
  1249. dev_dbg(dev,"%s, enter\n", __func__);
  1250. mutex_lock(&priv->vote_lock);
  1251. if (priv->lpass_core_hw_vote == NULL) {
  1252. dev_dbg(dev, "%s: Invalid lpass core hw node\n", __func__);
  1253. goto audio_vote;
  1254. }
  1255. if (priv->core_hw_vote_count == 0) {
  1256. ret = digital_cdc_rsc_mgr_hw_vote_enable(priv->lpass_core_hw_vote, dev);
  1257. if (ret < 0) {
  1258. dev_err_ratelimited(dev, "%s:lpass core hw enable failed\n",
  1259. __func__);
  1260. goto audio_vote;
  1261. }
  1262. }
  1263. priv->core_hw_vote_count++;
  1264. trace_printk("%s: hw vote count %d\n",
  1265. __func__, priv->core_hw_vote_count);
  1266. audio_vote:
  1267. if (priv->lpass_audio_hw_vote == NULL) {
  1268. dev_dbg(dev, "%s: Invalid lpass audio hw node\n", __func__);
  1269. goto done;
  1270. }
  1271. if (priv->core_audio_vote_count == 0) {
  1272. ret = digital_cdc_rsc_mgr_hw_vote_enable(priv->lpass_audio_hw_vote, dev);
  1273. if (ret < 0) {
  1274. dev_err_ratelimited(dev, "%s:lpass audio hw enable failed\n",
  1275. __func__);
  1276. goto core_clk_vote;
  1277. }
  1278. }
  1279. priv->core_audio_vote_count++;
  1280. trace_printk("%s: audio vote count %d\n",
  1281. __func__, priv->core_audio_vote_count);
  1282. core_clk_vote:
  1283. if (priv->core_clk_vote_count == 0) {
  1284. ret = lpass_cdc_clk_rsc_request_clock(dev, TX_CORE_CLK,
  1285. TX_CORE_CLK, true);
  1286. if (ret < 0) {
  1287. dev_err_ratelimited(dev, "%s:lpass Tx core clk enable failed\n",
  1288. __func__);
  1289. goto done;
  1290. }
  1291. }
  1292. priv->core_clk_vote_count++;
  1293. done:
  1294. mutex_unlock(&priv->vote_lock);
  1295. trace_printk("%s, leave\n", __func__);
  1296. dev_dbg(dev, "%s, leave, hw_vote %d, audio_vote %d, core_clk_vote %d\n",
  1297. __func__, priv->core_hw_vote_count,
  1298. priv->core_audio_vote_count, priv->core_clk_vote_count);
  1299. pm_runtime_set_autosuspend_delay(priv->dev, LPASS_CDC_AUTO_SUSPEND_DELAY);
  1300. return 0;
  1301. }
  1302. EXPORT_SYMBOL(lpass_cdc_runtime_resume);
  1303. int lpass_cdc_runtime_suspend(struct device *dev)
  1304. {
  1305. struct lpass_cdc_priv *priv = dev_get_drvdata(dev->parent);
  1306. trace_printk("%s, enter\n", __func__);
  1307. dev_dbg(dev,"%s, enter\n", __func__);
  1308. mutex_lock(&priv->vote_lock);
  1309. if (priv->lpass_core_hw_vote != NULL) {
  1310. if (--priv->core_hw_vote_count == 0)
  1311. digital_cdc_rsc_mgr_hw_vote_disable(
  1312. priv->lpass_core_hw_vote, dev);
  1313. if (priv->core_hw_vote_count < 0)
  1314. priv->core_hw_vote_count = 0;
  1315. } else {
  1316. dev_dbg(dev, "%s: Invalid lpass core hw node\n",
  1317. __func__);
  1318. }
  1319. trace_printk("%s: hw vote count %d\n",
  1320. __func__, priv->core_hw_vote_count);
  1321. if (priv->lpass_audio_hw_vote != NULL) {
  1322. if (--priv->core_audio_vote_count == 0)
  1323. digital_cdc_rsc_mgr_hw_vote_disable(
  1324. priv->lpass_audio_hw_vote, dev);
  1325. if (priv->core_audio_vote_count < 0)
  1326. priv->core_audio_vote_count = 0;
  1327. } else {
  1328. dev_dbg(dev, "%s: Invalid lpass audio hw node\n",
  1329. __func__);
  1330. }
  1331. trace_printk("%s: audio vote count %d\n",
  1332. __func__, priv->core_audio_vote_count);
  1333. if (--priv->core_clk_vote_count == 0) {
  1334. lpass_cdc_clk_rsc_request_clock(dev, TX_CORE_CLK,
  1335. TX_CORE_CLK, false);
  1336. }
  1337. if (priv->core_clk_vote_count < 0)
  1338. priv->core_clk_vote_count = 0;
  1339. mutex_unlock(&priv->vote_lock);
  1340. trace_printk("%s, leave\n", __func__);
  1341. dev_dbg(dev, "%s, leave, hw_vote %d, audio_vote %d, core_clk_vote %d\n",
  1342. __func__, priv->core_hw_vote_count,
  1343. priv->core_audio_vote_count, priv->core_clk_vote_count);
  1344. return 0;
  1345. }
  1346. EXPORT_SYMBOL(lpass_cdc_runtime_suspend);
  1347. #endif /* CONFIG_PM */
  1348. bool lpass_cdc_check_core_votes(struct device *dev)
  1349. {
  1350. struct lpass_cdc_priv *priv = dev_get_drvdata(dev->parent);
  1351. bool ret = true;
  1352. trace_printk("%s, enter\n", __func__);
  1353. mutex_lock(&priv->vote_lock);
  1354. if (!priv->pre_dev_up ||
  1355. (priv->lpass_core_hw_vote && !priv->core_hw_vote_count) ||
  1356. (priv->lpass_audio_hw_vote && !priv->core_audio_vote_count))
  1357. ret = false;
  1358. mutex_unlock(&priv->vote_lock);
  1359. trace_printk("%s, leave\n", __func__);
  1360. return ret;
  1361. }
  1362. EXPORT_SYMBOL(lpass_cdc_check_core_votes);
  1363. static const struct of_device_id lpass_cdc_dt_match[] = {
  1364. {.compatible = "qcom,lpass-cdc"},
  1365. {}
  1366. };
  1367. MODULE_DEVICE_TABLE(of, lpass_cdc_dt_match);
  1368. static struct platform_driver lpass_cdc_drv = {
  1369. .driver = {
  1370. .name = "lpass-cdc",
  1371. .owner = THIS_MODULE,
  1372. .of_match_table = lpass_cdc_dt_match,
  1373. .suppress_bind_attrs = true,
  1374. },
  1375. .probe = lpass_cdc_probe,
  1376. .remove = lpass_cdc_remove,
  1377. };
  1378. static int lpass_cdc_drv_init(void)
  1379. {
  1380. return platform_driver_register(&lpass_cdc_drv);
  1381. }
  1382. static void lpass_cdc_drv_exit(void)
  1383. {
  1384. platform_driver_unregister(&lpass_cdc_drv);
  1385. }
  1386. static int __init lpass_cdc_init(void)
  1387. {
  1388. lpass_cdc_drv_init();
  1389. lpass_cdc_clk_rsc_mgr_init();
  1390. return 0;
  1391. }
  1392. module_init(lpass_cdc_init);
  1393. static void __exit lpass_cdc_exit(void)
  1394. {
  1395. lpass_cdc_clk_rsc_mgr_exit();
  1396. lpass_cdc_drv_exit();
  1397. }
  1398. module_exit(lpass_cdc_exit);
  1399. MODULE_DESCRIPTION("LPASS Codec driver");
  1400. MODULE_LICENSE("GPL v2");