renesas,cpg-div6-clocks.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. * Renesas CPG DIV6 Clock
  2. The CPG DIV6 clocks are variable factor clocks provided by the Clock Pulse
  3. Generator (CPG). Their clock input is divided by a configurable factor from 1
  4. to 64.
  5. Required Properties:
  6. - compatible: Must be one of the following
  7. - "renesas,r8a73a4-div6-clock" for R8A73A4 (R-Mobile APE6) DIV6 clocks
  8. - "renesas,r8a7740-div6-clock" for R8A7740 (R-Mobile A1) DIV6 clocks
  9. - "renesas,r8a7790-div6-clock" for R8A7790 (R-Car H2) DIV6 clocks
  10. - "renesas,r8a7791-div6-clock" for R8A7791 (R-Car M2-W) DIV6 clocks
  11. - "renesas,r8a7793-div6-clock" for R8A7793 (R-Car M2-N) DIV6 clocks
  12. - "renesas,r8a7794-div6-clock" for R8A7794 (R-Car E2) DIV6 clocks
  13. - "renesas,sh73a0-div6-clock" for SH73A0 (SH-Mobile AG5) DIV6 clocks
  14. and "renesas,cpg-div6-clock" as a fallback.
  15. - reg: Base address and length of the memory resource used by the DIV6 clock
  16. - clocks: Reference to the parent clock(s); either one, four, or eight
  17. clocks must be specified. For clocks with multiple parents, invalid
  18. settings must be specified as "<0>".
  19. - #clock-cells: Must be 0
  20. - clock-output-names: The name of the clock as a free-form string
  21. Example
  22. -------
  23. sdhi2_clk: sdhi2_clk@e615007c {
  24. compatible = "renesas,r8a73a4-div6-clock", "renesas,cpg-div6-clock";
  25. reg = <0 0xe615007c 0 4>;
  26. clocks = <&pll1_div2_clk>, <&cpg_clocks R8A73A4_CLK_PLL2S>,
  27. <0>, <&extal2_clk>;
  28. #clock-cells = <0>;
  29. clock-output-names = "sdhi2ck";
  30. };