diff options
author | Mika Westerberg <mika.westerberg@iki.fi> | 2011-05-29 13:10:02 +0300 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-06-08 15:10:44 -0600 |
commit | 760ee1c4aafac8fcaf3be5ff2b19c5485c5886e1 (patch) | |
tree | fc8408001ecba7a7b575f8fa839fcc6989f852bb /drivers/dma/Kconfig | |
parent | b6336ca2982ccac98d9d017426c53ff1e13c017f (diff) | |
download | op-kernel-dev-760ee1c4aafac8fcaf3be5ff2b19c5485c5886e1.zip op-kernel-dev-760ee1c4aafac8fcaf3be5ff2b19c5485c5886e1.tar.gz |
dmaengine: add ep93xx DMA support
The ep93xx DMA controller has 10 independent memory to peripheral (M2P)
channels, and 2 dedicated memory to memory (M2M) channels. M2M channels can
also be used by SPI and IDE to perform DMA transfers to/from their memory
mapped FIFOs.
This driver supports both M2P and M2M channels with DMA_SLAVE, DMA_CYCLIC and
DMA_MEMCPY (M2M only) capabilities.
Signed-off-by: Mika Westerberg <mika.westerberg@iki.fi>
Signed-off-by: Ryan Mallon <rmallon@gmail.com>
Acked-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/dma/Kconfig')
-rw-r--r-- | drivers/dma/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 25cf327..2e3b3d3 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -237,6 +237,13 @@ config MXS_DMA Support the MXS DMA engine. This engine including APBH-DMA and APBX-DMA is integrated into Freescale i.MX23/28 chips. +config EP93XX_DMA + bool "Cirrus Logic EP93xx DMA support" + depends on ARCH_EP93XX + select DMA_ENGINE + help + Enable support for the Cirrus Logic EP93xx M2P/M2M DMA controller. + config DMA_ENGINE bool |