diff options
author | Andrew Lunn <andrew@lunn.ch> | 2012-11-17 15:46:14 +0100 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-11-24 02:57:10 +0000 |
commit | 423b89595de34f81061d106c34cfca58cde497da (patch) | |
tree | f4384e66e83c371309f3def4d04c3ae60ab98e6b /arch/arm/boot/dts/kirkwood-lsxl.dtsi | |
parent | 280b348d9157b77cceb1aafd6b0e9ac6eb6c3b44 (diff) | |
download | blackbird-obmc-linux-423b89595de34f81061d106c34cfca58cde497da.tar.gz blackbird-obmc-linux-423b89595de34f81061d106c34cfca58cde497da.zip |
ARM: Kirkwood: Convert LSXL to use regulators
Control the power to USB and HDD using a fixed regulator.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Tested-by: Michael Walle <michael@walle.cc>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/boot/dts/kirkwood-lsxl.dtsi')
-rw-r--r-- | arch/arm/boot/dts/kirkwood-lsxl.dtsi | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/kirkwood-lsxl.dtsi b/arch/arm/boot/dts/kirkwood-lsxl.dtsi index 798e60eeedf3..32d302ed2ed0 100644 --- a/arch/arm/boot/dts/kirkwood-lsxl.dtsi +++ b/arch/arm/boot/dts/kirkwood-lsxl.dtsi @@ -105,4 +105,33 @@ 5000 0>; alarm-gpios = <&gpio1 8 0>; }; + + 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 11 0>; + }; + hdd_power: regulator@2 { + compatible = "regulator-fixed"; + reg = <2>; + regulator-name = "HDD Power"; + regulator-min-microvolt = <5000000>; + regulator-max-microvolt = <5000000>; + enable-active-high; + regulator-always-on; + regulator-boot-on; + gpio = <&gpio0 10 0>; + }; + }; }; |