mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-24 01:53:15 +07:00
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
27 lines
748 B
Plaintext
27 lines
748 B
Plaintext
Device Tree bindings for the Armada 370 DB audio
|
|
================================================
|
|
|
|
These Device Tree bindings are used to describe the audio complex
|
|
found on the Armada 370 DB platform.
|
|
|
|
Mandatory properties:
|
|
|
|
* compatible: must be "marvell,a370db-audio"
|
|
|
|
* marvell,audio-controller: a phandle that points to the audio
|
|
controller of the Armada 370 SoC.
|
|
|
|
* marvell,audio-codec: a set of three phandles that points to:
|
|
|
|
1/ the analog audio codec connected to the Armada 370 SoC
|
|
2/ the S/PDIF transceiver
|
|
3/ the S/PDIF receiver
|
|
|
|
Example:
|
|
|
|
sound {
|
|
compatible = "marvell,a370db-audio";
|
|
marvell,audio-controller = <&audio_controller>;
|
|
marvell,audio-codec = <&audio_codec &spdif_out &spdif_in>;
|
|
};
|