ehci-orion.txt 526 B

12345678910111213141516171819202122
  1. * EHCI controller, Orion Marvell variants
  2. Required properties:
  3. - compatible: must be one of the following
  4. "marvell,orion-ehci"
  5. "marvell,armada-3700-ehci"
  6. - reg: physical base address of the controller and length of memory mapped
  7. region.
  8. - interrupts: The EHCI interrupt
  9. Optional properties:
  10. - clocks: reference to the clock
  11. - phys: reference to the USB PHY
  12. - phy-names: name of the USB PHY, should be "usb"
  13. Example:
  14. ehci@50000 {
  15. compatible = "marvell,orion-ehci";
  16. reg = <0x50000 0x1000>;
  17. interrupts = <19>;
  18. };