usb-xhci.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. USB xHCI controllers
  2. Required properties:
  3. - compatible: should be one or more of
  4. - "generic-xhci" for generic XHCI device
  5. - "marvell,armada3700-xhci" for Armada 37xx SoCs
  6. - "marvell,armada-375-xhci" for Armada 375 SoCs
  7. - "marvell,armada-380-xhci" for Armada 38x SoCs
  8. - "renesas,xhci-r8a7790" for r8a7790 SoC
  9. - "renesas,xhci-r8a7791" for r8a7791 SoC
  10. - "renesas,xhci-r8a7793" for r8a7793 SoC
  11. - "renesas,xhci-r8a7795" for r8a7795 SoC
  12. - "renesas,rcar-gen2-xhci" for a generic R-Car Gen2 compatible device
  13. - "renesas,rcar-gen3-xhci" for a generic R-Car Gen3 compatible device
  14. - "xhci-platform" (deprecated)
  15. When compatible with the generic version, nodes must list the
  16. SoC-specific version corresponding to the platform first
  17. followed by the generic version.
  18. - reg: should contain address and length of the standard XHCI
  19. register set for the device.
  20. - interrupts: one XHCI interrupt should be described here.
  21. Optional properties:
  22. - clocks: reference to a clock
  23. - usb3-lpm-capable: determines if platform is USB3 LPM capable
  24. - quirk-broken-port-ped: set if the controller has broken port disable mechanism
  25. Example:
  26. usb@f0931000 {
  27. compatible = "generic-xhci";
  28. reg = <0xf0931000 0x8c8>;
  29. interrupts = <0x0 0x4e 0x0>;
  30. };