1# SPDX-License-Identifier: GPL-2.0-only 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/qcom,gcc-mdm9607.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-mdm9607.h 19 20allOf: 21 - $ref: qcom,gcc.yaml# 22 23properties: 24 compatible: 25 enum: 26 - qcom,gcc-mdm9607 27 28required: 29 - compatible 30 31unevaluatedProperties: false 32 33examples: 34 - | 35 clock-controller@900000 { 36 compatible = "qcom,gcc-mdm9607"; 37 reg = <0x900000 0x4000>; 38 #clock-cells = <1>; 39 #reset-cells = <1>; 40 #power-domain-cells = <1>; 41 }; 42... 43