mirror of
https://github.com/Evolution-X-Devices/kernel_xiaomi_sm8450-devicetrees
synced 2026-02-01 08:51:30 +00:00
Add the GCC, GPUCC, VIDEOCC, DISPCC, CAMCC, RPMHCC and DEBUGCC clock controller bindings for Anorak device. Change-Id: I942b66b6e3f389aee641dab06136e40d066a08a6
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
Qualcomm Technologies, Inc. Debug Clock Controller Binding
|
|
----------------------------------------------------------
|
|
|
|
Required properties :
|
|
- compatible : shall contain only one of the following:
|
|
|
|
"qcom,lahaina-debugcc"
|
|
"qcom,shima-debugcc"
|
|
"qcom,holi-debugcc"
|
|
"qcom,sdxlemur-debugcc"
|
|
"qcom,waipio-debugcc"
|
|
"qcom,diwali-debugcc"
|
|
"qcom,neo-debugcc"
|
|
"qcom,parrot-debugcc"
|
|
"qcom,anorak-debugcc"
|
|
|
|
- qcom,gcc: phandle to the GCC device node.
|
|
- qcom,videocc: phandle to the Video CC device node.
|
|
- qcom,camcc: phandle to the Camera CC device node.
|
|
- qcom,dispcc: phandle to the Display CC device node.
|
|
- clock-names: Shall contain "xo_clk_src"
|
|
- clocks: phandle + clock reference to the CXO clock.
|
|
- #clock-cells : Shall contain 1.
|
|
|
|
Example:
|
|
clock_debug: qcom,cc-debug {
|
|
compatible = "qcom,lahaina-debugcc";
|
|
qcom,gcc = <&clock_gcc>;
|
|
qcom,videocc = <&clock_videocc>;
|
|
qcom,camcc = <&clock_camcc>;
|
|
qcom,dispcc = <&clock_dispcc>;
|
|
clock-names = "xo_clk_src";
|
|
clocks = <&clock_rpmh RPMH_CXO_CLK>;
|
|
#clock-cells = <1>;
|
|
};
|