Merge branch 'work.splice_read' of git://git.kernel.org/pub/scm/linux/kernel/git...
[cascardo/linux.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 USB 2.0 PHY contains.
5
6 Required properties:
7 - compatible: "renesas,usb2-phy-r8a7795" if the device is a part of an R8A7795
8               SoC.
9               "renesas,usb2-phy-r8a7796" if the device is a part of an R8A7796
10               SoC.
11               "renesas,rcar-gen3-usb2-phy" for a generic R-Car Gen3 compatible device.
12
13               When compatible with the generic version, nodes must list the
14               SoC-specific version corresponding to the platform first
15               followed by the generic version.
16
17 - reg: offset and length of the partial USB 2.0 Host register block.
18 - clocks: clock phandle and specifier pair(s).
19 - #phy-cells: see phy-bindings.txt in the same directory, must be <0>.
20
21 Optional properties:
22 To use a USB channel where USB 2.0 Host and HSUSB (USB 2.0 Peripheral) are
23 combined, the device tree node should set interrupt properties to use the
24 channel as USB OTG:
25 - interrupts: interrupt specifier for the PHY.
26 - vbus-supply: Phandle to a regulator that provides power to the VBUS. This
27                regulator will be managed during the PHY power on/off sequence.
28
29 Example (R-Car H3):
30
31         usb-phy@ee080200 {
32                 compatible = "renesas,usb2-phy-r8a7795", "renesas,rcar-gen3-usb2-phy";
33                 reg = <0 0xee080200 0 0x700>;
34                 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
35                 clocks = <&cpg CPG_MOD 703>;
36         };
37
38         usb-phy@ee0a0200 {
39                 compatible = "renesas,usb2-phy-r8a7795", "renesas,rcar-gen3-usb2-phy";
40                 reg = <0 0xee0a0200 0 0x700>;
41                 clocks = <&cpg CPG_MOD 702>;
42         };