summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShardar Shariff Md <smohammed@nvidia.com>2013-05-13 14:43:05 +0530
committerMandar Padmawar <mpadmawar@nvidia.com>2013-05-16 03:25:40 -0700
commitd11a1818d315ab7090d93dd24771236e7325ad07 (patch)
treed37d61f79ead300af43115db090b4248b8459204
parentfe7c0f0261b7f5e1cee7ee4e24265d065117828e (diff)
arm: roth: Add regulator for fuse
Add vpp_fuse entry into ldo4 of palmas Bug 1286520 Change-Id: I2caad9d715f1ea8fc40335c93dc36f8c7107289b Signed-off-by: Shardar Shariff Md <smohammed@nvidia.com> Reviewed-on: http://git-master/r/227900 Reviewed-by: Venu Byravarasu <vbyravarasu@nvidia.com>
-rw-r--r--arch/arm/mach-tegra/board-roth-power.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/board-roth-power.c b/arch/arm/mach-tegra/board-roth-power.c
index 593ad286edff..95186fa69967 100644
--- a/arch/arm/mach-tegra/board-roth-power.c
+++ b/arch/arm/mach-tegra/board-roth-power.c
@@ -277,6 +277,10 @@ static struct regulator_consumer_supply palmas_ldo3_supply[] = {
REGULATOR_SUPPLY("pwrdet_mipi", NULL),
};
+static struct regulator_consumer_supply palmas_ldo4_supply[] = {
+ REGULATOR_SUPPLY("vpp_fuse", NULL),
+};
+
static struct regulator_consumer_supply palmas_ldo5_supply[] = {
REGULATOR_SUPPLY("avdd_hdmi_pll", "tegradc.1"),
};
@@ -328,6 +332,7 @@ PALMAS_PDATA_INIT(smps9, 2800, 2800, NULL, 0, 0, 0, NORMAL, 0);
PALMAS_PDATA_INIT(smps10, 5000, 5000, NULL, 0, 0, 0, 0, 0);
PALMAS_PDATA_INIT(ldo2, 2800, 2800, NULL, 0, 0, 1, 0, 0);
PALMAS_PDATA_INIT(ldo3, 1200, 1200, NULL, 1, 1, 1, 0, 0);
+PALMAS_PDATA_INIT(ldo4, 1800, 1800, NULL, 0, 0, 1, 0, 0);
PALMAS_PDATA_INIT(ldo5, 1200, 1200, NULL, 0, 0, 1, 0, 0);
PALMAS_PDATA_INIT(ldo6, 2850, 2850, NULL, 0, 0, 1, 0, 0);
PALMAS_PDATA_INIT(ldo8, 900, 900, NULL, 1, 1, 1, 0, 0);
@@ -351,7 +356,7 @@ static struct regulator_init_data *roth_reg_data[PALMAS_NUM_REGS] = {
NULL, /* LDO1 */
PALMAS_REG_PDATA(ldo2),
PALMAS_REG_PDATA(ldo3),
- NULL,
+ PALMAS_REG_PDATA(ldo4),
NULL,
PALMAS_REG_PDATA(ldo6),
NULL,