Skip to content

Commit 82a4f32

Browse files
fschrempfShawn Guo
authored andcommitted
arm64: dts: imx8mm-kontron: Make sure SOC and DRAM supply voltages are correct
It looks like the voltages for the SOC and DRAM supply weren't properly validated before. The datasheet and uboot-imx code tells us that VDD_SOC should be 800 mV in suspend and 850 mV in run mode. VDD_DRAM should be 950 mV for DDR clock frequencies of up to 1.5 GHz. Let's fix these values to make sure the voltages are within the required range. Fixes: 8668d8b ("arm64: dts: Add the Kontron i.MX8M Mini SoMs and baseboards") Cc: [email protected] Signed-off-by: Frieder Schrempf <[email protected]> Signed-off-by: Shawn Guo <[email protected]>
1 parent a1467fa commit 82a4f32

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

arch/arm64/boot/dts/freescale/imx8mm-kontron-n801x-som.dtsi

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,12 @@
9191
reg_vdd_soc: BUCK1 {
9292
regulator-name = "buck1";
9393
regulator-min-microvolt = <800000>;
94-
regulator-max-microvolt = <900000>;
94+
regulator-max-microvolt = <850000>;
9595
regulator-boot-on;
9696
regulator-always-on;
9797
regulator-ramp-delay = <3125>;
98+
nxp,dvs-run-voltage = <850000>;
99+
nxp,dvs-standby-voltage = <800000>;
98100
};
99101

100102
reg_vdd_arm: BUCK2 {
@@ -111,7 +113,7 @@
111113
reg_vdd_dram: BUCK3 {
112114
regulator-name = "buck3";
113115
regulator-min-microvolt = <850000>;
114-
regulator-max-microvolt = <900000>;
116+
regulator-max-microvolt = <950000>;
115117
regulator-boot-on;
116118
regulator-always-on;
117119
};

0 commit comments

Comments
 (0)