usb-ehci.txt 1.0 KB

1234567891011121314151617181920212223242526
  1. USB EHCI controllers
  2. Required properties:
  3. - compatible : should be "usb-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. If device registers are implemented in big endian mode, the device
  10. node should have "big-endian-regs" property.
  11. If controller implementation operates with big endian descriptors,
  12. "big-endian-desc" property should be specified.
  13. If both big endian registers and descriptors are used by the controller
  14. implementation, "big-endian" property can be specified instead of having
  15. both "big-endian-regs" and "big-endian-desc".
  16. Example (Sequoia 440EPx):
  17. ehci@e0000300 {
  18. compatible = "ibm,usb-ehci-440epx", "usb-ehci";
  19. interrupt-parent = <&UIC0>;
  20. interrupts = <1a 4>;
  21. reg = <0 e0000300 90 0 e0000390 70>;
  22. big-endian;
  23. };