Files
linux-net/Documentation/devicetree/bindings/sound/linux,spdif.yaml
Rob Herring (Arm) 59ba108806 ASoC: dt-bindings: linux,spdif: Add "port" node
The SPDIF receiver/transmitter can be connected to a DAI device via OF
graph port. It is already in use and supported.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Link: https://patch.msgid.link/20250910233615.775397-2-robh@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
2025-09-11 14:07:35 +01:00

43 lines
688 B
YAML

# SPDX-License-Identifier: GPL-2.0
%YAML 1.2
---
$id: http://devicetree.org/schemas/sound/linux,spdif.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Dummy SPDIF Transmitter/Receiver
maintainers:
- Mark Brown <broonie@kernel.org>
allOf:
- $ref: dai-common.yaml#
properties:
compatible:
enum:
- linux,spdif-dit
- linux,spdif-dir
"#sound-dai-cells":
const: 0
sound-name-prefix: true
port:
$ref: /schemas/graph.yaml#/properties/port
required:
- "#sound-dai-cells"
- compatible
additionalProperties: false
examples:
- |
spdif-out {
#sound-dai-cells = <0>;
compatible = "linux,spdif-dit";
};
...