blob: ff5b834a91ec6a018cf17407df7147647ea905e7 [file] [log] [blame]
Mugunthan V Na0594ce2016-02-15 15:31:37 +05301menu "DMA Support"
2
3config DMA
4 bool "Enable Driver Model for DMA drivers"
5 depends on DM
6 help
7 Enable driver model for DMA. DMA engines can do
8 asynchronous data transfers without involving the host
9 CPU. Currently, this framework can be used to offload
10 memory copies to and from devices like qspi, ethernet
11 etc Drivers provide methods to access the DMA devices
12 buses that is used to transfer data to and from memory.
13 The uclass interface is defined in include/dma.h.
14
Álvaro Fernández Rojas27ab27f2018-11-28 19:17:50 +010015config DMA_CHANNELS
16 bool "Enable DMA channels support"
17 depends on DMA
18 help
19 Enable channels support for DMA. Some DMA controllers have multiple
20 channels which can either transfer data to/from different devices.
21
Grygorii Strashkob3309912018-11-28 19:17:51 +010022config SANDBOX_DMA
23 bool "Enable the sandbox DMA test driver"
24 depends on DMA && DMA_CHANNELS && SANDBOX
25 help
26 Enable support for a test DMA uclass implementation. It stimulates
27 DMA transfer by simple copying data between channels.
28
Álvaro Fernández Rojasccfd6982018-12-01 19:00:15 +010029config BCM6348_IUDMA
30 bool "BCM6348 IUDMA driver"
31 depends on ARCH_BMIPS
32 select DMA_CHANNELS
33 help
34 Enable the BCM6348 IUDMA driver.
35 This driver support data transfer from devices to
36 memory and from memory to devices.
37
Simon Glassa7ebc692021-08-08 12:20:21 -060038config DMA_LPC32XX
39 bool "LPC32XX DMA driver"
40 select DMA_LEGACY
41 help
42 Enable some legacy DMA code for lpc32xx. It provides some direct
43 functions likes lpc32xx_dma_wait_status() which can be called from
44 other code.
45
46 This should be converted to use driver model and UCLASS_DMA.
47
Mugunthan V N58da6722016-02-15 15:31:38 +053048config TI_EDMA3
49 bool "TI EDMA3 driver"
Simon Glass70edba02021-08-08 12:20:19 -060050 select DMA_LEGACY
Mugunthan V N58da6722016-02-15 15:31:38 +053051 help
52 Enable the TI EDMA3 driver for DRA7xx and AM43xx evms.
53 This driver support data transfer between memory
54 regions.
55
Adam Ford99bec1a2018-02-06 08:34:45 -060056config APBH_DMA
57 bool "Support APBH DMA"
Peng Fan39320e72020-05-04 22:09:00 +080058 depends on MX23 || MX28 || MX6 || MX7 || IMX8 || IMX8M
Adam Ford99bec1a2018-02-06 08:34:45 -060059 help
60 Enable APBH DMA driver.
61
Simon Glassa7ebc692021-08-08 12:20:21 -060062
Adam Ford99bec1a2018-02-06 08:34:45 -060063if APBH_DMA
64config APBH_DMA_BURST
65 bool "Enable DMA BURST"
66
67config APBH_DMA_BURST8
68 bool "Enable DMA BURST8"
69
70endif
71
Simon Glass70edba02021-08-08 12:20:19 -060072config DMA_LEGACY
73 bool "Legacy DMA support"
74 default y if FSLDMAFEC
75 help
76 Enable legacy DMA support. This does not use driver model and should
77 be migrated to the new API.
78
79 It is required for some PowerPC boards.
80
Vignesh Rffcc66e2019-02-05 17:31:24 +053081source "drivers/dma/ti/Kconfig"
82
Mugunthan V Na0594ce2016-02-15 15:31:37 +053083endmenu # menu "DMA Support"