usb: gadget: udc: renesas_usb3: Add r8a774a1 support
[linux] / Documentation / devicetree / bindings / usb / renesas_usb3.txt
1 Renesas Electronics USB3.0 Peripheral driver
2
3 Required properties:
4   - compatible: Must contain one of the following:
5         - "renesas,r8a774a1-usb3-peri"
6         - "renesas,r8a7795-usb3-peri"
7         - "renesas,r8a7796-usb3-peri"
8         - "renesas,r8a77965-usb3-peri"
9         - "renesas,rcar-gen3-usb3-peri" for a generic R-Car Gen3 or RZ/G2
10           compatible device
11
12     When compatible with the generic version, nodes must list the
13     SoC-specific version corresponding to the platform first
14     followed by the generic version.
15
16   - reg: Base address and length of the register for the USB3.0 Peripheral
17   - interrupts: Interrupt specifier for the USB3.0 Peripheral
18   - clocks: clock phandle and specifier pair
19
20 Optional properties:
21   - phys: phandle + phy specifier pair
22   - phy-names: must be "usb"
23
24 Example of R-Car H3 ES1.x:
25         usb3_peri0: usb@ee020000 {
26                 compatible = "renesas,r8a7795-usb3-peri",
27                              "renesas,rcar-gen3-usb3-peri";
28                 reg = <0 0xee020000 0 0x400>;
29                 interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>;
30                 clocks = <&cpg CPG_MOD 328>;
31         };
32
33         usb3_peri1: usb@ee060000 {
34                 compatible = "renesas,r8a7795-usb3-peri",
35                              "renesas,rcar-gen3-usb3-peri";
36                 reg = <0 0xee060000 0 0x400>;
37                 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
38                 clocks = <&cpg CPG_MOD 327>;
39         };