bolero-cdc.c 26 KB

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