blob: 0f4893e11ec44b173f801431b0682d1767b79dc9 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
Tom Rini6b642ac2024-10-01 12:20:28 -06004$id: http://devicetree.org/schemas/sound/linux,spdif.yaml#
Tom Rini53633a82024-02-29 12:33:36 -05005$schema: http://devicetree.org/meta-schemas/core.yaml#
6
Tom Rini6b642ac2024-10-01 12:20:28 -06007title: Dummy SPDIF Transmitter/Receiver
Tom Rini53633a82024-02-29 12:33:36 -05008
9maintainers:
10 - Mark Brown <broonie@kernel.org>
11
12allOf:
13 - $ref: dai-common.yaml#
14
15properties:
16 compatible:
Tom Rini6b642ac2024-10-01 12:20:28 -060017 enum:
18 - linux,spdif-dit
19 - linux,spdif-dir
Tom Rini53633a82024-02-29 12:33:36 -050020
21 "#sound-dai-cells":
22 const: 0
23
24 sound-name-prefix: true
25
26required:
27 - "#sound-dai-cells"
28 - compatible
29
30additionalProperties: false
31
32examples:
33 - |
34 spdif-out {
35 #sound-dai-cells = <0>;
36 compatible = "linux,spdif-dit";
37 };
38
39...