Skip to content

Commit 4fd6b57

Browse files
Robin GongShawn Guo
authored andcommitted
arm64: dts: imx8mm-evk: correct ldo1/ldo2 voltage range
Correct ldo1 voltage range from wrong high group(3.0V~3.3V) to low group (1.6V~1.9V) because the ldo1 should be 1.8V. Actually, two voltage groups have been supported at bd718x7-regulator driver, hence, just corrrect the voltage range to 1.6V~3.3V. For [email protected], correct voltage range too. Otherwise, ldo1 would be kept @3.0V and [email protected] which violate i.mx8mm datasheet as the below warning log in kernel: [ 0.995524] LDO1: Bringing 1800000uV into 3000000-3000000uV [ 0.999196] LDO2: Bringing 800000uV into 900000-900000uV Fixes: 78cc25f ("arm64: dts: imx8mm-evk: Add BD71847 PMIC") Cc: [email protected] Signed-off-by: Robin Gong <[email protected]> Reviewed-by: Dong Aisheng <[email protected]> Reviewed-by: Fabio Estevam <[email protected]> Signed-off-by: Shawn Guo <[email protected]>
1 parent b3a9e3b commit 4fd6b57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm64/boot/dts/freescale/imx8mm-evk.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,15 +208,15 @@
208208

209209
ldo1_reg: LDO1 {
210210
regulator-name = "LDO1";
211-
regulator-min-microvolt = <3000000>;
211+
regulator-min-microvolt = <1600000>;
212212
regulator-max-microvolt = <3300000>;
213213
regulator-boot-on;
214214
regulator-always-on;
215215
};
216216

217217
ldo2_reg: LDO2 {
218218
regulator-name = "LDO2";
219-
regulator-min-microvolt = <900000>;
219+
regulator-min-microvolt = <800000>;
220220
regulator-max-microvolt = <900000>;
221221
regulator-boot-on;
222222
regulator-always-on;

0 commit comments

Comments
 (0)