diff options
author | WingMan Kwok | 2013-12-09 23:25:12 +0100 |
---|---|---|
committer | Santosh Shilimkar | 2013-12-13 02:29:17 +0100 |
commit | 732079567da4942b7b4929deff8f236926d0b3eb (patch) | |
tree | 023c4d6e45bee4c191a3f995c655e4678fef42cd /arch/arm/boot/dts/keystone.dtsi | |
parent | ARM: dts: keystone: Add usb phy devicetree bindings (diff) | |
download | kernel-qcow2-linux-732079567da4942b7b4929deff8f236926d0b3eb.tar.gz kernel-qcow2-linux-732079567da4942b7b4929deff8f236926d0b3eb.tar.xz kernel-qcow2-linux-732079567da4942b7b4929deff8f236926d0b3eb.zip |
ARM: dts: keystone: Add usb devicetree bindings
Added device tree support for TI's Keystone USB driver and updated the
Documentation with device tree binding information.
Signed-off-by: WingMan Kwok <w-kwok2@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'arch/arm/boot/dts/keystone.dtsi')
-rw-r--r-- | arch/arm/boot/dts/keystone.dtsi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/keystone.dtsi b/arch/arm/boot/dts/keystone.dtsi index 276bea999ef4..b4202907a27b 100644 --- a/arch/arm/boot/dts/keystone.dtsi +++ b/arch/arm/boot/dts/keystone.dtsi @@ -189,5 +189,24 @@ reg = <0x2620738 32>; status = "disabled"; }; + + usb: usb@2680000 { + compatible = "ti,keystone-dwc3"; + #address-cells = <1>; + #size-cells = <1>; + reg = <0x2680000 0x10000>; + clocks = <&clkusb>; + clock-names = "usb"; + interrupts = <GIC_SPI 393 IRQ_TYPE_EDGE_RISING>; + ranges; + status = "disabled"; + + dwc3@2690000 { + compatible = "synopsys,dwc3"; + reg = <0x2690000 0x70000>; + interrupts = <GIC_SPI 393 IRQ_TYPE_EDGE_RISING>; + usb-phy = <&usb_phy>, <&usb_phy>; + }; + }; }; }; |