1*8bab661aSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause 2*8bab661aSEmmanuel Vadot%YAML 1.2 3*8bab661aSEmmanuel Vadot--- 4*8bab661aSEmmanuel Vadot$id: http://devicetree.org/schemas/sound/qcom,q6prm.yaml# 5*8bab661aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*8bab661aSEmmanuel Vadot 7*8bab661aSEmmanuel Vadottitle: Qualcomm Proxy Resource Manager (Q6PRM) 8*8bab661aSEmmanuel Vadot 9*8bab661aSEmmanuel Vadotmaintainers: 10*8bab661aSEmmanuel Vadot - Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> 11*8bab661aSEmmanuel Vadot - Srinivas Kandagatla <srinivas.kandagatla@linaro.org> 12*8bab661aSEmmanuel Vadot 13*8bab661aSEmmanuel VadotallOf: 14*8bab661aSEmmanuel Vadot - $ref: /schemas/soc/qcom/qcom,apr-services.yaml# 15*8bab661aSEmmanuel Vadot 16*8bab661aSEmmanuel Vadotproperties: 17*8bab661aSEmmanuel Vadot compatible: 18*8bab661aSEmmanuel Vadot enum: 19*8bab661aSEmmanuel Vadot - qcom,q6prm 20*8bab661aSEmmanuel Vadot 21*8bab661aSEmmanuel Vadot clock-controller: 22*8bab661aSEmmanuel Vadot $ref: /schemas/sound/qcom,q6dsp-lpass-clocks.yaml# 23*8bab661aSEmmanuel Vadot unevaluatedProperties: false 24*8bab661aSEmmanuel Vadot description: Qualcomm DSP LPASS clock controller 25*8bab661aSEmmanuel Vadot 26*8bab661aSEmmanuel Vadotrequired: 27*8bab661aSEmmanuel Vadot - compatible 28*8bab661aSEmmanuel Vadot - clock-controller 29*8bab661aSEmmanuel Vadot 30*8bab661aSEmmanuel VadotunevaluatedProperties: false 31*8bab661aSEmmanuel Vadot 32*8bab661aSEmmanuel Vadotexamples: 33*8bab661aSEmmanuel Vadot - | 34*8bab661aSEmmanuel Vadot #include <dt-bindings/soc/qcom,gpr.h> 35*8bab661aSEmmanuel Vadot 36*8bab661aSEmmanuel Vadot gpr { 37*8bab661aSEmmanuel Vadot #address-cells = <1>; 38*8bab661aSEmmanuel Vadot #size-cells = <0>; 39*8bab661aSEmmanuel Vadot 40*8bab661aSEmmanuel Vadot service@2 { 41*8bab661aSEmmanuel Vadot reg = <GPR_PRM_MODULE_IID>; 42*8bab661aSEmmanuel Vadot compatible = "qcom,q6prm"; 43*8bab661aSEmmanuel Vadot qcom,protection-domain = "avs/audio", "msm/adsp/audio_pd"; 44*8bab661aSEmmanuel Vadot 45*8bab661aSEmmanuel Vadot clock-controller { 46*8bab661aSEmmanuel Vadot compatible = "qcom,q6prm-lpass-clocks"; 47*8bab661aSEmmanuel Vadot #clock-cells = <2>; 48*8bab661aSEmmanuel Vadot }; 49*8bab661aSEmmanuel Vadot }; 50*8bab661aSEmmanuel Vadot }; 51