axi-clkgen.txt 655 B

12345678910111213141516171819202122
  1. Binding for the axi-clkgen clock generator
  2. This binding uses the common clock binding[1].
  3. [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
  4. Required properties:
  5. - compatible : shall be "adi,axi-clkgen-1.00.a" or "adi,axi-clkgen-2.00.a".
  6. - #clock-cells : from common clock binding; Should always be set to 0.
  7. - reg : Address and length of the axi-clkgen register set.
  8. - clocks : Phandle and clock specifier for the parent clock.
  9. Optional properties:
  10. - clock-output-names : From common clock binding.
  11. Example:
  12. clock@0xff000000 {
  13. compatible = "adi,axi-clkgen";
  14. #clock-cells = <0>;
  15. reg = <0xff000000 0x1000>;
  16. clocks = <&osc 1>;
  17. };