mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 01:52:13 +00:00
a5408ec605
Add clocks/resets defines for the global clock controller found on Qualcomm MSM8916 SoCs. Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
28 lines
655 B
Plaintext
28 lines
655 B
Plaintext
Qualcomm Global Clock & Reset Controller Binding
|
|
------------------------------------------------
|
|
|
|
Required properties :
|
|
- compatible : shall contain only one of the following:
|
|
|
|
"qcom,gcc-apq8064"
|
|
"qcom,gcc-apq8084"
|
|
"qcom,gcc-ipq8064"
|
|
"qcom,gcc-msm8660"
|
|
"qcom,gcc-msm8916"
|
|
"qcom,gcc-msm8960"
|
|
"qcom,gcc-msm8974"
|
|
"qcom,gcc-msm8974pro"
|
|
"qcom,gcc-msm8974pro-ac"
|
|
|
|
- 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>;
|
|
};
|