2 * twl-regulator.c -- support regulators in twl4030/twl6030 family chips
4 * Copyright (C) 2008 David Brownell
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/err.h>
15 #include <linux/delay.h>
16 #include <linux/platform_device.h>
17 #include <linux/regulator/driver.h>
18 #include <linux/regulator/machine.h>
19 #include <linux/i2c/twl.h>
23 * The TWL4030/TW5030/TPS659x0/TWL6030 family chips include power management, a
24 * USB OTG transceiver, an RTC, ADC, PWM, and lots more. Some versions
25 * include an audio codec, battery charger, and more voltage regulators.
26 * These chips are often used in OMAP-based systems.
28 * This driver implements software-based resource control for various
29 * voltage regulators. This is usually augmented with state machine
34 /* start of regulator's PM_RECEIVER control register bank */
37 /* twl resource ID, for resource control state machine */
40 /* voltage in mV = table[VSEL]; table_len must be a power-of-two */
44 /* regulator specific turn-on delay */
47 /* State REMAP default configuration */
50 /* chip constraints on regulator behavior */
56 /* used by regulator core */
57 struct regulator_desc desc
;
59 /* chip specific features */
60 unsigned long features
;
64 /* LDO control registers ... offset is from the base of its register bank.
65 * The first three registers of all power resource banks help hardware to
66 * manage the various resource groups.
68 /* Common offset in TWL4030/6030 */
70 /* TWL4030 register offsets */
73 #define VREG_DEDICATED 3 /* LDO control */
74 #define VREG_VOLTAGE_SMPS_4030 9
75 /* TWL6030 register offsets */
78 #define VREG_VOLTAGE 3
79 #define VREG_VOLTAGE_SMPS 4
80 /* TWL6030 Misc register offsets */
83 #define VREG_BC_PROC 3
84 #define VREG_BC_CLK_RST 4
86 /* TWL6030 LDO register values for CFG_STATE */
87 #define TWL6030_CFG_STATE_OFF 0x00
88 #define TWL6030_CFG_STATE_ON 0x01
89 #define TWL6030_CFG_STATE_OFF2 0x02
90 #define TWL6030_CFG_STATE_SLEEP 0x03
91 #define TWL6030_CFG_STATE_GRP_SHIFT 5
92 #define TWL6030_CFG_STATE_APP_SHIFT 2
93 #define TWL6030_CFG_STATE_APP_MASK (0x03 << TWL6030_CFG_STATE_APP_SHIFT)
94 #define TWL6030_CFG_STATE_APP(v) (((v) & TWL6030_CFG_STATE_APP_MASK) >>\
95 TWL6030_CFG_STATE_APP_SHIFT)
97 /* Flags for SMPS Voltage reading */
98 #define SMPS_OFFSET_EN BIT(0)
99 #define SMPS_EXTENDED_EN BIT(1)
101 /* twl6025 SMPS EPROM values */
102 #define TWL6030_SMPS_OFFSET 0xB0
103 #define TWL6030_SMPS_MULT 0xB3
104 #define SMPS_MULTOFFSET_SMPS4 BIT(0)
105 #define SMPS_MULTOFFSET_VIO BIT(1)
106 #define SMPS_MULTOFFSET_SMPS3 BIT(6)
109 twlreg_read(struct twlreg_info
*info
, unsigned slave_subgp
, unsigned offset
)
114 status
= twl_i2c_read_u8(slave_subgp
,
115 &value
, info
->base
+ offset
);
116 return (status
< 0) ? status
: value
;
120 twlreg_write(struct twlreg_info
*info
, unsigned slave_subgp
, unsigned offset
,
123 return twl_i2c_write_u8(slave_subgp
,
124 value
, info
->base
+ offset
);
127 /*----------------------------------------------------------------------*/
129 /* generic power resource operations, which work on all regulators */
131 static int twlreg_grp(struct regulator_dev
*rdev
)
133 return twlreg_read(rdev_get_drvdata(rdev
), TWL_MODULE_PM_RECEIVER
,
138 * Enable/disable regulators by joining/leaving the P1 (processor) group.
139 * We assume nobody else is updating the DEV_GRP registers.
141 /* definition for 4030 family */
142 #define P3_GRP_4030 BIT(7) /* "peripherals" */
143 #define P2_GRP_4030 BIT(6) /* secondary processor, modem, etc */
144 #define P1_GRP_4030 BIT(5) /* CPU/Linux */
145 /* definition for 6030 family */
146 #define P3_GRP_6030 BIT(2) /* secondary processor, modem, etc */
147 #define P2_GRP_6030 BIT(1) /* "peripherals" */
148 #define P1_GRP_6030 BIT(0) /* CPU/Linux */
150 static int twl4030reg_is_enabled(struct regulator_dev
*rdev
)
152 int state
= twlreg_grp(rdev
);
157 return state
& P1_GRP_4030
;
160 static int twl6030reg_is_enabled(struct regulator_dev
*rdev
)
162 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
165 if (!(twl_class_is_6030() && (info
->features
& TWL6025_SUBCLASS
)))
166 grp
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
, VREG_GRP
);
170 if (!(twl_class_is_6030() && (info
->features
& TWL6025_SUBCLASS
)))
175 val
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
, VREG_STATE
);
176 val
= TWL6030_CFG_STATE_APP(val
);
178 return grp
&& (val
== TWL6030_CFG_STATE_ON
);
181 static int twl4030reg_enable(struct regulator_dev
*rdev
)
183 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
187 grp
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
, VREG_GRP
);
193 ret
= twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_GRP
, grp
);
200 static int twl6030reg_enable(struct regulator_dev
*rdev
)
202 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
206 if (!(twl_class_is_6030() && (info
->features
& TWL6025_SUBCLASS
)))
207 grp
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
, VREG_GRP
);
211 ret
= twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_STATE
,
212 grp
<< TWL6030_CFG_STATE_GRP_SHIFT
|
213 TWL6030_CFG_STATE_ON
);
220 static int twl4030reg_disable(struct regulator_dev
*rdev
)
222 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
226 grp
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
, VREG_GRP
);
230 grp
&= ~(P1_GRP_4030
| P2_GRP_4030
| P3_GRP_4030
);
232 ret
= twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_GRP
, grp
);
237 static int twl6030reg_disable(struct regulator_dev
*rdev
)
239 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
243 if (!(twl_class_is_6030() && (info
->features
& TWL6025_SUBCLASS
)))
244 grp
= P1_GRP_6030
| P2_GRP_6030
| P3_GRP_6030
;
246 /* For 6030, set the off state for all grps enabled */
247 ret
= twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_STATE
,
248 (grp
) << TWL6030_CFG_STATE_GRP_SHIFT
|
249 TWL6030_CFG_STATE_OFF
);
254 static int twl4030reg_get_status(struct regulator_dev
*rdev
)
256 int state
= twlreg_grp(rdev
);
262 /* assume state != WARM_RESET; we'd not be running... */
264 return REGULATOR_STATUS_OFF
;
265 return (state
& BIT(3))
266 ? REGULATOR_STATUS_NORMAL
267 : REGULATOR_STATUS_STANDBY
;
270 static int twl6030reg_get_status(struct regulator_dev
*rdev
)
272 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
275 val
= twlreg_grp(rdev
);
279 val
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
, VREG_STATE
);
281 switch (TWL6030_CFG_STATE_APP(val
)) {
282 case TWL6030_CFG_STATE_ON
:
283 return REGULATOR_STATUS_NORMAL
;
285 case TWL6030_CFG_STATE_SLEEP
:
286 return REGULATOR_STATUS_STANDBY
;
288 case TWL6030_CFG_STATE_OFF
:
289 case TWL6030_CFG_STATE_OFF2
:
294 return REGULATOR_STATUS_OFF
;
297 static int twl4030reg_set_mode(struct regulator_dev
*rdev
, unsigned mode
)
299 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
303 /* We can only set the mode through state machine commands... */
305 case REGULATOR_MODE_NORMAL
:
306 message
= MSG_SINGULAR(DEV_GRP_P1
, info
->id
, RES_STATE_ACTIVE
);
308 case REGULATOR_MODE_STANDBY
:
309 message
= MSG_SINGULAR(DEV_GRP_P1
, info
->id
, RES_STATE_SLEEP
);
315 /* Ensure the resource is associated with some group */
316 status
= twlreg_grp(rdev
);
319 if (!(status
& (P3_GRP_4030
| P2_GRP_4030
| P1_GRP_4030
)))
322 status
= twl_i2c_write_u8(TWL_MODULE_PM_MASTER
,
323 message
>> 8, TWL4030_PM_MASTER_PB_WORD_MSB
);
327 return twl_i2c_write_u8(TWL_MODULE_PM_MASTER
,
328 message
& 0xff, TWL4030_PM_MASTER_PB_WORD_LSB
);
331 static int twl6030reg_set_mode(struct regulator_dev
*rdev
, unsigned mode
)
333 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
337 if (!(twl_class_is_6030() && (info
->features
& TWL6025_SUBCLASS
)))
338 grp
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
, VREG_GRP
);
343 /* Compose the state register settings */
344 val
= grp
<< TWL6030_CFG_STATE_GRP_SHIFT
;
345 /* We can only set the mode through state machine commands... */
347 case REGULATOR_MODE_NORMAL
:
348 val
|= TWL6030_CFG_STATE_ON
;
350 case REGULATOR_MODE_STANDBY
:
351 val
|= TWL6030_CFG_STATE_SLEEP
;
358 return twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_STATE
, val
);
361 /*----------------------------------------------------------------------*/
364 * Support for adjustable-voltage LDOs uses a four bit (or less) voltage
365 * select field in its control register. We use tables indexed by VSEL
366 * to record voltages in milliVolts. (Accuracy is about three percent.)
368 * Note that VSEL values for VAUX2 changed in twl5030 and newer silicon;
369 * currently handled by listing two slightly different VAUX2 regulators,
370 * only one of which will be configured.
372 * VSEL values documented as "TI cannot support these values" are flagged
373 * in these tables as UNSUP() values; we normally won't assign them.
375 * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported.
376 * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting.
378 #ifdef CONFIG_TWL4030_ALLOW_UNSUPPORTED
379 #define UNSUP_MASK 0x0000
381 #define UNSUP_MASK 0x8000
384 #define UNSUP(x) (UNSUP_MASK | (x))
385 #define IS_UNSUP(x) (UNSUP_MASK & (x))
386 #define LDO_MV(x) (~UNSUP_MASK & (x))
389 static const u16 VAUX1_VSEL_table
[] = {
390 UNSUP(1500), UNSUP(1800), 2500, 2800,
391 3000, 3000, 3000, 3000,
393 static const u16 VAUX2_4030_VSEL_table
[] = {
394 UNSUP(1000), UNSUP(1000), UNSUP(1200), 1300,
395 1500, 1800, UNSUP(1850), 2500,
396 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
397 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
399 static const u16 VAUX2_VSEL_table
[] = {
400 1700, 1700, 1900, 1300,
401 1500, 1800, 2000, 2500,
402 2100, 2800, 2200, 2300,
403 2400, 2400, 2400, 2400,
405 static const u16 VAUX3_VSEL_table
[] = {
406 1500, 1800, 2500, 2800,
407 3000, 3000, 3000, 3000,
409 static const u16 VAUX4_VSEL_table
[] = {
410 700, 1000, 1200, UNSUP(1300),
411 1500, 1800, UNSUP(1850), 2500,
412 UNSUP(2600), 2800, UNSUP(2850), UNSUP(3000),
413 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
415 static const u16 VMMC1_VSEL_table
[] = {
416 1850, 2850, 3000, 3150,
418 static const u16 VMMC2_VSEL_table
[] = {
419 UNSUP(1000), UNSUP(1000), UNSUP(1200), UNSUP(1300),
420 UNSUP(1500), UNSUP(1800), 1850, UNSUP(2500),
421 2600, 2800, 2850, 3000,
422 3150, 3150, 3150, 3150,
424 static const u16 VPLL1_VSEL_table
[] = {
425 1000, 1200, 1300, 1800,
426 UNSUP(2800), UNSUP(3000), UNSUP(3000), UNSUP(3000),
428 static const u16 VPLL2_VSEL_table
[] = {
429 700, 1000, 1200, 1300,
430 UNSUP(1500), 1800, UNSUP(1850), UNSUP(2500),
431 UNSUP(2600), UNSUP(2800), UNSUP(2850), UNSUP(3000),
432 UNSUP(3150), UNSUP(3150), UNSUP(3150), UNSUP(3150),
434 static const u16 VSIM_VSEL_table
[] = {
435 UNSUP(1000), UNSUP(1200), UNSUP(1300), 1800,
436 2800, 3000, 3000, 3000,
438 static const u16 VDAC_VSEL_table
[] = {
439 1200, 1300, 1800, 1800,
441 static const u16 VDD1_VSEL_table
[] = {
444 static const u16 VDD2_VSEL_table
[] = {
447 static const u16 VIO_VSEL_table
[] = {
450 static const u16 VINTANA2_VSEL_table
[] = {
454 static int twl4030ldo_list_voltage(struct regulator_dev
*rdev
, unsigned index
)
456 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
457 int mV
= info
->table
[index
];
459 return IS_UNSUP(mV
) ? 0 : (LDO_MV(mV
) * 1000);
463 twl4030ldo_set_voltage(struct regulator_dev
*rdev
, int min_uV
, int max_uV
,
466 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
469 for (vsel
= 0; vsel
< info
->table_len
; vsel
++) {
470 int mV
= info
->table
[vsel
];
475 uV
= LDO_MV(mV
) * 1000;
477 /* REVISIT for VAUX2, first match may not be best/lowest */
479 /* use the first in-range value */
480 if (min_uV
<= uV
&& uV
<= max_uV
) {
482 return twlreg_write(info
, TWL_MODULE_PM_RECEIVER
,
490 static int twl4030ldo_get_voltage(struct regulator_dev
*rdev
)
492 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
493 int vsel
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
,
499 vsel
&= info
->table_len
- 1;
500 return LDO_MV(info
->table
[vsel
]) * 1000;
503 static struct regulator_ops twl4030ldo_ops
= {
504 .list_voltage
= twl4030ldo_list_voltage
,
506 .set_voltage
= twl4030ldo_set_voltage
,
507 .get_voltage
= twl4030ldo_get_voltage
,
509 .enable
= twl4030reg_enable
,
510 .disable
= twl4030reg_disable
,
511 .is_enabled
= twl4030reg_is_enabled
,
513 .set_mode
= twl4030reg_set_mode
,
515 .get_status
= twl4030reg_get_status
,
519 twl4030smps_set_voltage(struct regulator_dev
*rdev
, int min_uV
, int max_uV
,
522 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
523 int vsel
= DIV_ROUND_UP(min_uV
- 600000, 12500);
525 twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_VOLTAGE_SMPS_4030
,
530 static int twl4030smps_get_voltage(struct regulator_dev
*rdev
)
532 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
533 int vsel
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
,
534 VREG_VOLTAGE_SMPS_4030
);
536 return vsel
* 12500 + 600000;
539 static struct regulator_ops twl4030smps_ops
= {
540 .set_voltage
= twl4030smps_set_voltage
,
541 .get_voltage
= twl4030smps_get_voltage
,
544 static int twl6030ldo_list_voltage(struct regulator_dev
*rdev
, unsigned index
)
546 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
548 return ((info
->min_mV
+ (index
* 100)) * 1000);
552 twl6030ldo_set_voltage(struct regulator_dev
*rdev
, int min_uV
, int max_uV
,
555 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
558 if ((min_uV
/1000 < info
->min_mV
) || (max_uV
/1000 > info
->max_mV
))
562 * Use the below formula to calculate vsel
563 * mV = 1000mv + 100mv * (vsel - 1)
565 vsel
= (min_uV
/1000 - 1000)/100 + 1;
567 return twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_VOLTAGE
, vsel
);
571 static int twl6030ldo_get_voltage(struct regulator_dev
*rdev
)
573 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
574 int vsel
= twlreg_read(info
, TWL_MODULE_PM_RECEIVER
,
581 * Use the below formula to calculate vsel
582 * mV = 1000mv + 100mv * (vsel - 1)
584 return (1000 + (100 * (vsel
- 1))) * 1000;
587 static struct regulator_ops twl6030ldo_ops
= {
588 .list_voltage
= twl6030ldo_list_voltage
,
590 .set_voltage
= twl6030ldo_set_voltage
,
591 .get_voltage
= twl6030ldo_get_voltage
,
593 .enable
= twl6030reg_enable
,
594 .disable
= twl6030reg_disable
,
595 .is_enabled
= twl6030reg_is_enabled
,
597 .set_mode
= twl6030reg_set_mode
,
599 .get_status
= twl6030reg_get_status
,
602 /*----------------------------------------------------------------------*/
605 * Fixed voltage LDOs don't have a VSEL field to update.
607 static int twlfixed_list_voltage(struct regulator_dev
*rdev
, unsigned index
)
609 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
611 return info
->min_mV
* 1000;
614 static int twlfixed_get_voltage(struct regulator_dev
*rdev
)
616 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
618 return info
->min_mV
* 1000;
621 static struct regulator_ops twl4030fixed_ops
= {
622 .list_voltage
= twlfixed_list_voltage
,
624 .get_voltage
= twlfixed_get_voltage
,
626 .enable
= twl4030reg_enable
,
627 .disable
= twl4030reg_disable
,
628 .is_enabled
= twl4030reg_is_enabled
,
630 .set_mode
= twl4030reg_set_mode
,
632 .get_status
= twl4030reg_get_status
,
635 static struct regulator_ops twl6030fixed_ops
= {
636 .list_voltage
= twlfixed_list_voltage
,
638 .get_voltage
= twlfixed_get_voltage
,
640 .enable
= twl6030reg_enable
,
641 .disable
= twl6030reg_disable
,
642 .is_enabled
= twl6030reg_is_enabled
,
644 .set_mode
= twl6030reg_set_mode
,
646 .get_status
= twl6030reg_get_status
,
649 static struct regulator_ops twl6030_fixed_resource
= {
650 .enable
= twl6030reg_enable
,
651 .disable
= twl6030reg_disable
,
652 .is_enabled
= twl6030reg_is_enabled
,
653 .get_status
= twl6030reg_get_status
,
657 * SMPS status and control
660 static int twl6030smps_list_voltage(struct regulator_dev
*rdev
, unsigned index
)
662 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
666 switch (info
->flags
) {
676 voltage
= 1350 * 1000;
679 voltage
= 1500 * 1000;
682 voltage
= 1800 * 1000;
685 voltage
= 1900 * 1000;
688 voltage
= 2100 * 1000;
691 voltage
+= (600000 + (12500 * (index
- 1)));
694 case SMPS_EXTENDED_EN
:
700 voltage
= 2084 * 1000;
703 voltage
= 2315 * 1000;
706 voltage
= 2778 * 1000;
709 voltage
= 2932 * 1000;
712 voltage
= 3241 * 1000;
715 voltage
= (1852000 + (38600 * (index
- 1)));
718 case SMPS_OFFSET_EN
| SMPS_EXTENDED_EN
:
724 voltage
= 4167 * 1000;
727 voltage
= 2315 * 1000;
730 voltage
= 2778 * 1000;
733 voltage
= 2932 * 1000;
736 voltage
= 3241 * 1000;
739 voltage
= (2161000 + (38600 * (index
- 1)));
748 twl6030smps_set_voltage(struct regulator_dev
*rdev
, int min_uV
, int max_uV
,
749 unsigned int *selector
)
751 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
754 switch (info
->flags
) {
758 else if ((min_uV
>= 600000) && (max_uV
<= 1300000)) {
759 vsel
= (min_uV
- 600000) / 125;
765 /* Values 1..57 for vsel are linear and can be calculated
766 * values 58..62 are non linear.
768 else if ((min_uV
> 1900000) && (max_uV
>= 2100000))
770 else if ((min_uV
> 1800000) && (max_uV
>= 1900000))
772 else if ((min_uV
> 1500000) && (max_uV
>= 1800000))
774 else if ((min_uV
> 1350000) && (max_uV
>= 1500000))
776 else if ((min_uV
> 1300000) && (max_uV
>= 1350000))
784 else if ((min_uV
>= 700000) && (max_uV
<= 1420000)) {
785 vsel
= (min_uV
- 700000) / 125;
791 /* Values 1..57 for vsel are linear and can be calculated
792 * values 58..62 are non linear.
794 else if ((min_uV
> 1900000) && (max_uV
>= 2100000))
796 else if ((min_uV
> 1800000) && (max_uV
>= 1900000))
798 else if ((min_uV
> 1350000) && (max_uV
>= 1800000))
800 else if ((min_uV
> 1350000) && (max_uV
>= 1500000))
802 else if ((min_uV
> 1300000) && (max_uV
>= 1350000))
807 case SMPS_EXTENDED_EN
:
810 else if ((min_uV
>= 1852000) && (max_uV
<= 4013600)) {
811 vsel
= (min_uV
- 1852000) / 386;
818 case SMPS_OFFSET_EN
|SMPS_EXTENDED_EN
:
821 else if ((min_uV
>= 2161000) && (max_uV
<= 4321000)) {
822 vsel
= (min_uV
- 1852000) / 386;
833 return twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_VOLTAGE_SMPS
,
837 static int twl6030smps_get_voltage_sel(struct regulator_dev
*rdev
)
839 struct twlreg_info
*info
= rdev_get_drvdata(rdev
);
841 return twlreg_read(info
, TWL_MODULE_PM_RECEIVER
, VREG_VOLTAGE_SMPS
);
844 static struct regulator_ops twlsmps_ops
= {
845 .list_voltage
= twl6030smps_list_voltage
,
847 .set_voltage
= twl6030smps_set_voltage
,
848 .get_voltage_sel
= twl6030smps_get_voltage_sel
,
850 .enable
= twl6030reg_enable
,
851 .disable
= twl6030reg_disable
,
852 .is_enabled
= twl6030reg_is_enabled
,
854 .set_mode
= twl6030reg_set_mode
,
856 .get_status
= twl6030reg_get_status
,
859 /*----------------------------------------------------------------------*/
861 #define TWL4030_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
863 TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, \
864 remap_conf, TWL4030, twl4030fixed_ops)
865 #define TWL6030_FIXED_LDO(label, offset, mVolts, turnon_delay) \
866 TWL_FIXED_LDO(label, offset, mVolts, 0x0, turnon_delay, \
867 0x0, TWL6030, twl6030fixed_ops)
869 #define TWL4030_ADJUSTABLE_LDO(label, offset, num, turnon_delay, remap_conf) { \
872 .table_len = ARRAY_SIZE(label##_VSEL_table), \
873 .table = label##_VSEL_table, \
874 .delay = turnon_delay, \
875 .remap = remap_conf, \
878 .id = TWL4030_REG_##label, \
879 .n_voltages = ARRAY_SIZE(label##_VSEL_table), \
880 .ops = &twl4030ldo_ops, \
881 .type = REGULATOR_VOLTAGE, \
882 .owner = THIS_MODULE, \
886 #define TWL4030_ADJUSTABLE_SMPS(label, offset, num, turnon_delay, remap_conf) \
890 .delay = turnon_delay, \
891 .remap = remap_conf, \
894 .id = TWL4030_REG_##label, \
895 .ops = &twl4030smps_ops, \
896 .type = REGULATOR_VOLTAGE, \
897 .owner = THIS_MODULE, \
901 #define TWL6030_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) { \
903 .min_mV = min_mVolts, \
904 .max_mV = max_mVolts, \
907 .id = TWL6030_REG_##label, \
908 .n_voltages = (max_mVolts - min_mVolts)/100 + 1, \
909 .ops = &twl6030ldo_ops, \
910 .type = REGULATOR_VOLTAGE, \
911 .owner = THIS_MODULE, \
915 #define TWL6025_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) { \
917 .min_mV = min_mVolts, \
918 .max_mV = max_mVolts, \
921 .id = TWL6025_REG_##label, \
922 .n_voltages = ((max_mVolts - min_mVolts)/100) + 1, \
923 .ops = &twl6030ldo_ops, \
924 .type = REGULATOR_VOLTAGE, \
925 .owner = THIS_MODULE, \
929 #define TWL_FIXED_LDO(label, offset, mVolts, num, turnon_delay, remap_conf, \
930 family, operations) { \
934 .delay = turnon_delay, \
935 .remap = remap_conf, \
938 .id = family##_REG_##label, \
940 .ops = &operations, \
941 .type = REGULATOR_VOLTAGE, \
942 .owner = THIS_MODULE, \
946 #define TWL6030_FIXED_RESOURCE(label, offset, turnon_delay) { \
948 .delay = turnon_delay, \
951 .id = TWL6030_REG_##label, \
952 .ops = &twl6030_fixed_resource, \
953 .type = REGULATOR_VOLTAGE, \
954 .owner = THIS_MODULE, \
958 #define TWL6025_ADJUSTABLE_SMPS(label, offset) { \
964 .id = TWL6025_REG_##label, \
966 .ops = &twlsmps_ops, \
967 .type = REGULATOR_VOLTAGE, \
968 .owner = THIS_MODULE, \
973 * We list regulators here if systems need some level of
974 * software control over them after boot.
976 static struct twlreg_info twl_regs
[] = {
977 TWL4030_ADJUSTABLE_LDO(VAUX1
, 0x17, 1, 100, 0x08),
978 TWL4030_ADJUSTABLE_LDO(VAUX2_4030
, 0x1b, 2, 100, 0x08),
979 TWL4030_ADJUSTABLE_LDO(VAUX2
, 0x1b, 2, 100, 0x08),
980 TWL4030_ADJUSTABLE_LDO(VAUX3
, 0x1f, 3, 100, 0x08),
981 TWL4030_ADJUSTABLE_LDO(VAUX4
, 0x23, 4, 100, 0x08),
982 TWL4030_ADJUSTABLE_LDO(VMMC1
, 0x27, 5, 100, 0x08),
983 TWL4030_ADJUSTABLE_LDO(VMMC2
, 0x2b, 6, 100, 0x08),
984 TWL4030_ADJUSTABLE_LDO(VPLL1
, 0x2f, 7, 100, 0x00),
985 TWL4030_ADJUSTABLE_LDO(VPLL2
, 0x33, 8, 100, 0x08),
986 TWL4030_ADJUSTABLE_LDO(VSIM
, 0x37, 9, 100, 0x00),
987 TWL4030_ADJUSTABLE_LDO(VDAC
, 0x3b, 10, 100, 0x08),
988 TWL4030_FIXED_LDO(VINTANA1
, 0x3f, 1500, 11, 100, 0x08),
989 TWL4030_ADJUSTABLE_LDO(VINTANA2
, 0x43, 12, 100, 0x08),
990 TWL4030_FIXED_LDO(VINTDIG
, 0x47, 1500, 13, 100, 0x08),
991 TWL4030_ADJUSTABLE_LDO(VIO
, 0x4b, 14, 1000, 0x08),
992 TWL4030_ADJUSTABLE_SMPS(VDD1
, 0x55, 15, 1000, 0x08),
993 TWL4030_ADJUSTABLE_SMPS(VDD2
, 0x63, 16, 1000, 0x08),
994 TWL4030_FIXED_LDO(VUSB1V5
, 0x71, 1500, 17, 100, 0x08),
995 TWL4030_FIXED_LDO(VUSB1V8
, 0x74, 1800, 18, 100, 0x08),
996 TWL4030_FIXED_LDO(VUSB3V1
, 0x77, 3100, 19, 150, 0x08),
997 /* VUSBCP is managed *only* by the USB subchip */
999 /* 6030 REG with base as PMC Slave Misc : 0x0030 */
1000 /* Turnon-delay and remap configuration values for 6030 are not
1001 verified since the specification is not public */
1002 TWL6030_ADJUSTABLE_LDO(VAUX1_6030
, 0x54, 1000, 3300),
1003 TWL6030_ADJUSTABLE_LDO(VAUX2_6030
, 0x58, 1000, 3300),
1004 TWL6030_ADJUSTABLE_LDO(VAUX3_6030
, 0x5c, 1000, 3300),
1005 TWL6030_ADJUSTABLE_LDO(VMMC
, 0x68, 1000, 3300),
1006 TWL6030_ADJUSTABLE_LDO(VPP
, 0x6c, 1000, 3300),
1007 TWL6030_ADJUSTABLE_LDO(VUSIM
, 0x74, 1000, 3300),
1008 TWL6030_FIXED_LDO(VANA
, 0x50, 2100, 0),
1009 TWL6030_FIXED_LDO(VCXIO
, 0x60, 1800, 0),
1010 TWL6030_FIXED_LDO(VDAC
, 0x64, 1800, 0),
1011 TWL6030_FIXED_LDO(VUSB
, 0x70, 3300, 0),
1012 TWL6030_FIXED_RESOURCE(CLK32KG
, 0x8C, 0),
1014 /* 6025 are renamed compared to 6030 versions */
1015 TWL6025_ADJUSTABLE_LDO(LDO2
, 0x54, 1000, 3300),
1016 TWL6025_ADJUSTABLE_LDO(LDO4
, 0x58, 1000, 3300),
1017 TWL6025_ADJUSTABLE_LDO(LDO3
, 0x5c, 1000, 3300),
1018 TWL6025_ADJUSTABLE_LDO(LDO5
, 0x68, 1000, 3300),
1019 TWL6025_ADJUSTABLE_LDO(LDO1
, 0x6c, 1000, 3300),
1020 TWL6025_ADJUSTABLE_LDO(LDO7
, 0x74, 1000, 3300),
1021 TWL6025_ADJUSTABLE_LDO(LDO6
, 0x60, 1000, 3300),
1022 TWL6025_ADJUSTABLE_LDO(LDOLN
, 0x64, 1000, 3300),
1023 TWL6025_ADJUSTABLE_LDO(LDOUSB
, 0x70, 1000, 3300),
1025 TWL6025_ADJUSTABLE_SMPS(SMPS3
, 0x34),
1026 TWL6025_ADJUSTABLE_SMPS(SMPS4
, 0x10),
1027 TWL6025_ADJUSTABLE_SMPS(VIO
, 0x16),
1030 static u8
twl_get_smps_offset(void)
1034 twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER
, &value
,
1035 TWL6030_SMPS_OFFSET
);
1039 static u8
twl_get_smps_mult(void)
1043 twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER
, &value
,
1048 static int __devinit
twlreg_probe(struct platform_device
*pdev
)
1051 struct twlreg_info
*info
;
1052 struct regulator_init_data
*initdata
;
1053 struct regulation_constraints
*c
;
1054 struct regulator_dev
*rdev
;
1056 for (i
= 0, info
= NULL
; i
< ARRAY_SIZE(twl_regs
); i
++) {
1057 if (twl_regs
[i
].desc
.id
!= pdev
->id
)
1059 info
= twl_regs
+ i
;
1065 initdata
= pdev
->dev
.platform_data
;
1069 /* copy the features into regulator data */
1070 info
->features
= (unsigned long)initdata
->driver_data
;
1072 /* Constrain board-specific capabilities according to what
1073 * this driver and the chip itself can actually do.
1075 c
= &initdata
->constraints
;
1076 c
->valid_modes_mask
&= REGULATOR_MODE_NORMAL
| REGULATOR_MODE_STANDBY
;
1077 c
->valid_ops_mask
&= REGULATOR_CHANGE_VOLTAGE
1078 | REGULATOR_CHANGE_MODE
1079 | REGULATOR_CHANGE_STATUS
;
1081 case TWL4030_REG_VIO
:
1082 case TWL4030_REG_VDD1
:
1083 case TWL4030_REG_VDD2
:
1084 case TWL4030_REG_VPLL1
:
1085 case TWL4030_REG_VINTANA1
:
1086 case TWL4030_REG_VINTANA2
:
1087 case TWL4030_REG_VINTDIG
:
1088 c
->always_on
= true;
1095 case TWL6025_REG_SMPS3
:
1096 if (twl_get_smps_mult() & SMPS_MULTOFFSET_SMPS3
)
1097 info
->flags
|= SMPS_EXTENDED_EN
;
1098 if (twl_get_smps_offset() & SMPS_MULTOFFSET_SMPS3
)
1099 info
->flags
|= SMPS_OFFSET_EN
;
1101 case TWL6025_REG_SMPS4
:
1102 if (twl_get_smps_mult() & SMPS_MULTOFFSET_SMPS4
)
1103 info
->flags
|= SMPS_EXTENDED_EN
;
1104 if (twl_get_smps_offset() & SMPS_MULTOFFSET_SMPS4
)
1105 info
->flags
|= SMPS_OFFSET_EN
;
1107 case TWL6025_REG_VIO
:
1108 if (twl_get_smps_mult() & SMPS_MULTOFFSET_VIO
)
1109 info
->flags
|= SMPS_EXTENDED_EN
;
1110 if (twl_get_smps_offset() & SMPS_MULTOFFSET_VIO
)
1111 info
->flags
|= SMPS_OFFSET_EN
;
1115 rdev
= regulator_register(&info
->desc
, &pdev
->dev
, initdata
, info
, NULL
);
1117 dev_err(&pdev
->dev
, "can't register %s, %ld\n",
1118 info
->desc
.name
, PTR_ERR(rdev
));
1119 return PTR_ERR(rdev
);
1121 platform_set_drvdata(pdev
, rdev
);
1123 if (twl_class_is_4030())
1124 twlreg_write(info
, TWL_MODULE_PM_RECEIVER
, VREG_REMAP
,
1127 /* NOTE: many regulators support short-circuit IRQs (presentable
1128 * as REGULATOR_OVER_CURRENT notifications?) configured via:
1130 * - SC_DETECT1 (vintana2, vmmc1/2, vaux1/2/3/4)
1131 * - SC_DETECT2 (vusb, vdac, vio, vdd1/2, vpll2)
1138 static int __devexit
twlreg_remove(struct platform_device
*pdev
)
1140 regulator_unregister(platform_get_drvdata(pdev
));
1144 MODULE_ALIAS("platform:twl_reg");
1146 static struct platform_driver twlreg_driver
= {
1147 .probe
= twlreg_probe
,
1148 .remove
= __devexit_p(twlreg_remove
),
1149 /* NOTE: short name, to work around driver model truncation of
1150 * "twl_regulator.12" (and friends) to "twl_regulator.1".
1152 .driver
.name
= "twl_reg",
1153 .driver
.owner
= THIS_MODULE
,
1156 static int __init
twlreg_init(void)
1158 return platform_driver_register(&twlreg_driver
);
1160 subsys_initcall(twlreg_init
);
1162 static void __exit
twlreg_exit(void)
1164 platform_driver_unregister(&twlreg_driver
);
1166 module_exit(twlreg_exit
)
1168 MODULE_DESCRIPTION("TWL regulator driver");
1169 MODULE_LICENSE("GPL");