spear-usb.txt 839 B

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