-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ASoC: add DMA platform driver for MX1x and MX2x
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
Showing
5 changed files
with
551 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.