blob: 3efde12b5d6806c1303ef3729502cdfd40dc6917 [file] [log] [blame]
Kumar Galab053dc52009-06-19 08:31:05 -05001USB EHCI controllers
2
3Required properties:
Hans de Goede915974c2014-02-11 17:35:29 +01004 - compatible : should be "generic-ehci".
Kumar Galab053dc52009-06-19 08:31:05 -05005 - 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.
Hans de Goedea4aeb212014-02-07 16:36:41 +010010
11Optional 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
Wu Liang feng96e41852014-12-24 18:22:18 +080015 - needs-reset-on-resume : boolean, set this to force EHCI reset after resume
Joachim Eastwood40f2f2a2015-05-16 17:17:40 +020016 - has-transaction-translator : boolean, set this if EHCI have a Transaction
17 Translator built into the root hub.
Hans de Goedea4aeb212014-02-07 16:36:41 +010018 - clocks : a list of phandle + clock specifier pairs
19 - phys : phandle + phy specifier pair
20 - phy-names : "usb"
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +020021 - resets : phandle + reset specifier pair
Kumar Galab053dc52009-06-19 08:31:05 -050022
23Example (Sequoia 440EPx):
24 ehci@e0000300 {
25 compatible = "ibm,usb-ehci-440epx", "usb-ehci";
26 interrupt-parent = <&UIC0>;
27 interrupts = <1a 4>;
28 reg = <0 e0000300 90 0 e0000390 70>;
29 big-endian;
30 };
Hans de Goedea4aeb212014-02-07 16:36:41 +010031
32Example (Allwinner sun4i A10 SoC):
Marco Franchi48c926c2017-11-08 14:27:48 -020033 ehci0: usb@1c14000 {
Hans de Goede915974c2014-02-11 17:35:29 +010034 compatible = "allwinner,sun4i-a10-ehci", "generic-ehci";
Hans de Goedea4aeb212014-02-07 16:36:41 +010035 reg = <0x01c14000 0x100>;
36 interrupts = <39>;
37 clocks = <&ahb_gates 1>;
38 phys = <&usbphy 1>;
39 phy-names = "usb";
40 };