diff options
author | Juha Keski-Saari <ext-juha.1.keski-saari@nokia.com> | 2009-12-16 08:27:56 -0500 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2009-12-17 05:27:28 -0500 |
commit | 205e5cd3d933a9ea7b75630355c8f8ec5ef16f6c (patch) | |
tree | 0cfe324c79e3afb39b070f93570b97c168897071 /drivers/regulator/twl-regulator.c | |
parent | 07fc493f03019b5a98de1a498ab1b235afc394db (diff) |
twl-regulator: Define critical regulators as always_on
Defines VIO, VDD1, VDD2, VPLL1 and VINT* regulators as always_on by default
since they are critical to TWL and its master's functionality and should
be on in all cases where RegFW is used
Signed-off-by: Juha Keski-Saari <ext-juha.1.keski-saari@nokia.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'drivers/regulator/twl-regulator.c')
-rw-r--r-- | drivers/regulator/twl-regulator.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/regulator/twl-regulator.c b/drivers/regulator/twl-regulator.c index 43d7494fbd8e..aadf4cfe354e 100644 --- a/drivers/regulator/twl-regulator.c +++ b/drivers/regulator/twl-regulator.c | |||
@@ -533,6 +533,19 @@ static int twlreg_probe(struct platform_device *pdev) | |||
533 | c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE | 533 | c->valid_ops_mask &= REGULATOR_CHANGE_VOLTAGE |
534 | | REGULATOR_CHANGE_MODE | 534 | | REGULATOR_CHANGE_MODE |
535 | | REGULATOR_CHANGE_STATUS; | 535 | | REGULATOR_CHANGE_STATUS; |
536 | switch (pdev->id) { | ||
537 | case TWL4030_REG_VIO: | ||
538 | case TWL4030_REG_VDD1: | ||
539 | case TWL4030_REG_VDD2: | ||
540 | case TWL4030_REG_VPLL1: | ||
541 | case TWL4030_REG_VINTANA1: | ||
542 | case TWL4030_REG_VINTANA2: | ||
543 | case TWL4030_REG_VINTDIG: | ||
544 | c->always_on = true; | ||
545 | break; | ||
546 | default: | ||
547 | break; | ||
548 | } | ||
536 | 549 | ||
537 | rdev = regulator_register(&info->desc, &pdev->dev, initdata, info); | 550 | rdev = regulator_register(&info->desc, &pdev->dev, initdata, info); |
538 | if (IS_ERR(rdev)) { | 551 | if (IS_ERR(rdev)) { |