forked from Minki/linux
24d8fba44a
Add a driver for the global clock controller found on IPQ8064 based platforms. This should allow most non-multimedia device drivers to probe and control their clocks. This is currently missing clocks for USB HSIC and networking devices. Signed-off-by: Kumar Gala <galak@codeaurora.org> Signed-off-by: Andy Gross <agross@codeaurora.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
27 lines
633 B
Plaintext
27 lines
633 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-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>;
|
|
};
|