Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | # 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 | |
| 7 | title: Qualcomm Global Clock & Reset Controller |
| 8 | |
| 9 | maintainers: |
| 10 | - Stephen Boyd <sboyd@kernel.org> |
| 11 | - Taniya Das <quic_tdas@quicinc.com> |
| 12 | |
| 13 | description: | |
| 14 | Qualcomm global clock control module provides the clocks, resets and power |
| 15 | domains. |
| 16 | |
| 17 | See also:: |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 18 | include/dt-bindings/clock/qcom,gcc-msm8953.h |
| 19 | include/dt-bindings/clock/qcom,gcc-mdm9607.h |
| 20 | |
| 21 | allOf: |
| 22 | - $ref: qcom,gcc.yaml# |
| 23 | |
| 24 | properties: |
| 25 | compatible: |
| 26 | enum: |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 27 | - qcom,gcc-mdm9607 |
| 28 | |
| 29 | required: |
| 30 | - compatible |
| 31 | |
| 32 | unevaluatedProperties: false |
| 33 | |
| 34 | examples: |
| 35 | - | |
| 36 | clock-controller@900000 { |
| 37 | compatible = "qcom,gcc-mdm9607"; |
| 38 | reg = <0x900000 0x4000>; |
| 39 | #clock-cells = <1>; |
| 40 | #reset-cells = <1>; |
| 41 | #power-domain-cells = <1>; |
| 42 | }; |
| 43 | ... |