1a03965edSAnsuel Smith# SPDX-License-Identifier: GPL-2.0-only 2a03965edSAnsuel Smith%YAML 1.2 3a03965edSAnsuel Smith--- 4a03965edSAnsuel Smith$id: http://devicetree.org/schemas/clock/qcom,gcc-other.yaml# 5a03965edSAnsuel Smith$schema: http://devicetree.org/meta-schemas/core.yaml# 6a03965edSAnsuel Smith 7ece3c319SKrzysztof Kozlowskititle: Qualcomm Global Clock & Reset Controller 8a03965edSAnsuel Smith 9a03965edSAnsuel Smithmaintainers: 10a03965edSAnsuel Smith - Stephen Boyd <sboyd@kernel.org> 11a03965edSAnsuel Smith - Taniya Das <tdas@codeaurora.org> 12a03965edSAnsuel Smith 13adbf85aaSAnsuel Smithdescription: | 14ece3c319SKrzysztof Kozlowski Qualcomm global clock control module provides the clocks, resets and power 15ece3c319SKrzysztof Kozlowski domains. 16a03965edSAnsuel Smith 17ece3c319SKrzysztof Kozlowski See also:: 18ece3c319SKrzysztof Kozlowski include/dt-bindings/clock/qcom,gcc-ipq4019.h 19ece3c319SKrzysztof Kozlowski include/dt-bindings/clock/qcom,gcc-ipq6018.h 20ece3c319SKrzysztof Kozlowski include/dt-bindings/reset/qcom,gcc-ipq6018.h 21ece3c319SKrzysztof Kozlowski include/dt-bindings/clock/qcom,gcc-msm8953.h 22ece3c319SKrzysztof Kozlowski include/dt-bindings/clock/qcom,gcc-mdm9607.h 23ece3c319SKrzysztof Kozlowski include/dt-bindings/clock/qcom,gcc-mdm9615.h 24ece3c319SKrzysztof Kozlowski include/dt-bindings/reset/qcom,gcc-mdm9615.h 25a03965edSAnsuel Smith 26a03965edSAnsuel SmithallOf: 27ece3c319SKrzysztof Kozlowski - $ref: qcom,gcc.yaml# 28a03965edSAnsuel Smith 29a03965edSAnsuel Smithproperties: 30a03965edSAnsuel Smith compatible: 31a03965edSAnsuel Smith enum: 32a03965edSAnsuel Smith - qcom,gcc-ipq4019 33a03965edSAnsuel Smith - qcom,gcc-ipq6018 34a03965edSAnsuel Smith - qcom,gcc-mdm9607 35a03965edSAnsuel Smith - qcom,gcc-msm8953 36a03965edSAnsuel Smith - qcom,gcc-mdm9615 37a03965edSAnsuel Smith 38a03965edSAnsuel Smithrequired: 39a03965edSAnsuel Smith - compatible 40a03965edSAnsuel Smith 41a03965edSAnsuel SmithunevaluatedProperties: false 42a03965edSAnsuel Smith 43a03965edSAnsuel Smithexamples: 44a03965edSAnsuel Smith - | 45a03965edSAnsuel Smith clock-controller@900000 { 46*7c9c38fcSDmitry Baryshkov compatible = "qcom,gcc-mdm9607"; 47a03965edSAnsuel Smith reg = <0x900000 0x4000>; 48a03965edSAnsuel Smith #clock-cells = <1>; 49a03965edSAnsuel Smith #reset-cells = <1>; 50a03965edSAnsuel Smith #power-domain-cells = <1>; 51a03965edSAnsuel Smith }; 52a03965edSAnsuel Smith... 53