ARM: Kirkwood: Convert Dockstar to use regulators
authorAndrew Lunn <andrew@lunn.ch>
Sat, 17 Nov 2012 14:46:12 +0000 (15:46 +0100)
committerJason Cooper <jason@lakedaemon.net>
Sat, 24 Nov 2012 02:57:02 +0000 (02:57 +0000)
Control the power to USB using a fixed regulator.

Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
arch/arm/boot/dts/kirkwood-dockstar.dts
arch/arm/mach-kirkwood/board-dockstar.c

index 08a582414b88272f04e94207b0ad3463bb4fbff6..c0fbfdc342f86c5a622343ccce5289350228ce7d 100644 (file)
                        gpios = <&gpio1 15 1>;
                };
        };
+       regulators {
+               compatible = "simple-bus";
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               usb_power: regulator@1 {
+                       compatible = "regulator-fixed";
+                       reg = <1>;
+                       regulator-name = "USB Power";
+                       regulator-min-microvolt = <5000000>;
+                       regulator-max-microvolt = <5000000>;
+                       enable-active-high;
+                       regulator-always-on;
+                       regulator-boot-on;
+                       gpio = <&gpio0 29 0>;
+               };
+       };
 };
index e94782d6a26696324b11de159b28a60d30e7cd44..410452acf323e14c08af496f763efc7780d6a3f8 100644 (file)
@@ -24,7 +24,6 @@
 #include <linux/of_fdt.h>
 #include <linux/of_irq.h>
 #include <linux/of_platform.h>
-#include <linux/gpio.h>
 #include <asm/mach-types.h>
 #include <asm/mach/arch.h>
 #include <asm/mach/map.h>
@@ -52,9 +51,5 @@ void __init dockstar_dt_init(void)
         */
        kirkwood_mpp_conf(dockstar_mpp_config);
 
-       if (gpio_request(29, "USB Power Enable") != 0 ||
-           gpio_direction_output(29, 1) != 0)
-               pr_err("can't setup GPIO 29 (USB Power Enable)\n");
-
        kirkwood_ge00_init(&dockstar_ge00_data);
 }