@@ -34,10 +34,10 @@ vcc_5v0: regulator-1 {
regulator-boot-on;
};
- vcc_3v3_sys: regulator-2 {
+ vcc_3v3_main: regulator-2 {
/* output of LM61460-Q1 */
compatible = "regulator-fixed";
- regulator-name = "vcc_3v3_sys";
+ regulator-name = "vcc_3v3_main";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
vin-supply = <&vmain_pd>;
@@ -70,6 +70,16 @@ vddshv_sdio: regulator-4 {
states = <1800000 0x0>,
<3300000 0x1>;
};
+
+ vcc_3v3_sys: regulator-5 {
+ compatible = "regulator-fixed";
+ regulator-name = "vcc_3v3_sys";
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+ vin-supply = <&vcc_3v3_main>;
+ regulator-always-on;
+ regulator-boot-on;
+ };
};
&main_pmx0 {
vcc_3v3_main is currently modeled slightly wrong. vcc_3v3_main has a parent called vcc_3v3_sys which is currently not present. Add the regulator for vcc_3v3_sys to be able to describe other regulators in the next patch. Fixes: e6a51ffabfc1 ("arm64: ti: dts: Add support for AM62x LP SK") Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com> --- arch/arm64/boot/dts/ti/k3-am62-lp-sk.dts | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-)