mirror of https://gitee.com/openkylin/linux.git
ARM: dts: imx7-colibri: fix PMIC voltages
Fix wrong voltage of PWR_EN_+V3.3 rail. The error had no noticeable effect since no consumer explicitly requested a specific voltage. Also use round voltages as it is common in other device trees. Signed-off-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
parent
a027d49fc1
commit
55dfc902b8
|
@ -151,29 +151,29 @@ pmic@33 {
|
|||
|
||||
regulators {
|
||||
reg_DCDC1: DCDC1 { /* V1.0_SOC */
|
||||
regulator-min-microvolt = <975000>;
|
||||
regulator-max-microvolt = <1125000>;
|
||||
regulator-min-microvolt = <1000000>;
|
||||
regulator-max-microvolt = <1100000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
reg_DCDC2: DCDC2 { /* V1.1_ARM */
|
||||
regulator-min-microvolt = <975000>;
|
||||
regulator-max-microvolt = <1125000>;
|
||||
regulator-min-microvolt = <975000>;
|
||||
regulator-max-microvolt = <1100000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
reg_DCDC3: DCDC3 { /* V1.8 */
|
||||
regulator-min-microvolt = <1775000>;
|
||||
regulator-max-microvolt = <1825000>;
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
reg_DCDC4: DCDC4 { /* V1.35_DRAM */
|
||||
regulator-min-microvolt = <1325000>;
|
||||
regulator-max-microvolt = <1375000>;
|
||||
regulator-min-microvolt = <1350000>;
|
||||
regulator-max-microvolt = <1350000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
@ -185,29 +185,29 @@ reg_LDO1: LDO1 { /* PWR_EN_+V3.3_ETH */
|
|||
};
|
||||
|
||||
reg_LDO2: LDO2 { /* +V1.8_SD */
|
||||
regulator-min-microvolt = <1775000>;
|
||||
regulator-max-microvolt = <3325000>;
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
reg_LDO3: LDO3 { /* PWR_EN_+V3.3_LPSR */
|
||||
regulator-min-microvolt = <3275000>;
|
||||
regulator-max-microvolt = <3325000>;
|
||||
regulator-min-microvolt = <3300000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
reg_LDO4: LDO4 { /* V1.8_LPSR */
|
||||
regulator-min-microvolt = <1775000>;
|
||||
regulator-max-microvolt = <1825000>;
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
||||
reg_LDO5: LDO5 { /* PWR_EN_+V3.3 */
|
||||
regulator-min-microvolt = <1775000>;
|
||||
regulator-max-microvolt = <1825000>;
|
||||
regulator-min-microvolt = <3300000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
regulator-boot-on;
|
||||
regulator-always-on;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue