1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/qcom,qcs404-turingcc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Qualcomm Turing Clock & Reset Controller on QCS404 8 9maintainers: 10 - Bjorn Andersson <andersson@kernel.org> 11 12properties: 13 compatible: 14 const: qcom,qcs404-turingcc 15 16 reg: 17 maxItems: 1 18 19 clocks: 20 maxItems: 1 21 22 '#clock-cells': 23 const: 1 24 25 '#reset-cells': 26 const: 1 27 28required: 29 - compatible 30 - reg 31 - clocks 32 - '#clock-cells' 33 - '#reset-cells' 34 35additionalProperties: false 36 37examples: 38 - | 39 #include <dt-bindings/clock/qcom,gcc-qcs404.h> 40 clock-controller@800000 { 41 compatible = "qcom,qcs404-turingcc"; 42 reg = <0x00800000 0x30000>; 43 clocks = <&gcc GCC_CDSP_CFG_AHB_CLK>; 44 45 #clock-cells = <1>; 46 #reset-cells = <1>; 47 }; 48