diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2014-01-15 22:47:33 +0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-01-17 00:01:06 +0400 |
commit | cc4f2fe467c6f28933e34f134a2724a508bf0191 (patch) | |
tree | bcf1a057454616ed4b2e79ac7efe990a6a977004 | |
parent | 0eeff27b49b78979bb4d37d1ff8dda6751fa0ad8 (diff) | |
download | linux-cc4f2fe467c6f28933e34f134a2724a508bf0191.tar.xz |
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>
-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 @@ +Qualcomm Global Clock & Reset Controller Binding +------------------------------------------------ + +Required properties : +- compatible : shall contain only one of the following: + + "qcom,gcc-msm8660" + "qcom,gcc-msm8960" + "qcom,gcc-msm8974" + +- reg : shall contain base register location and length +- #clock-cells : shall contain 1 +- #reset-cells : shall contain 1 + +Example: + clock-controller@900000 { + compatible = "qcom,gcc-msm8960"; + reg = <0x900000 0x4000>; + #clock-cells = <1>; + #reset-cells = <1>; + }; |