Commit 9b8306c6 authored by Marek Szyprowski's avatar Marek Szyprowski Committed by Kukjin Kim

ARM: S5PV210: Disable unused power regulators on GONI board

A lot of power regulator has been enabled by default causing the board
to consume a lot of power. This patch fixes this issue.
Signed-off-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent c472da6d
...@@ -306,7 +306,6 @@ static struct regulator_init_data goni_ldo3_data = { ...@@ -306,7 +306,6 @@ static struct regulator_init_data goni_ldo3_data = {
.min_uV = 1100000, .min_uV = 1100000,
.max_uV = 1100000, .max_uV = 1100000,
.apply_uV = 1, .apply_uV = 1,
.always_on = 1,
}, },
}; };
...@@ -325,6 +324,7 @@ static struct regulator_init_data goni_ldo5_data = { ...@@ -325,6 +324,7 @@ static struct regulator_init_data goni_ldo5_data = {
.min_uV = 2800000, .min_uV = 2800000,
.max_uV = 2800000, .max_uV = 2800000,
.apply_uV = 1, .apply_uV = 1,
.valid_ops_mask = REGULATOR_CHANGE_STATUS,
}, },
.num_consumer_supplies = ARRAY_SIZE(goni_ldo5_consumers), .num_consumer_supplies = ARRAY_SIZE(goni_ldo5_consumers),
.consumer_supplies = goni_ldo5_consumers, .consumer_supplies = goni_ldo5_consumers,
...@@ -355,7 +355,6 @@ static struct regulator_init_data goni_ldo8_data = { ...@@ -355,7 +355,6 @@ static struct regulator_init_data goni_ldo8_data = {
.min_uV = 3300000, .min_uV = 3300000,
.max_uV = 3300000, .max_uV = 3300000,
.apply_uV = 1, .apply_uV = 1,
.always_on = 1,
}, },
}; };
...@@ -365,7 +364,6 @@ static struct regulator_init_data goni_ldo9_data = { ...@@ -365,7 +364,6 @@ static struct regulator_init_data goni_ldo9_data = {
.min_uV = 2800000, .min_uV = 2800000,
.max_uV = 2800000, .max_uV = 2800000,
.apply_uV = 1, .apply_uV = 1,
.always_on = 1,
}, },
}; };
...@@ -397,7 +395,6 @@ static struct regulator_init_data goni_ldo12_data = { ...@@ -397,7 +395,6 @@ static struct regulator_init_data goni_ldo12_data = {
.min_uV = 1200000, .min_uV = 1200000,
.max_uV = 1200000, .max_uV = 1200000,
.apply_uV = 1, .apply_uV = 1,
.always_on = 1,
}, },
}; };
...@@ -431,7 +428,6 @@ static struct regulator_init_data goni_ldo15_data = { ...@@ -431,7 +428,6 @@ static struct regulator_init_data goni_ldo15_data = {
.min_uV = 3300000, .min_uV = 3300000,
.max_uV = 3300000, .max_uV = 3300000,
.apply_uV = 1, .apply_uV = 1,
.always_on = 1,
}, },
}; };
...@@ -441,7 +437,6 @@ static struct regulator_init_data goni_ldo16_data = { ...@@ -441,7 +437,6 @@ static struct regulator_init_data goni_ldo16_data = {
.min_uV = 1800000, .min_uV = 1800000,
.max_uV = 1800000, .max_uV = 1800000,
.apply_uV = 1, .apply_uV = 1,
.always_on = 1,
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment