]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ARM: dts: vf-colibri: add USB regulators
authorStefan Agner <stefan@agner.ch>
Sun, 16 Nov 2014 18:00:28 +0000 (19:00 +0100)
committerShawn Guo <shawn.guo@linaro.org>
Sun, 23 Nov 2014 07:08:15 +0000 (15:08 +0800)
Add structure of USB supply logic. The USB hosts power enable
regulator is needed to control VBUS supply on the Colibri carrier
board.

Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
arch/arm/boot/dts/vf-colibri-eval-v3.dtsi
arch/arm/boot/dts/vf-colibri.dtsi

index 20251a3ea813feb0275275d77391fc26b56b8ced..56a452bc326c2272368895883762a44a07cf8f4a 100644 (file)
@@ -11,6 +11,34 @@ / {
        chosen {
                bootargs = "console=ttyLP0,115200";
        };
+
+       regulators {
+               compatible = "simple-bus";
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               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 */
+               usbh_vbus_reg: regulator@1 {
+                       compatible = "regulator-fixed";
+                       pinctrl-names = "default";
+                       pinctrl-0 = <&pinctrl_usbh1_reg>;
+                       reg = <1>;
+                       regulator-name = "usbh_vbus";
+                       regulator-min-microvolt = <5000000>;
+                       regulator-max-microvolt = <5000000>;
+                       gpio = <&gpio3 19 GPIO_ACTIVE_LOW>;
+                       vin-supply = <&sys_5v0_reg>;
+               };
+       };
 };
 
 &bl {
@@ -62,3 +90,7 @@ &uart1 {
 &uart2 {
        status = "okay";
 };
+
+&usbh1 {
+       vbus-supply = <&usbh_vbus_reg>;
+};
index 43e7539daf5cca32e36046cd36ce55cce065ee17..82f5728be5c9d10f92fe8b6e5a9a58331fa5eb7b 100644 (file)
@@ -176,5 +176,11 @@ VF610_PAD_PTD2__UART2_RTS          0x21a2
                                VF610_PAD_PTD3__UART2_CTS               0x21a1
                        >;
                };
+
+               pinctrl_usbh1_reg: gpio_usb_vbus {
+                       fsl,pins = <
+                               VF610_PAD_PTD4__GPIO_83                 0x22ed
+                       >;
+               };
        };
 };