Commit 7fc7d82f authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branch 'asoc/topic/dma' into asoc-next

parents 436f3562 903eb318
...@@ -6,6 +6,9 @@ config SND_PCM ...@@ -6,6 +6,9 @@ config SND_PCM
tristate tristate
select SND_TIMER select SND_TIMER
config SND_DMAENGINE_PCM
tristate
config SND_HWDEP config SND_HWDEP
tristate tristate
......
...@@ -13,6 +13,8 @@ snd-$(CONFIG_SND_JACK) += jack.o ...@@ -13,6 +13,8 @@ snd-$(CONFIG_SND_JACK) += jack.o
snd-pcm-objs := pcm.o pcm_native.o pcm_lib.o pcm_timer.o pcm_misc.o \ snd-pcm-objs := pcm.o pcm_native.o pcm_lib.o pcm_timer.o pcm_misc.o \
pcm_memory.o pcm_memory.o
snd-pcm-dmaengine-objs := pcm_dmaengine.o
snd-page-alloc-y := memalloc.o snd-page-alloc-y := memalloc.o
snd-page-alloc-$(CONFIG_SND_DMA_SGBUF) += sgbuf.o snd-page-alloc-$(CONFIG_SND_DMA_SGBUF) += sgbuf.o
...@@ -30,6 +32,7 @@ obj-$(CONFIG_SND_TIMER) += snd-timer.o ...@@ -30,6 +32,7 @@ obj-$(CONFIG_SND_TIMER) += snd-timer.o
obj-$(CONFIG_SND_HRTIMER) += snd-hrtimer.o obj-$(CONFIG_SND_HRTIMER) += snd-hrtimer.o
obj-$(CONFIG_SND_RTCTIMER) += snd-rtctimer.o obj-$(CONFIG_SND_RTCTIMER) += snd-rtctimer.o
obj-$(CONFIG_SND_PCM) += snd-pcm.o snd-page-alloc.o obj-$(CONFIG_SND_PCM) += snd-pcm.o snd-page-alloc.o
obj-$(CONFIG_SND_DMAENGINE_PCM) += snd-pcm-dmaengine.o
obj-$(CONFIG_SND_RAWMIDI) += snd-rawmidi.o obj-$(CONFIG_SND_RAWMIDI) += snd-rawmidi.o
obj-$(CONFIG_SND_OSSEMUL) += oss/ obj-$(CONFIG_SND_OSSEMUL) += oss/
......
...@@ -26,12 +26,9 @@ if SND_SOC ...@@ -26,12 +26,9 @@ if SND_SOC
config SND_SOC_AC97_BUS config SND_SOC_AC97_BUS
bool bool
config SND_SOC_DMAENGINE_PCM
bool
config SND_SOC_GENERIC_DMAENGINE_PCM config SND_SOC_GENERIC_DMAENGINE_PCM
bool bool
select SND_SOC_DMAENGINE_PCM select SND_DMAENGINE_PCM
# All the supported SoCs # All the supported SoCs
source "sound/soc/atmel/Kconfig" source "sound/soc/atmel/Kconfig"
......
snd-soc-core-objs := soc-core.o soc-dapm.o soc-jack.o soc-cache.o soc-utils.o snd-soc-core-objs := soc-core.o soc-dapm.o soc-jack.o soc-cache.o soc-utils.o
snd-soc-core-objs += soc-pcm.o soc-compress.o soc-io.o snd-soc-core-objs += soc-pcm.o soc-compress.o soc-io.o
ifneq ($(CONFIG_SND_SOC_DMAENGINE_PCM),)
snd-soc-core-objs += soc-dmaengine-pcm.o
endif
ifneq ($(CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM),) ifneq ($(CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM),)
snd-soc-core-objs += soc-generic-dmaengine-pcm.o snd-soc-core-objs += soc-generic-dmaengine-pcm.o
endif endif
......
config SND_OMAP_SOC config SND_OMAP_SOC
tristate "SoC Audio for the Texas Instruments OMAP chips" tristate "SoC Audio for the Texas Instruments OMAP chips"
depends on ARCH_OMAP && DMA_OMAP depends on ARCH_OMAP && DMA_OMAP
select SND_SOC_DMAENGINE_PCM select SND_DMAENGINE_PCM
config SND_OMAP_SOC_DMIC config SND_OMAP_SOC_DMIC
tristate tristate
......
...@@ -11,7 +11,7 @@ config SND_PXA2XX_SOC ...@@ -11,7 +11,7 @@ config SND_PXA2XX_SOC
config SND_MMP_SOC config SND_MMP_SOC
bool "Soc Audio for Marvell MMP chips" bool "Soc Audio for Marvell MMP chips"
depends on ARCH_MMP depends on ARCH_MMP
select SND_SOC_DMAENGINE_PCM select SND_DMAENGINE_PCM
select SND_ARM select SND_ARM
help help
Say Y if you want to add support for codecs attached to Say Y if you want to add support for codecs attached to
......
config SND_SPEAR_SOC config SND_SPEAR_SOC
tristate tristate
select SND_SOC_DMAENGINE_PCM select SND_DMAENGINE_PCM
config SND_SPEAR_SPDIF_OUT config SND_SPEAR_SPDIF_OUT
tristate tristate
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment