2 * Regulator Driver for Freescale MC13783 PMIC
4 * Copyright (C) 2008 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
5 * Copyright 2009 Alberto Panizzo <maramaopercheseimorto@gmail.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
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>
21 #define MC13783_REG_SWITCHERS5 29
22 #define MC13783_REG_SWITCHERS5_SW3EN (1 << 20)
23 #define MC13783_REG_SWITCHERS5_SW3VSEL 18
24 #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
37 #define MC13783_REG_REGULATORSETTING0_VIOLOVSEL_M (3 << 2)
38 #define MC13783_REG_REGULATORSETTING0_VDIGVSEL_M (3 << 4)
39 #define MC13783_REG_REGULATORSETTING0_VGENVSEL_M (7 << 6)
40 #define MC13783_REG_REGULATORSETTING0_VRFDIGVSEL_M (3 << 9)
41 #define MC13783_REG_REGULATORSETTING0_VRFREFVSEL_M (3 << 11)
42 #define MC13783_REG_REGULATORSETTING0_VRFCPVSEL_M (1 << 13)
43 #define MC13783_REG_REGULATORSETTING0_VSIMVSEL_M (1 << 14)
44 #define MC13783_REG_REGULATORSETTING0_VESIMVSEL_M (1 << 15)
45 #define MC13783_REG_REGULATORSETTING0_VCAMVSEL_M (7 << 16)
47 #define MC13783_REG_REGULATORSETTING1 31
48 #define MC13783_REG_REGULATORSETTING1_VVIBVSEL 0
49 #define MC13783_REG_REGULATORSETTING1_VRF1VSEL 2
50 #define MC13783_REG_REGULATORSETTING1_VRF2VSEL 4
51 #define MC13783_REG_REGULATORSETTING1_VMMC1VSEL 6
52 #define MC13783_REG_REGULATORSETTING1_VMMC2VSEL 9
54 #define MC13783_REG_REGULATORSETTING1_VVIBVSEL_M (3 << 0)
55 #define MC13783_REG_REGULATORSETTING1_VRF1VSEL_M (3 << 2)
56 #define MC13783_REG_REGULATORSETTING1_VRF2VSEL_M (3 << 4)
57 #define MC13783_REG_REGULATORSETTING1_VMMC1VSEL_M (7 << 6)
58 #define MC13783_REG_REGULATORSETTING1_VMMC2VSEL_M (7 << 9)
60 #define MC13783_REG_REGULATORMODE0 32
61 #define MC13783_REG_REGULATORMODE0_VAUDIOEN (1 << 0)
62 #define MC13783_REG_REGULATORMODE0_VIOHIEN (1 << 3)
63 #define MC13783_REG_REGULATORMODE0_VIOLOEN (1 << 6)
64 #define MC13783_REG_REGULATORMODE0_VDIGEN (1 << 9)
65 #define MC13783_REG_REGULATORMODE0_VGENEN (1 << 12)
66 #define MC13783_REG_REGULATORMODE0_VRFDIGEN (1 << 15)
67 #define MC13783_REG_REGULATORMODE0_VRFREFEN (1 << 18)
68 #define MC13783_REG_REGULATORMODE0_VRFCPEN (1 << 21)
70 #define MC13783_REG_REGULATORMODE1 33
71 #define MC13783_REG_REGULATORMODE1_VSIMEN (1 << 0)
72 #define MC13783_REG_REGULATORMODE1_VESIMEN (1 << 3)
73 #define MC13783_REG_REGULATORMODE1_VCAMEN (1 << 6)
74 #define MC13783_REG_REGULATORMODE1_VRFBGEN (1 << 9)
75 #define MC13783_REG_REGULATORMODE1_VVIBEN (1 << 11)
76 #define MC13783_REG_REGULATORMODE1_VRF1EN (1 << 12)
77 #define MC13783_REG_REGULATORMODE1_VRF2EN (1 << 15)
78 #define MC13783_REG_REGULATORMODE1_VMMC1EN (1 << 18)
79 #define MC13783_REG_REGULATORMODE1_VMMC2EN (1 << 21)
81 #define MC13783_REG_POWERMISC 34
82 #define MC13783_REG_POWERMISC_GPO1EN (1 << 6)
83 #define MC13783_REG_POWERMISC_GPO2EN (1 << 8)
84 #define MC13783_REG_POWERMISC_GPO3EN (1 << 10)
85 #define MC13783_REG_POWERMISC_GPO4EN (1 << 12)
86 #define MC13783_REG_POWERMISC_PWGT1SPIEN (1 << 15)
87 #define MC13783_REG_POWERMISC_PWGT2SPIEN (1 << 16)
89 #define MC13783_REG_POWERMISC_PWGTSPI_M (3 << 15)
92 struct mc13783_regulator
{
93 struct regulator_desc desc
;
103 static const int const mc13783_sw3_val
[] = {
104 5000000, 5000000, 5000000, 5500000,
107 static const int const mc13783_vaudio_val
[] = {
111 static const int const mc13783_viohi_val
[] = {
115 static const int const mc13783_violo_val
[] = {
116 1200000, 1300000, 1500000, 1800000,
119 static const int const mc13783_vdig_val
[] = {
120 1200000, 1300000, 1500000, 1800000,
123 static const int const mc13783_vgen_val
[] = {
124 1200000, 1300000, 1500000, 1800000,
125 1100000, 2000000, 2775000, 2400000,
128 static const int const mc13783_vrfdig_val
[] = {
129 1200000, 1500000, 1800000, 1875000,
132 static const int const mc13783_vrfref_val
[] = {
133 2475000, 2600000, 2700000, 2775000,
136 static const int const mc13783_vrfcp_val
[] = {
140 static const int const mc13783_vsim_val
[] = {
141 1800000, 2900000, 3000000,
144 static const int const mc13783_vesim_val
[] = {
148 static const int const mc13783_vcam_val
[] = {
149 1500000, 1800000, 2500000, 2550000,
150 2600000, 2750000, 2800000, 3000000,
153 static const int const mc13783_vrfbg_val
[] = {
157 static const int const mc13783_vvib_val
[] = {
158 1300000, 1800000, 2000000, 3000000,
161 static const int const mc13783_vmmc_val
[] = {
162 1600000, 1800000, 2000000, 2600000,
163 2700000, 2800000, 2900000, 3000000,
166 static const int const mc13783_vrf_val
[] = {
167 1500000, 1875000, 2700000, 2775000,
170 static const int const mc13783_gpo_val
[] = {
174 static const int const mc13783_pwgtdrv_val
[] = {
178 static struct regulator_ops mc13783_regulator_ops
;
179 static struct regulator_ops mc13783_fixed_regulator_ops
;
180 static struct regulator_ops mc13783_gpo_regulator_ops
;
182 #define MC13783_DEFINE(prefix, _name, _reg, _vsel_reg, _voltages) \
183 [MC13783_ ## prefix ## _ ## _name] = { \
185 .name = #prefix "_" #_name, \
186 .n_voltages = ARRAY_SIZE(_voltages), \
187 .ops = &mc13783_regulator_ops, \
188 .type = REGULATOR_VOLTAGE, \
189 .id = MC13783_ ## prefix ## _ ## _name, \
190 .owner = THIS_MODULE, \
192 .reg = MC13783_REG_ ## _reg, \
193 .enable_bit = MC13783_REG_ ## _reg ## _ ## _name ## EN, \
194 .vsel_reg = MC13783_REG_ ## _vsel_reg, \
195 .vsel_shift = MC13783_REG_ ## _vsel_reg ## _ ## _name ## VSEL,\
196 .vsel_mask = MC13783_REG_ ## _vsel_reg ## _ ## _name ## VSEL_M,\
197 .voltages = _voltages, \
200 #define MC13783_FIXED_DEFINE(prefix, _name, _reg, _voltages) \
201 [MC13783_ ## prefix ## _ ## _name] = { \
203 .name = #prefix "_" #_name, \
204 .n_voltages = ARRAY_SIZE(_voltages), \
205 .ops = &mc13783_fixed_regulator_ops, \
206 .type = REGULATOR_VOLTAGE, \
207 .id = MC13783_ ## prefix ## _ ## _name, \
208 .owner = THIS_MODULE, \
210 .reg = MC13783_REG_ ## _reg, \
211 .enable_bit = MC13783_REG_ ## _reg ## _ ## _name ## EN, \
212 .voltages = _voltages, \
215 #define MC13783_GPO_DEFINE(prefix, _name, _reg, _voltages) \
216 [MC13783_ ## prefix ## _ ## _name] = { \
218 .name = #prefix "_" #_name, \
219 .n_voltages = ARRAY_SIZE(_voltages), \
220 .ops = &mc13783_gpo_regulator_ops, \
221 .type = REGULATOR_VOLTAGE, \
222 .id = MC13783_ ## prefix ## _ ## _name, \
223 .owner = THIS_MODULE, \
225 .reg = MC13783_REG_ ## _reg, \
226 .enable_bit = MC13783_REG_ ## _reg ## _ ## _name ## EN, \
227 .voltages = _voltages, \
230 #define MC13783_DEFINE_SW(_name, _reg, _vsel_reg, _voltages) \
231 MC13783_DEFINE(SW, _name, _reg, _vsel_reg, _voltages)
232 #define MC13783_DEFINE_REGU(_name, _reg, _vsel_reg, _voltages) \
233 MC13783_DEFINE(REGU, _name, _reg, _vsel_reg, _voltages)
235 static struct mc13783_regulator mc13783_regulators
[] = {
236 MC13783_DEFINE_SW(SW3
, SWITCHERS5
, SWITCHERS5
, mc13783_sw3_val
),
238 MC13783_FIXED_DEFINE(REGU
, VAUDIO
, REGULATORMODE0
, mc13783_vaudio_val
),
239 MC13783_FIXED_DEFINE(REGU
, VIOHI
, REGULATORMODE0
, mc13783_viohi_val
),
240 MC13783_DEFINE_REGU(VIOLO
, REGULATORMODE0
, REGULATORSETTING0
, \
242 MC13783_DEFINE_REGU(VDIG
, REGULATORMODE0
, REGULATORSETTING0
, \
244 MC13783_DEFINE_REGU(VGEN
, REGULATORMODE0
, REGULATORSETTING0
, \
246 MC13783_DEFINE_REGU(VRFDIG
, REGULATORMODE0
, REGULATORSETTING0
, \
248 MC13783_DEFINE_REGU(VRFREF
, REGULATORMODE0
, REGULATORSETTING0
, \
250 MC13783_DEFINE_REGU(VRFCP
, REGULATORMODE0
, REGULATORSETTING0
, \
252 MC13783_DEFINE_REGU(VSIM
, REGULATORMODE1
, REGULATORSETTING0
, \
254 MC13783_DEFINE_REGU(VESIM
, REGULATORMODE1
, REGULATORSETTING0
, \
256 MC13783_DEFINE_REGU(VCAM
, REGULATORMODE1
, REGULATORSETTING0
, \
258 MC13783_FIXED_DEFINE(REGU
, VRFBG
, REGULATORMODE1
, mc13783_vrfbg_val
),
259 MC13783_DEFINE_REGU(VVIB
, REGULATORMODE1
, REGULATORSETTING1
, \
261 MC13783_DEFINE_REGU(VRF1
, REGULATORMODE1
, REGULATORSETTING1
, \
263 MC13783_DEFINE_REGU(VRF2
, REGULATORMODE1
, REGULATORSETTING1
, \
265 MC13783_DEFINE_REGU(VMMC1
, REGULATORMODE1
, REGULATORSETTING1
, \
267 MC13783_DEFINE_REGU(VMMC2
, REGULATORMODE1
, REGULATORSETTING1
, \
269 MC13783_GPO_DEFINE(REGU
, GPO1
, POWERMISC
, mc13783_gpo_val
),
270 MC13783_GPO_DEFINE(REGU
, GPO2
, POWERMISC
, mc13783_gpo_val
),
271 MC13783_GPO_DEFINE(REGU
, GPO3
, POWERMISC
, mc13783_gpo_val
),
272 MC13783_GPO_DEFINE(REGU
, GPO4
, POWERMISC
, mc13783_gpo_val
),
273 MC13783_GPO_DEFINE(REGU
, PWGT1SPI
, POWERMISC
, mc13783_pwgtdrv_val
),
274 MC13783_GPO_DEFINE(REGU
, PWGT2SPI
, POWERMISC
, mc13783_pwgtdrv_val
),
277 struct mc13783_regulator_priv
{
278 struct mc13783
*mc13783
;
279 u32 powermisc_pwgt_state
;
280 struct regulator_dev
*regulators
[];
283 static int mc13783_regulator_enable(struct regulator_dev
*rdev
)
285 struct mc13783_regulator_priv
*priv
= rdev_get_drvdata(rdev
);
286 int id
= rdev_get_id(rdev
);
289 dev_dbg(rdev_get_dev(rdev
), "%s id: %d\n", __func__
, id
);
291 mc13783_lock(priv
->mc13783
);
292 ret
= mc13783_reg_rmw(priv
->mc13783
, mc13783_regulators
[id
].reg
,
293 mc13783_regulators
[id
].enable_bit
,
294 mc13783_regulators
[id
].enable_bit
);
295 mc13783_unlock(priv
->mc13783
);
300 static int mc13783_regulator_disable(struct regulator_dev
*rdev
)
302 struct mc13783_regulator_priv
*priv
= rdev_get_drvdata(rdev
);
303 int id
= rdev_get_id(rdev
);
306 dev_dbg(rdev_get_dev(rdev
), "%s id: %d\n", __func__
, id
);
308 mc13783_lock(priv
->mc13783
);
309 ret
= mc13783_reg_rmw(priv
->mc13783
, mc13783_regulators
[id
].reg
,
310 mc13783_regulators
[id
].enable_bit
, 0);
311 mc13783_unlock(priv
->mc13783
);
316 static int mc13783_regulator_is_enabled(struct regulator_dev
*rdev
)
318 struct mc13783_regulator_priv
*priv
= rdev_get_drvdata(rdev
);
319 int ret
, id
= rdev_get_id(rdev
);
322 mc13783_lock(priv
->mc13783
);
323 ret
= mc13783_reg_read(priv
->mc13783
, mc13783_regulators
[id
].reg
, &val
);
324 mc13783_unlock(priv
->mc13783
);
329 return (val
& mc13783_regulators
[id
].enable_bit
) != 0;
332 static int mc13783_regulator_list_voltage(struct regulator_dev
*rdev
,
335 int id
= rdev_get_id(rdev
);
337 if (selector
>= mc13783_regulators
[id
].desc
.n_voltages
)
340 return mc13783_regulators
[id
].voltages
[selector
];
343 static int mc13783_get_best_voltage_index(struct regulator_dev
*rdev
,
344 int min_uV
, int max_uV
)
346 int reg_id
= rdev_get_id(rdev
);
352 * Locate the minimum voltage fitting the criteria on
353 * this regulator. The switchable voltages are not
354 * in strict falling order so we need to check them
355 * all for the best match.
359 for (i
= 0; i
< mc13783_regulators
[reg_id
].desc
.n_voltages
; i
++) {
360 if (mc13783_regulators
[reg_id
].voltages
[i
] >= min_uV
&&
361 mc13783_regulators
[reg_id
].voltages
[i
] < bestmatch
) {
362 bestmatch
= mc13783_regulators
[reg_id
].voltages
[i
];
367 if (bestindex
< 0 || bestmatch
> max_uV
) {
368 dev_warn(&rdev
->dev
, "no possible value for %d<=x<=%d uV\n",
375 static int mc13783_regulator_set_voltage(struct regulator_dev
*rdev
,
376 int min_uV
, int max_uV
)
378 struct mc13783_regulator_priv
*priv
= rdev_get_drvdata(rdev
);
379 int value
, id
= rdev_get_id(rdev
);
382 dev_dbg(rdev_get_dev(rdev
), "%s id: %d min_uV: %d max_uV: %d\n",
383 __func__
, id
, min_uV
, max_uV
);
385 /* Find the best index */
386 value
= mc13783_get_best_voltage_index(rdev
, min_uV
, max_uV
);
387 dev_dbg(rdev_get_dev(rdev
), "%s best value: %d \n", __func__
, value
);
391 mc13783_lock(priv
->mc13783
);
392 ret
= mc13783_reg_rmw(priv
->mc13783
, mc13783_regulators
[id
].vsel_reg
,
393 mc13783_regulators
[id
].vsel_mask
,
394 value
<< mc13783_regulators
[id
].vsel_shift
);
395 mc13783_unlock(priv
->mc13783
);
400 static int mc13783_regulator_get_voltage(struct regulator_dev
*rdev
)
402 struct mc13783_regulator_priv
*priv
= rdev_get_drvdata(rdev
);
403 int ret
, id
= rdev_get_id(rdev
);
406 dev_dbg(rdev_get_dev(rdev
), "%s id: %d\n", __func__
, id
);
408 mc13783_lock(priv
->mc13783
);
409 ret
= mc13783_reg_read(priv
->mc13783
,
410 mc13783_regulators
[id
].vsel_reg
, &val
);
411 mc13783_unlock(priv
->mc13783
);
416 val
= (val
& mc13783_regulators
[id
].vsel_mask
)
417 >> mc13783_regulators
[id
].vsel_shift
;
419 dev_dbg(rdev_get_dev(rdev
), "%s id: %d val: %d\n", __func__
, id
, val
);
421 BUG_ON(val
< 0 || val
> mc13783_regulators
[id
].desc
.n_voltages
);
423 return mc13783_regulators
[id
].voltages
[val
];
426 static struct regulator_ops mc13783_regulator_ops
= {
427 .enable
= mc13783_regulator_enable
,
428 .disable
= mc13783_regulator_disable
,
429 .is_enabled
= mc13783_regulator_is_enabled
,
430 .list_voltage
= mc13783_regulator_list_voltage
,
431 .set_voltage
= mc13783_regulator_set_voltage
,
432 .get_voltage
= mc13783_regulator_get_voltage
,
435 static int mc13783_fixed_regulator_set_voltage(struct regulator_dev
*rdev
,
436 int min_uV
, int max_uV
)
438 int id
= rdev_get_id(rdev
);
440 dev_dbg(rdev_get_dev(rdev
), "%s id: %d min_uV: %d max_uV: %d\n",
441 __func__
, id
, min_uV
, max_uV
);
443 if (min_uV
>= mc13783_regulators
[id
].voltages
[0] &&
444 max_uV
<= mc13783_regulators
[id
].voltages
[0])
450 static int mc13783_fixed_regulator_get_voltage(struct regulator_dev
*rdev
)
452 int id
= rdev_get_id(rdev
);
454 dev_dbg(rdev_get_dev(rdev
), "%s id: %d\n", __func__
, id
);
456 return mc13783_regulators
[id
].voltages
[0];
459 static struct regulator_ops mc13783_fixed_regulator_ops
= {
460 .enable
= mc13783_regulator_enable
,
461 .disable
= mc13783_regulator_disable
,
462 .is_enabled
= mc13783_regulator_is_enabled
,
463 .list_voltage
= mc13783_regulator_list_voltage
,
464 .set_voltage
= mc13783_fixed_regulator_set_voltage
,
465 .get_voltage
= mc13783_fixed_regulator_get_voltage
,
468 int mc13783_powermisc_rmw(struct mc13783_regulator_priv
*priv
, u32 mask
,
471 struct mc13783
*mc13783
= priv
->mc13783
;
477 ret
= mc13783_reg_read(mc13783
, MC13783_REG_POWERMISC
, &valread
);
481 /* Update the stored state for Power Gates. */
482 priv
->powermisc_pwgt_state
=
483 (priv
->powermisc_pwgt_state
& ~mask
) | val
;
484 priv
->powermisc_pwgt_state
&= MC13783_REG_POWERMISC_PWGTSPI_M
;
486 /* Construct the new register value */
487 valread
= (valread
& ~mask
) | val
;
488 /* Overwrite the PWGTxEN with the stored version */
489 valread
= (valread
& ~MC13783_REG_POWERMISC_PWGTSPI_M
) |
490 priv
->powermisc_pwgt_state
;
492 return mc13783_reg_write(mc13783
, MC13783_REG_POWERMISC
, valread
);
495 static int mc13783_gpo_regulator_enable(struct regulator_dev
*rdev
)
497 struct mc13783_regulator_priv
*priv
= rdev_get_drvdata(rdev
);
498 int id
= rdev_get_id(rdev
);
500 u32 en_val
= mc13783_regulators
[id
].enable_bit
;
502 dev_dbg(rdev_get_dev(rdev
), "%s id: %d\n", __func__
, id
);
504 /* Power Gate enable value is 0 */
505 if (id
== MC13783_REGU_PWGT1SPI
||
506 id
== MC13783_REGU_PWGT2SPI
)
509 mc13783_lock(priv
->mc13783
);
510 ret
= mc13783_powermisc_rmw(priv
, mc13783_regulators
[id
].enable_bit
,
512 mc13783_unlock(priv
->mc13783
);
517 static int mc13783_gpo_regulator_disable(struct regulator_dev
*rdev
)
519 struct mc13783_regulator_priv
*priv
= rdev_get_drvdata(rdev
);
520 int id
= rdev_get_id(rdev
);
524 dev_dbg(rdev_get_dev(rdev
), "%s id: %d\n", __func__
, id
);
526 /* Power Gate disable value is 1 */
527 if (id
== MC13783_REGU_PWGT1SPI
||
528 id
== MC13783_REGU_PWGT2SPI
)
529 dis_val
= mc13783_regulators
[id
].enable_bit
;
531 mc13783_lock(priv
->mc13783
);
532 ret
= mc13783_powermisc_rmw(priv
, mc13783_regulators
[id
].enable_bit
,
534 mc13783_unlock(priv
->mc13783
);
539 static int mc13783_gpo_regulator_is_enabled(struct regulator_dev
*rdev
)
541 struct mc13783_regulator_priv
*priv
= rdev_get_drvdata(rdev
);
542 int ret
, id
= rdev_get_id(rdev
);
545 mc13783_lock(priv
->mc13783
);
546 ret
= mc13783_reg_read(priv
->mc13783
, mc13783_regulators
[id
].reg
, &val
);
547 mc13783_unlock(priv
->mc13783
);
552 /* Power Gates state is stored in powermisc_pwgt_state
553 * where the meaning of bits is negated */
554 val
= (val
& ~MC13783_REG_POWERMISC_PWGTSPI_M
) |
555 (priv
->powermisc_pwgt_state
^ MC13783_REG_POWERMISC_PWGTSPI_M
);
557 return (val
& mc13783_regulators
[id
].enable_bit
) != 0;
560 static struct regulator_ops mc13783_gpo_regulator_ops
= {
561 .enable
= mc13783_gpo_regulator_enable
,
562 .disable
= mc13783_gpo_regulator_disable
,
563 .is_enabled
= mc13783_gpo_regulator_is_enabled
,
564 .list_voltage
= mc13783_regulator_list_voltage
,
565 .set_voltage
= mc13783_fixed_regulator_set_voltage
,
566 .get_voltage
= mc13783_fixed_regulator_get_voltage
,
569 static int __devinit
mc13783_regulator_probe(struct platform_device
*pdev
)
571 struct mc13783_regulator_priv
*priv
;
572 struct mc13783
*mc13783
= dev_get_drvdata(pdev
->dev
.parent
);
573 struct mc13783_regulator_platform_data
*pdata
=
574 dev_get_platdata(&pdev
->dev
);
575 struct mc13783_regulator_init_data
*init_data
;
578 dev_dbg(&pdev
->dev
, "mc13783_regulator_probe id %d\n", pdev
->id
);
580 priv
= kzalloc(sizeof(*priv
) +
581 pdata
->num_regulators
* sizeof(priv
->regulators
[0]),
586 priv
->mc13783
= mc13783
;
588 for (i
= 0; i
< pdata
->num_regulators
; i
++) {
589 init_data
= &pdata
->regulators
[i
];
590 priv
->regulators
[i
] = regulator_register(
591 &mc13783_regulators
[init_data
->id
].desc
,
592 &pdev
->dev
, init_data
->init_data
, priv
);
594 if (IS_ERR(priv
->regulators
[i
])) {
595 dev_err(&pdev
->dev
, "failed to register regulator %s\n",
596 mc13783_regulators
[i
].desc
.name
);
597 ret
= PTR_ERR(priv
->regulators
[i
]);
602 platform_set_drvdata(pdev
, priv
);
607 regulator_unregister(priv
->regulators
[i
]);
614 static int __devexit
mc13783_regulator_remove(struct platform_device
*pdev
)
616 struct mc13783_regulator_priv
*priv
= platform_get_drvdata(pdev
);
617 struct mc13783_regulator_platform_data
*pdata
=
618 dev_get_platdata(&pdev
->dev
);
621 platform_set_drvdata(pdev
, NULL
);
623 for (i
= 0; i
< pdata
->num_regulators
; i
++)
624 regulator_unregister(priv
->regulators
[i
]);
630 static struct platform_driver mc13783_regulator_driver
= {
632 .name
= "mc13783-regulator",
633 .owner
= THIS_MODULE
,
635 .remove
= __devexit_p(mc13783_regulator_remove
),
636 .probe
= mc13783_regulator_probe
,
639 static int __init
mc13783_regulator_init(void)
641 return platform_driver_register(&mc13783_regulator_driver
);
643 subsys_initcall(mc13783_regulator_init
);
645 static void __exit
mc13783_regulator_exit(void)
647 platform_driver_unregister(&mc13783_regulator_driver
);
649 module_exit(mc13783_regulator_exit
);
651 MODULE_LICENSE("GPL v2");
652 MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
653 MODULE_DESCRIPTION("Regulator Driver for Freescale MC13783 PMIC");
654 MODULE_ALIAS("platform:mc13783-regulator");