spear-usb.txt 611 B

1234567891011121314151617181920212223242526272829303132333435
  1. ST SPEAr SoC USB controllers:
  2. -----------------------------
  3. EHCI:
  4. -----
  5. Required properties:
  6. - compatible: "st,spear600-ehci"
  7. - interrupts: Should contain the EHCI interrupt
  8. Example:
  9. ehci@e1800000 {
  10. compatible = "st,spear600-ehci", "usb-ehci";
  11. reg = <0xe1800000 0x1000>;
  12. interrupt-parent = <&vic1>;
  13. interrupts = <27>;
  14. };
  15. OHCI:
  16. -----
  17. Required properties:
  18. - compatible: "st,spear600-ohci"
  19. - interrupts: Should contain the OHCI interrupt
  20. Example:
  21. ohci@e1900000 {
  22. compatible = "st,spear600-ohci", "usb-ohci";
  23. reg = <0xe1800000 0x1000>;
  24. interrupt-parent = <&vic1>;
  25. interrupts = <26>;
  26. };