regulator: Remove s5m8767a buck initialization
[deliverable/linux.git] / drivers / regulator / wm8400-regulator.c
CommitLineData
42fad570
MB
1/*
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>
65602c32 18#include <linux/module.h>
42fad570
MB
19#include <linux/regulator/driver.h>
20#include <linux/mfd/wm8400-private.h>
21
216765d9
MB
22static int wm8400_ldo_list_voltage(struct regulator_dev *dev,
23 unsigned selector)
24{
25 if (selector > WM8400_LDO1_VSEL_MASK)
26 return -EINVAL;
27
28 if (selector < 15)
29 return 900000 + (selector * 50000);
30 else
31 return 1600000 + ((selector - 14) * 100000);
32}
33
c54a155d
MB
34static int wm8400_ldo_map_voltage(struct regulator_dev *dev,
35 int min_uV, int max_uV)
42fad570 36{
42fad570
MB
37 u16 val;
38
39 if (min_uV < 900000 || min_uV > 3300000)
40 return -EINVAL;
41
42 if (min_uV < 1700000) {
43 /* Steps of 50mV from 900mV; */
e9a15c8c 44 val = DIV_ROUND_UP(min_uV - 900000, 50000);
42fad570
MB
45
46 if ((val * 50000) + 900000 > max_uV)
47 return -EINVAL;
48 BUG_ON((val * 50000) + 900000 < min_uV);
49 } else {
50 /* Steps of 100mV from 1700mV */
e9a15c8c 51 val = DIV_ROUND_UP(min_uV - 1700000, 100000);
42fad570
MB
52
53 if ((val * 100000) + 1700000 > max_uV)
54 return -EINVAL;
55 BUG_ON((val * 100000) + 1700000 < min_uV);
56
57 val += 0xf;
58 }
59
c54a155d 60 return val;
42fad570
MB
61}
62
63static struct regulator_ops wm8400_ldo_ops = {
c54a155d
MB
64 .is_enabled = regulator_is_enabled_regmap,
65 .enable = regulator_enable_regmap,
66 .disable = regulator_disable_regmap,
216765d9 67 .list_voltage = wm8400_ldo_list_voltage,
c54a155d
MB
68 .get_voltage_sel = regulator_get_voltage_sel_regmap,
69 .set_voltage_sel = regulator_set_voltage_sel_regmap,
70 .map_voltage = wm8400_ldo_map_voltage,
42fad570
MB
71};
72
42fad570
MB
73static unsigned int wm8400_dcdc_get_mode(struct regulator_dev *dev)
74{
75 struct wm8400 *wm8400 = rdev_get_drvdata(dev);
76 int offset = (rdev_get_id(dev) - WM8400_DCDC1) * 2;
77 u16 data[2];
78 int ret;
79
80 ret = wm8400_block_read(wm8400, WM8400_DCDC1_CONTROL_1 + offset, 2,
81 data);
82 if (ret != 0)
83 return 0;
84
85 /* Datasheet: hibernate */
86 if (data[0] & WM8400_DC1_SLEEP)
87 return REGULATOR_MODE_STANDBY;
88
89 /* Datasheet: standby */
90 if (!(data[0] & WM8400_DC1_ACTIVE))
91 return REGULATOR_MODE_IDLE;
92
93 /* Datasheet: active with or without force PWM */
94 if (data[1] & WM8400_DC1_FRC_PWM)
95 return REGULATOR_MODE_FAST;
96 else
97 return REGULATOR_MODE_NORMAL;
98}
99
100static int wm8400_dcdc_set_mode(struct regulator_dev *dev, unsigned int mode)
101{
102 struct wm8400 *wm8400 = rdev_get_drvdata(dev);
103 int offset = (rdev_get_id(dev) - WM8400_DCDC1) * 2;
104 int ret;
105
106 switch (mode) {
107 case REGULATOR_MODE_FAST:
108 /* Datasheet: active with force PWM */
109 ret = wm8400_set_bits(wm8400, WM8400_DCDC1_CONTROL_2 + offset,
110 WM8400_DC1_FRC_PWM, WM8400_DC1_FRC_PWM);
111 if (ret != 0)
112 return ret;
113
114 return wm8400_set_bits(wm8400, WM8400_DCDC1_CONTROL_1 + offset,
115 WM8400_DC1_ACTIVE | WM8400_DC1_SLEEP,
116 WM8400_DC1_ACTIVE);
117
118 case REGULATOR_MODE_NORMAL:
119 /* Datasheet: active */
120 ret = wm8400_set_bits(wm8400, WM8400_DCDC1_CONTROL_2 + offset,
121 WM8400_DC1_FRC_PWM, 0);
122 if (ret != 0)
123 return ret;
124
125 return wm8400_set_bits(wm8400, WM8400_DCDC1_CONTROL_1 + offset,
126 WM8400_DC1_ACTIVE | WM8400_DC1_SLEEP,
127 WM8400_DC1_ACTIVE);
128
129 case REGULATOR_MODE_IDLE:
130 /* Datasheet: standby */
131 ret = wm8400_set_bits(wm8400, WM8400_DCDC1_CONTROL_1 + offset,
132 WM8400_DC1_ACTIVE, 0);
133 if (ret != 0)
134 return ret;
135 return wm8400_set_bits(wm8400, WM8400_DCDC1_CONTROL_1 + offset,
136 WM8400_DC1_SLEEP, 0);
137
138 default:
139 return -EINVAL;
140 }
141}
142
143static unsigned int wm8400_dcdc_get_optimum_mode(struct regulator_dev *dev,
144 int input_uV, int output_uV,
145 int load_uA)
146{
147 return REGULATOR_MODE_NORMAL;
148}
149
150static struct regulator_ops wm8400_dcdc_ops = {
c54a155d
MB
151 .is_enabled = regulator_is_enabled_regmap,
152 .enable = regulator_enable_regmap,
153 .disable = regulator_disable_regmap,
154 .list_voltage = regulator_list_voltage_linear,
27eeabb7 155 .map_voltage = regulator_map_voltage_linear,
c54a155d
MB
156 .get_voltage_sel = regulator_get_voltage_sel_regmap,
157 .set_voltage_sel = regulator_set_voltage_sel_regmap,
42fad570
MB
158 .get_mode = wm8400_dcdc_get_mode,
159 .set_mode = wm8400_dcdc_set_mode,
160 .get_optimum_mode = wm8400_dcdc_get_optimum_mode,
161};
162
163static struct regulator_desc regulators[] = {
164 {
165 .name = "LDO1",
166 .id = WM8400_LDO1,
167 .ops = &wm8400_ldo_ops,
c54a155d
MB
168 .enable_reg = WM8400_LDO1_CONTROL,
169 .enable_mask = WM8400_LDO1_ENA,
216765d9 170 .n_voltages = WM8400_LDO1_VSEL_MASK + 1,
c54a155d
MB
171 .vsel_reg = WM8400_LDO1_CONTROL,
172 .vsel_mask = WM8400_LDO1_VSEL_MASK,
42fad570
MB
173 .type = REGULATOR_VOLTAGE,
174 .owner = THIS_MODULE,
175 },
176 {
177 .name = "LDO2",
178 .id = WM8400_LDO2,
179 .ops = &wm8400_ldo_ops,
c54a155d
MB
180 .enable_reg = WM8400_LDO2_CONTROL,
181 .enable_mask = WM8400_LDO2_ENA,
216765d9 182 .n_voltages = WM8400_LDO2_VSEL_MASK + 1,
42fad570 183 .type = REGULATOR_VOLTAGE,
c54a155d
MB
184 .vsel_reg = WM8400_LDO2_CONTROL,
185 .vsel_mask = WM8400_LDO2_VSEL_MASK,
42fad570
MB
186 .owner = THIS_MODULE,
187 },
188 {
189 .name = "LDO3",
190 .id = WM8400_LDO3,
191 .ops = &wm8400_ldo_ops,
c54a155d
MB
192 .enable_reg = WM8400_LDO3_CONTROL,
193 .enable_mask = WM8400_LDO3_ENA,
216765d9 194 .n_voltages = WM8400_LDO3_VSEL_MASK + 1,
c54a155d
MB
195 .vsel_reg = WM8400_LDO3_CONTROL,
196 .vsel_mask = WM8400_LDO3_VSEL_MASK,
42fad570
MB
197 .type = REGULATOR_VOLTAGE,
198 .owner = THIS_MODULE,
199 },
200 {
201 .name = "LDO4",
202 .id = WM8400_LDO4,
203 .ops = &wm8400_ldo_ops,
c54a155d
MB
204 .enable_reg = WM8400_LDO4_CONTROL,
205 .enable_mask = WM8400_LDO4_ENA,
216765d9 206 .n_voltages = WM8400_LDO4_VSEL_MASK + 1,
c54a155d
MB
207 .vsel_reg = WM8400_LDO4_CONTROL,
208 .vsel_mask = WM8400_LDO4_VSEL_MASK,
42fad570
MB
209 .type = REGULATOR_VOLTAGE,
210 .owner = THIS_MODULE,
211 },
212 {
213 .name = "DCDC1",
214 .id = WM8400_DCDC1,
215 .ops = &wm8400_dcdc_ops,
c54a155d
MB
216 .enable_reg = WM8400_DCDC1_CONTROL_1,
217 .enable_mask = WM8400_DC1_ENA_MASK,
216765d9 218 .n_voltages = WM8400_DC1_VSEL_MASK + 1,
c54a155d
MB
219 .vsel_reg = WM8400_DCDC1_CONTROL_1,
220 .vsel_mask = WM8400_DC1_VSEL_MASK,
221 .min_uV = 850000,
222 .uV_step = 25000,
42fad570
MB
223 .type = REGULATOR_VOLTAGE,
224 .owner = THIS_MODULE,
225 },
226 {
227 .name = "DCDC2",
228 .id = WM8400_DCDC2,
229 .ops = &wm8400_dcdc_ops,
c54a155d
MB
230 .enable_reg = WM8400_DCDC2_CONTROL_1,
231 .enable_mask = WM8400_DC1_ENA_MASK,
216765d9 232 .n_voltages = WM8400_DC2_VSEL_MASK + 1,
c54a155d
MB
233 .vsel_reg = WM8400_DCDC2_CONTROL_1,
234 .vsel_mask = WM8400_DC2_VSEL_MASK,
235 .min_uV = 850000,
236 .uV_step = 25000,
42fad570
MB
237 .type = REGULATOR_VOLTAGE,
238 .owner = THIS_MODULE,
239 },
240};
241
5dbdf735 242static int __devinit wm8400_regulator_probe(struct platform_device *pdev)
42fad570 243{
1ad02bbc 244 struct wm8400 *wm8400 = container_of(pdev, struct wm8400, regulators[pdev->id]);
c172708d 245 struct regulator_config config = { };
42fad570
MB
246 struct regulator_dev *rdev;
247
c172708d
MB
248 config.dev = &pdev->dev;
249 config.init_data = pdev->dev.platform_data;
250 config.driver_data = wm8400;
c54a155d 251 config.regmap = wm8400->regmap;
42fad570 252
c172708d 253 rdev = regulator_register(&regulators[pdev->id], &config);
42fad570
MB
254 if (IS_ERR(rdev))
255 return PTR_ERR(rdev);
256
1ad02bbc
DT
257 platform_set_drvdata(pdev, rdev);
258
42fad570
MB
259 return 0;
260}
261
262static int __devexit wm8400_regulator_remove(struct platform_device *pdev)
263{
264 struct regulator_dev *rdev = platform_get_drvdata(pdev);
265
1ad02bbc 266 platform_set_drvdata(pdev, NULL);
42fad570
MB
267 regulator_unregister(rdev);
268
269 return 0;
270}
271
272static struct platform_driver wm8400_regulator_driver = {
273 .driver = {
274 .name = "wm8400-regulator",
275 },
276 .probe = wm8400_regulator_probe,
277 .remove = __devexit_p(wm8400_regulator_remove),
278};
279
280/**
281 * wm8400_register_regulator - enable software control of a WM8400 regulator
282 *
283 * This function enables software control of a WM8400 regulator via
284 * the regulator API. It is intended to be called from the
285 * platform_init() callback of the WM8400 MFD driver.
286 *
287 * @param dev The WM8400 device to operate on.
288 * @param reg The regulator to control.
289 * @param initdata Regulator initdata for the regulator.
290 */
291int wm8400_register_regulator(struct device *dev, int reg,
292 struct regulator_init_data *initdata)
293{
1909e2f6 294 struct wm8400 *wm8400 = dev_get_drvdata(dev);
42fad570
MB
295
296 if (wm8400->regulators[reg].name)
297 return -EBUSY;
298
299 initdata->driver_data = wm8400;
300
301 wm8400->regulators[reg].name = "wm8400-regulator";
302 wm8400->regulators[reg].id = reg;
303 wm8400->regulators[reg].dev.parent = dev;
42fad570
MB
304 wm8400->regulators[reg].dev.platform_data = initdata;
305
306 return platform_device_register(&wm8400->regulators[reg]);
307}
308EXPORT_SYMBOL_GPL(wm8400_register_regulator);
309
310static int __init wm8400_regulator_init(void)
311{
312 return platform_driver_register(&wm8400_regulator_driver);
313}
5a1b22be 314subsys_initcall(wm8400_regulator_init);
42fad570
MB
315
316static void __exit wm8400_regulator_exit(void)
317{
318 platform_driver_unregister(&wm8400_regulator_driver);
319}
320module_exit(wm8400_regulator_exit);
321
322MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
323MODULE_DESCRIPTION("WM8400 regulator driver");
324MODULE_LICENSE("GPL");
325MODULE_ALIAS("platform:wm8400-regulator");
This page took 0.294272 seconds and 5 git commands to generate.