diff options
author | Zhangfei Gao <zhangfei.gao@linaro.org> | 2014-04-21 00:07:27 -0400 |
---|---|---|
committer | Haojian Zhuang <haojian.zhuang@linaro.org> | 2014-05-11 23:30:32 -0400 |
commit | 5efaf09021a5817e5a274aa2d2fad8d92d12ed92 (patch) | |
tree | 14605bd9b8bea44f2ea419f503bf03bdd8cd4cb8 /Documentation | |
parent | 8b9dcb6cb7b69e6990bc4134546be5059342916c (diff) |
clk: hisi: add clk-hix5hd2.c
Signed-off-by: Haifeng Yan <haifeng.yan@linaro.org>
Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org>
Signed-off-by: Haojian Zhuang <haojian.zhuang@linaro.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/clock/hix5hd2-clock.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/clock/hix5hd2-clock.txt b/Documentation/devicetree/bindings/clock/hix5hd2-clock.txt new file mode 100644 index 000000000000..7894a64887cb --- /dev/null +++ b/Documentation/devicetree/bindings/clock/hix5hd2-clock.txt | |||
@@ -0,0 +1,31 @@ | |||
1 | * Hisilicon Hix5hd2 Clock Controller | ||
2 | |||
3 | The hix5hd2 clock controller generates and supplies clock to various | ||
4 | controllers within the hix5hd2 SoC. | ||
5 | |||
6 | Required Properties: | ||
7 | |||
8 | - compatible: should be "hisilicon,hix5hd2-clock" | ||
9 | - reg: Address and length of the register set | ||
10 | - #clock-cells: Should be <1> | ||
11 | |||
12 | Each clock is assigned an identifier and client nodes use this identifier | ||
13 | to specify the clock which they consume. | ||
14 | |||
15 | All these identifier could be found in <dt-bindings/clock/hix5hd2-clock.h>. | ||
16 | |||
17 | Examples: | ||
18 | clock: clock@f8a22000 { | ||
19 | compatible = "hisilicon,hix5hd2-clock"; | ||
20 | reg = <0xf8a22000 0x1000>; | ||
21 | #clock-cells = <1>; | ||
22 | }; | ||
23 | |||
24 | uart0: uart@f8b00000 { | ||
25 | compatible = "arm,pl011", "arm,primecell"; | ||
26 | reg = <0xf8b00000 0x1000>; | ||
27 | interrupts = <0 49 4>; | ||
28 | clocks = <&clock HIX5HD2_FIXED_83M>; | ||
29 | clock-names = "apb_pclk"; | ||
30 | status = "disabled"; | ||
31 | }; | ||