mc13783-regulator.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. /*
  2. * Regulator Driver for Freescale MC13783 PMIC
  3. *
  4. * Copyright 2010 Yong Shen <yong.shen@linaro.org>
  5. * Copyright (C) 2008 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
  6. * Copyright 2009 Alberto Panizzo <maramaopercheseimorto@gmail.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/mfd/mc13783.h>
  13. #include <linux/regulator/machine.h>
  14. #include <linux/regulator/driver.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/kernel.h>
  17. #include <linux/slab.h>
  18. #include <linux/init.h>
  19. #include <linux/err.h>
  20. #include <linux/module.h>
  21. #include "mc13xxx.h"
  22. #define MC13783_REG_SWITCHERS5 29
  23. #define MC13783_REG_SWITCHERS5_SW3EN (1 << 20)
  24. #define MC13783_REG_SWITCHERS5_SW3VSEL 18
  25. #define MC13783_REG_SWITCHERS5_SW3VSEL_M (3 << 18)
  26. #define MC13783_REG_REGULATORSETTING0 30
  27. #define MC13783_REG_REGULATORSETTING0_VIOLOVSEL 2
  28. #define MC13783_REG_REGULATORSETTING0_VDIGVSEL 4
  29. #define MC13783_REG_REGULATORSETTING0_VGENVSEL 6
  30. #define MC13783_REG_REGULATORSETTING0_VRFDIGVSEL 9
  31. #define MC13783_REG_REGULATORSETTING0_VRFREFVSEL 11
  32. #define MC13783_REG_REGULATORSETTING0_VRFCPVSEL 13
  33. #define MC13783_REG_REGULATORSETTING0_VSIMVSEL 14
  34. #define MC13783_REG_REGULATORSETTING0_VESIMVSEL 15
  35. #define MC13783_REG_REGULATORSETTING0_VCAMVSEL 16
  36. #define MC13783_REG_REGULATORSETTING0_VIOLOVSEL_M (3 << 2)
  37. #define MC13783_REG_REGULATORSETTING0_VDIGVSEL_M (3 << 4)
  38. #define MC13783_REG_REGULATORSETTING0_VGENVSEL_M (7 << 6)
  39. #define MC13783_REG_REGULATORSETTING0_VRFDIGVSEL_M (3 << 9)
  40. #define MC13783_REG_REGULATORSETTING0_VRFREFVSEL_M (3 << 11)
  41. #define MC13783_REG_REGULATORSETTING0_VRFCPVSEL_M (1 << 13)
  42. #define MC13783_REG_REGULATORSETTING0_VSIMVSEL_M (1 << 14)
  43. #define MC13783_REG_REGULATORSETTING0_VESIMVSEL_M (1 << 15)
  44. #define MC13783_REG_REGULATORSETTING0_VCAMVSEL_M (7 << 16)
  45. #define MC13783_REG_REGULATORSETTING1 31
  46. #define MC13783_REG_REGULATORSETTING1_VVIBVSEL 0
  47. #define MC13783_REG_REGULATORSETTING1_VRF1VSEL 2
  48. #define MC13783_REG_REGULATORSETTING1_VRF2VSEL 4
  49. #define MC13783_REG_REGULATORSETTING1_VMMC1VSEL 6
  50. #define MC13783_REG_REGULATORSETTING1_VMMC2VSEL 9
  51. #define MC13783_REG_REGULATORSETTING1_VVIBVSEL_M (3 << 0)
  52. #define MC13783_REG_REGULATORSETTING1_VRF1VSEL_M (3 << 2)
  53. #define MC13783_REG_REGULATORSETTING1_VRF2VSEL_M (3 << 4)
  54. #define MC13783_REG_REGULATORSETTING1_VMMC1VSEL_M (7 << 6)
  55. #define MC13783_REG_REGULATORSETTING1_VMMC2VSEL_M (7 << 9)
  56. #define MC13783_REG_REGULATORMODE0 32
  57. #define MC13783_REG_REGULATORMODE0_VAUDIOEN (1 << 0)
  58. #define MC13783_REG_REGULATORMODE0_VIOHIEN (1 << 3)
  59. #define MC13783_REG_REGULATORMODE0_VIOLOEN (1 << 6)
  60. #define MC13783_REG_REGULATORMODE0_VDIGEN (1 << 9)
  61. #define MC13783_REG_REGULATORMODE0_VGENEN (1 << 12)
  62. #define MC13783_REG_REGULATORMODE0_VRFDIGEN (1 << 15)
  63. #define MC13783_REG_REGULATORMODE0_VRFREFEN (1 << 18)
  64. #define MC13783_REG_REGULATORMODE0_VRFCPEN (1 << 21)
  65. #define MC13783_REG_REGULATORMODE1 33
  66. #define MC13783_REG_REGULATORMODE1_VSIMEN (1 << 0)
  67. #define MC13783_REG_REGULATORMODE1_VESIMEN (1 << 3)
  68. #define MC13783_REG_REGULATORMODE1_VCAMEN (1 << 6)
  69. #define MC13783_REG_REGULATORMODE1_VRFBGEN (1 << 9)
  70. #define MC13783_REG_REGULATORMODE1_VVIBEN (1 << 11)
  71. #define MC13783_REG_REGULATORMODE1_VRF1EN (1 << 12)
  72. #define MC13783_REG_REGULATORMODE1_VRF2EN (1 << 15)
  73. #define MC13783_REG_REGULATORMODE1_VMMC1EN (1 << 18)
  74. #define MC13783_REG_REGULATORMODE1_VMMC2EN (1 << 21)
  75. #define MC13783_REG_POWERMISC 34
  76. #define MC13783_REG_POWERMISC_GPO1EN (1 << 6)
  77. #define MC13783_REG_POWERMISC_GPO2EN (1 << 8)
  78. #define MC13783_REG_POWERMISC_GPO3EN (1 << 10)
  79. #define MC13783_REG_POWERMISC_GPO4EN (1 << 12)
  80. #define MC13783_REG_POWERMISC_PWGT1SPIEN (1 << 15)
  81. #define MC13783_REG_POWERMISC_PWGT2SPIEN (1 << 16)
  82. #define MC13783_REG_POWERMISC_PWGTSPI_M (3 << 15)
  83. /* Voltage Values */
  84. static const int mc13783_sw3_val[] = {
  85. 5000000, 5000000, 5000000, 5500000,
  86. };
  87. static const int mc13783_vaudio_val[] = {
  88. 2775000,
  89. };
  90. static const int mc13783_viohi_val[] = {
  91. 2775000,
  92. };
  93. static const int mc13783_violo_val[] = {
  94. 1200000, 1300000, 1500000, 1800000,
  95. };
  96. static const int mc13783_vdig_val[] = {
  97. 1200000, 1300000, 1500000, 1800000,
  98. };
  99. static const int mc13783_vgen_val[] = {
  100. 1200000, 1300000, 1500000, 1800000,
  101. 1100000, 2000000, 2775000, 2400000,
  102. };
  103. static const int mc13783_vrfdig_val[] = {
  104. 1200000, 1500000, 1800000, 1875000,
  105. };
  106. static const int mc13783_vrfref_val[] = {
  107. 2475000, 2600000, 2700000, 2775000,
  108. };
  109. static const int mc13783_vrfcp_val[] = {
  110. 2700000, 2775000,
  111. };
  112. static const int mc13783_vsim_val[] = {
  113. 1800000, 2900000, 3000000,
  114. };
  115. static const int mc13783_vesim_val[] = {
  116. 1800000, 2900000,
  117. };
  118. static const int mc13783_vcam_val[] = {
  119. 1500000, 1800000, 2500000, 2550000,
  120. 2600000, 2750000, 2800000, 3000000,
  121. };
  122. static const int mc13783_vrfbg_val[] = {
  123. 1250000,
  124. };
  125. static const int mc13783_vvib_val[] = {
  126. 1300000, 1800000, 2000000, 3000000,
  127. };
  128. static const int mc13783_vmmc_val[] = {
  129. 1600000, 1800000, 2000000, 2600000,
  130. 2700000, 2800000, 2900000, 3000000,
  131. };
  132. static const int mc13783_vrf_val[] = {
  133. 1500000, 1875000, 2700000, 2775000,
  134. };
  135. static const int mc13783_gpo_val[] = {
  136. 3100000,
  137. };
  138. static const int mc13783_pwgtdrv_val[] = {
  139. 5500000,
  140. };
  141. static struct regulator_ops mc13783_gpo_regulator_ops;
  142. #define MC13783_DEFINE(prefix, name, reg, vsel_reg, voltages) \
  143. MC13xxx_DEFINE(MC13783_REG_, name, reg, vsel_reg, voltages, \
  144. mc13xxx_regulator_ops)
  145. #define MC13783_FIXED_DEFINE(prefix, name, reg, voltages) \
  146. MC13xxx_FIXED_DEFINE(MC13783_REG_, name, reg, voltages, \
  147. mc13xxx_fixed_regulator_ops)
  148. #define MC13783_GPO_DEFINE(prefix, name, reg, voltages) \
  149. MC13xxx_GPO_DEFINE(MC13783_REG_, name, reg, voltages, \
  150. mc13783_gpo_regulator_ops)
  151. #define MC13783_DEFINE_SW(_name, _reg, _vsel_reg, _voltages) \
  152. MC13783_DEFINE(REG, _name, _reg, _vsel_reg, _voltages)
  153. #define MC13783_DEFINE_REGU(_name, _reg, _vsel_reg, _voltages) \
  154. MC13783_DEFINE(REG, _name, _reg, _vsel_reg, _voltages)
  155. static struct mc13xxx_regulator mc13783_regulators[] = {
  156. MC13783_DEFINE_SW(SW3, SWITCHERS5, SWITCHERS5, mc13783_sw3_val),
  157. MC13783_FIXED_DEFINE(REG, VAUDIO, REGULATORMODE0, mc13783_vaudio_val),
  158. MC13783_FIXED_DEFINE(REG, VIOHI, REGULATORMODE0, mc13783_viohi_val),
  159. MC13783_DEFINE_REGU(VIOLO, REGULATORMODE0, REGULATORSETTING0, \
  160. mc13783_violo_val),
  161. MC13783_DEFINE_REGU(VDIG, REGULATORMODE0, REGULATORSETTING0, \
  162. mc13783_vdig_val),
  163. MC13783_DEFINE_REGU(VGEN, REGULATORMODE0, REGULATORSETTING0, \
  164. mc13783_vgen_val),
  165. MC13783_DEFINE_REGU(VRFDIG, REGULATORMODE0, REGULATORSETTING0, \
  166. mc13783_vrfdig_val),
  167. MC13783_DEFINE_REGU(VRFREF, REGULATORMODE0, REGULATORSETTING0, \
  168. mc13783_vrfref_val),
  169. MC13783_DEFINE_REGU(VRFCP, REGULATORMODE0, REGULATORSETTING0, \
  170. mc13783_vrfcp_val),
  171. MC13783_DEFINE_REGU(VSIM, REGULATORMODE1, REGULATORSETTING0, \
  172. mc13783_vsim_val),
  173. MC13783_DEFINE_REGU(VESIM, REGULATORMODE1, REGULATORSETTING0, \
  174. mc13783_vesim_val),
  175. MC13783_DEFINE_REGU(VCAM, REGULATORMODE1, REGULATORSETTING0, \
  176. mc13783_vcam_val),
  177. MC13783_FIXED_DEFINE(REG, VRFBG, REGULATORMODE1, mc13783_vrfbg_val),
  178. MC13783_DEFINE_REGU(VVIB, REGULATORMODE1, REGULATORSETTING1, \
  179. mc13783_vvib_val),
  180. MC13783_DEFINE_REGU(VRF1, REGULATORMODE1, REGULATORSETTING1, \
  181. mc13783_vrf_val),
  182. MC13783_DEFINE_REGU(VRF2, REGULATORMODE1, REGULATORSETTING1, \
  183. mc13783_vrf_val),
  184. MC13783_DEFINE_REGU(VMMC1, REGULATORMODE1, REGULATORSETTING1, \
  185. mc13783_vmmc_val),
  186. MC13783_DEFINE_REGU(VMMC2, REGULATORMODE1, REGULATORSETTING1, \
  187. mc13783_vmmc_val),
  188. MC13783_GPO_DEFINE(REG, GPO1, POWERMISC, mc13783_gpo_val),
  189. MC13783_GPO_DEFINE(REG, GPO2, POWERMISC, mc13783_gpo_val),
  190. MC13783_GPO_DEFINE(REG, GPO3, POWERMISC, mc13783_gpo_val),
  191. MC13783_GPO_DEFINE(REG, GPO4, POWERMISC, mc13783_gpo_val),
  192. MC13783_GPO_DEFINE(REG, PWGT1SPI, POWERMISC, mc13783_pwgtdrv_val),
  193. MC13783_GPO_DEFINE(REG, PWGT2SPI, POWERMISC, mc13783_pwgtdrv_val),
  194. };
  195. static int mc13783_powermisc_rmw(struct mc13xxx_regulator_priv *priv, u32 mask,
  196. u32 val)
  197. {
  198. struct mc13xxx *mc13783 = priv->mc13xxx;
  199. int ret;
  200. u32 valread;
  201. BUG_ON(val & ~mask);
  202. ret = mc13xxx_reg_read(mc13783, MC13783_REG_POWERMISC, &valread);
  203. if (ret)
  204. return ret;
  205. /* Update the stored state for Power Gates. */
  206. priv->powermisc_pwgt_state =
  207. (priv->powermisc_pwgt_state & ~mask) | val;
  208. priv->powermisc_pwgt_state &= MC13783_REG_POWERMISC_PWGTSPI_M;
  209. /* Construct the new register value */
  210. valread = (valread & ~mask) | val;
  211. /* Overwrite the PWGTxEN with the stored version */
  212. valread = (valread & ~MC13783_REG_POWERMISC_PWGTSPI_M) |
  213. priv->powermisc_pwgt_state;
  214. return mc13xxx_reg_write(mc13783, MC13783_REG_POWERMISC, valread);
  215. }
  216. static int mc13783_gpo_regulator_enable(struct regulator_dev *rdev)
  217. {
  218. struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
  219. struct mc13xxx_regulator *mc13xxx_regulators = priv->mc13xxx_regulators;
  220. int id = rdev_get_id(rdev);
  221. int ret;
  222. u32 en_val = mc13xxx_regulators[id].enable_bit;
  223. dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
  224. /* Power Gate enable value is 0 */
  225. if (id == MC13783_REG_PWGT1SPI ||
  226. id == MC13783_REG_PWGT2SPI)
  227. en_val = 0;
  228. mc13xxx_lock(priv->mc13xxx);
  229. ret = mc13783_powermisc_rmw(priv, mc13xxx_regulators[id].enable_bit,
  230. en_val);
  231. mc13xxx_unlock(priv->mc13xxx);
  232. return ret;
  233. }
  234. static int mc13783_gpo_regulator_disable(struct regulator_dev *rdev)
  235. {
  236. struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
  237. struct mc13xxx_regulator *mc13xxx_regulators = priv->mc13xxx_regulators;
  238. int id = rdev_get_id(rdev);
  239. int ret;
  240. u32 dis_val = 0;
  241. dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
  242. /* Power Gate disable value is 1 */
  243. if (id == MC13783_REG_PWGT1SPI ||
  244. id == MC13783_REG_PWGT2SPI)
  245. dis_val = mc13xxx_regulators[id].enable_bit;
  246. mc13xxx_lock(priv->mc13xxx);
  247. ret = mc13783_powermisc_rmw(priv, mc13xxx_regulators[id].enable_bit,
  248. dis_val);
  249. mc13xxx_unlock(priv->mc13xxx);
  250. return ret;
  251. }
  252. static int mc13783_gpo_regulator_is_enabled(struct regulator_dev *rdev)
  253. {
  254. struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
  255. struct mc13xxx_regulator *mc13xxx_regulators = priv->mc13xxx_regulators;
  256. int ret, id = rdev_get_id(rdev);
  257. unsigned int val;
  258. mc13xxx_lock(priv->mc13xxx);
  259. ret = mc13xxx_reg_read(priv->mc13xxx, mc13xxx_regulators[id].reg, &val);
  260. mc13xxx_unlock(priv->mc13xxx);
  261. if (ret)
  262. return ret;
  263. /* Power Gates state is stored in powermisc_pwgt_state
  264. * where the meaning of bits is negated */
  265. val = (val & ~MC13783_REG_POWERMISC_PWGTSPI_M) |
  266. (priv->powermisc_pwgt_state ^ MC13783_REG_POWERMISC_PWGTSPI_M);
  267. return (val & mc13xxx_regulators[id].enable_bit) != 0;
  268. }
  269. static struct regulator_ops mc13783_gpo_regulator_ops = {
  270. .enable = mc13783_gpo_regulator_enable,
  271. .disable = mc13783_gpo_regulator_disable,
  272. .is_enabled = mc13783_gpo_regulator_is_enabled,
  273. .list_voltage = mc13xxx_regulator_list_voltage,
  274. .set_voltage = mc13xxx_fixed_regulator_set_voltage,
  275. .get_voltage = mc13xxx_fixed_regulator_get_voltage,
  276. };
  277. static int __devinit mc13783_regulator_probe(struct platform_device *pdev)
  278. {
  279. struct mc13xxx_regulator_priv *priv;
  280. struct mc13xxx *mc13783 = dev_get_drvdata(pdev->dev.parent);
  281. struct mc13xxx_regulator_platform_data *pdata =
  282. dev_get_platdata(&pdev->dev);
  283. struct mc13xxx_regulator_init_data *init_data;
  284. int i, ret;
  285. dev_dbg(&pdev->dev, "%s id %d\n", __func__, pdev->id);
  286. if (!pdata)
  287. return -EINVAL;
  288. priv = devm_kzalloc(&pdev->dev, sizeof(*priv) +
  289. pdata->num_regulators * sizeof(priv->regulators[0]),
  290. GFP_KERNEL);
  291. if (!priv)
  292. return -ENOMEM;
  293. priv->mc13xxx_regulators = mc13783_regulators;
  294. priv->mc13xxx = mc13783;
  295. for (i = 0; i < pdata->num_regulators; i++) {
  296. init_data = &pdata->regulators[i];
  297. priv->regulators[i] = regulator_register(
  298. &mc13783_regulators[init_data->id].desc,
  299. &pdev->dev, init_data->init_data, priv, NULL);
  300. if (IS_ERR(priv->regulators[i])) {
  301. dev_err(&pdev->dev, "failed to register regulator %s\n",
  302. mc13783_regulators[i].desc.name);
  303. ret = PTR_ERR(priv->regulators[i]);
  304. goto err;
  305. }
  306. }
  307. platform_set_drvdata(pdev, priv);
  308. return 0;
  309. err:
  310. while (--i >= 0)
  311. regulator_unregister(priv->regulators[i]);
  312. return ret;
  313. }
  314. static int __devexit mc13783_regulator_remove(struct platform_device *pdev)
  315. {
  316. struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
  317. struct mc13xxx_regulator_platform_data *pdata =
  318. dev_get_platdata(&pdev->dev);
  319. int i;
  320. platform_set_drvdata(pdev, NULL);
  321. for (i = 0; i < pdata->num_regulators; i++)
  322. regulator_unregister(priv->regulators[i]);
  323. return 0;
  324. }
  325. static struct platform_driver mc13783_regulator_driver = {
  326. .driver = {
  327. .name = "mc13783-regulator",
  328. .owner = THIS_MODULE,
  329. },
  330. .remove = __devexit_p(mc13783_regulator_remove),
  331. .probe = mc13783_regulator_probe,
  332. };
  333. static int __init mc13783_regulator_init(void)
  334. {
  335. return platform_driver_register(&mc13783_regulator_driver);
  336. }
  337. subsys_initcall(mc13783_regulator_init);
  338. static void __exit mc13783_regulator_exit(void)
  339. {
  340. platform_driver_unregister(&mc13783_regulator_driver);
  341. }
  342. module_exit(mc13783_regulator_exit);
  343. MODULE_LICENSE("GPL v2");
  344. MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
  345. MODULE_DESCRIPTION("Regulator Driver for Freescale MC13783 PMIC");
  346. MODULE_ALIAS("platform:mc13783-regulator");