diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-03-16 04:56:44 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-01 06:28:27 -0400 |
commit | c448303e86c970cca4833bd9480c08f09b948b40 (patch) | |
tree | cfa6b74ffad848b97d8d19be6a04bd279bcb5591 /Documentation/devicetree/bindings/sound/imx-audio-sgtl5000.txt | |
parent | 09ce1111f3893106463559ed62f27fe999ace5d6 (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.txt | 24 |
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 @@ | |||
1 | Freescale i.MX audio complex with SGTL5000 codec | ||
2 | |||
3 | Required 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 | |||
11 | Note: The AUDMUX port numbering should start at 1, which is consistent with | ||
12 | hardware manual. | ||
13 | |||
14 | Example: | ||
15 | |||
16 | sound { | ||
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 | }; | ||