aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/Makefile
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2015-08-20 17:39:13 +0200
committerVinod Koul <vinod.koul@intel.com>2015-08-23 18:55:10 +0530
commit0e3b67b348b838d519b5d9ff30261f471d6371f2 (patch)
tree4a3cf9d2d5f3fc5920e11918c5b163f4cadb3de5 /drivers/dma/Makefile
parentdevicetree: Add bindings documentation for Analog Devices AXI-DMAC (diff)
downloadlinux-dev-0e3b67b348b838d519b5d9ff30261f471d6371f2.tar.xz
linux-dev-0e3b67b348b838d519b5d9ff30261f471d6371f2.zip
dmaengine: Add support for the Analog Devices AXI-DMAC DMA controller
Add support for the Analog Devices AXI-DMAC DMA controller. This controller is a soft peripheral that can be instantiated in a FPGA and is often used in Analog Devices' reference designs for FPGA platforms. The peripheral has various configuration options that can be selected at synthesis time and influence the supported features of the instantiated peripheral, those options are represented as device-tree properties to allow the driver to behave accordingly. The peripheral has a zero latency architecture, which means it is possible to switch from one to the next descriptor without any delay. This is archived by having a internal queue which can hold multiple descriptors. The driver supports this, which means it will submit new descriptors directly to the hardware until the queue is full and not wait for a descriptor to complete before the next one is submitted. Interrupts are used for the descriptor queue flow control. Currently the driver supports SG, cyclic and interleaved slave DMA. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/Makefile')
-rw-r--r--drivers/dma/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile
index d056a8ad6ab1..a4809849b6c5 100644
--- a/drivers/dma/Makefile
+++ b/drivers/dma/Makefile
@@ -59,3 +59,4 @@ obj-$(CONFIG_DMA_SUN4I) += sun4i-dma.o
obj-$(CONFIG_IMG_MDC_DMA) += img-mdc-dma.o
obj-$(CONFIG_XGENE_DMA) += xgene-dma.o
obj-$(CONFIG_ZX_DMA) += zx296702_dma.o
+obj-$(CONFIG_AXI_DMAC) += dma-axi-dmac.o