wcd9xxx-utils.c 30 KB

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