diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2010-10-06 10:25:55 +0200 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2010-10-07 15:18:03 -0700 |
commit | 1f1846c6ceed07c03ef036a27864befe0f773997 (patch) | |
tree | 107e5cabb0e33c041283a2cebd46482381878adb /drivers/dma/Kconfig | |
parent | 1ec1e82f2510e2bdcb6268ed74aa79e1a7bc9594 (diff) | |
download | kernel_goldelico_gta04-1f1846c6ceed07c03ef036a27864befe0f773997.zip kernel_goldelico_gta04-1f1846c6ceed07c03ef036a27864befe0f773997.tar.gz kernel_goldelico_gta04-1f1846c6ceed07c03ef036a27864befe0f773997.tar.bz2 |
dmaengine: Add Freescale i.MX1/21/27 DMA driver
This driver is currently implemented as a user to the old i.MX
DMA API. This allows us to convert each user of the old API to
the dmaengine API one by one. Once this is done the old DMA
driver can be merged into the i.MX dmaengine driver.
V2: remove some debug leftovers and unused variables
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/Kconfig')
-rw-r--r-- | drivers/dma/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 3cf1d12..e0e1f40 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -203,6 +203,14 @@ config IMX_SDMA Support the i.MX SDMA engine. This engine is integrated into Freescale i.MX25/31/35/51 chips. +config IMX_DMA + tristate "i.MX DMA support" + depends on ARCH_MX1 || ARCH_MX21 || MACH_MX27 + select DMA_ENGINE + help + Support the i.MX DMA engine. This engine is integrated into + Freescale i.MX1/21/27 chips. + config DMA_ENGINE bool |