xref: /openbmc/linux/Documentation/devicetree/bindings/usb/richtek,rt1711h.txt (revision f79e4d5f92a129a1159c973735007d4ddc8541f3)
1Richtek RT1711H TypeC PD Controller.
2
3Required properties:
4 - compatible : Must be "richtek,rt1711h".
5 - reg : Must be 0x4e, it's slave address of RT1711H.
6 - interrupt-parent : the phandle for the interrupt controller that
7   provides interrupts for this device.
8 - interrupts : <a b> where a is the interrupt number and b represents an
9   encoding of the sense and level information for the interrupt.
10
11Example :
12rt1711h@4e {
13	compatible = "richtek,rt1711h";
14	reg = <0x4e>;
15	interrupt-parent = <&gpio26>;
16	interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
17};
18