diff options
author | Alex Smith <alex.smith@imgtec.com> | 2015-03-18 16:16:36 +0000 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-04-01 08:43:49 +0530 |
commit | d894fc6046fecd66b0d8ec35c7d2515781cc030b (patch) | |
tree | cb5809e6ace6c1ce30d7a80b73ae5cda8afa10c4 /drivers/dma/Kconfig | |
parent | c8307106f5fa53b8fe8763b488d629e3cce9fae3 (diff) | |
download | blackbird-op-linux-d894fc6046fecd66b0d8ec35c7d2515781cc030b.tar.gz blackbird-op-linux-d894fc6046fecd66b0d8ec35c7d2515781cc030b.zip |
dmaengine: jz4780: add driver for the Ingenic JZ4780 DMA controller
This patch adds a driver for the DMA controller found in the Ingenic
JZ4780.
It currently does not implement any support for the programmable firmware
feature of the controller - this is not necessary for most uses. It also
does not take priority into account when allocating channels, it just
allocates the first available channel. This can be implemented later.
Signed-off-by: Alex Smith <alex.smith@imgtec.com>
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
[Updated for dmaengine api changes, Add residue support, couple of minor fixes]
Signed-off-by: Vinod Koul <vinod.koul@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 a874b6ec6650..ce09734248da 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -358,6 +358,16 @@ config DMA_JZ4740 select DMA_ENGINE select DMA_VIRTUAL_CHANNELS +config DMA_JZ4780 + tristate "JZ4780 DMA support" + depends on MACH_JZ4780 + select DMA_ENGINE + select DMA_VIRTUAL_CHANNELS + help + This selects support for the DMA controller in Ingenic JZ4780 SoCs. + If you have a board based on such a SoC and wish to use DMA for + devices which can use the DMA controller, say Y or M here. + config K3_DMA tristate "Hisilicon K3 DMA support" depends on ARCH_HI3xxx |