From: Vinod Koul <vinod.koul@intel.com>
To: Lars-Peter Clausen <lars@metafoo.de>
Cc: Ralf Baechle <ralf@linux-mips.org>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
Maarten ter Huurne <maarten@treewalker.org>,
linux-mips@linux-mips.org, linux-kernel@vger.kernel.org,
alsa-devel@alsa-project.org
Subject: Re: [PATCH 0/6] Convert JZ4740 to dmaengine
Date: Fri, 21 Jun 2013 19:43:30 +0530 [thread overview]
Message-ID: <20130621141330.GK23141@intel.com> (raw)
In-Reply-To: <1369931105-28065-1-git-send-email-lars@metafoo.de>
On Thu, May 30, 2013 at 06:24:59PM +0200, Lars-Peter Clausen wrote:
> Hi,
>
> This series replaces the custom JZ4740 DMA API with a dmaengine driver. This is
> done in 3 steps:
> 1) Add a dmaengine driver which wraps the custom JZ4740 DMA API
> 2) Update all users of the JZ4740 DMA API to use dmaengine instead
> 3) Remove the custom API and move all direct hardware access to the
> dmaengine driver.
>
> The first two patches in the series also make sure that the clock of the DMA
> core is enabled.
>
> Since the patches in this series depend on each other I'd prefer if they could
> all go through the DMA tree.
>
> There are a few minor changes to the patch 3 in v2 of this series, all other
> patches are identical to v1.
Applied all expect the "ASoC: jz4740: Use the generic dmaengine PCM driver". Can
you rebase that on slave dma-next and resend
Fixed up struct alignment manually in 4th one
--
~Vinod
>
> - Lars
>
> Lars-Peter Clausen (4):
> dma: Add a jz4740 dmaengine driver
> MIPS: jz4740: Register jz4740 DMA device
> ASoC: jz4740: Use the generic dmaengine PCM driver
> MIPS: jz4740: Remove custom DMA API
>
> Maarten ter Huurne (2):
> MIPS: jz4740: Correct clock gate bit for DMA controller
> MIPS: jz4740: Acquire and enable DMA controller clock
>
> arch/mips/include/asm/mach-jz4740/dma.h | 56 ---
> arch/mips/include/asm/mach-jz4740/platform.h | 1 +
> arch/mips/jz4740/Makefile | 2 +-
> arch/mips/jz4740/board-qi_lb60.c | 1 +
> arch/mips/jz4740/clock.c | 2 +-
> arch/mips/jz4740/dma.c | 287 -------------
> arch/mips/jz4740/platform.c | 21 +
> drivers/dma/Kconfig | 6 +
> drivers/dma/Makefile | 1 +
> drivers/dma/dma-jz4740.c | 617 +++++++++++++++++++++++++++
> sound/soc/jz4740/Kconfig | 1 +
> sound/soc/jz4740/jz4740-i2s.c | 48 +--
> sound/soc/jz4740/jz4740-pcm.c | 310 +-------------
> sound/soc/jz4740/jz4740-pcm.h | 20 -
> 14 files changed, 676 insertions(+), 697 deletions(-)
> delete mode 100644 arch/mips/jz4740/dma.c
> create mode 100644 drivers/dma/dma-jz4740.c
> delete mode 100644 sound/soc/jz4740/jz4740-pcm.h
>
> --
> 1.8.2.1
>
--
next prev parent reply other threads:[~2013-06-21 14:53 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-30 16:24 [PATCH 0/6] Convert JZ4740 to dmaengine Lars-Peter Clausen
2013-05-30 16:25 ` [PATCH v2 1/6] MIPS: jz4740: Correct clock gate bit for DMA controller Lars-Peter Clausen
2013-05-30 16:25 ` [PATCH v2 2/6] MIPS: jz4740: Acquire and enable DMA controller clock Lars-Peter Clausen
2013-05-30 16:25 ` [PATCH v2 3/6] dma: Add a jz4740 dmaengine driver Lars-Peter Clausen
2013-05-30 17:12 ` Vinod Koul
2013-05-30 18:46 ` Lars-Peter Clausen
2013-06-10 17:29 ` Lars-Peter Clausen
2013-06-12 5:38 ` Vinod Koul
2013-06-12 12:07 ` [alsa-devel] " Lars-Peter Clausen
2013-06-21 10:51 ` Vinod Koul
2013-05-30 16:25 ` [PATCH v2 4/6] MIPS: jz4740: Register jz4740 DMA device Lars-Peter Clausen
2013-05-30 17:24 ` Sergei Shtylyov
2013-06-10 17:30 ` Lars-Peter Clausen
2013-05-30 16:25 ` [PATCH v2 5/6] ASoC: jz4740: Use the generic dmaengine PCM driver Lars-Peter Clausen
2013-05-30 16:25 ` [PATCH v2 6/6] MIPS: jz4740: Remove custom DMA API Lars-Peter Clausen
2013-05-30 17:20 ` Vinod Koul
2013-05-30 18:48 ` Lars-Peter Clausen
2013-06-21 14:13 ` Vinod Koul [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-05-23 20:36 [PATCH 0/6] Convert JZ4740 to dmaengine Lars-Peter Clausen
2013-05-29 9:31 ` Ralf Baechle
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=20130621141330.GK23141@intel.com \
--to=vinod.koul@intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=lars@metafoo.de \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=maarten@treewalker.org \
--cc=ralf@linux-mips.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