aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/usb
diff options
context:
space:
mode:
authorTony Prisk <linux@prisktech.co.nz>2012-07-21 22:58:53 +1200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-08-16 14:00:37 -0700
commit100d45970327f78584ff4846deeca14bba511e28 (patch)
tree3698827ac9c75aa66d461fd9862b7fcef4768e94 /Documentation/devicetree/bindings/usb
parentARM: vt8500: Update vt8500-ehci driver to support device tree. (diff)
downloadlinux-dev-100d45970327f78584ff4846deeca14bba511e28.tar.xz
linux-dev-100d45970327f78584ff4846deeca14bba511e28.zip
ARM: vt8500: Add support for UHCI companion controller
Add support for a generic non-pci UHCI companion controller. Existing board files for arch-vt8500 updated to include UHCI support. Signed-off-by: Tony Prisk <linux@prisktech.co.nz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/devicetree/bindings/usb')
-rw-r--r--Documentation/devicetree/bindings/usb/platform-uhci.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/usb/platform-uhci.txt b/Documentation/devicetree/bindings/usb/platform-uhci.txt
new file mode 100644
index 000000000000..91477d6830ec
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/platform-uhci.txt
@@ -0,0 +1,12 @@
+Generic Platform UHCI controllers.
+
+Required properties:
+ - compatible: Should be "platform-uhci".
+ - reg: Address range of the uhci registers
+ - interrupts: Should contain the uhci interrupt.
+
+usb: uhci@D8007301 {
+ compatible = "platform-uhci", "usb-uhci";
+ reg = <0xD8007301 0x200>;
+ interrupts = <0>;
+};