renesas,r8a73a4-cpg-clocks.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. * Renesas R8A73A4 Clock Pulse Generator (CPG)
  2. The CPG generates core clocks for the R8A73A4 SoC. It includes five PLLs
  3. and several fixed ratio dividers.
  4. Required Properties:
  5. - compatible: Must be "renesas,r8a73a4-cpg-clocks"
  6. - reg: Base address and length of the memory resource used by the CPG
  7. - clocks: Reference to the parent clocks ("extal1" and "extal2")
  8. - #clock-cells: Must be 1
  9. - clock-output-names: The names of the clocks. Supported clocks are "main",
  10. "pll0", "pll1", "pll2", "pll2s", "pll2h", "z", "z2", "i", "m3", "b",
  11. "m1", "m2", "zx", "zs", and "hp".
  12. Example
  13. -------
  14. cpg_clocks: cpg_clocks@e6150000 {
  15. compatible = "renesas,r8a73a4-cpg-clocks";
  16. reg = <0 0xe6150000 0 0x10000>;
  17. clocks = <&extal1_clk>, <&extal2_clk>;
  18. #clock-cells = <1>;
  19. clock-output-names = "main", "pll0", "pll1", "pll2",
  20. "pll2s", "pll2h", "z", "z2",
  21. "i", "m3", "b", "m1", "m2",
  22. "zx", "zs", "hp";
  23. };