blob: ace9cce2704a889525c1fd8219501d2bb1329b7f [file] [log] [blame]
Yoshihiro Shimodaf3b5a8d2015-11-30 10:44:30 +09001* Renesas R-Car generation 3 USB 2.0 PHY
2
3This file provides information on what the device node for the R-Car generation
43 USB 2.0 PHY contains.
5
6Required properties:
7- compatible: "renesas,usb2-phy-r8a7795" if the device is a part of an R8A7795
8 SoC.
Yoshihiro Shimoda800dcc32016-08-24 15:49:22 +09009 "renesas,usb2-phy-r8a7796" if the device is a part of an R8A7796
10 SoC.
Simon Hormancde7bc32016-03-07 10:58:41 +090011 "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
Yoshihiro Shimodaf3b5a8d2015-11-30 10:44:30 +090017- reg: offset and length of the partial USB 2.0 Host register block.
Yoshihiro Shimodaf3b5a8d2015-11-30 10:44:30 +090018- clocks: clock phandle and specifier pair(s).
19- #phy-cells: see phy-bindings.txt in the same directory, must be <0>.
20
21Optional properties:
22To use a USB channel where USB 2.0 Host and HSUSB (USB 2.0 Peripheral) are
Yoshihiro Shimodab9564012016-01-07 18:16:44 +090023combined, the device tree node should set interrupt properties to use the
24channel as USB OTG:
Yoshihiro Shimoda9f391c52015-11-30 10:44:32 +090025- interrupts: interrupt specifier for the PHY.
Yoshihiro Shimoda6dcfd7c2016-03-03 19:09:05 +090026- 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.
Yoshihiro Shimodaf3b5a8d2015-11-30 10:44:30 +090028
29Example (R-Car H3):
30
31 usb-phy@ee080200 {
Simon Hormancde7bc32016-03-07 10:58:41 +090032 compatible = "renesas,usb2-phy-r8a7795", "renesas,rcar-gen3-usb2-phy";
Yoshihiro Shimodab9564012016-01-07 18:16:44 +090033 reg = <0 0xee080200 0 0x700>;
Yoshihiro Shimoda9f391c52015-11-30 10:44:32 +090034 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Yoshihiro Shimoda8cf1ffe2016-08-24 15:49:21 +090035 clocks = <&cpg CPG_MOD 703>;
Yoshihiro Shimodaf3b5a8d2015-11-30 10:44:30 +090036 };
37
38 usb-phy@ee0a0200 {
Simon Hormancde7bc32016-03-07 10:58:41 +090039 compatible = "renesas,usb2-phy-r8a7795", "renesas,rcar-gen3-usb2-phy";
Yoshihiro Shimodaf3b5a8d2015-11-30 10:44:30 +090040 reg = <0 0xee0a0200 0 0x700>;
Yoshihiro Shimoda8cf1ffe2016-08-24 15:49:21 +090041 clocks = <&cpg CPG_MOD 702>;
Yoshihiro Shimodaf3b5a8d2015-11-30 10:44:30 +090042 };