1# SPDX-License-Identifier: GPL-2.0-only
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/clock/qcom,gcc-qcs404.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm Global Clock & Reset Controller on QCS404
8
9maintainers:
10  - Stephen Boyd <sboyd@kernel.org>
11  - Taniya Das <tdas@codeaurora.org>
12
13description: |
14  Qualcomm global clock control module provides the clocks, resets and power
15  domains on QCS404.
16
17  See also:: include/dt-bindings/clock/qcom,gcc-qcs404.h
18
19properties:
20  compatible:
21    const: qcom,gcc-qcs404
22
23required:
24  - compatible
25
26allOf:
27  - $ref: qcom,gcc.yaml#
28
29unevaluatedProperties: false
30
31examples:
32  - |
33    clock-controller@1800000 {
34      compatible = "qcom,gcc-qcs404";
35      reg = <0x01800000 0x80000>;
36      #clock-cells = <1>;
37      #reset-cells = <1>;
38      #power-domain-cells = <1>;
39    };
40...
41