All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] ep93xx DMA patches
@ 2011-05-22 17:03 ` Mika Westerberg
  0 siblings, 0 replies; 71+ messages in thread
From: Mika Westerberg @ 2011-05-22 17:03 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: hsweeten, ryan, linux-kernel, Mika Westerberg

Hello all,

Motivation of this series was to add DMA support for the ep93xx SPI driver.
However, current platform DMA code didn't support the M2M channels which were
required for SPI (and IDE) peripherals.

Ryan Mallon suggested that maybe we should integrate both M2M and M2P code
under the dmaengine API. The purpose of this series is to do just that and
convert all the existing users to use that new API.

Patches 1-4 add dmaengine driver and convert the existing users to dmaengine
API. The last patch adds DMA support for the SPI driver.

I've been testing these on TS-7260 (ep9302) connected to SPI EEPROM, and
Sim.One (ep9307) with mmc_spi and AC'97 audio.

memcpy() testing has been done by running drivers/dma/dmatest.ko.

Regards,
MW

Mika Westerberg (5):
  dmaengine: add ep93xx DMA support
  ep93xx: add dmaengine platform code
  ASoC: ep93xx: convert to use the DMA engine API
  ep93xx: remove the old M2P DMA code
  spi/ep93xx: add DMA support

 Documentation/spi/ep93xx_spi                   |   10 +
 arch/arm/mach-ep93xx/Makefile                  |    2 +-
 arch/arm/mach-ep93xx/core.c                    |    6 +-
 arch/arm/mach-ep93xx/dma-m2p.c                 |  411 -------
 arch/arm/mach-ep93xx/dma.c                     |  108 ++
 arch/arm/mach-ep93xx/include/mach/dma.h        |  190 ++---
 arch/arm/mach-ep93xx/include/mach/ep93xx_spi.h |    2 +
 drivers/dma/Kconfig                            |    7 +
 drivers/dma/Makefile                           |    1 +
 drivers/dma/ep93xx_dma.c                       | 1356 ++++++++++++++++++++++++
 drivers/spi/ep93xx_spi.c                       |  303 +++++-
 sound/soc/ep93xx/ep93xx-ac97.c                 |    4 +-
 sound/soc/ep93xx/ep93xx-i2s.c                  |    4 +-
 sound/soc/ep93xx/ep93xx-pcm.c                  |  137 ++--
 14 files changed, 1929 insertions(+), 612 deletions(-)
 delete mode 100644 arch/arm/mach-ep93xx/dma-m2p.c
 create mode 100644 arch/arm/mach-ep93xx/dma.c
 create mode 100644 drivers/dma/ep93xx_dma.c

-- 
1.7.4.4


^ permalink raw reply	[flat|nested] 71+ messages in thread

end of thread, other threads:[~2011-05-28 10:35 UTC | newest]

Thread overview: 71+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-22 17:03 [PATCH 0/5] ep93xx DMA patches Mika Westerberg
2011-05-22 17:03 ` Mika Westerberg
2011-05-22 17:03 ` [PATCH 1/5] dmaengine: add ep93xx DMA support Mika Westerberg
2011-05-22 17:03   ` Mika Westerberg
2011-05-25  8:00   ` Koul, Vinod
2011-05-25  8:00     ` Koul, Vinod
2011-05-25 19:00     ` Mika Westerberg
2011-05-25 19:00       ` Mika Westerberg
2011-05-26  4:38       ` Koul, Vinod
2011-05-26  4:38         ` Koul, Vinod
2011-05-26 18:15         ` Mika Westerberg
2011-05-26 18:15           ` Mika Westerberg
2011-05-26 18:42           ` H Hartley Sweeten
2011-05-26 18:42             ` H Hartley Sweeten
2011-05-25  8:39   ` Linus Walleij
2011-05-25  8:39     ` Linus Walleij
2011-05-25  8:19     ` Koul, Vinod
2011-05-25  8:19       ` Koul, Vinod
2011-05-25  9:09       ` Linus Walleij
2011-05-25  9:09         ` Linus Walleij
2011-05-25 19:54     ` Mika Westerberg
2011-05-25 19:54       ` Mika Westerberg
2011-05-25 20:47       ` Linus Walleij
2011-05-25 20:47         ` Linus Walleij
2011-05-26  4:33         ` Mika Westerberg
2011-05-26  4:33           ` Mika Westerberg
2011-05-26  5:26           ` Ryan Mallon
2011-05-26  5:26             ` Ryan Mallon
2011-05-26  7:15           ` Linus Walleij
2011-05-26  7:15             ` Linus Walleij
2011-05-26 18:38             ` Mika Westerberg
2011-05-26 18:38               ` Mika Westerberg
2011-05-26 18:48               ` H Hartley Sweeten
2011-05-26 18:48                 ` H Hartley Sweeten
2011-05-26 18:48                 ` H Hartley Sweeten
2011-05-26 21:53                 ` Russell King - ARM Linux
2011-05-26 21:53                   ` Russell King - ARM Linux
2011-05-26 21:53                   ` Russell King - ARM Linux
2011-05-26 22:58                 ` Linus Walleij
2011-05-26 22:58                   ` Linus Walleij
2011-05-26 22:58                   ` Linus Walleij
2011-05-27  1:38   ` H Hartley Sweeten
2011-05-27  1:38     ` H Hartley Sweeten
2011-05-28 10:33     ` Mika Westerberg
2011-05-28 10:33       ` Mika Westerberg
2011-05-22 17:03 ` [PATCH 2/5] ep93xx: add dmaengine platform code Mika Westerberg
2011-05-22 17:03   ` Mika Westerberg
2011-05-27  1:44   ` H Hartley Sweeten
2011-05-27  1:44     ` H Hartley Sweeten
2011-05-22 17:03 ` [PATCH 3/5] ASoC: ep93xx: convert to use the DMA engine API Mika Westerberg
2011-05-22 17:03   ` Mika Westerberg
2011-05-23  5:11   ` Mark Brown
2011-05-23  5:11     ` Mark Brown
2011-05-23  9:38     ` Liam Girdwood
2011-05-23  9:38       ` Liam Girdwood
2011-05-27  1:43   ` H Hartley Sweeten
2011-05-27  1:43     ` H Hartley Sweeten
2011-05-22 17:03 ` [PATCH 4/5] ep93xx: remove the old M2P DMA code Mika Westerberg
2011-05-22 17:03   ` Mika Westerberg
2011-05-27  1:42   ` H Hartley Sweeten
2011-05-27  1:42     ` H Hartley Sweeten
2011-05-22 17:03 ` [PATCH 5/5] spi/ep93xx: add DMA support Mika Westerberg
2011-05-22 17:03   ` Mika Westerberg
2011-05-27  1:47   ` H Hartley Sweeten
2011-05-27  1:47     ` H Hartley Sweeten
2011-05-23 17:34 ` [PATCH 0/5] ep93xx DMA patches H Hartley Sweeten
2011-05-23 17:34   ` H Hartley Sweeten
2011-05-23 20:10 ` Ryan Mallon
2011-05-23 20:10   ` Ryan Mallon
2011-05-24 14:42   ` Mika Westerberg
2011-05-24 14:42     ` Mika Westerberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.