aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Porter <mporter@linaro.org>2013-12-19 09:23:10 -0500
committerChristian Daudt <bcm@fixthebug.org>2013-12-23 03:14:11 -0500
commitd97f79973846456c511f46310ba158439e6c84f5 (patch)
tree94044eab2ad91655f20d365361912bbdb5c5d91a
parent788db61add0945f3111b059881788263db43a5cc (diff)
ARM: dts: add usb udc support to bcm281xx
Adds USB OTG/PHY and clock support to BCM281xx and enables UDC support on the bcm11351-brt and bcm28155-ap boards. Signed-off-by: Matt Porter <mporter@linaro.org> Reviewed-by: Markus Mayer <markus.mayer@linaro.org> Reviewed-by: Tim Kryger <tim.kryger@linaro.org> Signed-off-by: Christian Daudt <bcm@fixthebug.org>
-rw-r--r--arch/arm/boot/dts/bcm11351-brt.dts6
-rw-r--r--arch/arm/boot/dts/bcm11351.dtsi18
-rw-r--r--arch/arm/boot/dts/bcm28155-ap.dts8
3 files changed, 32 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/bcm11351-brt.dts b/arch/arm/boot/dts/bcm11351-brt.dts
index 23cd16d736bf..396b70459cdc 100644
--- a/arch/arm/boot/dts/bcm11351-brt.dts
+++ b/arch/arm/boot/dts/bcm11351-brt.dts
@@ -44,5 +44,11 @@
44 status = "okay"; 44 status = "okay";
45 }; 45 };
46 46
47 usbotg: usb@3f120000 {
48 status = "okay";
49 };
47 50
51 usbphy: usb-phy@3f130000 {
52 status = "okay";
53 };
48}; 54};
diff --git a/arch/arm/boot/dts/bcm11351.dtsi b/arch/arm/boot/dts/bcm11351.dtsi
index 4bfd7e3d7162..375a2f8eb878 100644
--- a/arch/arm/boot/dts/bcm11351.dtsi
+++ b/arch/arm/boot/dts/bcm11351.dtsi
@@ -283,4 +283,22 @@
283 #clock-cells = <0>; 283 #clock-cells = <0>;
284 }; 284 };
285 }; 285 };
286
287 usbotg: usb@3f120000 {
288 compatible = "snps,dwc2";
289 reg = <0x3f120000 0x10000>;
290 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
291 clocks = <&usb_otg_ahb_clk>;
292 clock-names = "otg";
293 phys = <&usbphy>;
294 phy-names = "usb2-phy";
295 status = "disabled";
296 };
297
298 usbphy: usb-phy@3f130000 {
299 compatible = "brcm,kona-usb2-phy";
300 reg = <0x3f130000 0x28>;
301 #phy-cells = <0>;
302 status = "disabled";
303 };
286}; 304};
diff --git a/arch/arm/boot/dts/bcm28155-ap.dts b/arch/arm/boot/dts/bcm28155-ap.dts
index bab302d05856..c7fa9fbb999c 100644
--- a/arch/arm/boot/dts/bcm28155-ap.dts
+++ b/arch/arm/boot/dts/bcm28155-ap.dts
@@ -63,4 +63,12 @@
63 cd-gpios = <&gpio 14 0>; 63 cd-gpios = <&gpio 14 0>;
64 status = "okay"; 64 status = "okay";
65 }; 65 };
66
67 usbotg: usb@3f120000 {
68 status = "okay";
69 };
70
71 usbphy: usb-phy@3f130000 {
72 status = "okay";
73 };
66}; 74};