Blame view

drivers/dma/Kconfig 918 Bytes
a0594cefb   Mugunthan V N   dm: implement a D...
1
2
3
4
5
6
7
8
9
10
11
12
13
  menu "DMA Support"
  
  config DMA
  	bool "Enable Driver Model for DMA drivers"
  	depends on DM
  	help
  	  Enable driver model for DMA. DMA engines can do
  	  asynchronous data transfers without involving the host
  	  CPU. Currently, this framework can be used to offload
  	  memory copies to and from devices like qspi, ethernet
  	  etc Drivers provide methods to access the DMA devices
  	  buses that is used to transfer data to and from memory.
  	  The uclass interface is defined in include/dma.h.
58da672d4   Mugunthan V N   dma: Kconfig: Add...
14
15
16
17
18
19
  config TI_EDMA3
  	bool "TI EDMA3 driver"
  	help
  	  Enable the TI EDMA3 driver for DRA7xx and AM43xx evms.
  	  This driver support data transfer between memory
  	  regions.
99bec1aea   Adam Ford   Convert CONFIG_AP...
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  config APBH_DMA
  	bool "Support APBH DMA"
  	depends on MX23 || MX28 || MX6 || MX7
  	help
  	  Enable APBH DMA driver.
  
  if APBH_DMA
  config APBH_DMA_BURST
  	bool "Enable DMA BURST"
  
  config APBH_DMA_BURST8
  	bool "Enable DMA BURST8"
  
  endif
a0594cefb   Mugunthan V N   dm: implement a D...
34
  endmenu # menu "DMA Support"