rc5t583-regulator.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. /*
  2. * Regulator driver for RICOH RC5T583 power management chip.
  3. *
  4. * Copyright (c) 2011-2012, NVIDIA CORPORATION. All rights reserved.
  5. * Author: Laxman dewangan <ldewangan@nvidia.com>
  6. *
  7. * based on code
  8. * Copyright (C) 2011 RICOH COMPANY,LTD
  9. *
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms and conditions of the GNU General Public License,
  13. * version 2, as published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope it will be useful, but WITHOUT
  16. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  17. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  18. * more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. #include <linux/module.h>
  25. #include <linux/init.h>
  26. #include <linux/slab.h>
  27. #include <linux/err.h>
  28. #include <linux/platform_device.h>
  29. #include <linux/regulator/driver.h>
  30. #include <linux/regulator/machine.h>
  31. #include <linux/gpio.h>
  32. #include <linux/mfd/rc5t583.h>
  33. struct rc5t583_regulator_info {
  34. int deepsleep_id;
  35. /* Regulator register address.*/
  36. uint8_t reg_disc_reg;
  37. uint8_t disc_bit;
  38. uint8_t deepsleep_reg;
  39. /* Chip constraints on regulator behavior */
  40. int max_uV;
  41. /* Regulator specific turn-on delay and voltage settling time*/
  42. int enable_uv_per_us;
  43. int change_uv_per_us;
  44. /* Used by regulator core */
  45. struct regulator_desc desc;
  46. };
  47. struct rc5t583_regulator {
  48. struct rc5t583_regulator_info *reg_info;
  49. /* Devices */
  50. struct device *dev;
  51. struct rc5t583 *mfd;
  52. struct regulator_dev *rdev;
  53. };
  54. static int rc5t583_set_voltage(struct regulator_dev *rdev,
  55. int min_uV, int max_uV, unsigned *selector)
  56. {
  57. struct rc5t583_regulator *reg = rdev_get_drvdata(rdev);
  58. int sel, ret;
  59. if (min_uV < rdev->desc->min_uV)
  60. min_uV = rdev->desc->min_uV;
  61. sel = DIV_ROUND_UP(min_uV - rdev->desc->min_uV, rdev->desc->uV_step);
  62. if (sel >= rdev->desc->n_voltages) {
  63. dev_err(&rdev->dev, "Invalid selector 0x%02x\n", sel);
  64. return -EINVAL;
  65. }
  66. *selector = sel;
  67. ret = rc5t583_update(reg->mfd->dev, rdev->desc->vsel_reg, sel,
  68. rdev->desc->vsel_mask);
  69. if (ret < 0)
  70. dev_err(&rdev->dev, "Error in update voltage register 0x%02x\n",
  71. rdev->desc->vsel_reg);
  72. return ret;
  73. }
  74. static int rc5t583_regulator_enable_time(struct regulator_dev *rdev)
  75. {
  76. struct rc5t583_regulator *reg = rdev_get_drvdata(rdev);
  77. int vsel = regulator_get_voltage_sel_regmap(rdev);
  78. int curr_uV = regulator_list_voltage_linear(rdev, vsel);
  79. return DIV_ROUND_UP(curr_uV, reg->reg_info->enable_uv_per_us);
  80. }
  81. static int rc5t583_set_voltage_time_sel(struct regulator_dev *rdev,
  82. unsigned int old_selector, unsigned int new_selector)
  83. {
  84. struct rc5t583_regulator *reg = rdev_get_drvdata(rdev);
  85. int old_uV, new_uV;
  86. old_uV = regulator_list_voltage_linear(rdev, old_selector);
  87. if (old_uV < 0)
  88. return old_uV;
  89. new_uV = regulator_list_voltage_linear(rdev, new_selector);
  90. if (new_uV < 0)
  91. return new_uV;
  92. return DIV_ROUND_UP(abs(old_uV - new_uV),
  93. reg->reg_info->change_uv_per_us);
  94. }
  95. static struct regulator_ops rc5t583_ops = {
  96. .is_enabled = regulator_is_enabled_regmap,
  97. .enable = regulator_enable_regmap,
  98. .disable = regulator_disable_regmap,
  99. .enable_time = rc5t583_regulator_enable_time,
  100. .get_voltage_sel = regulator_get_voltage_sel_regmap,
  101. .set_voltage = rc5t583_set_voltage,
  102. .list_voltage = regulator_list_voltage_linear,
  103. .set_voltage_time_sel = rc5t583_set_voltage_time_sel,
  104. };
  105. #define RC5T583_REG(_id, _en_reg, _en_bit, _disc_reg, _disc_bit, \
  106. _vout_mask, _min_mv, _max_mv, _step_uV, _enable_mv) \
  107. { \
  108. .reg_disc_reg = RC5T583_REG_##_disc_reg, \
  109. .disc_bit = _disc_bit, \
  110. .deepsleep_reg = RC5T583_REG_##_id##DAC_DS, \
  111. .max_uV = _max_mv * 1000, \
  112. .enable_uv_per_us = _enable_mv * 1000, \
  113. .change_uv_per_us = 40 * 1000, \
  114. .deepsleep_id = RC5T583_DS_##_id, \
  115. .desc = { \
  116. .name = "rc5t583-regulator-"#_id, \
  117. .id = RC5T583_REGULATOR_##_id, \
  118. .n_voltages = (_max_mv - _min_mv) * 1000 / _step_uV + 1, \
  119. .ops = &rc5t583_ops, \
  120. .type = REGULATOR_VOLTAGE, \
  121. .owner = THIS_MODULE, \
  122. .vsel_reg = RC5T583_REG_##_id##DAC, \
  123. .vsel_mask = _vout_mask, \
  124. .enable_reg = RC5T583_REG_##_en_reg, \
  125. .enable_mask = BIT(_en_bit), \
  126. .min_uV = _min_mv * 1000, \
  127. .uV_step = _step_uV, \
  128. }, \
  129. }
  130. static struct rc5t583_regulator_info rc5t583_reg_info[RC5T583_REGULATOR_MAX] = {
  131. RC5T583_REG(DC0, DC0CTL, 0, DC0CTL, 1, 0x7F, 700, 1500, 12500, 4),
  132. RC5T583_REG(DC1, DC1CTL, 0, DC1CTL, 1, 0x7F, 700, 1500, 12500, 14),
  133. RC5T583_REG(DC2, DC2CTL, 0, DC2CTL, 1, 0x7F, 900, 2400, 12500, 14),
  134. RC5T583_REG(DC3, DC3CTL, 0, DC3CTL, 1, 0x7F, 900, 2400, 12500, 14),
  135. RC5T583_REG(LDO0, LDOEN2, 0, LDODIS2, 0, 0x7F, 900, 3400, 25000, 160),
  136. RC5T583_REG(LDO1, LDOEN2, 1, LDODIS2, 1, 0x7F, 900, 3400, 25000, 160),
  137. RC5T583_REG(LDO2, LDOEN2, 2, LDODIS2, 2, 0x7F, 900, 3400, 25000, 160),
  138. RC5T583_REG(LDO3, LDOEN2, 3, LDODIS2, 3, 0x7F, 900, 3400, 25000, 160),
  139. RC5T583_REG(LDO4, LDOEN2, 4, LDODIS2, 4, 0x3F, 750, 1500, 12500, 133),
  140. RC5T583_REG(LDO5, LDOEN2, 5, LDODIS2, 5, 0x7F, 900, 3400, 25000, 267),
  141. RC5T583_REG(LDO6, LDOEN2, 6, LDODIS2, 6, 0x7F, 900, 3400, 25000, 133),
  142. RC5T583_REG(LDO7, LDOEN2, 7, LDODIS2, 7, 0x7F, 900, 3400, 25000, 233),
  143. RC5T583_REG(LDO8, LDOEN1, 0, LDODIS1, 0, 0x7F, 900, 3400, 25000, 233),
  144. RC5T583_REG(LDO9, LDOEN1, 1, LDODIS1, 1, 0x7F, 900, 3400, 25000, 133),
  145. };
  146. static int __devinit rc5t583_regulator_probe(struct platform_device *pdev)
  147. {
  148. struct rc5t583 *rc5t583 = dev_get_drvdata(pdev->dev.parent);
  149. struct rc5t583_platform_data *pdata = dev_get_platdata(rc5t583->dev);
  150. struct regulator_init_data *reg_data;
  151. struct regulator_config config = { };
  152. struct rc5t583_regulator *reg = NULL;
  153. struct rc5t583_regulator *regs;
  154. struct regulator_dev *rdev;
  155. struct rc5t583_regulator_info *ri;
  156. int ret;
  157. int id;
  158. if (!pdata) {
  159. dev_err(&pdev->dev, "No platform data, exiting...\n");
  160. return -ENODEV;
  161. }
  162. regs = devm_kzalloc(&pdev->dev, RC5T583_REGULATOR_MAX *
  163. sizeof(struct rc5t583_regulator), GFP_KERNEL);
  164. if (!regs) {
  165. dev_err(&pdev->dev, "Memory allocation failed exiting..\n");
  166. return -ENOMEM;
  167. }
  168. for (id = 0; id < RC5T583_REGULATOR_MAX; ++id) {
  169. reg_data = pdata->reg_init_data[id];
  170. /* No need to register if there is no regulator data */
  171. if (!reg_data)
  172. continue;
  173. reg = &regs[id];
  174. ri = &rc5t583_reg_info[id];
  175. reg->reg_info = ri;
  176. reg->mfd = rc5t583;
  177. reg->dev = &pdev->dev;
  178. if (ri->deepsleep_id == RC5T583_DS_NONE)
  179. goto skip_ext_pwr_config;
  180. ret = rc5t583_ext_power_req_config(rc5t583->dev,
  181. ri->deepsleep_id,
  182. pdata->regulator_ext_pwr_control[id],
  183. pdata->regulator_deepsleep_slot[id]);
  184. /*
  185. * Configuring external control is not a major issue,
  186. * just give warning.
  187. */
  188. if (ret < 0)
  189. dev_warn(&pdev->dev,
  190. "Failed to configure ext control %d\n", id);
  191. skip_ext_pwr_config:
  192. config.dev = &pdev->dev;
  193. config.init_data = reg_data;
  194. config.driver_data = reg;
  195. config.regmap = rc5t583->regmap;
  196. rdev = regulator_register(&ri->desc, &config);
  197. if (IS_ERR(rdev)) {
  198. dev_err(&pdev->dev, "Failed to register regulator %s\n",
  199. ri->desc.name);
  200. ret = PTR_ERR(rdev);
  201. goto clean_exit;
  202. }
  203. reg->rdev = rdev;
  204. }
  205. platform_set_drvdata(pdev, regs);
  206. return 0;
  207. clean_exit:
  208. while (--id >= 0)
  209. regulator_unregister(regs[id].rdev);
  210. return ret;
  211. }
  212. static int __devexit rc5t583_regulator_remove(struct platform_device *pdev)
  213. {
  214. struct rc5t583_regulator *regs = platform_get_drvdata(pdev);
  215. int id;
  216. for (id = 0; id < RC5T583_REGULATOR_MAX; ++id)
  217. regulator_unregister(regs[id].rdev);
  218. return 0;
  219. }
  220. static struct platform_driver rc5t583_regulator_driver = {
  221. .driver = {
  222. .name = "rc5t583-regulator",
  223. .owner = THIS_MODULE,
  224. },
  225. .probe = rc5t583_regulator_probe,
  226. .remove = __devexit_p(rc5t583_regulator_remove),
  227. };
  228. static int __init rc5t583_regulator_init(void)
  229. {
  230. return platform_driver_register(&rc5t583_regulator_driver);
  231. }
  232. subsys_initcall(rc5t583_regulator_init);
  233. static void __exit rc5t583_regulator_exit(void)
  234. {
  235. platform_driver_unregister(&rc5t583_regulator_driver);
  236. }
  237. module_exit(rc5t583_regulator_exit);
  238. MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
  239. MODULE_DESCRIPTION("RC5T583 regulator driver");
  240. MODULE_ALIAS("platform:rc5t583-regulator");
  241. MODULE_LICENSE("GPL v2");