renesas_usb3.txt 1.2 KB

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