renesas,sh73a0-cpg-clocks.txt 1.1 KB

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