1 * Renesas R-Car generation 2 USB PHY
3 This file provides information on what the device node for the R-Car generation
7 - compatible: "renesas,usb-phy-r8a7743" if the device is a part of R8A7743 SoC.
8 "renesas,usb-phy-r8a7744" if the device is a part of R8A7744 SoC.
9 "renesas,usb-phy-r8a7745" if the device is a part of R8A7745 SoC.
10 "renesas,usb-phy-r8a77470" if the device is a part of R8A77470 SoC.
11 "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC.
12 "renesas,usb-phy-r8a7791" if the device is a part of R8A7791 SoC.
13 "renesas,usb-phy-r8a7794" if the device is a part of R8A7794 SoC.
14 "renesas,rcar-gen2-usb-phy" for a generic R-Car Gen2 or
15 RZ/G1 compatible device.
17 When compatible with the generic version, nodes must list the
18 SoC-specific version corresponding to the platform first
19 followed by the generic version.
21 - reg: offset and length of the register block.
22 - #address-cells: number of address cells for the USB channel subnodes, must
24 - #size-cells: number of size cells for the USB channel subnodes, must be <0>.
25 - clocks: clock phandle and specifier pair.
26 - clock-names: string, clock input name, must be "usbhs".
28 The USB PHY device tree node should have the subnodes corresponding to the USB
29 channels. These subnodes must contain the following properties:
30 - reg: the USB controller selector; see the table below for the values.
31 - #phy-cells: see phy-bindings.txt in the same directory, must be <1>.
33 The phandle's argument in the PHY specifier is the USB controller selector for
34 the USB channel other than r8a77470 SoC; see the selector meanings below:
36 +-----------+---------------+---------------+
40 +-----------+---------------+---------------+
41 | 0 | PCI EHCI/OHCI | HS-USB |
42 | 2 | PCI EHCI/OHCI | xHCI |
43 +-----------+---------------+---------------+
45 For r8a77470 SoC;see the selector meaning below:
47 +-----------+---------------+---------------+
51 +-----------+---------------+---------------+
52 | 0 | EHCI/OHCI | HS-USB |
53 +-----------+---------------+---------------+
55 Example (Lager board):
58 compatible = "renesas,usb-phy-r8a7790", "renesas,rcar-gen2-usb-phy";
59 reg = <0 0xe6590100 0 0x100>;
62 clocks = <&cpg CPG_MOD 704>;
63 clock-names = "usbhs";
64 power-domains = <&sysc R8A7790_PD_ALWAYS_ON>;
77 Example (iWave RZ/G1C sbc):
79 usbphy0: usb-phy0@e6590100 {
80 compatible = "renesas,usb-phy-r8a77470",
81 "renesas,rcar-gen2-usb-phy";
82 reg = <0 0xe6590100 0 0x100>;
85 clocks = <&cpg CPG_MOD 704>;
86 clock-names = "usbhs";
87 power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
96 usbphy1: usb-phy@e6598100 {
97 compatible = "renesas,usb-phy-r8a77470",
98 "renesas,rcar-gen2-usb-phy";
99 reg = <0 0xe6598100 0 0x100>;
100 #address-cells = <1>;
102 clocks = <&cpg CPG_MOD 706>;
103 clock-names = "usbhs";
104 power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
107 usb1: usb-channel@0 {