aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-08-30 11:04:23 +0100
committerMark Brown <broonie@linaro.org>2013-08-30 11:04:23 +0100
commit0f97b69a9feb1b0f21d25925715de142838fcc32 (patch)
tree2e7556672199d5152af5c41387571aaef87ea4bf /Documentation/devicetree/bindings/sound
parentMerge remote-tracking branch 'asoc/topic/fsi' into tmp (diff)
parentASoC: fsl: Drop SND_SOC_FSL_UTILS from SND_SOC_IMX_SPDIF (diff)
downloadlinux-dev-0f97b69a9feb1b0f21d25925715de142838fcc32.tar.xz
linux-dev-0f97b69a9feb1b0f21d25925715de142838fcc32.zip
Merge remote-tracking branch 'asoc/topic/fsl' into tmp
Diffstat (limited to 'Documentation/devicetree/bindings/sound')
-rw-r--r--Documentation/devicetree/bindings/sound/imx-audio-spdif.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/imx-audio-spdif.txt b/Documentation/devicetree/bindings/sound/imx-audio-spdif.txt
new file mode 100644
index 000000000000..7d13479f9c3c
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/imx-audio-spdif.txt
@@ -0,0 +1,34 @@
+Freescale i.MX audio complex with S/PDIF transceiver
+
+Required properties:
+
+ - compatible : "fsl,imx-audio-spdif"
+
+ - model : The user-visible name of this sound complex
+
+ - spdif-controller : The phandle of the i.MX S/PDIF controller
+
+
+Optional properties:
+
+ - spdif-out : This is a boolean property. If present, the transmitting
+ function of S/PDIF will be enabled, indicating there's a physical
+ S/PDIF out connector/jack on the board or it's connecting to some
+ other IP block, such as an HDMI encoder/display-controller.
+
+ - spdif-in : This is a boolean property. If present, the receiving
+ function of S/PDIF will be enabled, indicating there's a physical
+ S/PDIF in connector/jack on the board.
+
+* Note: At least one of these two properties should be set in the DT binding.
+
+
+Example:
+
+sound-spdif {
+ compatible = "fsl,imx-audio-spdif";
+ model = "imx-spdif";
+ spdif-controller = <&spdif>;
+ spdif-out;
+ spdif-in;
+};