About Kernel Documentation Linux Kernel Contact Linux Resources Linux Blog

Documentation / devicetree / bindings / clock / fixed-clock.txt


Based on kernel version 4.16.1. Page generated on 2018-04-09 11:52 EST.

1	Binding for simple fixed-rate clock sources.
2	
3	This binding uses the common clock binding[1].
4	
5	[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
6	
7	Required properties:
8	- compatible : shall be "fixed-clock".
9	- #clock-cells : from common clock binding; shall be set to 0.
10	- clock-frequency : frequency of clock in Hz. Should be a single cell.
11	
12	Optional properties:
13	- clock-accuracy : accuracy of clock in ppb (parts per billion).
14			   Should be a single cell.
15	- clock-output-names : From common clock binding.
16	
17	Example:
18		clock {
19			compatible = "fixed-clock";
20			#clock-cells = <0>;
21			clock-frequency = <1000000000>;
22			clock-accuracy = <100>;
23		};
Hide Line Numbers
About Kernel Documentation Linux Kernel Contact Linux Resources Linux Blog