usb-ehci.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. USB EHCI controllers
  2. Required properties:
  3. - compatible : should be "generic-ehci".
  4. - reg : should contain at least address and length of the standard EHCI
  5. register set for the device. Optional platform-dependent registers
  6. (debug-port or other) can be also specified here, but only after
  7. definition of standard EHCI registers.
  8. - interrupts : one EHCI interrupt should be described here.
  9. Optional properties:
  10. - big-endian-regs : boolean, set this for hcds with big-endian registers
  11. - big-endian-desc : boolean, set this for hcds with big-endian descriptors
  12. - big-endian : boolean, for hcds with big-endian-regs + big-endian-desc
  13. - clocks : a list of phandle + clock specifier pairs
  14. - phys : phandle + phy specifier pair
  15. - phy-names : "usb"
  16. - resets : phandle + reset specifier pair
  17. Example (Sequoia 440EPx):
  18. ehci@e0000300 {
  19. compatible = "ibm,usb-ehci-440epx", "usb-ehci";
  20. interrupt-parent = <&UIC0>;
  21. interrupts = <1a 4>;
  22. reg = <0 e0000300 90 0 e0000390 70>;
  23. big-endian;
  24. };
  25. Example (Allwinner sun4i A10 SoC):
  26. ehci0: usb@01c14000 {
  27. compatible = "allwinner,sun4i-a10-ehci", "generic-ehci";
  28. reg = <0x01c14000 0x100>;
  29. interrupts = <39>;
  30. clocks = <&ahb_gates 1>;
  31. phys = <&usbphy 1>;
  32. phy-names = "usb";
  33. };