1*2846c905SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*2846c905SEmmanuel Vadot%YAML 1.2 3*2846c905SEmmanuel Vadot--- 4*2846c905SEmmanuel Vadot$id: http://devicetree.org/schemas/clock/qcom,sm6115-lpasscc.yaml# 5*2846c905SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*2846c905SEmmanuel Vadot 7*2846c905SEmmanuel Vadottitle: Qualcomm LPASS Core & Audio Clock Controller on SM6115 8*2846c905SEmmanuel Vadot 9*2846c905SEmmanuel Vadotmaintainers: 10*2846c905SEmmanuel Vadot - Konrad Dybcio <konradybcio@kernel.org> 11*2846c905SEmmanuel Vadot - Srinivas Kandagatla <srinivas.kandagatla@linaro.org> 12*2846c905SEmmanuel Vadot 13*2846c905SEmmanuel Vadotdescription: | 14*2846c905SEmmanuel Vadot Qualcomm LPASS core and audio clock controllers provide audio-related resets 15*2846c905SEmmanuel Vadot on SM6115 and its derivatives. 16*2846c905SEmmanuel Vadot 17*2846c905SEmmanuel Vadot See also:: 18*2846c905SEmmanuel Vadot include/dt-bindings/clock/qcom,sm6115-lpasscc.h 19*2846c905SEmmanuel Vadot 20*2846c905SEmmanuel Vadotproperties: 21*2846c905SEmmanuel Vadot compatible: 22*2846c905SEmmanuel Vadot enum: 23*2846c905SEmmanuel Vadot - qcom,sm6115-lpassaudiocc 24*2846c905SEmmanuel Vadot - qcom,sm6115-lpasscc 25*2846c905SEmmanuel Vadot 26*2846c905SEmmanuel Vadot reg: 27*2846c905SEmmanuel Vadot maxItems: 1 28*2846c905SEmmanuel Vadot 29*2846c905SEmmanuel Vadot '#reset-cells': 30*2846c905SEmmanuel Vadot const: 1 31*2846c905SEmmanuel Vadot 32*2846c905SEmmanuel Vadotrequired: 33*2846c905SEmmanuel Vadot - compatible 34*2846c905SEmmanuel Vadot - reg 35*2846c905SEmmanuel Vadot - '#reset-cells' 36*2846c905SEmmanuel Vadot 37*2846c905SEmmanuel VadotadditionalProperties: false 38*2846c905SEmmanuel Vadot 39*2846c905SEmmanuel Vadotexamples: 40*2846c905SEmmanuel Vadot - | 41*2846c905SEmmanuel Vadot lpass_audiocc: clock-controller@a6a9000 { 42*2846c905SEmmanuel Vadot compatible = "qcom,sm6115-lpassaudiocc"; 43*2846c905SEmmanuel Vadot reg = <0x0a6a9000 0x1000>; 44*2846c905SEmmanuel Vadot #reset-cells = <1>; 45*2846c905SEmmanuel Vadot }; 46*2846c905SEmmanuel Vadot... 47