summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorLily Zhang <r58066@freescale.com>2010-11-22 09:53:04 +0800
committerLily Zhang <r58066@freescale.com>2010-11-22 09:58:57 +0800
commitc1900dd4835efd9c99da59400c9b01da79df1afb (patch)
tree2e641731af65608945b82a6b4b3cdb682e3c93c1 /arch
parente8a1b56dd4a916a9a162b9c3373079c1d4707f61 (diff)
ENGR00133905 MX53 ARD: increase VDDGP and VCC voltages in suspend mode
It's found that MX53 ARD reset sometimes if setting VDDGP/VCC to 0.95V in suspend mode. After many experiments, it's found the system can resume well if setting VDDGP as 1.05v and VCC as 1.025V accordingly, the system can resume. HW team thought that DDR power supply U2 "enable" may turn off U2 when VCC is 0.95V. So DDR may lost power. The suggested rework is to add a NC7SP125 chip. Since MX53 ARD boards didn't conduct such kind of reworks, this patch increase suspend voltages to workaround for it before a better solution can be found. Signed-off-by: Lily Zhang <r58066@freescale.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-mx5/mx53_ard_pmic_ltc3589.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mx5/mx53_ard_pmic_ltc3589.c b/arch/arm/mach-mx5/mx53_ard_pmic_ltc3589.c
index fe3880eecde2..d1103b5405a4 100644
--- a/arch/arm/mach-mx5/mx53_ard_pmic_ltc3589.c
+++ b/arch/arm/mach-mx5/mx53_ard_pmic_ltc3589.c
@@ -54,7 +54,7 @@ static struct regulator_init_data sw1_init = {
.boot_on = 1,
.initial_state = PM_SUSPEND_MEM,
.state_mem = {
- .uV = 950000,
+ .uV = 1050000,
.mode = REGULATOR_MODE_NORMAL,
.enabled = 1,
},
@@ -73,7 +73,7 @@ static struct regulator_init_data sw2_init = {
.boot_on = 1,
.initial_state = PM_SUSPEND_MEM,
.state_mem = {
- .uV = 950000,
+ .uV = 1025000,
.mode = REGULATOR_MODE_NORMAL,
.enabled = 1,
},