summaryrefslogtreecommitdiff
path: root/board/rammus/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/rammus/board.c')
-rw-r--r--board/rammus/board.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/board/rammus/board.c b/board/rammus/board.c
index 365ab60bc6..2f88f6c293 100644
--- a/board/rammus/board.c
+++ b/board/rammus/board.c
@@ -407,8 +407,15 @@ static void board_pmic_init(void)
if (system_jumped_to_this_image())
return;
- /* DISCHGCNT3 - enable 100 ohm discharge on V1.00A */
- i2c_write8(I2C_PORT_PMIC, I2C_ADDR_BD99992, 0x3e, 0x04);
+ /*
+ * DISCHGCNT2 - enable 100 ohm discharge on
+ * V5A_DS3/V33A_DSW/V33A_PCH/V1.8A
+ */
+ i2c_write8(I2C_PORT_PMIC, I2C_ADDR_BD99992, 0x3d, 0x55);
+ /* DISCHGCNT3 - enable 100 ohm discharge on V1.8U_25U/V1.00A */
+ i2c_write8(I2C_PORT_PMIC, I2C_ADDR_BD99992, 0x3e, 0x44);
+ /* DISCHGCNT4 - enable 100 ohm discharge on v1.8S */
+ i2c_write8(I2C_PORT_PMIC, I2C_ADDR_BD99992, 0x3f, 0x04);
board_pmic_disable_slp_s0_vr_decay();