st,clkgen-pll.txt 846 B

12345678910111213141516171819202122232425262728293031323334353637
  1. Binding for a ST pll clock driver.
  2. This binding uses the common clock binding[1].
  3. Base address is located to the parent node. See clock binding[2]
  4. [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
  5. [2] Documentation/devicetree/bindings/clock/st/st,clkgen.txt
  6. Required properties:
  7. - compatible : shall be:
  8. "st,clkgen-pll0"
  9. "st,clkgen-pll1"
  10. "st,stih407-clkgen-plla9"
  11. "st,stih418-clkgen-plla9"
  12. - #clock-cells : From common clock binding; shall be set to 1.
  13. - clocks : From common clock binding
  14. - clock-output-names : From common clock binding.
  15. Example:
  16. clockgen-a9@92b0000 {
  17. compatible = "st,clkgen-c32";
  18. reg = <0x92b0000 0xffff>;
  19. clockgen_a9_pll: clockgen-a9-pll {
  20. #clock-cells = <1>;
  21. compatible = "st,stih407-clkgen-plla9";
  22. clocks = <&clk_sysin>;
  23. clock-output-names = "clockgen-a9-pll-odf";
  24. };
  25. };