wcd9xxx-utils.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224
  1. /* Copyright (c) 2016-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/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/of_gpio.h>
  15. #include <linux/of_irq.h>
  16. #include <linux/of_device.h>
  17. #include <linux/slab.h>
  18. #include <linux/regmap.h>
  19. #include <linux/delay.h>
  20. #include <linux/sched.h>
  21. #include <linux/mfd/core.h>
  22. #include "core.h"
  23. #include "msm-cdc-supply.h"
  24. #include "msm-cdc-pinctrl.h"
  25. #include "pdata.h"
  26. #include "wcd9xxx-irq.h"
  27. #include "wcd9xxx-utils.h"
  28. #define REG_BYTES 2
  29. #define VAL_BYTES 1
  30. /*
  31. * Page Register Address that APP Proc uses to
  32. * access WCD9335 Codec registers is identified
  33. * as 0x00
  34. */
  35. #define PAGE_REG_ADDR 0x00
  36. static enum wcd9xxx_intf_status wcd9xxx_intf = -1;
  37. static struct mfd_cell tavil_devs[] = {
  38. {
  39. .name = "qcom-wcd-pinctrl",
  40. .of_compatible = "qcom,wcd-pinctrl",
  41. },
  42. {
  43. .name = "tavil_codec",
  44. },
  45. };
  46. static struct mfd_cell tasha_devs[] = {
  47. {
  48. .name = "tasha_codec",
  49. },
  50. };
  51. static struct mfd_cell tomtom_devs[] = {
  52. {
  53. .name = "tomtom_codec",
  54. },
  55. };
  56. static int wcd9xxx_read_of_property_u32(struct device *dev, const char *name,
  57. u32 *val)
  58. {
  59. int rc = 0;
  60. rc = of_property_read_u32(dev->of_node, name, val);
  61. if (rc)
  62. dev_err(dev, "%s: Looking up %s property in node %s failed",
  63. __func__, name, dev->of_node->full_name);
  64. return rc;
  65. }
  66. static void wcd9xxx_dt_parse_micbias_info(struct device *dev,
  67. struct wcd9xxx_micbias_setting *mb)
  68. {
  69. u32 prop_val;
  70. int rc;
  71. if (of_find_property(dev->of_node, "qcom,cdc-micbias-ldoh-v", NULL)) {
  72. rc = wcd9xxx_read_of_property_u32(dev,
  73. "qcom,cdc-micbias-ldoh-v",
  74. &prop_val);
  75. if (!rc)
  76. mb->ldoh_v = (u8)prop_val;
  77. }
  78. /* MB1 */
  79. if (of_find_property(dev->of_node, "qcom,cdc-micbias-cfilt1-mv",
  80. NULL)) {
  81. rc = wcd9xxx_read_of_property_u32(dev,
  82. "qcom,cdc-micbias-cfilt1-mv",
  83. &prop_val);
  84. if (!rc)
  85. mb->cfilt1_mv = prop_val;
  86. rc = wcd9xxx_read_of_property_u32(dev,
  87. "qcom,cdc-micbias1-cfilt-sel",
  88. &prop_val);
  89. if (!rc)
  90. mb->bias1_cfilt_sel = (u8)prop_val;
  91. } else if (of_find_property(dev->of_node, "qcom,cdc-micbias1-mv",
  92. NULL)) {
  93. rc = wcd9xxx_read_of_property_u32(dev,
  94. "qcom,cdc-micbias1-mv",
  95. &prop_val);
  96. if (!rc)
  97. mb->micb1_mv = prop_val;
  98. } else {
  99. dev_info(dev, "%s: Micbias1 DT property not found\n",
  100. __func__);
  101. }
  102. /* MB2 */
  103. if (of_find_property(dev->of_node, "qcom,cdc-micbias-cfilt2-mv",
  104. NULL)) {
  105. rc = wcd9xxx_read_of_property_u32(dev,
  106. "qcom,cdc-micbias-cfilt2-mv",
  107. &prop_val);
  108. if (!rc)
  109. mb->cfilt2_mv = prop_val;
  110. rc = wcd9xxx_read_of_property_u32(dev,
  111. "qcom,cdc-micbias2-cfilt-sel",
  112. &prop_val);
  113. if (!rc)
  114. mb->bias2_cfilt_sel = (u8)prop_val;
  115. } else if (of_find_property(dev->of_node, "qcom,cdc-micbias2-mv",
  116. NULL)) {
  117. rc = wcd9xxx_read_of_property_u32(dev,
  118. "qcom,cdc-micbias2-mv",
  119. &prop_val);
  120. if (!rc)
  121. mb->micb2_mv = prop_val;
  122. } else {
  123. dev_info(dev, "%s: Micbias2 DT property not found\n",
  124. __func__);
  125. }
  126. /* MB3 */
  127. if (of_find_property(dev->of_node, "qcom,cdc-micbias-cfilt3-mv",
  128. NULL)) {
  129. rc = wcd9xxx_read_of_property_u32(dev,
  130. "qcom,cdc-micbias-cfilt3-mv",
  131. &prop_val);
  132. if (!rc)
  133. mb->cfilt3_mv = prop_val;
  134. rc = wcd9xxx_read_of_property_u32(dev,
  135. "qcom,cdc-micbias3-cfilt-sel",
  136. &prop_val);
  137. if (!rc)
  138. mb->bias3_cfilt_sel = (u8)prop_val;
  139. } else if (of_find_property(dev->of_node, "qcom,cdc-micbias3-mv",
  140. NULL)) {
  141. rc = wcd9xxx_read_of_property_u32(dev,
  142. "qcom,cdc-micbias3-mv",
  143. &prop_val);
  144. if (!rc)
  145. mb->micb3_mv = prop_val;
  146. } else {
  147. dev_info(dev, "%s: Micbias3 DT property not found\n",
  148. __func__);
  149. }
  150. /* MB4 */
  151. if (of_find_property(dev->of_node, "qcom,cdc-micbias4-cfilt-sel",
  152. NULL)) {
  153. rc = wcd9xxx_read_of_property_u32(dev,
  154. "qcom,cdc-micbias4-cfilt-sel",
  155. &prop_val);
  156. if (!rc)
  157. mb->bias4_cfilt_sel = (u8)prop_val;
  158. } else if (of_find_property(dev->of_node, "qcom,cdc-micbias4-mv",
  159. NULL)) {
  160. rc = wcd9xxx_read_of_property_u32(dev,
  161. "qcom,cdc-micbias4-mv",
  162. &prop_val);
  163. if (!rc)
  164. mb->micb4_mv = prop_val;
  165. } else {
  166. dev_info(dev, "%s: Micbias4 DT property not found\n",
  167. __func__);
  168. }
  169. mb->bias1_cap_mode =
  170. (of_property_read_bool(dev->of_node, "qcom,cdc-micbias1-ext-cap") ?
  171. MICBIAS_EXT_BYP_CAP : MICBIAS_NO_EXT_BYP_CAP);
  172. mb->bias2_cap_mode =
  173. (of_property_read_bool(dev->of_node, "qcom,cdc-micbias2-ext-cap") ?
  174. MICBIAS_EXT_BYP_CAP : MICBIAS_NO_EXT_BYP_CAP);
  175. mb->bias3_cap_mode =
  176. (of_property_read_bool(dev->of_node, "qcom,cdc-micbias3-ext-cap") ?
  177. MICBIAS_EXT_BYP_CAP : MICBIAS_NO_EXT_BYP_CAP);
  178. mb->bias4_cap_mode =
  179. (of_property_read_bool(dev->of_node, "qcom,cdc-micbias4-ext-cap") ?
  180. MICBIAS_EXT_BYP_CAP : MICBIAS_NO_EXT_BYP_CAP);
  181. mb->bias2_is_headset_only =
  182. of_property_read_bool(dev->of_node,
  183. "qcom,cdc-micbias2-headset-only");
  184. /* Print micbias info */
  185. dev_dbg(dev, "%s: ldoh_v %u cfilt1_mv %u cfilt2_mv %u cfilt3_mv %u",
  186. __func__, (u32)mb->ldoh_v, (u32)mb->cfilt1_mv,
  187. (u32)mb->cfilt2_mv, (u32)mb->cfilt3_mv);
  188. dev_dbg(dev, "%s: micb1_mv %u micb2_mv %u micb3_mv %u micb4_mv %u",
  189. __func__, mb->micb1_mv, mb->micb2_mv,
  190. mb->micb3_mv, mb->micb4_mv);
  191. dev_dbg(dev, "%s: bias1_cfilt_sel %u bias2_cfilt_sel %u\n",
  192. __func__, (u32)mb->bias1_cfilt_sel, (u32)mb->bias2_cfilt_sel);
  193. dev_dbg(dev, "%s: bias3_cfilt_sel %u bias4_cfilt_sel %u\n",
  194. __func__, (u32)mb->bias3_cfilt_sel, (u32)mb->bias4_cfilt_sel);
  195. dev_dbg(dev, "%s: bias1_ext_cap %d bias2_ext_cap %d\n",
  196. __func__, mb->bias1_cap_mode, mb->bias2_cap_mode);
  197. dev_dbg(dev, "%s: bias3_ext_cap %d bias4_ext_cap %d\n",
  198. __func__, mb->bias3_cap_mode, mb->bias4_cap_mode);
  199. dev_dbg(dev, "%s: bias2_is_headset_only %d\n",
  200. __func__, mb->bias2_is_headset_only);
  201. }
  202. /*
  203. * wcd9xxx_validate_dmic_sample_rate:
  204. * Given the dmic_sample_rate and mclk rate, validate the
  205. * dmic_sample_rate. If dmic rate is found to be invalid,
  206. * assign the dmic rate as undefined, so individual codec
  207. * drivers can use their own defaults
  208. * @dev: the device for which the dmic is to be configured
  209. * @dmic_sample_rate: The input dmic_sample_rate
  210. * @mclk_rate: The input codec mclk rate
  211. * @dmic_rate_type: String to indicate the type of dmic sample
  212. * rate, used for debug/error logging.
  213. */
  214. static u32 wcd9xxx_validate_dmic_sample_rate(struct device *dev,
  215. u32 dmic_sample_rate, u32 mclk_rate,
  216. const char *dmic_rate_type)
  217. {
  218. u32 div_factor;
  219. if (dmic_sample_rate == WCD9XXX_DMIC_SAMPLE_RATE_UNDEFINED ||
  220. mclk_rate % dmic_sample_rate != 0)
  221. goto undefined_rate;
  222. div_factor = mclk_rate / dmic_sample_rate;
  223. switch (div_factor) {
  224. case 2:
  225. case 3:
  226. case 4:
  227. case 8:
  228. case 16:
  229. /* Valid dmic DIV factors */
  230. dev_dbg(dev, "%s: DMIC_DIV = %u, mclk_rate = %u\n",
  231. __func__, div_factor, mclk_rate);
  232. break;
  233. case 6:
  234. /*
  235. * DIV 6 is valid for both 9.6MHz and 12.288MHz
  236. * MCLK on Tavil. Older codecs support DIV6 only
  237. * for 12.288MHz MCLK.
  238. */
  239. if ((mclk_rate == WCD9XXX_MCLK_CLK_9P6HZ) &&
  240. (of_device_is_compatible(dev->of_node,
  241. "qcom,tavil-slim-pgd")))
  242. dev_dbg(dev, "%s: DMIC_DIV = %u, mclk_rate = %u\n",
  243. __func__, div_factor, mclk_rate);
  244. else if (mclk_rate != WCD9XXX_MCLK_CLK_12P288MHZ)
  245. goto undefined_rate;
  246. break;
  247. default:
  248. /* Any other DIV factor is invalid */
  249. goto undefined_rate;
  250. }
  251. return dmic_sample_rate;
  252. undefined_rate:
  253. dev_dbg(dev, "%s: Invalid %s = %d, for mclk %d\n",
  254. __func__, dmic_rate_type, dmic_sample_rate, mclk_rate);
  255. dmic_sample_rate = WCD9XXX_DMIC_SAMPLE_RATE_UNDEFINED;
  256. return dmic_sample_rate;
  257. }
  258. /*
  259. * wcd9xxx_populate_dt_data:
  260. * Parse device tree properties for the given codec device
  261. *
  262. * @dev: pointer to codec device
  263. *
  264. * Returns pointer to the platform data resulting from parsing
  265. * device tree.
  266. */
  267. struct wcd9xxx_pdata *wcd9xxx_populate_dt_data(struct device *dev)
  268. {
  269. struct wcd9xxx_pdata *pdata;
  270. u32 dmic_sample_rate = WCD9XXX_DMIC_SAMPLE_RATE_UNDEFINED;
  271. u32 mad_dmic_sample_rate = WCD9XXX_DMIC_SAMPLE_RATE_UNDEFINED;
  272. u32 ecpp_dmic_sample_rate = WCD9XXX_DMIC_SAMPLE_RATE_UNDEFINED;
  273. u32 dmic_clk_drive = WCD9XXX_DMIC_CLK_DRIVE_UNDEFINED;
  274. u32 prop_val;
  275. int rc = 0;
  276. if (!dev || !dev->of_node)
  277. return NULL;
  278. pdata = devm_kzalloc(dev, sizeof(struct wcd9xxx_pdata),
  279. GFP_KERNEL);
  280. if (!pdata)
  281. return NULL;
  282. /* Parse power supplies */
  283. msm_cdc_get_power_supplies(dev, &pdata->regulator,
  284. &pdata->num_supplies);
  285. if (!pdata->regulator || (pdata->num_supplies <= 0)) {
  286. dev_err(dev, "%s: no power supplies defined for codec\n",
  287. __func__);
  288. goto err_power_sup;
  289. }
  290. /* Parse micbias info */
  291. wcd9xxx_dt_parse_micbias_info(dev, &pdata->micbias);
  292. pdata->wcd_rst_np = of_parse_phandle(dev->of_node,
  293. "qcom,wcd-rst-gpio-node", 0);
  294. if (!pdata->wcd_rst_np) {
  295. dev_err(dev, "%s: Looking up %s property in node %s failed\n",
  296. __func__, "qcom,wcd-rst-gpio-node",
  297. dev->of_node->full_name);
  298. goto err_parse_dt_prop;
  299. }
  300. pdata->has_buck_vsel_gpio = of_property_read_bool(dev->of_node,
  301. "qcom,has-buck-vsel-gpio");
  302. if (pdata->has_buck_vsel_gpio) {
  303. pdata->buck_vsel_ctl_np = of_parse_phandle(dev->of_node,
  304. "qcom,buck-vsel-gpio-node", 0);
  305. if (!pdata->buck_vsel_ctl_np) {
  306. dev_err(dev, "%s No entry for %s property in node %s\n",
  307. __func__, "qcom,buck-vsel-gpio-node",
  308. dev->of_node->full_name);
  309. goto err_parse_dt_prop;
  310. }
  311. }
  312. pdata->has_micb_supply_en_gpio = of_property_read_bool(dev->of_node,
  313. "qcom,has-micbias-supply-en-gpio");
  314. if (pdata->has_micb_supply_en_gpio) {
  315. pdata->micb_en_ctl = of_parse_phandle(dev->of_node,
  316. "qcom,micbias-supply-en-gpio-node", 0);
  317. if (!pdata->micb_en_ctl) {
  318. dev_err(dev, "%s No entry for %s property in node %s\n",
  319. __func__, "qcom,micbias-supply-en-gpio-node",
  320. dev->of_node->full_name);
  321. goto err_parse_dt_prop;
  322. }
  323. }
  324. if (!(wcd9xxx_read_of_property_u32(dev, "qcom,cdc-mclk-clk-rate",
  325. &prop_val)))
  326. pdata->mclk_rate = prop_val;
  327. if (pdata->mclk_rate != WCD9XXX_MCLK_CLK_9P6HZ &&
  328. pdata->mclk_rate != WCD9XXX_MCLK_CLK_12P288MHZ) {
  329. dev_err(dev, "%s: Invalid mclk_rate = %u\n", __func__,
  330. pdata->mclk_rate);
  331. goto err_parse_dt_prop;
  332. }
  333. if (!(wcd9xxx_read_of_property_u32(dev, "qcom,cdc-dmic-sample-rate",
  334. &prop_val)))
  335. dmic_sample_rate = prop_val;
  336. pdata->dmic_sample_rate = wcd9xxx_validate_dmic_sample_rate(dev,
  337. dmic_sample_rate,
  338. pdata->mclk_rate,
  339. "audio_dmic_rate");
  340. if (!(wcd9xxx_read_of_property_u32(dev, "qcom,cdc-mad-dmic-rate",
  341. &prop_val)))
  342. mad_dmic_sample_rate = prop_val;
  343. pdata->mad_dmic_sample_rate = wcd9xxx_validate_dmic_sample_rate(dev,
  344. mad_dmic_sample_rate,
  345. pdata->mclk_rate,
  346. "mad_dmic_rate");
  347. if (of_find_property(dev->of_node, "qcom,cdc-ecpp-dmic-rate", NULL)) {
  348. rc = wcd9xxx_read_of_property_u32(dev,
  349. "qcom,cdc-ecpp-dmic-rate",
  350. &prop_val);
  351. if (!rc)
  352. ecpp_dmic_sample_rate = prop_val;
  353. }
  354. pdata->ecpp_dmic_sample_rate = wcd9xxx_validate_dmic_sample_rate(dev,
  355. ecpp_dmic_sample_rate,
  356. pdata->mclk_rate,
  357. "ecpp_dmic_rate");
  358. if (!(of_property_read_u32(dev->of_node,
  359. "qcom,cdc-dmic-clk-drv-strength",
  360. &prop_val))) {
  361. dmic_clk_drive = prop_val;
  362. if (dmic_clk_drive != 2 && dmic_clk_drive != 4 &&
  363. dmic_clk_drive != 8 && dmic_clk_drive != 16)
  364. dev_err(dev, "Invalid cdc-dmic-clk-drv-strength %d\n",
  365. dmic_clk_drive);
  366. }
  367. pdata->dmic_clk_drv = dmic_clk_drive;
  368. return pdata;
  369. err_parse_dt_prop:
  370. devm_kfree(dev, pdata->regulator);
  371. pdata->regulator = NULL;
  372. pdata->num_supplies = 0;
  373. err_power_sup:
  374. devm_kfree(dev, pdata);
  375. return NULL;
  376. }
  377. EXPORT_SYMBOL(wcd9xxx_populate_dt_data);
  378. static bool is_wcd9xxx_reg_power_down(struct wcd9xxx *wcd9xxx, u16 rreg)
  379. {
  380. bool ret = false;
  381. int i;
  382. struct wcd9xxx_power_region *wcd9xxx_pwr;
  383. if (!wcd9xxx)
  384. return ret;
  385. for (i = 0; i < WCD9XXX_MAX_PWR_REGIONS; i++) {
  386. wcd9xxx_pwr = wcd9xxx->wcd9xxx_pwr[i];
  387. if (!wcd9xxx_pwr)
  388. continue;
  389. if (((wcd9xxx_pwr->pwr_collapse_reg_min == 0) &&
  390. (wcd9xxx_pwr->pwr_collapse_reg_max == 0)) ||
  391. (wcd9xxx_pwr->power_state ==
  392. WCD_REGION_POWER_COLLAPSE_REMOVE))
  393. ret = false;
  394. else if (((wcd9xxx_pwr->power_state ==
  395. WCD_REGION_POWER_DOWN) ||
  396. (wcd9xxx_pwr->power_state ==
  397. WCD_REGION_POWER_COLLAPSE_BEGIN)) &&
  398. (rreg >= wcd9xxx_pwr->pwr_collapse_reg_min) &&
  399. (rreg <= wcd9xxx_pwr->pwr_collapse_reg_max))
  400. ret = true;
  401. }
  402. return ret;
  403. }
  404. /*
  405. * wcd9xxx_page_write:
  406. * Retrieve page number from register and
  407. * write that page number to the page address.
  408. * Called under io_lock acquisition.
  409. *
  410. * @wcd9xxx: pointer to wcd9xxx
  411. * @reg: Register address from which page number is retrieved
  412. *
  413. * Returns 0 for success and negative error code for failure.
  414. */
  415. int wcd9xxx_page_write(struct wcd9xxx *wcd9xxx, unsigned short *reg)
  416. {
  417. int ret = 0;
  418. unsigned short c_reg, reg_addr;
  419. u8 pg_num, prev_pg_num;
  420. if (wcd9xxx->type != WCD9335 && wcd9xxx->type != WCD934X)
  421. return ret;
  422. c_reg = *reg;
  423. pg_num = c_reg >> 8;
  424. reg_addr = c_reg & 0xff;
  425. if (wcd9xxx->prev_pg_valid) {
  426. prev_pg_num = wcd9xxx->prev_pg;
  427. if (prev_pg_num != pg_num) {
  428. ret = wcd9xxx->write_dev(
  429. wcd9xxx, PAGE_REG_ADDR, 1,
  430. (void *) &pg_num, false);
  431. if (ret < 0)
  432. pr_err("page write error, pg_num: 0x%x\n",
  433. pg_num);
  434. else {
  435. wcd9xxx->prev_pg = pg_num;
  436. dev_dbg(wcd9xxx->dev, "%s: Page 0x%x Write to 0x00\n",
  437. __func__, pg_num);
  438. }
  439. }
  440. } else {
  441. ret = wcd9xxx->write_dev(
  442. wcd9xxx, PAGE_REG_ADDR, 1, (void *) &pg_num,
  443. false);
  444. if (ret < 0)
  445. pr_err("page write error, pg_num: 0x%x\n", pg_num);
  446. else {
  447. wcd9xxx->prev_pg = pg_num;
  448. wcd9xxx->prev_pg_valid = true;
  449. dev_dbg(wcd9xxx->dev, "%s: Page 0x%x Write to 0x00\n",
  450. __func__, pg_num);
  451. }
  452. }
  453. *reg = reg_addr;
  454. return ret;
  455. }
  456. EXPORT_SYMBOL(wcd9xxx_page_write);
  457. static int regmap_bus_read(void *context, const void *reg, size_t reg_size,
  458. void *val, size_t val_size)
  459. {
  460. struct device *dev = context;
  461. struct wcd9xxx *wcd9xxx = dev_get_drvdata(dev);
  462. unsigned short c_reg, rreg;
  463. int ret, i;
  464. if (!wcd9xxx) {
  465. dev_err(dev, "%s: wcd9xxx is NULL\n", __func__);
  466. return -EINVAL;
  467. }
  468. if (!reg || !val) {
  469. dev_err(dev, "%s: reg or val is NULL\n", __func__);
  470. return -EINVAL;
  471. }
  472. if (reg_size != REG_BYTES) {
  473. dev_err(dev, "%s: register size %zd bytes, not supported\n",
  474. __func__, reg_size);
  475. return -EINVAL;
  476. }
  477. mutex_lock(&wcd9xxx->io_lock);
  478. c_reg = *(u16 *)reg;
  479. rreg = c_reg;
  480. if (is_wcd9xxx_reg_power_down(wcd9xxx, rreg)) {
  481. ret = 0;
  482. for (i = 0; i < val_size; i++)
  483. ((u8 *)val)[i] = 0;
  484. goto err;
  485. }
  486. ret = wcd9xxx_page_write(wcd9xxx, &c_reg);
  487. if (ret)
  488. goto err;
  489. ret = wcd9xxx->read_dev(wcd9xxx, c_reg, val_size, val, false);
  490. if (ret < 0)
  491. dev_err(dev, "%s: Codec read failed (%d), reg: 0x%x, size:%zd\n",
  492. __func__, ret, rreg, val_size);
  493. else {
  494. for (i = 0; i < val_size; i++)
  495. dev_dbg(dev, "%s: Read 0x%02x from 0x%x\n",
  496. __func__, ((u8 *)val)[i], rreg + i);
  497. }
  498. err:
  499. mutex_unlock(&wcd9xxx->io_lock);
  500. return ret;
  501. }
  502. static int regmap_bus_gather_write(void *context,
  503. const void *reg, size_t reg_size,
  504. const void *val, size_t val_size)
  505. {
  506. struct device *dev = context;
  507. struct wcd9xxx *wcd9xxx = dev_get_drvdata(dev);
  508. unsigned short c_reg, rreg;
  509. int ret, i;
  510. if (!wcd9xxx) {
  511. dev_err(dev, "%s: wcd9xxx is NULL\n", __func__);
  512. return -EINVAL;
  513. }
  514. if (!reg || !val) {
  515. dev_err(dev, "%s: reg or val is NULL\n", __func__);
  516. return -EINVAL;
  517. }
  518. if (reg_size != REG_BYTES) {
  519. dev_err(dev, "%s: register size %zd bytes, not supported\n",
  520. __func__, reg_size);
  521. return -EINVAL;
  522. }
  523. mutex_lock(&wcd9xxx->io_lock);
  524. c_reg = *(u16 *)reg;
  525. rreg = c_reg;
  526. if (is_wcd9xxx_reg_power_down(wcd9xxx, rreg)) {
  527. ret = 0;
  528. goto err;
  529. }
  530. ret = wcd9xxx_page_write(wcd9xxx, &c_reg);
  531. if (ret)
  532. goto err;
  533. for (i = 0; i < val_size; i++)
  534. dev_dbg(dev, "Write %02x to 0x%x\n", ((u8 *)val)[i],
  535. rreg + i);
  536. ret = wcd9xxx->write_dev(wcd9xxx, c_reg, val_size, (void *) val,
  537. false);
  538. if (ret < 0)
  539. dev_err(dev, "%s: Codec write failed (%d), reg:0x%x, size:%zd\n",
  540. __func__, ret, rreg, val_size);
  541. err:
  542. mutex_unlock(&wcd9xxx->io_lock);
  543. return ret;
  544. }
  545. static int regmap_bus_write(void *context, const void *data, size_t count)
  546. {
  547. struct device *dev = context;
  548. struct wcd9xxx *wcd9xxx = dev_get_drvdata(dev);
  549. if (!wcd9xxx)
  550. return -EINVAL;
  551. WARN_ON(count < REG_BYTES);
  552. if (count > (REG_BYTES + VAL_BYTES)) {
  553. if (wcd9xxx->multi_reg_write)
  554. return wcd9xxx->multi_reg_write(wcd9xxx,
  555. data, count);
  556. } else
  557. return regmap_bus_gather_write(context, data, REG_BYTES,
  558. data + REG_BYTES,
  559. count - REG_BYTES);
  560. dev_err(dev, "%s: bus multi reg write failure\n", __func__);
  561. return -EINVAL;
  562. }
  563. static struct regmap_bus regmap_bus_config = {
  564. .write = regmap_bus_write,
  565. .gather_write = regmap_bus_gather_write,
  566. .read = regmap_bus_read,
  567. .reg_format_endian_default = REGMAP_ENDIAN_NATIVE,
  568. .val_format_endian_default = REGMAP_ENDIAN_NATIVE,
  569. };
  570. /*
  571. * wcd9xxx_regmap_init:
  572. * Initialize wcd9xxx register map
  573. *
  574. * @dev: pointer to wcd device
  575. * @config: pointer to register map config
  576. *
  577. * Returns pointer to regmap structure for success
  578. * or NULL in case of failure.
  579. */
  580. struct regmap *wcd9xxx_regmap_init(struct device *dev,
  581. const struct regmap_config *config)
  582. {
  583. return devm_regmap_init(dev, &regmap_bus_config, dev, config);
  584. }
  585. EXPORT_SYMBOL(wcd9xxx_regmap_init);
  586. /*
  587. * wcd9xxx_reset:
  588. * Reset wcd9xxx codec
  589. *
  590. * @dev: pointer to wcd device
  591. *
  592. * Returns 0 for success or negative error code in case of failure
  593. */
  594. int wcd9xxx_reset(struct device *dev)
  595. {
  596. struct wcd9xxx *wcd9xxx;
  597. int rc;
  598. int value;
  599. if (!dev)
  600. return -ENODEV;
  601. wcd9xxx = dev_get_drvdata(dev);
  602. if (!wcd9xxx)
  603. return -EINVAL;
  604. if (!wcd9xxx->wcd_rst_np) {
  605. dev_err(dev, "%s: reset gpio device node not specified\n",
  606. __func__);
  607. return -EINVAL;
  608. }
  609. value = msm_cdc_pinctrl_get_state(wcd9xxx->wcd_rst_np);
  610. if (value > 0) {
  611. wcd9xxx->avoid_cdc_rstlow = 1;
  612. return 0;
  613. }
  614. rc = msm_cdc_pinctrl_select_sleep_state(wcd9xxx->wcd_rst_np);
  615. if (rc) {
  616. dev_err(dev, "%s: wcd sleep state request fail!\n",
  617. __func__);
  618. return rc;
  619. }
  620. /* 20ms sleep required after pulling the reset gpio to LOW */
  621. msleep(20);
  622. rc = msm_cdc_pinctrl_select_active_state(wcd9xxx->wcd_rst_np);
  623. if (rc) {
  624. dev_err(dev, "%s: wcd active state request fail!\n",
  625. __func__);
  626. return rc;
  627. }
  628. msleep(20);
  629. return rc;
  630. }
  631. EXPORT_SYMBOL(wcd9xxx_reset);
  632. /*
  633. * wcd9xxx_reset_low:
  634. * Pull the wcd9xxx codec reset_n to low
  635. *
  636. * @dev: pointer to wcd device
  637. *
  638. * Returns 0 for success or negative error code in case of failure
  639. */
  640. int wcd9xxx_reset_low(struct device *dev)
  641. {
  642. struct wcd9xxx *wcd9xxx;
  643. int rc;
  644. if (!dev)
  645. return -ENODEV;
  646. wcd9xxx = dev_get_drvdata(dev);
  647. if (!wcd9xxx)
  648. return -EINVAL;
  649. if (!wcd9xxx->wcd_rst_np) {
  650. dev_err(dev, "%s: reset gpio device node not specified\n",
  651. __func__);
  652. return -EINVAL;
  653. }
  654. if (wcd9xxx->avoid_cdc_rstlow) {
  655. wcd9xxx->avoid_cdc_rstlow = 0;
  656. dev_dbg(dev, "%s: avoid pull down of reset GPIO\n", __func__);
  657. return 0;
  658. }
  659. rc = msm_cdc_pinctrl_select_sleep_state(wcd9xxx->wcd_rst_np);
  660. if (rc)
  661. dev_err(dev, "%s: wcd sleep state request fail!\n",
  662. __func__);
  663. return rc;
  664. }
  665. EXPORT_SYMBOL(wcd9xxx_reset_low);
  666. /*
  667. * wcd9xxx_bringup:
  668. * Toggle reset analog and digital cores of wcd9xxx codec
  669. *
  670. * @dev: pointer to wcd device
  671. *
  672. * Returns 0 for success or negative error code in case of failure
  673. */
  674. int wcd9xxx_bringup(struct device *dev)
  675. {
  676. struct wcd9xxx *wcd9xxx;
  677. int rc;
  678. codec_bringup_fn cdc_bup_fn;
  679. if (!dev)
  680. return -ENODEV;
  681. wcd9xxx = dev_get_drvdata(dev);
  682. if (!wcd9xxx)
  683. return -EINVAL;
  684. cdc_bup_fn = wcd9xxx_bringup_fn(wcd9xxx->type);
  685. if (!cdc_bup_fn) {
  686. dev_err(dev, "%s: Codec bringup fn NULL!\n",
  687. __func__);
  688. return -EINVAL;
  689. }
  690. rc = cdc_bup_fn(wcd9xxx);
  691. if (rc)
  692. dev_err(dev, "%s: Codec bringup error, rc: %d\n",
  693. __func__, rc);
  694. return rc;
  695. }
  696. EXPORT_SYMBOL(wcd9xxx_bringup);
  697. /*
  698. * wcd9xxx_bringup:
  699. * Set analog and digital cores of wcd9xxx codec in reset state
  700. *
  701. * @dev: pointer to wcd device
  702. *
  703. * Returns 0 for success or negative error code in case of failure
  704. */
  705. int wcd9xxx_bringdown(struct device *dev)
  706. {
  707. struct wcd9xxx *wcd9xxx;
  708. int rc;
  709. codec_bringdown_fn cdc_bdown_fn;
  710. if (!dev)
  711. return -ENODEV;
  712. wcd9xxx = dev_get_drvdata(dev);
  713. if (!wcd9xxx)
  714. return -EINVAL;
  715. cdc_bdown_fn = wcd9xxx_bringdown_fn(wcd9xxx->type);
  716. if (!cdc_bdown_fn) {
  717. dev_err(dev, "%s: Codec bring down fn NULL!\n",
  718. __func__);
  719. return -EINVAL;
  720. }
  721. rc = cdc_bdown_fn(wcd9xxx);
  722. if (rc)
  723. dev_err(dev, "%s: Codec bring down error, rc: %d\n",
  724. __func__, rc);
  725. return rc;
  726. }
  727. EXPORT_SYMBOL(wcd9xxx_bringdown);
  728. /*
  729. * wcd9xxx_get_codec_info:
  730. * Fill codec specific information like interrupts, version
  731. *
  732. * @dev: pointer to wcd device
  733. *
  734. * Returns 0 for success or negative error code in case of failure
  735. */
  736. int wcd9xxx_get_codec_info(struct device *dev)
  737. {
  738. struct wcd9xxx *wcd9xxx;
  739. int rc;
  740. codec_type_fn cdc_type_fn;
  741. struct wcd9xxx_codec_type *cinfo;
  742. if (!dev)
  743. return -ENODEV;
  744. wcd9xxx = dev_get_drvdata(dev);
  745. if (!wcd9xxx)
  746. return -EINVAL;
  747. cdc_type_fn = wcd9xxx_get_codec_info_fn(wcd9xxx->type);
  748. if (!cdc_type_fn) {
  749. dev_err(dev, "%s: Codec fill type fn NULL!\n",
  750. __func__);
  751. return -EINVAL;
  752. }
  753. cinfo = wcd9xxx->codec_type;
  754. if (!cinfo)
  755. return -EINVAL;
  756. rc = cdc_type_fn(wcd9xxx, cinfo);
  757. if (rc) {
  758. dev_err(dev, "%s: Codec type fill failed, rc:%d\n",
  759. __func__, rc);
  760. return rc;
  761. }
  762. switch (wcd9xxx->type) {
  763. case WCD934X:
  764. cinfo->dev = tavil_devs;
  765. cinfo->size = ARRAY_SIZE(tavil_devs);
  766. break;
  767. case WCD9335:
  768. cinfo->dev = tasha_devs;
  769. cinfo->size = ARRAY_SIZE(tasha_devs);
  770. break;
  771. case WCD9330:
  772. cinfo->dev = tomtom_devs;
  773. cinfo->size = ARRAY_SIZE(tomtom_devs);
  774. break;
  775. default:
  776. cinfo->dev = NULL;
  777. cinfo->size = 0;
  778. break;
  779. }
  780. return rc;
  781. }
  782. EXPORT_SYMBOL(wcd9xxx_get_codec_info);
  783. /*
  784. * wcd9xxx_core_irq_init:
  785. * Initialize wcd9xxx codec irq instance
  786. *
  787. * @wcd9xxx_core_res: pointer to wcd core resource
  788. *
  789. * Returns 0 for success or negative error code in case of failure
  790. */
  791. int wcd9xxx_core_irq_init(
  792. struct wcd9xxx_core_resource *wcd9xxx_core_res)
  793. {
  794. int ret = 0;
  795. if (!wcd9xxx_core_res)
  796. return -EINVAL;
  797. if (wcd9xxx_core_res->irq != 1) {
  798. ret = wcd9xxx_irq_init(wcd9xxx_core_res);
  799. if (ret)
  800. pr_err("IRQ initialization failed\n");
  801. }
  802. return ret;
  803. }
  804. EXPORT_SYMBOL(wcd9xxx_core_irq_init);
  805. /*
  806. * wcd9xxx_assign_irq:
  807. * Assign irq and irq_base to wcd9xxx core resource
  808. *
  809. * @wcd9xxx_core_res: pointer to wcd core resource
  810. * @irq: irq number
  811. * @irq_base: base irq number
  812. *
  813. * Returns 0 for success or negative error code in case of failure
  814. */
  815. int wcd9xxx_assign_irq(
  816. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  817. unsigned int irq,
  818. unsigned int irq_base)
  819. {
  820. if (!wcd9xxx_core_res)
  821. return -EINVAL;
  822. wcd9xxx_core_res->irq = irq;
  823. wcd9xxx_core_res->irq_base = irq_base;
  824. return 0;
  825. }
  826. EXPORT_SYMBOL(wcd9xxx_assign_irq);
  827. /*
  828. * wcd9xxx_core_res_init:
  829. * Initialize wcd core resource instance
  830. *
  831. * @wcd9xxx_core_res: pointer to wcd core resource
  832. * @num_irqs: number of irqs for wcd9xxx core
  833. * @num_irq_regs: number of irq registers
  834. * @wcd_regmap: pointer to the wcd register map
  835. *
  836. * Returns 0 for success or negative error code in case of failure
  837. */
  838. int wcd9xxx_core_res_init(
  839. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  840. int num_irqs, int num_irq_regs, struct regmap *wcd_regmap)
  841. {
  842. if (!wcd9xxx_core_res || !wcd_regmap)
  843. return -EINVAL;
  844. mutex_init(&wcd9xxx_core_res->pm_lock);
  845. wcd9xxx_core_res->wlock_holders = 0;
  846. wcd9xxx_core_res->pm_state = WCD9XXX_PM_SLEEPABLE;
  847. init_waitqueue_head(&wcd9xxx_core_res->pm_wq);
  848. pm_qos_add_request(&wcd9xxx_core_res->pm_qos_req,
  849. PM_QOS_CPU_DMA_LATENCY,
  850. PM_QOS_DEFAULT_VALUE);
  851. wcd9xxx_core_res->num_irqs = num_irqs;
  852. wcd9xxx_core_res->num_irq_regs = num_irq_regs;
  853. wcd9xxx_core_res->wcd_core_regmap = wcd_regmap;
  854. pr_debug("%s: num_irqs = %d, num_irq_regs = %d\n",
  855. __func__, wcd9xxx_core_res->num_irqs,
  856. wcd9xxx_core_res->num_irq_regs);
  857. return 0;
  858. }
  859. EXPORT_SYMBOL(wcd9xxx_core_res_init);
  860. /*
  861. * wcd9xxx_core_res_deinit:
  862. * Deinit wcd core resource instance
  863. *
  864. * @wcd9xxx_core_res: pointer to wcd core resource
  865. */
  866. void wcd9xxx_core_res_deinit(struct wcd9xxx_core_resource *wcd9xxx_core_res)
  867. {
  868. if (!wcd9xxx_core_res)
  869. return;
  870. pm_qos_remove_request(&wcd9xxx_core_res->pm_qos_req);
  871. mutex_destroy(&wcd9xxx_core_res->pm_lock);
  872. }
  873. EXPORT_SYMBOL(wcd9xxx_core_res_deinit);
  874. /*
  875. * wcd9xxx_pm_cmpxchg:
  876. * Check old state and exchange with pm new state
  877. * if old state matches with current state
  878. *
  879. * @wcd9xxx_core_res: pointer to wcd core resource
  880. * @o: pm old state
  881. * @n: pm new state
  882. *
  883. * Returns old state
  884. */
  885. enum wcd9xxx_pm_state wcd9xxx_pm_cmpxchg(
  886. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  887. enum wcd9xxx_pm_state o,
  888. enum wcd9xxx_pm_state n)
  889. {
  890. enum wcd9xxx_pm_state old;
  891. if (!wcd9xxx_core_res)
  892. return o;
  893. mutex_lock(&wcd9xxx_core_res->pm_lock);
  894. old = wcd9xxx_core_res->pm_state;
  895. if (old == o)
  896. wcd9xxx_core_res->pm_state = n;
  897. mutex_unlock(&wcd9xxx_core_res->pm_lock);
  898. return old;
  899. }
  900. EXPORT_SYMBOL(wcd9xxx_pm_cmpxchg);
  901. /*
  902. * wcd9xxx_core_res_suspend:
  903. * Suspend callback function for wcd9xxx core
  904. *
  905. * @wcd9xxx_core_res: pointer to wcd core resource
  906. * @pm_message_t: pm message
  907. *
  908. * Returns 0 for success or negative error code for failure/busy
  909. */
  910. int wcd9xxx_core_res_suspend(
  911. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  912. pm_message_t pmesg)
  913. {
  914. int ret = 0;
  915. pr_debug("%s: enter\n", __func__);
  916. /*
  917. * pm_qos_update_request() can be called after this suspend chain call
  918. * started. thus suspend can be called while lock is being held
  919. */
  920. mutex_lock(&wcd9xxx_core_res->pm_lock);
  921. if (wcd9xxx_core_res->pm_state == WCD9XXX_PM_SLEEPABLE) {
  922. pr_debug("%s: suspending system, state %d, wlock %d\n",
  923. __func__, wcd9xxx_core_res->pm_state,
  924. wcd9xxx_core_res->wlock_holders);
  925. wcd9xxx_core_res->pm_state = WCD9XXX_PM_ASLEEP;
  926. } else if (wcd9xxx_core_res->pm_state == WCD9XXX_PM_AWAKE) {
  927. /*
  928. * unlock to wait for pm_state == WCD9XXX_PM_SLEEPABLE
  929. * then set to WCD9XXX_PM_ASLEEP
  930. */
  931. pr_debug("%s: waiting to suspend system, state %d, wlock %d\n",
  932. __func__, wcd9xxx_core_res->pm_state,
  933. wcd9xxx_core_res->wlock_holders);
  934. mutex_unlock(&wcd9xxx_core_res->pm_lock);
  935. if (!(wait_event_timeout(wcd9xxx_core_res->pm_wq,
  936. wcd9xxx_pm_cmpxchg(wcd9xxx_core_res,
  937. WCD9XXX_PM_SLEEPABLE,
  938. WCD9XXX_PM_ASLEEP) ==
  939. WCD9XXX_PM_SLEEPABLE,
  940. HZ))) {
  941. pr_debug("%s: suspend failed state %d, wlock %d\n",
  942. __func__, wcd9xxx_core_res->pm_state,
  943. wcd9xxx_core_res->wlock_holders);
  944. ret = -EBUSY;
  945. } else {
  946. pr_debug("%s: done, state %d, wlock %d\n", __func__,
  947. wcd9xxx_core_res->pm_state,
  948. wcd9xxx_core_res->wlock_holders);
  949. }
  950. mutex_lock(&wcd9xxx_core_res->pm_lock);
  951. } else if (wcd9xxx_core_res->pm_state == WCD9XXX_PM_ASLEEP) {
  952. pr_warn("%s: system is already suspended, state %d, wlock %dn",
  953. __func__, wcd9xxx_core_res->pm_state,
  954. wcd9xxx_core_res->wlock_holders);
  955. }
  956. mutex_unlock(&wcd9xxx_core_res->pm_lock);
  957. return ret;
  958. }
  959. EXPORT_SYMBOL(wcd9xxx_core_res_suspend);
  960. /*
  961. * wcd9xxx_core_res_resume:
  962. * Resume callback function for wcd9xxx core
  963. *
  964. * @wcd9xxx_core_res: pointer to wcd core resource
  965. *
  966. * Returns 0 for success or negative error code for failure/busy
  967. */
  968. int wcd9xxx_core_res_resume(
  969. struct wcd9xxx_core_resource *wcd9xxx_core_res)
  970. {
  971. int ret = 0;
  972. pr_debug("%s: enter\n", __func__);
  973. mutex_lock(&wcd9xxx_core_res->pm_lock);
  974. if (wcd9xxx_core_res->pm_state == WCD9XXX_PM_ASLEEP) {
  975. pr_debug("%s: resuming system, state %d, wlock %d\n", __func__,
  976. wcd9xxx_core_res->pm_state,
  977. wcd9xxx_core_res->wlock_holders);
  978. wcd9xxx_core_res->pm_state = WCD9XXX_PM_SLEEPABLE;
  979. } else {
  980. pr_warn("%s: system is already awake, state %d wlock %d\n",
  981. __func__, wcd9xxx_core_res->pm_state,
  982. wcd9xxx_core_res->wlock_holders);
  983. }
  984. mutex_unlock(&wcd9xxx_core_res->pm_lock);
  985. wake_up_all(&wcd9xxx_core_res->pm_wq);
  986. return ret;
  987. }
  988. EXPORT_SYMBOL(wcd9xxx_core_res_resume);
  989. /*
  990. * wcd9xxx_get_intf_type:
  991. * Get interface type of wcd9xxx core
  992. *
  993. * Returns interface type
  994. */
  995. enum wcd9xxx_intf_status wcd9xxx_get_intf_type(void)
  996. {
  997. return wcd9xxx_intf;
  998. }
  999. EXPORT_SYMBOL(wcd9xxx_get_intf_type);
  1000. /*
  1001. * wcd9xxx_set_intf_type:
  1002. * Set interface type of wcd9xxx core
  1003. *
  1004. */
  1005. void wcd9xxx_set_intf_type(enum wcd9xxx_intf_status intf_status)
  1006. {
  1007. wcd9xxx_intf = intf_status;
  1008. }
  1009. EXPORT_SYMBOL(wcd9xxx_set_intf_type);
  1010. /*
  1011. * wcd9xxx_set_power_state: set power state for the region
  1012. * @wcd9xxx: handle to wcd core
  1013. * @state: power state to be set
  1014. * @region: region index
  1015. *
  1016. * Returns error code in case of failure or 0 for success
  1017. */
  1018. int wcd9xxx_set_power_state(struct wcd9xxx *wcd9xxx,
  1019. enum codec_power_states state,
  1020. enum wcd_power_regions region)
  1021. {
  1022. if (!wcd9xxx) {
  1023. pr_err("%s: wcd9xxx is NULL\n", __func__);
  1024. return -EINVAL;
  1025. }
  1026. if ((region < 0) || (region >= WCD9XXX_MAX_PWR_REGIONS)) {
  1027. dev_err(wcd9xxx->dev, "%s: region index %d out of bounds\n",
  1028. __func__, region);
  1029. return -EINVAL;
  1030. }
  1031. if (!wcd9xxx->wcd9xxx_pwr[region]) {
  1032. dev_err(wcd9xxx->dev, "%s: memory not created for region: %d\n",
  1033. __func__, region);
  1034. return -EINVAL;
  1035. }
  1036. mutex_lock(&wcd9xxx->io_lock);
  1037. wcd9xxx->wcd9xxx_pwr[region]->power_state = state;
  1038. mutex_unlock(&wcd9xxx->io_lock);
  1039. return 0;
  1040. }
  1041. EXPORT_SYMBOL(wcd9xxx_set_power_state);
  1042. /*
  1043. * wcd9xxx_get_current_power_state: Get power state of the region
  1044. * @wcd9xxx: handle to wcd core
  1045. * @region: region index
  1046. *
  1047. * Returns current power state of the region or error code for failure
  1048. */
  1049. int wcd9xxx_get_current_power_state(struct wcd9xxx *wcd9xxx,
  1050. enum wcd_power_regions region)
  1051. {
  1052. int state;
  1053. if (!wcd9xxx) {
  1054. pr_err("%s: wcd9xxx is NULL\n", __func__);
  1055. return -EINVAL;
  1056. }
  1057. if ((region < 0) || (region >= WCD9XXX_MAX_PWR_REGIONS)) {
  1058. dev_err(wcd9xxx->dev, "%s: region index %d out of bounds\n",
  1059. __func__, region);
  1060. return -EINVAL;
  1061. }
  1062. if (!wcd9xxx->wcd9xxx_pwr[region]) {
  1063. dev_err(wcd9xxx->dev, "%s: memory not created for region: %d\n",
  1064. __func__, region);
  1065. return -EINVAL;
  1066. }
  1067. mutex_lock(&wcd9xxx->io_lock);
  1068. state = wcd9xxx->wcd9xxx_pwr[region]->power_state;
  1069. mutex_unlock(&wcd9xxx->io_lock);
  1070. return state;
  1071. }
  1072. EXPORT_SYMBOL(wcd9xxx_get_current_power_state);