summaryrefslogtreecommitdiff
path: root/board/lars/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/lars/board.c')
-rw-r--r--board/lars/board.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/board/lars/board.c b/board/lars/board.c
index c747ae4d73..0bad201b47 100644
--- a/board/lars/board.c
+++ b/board/lars/board.c
@@ -403,6 +403,16 @@ static void board_pmic_init(void)
if (ret)
goto pmic_error;
+ /*
+ * Increase Voltage
+ * [7:0] : 0x2a default
+ * [5:4] : 10b default
+ * [5:4] : 01b 5.1V (0x1a)
+ */
+ ret = I2C_PMIC_WRITE(TPS650830_REG_V5ADS3CNT, 0x1a);
+ if (ret)
+ goto pmic_error;
+
CPRINTS("PMIC initialization done");
return;