diff options
author | Tony Prisk <linux@prisktech.co.nz> | 2012-07-21 06:58:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-16 17:00:37 -0400 |
commit | 100d45970327f78584ff4846deeca14bba511e28 (patch) | |
tree | 3698827ac9c75aa66d461fd9862b7fcef4768e94 /Documentation | |
parent | 8ad551d150e3bb0902696496a9d2aa094335705a (diff) |
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')
-rw-r--r-- | Documentation/devicetree/bindings/usb/platform-uhci.txt | 12 |
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 @@ | |||
1 | Generic Platform UHCI controllers. | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: Should be "platform-uhci". | ||
5 | - reg: Address range of the uhci registers | ||
6 | - interrupts: Should contain the uhci interrupt. | ||
7 | |||
8 | usb: uhci@D8007301 { | ||
9 | compatible = "platform-uhci", "usb-uhci"; | ||
10 | reg = <0xD8007301 0x200>; | ||
11 | interrupts = <0>; | ||
12 | }; | ||