aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/clock
diff options
context:
space:
mode:
authorJassi Brar <jaswinder.singh@linaro.org>2015-03-04 06:04:03 -0500
committerMichael Turquette <mturquette@linaro.org>2015-04-10 16:51:55 -0400
commit1ccdd04f536510b7bd9b09efe31b7002ebfedf9c (patch)
tree81e17fcf6482aa5ea1cf8a57804c2287734a61e8 /Documentation/devicetree/bindings/clock
parentc7739aebec22d43fa78389f286bd5520fc53562b (diff)
clk: Add clock driver for mb86s7x
The CRG11 clock controller is managed by remote f/w. This driver simply maps Linux CLK ops onto mailbox api. Signed-off-by: Andy Green <andy.green@linaro.org> Signed-off-by: Vincent Yang <vincent.yang@socionext.com> Signed-off-by: Tetsuya Nuriya <nuriya.tetsuya@socionext.com> Signed-off-by: Michael Turquette <mturquette@linaro.org>
Diffstat (limited to 'Documentation/devicetree/bindings/clock')
-rw-r--r--Documentation/devicetree/bindings/clock/fujitsu,mb86s70-crg11.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/clock/fujitsu,mb86s70-crg11.txt b/Documentation/devicetree/bindings/clock/fujitsu,mb86s70-crg11.txt
new file mode 100644
index 000000000000..332396265689
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/fujitsu,mb86s70-crg11.txt
@@ -0,0 +1,26 @@
1Fujitsu CRG11 clock driver bindings
2-----------------------------------
3
4Required properties :
5- compatible : Shall contain "fujitsu,mb86s70-crg11"
6- #clock-cells : Shall be 3 {cntrlr domain port}
7
8The consumer specifies the desired clock pointing to its phandle.
9
10Example:
11
12 clock: crg11 {
13 compatible = "fujitsu,mb86s70-crg11";
14 #clock-cells = <3>;
15 };
16
17 mhu: mhu0@2b1f0000 {
18 #mbox-cells = <1>;
19 compatible = "arm,mhu";
20 reg = <0 0x2B1F0000 0x1000>;
21 interrupts = <0 36 4>, /* LP Non-Sec */
22 <0 35 4>, /* HP Non-Sec */
23 <0 37 4>; /* Secure */
24 clocks = <&clock 0 2 1>; /* Cntrlr:0 Domain:2 Port:1 */
25 clock-names = "clk";
26 };