xref: /freebsd/sys/contrib/device-tree/Bindings/usb/npcm7xx-usb.txt (revision e0c4386e7e71d93b0edc0c8fa156263fc4a8b0b6)
1Nuvoton NPCM7XX SoC USB controllers:
2-----------------------------
3
4EHCI:
5-----
6
7Required properties:
8- compatible: should be one of
9    "nuvoton,npcm750-ehci"
10    "nuvoton,npcm845-ehci"
11- interrupts: Should contain the EHCI interrupt
12- reg:        Physical address and length of the register set for the device
13
14Example:
15
16	ehci1: usb@f0806000 {
17		compatible = "nuvoton,npcm750-ehci";
18		reg = <0xf0806000 0x1000>;
19		interrupts = <0 61 4>;
20	};
21