fixed-factor-clock.txt 597 B

123456789101112131415161718192021222324
  1. Binding for simple fixed factor rate clock sources.
  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 "fixed-factor-clock".
  6. - #clock-cells : from common clock binding; shall be set to 0.
  7. - clock-div: fixed divider.
  8. - clock-mult: fixed multiplier.
  9. - clocks: parent clock.
  10. Optional properties:
  11. - clock-output-names : From common clock binding.
  12. Example:
  13. clock {
  14. compatible = "fixed-factor-clock";
  15. clocks = <&parentclk>;
  16. #clock-cells = <0>;
  17. clock-div = <2>;
  18. clock-mult = <1>;
  19. };