rn5t618-regulator.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Regulator driver for Ricoh RN5T618 PMIC
  3. *
  4. * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * version 2 as published by the Free Software Foundation.
  9. *
  10. * You should have received a copy of the GNU General Public License
  11. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. #include <linux/mfd/rn5t618.h>
  14. #include <linux/module.h>
  15. #include <linux/of.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/regmap.h>
  18. #include <linux/regulator/driver.h>
  19. #include <linux/regulator/of_regulator.h>
  20. static struct regulator_ops rn5t618_reg_ops = {
  21. .enable = regulator_enable_regmap,
  22. .disable = regulator_disable_regmap,
  23. .is_enabled = regulator_is_enabled_regmap,
  24. .set_voltage_sel = regulator_set_voltage_sel_regmap,
  25. .get_voltage_sel = regulator_get_voltage_sel_regmap,
  26. .list_voltage = regulator_list_voltage_linear,
  27. };
  28. #define REG(rid, ereg, emask, vreg, vmask, min, max, step) \
  29. [RN5T618_##rid] = { \
  30. .name = #rid, \
  31. .of_match = of_match_ptr(#rid), \
  32. .regulators_node = of_match_ptr("regulators"), \
  33. .id = RN5T618_##rid, \
  34. .type = REGULATOR_VOLTAGE, \
  35. .owner = THIS_MODULE, \
  36. .ops = &rn5t618_reg_ops, \
  37. .n_voltages = ((max) - (min)) / (step) + 1, \
  38. .min_uV = (min), \
  39. .uV_step = (step), \
  40. .enable_reg = RN5T618_##ereg, \
  41. .enable_mask = (emask), \
  42. .vsel_reg = RN5T618_##vreg, \
  43. .vsel_mask = (vmask), \
  44. }
  45. static struct regulator_desc rn5t618_regulators[] = {
  46. /* DCDC */
  47. REG(DCDC1, DC1CTL, BIT(0), DC1DAC, 0xff, 600000, 3500000, 12500),
  48. REG(DCDC2, DC2CTL, BIT(0), DC2DAC, 0xff, 600000, 3500000, 12500),
  49. REG(DCDC3, DC3CTL, BIT(0), DC3DAC, 0xff, 600000, 3500000, 12500),
  50. /* LDO */
  51. REG(LDO1, LDOEN1, BIT(0), LDO1DAC, 0x7f, 900000, 3500000, 25000),
  52. REG(LDO2, LDOEN1, BIT(1), LDO2DAC, 0x7f, 900000, 3500000, 25000),
  53. REG(LDO3, LDOEN1, BIT(2), LDO3DAC, 0x7f, 600000, 3500000, 25000),
  54. REG(LDO4, LDOEN1, BIT(3), LDO4DAC, 0x7f, 900000, 3500000, 25000),
  55. REG(LDO5, LDOEN1, BIT(4), LDO5DAC, 0x7f, 900000, 3500000, 25000),
  56. /* LDO RTC */
  57. REG(LDORTC1, LDOEN2, BIT(4), LDORTCDAC, 0x7f, 1700000, 3500000, 25000),
  58. REG(LDORTC2, LDOEN2, BIT(5), LDORTC2DAC, 0x7f, 900000, 3500000, 25000),
  59. };
  60. static int rn5t618_regulator_probe(struct platform_device *pdev)
  61. {
  62. struct rn5t618 *rn5t618 = dev_get_drvdata(pdev->dev.parent);
  63. struct regulator_config config = { };
  64. struct regulator_dev *rdev;
  65. int i;
  66. for (i = 0; i < RN5T618_REG_NUM; i++) {
  67. config.dev = pdev->dev.parent;
  68. config.regmap = rn5t618->regmap;
  69. rdev = devm_regulator_register(&pdev->dev,
  70. &rn5t618_regulators[i],
  71. &config);
  72. if (IS_ERR(rdev)) {
  73. dev_err(&pdev->dev, "failed to register %s regulator\n",
  74. rn5t618_regulators[i].name);
  75. return PTR_ERR(rdev);
  76. }
  77. }
  78. return 0;
  79. }
  80. static struct platform_driver rn5t618_regulator_driver = {
  81. .probe = rn5t618_regulator_probe,
  82. .driver = {
  83. .name = "rn5t618-regulator",
  84. },
  85. };
  86. module_platform_driver(rn5t618_regulator_driver);
  87. MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
  88. MODULE_DESCRIPTION("RN5T618 regulator driver");
  89. MODULE_LICENSE("GPL v2");