From 7ada09159ee84889c49d8a39c838a524788b797f Mon Sep 17 00:00:00 2001 From: Vivek Aknurwar Date: Wed, 13 Nov 2019 13:41:53 -0800 Subject: [PATCH] dt-bindings: clocks: Add debugcc clock bindings for Lahaina Add bindings documentation for debug cc driver on Lahaina. Change-Id: I5acfc62ce4cab3e990d5ed1ef1534b7780b63d97 --- bindings/clock/qcom,debugcc.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 bindings/clock/qcom,debugcc.txt diff --git a/bindings/clock/qcom,debugcc.txt b/bindings/clock/qcom,debugcc.txt new file mode 100644 index 00000000..6239c8b1 --- /dev/null +++ b/bindings/clock/qcom,debugcc.txt @@ -0,0 +1,24 @@ +Qualcomm Technologies, Inc. Debug Clock Controller Binding +---------------------------------------------------------- + +Required properties : +- compatible: Shall contain "qcom,lahaina-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>; + };