Commit 4f41525b authored by Stefan Agner's avatar Stefan Agner Committed by Shawn Guo

ARM: dts: vf-colibri: remove regulator container node

Drop the fake simple-bus container 'regulators' and put the
regulators directly under the root node. This also makes the
artificial 'reg' properties superfluous. While at it, remove
the unnecessary regulator-always-on property and name the
regulators according to schematics.
Signed-off-by: default avatarStefan Agner <stefan@agner.ch>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 5c35b778
...@@ -50,32 +50,22 @@ clk16m: clk16m { ...@@ -50,32 +50,22 @@ clk16m: clk16m {
clock-frequency = <16000000>; clock-frequency = <16000000>;
}; };
regulators { reg_5v0: regulator-5v0 {
compatible = "simple-bus"; compatible = "regulator-fixed";
#address-cells = <1>; regulator-name = "5V";
#size-cells = <0>; regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
sys_5v0_reg: regulator@0 { };
compatible = "regulator-fixed";
reg = <0>;
regulator-name = "5v0";
regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
regulator-always-on;
};
/* USBH_PEN */ reg_usbh_vbus: regulator-usbh-vbus {
usbh_vbus_reg: regulator@1 { compatible = "regulator-fixed";
compatible = "regulator-fixed"; pinctrl-names = "default";
pinctrl-names = "default"; pinctrl-0 = <&pinctrl_usbh1_reg>;
pinctrl-0 = <&pinctrl_usbh1_reg>; regulator-name = "VCC_USB[1-4]";
reg = <1>; regulator-min-microvolt = <5000000>;
regulator-name = "usbh_vbus"; regulator-max-microvolt = <5000000>;
regulator-min-microvolt = <5000000>; gpio = <&gpio2 19 GPIO_ACTIVE_LOW>; /* USBH_PEN resp. USBH_P_EN */
regulator-max-microvolt = <5000000>; vin-supply = <&reg_5v0>;
gpio = <&gpio2 19 GPIO_ACTIVE_LOW>;
vin-supply = <&sys_5v0_reg>;
};
}; };
}; };
...@@ -145,7 +135,7 @@ &uart2 { ...@@ -145,7 +135,7 @@ &uart2 {
}; };
&usbh1 { &usbh1 {
vbus-supply = <&usbh_vbus_reg>; vbus-supply = <&reg_usbh_vbus>;
}; };
&iomuxc { &iomuxc {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment