usb-xhci.txt 682 字节
Newer Older
1 2 3
USB xHCI controllers

Required properties:
4
  - compatible: should be one of "generic-xhci",
5
    "marvell,armada-375-xhci", "marvell,armada-380-xhci",
6 7
    "renesas,xhci-r8a7790", "renesas,xhci-r8a7791", "renesas,xhci-r8a7793",
    "renesas,xhci-r8a7795" (deprecated: "xhci-platform").
8 9 10 11
  - reg: should contain address and length of the standard XHCI
    register set for the device.
  - interrupts: one XHCI interrupt should be described here.

12
Optional properties:
13
  - clocks: reference to a clock
14
  - usb3-lpm-capable: determines if platform is USB3 LPM capable
15

16 17
Example:
	usb@f0931000 {
18
		compatible = "generic-xhci";
19 20 21
		reg = <0xf0931000 0x8c8>;
		interrupts = <0x0 0x4e 0x0>;
	};