diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-06-26 02:58:01 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-06-26 02:58:01 -0400 |
commit | fd0cca754f3f6756bfdafe500e4f49b1b9e9723f (patch) | |
tree | b1eb43fb2fb068ed5fc92b031e3ae853e599af9c /Documentation/powerpc/dts-bindings/usb-ehci.txt | |
parent | 5ba762c9bb3ce2cc11e9e111cb3c476e84b91668 (diff) | |
parent | 66c6b856d8738278a4a6e558d25c90e9950aa112 (diff) |
Merge commit 'kumar/next' into merge
Diffstat (limited to 'Documentation/powerpc/dts-bindings/usb-ehci.txt')
-rw-r--r-- | Documentation/powerpc/dts-bindings/usb-ehci.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Documentation/powerpc/dts-bindings/usb-ehci.txt b/Documentation/powerpc/dts-bindings/usb-ehci.txt new file mode 100644 index 000000000000..fa18612f757b --- /dev/null +++ b/Documentation/powerpc/dts-bindings/usb-ehci.txt | |||
@@ -0,0 +1,25 @@ | |||
1 | USB EHCI controllers | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : should be "usb-ehci". | ||
5 | - reg : should contain at least address and length of the standard EHCI | ||
6 | register set for the device. Optional platform-dependent registers | ||
7 | (debug-port or other) can be also specified here, but only after | ||
8 | definition of standard EHCI registers. | ||
9 | - interrupts : one EHCI interrupt should be described here. | ||
10 | If device registers are implemented in big endian mode, the device | ||
11 | node should have "big-endian-regs" property. | ||
12 | If controller implementation operates with big endian descriptors, | ||
13 | "big-endian-desc" property should be specified. | ||
14 | If both big endian registers and descriptors are used by the controller | ||
15 | implementation, "big-endian" property can be specified instead of having | ||
16 | both "big-endian-regs" and "big-endian-desc". | ||
17 | |||
18 | Example (Sequoia 440EPx): | ||
19 | ehci@e0000300 { | ||
20 | compatible = "ibm,usb-ehci-440epx", "usb-ehci"; | ||
21 | interrupt-parent = <&UIC0>; | ||
22 | interrupts = <1a 4>; | ||
23 | reg = <0 e0000300 90 0 e0000390 70>; | ||
24 | big-endian; | ||
25 | }; | ||