1# SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/sound/qcom,q6apm-lpass-dais.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm DSP LPASS (Low Power Audio SubSystem) Audio Ports
8
9maintainers:
10  - Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11  - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12
13allOf:
14  - $ref: dai-common.yaml#
15
16properties:
17  compatible:
18    enum:
19      - qcom,q6apm-lpass-dais
20
21  '#sound-dai-cells':
22    const: 1
23
24required:
25  - compatible
26  - '#sound-dai-cells'
27
28unevaluatedProperties: false
29
30examples:
31  - |
32    dais {
33        compatible = "qcom,q6apm-lpass-dais";
34        #sound-dai-cells = <1>;
35    };
36