diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-07 20:52:19 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-12-07 20:52:27 -0500 |
commit | 39cb263eccc974765eed1100d48ac6f0986ef257 (patch) | |
tree | 66702a1282cf6bea1381d58ba7819358b311cc0a /arch/arm/mach-s3c64xx | |
parent | 8e146f547a5d12498cbbb0190e1b70cca63c1b87 (diff) |
ARM: S3C64XX: Hook up VDDINT on Cragganmore
Basic hookup, we do have a GPIO to use to control the voltage but
we don't currently use it.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c64xx')
-rw-r--r-- | arch/arm/mach-s3c64xx/mach-crag6410.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c64xx/mach-crag6410.c b/arch/arm/mach-s3c64xx/mach-crag6410.c index b2381c1bb3ba..42d3d64947b0 100644 --- a/arch/arm/mach-s3c64xx/mach-crag6410.c +++ b/arch/arm/mach-s3c64xx/mach-crag6410.c | |||
@@ -380,6 +380,10 @@ static struct regulator_init_data vddarm __initdata = { | |||
380 | .driver_data = &vddarm_pdata, | 380 | .driver_data = &vddarm_pdata, |
381 | }; | 381 | }; |
382 | 382 | ||
383 | static struct regulator_consumer_supply vddint_consumers[] __initdata = { | ||
384 | REGULATOR_SUPPLY("vddint", NULL), | ||
385 | }; | ||
386 | |||
383 | static struct regulator_init_data vddint __initdata = { | 387 | static struct regulator_init_data vddint __initdata = { |
384 | .constraints = { | 388 | .constraints = { |
385 | .name = "VDDINT", | 389 | .name = "VDDINT", |
@@ -388,6 +392,9 @@ static struct regulator_init_data vddint __initdata = { | |||
388 | .always_on = 1, | 392 | .always_on = 1, |
389 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE, | 393 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE, |
390 | }, | 394 | }, |
395 | .num_consumer_supplies = ARRAY_SIZE(vddint_consumers), | ||
396 | .consumer_supplies = vddint_consumers, | ||
397 | .supply_regulator = "WALLVDD", | ||
391 | }; | 398 | }; |
392 | 399 | ||
393 | static struct regulator_init_data vddmem __initdata = { | 400 | static struct regulator_init_data vddmem __initdata = { |