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

This commit is contained in:
qctecmdr
2022-03-23 04:53:09 -07:00
committed by Gerrit - the friendly Code Review server

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>;
};