diff options
author | Matt Porter <mporter@ti.com> | 2012-08-22 21:09:34 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@linux.intel.com> | 2012-09-01 06:14:02 +0530 |
commit | c2dde5f8f2095d7c623ff3565c1462e190272273 (patch) | |
tree | 4877845fc7d5396da2191264d456f0496a0f56c3 /drivers/dma/Kconfig | |
parent | 8eb4da28b2544d0fed55a811515dfeb6c07a0447 (diff) | |
download | linux-c2dde5f8f2095d7c623ff3565c1462e190272273.tar.gz linux-c2dde5f8f2095d7c623ff3565c1462e190272273.tar.bz2 linux-c2dde5f8f2095d7c623ff3565c1462e190272273.zip |
dmaengine: add TI EDMA DMA engine driver
Add a DMA engine driver for the TI EDMA controller. This driver
is implemented as a wrapper around the existing DaVinci private
DMA implementation. This approach allows for incremental conversion
of each peripheral driver to the DMA engine API. The EDMA driver
supports slave transfers but does not yet support cyclic transfers.
Signed-off-by: Matt Porter <mporter@ti.com>
Tested-by: Tom Rini <trini@ti.com>
Tested-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'drivers/dma/Kconfig')
-rw-r--r-- | drivers/dma/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index d06ea2950dd9..03517191cb13 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -208,6 +208,16 @@ config SIRF_DMA help Enable support for the CSR SiRFprimaII DMA engine. +config TI_EDMA + tristate "TI EDMA support" + depends on ARCH_DAVINCI + select DMA_ENGINE + select DMA_VIRTUAL_CHANNELS + default n + help + Enable support for the TI EDMA controller. This DMA + engine is found on TI DaVinci and AM33xx parts. + config ARCH_HAS_ASYNC_TX_FIND_CHANNEL bool |