snps,hsdk-pll-clock.txt 762 B

12345678910111213141516171819202122232425262728
  1. Binding for the HSDK Generic PLL clock
  2. This binding uses the common clock binding[1].
  3. [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
  4. Required properties:
  5. - compatible: should be "snps,hsdk-<name>-pll-clock"
  6. "snps,hsdk-core-pll-clock"
  7. "snps,hsdk-gp-pll-clock"
  8. "snps,hsdk-hdmi-pll-clock"
  9. - reg : should contain base register location and length.
  10. - clocks: shall be the input parent clock phandle for the PLL.
  11. - #clock-cells: from common clock binding; Should always be set to 0.
  12. Example:
  13. input_clk: input-clk {
  14. clock-frequency = <33333333>;
  15. compatible = "fixed-clock";
  16. #clock-cells = <0>;
  17. };
  18. cpu_clk: cpu-clk@0 {
  19. compatible = "snps,hsdk-core-pll-clock";
  20. reg = <0x00 0x10>;
  21. #clock-cells = <0>;
  22. clocks = <&input_clk>;
  23. };