blob: d1702eb2c8bd83d3f5c1c6cfaca950608ca5c12b [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001Generic Platform UHCI Controller
2-----------------------------------------------------
3
4Required properties:
5- compatible : "generic-uhci" (deprecated: "platform-uhci")
6- reg : Should contain 1 register ranges(address and length)
7- interrupts : UHCI controller interrupt
8
9additionally the properties from usb-hcd.yaml (in the current directory) are
10supported.
11
12Example:
13
14 uhci@d8007b00 {
15 compatible = "generic-uhci";
16 reg = <0xd8007b00 0x200>;
17 interrupts = <43>;
18 };