summaryrefslogtreecommitdiff
path: root/board/fizz/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/fizz/board.c')
-rw-r--r--board/fizz/board.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/board/fizz/board.c b/board/fizz/board.c
index 15d550d680..3682d8e89e 100644
--- a/board/fizz/board.c
+++ b/board/fizz/board.c
@@ -423,6 +423,15 @@ static void board_pmic_init(void)
if (err)
goto pmic_error;
+ /*
+ * V3.3A_DSW (VR3) control. Default: 0x2A.
+ * [7:6] : 00b Disabled
+ * [5:4] : 00b Vnom + 3%. (default: 10b 0%)
+ */
+ err = I2C_PMIC_WRITE(TPS650X30_REG_V33ADSWCNT, 0x0A);
+ if (err)
+ goto pmic_error;
+
CPRINTS("PMIC init done");
pmic_initialized = 1;
return;