renesas,pwm-rcar.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. * Renesas R-Car PWM Timer Controller
  2. Required Properties:
  3. - compatible: should be "renesas,pwm-rcar" and one of the following.
  4. - "renesas,pwm-r8a7743": for RZ/G1M
  5. - "renesas,pwm-r8a7745": for RZ/G1E
  6. - "renesas,pwm-r8a7778": for R-Car M1A
  7. - "renesas,pwm-r8a7779": for R-Car H1
  8. - "renesas,pwm-r8a7790": for R-Car H2
  9. - "renesas,pwm-r8a7791": for R-Car M2-W
  10. - "renesas,pwm-r8a7794": for R-Car E2
  11. - "renesas,pwm-r8a7795": for R-Car H3
  12. - "renesas,pwm-r8a7796": for R-Car M3-W
  13. - "renesas,pwm-r8a77965": for R-Car M3-N
  14. - "renesas,pwm-r8a77990": for R-Car E3
  15. - "renesas,pwm-r8a77995": for R-Car D3
  16. - reg: base address and length of the registers block for the PWM.
  17. - #pwm-cells: should be 2. See pwm.txt in this directory for a description of
  18. the cells format.
  19. - clocks: clock phandle and specifier pair.
  20. - pinctrl-0: phandle, referring to a default pin configuration node.
  21. - pinctrl-names: Set to "default".
  22. Example: R8A7743 (RZ/G1M) PWM Timer node
  23. pwm0: pwm@e6e30000 {
  24. compatible = "renesas,pwm-r8a7743", "renesas,pwm-rcar";
  25. reg = <0 0xe6e30000 0 0x8>;
  26. clocks = <&cpg CPG_MOD 523>;
  27. power-domains = <&sysc R8A7743_PD_ALWAYS_ON>;
  28. resets = <&cpg 523>;
  29. #pwm-cells = <2>;
  30. pinctrl-0 = <&pwm0_pins>;
  31. pinctrl-names = "default";
  32. };