Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
7fc7d82f
Commit
7fc7d82f
authored
Aug 22, 2013
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/topic/dma' into asoc-next
parents
436f3562
903eb318
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
11 deletions
+10
-11
sound/core/Kconfig
sound/core/Kconfig
+3
-0
sound/core/Makefile
sound/core/Makefile
+3
-0
sound/core/pcm_dmaengine.c
sound/core/pcm_dmaengine.c
+0
-0
sound/soc/Kconfig
sound/soc/Kconfig
+1
-4
sound/soc/Makefile
sound/soc/Makefile
+0
-4
sound/soc/omap/Kconfig
sound/soc/omap/Kconfig
+1
-1
sound/soc/pxa/Kconfig
sound/soc/pxa/Kconfig
+1
-1
sound/soc/spear/Kconfig
sound/soc/spear/Kconfig
+1
-1
No files found.
sound/core/Kconfig
View file @
7fc7d82f
...
@@ -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
...
...
sound/core/Makefile
View file @
7fc7d82f
...
@@ -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/
...
...
sound/
soc/soc-dmaengine-pcm
.c
→
sound/
core/pcm_dmaengine
.c
View file @
7fc7d82f
File moved
sound/soc/Kconfig
View file @
7fc7d82f
...
@@ -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"
...
...
sound/soc/Makefile
View file @
7fc7d82f
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
...
...
sound/soc/omap/Kconfig
View file @
7fc7d82f
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
...
...
sound/soc/pxa/Kconfig
View file @
7fc7d82f
...
@@ -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
...
...
sound/soc/spear/Kconfig
View file @
7fc7d82f
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment