Skip to content

Commit 944520f

Browse files
pcercueitsbogend
authored andcommitted
MIPS: DTS: CI20: Raise VDDCORE voltage to 1.125 volts
Commit 08384e8 ("MIPS: DTS: CI20: Fix ACT8600 regulator node names") caused the VDDCORE power supply (regulated by the ACT8600's DCDC1 output) to drop from a voltage of 1.2V configured by the bootloader, to the 1.1V set in the Device Tree. According to the documentation, the VDDCORE supply should be between 0.99V and 1.21V; both values are therefore within the supported range. However, VDDCORE being 1.1V results in the CI20 being very unstable, with corrupted memory, failures to boot, or reboots at random. The reason might be succint drops of the voltage below the minimum required. Raising the minimum voltage to 1.125 volts seems to be enough to address this issue, while still keeping a relatively low core voltage which helps for power consumption and thermals. Fixes: 08384e8 ("MIPS: DTS: CI20: Fix ACT8600 regulator node names") Signed-off-by: Paul Cercueil <[email protected]> Signed-off-by: Thomas Bogendoerfer <[email protected]>
1 parent 6e68dae commit 944520f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/mips/boot/dts/ingenic/ci20.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,8 @@
298298

299299
regulators {
300300
vddcore: DCDC1 {
301-
regulator-min-microvolt = <1100000>;
302-
regulator-max-microvolt = <1100000>;
301+
regulator-min-microvolt = <1125000>;
302+
regulator-max-microvolt = <1125000>;
303303
vp1-supply = <&vcc_33v>;
304304
regulator-always-on;
305305
};

0 commit comments

Comments
 (0)