From: shawn.guo@linaro.org (Shawn Guo)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 1/8] ASoC: fsl: separate SSI and DMA Kconfig options
Date: Fri, 16 Mar 2012 16:56:37 +0800 [thread overview]
Message-ID: <1331888204-27058-2-git-send-email-shawn.guo@linaro.org> (raw)
In-Reply-To: <1331888204-27058-1-git-send-email-shawn.guo@linaro.org>
The fsl_ssi driver will possibly be shared between Freescale PowerPC
and ARM/IMX families, so give it a separate Kconfig option. Then
fsl_ssi driver can possibly be selected independently from selecting
PowerPC DMA based PCM driver.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
---
sound/soc/fsl/Kconfig | 15 +++++++++------
sound/soc/fsl/Makefile | 3 ++-
2 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig
index d754d34..ca693b2 100644
--- a/sound/soc/fsl/Kconfig
+++ b/sound/soc/fsl/Kconfig
@@ -1,10 +1,11 @@
config SND_MPC52xx_DMA
tristate
-# ASoC platform support for the Freescale PowerPC SOCs that have an SSI and
-# an Elo DMA controller, such as the MPC8610 and P1022. You will still need to
-# select a platform driver and a codec driver.
-config SND_SOC_POWERPC_SSI
+config SND_SOC_FSL_SSI
+ tristate
+ depends on FSL_SOC
+
+config SND_SOC_POWERPC_DMA
tristate
depends on FSL_SOC
@@ -12,7 +13,8 @@ config SND_SOC_MPC8610_HPCD
tristate "ALSA SoC support for the Freescale MPC8610 HPCD board"
# I2C is necessary for the CS4270 driver
depends on MPC8610_HPCD && I2C
- select SND_SOC_POWERPC_SSI
+ select SND_SOC_FSL_SSI
+ select SND_SOC_POWERPC_DMA
select SND_SOC_CS4270
select SND_SOC_CS4270_VD33_ERRATA
default y if MPC8610_HPCD
@@ -23,7 +25,8 @@ config SND_SOC_P1022_DS
tristate "ALSA SoC support for the Freescale P1022 DS board"
# I2C is necessary for the WM8776 driver
depends on P1022_DS && I2C
- select SND_SOC_POWERPC_SSI
+ select SND_SOC_FSL_SSI
+ select SND_SOC_POWERPC_DMA
select SND_SOC_WM8776
default y if P1022_DS
help
diff --git a/sound/soc/fsl/Makefile b/sound/soc/fsl/Makefile
index b4a38c0..95d483f 100644
--- a/sound/soc/fsl/Makefile
+++ b/sound/soc/fsl/Makefile
@@ -9,7 +9,8 @@ obj-$(CONFIG_SND_SOC_P1022_DS) += snd-soc-p1022-ds.o
# Freescale PowerPC SSI/DMA Platform Support
snd-soc-fsl-ssi-objs := fsl_ssi.o
snd-soc-fsl-dma-objs := fsl_dma.o
-obj-$(CONFIG_SND_SOC_POWERPC_SSI) += snd-soc-fsl-ssi.o snd-soc-fsl-dma.o
+obj-$(CONFIG_SND_SOC_FSL_SSI) += snd-soc-fsl-ssi.o
+obj-$(CONFIG_SND_SOC_POWERPC_DMA) += snd-soc-fsl-dma.o
# MPC5200 Platform Support
obj-$(CONFIG_SND_MPC52xx_DMA) += mpc5200_dma.o
--
1.7.5.4
next prev parent reply other threads:[~2012-03-16 8:56 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-16 8:56 [PATCH v5] ASoC: add imx-sgtl5000 machine driver working with fsl_ssi Shawn Guo
2012-03-16 8:56 ` Shawn Guo [this message]
2012-03-19 13:56 ` [PATCH v5 1/8] ASoC: fsl: separate SSI and DMA Kconfig options Mark Brown
2012-03-16 8:56 ` [PATCH v5 2/8] ASoC: imx: merge sound/soc/imx into sound/soc/fsl Shawn Guo
2012-03-16 21:21 ` Timur Tabi
2012-03-17 0:21 ` Shawn Guo
2012-03-27 15:06 ` Philippe Rétornaz
2012-03-28 2:42 ` Shawn Guo
2012-03-16 8:56 ` [PATCH v5 3/8] ASoC: fsl: rename imx-pcm Kconfig options and filename Shawn Guo
2012-03-16 8:56 ` [PATCH v5 4/8] ASoC: fsl: create fsl_utils to accommodate the common functions Shawn Guo
2012-03-16 8:56 ` [PATCH v5 5/8] ASoC: fsl: remove helper fsl_asoc_get_codec_dev_name Shawn Guo
2012-03-16 8:56 ` [PATCH v5 6/8] ASoC: fsl: make fsl_ssi driver compilable on ARM/IMX Shawn Guo
2012-03-16 8:56 ` [PATCH v5 7/8] ASoC: fsl: let fsl_ssi work with imx pcm and machine drivers Shawn Guo
2012-03-16 8:56 ` [PATCH v5 8/8] ASoC: fsl: add imx-sgtl5000 machine driver Shawn Guo
2012-03-16 10:16 ` [alsa-devel] " Trent Piepho
2012-03-16 11:18 ` Shawn Guo
2012-03-16 19:21 ` Mark Brown
2012-03-16 21:28 ` Trent Piepho
2012-03-16 21:31 ` Timur Tabi
2012-03-16 21:45 ` Trent Piepho
2012-03-17 0:07 ` Shawn Guo
2012-03-16 21:25 ` [PATCH v5] ASoC: add imx-sgtl5000 machine driver working with fsl_ssi Timur Tabi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1331888204-27058-2-git-send-email-shawn.guo@linaro.org \
--to=shawn.guo@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).