fixed-clock.txt 654 B

1234567891011121314151617181920212223
  1. Binding for simple fixed-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-clock".
  6. - #clock-cells : from common clock binding; shall be set to 0.
  7. - clock-frequency : frequency of clock in Hz. Should be a single cell.
  8. Optional properties:
  9. - clock-accuracy : accuracy of clock in ppb (parts per billion).
  10. Should be a single cell.
  11. - clock-output-names : From common clock binding.
  12. Example:
  13. clock {
  14. compatible = "fixed-clock";
  15. #clock-cells = <0>;
  16. clock-frequency = <1000000000>;
  17. clock-accuracy = <100>;
  18. };