Merge branch 'async-scsi-resume' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / Documentation / devicetree / bindings / usb / usb-ehci.txt
1 USB EHCI controllers
2
3 Required properties:
4   - compatible : should be "generic-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
11 Optional properties:
12  - big-endian-regs : boolean, set this for hcds with big-endian registers
13  - big-endian-desc : boolean, set this for hcds with big-endian descriptors
14  - big-endian : boolean, for hcds with big-endian-regs + big-endian-desc
15  - clocks : a list of phandle + clock specifier pairs
16  - phys : phandle + phy specifier pair
17  - phy-names : "usb"
18
19 Example (Sequoia 440EPx):
20     ehci@e0000300 {
21            compatible = "ibm,usb-ehci-440epx", "usb-ehci";
22            interrupt-parent = <&UIC0>;
23            interrupts = <1a 4>;
24            reg = <0 e0000300 90 0 e0000390 70>;
25            big-endian;
26    };
27
28 Example (Allwinner sun4i A10 SoC):
29    ehci0: usb@01c14000 {
30            compatible = "allwinner,sun4i-a10-ehci", "generic-ehci";
31            reg = <0x01c14000 0x100>;
32            interrupts = <39>;
33            clocks = <&ahb_gates 1>;
34            phys = <&usbphy 1>;
35            phy-names = "usb";
36    };