dt-bindings: clock: Add support for TCSR clock controller

Add the TCSR clock controller device tree binding.

Change-Id: Ibbafa1135c86e4b3eca3462a4878890cf25dd2b5
This commit is contained in:
Kalpak Kawadkar
2022-02-28 19:04:36 +05:30
committed by Gerrit - the friendly Code Review server
parent 0e919624a6
commit d5a7628147

View File

@@ -0,0 +1,20 @@
Qualcomm Technologies, Inc. Top-Level CSR Clock & Reset Controller Binding
------------------------------------------------
Required properties :
- compatible : shall contain only one of the following:
"qcom,tcsrcc"
- reg : shall contain base register location and length
- #clock-cells : from common clock binding, shall contain 1.
- #power-domain-cells : from generic power domain binding, shall contain 1.
- #reset-cells : from common reset binding, shall contain 1.
Example:
tcsrcc: clock-controller@1fc0000 {
compatible = "qcom,tcsrcc", "syscon";
reg = <0x1fc0000 0x30000>;
reg-name = "cc_base";
#clock-cells = <1>;
#reset-cells = <1>;
};