summaryrefslogtreecommitdiff
path: root/board/freescale
diff options
context:
space:
mode:
authorBai Ping <b51503@freescale.com>2015-07-22 00:14:34 +0800
committerMax Krummenacher <max.krummenacher@toradex.com>2016-03-09 14:42:43 +0100
commite5760e4e40b403268cf6a209618fe8ef63e53872 (patch)
treeb3b761bd3274d17bb655ae15b0ad5b29f9f04d7c /board/freescale
parentb7da43ea2000a4fa8803651589332ea26f928d8c (diff)
MLK-11270 ARM: imx: correct the pmic standby voltage of sw1ab on i.mx6ul
The SW1AB on PMIC is used for ARM_SOC_IN supply, set the standby voltage to 0.975V to save power when system is in DSM mode. Signed-off-by: Bai Ping <b51503@freescale.com>
Diffstat (limited to 'board/freescale')
-rw-r--r--board/freescale/mx6ul_14x14_ddr3_arm2/mx6ul_14x14_ddr3_arm2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/mx6ul_14x14_ddr3_arm2/mx6ul_14x14_ddr3_arm2.c b/board/freescale/mx6ul_14x14_ddr3_arm2/mx6ul_14x14_ddr3_arm2.c
index bb78c7bb936..46e7cd1b1e7 100644
--- a/board/freescale/mx6ul_14x14_ddr3_arm2/mx6ul_14x14_ddr3_arm2.c
+++ b/board/freescale/mx6ul_14x14_ddr3_arm2/mx6ul_14x14_ddr3_arm2.c
@@ -825,10 +825,10 @@ int power_init_board(void)
* them, when needed, configure them to our requested voltage.
*/
- /* set SW1AB standby volatage 1.3V */
+ /* set SW1AB standby volatage 0.975V */
pmic_reg_read(pfuze, PFUZE100_SW1ABSTBY, &value);
value &= ~0x3f;
- value |= PFUZE100_SW1ABC_SETP(13000);
+ value |= PFUZE100_SW1ABC_SETP(9750);
pmic_reg_write(pfuze, PFUZE100_SW1ABSTBY, value);
/* set SW1AB/VDDARM step ramp up time from 16us to 4us/25mV */