aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.txt
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2012-03-16 04:56:44 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-04-01 06:28:27 -0400
commitc448303e86c970cca4833bd9480c08f09b948b40 (patch)
treecfa6b74ffad848b97d8d19be6a04bd279bcb5591 /Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.txt
parent09ce1111f3893106463559ed62f27fe999ace5d6 (diff)
ASoC: fsl: add imx-sgtl5000 machine driver
This is the initial imx-sgtl5000 machine driver support with only playback dai link implemented. More features can be added on top of it later. It's a device tree only machine driver working with fsl_ssi driver. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Timur Tabi <timur@freescale.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.txt')
-rw-r--r--Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.txt b/Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.txt
new file mode 100644
index 000000000000..421a374790b3
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.txt
@@ -0,0 +1,24 @@
1Freescale i.MX audio complex with SGTL5000 codec
2
3Required properties:
4- compatible : "fsl,imx-audio-sgtl5000"
5- model : The user-visible name of this sound complex
6- ssi-controller : The phandle of the i.MX SSI controller
7- audio-codec : The phandle of the SGTL5000 audio codec
8- mux-int-port : The internal port of the i.MX audio muxer (AUDMUX)
9- mux-ext-port : The external port of the i.MX audio muxer
10
11Note: The AUDMUX port numbering should start at 1, which is consistent with
12hardware manual.
13
14Example:
15
16sound {
17 compatible = "fsl,imx51-babbage-sgtl5000",
18 "fsl,imx-audio-sgtl5000";
19 model = "imx51-babbage-sgtl5000";
20 ssi-controller = <&ssi1>;
21 audio-codec = <&sgtl5000>;
22 mux-int-port = <1>;
23 mux-ext-port = <3>;
24};