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

Required properties:
4
  - compatible: should be one of "generic-xhci",
5 6
    "marvell,armada-375-xhci", "marvell,armada-380-xhci",
    "renesas,xhci-r8a7790", "renesas,xhci-r8a7791" (deprecated:
7
    "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 13 14
Optional property:
  - clocks: reference to a clock

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