usb-xhci.txt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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-r8a7743" for r8a7743 SoC
  9. - "renesas,xhci-r8a7790" for r8a7790 SoC
  10. - "renesas,xhci-r8a7791" for r8a7791 SoC
  11. - "renesas,xhci-r8a7793" for r8a7793 SoC
  12. - "renesas,xhci-r8a7795" for r8a7795 SoC
  13. - "renesas,xhci-r8a7796" for r8a7796 SoC
  14. - "renesas,xhci-r8a77965" for r8a77965 SoC
  15. - "renesas,xhci-r8a77990" for r8a77990 SoC
  16. - "renesas,rcar-gen2-xhci" for a generic R-Car Gen2 or RZ/G1 compatible
  17. device
  18. - "renesas,rcar-gen3-xhci" for a generic R-Car Gen3 compatible device
  19. - "xhci-platform" (deprecated)
  20. When compatible with the generic version, nodes must list the
  21. SoC-specific version corresponding to the platform first
  22. followed by the generic version.
  23. - reg: should contain address and length of the standard XHCI
  24. register set for the device.
  25. - interrupts: one XHCI interrupt should be described here.
  26. Optional properties:
  27. - clocks: reference to the clocks
  28. - clock-names: mandatory if there is a second clock, in this case
  29. the name must be "core" for the first clock and "reg" for the
  30. second one
  31. - usb2-lpm-disable: indicate if we don't want to enable USB2 HW LPM
  32. - usb3-lpm-capable: determines if platform is USB3 LPM capable
  33. - quirk-broken-port-ped: set if the controller has broken port disable mechanism
  34. - imod-interval-ns: default interrupt moderation interval is 5000ns
  35. - phys : see usb-hcd.txt in the current directory
  36. additionally the properties from usb-hcd.txt (in the current directory) are
  37. supported.
  38. Example:
  39. usb@f0931000 {
  40. compatible = "generic-xhci";
  41. reg = <0xf0931000 0x8c8>;
  42. interrupts = <0x0 0x4e 0x0>;
  43. };