summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/usb/ohci-nxp.txt
diff options
context:
space:
mode:
authorRoland Stigge <stigge@antcom.de>2012-04-29 16:47:03 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-01 13:30:01 -0400
commit2265efea38c45ba42a4e483eee11740730f053d2 (patch)
treef4049c53c5e3653cc7e6a7374a869ede2cdd46c3 /Documentation/devicetree/bindings/usb/ohci-nxp.txt
parenta6a99cf0713c5336ad564b055d4ed34537700df4 (diff)
ohci-nxp: Device tree support
This patch adds device tree support to ohci-nxp.c Signed-off-by: Roland Stigge <stigge@antcom.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/devicetree/bindings/usb/ohci-nxp.txt')
-rw-r--r--Documentation/devicetree/bindings/usb/ohci-nxp.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/usb/ohci-nxp.txt b/Documentation/devicetree/bindings/usb/ohci-nxp.txt
new file mode 100644
index 000000000000..b5c36319e634
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/ohci-nxp.txt
@@ -0,0 +1,16 @@
+* OHCI controller, NXP ohci-nxp variant
+
+Required properties:
+- compatible: must be "nxp,ohci-nxp"
+- reg: physical base address of the controller and length of memory mapped
+ region.
+- interrupts: The OHCI interrupt
+
+Example (LPC32xx):
+
+ ohci@31020000 {
+ compatible = "nxp,ohci-nxp";
+ reg = <0x31020000 0x300>;
+ interrupt-parent = <&mic>;
+ interrupts = <0x3b 0>;
+ };