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,sm6115-lpasscc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Qualcomm LPASS Core & Audio Clock Controller on SM6115 8 9maintainers: 10 - Konrad Dybcio <[email protected]> 11 - Srinivas Kandagatla <[email protected]> 12 13description: | 14 Qualcomm LPASS core and audio clock controllers provide audio-related resets 15 on SM6115 and its derivatives. 16 17 See also:: 18 include/dt-bindings/clock/qcom,sm6115-lpasscc.h 19 20properties: 21 compatible: 22 enum: 23 - qcom,sm6115-lpassaudiocc 24 - qcom,sm6115-lpasscc 25 26 reg: 27 maxItems: 1 28 29 '#reset-cells': 30 const: 1 31 32required: 33 - compatible 34 - reg 35 - '#reset-cells' 36 37additionalProperties: false 38 39examples: 40 - | 41 lpass_audiocc: clock-controller@a6a9000 { 42 compatible = "qcom,sm6115-lpassaudiocc"; 43 reg = <0x0a6a9000 0x1000>; 44 #reset-cells = <1>; 45 }; 46... 47