fixed-clock.txt 606 B

123456789101112131415161718192021
  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. - gpios : From common gpio binding; gpio connection to clock enable pin.
  10. - clock-output-names : From common clock binding.
  11. Example:
  12. clock {
  13. compatible = "fixed-clock";
  14. #clock-cells = <0>;
  15. clock-frequency = <1000000000>;
  16. };