Merge tag 'drm-next-2019-03-15' of git://anongit.freedesktop.org/drm/drm
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / phy / rcar-gen3-phy-usb2.txt
1 * Renesas R-Car generation 3 USB 2.0 PHY
2
3 This file provides information on what the device node for the R-Car generation
4 3 and RZ/G2 USB 2.0 PHY contain.
5
6 Required properties:
7 - compatible: "renesas,usb2-phy-r8a774a1" if the device is a part of an R8A774A1
8               SoC.
9               "renesas,usb2-phy-r8a774c0" if the device is a part of an R8A774C0
10               SoC.
11               "renesas,usb2-phy-r8a7795" if the device is a part of an R8A7795
12               SoC.
13               "renesas,usb2-phy-r8a7796" if the device is a part of an R8A7796
14               SoC.
15               "renesas,usb2-phy-r8a77965" if the device is a part of an
16               R8A77965 SoC.
17               "renesas,usb2-phy-r8a77990" if the device is a part of an
18               R8A77990 SoC.
19               "renesas,usb2-phy-r8a77995" if the device is a part of an
20               R8A77995 SoC.
21               "renesas,rcar-gen3-usb2-phy" for a generic R-Car Gen3 or RZ/G2
22               compatible device.
23
24               When compatible with the generic version, nodes must list the
25               SoC-specific version corresponding to the platform first
26               followed by the generic version.
27
28 - reg: offset and length of the partial USB 2.0 Host register block.
29 - clocks: clock phandle and specifier pair(s).
30 - #phy-cells: see phy-bindings.txt in the same directory, must be <0>.
31
32 Optional properties:
33 To use a USB channel where USB 2.0 Host and HSUSB (USB 2.0 Peripheral) are
34 combined, the device tree node should set interrupt properties to use the
35 channel as USB OTG:
36 - interrupts: interrupt specifier for the PHY.
37 - vbus-supply: Phandle to a regulator that provides power to the VBUS. This
38                regulator will be managed during the PHY power on/off sequence.
39 - renesas,no-otg-pins: boolean, specify when a board does not provide proper
40                        otg pins.
41
42 Example (R-Car H3):
43
44         usb-phy@ee080200 {
45                 compatible = "renesas,usb2-phy-r8a7795", "renesas,rcar-gen3-usb2-phy";
46                 reg = <0 0xee080200 0 0x700>;
47                 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
48                 clocks = <&cpg CPG_MOD 703>;
49         };
50
51         usb-phy@ee0a0200 {
52                 compatible = "renesas,usb2-phy-r8a7795", "renesas,rcar-gen3-usb2-phy";
53                 reg = <0 0xee0a0200 0 0x700>;
54                 clocks = <&cpg CPG_MOD 702>;
55         };