Skip to content

Commit

Permalink
ASoC: add DMA platform driver for MX1x and MX2x
Browse files Browse the repository at this point in the history
This adds support for DMA platform valid for i.MX1 and i.MX2 platforms.

This is not valid for i.MX3 since it doesn't share the same DMA
interface than i.MX1 and i.MX2.

It has been tested on i.MX27 board.

Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
javier Martin authored and Mark Brown committed Aug 5, 2009
1 parent 07a2039 commit fd6a639
Show file tree
Hide file tree
Showing 5 changed files with 551 additions and 0 deletions.
1 change: 1 addition & 0 deletions sound/soc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ obj-$(CONFIG_SND_SOC) += omap/
obj-$(CONFIG_SND_SOC) += pxa/
obj-$(CONFIG_SND_SOC) += s3c24xx/
obj-$(CONFIG_SND_SOC) += sh/
obj-$(CONFIG_SND_SOC) += imx/
11 changes: 11 additions & 0 deletions sound/soc/imx/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
config SND_MX1_MX2_SOC
tristate "SoC Audio for Freecale i.MX1x i.MX2x CPUs"
depends on (ARCH_MX2 || ARCH_MX1) && SND
select SND_PCM
help
Say Y or M if you want to add support for codecs attached to
the MX1 or MX2 SSI interface.




4 changes: 4 additions & 0 deletions sound/soc/imx/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# i.MX Platform Support
snd-soc-mx1_mx2-objs := mx1_mx2-pcm.o

obj-$(CONFIG_SND_MX1_MX2_SOC) += snd-soc-mx1_mx2.o
Loading

0 comments on commit fd6a639

Please sign in to comment.