lpass-cdc.c 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584
  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. regcache_cache_only(priv->regmap, true);
  839. mutex_lock(&priv->clk_lock);
  840. priv->dev_up = false;
  841. priv->pre_dev_up = false;
  842. mutex_unlock(&priv->clk_lock);
  843. if (priv->rsc_clk_cb)
  844. priv->rsc_clk_cb(priv->clk_dev, LPASS_CDC_MACRO_EVT_SSR_DOWN);
  845. /* call ssr event for supported macros */
  846. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  847. if (!priv->macro_params[macro_idx].event_handler)
  848. continue;
  849. priv->macro_params[macro_idx].event_handler(
  850. priv->component,
  851. LPASS_CDC_MACRO_EVT_SSR_DOWN, 0x0);
  852. }
  853. lpass_cdc_notifier_call(priv, LPASS_CDC_WCD_EVT_SSR_DOWN);
  854. }
  855. static struct snd_info_entry_ops lpass_cdc_info_ops = {
  856. .read = lpass_cdc_version_read,
  857. };
  858. static const struct snd_event_ops lpass_cdc_ssr_ops = {
  859. .enable = lpass_cdc_ssr_enable,
  860. .disable = lpass_cdc_ssr_disable,
  861. };
  862. /*
  863. * lpass_cdc_info_create_codec_entry - creates lpass_cdc module
  864. * @codec_root: The parent directory
  865. * @component: Codec component instance
  866. *
  867. * Creates lpass_cdc module and version entry under the given
  868. * parent directory.
  869. *
  870. * Return: 0 on success or negative error code on failure.
  871. */
  872. int lpass_cdc_info_create_codec_entry(struct snd_info_entry *codec_root,
  873. struct snd_soc_component *component)
  874. {
  875. struct snd_info_entry *version_entry;
  876. struct lpass_cdc_priv *priv;
  877. struct snd_soc_card *card;
  878. if (!codec_root || !component)
  879. return -EINVAL;
  880. priv = snd_soc_component_get_drvdata(component);
  881. if (priv->entry) {
  882. dev_dbg(priv->dev,
  883. "%s:lpass_cdc module already created\n", __func__);
  884. return 0;
  885. }
  886. card = component->card;
  887. priv->entry = snd_info_create_module_entry(codec_root->module,
  888. "lpass-cdc", codec_root);
  889. if (!priv->entry) {
  890. dev_dbg(component->dev, "%s: failed to create lpass_cdc entry\n",
  891. __func__);
  892. return -ENOMEM;
  893. }
  894. priv->entry->mode = S_IFDIR | 0555;
  895. if (snd_info_register(priv->entry) < 0) {
  896. snd_info_free_entry(priv->entry);
  897. return -ENOMEM;
  898. }
  899. version_entry = snd_info_create_card_entry(card->snd_card,
  900. "version",
  901. priv->entry);
  902. if (!version_entry) {
  903. dev_err_ratelimited(component->dev, "%s: failed to create lpass_cdc version entry\n",
  904. __func__);
  905. snd_info_free_entry(priv->entry);
  906. return -ENOMEM;
  907. }
  908. version_entry->private_data = priv;
  909. version_entry->size = LPASS_CDC_VERSION_ENTRY_SIZE;
  910. version_entry->content = SNDRV_INFO_CONTENT_DATA;
  911. version_entry->c.ops = &lpass_cdc_info_ops;
  912. if (snd_info_register(version_entry) < 0) {
  913. snd_info_free_entry(version_entry);
  914. snd_info_free_entry(priv->entry);
  915. return -ENOMEM;
  916. }
  917. priv->version_entry = version_entry;
  918. return 0;
  919. }
  920. EXPORT_SYMBOL(lpass_cdc_info_create_codec_entry);
  921. /**
  922. * lpass_cdc_register_wake_irq - Register wake irq of Tx macro
  923. *
  924. * @component: codec component ptr.
  925. * @ipc_wakeup: bool to identify ipc_wakeup to be used or HW interrupt line.
  926. *
  927. * Return: 0 on success or negative error code on failure.
  928. */
  929. int lpass_cdc_register_wake_irq(struct snd_soc_component *component,
  930. u32 ipc_wakeup)
  931. {
  932. struct lpass_cdc_priv *priv = NULL;
  933. if (!component)
  934. return -EINVAL;
  935. priv = snd_soc_component_get_drvdata(component);
  936. if (!priv)
  937. return -EINVAL;
  938. if (!lpass_cdc_is_valid_codec_dev(priv->dev)) {
  939. dev_err_ratelimited(component->dev, "%s: invalid codec\n", __func__);
  940. return -EINVAL;
  941. }
  942. if (priv->macro_params[VA_MACRO].reg_wake_irq)
  943. priv->macro_params[VA_MACRO].reg_wake_irq(
  944. component, ipc_wakeup);
  945. return 0;
  946. }
  947. EXPORT_SYMBOL(lpass_cdc_register_wake_irq);
  948. /**
  949. * lpass_cdc_tx_mclk_enable - Enable/Disable TX Macro mclk
  950. *
  951. * @component: pointer to codec component instance.
  952. * @enable: set true to enable, otherwise false.
  953. *
  954. * Returns 0 on success or -EINVAL on error.
  955. */
  956. int lpass_cdc_tx_mclk_enable(struct snd_soc_component *component,
  957. bool enable)
  958. {
  959. struct lpass_cdc_priv *priv = NULL;
  960. int ret = 0;
  961. if (!component)
  962. return -EINVAL;
  963. priv = snd_soc_component_get_drvdata(component);
  964. if (!priv)
  965. return -EINVAL;
  966. if (!lpass_cdc_is_valid_codec_dev(priv->dev)) {
  967. dev_err_ratelimited(component->dev, "%s: invalid codec\n", __func__);
  968. return -EINVAL;
  969. }
  970. if (priv->macro_params[TX_MACRO].clk_enable)
  971. ret = priv->macro_params[TX_MACRO].clk_enable(component,
  972. enable);
  973. return ret;
  974. }
  975. EXPORT_SYMBOL(lpass_cdc_tx_mclk_enable);
  976. /**
  977. * lpass_cdc_register_event_listener - Register/Deregister to event listener
  978. *
  979. * @component: pointer to codec component instance.
  980. * @enable: when set to 1 registers to event listener otherwise, derigisters
  981. * from the event listener
  982. *
  983. * Returns 0 on success or -EINVAL on error.
  984. */
  985. int lpass_cdc_register_event_listener(struct snd_soc_component *component,
  986. bool enable)
  987. {
  988. struct lpass_cdc_priv *priv = NULL;
  989. int ret = 0;
  990. if (!component)
  991. return -EINVAL;
  992. priv = snd_soc_component_get_drvdata(component);
  993. if (!priv)
  994. return -EINVAL;
  995. if (!lpass_cdc_is_valid_codec_dev(priv->dev)) {
  996. dev_err_ratelimited(component->dev, "%s: invalid codec\n", __func__);
  997. return -EINVAL;
  998. }
  999. if (priv->macro_params[TX_MACRO].reg_evt_listener)
  1000. ret = priv->macro_params[TX_MACRO].reg_evt_listener(component,
  1001. enable);
  1002. return ret;
  1003. }
  1004. EXPORT_SYMBOL(lpass_cdc_register_event_listener);
  1005. static int lpass_cdc_soc_codec_probe(struct snd_soc_component *component)
  1006. {
  1007. struct lpass_cdc_priv *priv = dev_get_drvdata(component->dev);
  1008. int macro_idx, ret = 0;
  1009. u8 core_id_0 = 0, core_id_1 = 0, core_id_2 = 0;
  1010. snd_soc_component_init_regmap(component, priv->regmap);
  1011. if (!priv->version) {
  1012. /*
  1013. * In order for the ADIE RTC to differentiate between targets
  1014. * version info is used.
  1015. * Assign 1.0 for target with only one macro
  1016. * Assign 1.1 for target with two macros
  1017. * Assign 1.2 for target with more than two macros
  1018. */
  1019. if (priv->num_macros_registered == 1)
  1020. priv->version = LPASS_CDC_VERSION_1_0;
  1021. else if (priv->num_macros_registered == 2)
  1022. priv->version = LPASS_CDC_VERSION_1_1;
  1023. else if (priv->num_macros_registered > 2)
  1024. priv->version = LPASS_CDC_VERSION_1_2;
  1025. }
  1026. /* Assign lpass_cdc version */
  1027. core_id_0 = snd_soc_component_read(component,
  1028. LPASS_CDC_VA_TOP_CSR_CORE_ID_0);
  1029. core_id_1 = snd_soc_component_read(component,
  1030. LPASS_CDC_VA_TOP_CSR_CORE_ID_1);
  1031. core_id_2 = snd_soc_component_read(component,
  1032. LPASS_CDC_VA_TOP_CSR_CORE_ID_2);
  1033. if ((core_id_0 == 0x01) && (core_id_1 == 0x0F))
  1034. priv->version = LPASS_CDC_VERSION_2_0;
  1035. if ((core_id_0 == 0x02) && (core_id_1 == 0x0E))
  1036. priv->version = LPASS_CDC_VERSION_2_1;
  1037. if ((core_id_0 == 0x02) && (core_id_1 == 0x0F))
  1038. priv->version = LPASS_CDC_VERSION_2_5;
  1039. if ((core_id_0 == 0x02) && (core_id_1 == 0x0F) && (core_id_2 == 0x60 || core_id_2 == 0x61))
  1040. priv->version = LPASS_CDC_VERSION_2_6;
  1041. /* call init for supported macros */
  1042. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++) {
  1043. if (priv->macro_params[macro_idx].init) {
  1044. ret = priv->macro_params[macro_idx].init(component);
  1045. if (ret < 0) {
  1046. dev_err(component->dev,
  1047. "%s: init for macro %d failed\n",
  1048. __func__, macro_idx);
  1049. goto err;
  1050. }
  1051. }
  1052. }
  1053. priv->component = component;
  1054. ret = snd_event_client_register(priv->dev, &lpass_cdc_ssr_ops, priv);
  1055. if (!ret) {
  1056. snd_event_notify(priv->dev, SND_EVENT_UP);
  1057. } else {
  1058. dev_err(component->dev,
  1059. "%s: Registration with SND event FWK failed ret = %d\n",
  1060. __func__, ret);
  1061. goto err;
  1062. }
  1063. dev_dbg(component->dev, "%s: lpass_cdc soc codec probe success\n",
  1064. __func__);
  1065. err:
  1066. return ret;
  1067. }
  1068. static void lpass_cdc_soc_codec_remove(struct snd_soc_component *component)
  1069. {
  1070. struct lpass_cdc_priv *priv = dev_get_drvdata(component->dev);
  1071. int macro_idx;
  1072. snd_event_client_deregister(priv->dev);
  1073. /* call exit for supported macros */
  1074. for (macro_idx = START_MACRO; macro_idx < MAX_MACRO; macro_idx++)
  1075. if (priv->macro_params[macro_idx].exit)
  1076. priv->macro_params[macro_idx].exit(component);
  1077. return;
  1078. }
  1079. static const struct snd_soc_component_driver lpass_cdc = {
  1080. .name = DRV_NAME,
  1081. .probe = lpass_cdc_soc_codec_probe,
  1082. .remove = lpass_cdc_soc_codec_remove,
  1083. };
  1084. static void lpass_cdc_add_child_devices(struct work_struct *work)
  1085. {
  1086. struct lpass_cdc_priv *priv;
  1087. bool split_codec = false;
  1088. struct platform_device *pdev;
  1089. struct device_node *node;
  1090. int ret = 0, count = 0;
  1091. struct wcd_ctrl_platform_data *platdata = NULL;
  1092. char plat_dev_name[LPASS_CDC_STRING_LEN] = "";
  1093. priv = container_of(work, struct lpass_cdc_priv,
  1094. lpass_cdc_add_child_devices_work);
  1095. if (!priv) {
  1096. pr_err("%s: Memory for lpass_cdc priv does not exist\n",
  1097. __func__);
  1098. return;
  1099. }
  1100. if (!priv->dev || !priv->dev->of_node) {
  1101. dev_err(priv->dev, "%s: DT node for lpass_cdc does not exist\n",
  1102. __func__);
  1103. return;
  1104. }
  1105. platdata = &priv->plat_data;
  1106. priv->child_count = 0;
  1107. for_each_available_child_of_node(priv->dev->of_node, node) {
  1108. split_codec = false;
  1109. if (of_find_property(node, "qcom,split-codec", NULL)) {
  1110. split_codec = true;
  1111. dev_dbg(priv->dev, "%s: split codec slave exists\n",
  1112. __func__);
  1113. }
  1114. strlcpy(plat_dev_name, node->name,
  1115. (LPASS_CDC_STRING_LEN - 1));
  1116. pdev = platform_device_alloc(plat_dev_name, -1);
  1117. if (!pdev) {
  1118. dev_err(priv->dev, "%s: pdev memory alloc failed\n",
  1119. __func__);
  1120. ret = -ENOMEM;
  1121. goto err;
  1122. }
  1123. pdev->dev.parent = priv->dev;
  1124. pdev->dev.of_node = node;
  1125. priv->dev->platform_data = platdata;
  1126. if (split_codec)
  1127. priv->wcd_dev = &pdev->dev;
  1128. ret = platform_device_add(pdev);
  1129. if (ret) {
  1130. dev_err(&pdev->dev,
  1131. "%s: Cannot add platform device\n",
  1132. __func__);
  1133. platform_device_put(pdev);
  1134. goto fail_pdev_add;
  1135. }
  1136. if (priv->child_count < LPASS_CDC_CHILD_DEVICES_MAX)
  1137. priv->pdev_child_devices[priv->child_count++] = pdev;
  1138. else
  1139. goto err;
  1140. }
  1141. return;
  1142. fail_pdev_add:
  1143. for (count = 0; count < priv->child_count; count++)
  1144. platform_device_put(priv->pdev_child_devices[count]);
  1145. err:
  1146. return;
  1147. }
  1148. static int lpass_cdc_probe(struct platform_device *pdev)
  1149. {
  1150. struct lpass_cdc_priv *priv;
  1151. u32 num_macros = 0;
  1152. int ret;
  1153. struct clk *lpass_core_hw_vote = NULL;
  1154. struct clk *lpass_audio_hw_vote = NULL;
  1155. priv = devm_kzalloc(&pdev->dev, sizeof(struct lpass_cdc_priv),
  1156. GFP_KERNEL);
  1157. if (!priv)
  1158. return -ENOMEM;
  1159. ret = of_property_read_u32(pdev->dev.of_node, "qcom,num-macros",
  1160. &num_macros);
  1161. if (ret) {
  1162. dev_err(&pdev->dev,
  1163. "%s:num-macros property not found\n",
  1164. __func__);
  1165. return ret;
  1166. }
  1167. priv->num_macros = num_macros;
  1168. if (priv->num_macros > MAX_MACRO) {
  1169. dev_err(&pdev->dev,
  1170. "%s:num_macros(%d) > MAX_MACRO(%d) than supported\n",
  1171. __func__, priv->num_macros, MAX_MACRO);
  1172. return -EINVAL;
  1173. }
  1174. ret = of_property_read_u32(pdev->dev.of_node,
  1175. "qcom,lpass-cdc-version", &priv->version);
  1176. if (ret) {
  1177. dev_dbg(&pdev->dev, "%s:lpass_cdc version not specified\n",
  1178. __func__);
  1179. ret = 0;
  1180. }
  1181. BLOCKING_INIT_NOTIFIER_HEAD(&priv->notifier);
  1182. priv->dev = &pdev->dev;
  1183. priv->dev_up = true;
  1184. priv->pre_dev_up = true;
  1185. priv->initial_boot = true;
  1186. priv->regmap = lpass_cdc_regmap_init(priv->dev,
  1187. &lpass_cdc_regmap_config);
  1188. if (IS_ERR_OR_NULL((void *)(priv->regmap))) {
  1189. dev_err(&pdev->dev, "%s:regmap init failed\n", __func__);
  1190. return -EINVAL;
  1191. }
  1192. devm_regmap_qti_debugfs_register(priv->dev, priv->regmap);
  1193. priv->read_dev = __lpass_cdc_reg_read;
  1194. priv->write_dev = __lpass_cdc_reg_write;
  1195. priv->plat_data.handle = (void *) priv;
  1196. priv->plat_data.update_wcd_event = lpass_cdc_update_wcd_event;
  1197. priv->plat_data.register_notifier = lpass_cdc_register_notifier;
  1198. priv->core_hw_vote_count = 0;
  1199. priv->core_audio_vote_count = 0;
  1200. dev_set_drvdata(&pdev->dev, priv);
  1201. mutex_init(&priv->macro_lock);
  1202. mutex_init(&priv->io_lock);
  1203. mutex_init(&priv->clk_lock);
  1204. mutex_init(&priv->vote_lock);
  1205. INIT_WORK(&priv->lpass_cdc_add_child_devices_work,
  1206. lpass_cdc_add_child_devices);
  1207. /* Register LPASS core hw vote */
  1208. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  1209. if (IS_ERR(lpass_core_hw_vote)) {
  1210. ret = PTR_ERR(lpass_core_hw_vote);
  1211. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1212. __func__, "lpass_core_hw_vote", ret);
  1213. lpass_core_hw_vote = NULL;
  1214. ret = 0;
  1215. }
  1216. priv->lpass_core_hw_vote = lpass_core_hw_vote;
  1217. /* Register LPASS audio hw vote */
  1218. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1219. if (IS_ERR(lpass_audio_hw_vote)) {
  1220. ret = PTR_ERR(lpass_audio_hw_vote);
  1221. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1222. __func__, "lpass_audio_hw_vote", ret);
  1223. lpass_audio_hw_vote = NULL;
  1224. ret = 0;
  1225. }
  1226. priv->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1227. schedule_work(&priv->lpass_cdc_add_child_devices_work);
  1228. return 0;
  1229. }
  1230. static int lpass_cdc_remove(struct platform_device *pdev)
  1231. {
  1232. struct lpass_cdc_priv *priv = dev_get_drvdata(&pdev->dev);
  1233. if (!priv)
  1234. return -EINVAL;
  1235. of_platform_depopulate(&pdev->dev);
  1236. mutex_destroy(&priv->macro_lock);
  1237. mutex_destroy(&priv->io_lock);
  1238. mutex_destroy(&priv->clk_lock);
  1239. mutex_destroy(&priv->vote_lock);
  1240. return 0;
  1241. }
  1242. #ifdef CONFIG_PM
  1243. int lpass_cdc_runtime_resume(struct device *dev)
  1244. {
  1245. struct lpass_cdc_priv *priv = dev_get_drvdata(dev->parent);
  1246. int ret = 0;
  1247. trace_printk("%s, enter\n", __func__);
  1248. dev_dbg(dev,"%s, enter\n", __func__);
  1249. mutex_lock(&priv->vote_lock);
  1250. if (priv->lpass_core_hw_vote == NULL) {
  1251. dev_dbg(dev, "%s: Invalid lpass core hw node\n", __func__);
  1252. goto audio_vote;
  1253. }
  1254. if (priv->core_hw_vote_count == 0) {
  1255. ret = digital_cdc_rsc_mgr_hw_vote_enable(priv->lpass_core_hw_vote, dev);
  1256. if (ret < 0) {
  1257. dev_err_ratelimited(dev, "%s:lpass core hw enable failed\n",
  1258. __func__);
  1259. goto audio_vote;
  1260. }
  1261. }
  1262. priv->core_hw_vote_count++;
  1263. trace_printk("%s: hw vote count %d\n",
  1264. __func__, priv->core_hw_vote_count);
  1265. audio_vote:
  1266. if (priv->lpass_audio_hw_vote == NULL) {
  1267. dev_dbg(dev, "%s: Invalid lpass audio hw node\n", __func__);
  1268. goto done;
  1269. }
  1270. if (priv->core_audio_vote_count == 0) {
  1271. ret = digital_cdc_rsc_mgr_hw_vote_enable(priv->lpass_audio_hw_vote, dev);
  1272. if (ret < 0) {
  1273. dev_err_ratelimited(dev, "%s:lpass audio hw enable failed\n",
  1274. __func__);
  1275. goto core_clk_vote;
  1276. }
  1277. }
  1278. priv->core_audio_vote_count++;
  1279. trace_printk("%s: audio vote count %d\n",
  1280. __func__, priv->core_audio_vote_count);
  1281. core_clk_vote:
  1282. if (priv->core_clk_vote_count == 0) {
  1283. ret = lpass_cdc_clk_rsc_request_clock(dev, TX_CORE_CLK,
  1284. TX_CORE_CLK, true);
  1285. if (ret < 0) {
  1286. dev_err_ratelimited(dev, "%s:lpass Tx core clk enable failed\n",
  1287. __func__);
  1288. goto done;
  1289. }
  1290. }
  1291. priv->core_clk_vote_count++;
  1292. done:
  1293. mutex_unlock(&priv->vote_lock);
  1294. trace_printk("%s, leave\n", __func__);
  1295. dev_dbg(dev, "%s, leave, hw_vote %d, audio_vote %d, core_clk_vote %d\n",
  1296. __func__, priv->core_hw_vote_count,
  1297. priv->core_audio_vote_count, priv->core_clk_vote_count);
  1298. pm_runtime_set_autosuspend_delay(priv->dev, LPASS_CDC_AUTO_SUSPEND_DELAY);
  1299. return 0;
  1300. }
  1301. EXPORT_SYMBOL(lpass_cdc_runtime_resume);
  1302. int lpass_cdc_runtime_suspend(struct device *dev)
  1303. {
  1304. struct lpass_cdc_priv *priv = dev_get_drvdata(dev->parent);
  1305. trace_printk("%s, enter\n", __func__);
  1306. dev_dbg(dev,"%s, enter\n", __func__);
  1307. mutex_lock(&priv->vote_lock);
  1308. if (priv->lpass_core_hw_vote != NULL) {
  1309. if (--priv->core_hw_vote_count == 0)
  1310. digital_cdc_rsc_mgr_hw_vote_disable(
  1311. priv->lpass_core_hw_vote, dev);
  1312. if (priv->core_hw_vote_count < 0)
  1313. priv->core_hw_vote_count = 0;
  1314. } else {
  1315. dev_dbg(dev, "%s: Invalid lpass core hw node\n",
  1316. __func__);
  1317. }
  1318. trace_printk("%s: hw vote count %d\n",
  1319. __func__, priv->core_hw_vote_count);
  1320. if (priv->lpass_audio_hw_vote != NULL) {
  1321. if (--priv->core_audio_vote_count == 0)
  1322. digital_cdc_rsc_mgr_hw_vote_disable(
  1323. priv->lpass_audio_hw_vote, dev);
  1324. if (priv->core_audio_vote_count < 0)
  1325. priv->core_audio_vote_count = 0;
  1326. } else {
  1327. dev_dbg(dev, "%s: Invalid lpass audio hw node\n",
  1328. __func__);
  1329. }
  1330. trace_printk("%s: audio vote count %d\n",
  1331. __func__, priv->core_audio_vote_count);
  1332. if (--priv->core_clk_vote_count == 0) {
  1333. lpass_cdc_clk_rsc_request_clock(dev, TX_CORE_CLK,
  1334. TX_CORE_CLK, false);
  1335. }
  1336. if (priv->core_clk_vote_count < 0)
  1337. priv->core_clk_vote_count = 0;
  1338. mutex_unlock(&priv->vote_lock);
  1339. trace_printk("%s, leave\n", __func__);
  1340. dev_dbg(dev, "%s, leave, hw_vote %d, audio_vote %d, core_clk_vote %d\n",
  1341. __func__, priv->core_hw_vote_count,
  1342. priv->core_audio_vote_count, priv->core_clk_vote_count);
  1343. return 0;
  1344. }
  1345. EXPORT_SYMBOL(lpass_cdc_runtime_suspend);
  1346. #endif /* CONFIG_PM */
  1347. bool lpass_cdc_check_core_votes(struct device *dev)
  1348. {
  1349. struct lpass_cdc_priv *priv = dev_get_drvdata(dev->parent);
  1350. bool ret = true;
  1351. trace_printk("%s, enter\n", __func__);
  1352. mutex_lock(&priv->vote_lock);
  1353. if (!priv->pre_dev_up ||
  1354. (priv->lpass_core_hw_vote && !priv->core_hw_vote_count) ||
  1355. (priv->lpass_audio_hw_vote && !priv->core_audio_vote_count))
  1356. ret = false;
  1357. mutex_unlock(&priv->vote_lock);
  1358. trace_printk("%s, leave\n", __func__);
  1359. return ret;
  1360. }
  1361. EXPORT_SYMBOL(lpass_cdc_check_core_votes);
  1362. static const struct of_device_id lpass_cdc_dt_match[] = {
  1363. {.compatible = "qcom,lpass-cdc"},
  1364. {}
  1365. };
  1366. MODULE_DEVICE_TABLE(of, lpass_cdc_dt_match);
  1367. static struct platform_driver lpass_cdc_drv = {
  1368. .driver = {
  1369. .name = "lpass-cdc",
  1370. .owner = THIS_MODULE,
  1371. .of_match_table = lpass_cdc_dt_match,
  1372. .suppress_bind_attrs = true,
  1373. },
  1374. .probe = lpass_cdc_probe,
  1375. .remove = lpass_cdc_remove,
  1376. };
  1377. static int lpass_cdc_drv_init(void)
  1378. {
  1379. return platform_driver_register(&lpass_cdc_drv);
  1380. }
  1381. static void lpass_cdc_drv_exit(void)
  1382. {
  1383. platform_driver_unregister(&lpass_cdc_drv);
  1384. }
  1385. static int __init lpass_cdc_init(void)
  1386. {
  1387. lpass_cdc_drv_init();
  1388. lpass_cdc_clk_rsc_mgr_init();
  1389. return 0;
  1390. }
  1391. module_init(lpass_cdc_init);
  1392. static void __exit lpass_cdc_exit(void)
  1393. {
  1394. lpass_cdc_clk_rsc_mgr_exit();
  1395. lpass_cdc_drv_exit();
  1396. }
  1397. module_exit(lpass_cdc_exit);
  1398. MODULE_DESCRIPTION("LPASS Codec driver");
  1399. MODULE_LICENSE("GPL v2");