blob: a67b79cbe006b54637b4b2c980756270f89d66cb [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/sound/linux,bt-sco.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Bluetooth SCO Audio Codec
8
9maintainers:
10 - Mark Brown <broonie@kernel.org>
11
12allOf:
13 - $ref: dai-common.yaml#
14
15properties:
16 '#sound-dai-cells':
17 enum:
18 - 0
19
20 # For Wideband PCM
21 - 1
22
23 compatible:
24 enum:
25 - delta,dfbmcs320
26 - linux,bt-sco
27
28required:
29 - '#sound-dai-cells'
30 - compatible
31
32unevaluatedProperties: false
33
34examples:
35 - |
36 codec {
37 #sound-dai-cells = <0>;
38 compatible = "linux,bt-sco";
39 };
40
41...