diff options
author | Robert Jarzmik <robert.jarzmik@free.fr> | 2014-07-30 16:51:00 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-09-30 15:31:31 -0400 |
commit | 53f3394a0fe97420ec260e4dad7854add90a66dd (patch) | |
tree | 6b77aafa55492fd5a91f6a884491344813bc0f85 /Documentation | |
parent | bda003036684b9779fca2b3d457621eaff9bcd0a (diff) |
clk: dts: document pxa clock binding
Document the device-tree binding of Marvell PXA based SoCs.
PXA clocks are mostly fixed rate and fixed ratio clocks derived from an
external oscillator, and gated by a register set (CKEN or CKEN*).
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/clock/pxa-clock.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/clock/pxa-clock.txt b/Documentation/devicetree/bindings/clock/pxa-clock.txt new file mode 100644 index 000000000000..4b4a9024bd99 --- /dev/null +++ b/Documentation/devicetree/bindings/clock/pxa-clock.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | * Clock bindings for Marvell PXA chips | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: Should be "marvell,pxa-clocks" | ||
5 | - #clock-cells: Should be <1> | ||
6 | |||
7 | The clock consumer should specify the desired clock by having the clock | ||
8 | ID in its "clocks" phandle cell (see include/.../pxa-clock.h). | ||
9 | |||
10 | Examples: | ||
11 | |||
12 | pxa2xx_clks: pxa2xx_clks@41300004 { | ||
13 | compatible = "marvell,pxa-clocks"; | ||
14 | #clock-cells = <1>; | ||
15 | status = "okay"; | ||
16 | }; | ||