-
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: NUC900/audio: add nuc900 audio driver support
Add support for NUC900 AC97 Signed-off-by: Wan ZongShun <mcuos.com@gmail.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
- Loading branch information
Wan ZongShun
authored and
Mark Brown
committed
May 19, 2010
1 parent
b6f4bb3
commit 1082e27
Showing
8 changed files
with
1,036 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
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,27 @@ | ||
## | ||
## NUC900 series AC97 API | ||
## | ||
config SND_SOC_NUC900 | ||
tristate "SoC Audio for NUC900 series" | ||
depends on ARCH_W90X900 | ||
help | ||
This option enables support for AC97 mode on the NUC900 SoC. | ||
|
||
config SND_SOC_NUC900_AC97 | ||
tristate | ||
select AC97_BUS | ||
select SND_AC97_CODEC | ||
select SND_SOC_AC97_BUS | ||
|
||
|
||
## | ||
## Boards | ||
## | ||
config SND_SOC_NUC900EVB | ||
tristate "NUC900 AC97 support for demo board" | ||
depends on SND_SOC_NUC900 | ||
select SND_SOC_NUC900_AC97 | ||
select SND_SOC_AC97_CODEC | ||
help | ||
Select this option to enable audio (AC97) on the | ||
NUC900 demoboard. |
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 @@ | ||
# NUC900 series audio | ||
snd-soc-nuc900-pcm-objs := nuc900-pcm.o | ||
snd-soc-nuc900-ac97-objs := nuc900-ac97.o | ||
|
||
obj-$(CONFIG_SND_SOC_NUC900) += snd-soc-nuc900-pcm.o | ||
obj-$(CONFIG_SND_SOC_NUC900_AC97) += snd-soc-nuc900-ac97.o | ||
|
||
# Boards | ||
snd-soc-nuc900-audio-objs := nuc900-audio.o | ||
|
||
obj-$(CONFIG_SND_SOC_NUC900EVB) += snd-soc-nuc900-audio.o |
Oops, something went wrong.