diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2014-01-15 13:47:33 -0500 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-01-16 15:01:06 -0500 |
commit | cc4f2fe467c6f28933e34f134a2724a508bf0191 (patch) | |
tree | bcf1a057454616ed4b2e79ac7efe990a6a977004 /Documentation | |
parent | 0eeff27b49b78979bb4d37d1ff8dda6751fa0ad8 (diff) |
devicetree: bindings: Document qcom,gcc
Document the global clock controller found on Qualcomm devices.
Cc: <devicetree@vger.kernel.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/clock/qcom,gcc.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/clock/qcom,gcc.txt b/Documentation/devicetree/bindings/clock/qcom,gcc.txt new file mode 100644 index 000000000000..767401f42871 --- /dev/null +++ b/Documentation/devicetree/bindings/clock/qcom,gcc.txt | |||
@@ -0,0 +1,21 @@ | |||
1 | Qualcomm Global Clock & Reset Controller Binding | ||
2 | ------------------------------------------------ | ||
3 | |||
4 | Required properties : | ||
5 | - compatible : shall contain only one of the following: | ||
6 | |||
7 | "qcom,gcc-msm8660" | ||
8 | "qcom,gcc-msm8960" | ||
9 | "qcom,gcc-msm8974" | ||
10 | |||
11 | - reg : shall contain base register location and length | ||
12 | - #clock-cells : shall contain 1 | ||
13 | - #reset-cells : shall contain 1 | ||
14 | |||
15 | Example: | ||
16 | clock-controller@900000 { | ||
17 | compatible = "qcom,gcc-msm8960"; | ||
18 | reg = <0x900000 0x4000>; | ||
19 | #clock-cells = <1>; | ||
20 | #reset-cells = <1>; | ||
21 | }; | ||