aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Lunn <andrew@lunn.ch>2012-11-17 09:46:13 -0500
committerJason Cooper <jason@lakedaemon.net>2012-11-23 21:57:06 -0500
commit280b348d9157b77cceb1aafd6b0e9ac6eb6c3b44 (patch)
tree4aa389a82c701cae92940aa0d5cfd7071fa1f1a6
parentc3ff813ac9d72f588166b8e802f31f85e8cf731b (diff)
ARM: Kirkwood: Convert GoFlexNet to use regulators
Control the power to USB using a fixed regulator. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Tested-by: Josh Coombs <josh.coombs@gmail.com> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r--arch/arm/boot/dts/kirkwood-goflexnet.dts17
-rw-r--r--arch/arm/mach-kirkwood/board-goflexnet.c5
2 files changed, 17 insertions, 5 deletions
diff --git a/arch/arm/boot/dts/kirkwood-goflexnet.dts b/arch/arm/boot/dts/kirkwood-goflexnet.dts
index 7c8238fbb6f9..84de887620ec 100644
--- a/arch/arm/boot/dts/kirkwood-goflexnet.dts
+++ b/arch/arm/boot/dts/kirkwood-goflexnet.dts
@@ -96,4 +96,21 @@
96 gpios = <&gpio1 9 0>; 96 gpios = <&gpio1 9 0>;
97 }; 97 };
98 }; 98 };
99 regulators {
100 compatible = "simple-bus";
101 #address-cells = <1>;
102 #size-cells = <0>;
103
104 usb_power: regulator@1 {
105 compatible = "regulator-fixed";
106 reg = <1>;
107 regulator-name = "USB Power";
108 regulator-min-microvolt = <5000000>;
109 regulator-max-microvolt = <5000000>;
110 enable-active-high;
111 regulator-always-on;
112 regulator-boot-on;
113 gpio = <&gpio0 29 0>;
114 };
115 };
99}; 116};
diff --git a/arch/arm/mach-kirkwood/board-goflexnet.c b/arch/arm/mach-kirkwood/board-goflexnet.c
index d388bea71360..5ff439231567 100644
--- a/arch/arm/mach-kirkwood/board-goflexnet.c
+++ b/arch/arm/mach-kirkwood/board-goflexnet.c
@@ -26,7 +26,6 @@
26#include <linux/of_fdt.h> 26#include <linux/of_fdt.h>
27#include <linux/of_irq.h> 27#include <linux/of_irq.h>
28#include <linux/of_platform.h> 28#include <linux/of_platform.h>
29#include <linux/gpio.h>
30#include <asm/mach-types.h> 29#include <asm/mach-types.h>
31#include <asm/mach/arch.h> 30#include <asm/mach/arch.h>
32#include <asm/mach/map.h> 31#include <asm/mach/map.h>
@@ -62,9 +61,5 @@ void __init goflexnet_init(void)
62 */ 61 */
63 kirkwood_mpp_conf(goflexnet_mpp_config); 62 kirkwood_mpp_conf(goflexnet_mpp_config);
64 63
65 if (gpio_request(29, "USB Power Enable") != 0 ||
66 gpio_direction_output(29, 1) != 0)
67 pr_err("can't setup GPIO 29 (USB Power Enable)\n");
68
69 kirkwood_ge00_init(&goflexnet_ge00_data); 64 kirkwood_ge00_init(&goflexnet_ge00_data);
70} 65}