blob: 559fc21435c8ddc219df438581878f099bf9cc7a [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: GPL-2.0-only
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/clock/qcom,gcc-other.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm Global Clock & Reset Controller
8
9maintainers:
10 - Stephen Boyd <sboyd@kernel.org>
11 - Taniya Das <quic_tdas@quicinc.com>
12
13description: |
14 Qualcomm global clock control module provides the clocks, resets and power
15 domains.
16
17 See also::
18 include/dt-bindings/clock/qcom,gcc-ipq6018.h
19 include/dt-bindings/reset/qcom,gcc-ipq6018.h
20 include/dt-bindings/clock/qcom,gcc-msm8953.h
21 include/dt-bindings/clock/qcom,gcc-mdm9607.h
22
23allOf:
24 - $ref: qcom,gcc.yaml#
25
26properties:
27 compatible:
28 enum:
29 - qcom,gcc-ipq6018
30 - qcom,gcc-mdm9607
31
32required:
33 - compatible
34
35unevaluatedProperties: false
36
37examples:
38 - |
39 clock-controller@900000 {
40 compatible = "qcom,gcc-mdm9607";
41 reg = <0x900000 0x4000>;
42 #clock-cells = <1>;
43 #reset-cells = <1>;
44 #power-domain-cells = <1>;
45 };
46...