aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoman Byshko <rbyshko@gmail.com>2014-03-01 14:26:27 -0500
committerMaxime Ripard <maxime.ripard@free-electrons.com>2014-03-04 11:44:49 -0500
commitf28f9eb4a3e991582894f4c3319d43ec9f1a7d25 (patch)
treeb54c85fea2f2a3a64f64562151e9fd3f481fdc63
parent2428b6c3eeea950b0b41808086b04591b94ea891 (diff)
ARM: sun4i: dt: Add USB host nodes to cubieboard dts
Add nodes for the usb-phy and ehci- and ohci-usb-host controllers. Signed-off-by: Roman Byshko <rbyshko@gmail.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r--arch/arm/boot/dts/sun4i-a10-cubieboard.dts30
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/sun4i-a10-cubieboard.dts b/arch/arm/boot/dts/sun4i-a10-cubieboard.dts
index 20407ac39366..4684cbe6843b 100644
--- a/arch/arm/boot/dts/sun4i-a10-cubieboard.dts
+++ b/arch/arm/boot/dts/sun4i-a10-cubieboard.dts
@@ -34,11 +34,33 @@
34 }; 34 };
35 }; 35 };
36 36
37 usbphy: phy@01c13400 {
38 usb1_vbus-supply = <&reg_usb1_vbus>;
39 usb2_vbus-supply = <&reg_usb2_vbus>;
40 status = "okay";
41 };
42
43 ehci0: usb@01c14000 {
44 status = "okay";
45 };
46
47 ohci0: usb@01c14400 {
48 status = "okay";
49 };
50
37 ahci: sata@01c18000 { 51 ahci: sata@01c18000 {
38 target-supply = <&reg_ahci_5v>; 52 target-supply = <&reg_ahci_5v>;
39 status = "okay"; 53 status = "okay";
40 }; 54 };
41 55
56 ehci1: usb@01c1c000 {
57 status = "okay";
58 };
59
60 ohci1: usb@01c1c400 {
61 status = "okay";
62 };
63
42 pinctrl@01c20800 { 64 pinctrl@01c20800 {
43 led_pins_cubieboard: led_pins@0 { 65 led_pins_cubieboard: led_pins@0 {
44 allwinner,pins = "PH20", "PH21"; 66 allwinner,pins = "PH20", "PH21";
@@ -87,4 +109,12 @@
87 reg_ahci_5v: ahci-5v { 109 reg_ahci_5v: ahci-5v {
88 status = "okay"; 110 status = "okay";
89 }; 111 };
112
113 reg_usb1_vbus: usb1-vbus {
114 status = "okay";
115 };
116
117 reg_usb2_vbus: usb2-vbus {
118 status = "okay";
119 };
90}; 120};