Files
kernel_xiaomi_sm8450-device…/bindings/clock/qcom,debugcc.txt
Kalpak Kawadkar 1beb1dfda6 dt-bindings: clock: Add support for NEO clock controllers
Add the GCC, GPUCC, VIDEOCC, DISPCC, CAMCC, RPMHCC and debug
clock controller bindings for Neo device.

Change-Id: I0c751723558c0fefa39e4ce6d52038569738ac8c
2021-10-13 10:23:38 +05:30

34 lines
1004 B
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,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>;
};