blob: 43c1a4e06767d60a58f6f0c1df808c22ea5a8fdc [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
15 - clocks : a list of phandle + clock specifier pairs
16 - phys : phandle + phy specifier pair
17 - phy-names : "usb"
Boris BREZILLON2d87bbd2014-05-13 17:44:19 +020018 - resets : phandle + reset specifier pair
Kumar Galab053dc52009-06-19 08:31:05 -050019
20Example (Sequoia 440EPx):
21 ehci@e0000300 {
22 compatible = "ibm,usb-ehci-440epx", "usb-ehci";
23 interrupt-parent = <&UIC0>;
24 interrupts = <1a 4>;
25 reg = <0 e0000300 90 0 e0000390 70>;
26 big-endian;
27 };
Hans de Goedea4aeb212014-02-07 16:36:41 +010028
29Example (Allwinner sun4i A10 SoC):
30 ehci0: usb@01c14000 {
Hans de Goede915974c2014-02-11 17:35:29 +010031 compatible = "allwinner,sun4i-a10-ehci", "generic-ehci";
Hans de Goedea4aeb212014-02-07 16:36:41 +010032 reg = <0x01c14000 0x100>;
33 interrupts = <39>;
34 clocks = <&ahb_gates 1>;
35 phys = <&usbphy 1>;
36 phy-names = "usb";
37 };