From: Marek Vasut Date: Tue, 26 Nov 2019 08:39:13 +0000 (+0100) Subject: ARM: imx: vining2000: Align SOC and ARM LDO voltages X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=ed22a883859fe5d31dde9882cc97425c68b80b26;p=u-boot.git ARM: imx: vining2000: Align SOC and ARM LDO voltages The board has both VDD_SOC_IN and VDD_ARM_IN rails connected to the same PMIC rail, align the LDO voltages to avoid leaking inside the MX6SX SoC. Signed-off-by: Marek Vasut Cc: Fabio Estevam Cc: Silvio Fricke Cc: Stefano Babic --- diff --git a/board/softing/vining_2000/vining_2000.c b/board/softing/vining_2000/vining_2000.c index fe47c365a1..ef914b13a1 100644 --- a/board/softing/vining_2000/vining_2000.c +++ b/board/softing/vining_2000/vining_2000.c @@ -226,6 +226,9 @@ int power_init_board(void) if (ret < 0) return ret; + set_ldo_voltage(LDO_ARM, 1175); /* Set VDDARM to 1.175V */ + set_ldo_voltage(LDO_SOC, 1175); /* Set VDDSOC to 1.175V */ + return 0; }