mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 21:53:28 +07:00
89c7e67128
clock controller nodes which also support power domains (gdscs') need to have a #power-domain-cells property. Add these for gcc and mmcc nodes of msm8974, gcc of apq8084 and msm8916. Also update gcc and mmcc bindings for it. Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> Acked-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Andy Gross <agross@codeaurora.org>
28 lines
666 B
Plaintext
28 lines
666 B
Plaintext
Qualcomm Multimedia Clock & Reset Controller Binding
|
|
----------------------------------------------------
|
|
|
|
Required properties :
|
|
- compatible : shall contain only one of the following:
|
|
|
|
"qcom,mmcc-apq8064"
|
|
"qcom,mmcc-apq8084"
|
|
"qcom,mmcc-msm8660"
|
|
"qcom,mmcc-msm8960"
|
|
"qcom,mmcc-msm8974"
|
|
|
|
- reg : shall contain base register location and length
|
|
- #clock-cells : shall contain 1
|
|
- #reset-cells : shall contain 1
|
|
|
|
Optional properties :
|
|
- #power-domain-cells : shall contain 1
|
|
|
|
Example:
|
|
clock-controller@4000000 {
|
|
compatible = "qcom,mmcc-msm8960";
|
|
reg = <0x4000000 0x1000>;
|
|
#clock-cells = <1>;
|
|
#reset-cells = <1>;
|
|
#power-domain-cells = <1>;
|
|
};
|