Reference in all sound components which have '#sound-dai-cells' the dai-common.yaml schema, which allows to use 'sound-name-prefix' property. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Tested-by: Nicolas Frattaroli <frattaroli.nicolas@gmail.com> Acked-by: Nicolas Frattaroli <frattaroli.nicolas@gmail.com> Link: https://lore.kernel.org/r/20221203160442.69594-2-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
42 lines
633 B
YAML
42 lines
633 B
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/sound/linux,bt-sco.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Bluetooth SCO Audio Codec
|
|
|
|
maintainers:
|
|
- Mark Brown <broonie@kernel.org>
|
|
|
|
allOf:
|
|
- $ref: dai-common.yaml#
|
|
|
|
properties:
|
|
'#sound-dai-cells':
|
|
enum:
|
|
- 0
|
|
|
|
# For Wideband PCM
|
|
- 1
|
|
|
|
compatible:
|
|
enum:
|
|
- delta,dfbmcs320
|
|
- linux,bt-sco
|
|
|
|
required:
|
|
- '#sound-dai-cells'
|
|
- compatible
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
codec {
|
|
#sound-dai-cells = <0>;
|
|
compatible = "linux,bt-sco";
|
|
};
|
|
|
|
...
|