blob: 40c4e66284715d2f4982bf06e3064f8b53d5bd40 [file] [log] [blame]
Mark Brown42fad572008-09-11 11:12:01 +01001/*
2 * Regulator support for WM8400
3 *
4 * Copyright 2008 Wolfson Microelectronics PLC.
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
12 *
13 */
14
15#include <linux/bug.h>
16#include <linux/err.h>
17#include <linux/kernel.h>
Paul Gortmaker65602c32011-07-17 16:28:23 -040018#include <linux/module.h>
Mark Brown42fad572008-09-11 11:12:01 +010019#include <linux/regulator/driver.h>
20#include <linux/mfd/wm8400-private.h>
21
Mark Brown6692e432013-07-02 23:26:36 +010022static const struct regulator_linear_range wm8400_ldo_ranges[] = {
Axel Lin8828bae2013-10-11 09:32:18 +080023 REGULATOR_LINEAR_RANGE(900000, 0, 14, 50000),
24 REGULATOR_LINEAR_RANGE(1700000, 15, 31, 100000),
Mark Brown6692e432013-07-02 23:26:36 +010025};
Mark Brown42fad572008-09-11 11:12:01 +010026
Julia Lawallb0d6dd32015-12-19 16:31:24 +010027static const struct regulator_ops wm8400_ldo_ops = {
Mark Brownc54a1552012-05-10 00:12:09 +010028 .is_enabled = regulator_is_enabled_regmap,
29 .enable = regulator_enable_regmap,
30 .disable = regulator_disable_regmap,
Mark Brown6692e432013-07-02 23:26:36 +010031 .list_voltage = regulator_list_voltage_linear_range,
Mark Brownc54a1552012-05-10 00:12:09 +010032 .get_voltage_sel = regulator_get_voltage_sel_regmap,
33 .set_voltage_sel = regulator_set_voltage_sel_regmap,
Mark Brown6692e432013-07-02 23:26:36 +010034 .map_voltage = regulator_map_voltage_linear_range,
Mark Brownc54a1552012-05-10 00:12:09 +010035};
Mark Brown42fad572008-09-11 11:12:01 +010036
37static unsigned int wm8400_dcdc_get_mode(struct regulator_dev *dev)
38{
Axel Line08abec2019-02-27 09:30:53 +080039 struct regmap *rmap = rdev_get_regmap(dev);
Mark Brown42fad572008-09-11 11:12:01 +010040 int offset = (rdev_get_id(dev) - WM8400_DCDC1) * 2;
41 u16 data[2];
42 int ret;
43
Axel Line08abec2019-02-27 09:30:53 +080044 ret = regmap_bulk_read(rmap, WM8400_DCDC1_CONTROL_1 + offset, data, 2);
Mark Brown42fad572008-09-11 11:12:01 +010045 if (ret != 0)
46 return 0;
47
48 /* Datasheet: hibernate */
49 if (data[0] & WM8400_DC1_SLEEP)
50 return REGULATOR_MODE_STANDBY;
51
52 /* Datasheet: standby */
53 if (!(data[0] & WM8400_DC1_ACTIVE))
54 return REGULATOR_MODE_IDLE;
55
56 /* Datasheet: active with or without force PWM */
57 if (data[1] & WM8400_DC1_FRC_PWM)
58 return REGULATOR_MODE_FAST;
59 else
60 return REGULATOR_MODE_NORMAL;
61}
62
63static int wm8400_dcdc_set_mode(struct regulator_dev *dev, unsigned int mode)
64{
Axel Line08abec2019-02-27 09:30:53 +080065 struct regmap *rmap = rdev_get_regmap(dev);
Mark Brown42fad572008-09-11 11:12:01 +010066 int offset = (rdev_get_id(dev) - WM8400_DCDC1) * 2;
67 int ret;
68
69 switch (mode) {
70 case REGULATOR_MODE_FAST:
71 /* Datasheet: active with force PWM */
Axel Line08abec2019-02-27 09:30:53 +080072 ret = regmap_update_bits(rmap, WM8400_DCDC1_CONTROL_2 + offset,
Mark Brown42fad572008-09-11 11:12:01 +010073 WM8400_DC1_FRC_PWM, WM8400_DC1_FRC_PWM);
74 if (ret != 0)
75 return ret;
76
Axel Line08abec2019-02-27 09:30:53 +080077 return regmap_update_bits(rmap, WM8400_DCDC1_CONTROL_1 + offset,
Mark Brown42fad572008-09-11 11:12:01 +010078 WM8400_DC1_ACTIVE | WM8400_DC1_SLEEP,
79 WM8400_DC1_ACTIVE);
80
81 case REGULATOR_MODE_NORMAL:
82 /* Datasheet: active */
Axel Line08abec2019-02-27 09:30:53 +080083 ret = regmap_update_bits(rmap, WM8400_DCDC1_CONTROL_2 + offset,
Mark Brown42fad572008-09-11 11:12:01 +010084 WM8400_DC1_FRC_PWM, 0);
85 if (ret != 0)
86 return ret;
87
Axel Line08abec2019-02-27 09:30:53 +080088 return regmap_update_bits(rmap, WM8400_DCDC1_CONTROL_1 + offset,
Mark Brown42fad572008-09-11 11:12:01 +010089 WM8400_DC1_ACTIVE | WM8400_DC1_SLEEP,
90 WM8400_DC1_ACTIVE);
91
92 case REGULATOR_MODE_IDLE:
93 /* Datasheet: standby */
Axel Line08abec2019-02-27 09:30:53 +080094 return regmap_update_bits(rmap, WM8400_DCDC1_CONTROL_1 + offset,
Axel Lin40013762012-08-01 09:15:11 +080095 WM8400_DC1_ACTIVE | WM8400_DC1_SLEEP, 0);
Mark Brown42fad572008-09-11 11:12:01 +010096 default:
97 return -EINVAL;
98 }
99}
100
101static unsigned int wm8400_dcdc_get_optimum_mode(struct regulator_dev *dev,
102 int input_uV, int output_uV,
103 int load_uA)
104{
105 return REGULATOR_MODE_NORMAL;
106}
107
Julia Lawallb0d6dd32015-12-19 16:31:24 +0100108static const struct regulator_ops wm8400_dcdc_ops = {
Mark Brownc54a1552012-05-10 00:12:09 +0100109 .is_enabled = regulator_is_enabled_regmap,
110 .enable = regulator_enable_regmap,
111 .disable = regulator_disable_regmap,
112 .list_voltage = regulator_list_voltage_linear,
Axel Lin27eeabb2012-05-31 17:40:22 +0800113 .map_voltage = regulator_map_voltage_linear,
Mark Brownc54a1552012-05-10 00:12:09 +0100114 .get_voltage_sel = regulator_get_voltage_sel_regmap,
115 .set_voltage_sel = regulator_set_voltage_sel_regmap,
Mark Brown42fad572008-09-11 11:12:01 +0100116 .get_mode = wm8400_dcdc_get_mode,
117 .set_mode = wm8400_dcdc_set_mode,
118 .get_optimum_mode = wm8400_dcdc_get_optimum_mode,
119};
120
121static struct regulator_desc regulators[] = {
122 {
123 .name = "LDO1",
124 .id = WM8400_LDO1,
125 .ops = &wm8400_ldo_ops,
Mark Brownc54a1552012-05-10 00:12:09 +0100126 .enable_reg = WM8400_LDO1_CONTROL,
127 .enable_mask = WM8400_LDO1_ENA,
Mark Brown216765d2009-03-10 16:28:35 +0000128 .n_voltages = WM8400_LDO1_VSEL_MASK + 1,
Mark Brown6692e432013-07-02 23:26:36 +0100129 .linear_ranges = wm8400_ldo_ranges,
130 .n_linear_ranges = ARRAY_SIZE(wm8400_ldo_ranges),
Mark Brownc54a1552012-05-10 00:12:09 +0100131 .vsel_reg = WM8400_LDO1_CONTROL,
132 .vsel_mask = WM8400_LDO1_VSEL_MASK,
Mark Brown42fad572008-09-11 11:12:01 +0100133 .type = REGULATOR_VOLTAGE,
134 .owner = THIS_MODULE,
135 },
136 {
137 .name = "LDO2",
138 .id = WM8400_LDO2,
139 .ops = &wm8400_ldo_ops,
Mark Brownc54a1552012-05-10 00:12:09 +0100140 .enable_reg = WM8400_LDO2_CONTROL,
141 .enable_mask = WM8400_LDO2_ENA,
Mark Brown216765d2009-03-10 16:28:35 +0000142 .n_voltages = WM8400_LDO2_VSEL_MASK + 1,
Mark Brown6692e432013-07-02 23:26:36 +0100143 .linear_ranges = wm8400_ldo_ranges,
144 .n_linear_ranges = ARRAY_SIZE(wm8400_ldo_ranges),
Mark Brown42fad572008-09-11 11:12:01 +0100145 .type = REGULATOR_VOLTAGE,
Mark Brownc54a1552012-05-10 00:12:09 +0100146 .vsel_reg = WM8400_LDO2_CONTROL,
147 .vsel_mask = WM8400_LDO2_VSEL_MASK,
Mark Brown42fad572008-09-11 11:12:01 +0100148 .owner = THIS_MODULE,
149 },
150 {
151 .name = "LDO3",
152 .id = WM8400_LDO3,
153 .ops = &wm8400_ldo_ops,
Mark Brownc54a1552012-05-10 00:12:09 +0100154 .enable_reg = WM8400_LDO3_CONTROL,
155 .enable_mask = WM8400_LDO3_ENA,
Mark Brown216765d2009-03-10 16:28:35 +0000156 .n_voltages = WM8400_LDO3_VSEL_MASK + 1,
Mark Brown6692e432013-07-02 23:26:36 +0100157 .linear_ranges = wm8400_ldo_ranges,
158 .n_linear_ranges = ARRAY_SIZE(wm8400_ldo_ranges),
Mark Brownc54a1552012-05-10 00:12:09 +0100159 .vsel_reg = WM8400_LDO3_CONTROL,
160 .vsel_mask = WM8400_LDO3_VSEL_MASK,
Mark Brown42fad572008-09-11 11:12:01 +0100161 .type = REGULATOR_VOLTAGE,
162 .owner = THIS_MODULE,
163 },
164 {
165 .name = "LDO4",
166 .id = WM8400_LDO4,
167 .ops = &wm8400_ldo_ops,
Mark Brownc54a1552012-05-10 00:12:09 +0100168 .enable_reg = WM8400_LDO4_CONTROL,
169 .enable_mask = WM8400_LDO4_ENA,
Mark Brown216765d2009-03-10 16:28:35 +0000170 .n_voltages = WM8400_LDO4_VSEL_MASK + 1,
Mark Brown6692e432013-07-02 23:26:36 +0100171 .linear_ranges = wm8400_ldo_ranges,
172 .n_linear_ranges = ARRAY_SIZE(wm8400_ldo_ranges),
Mark Brownc54a1552012-05-10 00:12:09 +0100173 .vsel_reg = WM8400_LDO4_CONTROL,
174 .vsel_mask = WM8400_LDO4_VSEL_MASK,
Mark Brown42fad572008-09-11 11:12:01 +0100175 .type = REGULATOR_VOLTAGE,
176 .owner = THIS_MODULE,
177 },
178 {
179 .name = "DCDC1",
180 .id = WM8400_DCDC1,
181 .ops = &wm8400_dcdc_ops,
Mark Brownc54a1552012-05-10 00:12:09 +0100182 .enable_reg = WM8400_DCDC1_CONTROL_1,
183 .enable_mask = WM8400_DC1_ENA_MASK,
Mark Brown216765d2009-03-10 16:28:35 +0000184 .n_voltages = WM8400_DC1_VSEL_MASK + 1,
Mark Brownc54a1552012-05-10 00:12:09 +0100185 .vsel_reg = WM8400_DCDC1_CONTROL_1,
186 .vsel_mask = WM8400_DC1_VSEL_MASK,
187 .min_uV = 850000,
188 .uV_step = 25000,
Mark Brown42fad572008-09-11 11:12:01 +0100189 .type = REGULATOR_VOLTAGE,
190 .owner = THIS_MODULE,
191 },
192 {
193 .name = "DCDC2",
194 .id = WM8400_DCDC2,
195 .ops = &wm8400_dcdc_ops,
Mark Brownc54a1552012-05-10 00:12:09 +0100196 .enable_reg = WM8400_DCDC2_CONTROL_1,
197 .enable_mask = WM8400_DC1_ENA_MASK,
Mark Brown216765d2009-03-10 16:28:35 +0000198 .n_voltages = WM8400_DC2_VSEL_MASK + 1,
Mark Brownc54a1552012-05-10 00:12:09 +0100199 .vsel_reg = WM8400_DCDC2_CONTROL_1,
200 .vsel_mask = WM8400_DC2_VSEL_MASK,
201 .min_uV = 850000,
202 .uV_step = 25000,
Mark Brown42fad572008-09-11 11:12:01 +0100203 .type = REGULATOR_VOLTAGE,
204 .owner = THIS_MODULE,
205 },
206};
207
Bill Pembertona5023572012-11-19 13:22:22 -0500208static int wm8400_regulator_probe(struct platform_device *pdev)
Mark Brown42fad572008-09-11 11:12:01 +0100209{
Dmitry Torokhov1ad02bb2010-02-25 01:55:37 -0800210 struct wm8400 *wm8400 = container_of(pdev, struct wm8400, regulators[pdev->id]);
Mark Brownc172708d2012-04-04 00:50:22 +0100211 struct regulator_config config = { };
Mark Brown42fad572008-09-11 11:12:01 +0100212 struct regulator_dev *rdev;
213
Mark Brownc172708d2012-04-04 00:50:22 +0100214 config.dev = &pdev->dev;
Jingoo Handff91d02013-07-30 17:20:47 +0900215 config.init_data = dev_get_platdata(&pdev->dev);
Mark Brownc172708d2012-04-04 00:50:22 +0100216 config.driver_data = wm8400;
Mark Brownc54a1552012-05-10 00:12:09 +0100217 config.regmap = wm8400->regmap;
Mark Brown42fad572008-09-11 11:12:01 +0100218
Mark Browneb8b3c82013-08-31 12:00:57 +0100219 rdev = devm_regulator_register(&pdev->dev, &regulators[pdev->id],
220 &config);
Mark Brown42fad572008-09-11 11:12:01 +0100221 if (IS_ERR(rdev))
222 return PTR_ERR(rdev);
223
Dmitry Torokhov1ad02bb2010-02-25 01:55:37 -0800224 platform_set_drvdata(pdev, rdev);
225
Mark Brown42fad572008-09-11 11:12:01 +0100226 return 0;
227}
228
Mark Brown42fad572008-09-11 11:12:01 +0100229static struct platform_driver wm8400_regulator_driver = {
230 .driver = {
231 .name = "wm8400-regulator",
232 },
233 .probe = wm8400_regulator_probe,
Mark Brown42fad572008-09-11 11:12:01 +0100234};
235
236/**
237 * wm8400_register_regulator - enable software control of a WM8400 regulator
238 *
239 * This function enables software control of a WM8400 regulator via
240 * the regulator API. It is intended to be called from the
241 * platform_init() callback of the WM8400 MFD driver.
242 *
243 * @param dev The WM8400 device to operate on.
244 * @param reg The regulator to control.
245 * @param initdata Regulator initdata for the regulator.
246 */
247int wm8400_register_regulator(struct device *dev, int reg,
248 struct regulator_init_data *initdata)
249{
Greg Kroah-Hartman1909e2f2009-04-30 15:21:37 -0700250 struct wm8400 *wm8400 = dev_get_drvdata(dev);
Mark Brown42fad572008-09-11 11:12:01 +0100251
252 if (wm8400->regulators[reg].name)
253 return -EBUSY;
254
255 initdata->driver_data = wm8400;
256
257 wm8400->regulators[reg].name = "wm8400-regulator";
258 wm8400->regulators[reg].id = reg;
259 wm8400->regulators[reg].dev.parent = dev;
Mark Brown42fad572008-09-11 11:12:01 +0100260 wm8400->regulators[reg].dev.platform_data = initdata;
261
262 return platform_device_register(&wm8400->regulators[reg]);
263}
264EXPORT_SYMBOL_GPL(wm8400_register_regulator);
265
266static int __init wm8400_regulator_init(void)
267{
268 return platform_driver_register(&wm8400_regulator_driver);
269}
Mark Brown5a1b22b2009-04-27 18:21:18 +0100270subsys_initcall(wm8400_regulator_init);
Mark Brown42fad572008-09-11 11:12:01 +0100271
272static void __exit wm8400_regulator_exit(void)
273{
274 platform_driver_unregister(&wm8400_regulator_driver);
275}
276module_exit(wm8400_regulator_exit);
277
278MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
279MODULE_DESCRIPTION("WM8400 regulator driver");
280MODULE_LICENSE("GPL");
281MODULE_ALIAS("platform:wm8400-regulator");