initial commit with v3.6.7
[linux-3.6.7-moxart.git] / Documentation / devicetree / bindings / clock / fixed-clock.txt
blob0b1fe7824093ae7c300bc4cd9077e71768056487
1 Binding for simple fixed-rate clock sources.
3 This binding uses the common clock binding[1].
5 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
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.
12 Optional properties:
13 - gpios : From common gpio binding; gpio connection to clock enable pin.
14 - clock-output-names : From common clock binding.
16 Example:
17         clock {
18                 compatible = "fixed-clock";
19                 #clock-cells = <0>;
20                 clock-frequency = <1000000000>;
21         };