dma: Added DMA misc driver interface for data transfer
[platform/kernel/linux-starfive.git] / drivers / dma / Kconfig
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # DMA engine configuration
4 #
5
6 menuconfig DMADEVICES
7         bool "DMA Engine support"
8         depends on HAS_DMA
9         help
10           DMA engines can do asynchronous data transfers without
11           involving the host CPU.  Currently, this framework can be
12           used to offload memory copies in the network stack and
13           RAID operations in the MD driver.  This menu only presents
14           DMA Device drivers supported by the configured arch, it may
15           be empty in some cases.
16
17 config DMADEVICES_DEBUG
18         bool "DMA Engine debugging"
19         depends on DMADEVICES != n
20         help
21           This is an option for use by developers; most people should
22           say N here.  This enables DMA engine core and driver debugging.
23
24 config DMADEVICES_VDEBUG
25         bool "DMA Engine verbose debugging"
26         depends on DMADEVICES_DEBUG != n
27         help
28           This is an option for use by developers; most people should
29           say N here.  This enables deeper (more verbose) debugging of
30           the DMA engine core and drivers.
31
32
33 if DMADEVICES
34
35 comment "DMA Devices"
36
37 #core
38 config ASYNC_TX_ENABLE_CHANNEL_SWITCH
39         bool
40
41 config ARCH_HAS_ASYNC_TX_FIND_CHANNEL
42         bool
43
44 config DMA_ENGINE
45         bool
46
47 config DMA_VIRTUAL_CHANNELS
48         tristate
49
50 config DMA_ACPI
51         def_bool y
52         depends on ACPI
53
54 config DMA_OF
55         def_bool y
56         depends on OF
57         select DMA_ENGINE
58
59 #devices
60 config ALTERA_MSGDMA
61         tristate "Altera / Intel mSGDMA Engine"
62         depends on HAS_IOMEM
63         select DMA_ENGINE
64         help
65           Enable support for Altera / Intel mSGDMA controller.
66
67 config AMBA_PL08X
68         bool "ARM PrimeCell PL080 or PL081 support"
69         depends on ARM_AMBA
70         select DMA_ENGINE
71         select DMA_VIRTUAL_CHANNELS
72         help
73           Say yes if your platform has a PL08x DMAC device which can
74           provide DMA engine support. This includes the original ARM
75           PL080 and PL081, Samsungs PL080 derivative and Faraday
76           Technology's FTDMAC020 PL080 derivative.
77
78 config AMCC_PPC440SPE_ADMA
79         tristate "AMCC PPC440SPe ADMA support"
80         depends on 440SPe || 440SP
81         select DMA_ENGINE
82         select DMA_ENGINE_RAID
83         select ARCH_HAS_ASYNC_TX_FIND_CHANNEL
84         select ASYNC_TX_ENABLE_CHANNEL_SWITCH
85         help
86           Enable support for the AMCC PPC440SPe RAID engines.
87
88 config AT_HDMAC
89         tristate "Atmel AHB DMA support"
90         depends on ARCH_AT91
91         select DMA_ENGINE
92         help
93           Support the Atmel AHB DMA controller.
94
95 config AT_XDMAC
96         tristate "Atmel XDMA support"
97         depends on ARCH_AT91
98         select DMA_ENGINE
99         help
100           Support the Atmel XDMA controller.
101
102 config AXI_DMAC
103         tristate "Analog Devices AXI-DMAC DMA support"
104         depends on MICROBLAZE || NIOS2 || ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA || COMPILE_TEST
105         select DMA_ENGINE
106         select DMA_VIRTUAL_CHANNELS
107         select REGMAP_MMIO
108         help
109           Enable support for the Analog Devices AXI-DMAC peripheral. This DMA
110           controller is often used in Analog Devices' reference designs for FPGA
111           platforms.
112
113 config BCM_SBA_RAID
114         tristate "Broadcom SBA RAID engine support"
115         depends on ARM64 || COMPILE_TEST
116         depends on MAILBOX && RAID6_PQ
117         select DMA_ENGINE
118         select DMA_ENGINE_RAID
119         select ASYNC_TX_DISABLE_XOR_VAL_DMA
120         select ASYNC_TX_DISABLE_PQ_VAL_DMA
121         default m if ARCH_BCM_IPROC
122         help
123           Enable support for Broadcom SBA RAID Engine. The SBA RAID
124           engine is available on most of the Broadcom iProc SoCs. It
125           has the capability to offload memcpy, xor and pq computation
126           for raid5/6.
127
128 config DMA_BCM2835
129         tristate "BCM2835 DMA engine support"
130         depends on ARCH_BCM2835
131         select DMA_ENGINE
132         select DMA_VIRTUAL_CHANNELS
133
134 config DMA_JZ4780
135         tristate "JZ4780 DMA support"
136         depends on MIPS || COMPILE_TEST
137         select DMA_ENGINE
138         select DMA_VIRTUAL_CHANNELS
139         help
140           This selects support for the DMA controller in Ingenic JZ4780 SoCs.
141           If you have a board based on such a SoC and wish to use DMA for
142           devices which can use the DMA controller, say Y or M here.
143
144 config DMA_SA11X0
145         tristate "SA-11x0 DMA support"
146         depends on ARCH_SA1100 || COMPILE_TEST
147         select DMA_ENGINE
148         select DMA_VIRTUAL_CHANNELS
149         help
150           Support the DMA engine found on Intel StrongARM SA-1100 and
151           SA-1110 SoCs.  This DMA engine can only be used with on-chip
152           devices.
153
154 config DMA_SUN4I
155         tristate "Allwinner A10 DMA SoCs support"
156         depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
157         default (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
158         select DMA_ENGINE
159         select DMA_VIRTUAL_CHANNELS
160         help
161           Enable support for the DMA controller present in the sun4i,
162           sun5i and sun7i Allwinner ARM SoCs.
163
164 config DMA_SUN6I
165         tristate "Allwinner A31 SoCs DMA support"
166         depends on MACH_SUN6I || MACH_SUN8I || (ARM64 && ARCH_SUNXI) || COMPILE_TEST
167         depends on RESET_CONTROLLER
168         select DMA_ENGINE
169         select DMA_VIRTUAL_CHANNELS
170         help
171           Support for the DMA engine first found in Allwinner A31 SoCs.
172
173 config DW_AXI_DMAC
174         tristate "Synopsys DesignWare AXI DMA support"
175         depends on OF || COMPILE_TEST
176         depends on HAS_IOMEM
177         select DMA_ENGINE
178         select DMA_VIRTUAL_CHANNELS
179         help
180           Enable support for Synopsys DesignWare AXI DMA controller.
181           NOTE: This driver wasn't tested on 64 bit platform because
182           of lack 64 bit platform with Synopsys DW AXI DMAC.
183
184 config DW_AXI_DMAC_STARFIVE
185         tristate "Synopsys DesignWare AXI DMA support for StarFive SOC"
186         depends on SOC_STARFIVE_VIC7100
187         help
188           Enable support for Synopsys DesignWare AXI DMA controller.
189           NOTE: It's for StarFive SOC.
190
191 config EP93XX_DMA
192         bool "Cirrus Logic EP93xx DMA support"
193         depends on ARCH_EP93XX || COMPILE_TEST
194         select DMA_ENGINE
195         help
196           Enable support for the Cirrus Logic EP93xx M2P/M2M DMA controller.
197
198 config FSL_DMA
199         tristate "Freescale Elo series DMA support"
200         depends on FSL_SOC
201         select DMA_ENGINE
202         select ASYNC_TX_ENABLE_CHANNEL_SWITCH
203         help
204           Enable support for the Freescale Elo series DMA controllers.
205           The Elo is the DMA controller on some mpc82xx and mpc83xx parts, the
206           EloPlus is on mpc85xx and mpc86xx and Pxxx parts, and the Elo3 is on
207           some Txxx and Bxxx parts.
208
209 config FSL_EDMA
210         tristate "Freescale eDMA engine support"
211         depends on OF
212         select DMA_ENGINE
213         select DMA_VIRTUAL_CHANNELS
214         help
215           Support the Freescale eDMA engine with programmable channel
216           multiplexing capability for DMA request sources(slot).
217           This module can be found on Freescale Vybrid and LS-1 SoCs.
218
219 config FSL_QDMA
220         tristate "NXP Layerscape qDMA engine support"
221         depends on ARM || ARM64
222         select DMA_ENGINE
223         select DMA_VIRTUAL_CHANNELS
224         select DMA_ENGINE_RAID
225         select ASYNC_TX_ENABLE_CHANNEL_SWITCH
226         help
227          Support the NXP Layerscape qDMA engine with command queue and legacy mode.
228          Channel virtualization is supported through enqueuing of DMA jobs to,
229          or dequeuing DMA jobs from, different work queues.
230          This module can be found on NXP Layerscape SoCs.
231           The qdma driver only work on  SoCs with a DPAA hardware block.
232
233 config FSL_RAID
234         tristate "Freescale RAID engine Support"
235         depends on FSL_SOC && !ASYNC_TX_ENABLE_CHANNEL_SWITCH
236         select DMA_ENGINE
237         select DMA_ENGINE_RAID
238         help
239           Enable support for Freescale RAID Engine. RAID Engine is
240           available on some QorIQ SoCs (like P5020/P5040). It has
241           the capability to offload memcpy, xor and pq computation
242           for raid5/6.
243
244 config HISI_DMA
245         tristate "HiSilicon DMA Engine support"
246         depends on ARM64 || COMPILE_TEST
247         depends on PCI_MSI
248         select DMA_ENGINE
249         select DMA_VIRTUAL_CHANNELS
250         help
251           Support HiSilicon Kunpeng DMA engine.
252
253 config IMG_MDC_DMA
254         tristate "IMG MDC support"
255         depends on MIPS || COMPILE_TEST
256         depends on MFD_SYSCON
257         select DMA_ENGINE
258         select DMA_VIRTUAL_CHANNELS
259         help
260           Enable support for the IMG multi-threaded DMA controller (MDC).
261
262 config IMX_DMA
263         tristate "i.MX DMA support"
264         depends on ARCH_MXC
265         select DMA_ENGINE
266         help
267           Support the i.MX DMA engine. This engine is integrated into
268           Freescale i.MX1/21/27 chips.
269
270 config IMX_SDMA
271         tristate "i.MX SDMA support"
272         depends on ARCH_MXC
273         select DMA_ENGINE
274         select DMA_VIRTUAL_CHANNELS
275         help
276           Support the i.MX SDMA engine. This engine is integrated into
277           Freescale i.MX25/31/35/51/53/6 chips.
278
279 config INTEL_IDMA64
280         tristate "Intel integrated DMA 64-bit support"
281         select DMA_ENGINE
282         select DMA_VIRTUAL_CHANNELS
283         help
284           Enable DMA support for Intel Low Power Subsystem such as found on
285           Intel Skylake PCH.
286
287 config INTEL_IDXD_BUS
288         tristate
289         default INTEL_IDXD
290
291 config INTEL_IDXD
292         tristate "Intel Data Accelerators support"
293         depends on PCI && X86_64 && !UML
294         depends on PCI_MSI
295         depends on PCI_PASID
296         depends on SBITMAP
297         select DMA_ENGINE
298         help
299           Enable support for the Intel(R) data accelerators present
300           in Intel Xeon CPU.
301
302           Say Y if you have such a platform.
303
304           If unsure, say N.
305
306 config INTEL_IDXD_COMPAT
307         bool "Legacy behavior for idxd driver"
308         depends on PCI && X86_64
309         select INTEL_IDXD_BUS
310         help
311           Compatible driver to support old /sys/bus/dsa/drivers/dsa behavior.
312           The old behavior performed driver bind/unbind for device and wq
313           devices all under the dsa driver. The compat driver will emulate
314           the legacy behavior in order to allow existing support apps (i.e.
315           accel-config) to continue function. It is expected that accel-config
316           v3.2 and earlier will need the compat mode. A distro with later
317           accel-config version can disable this compat config.
318
319           Say Y if you have old applications that require such behavior.
320
321           If unsure, say N.
322
323 # Config symbol that collects all the dependencies that's necessary to
324 # support shared virtual memory for the devices supported by idxd.
325 config INTEL_IDXD_SVM
326         bool "Accelerator Shared Virtual Memory Support"
327         depends on INTEL_IDXD
328         depends on INTEL_IOMMU_SVM
329         depends on PCI_PRI
330         depends on PCI_PASID
331         depends on PCI_IOV
332
333 config INTEL_IDXD_PERFMON
334         bool "Intel Data Accelerators performance monitor support"
335         depends on INTEL_IDXD
336         help
337           Enable performance monitor (pmu) support for the Intel(R)
338           data accelerators present in Intel Xeon CPU.  With this
339           enabled, perf can be used to monitor the DSA (Intel Data
340           Streaming Accelerator) events described in the Intel DSA
341           spec.
342
343           If unsure, say N.
344
345 config INTEL_IOATDMA
346         tristate "Intel I/OAT DMA support"
347         depends on PCI && X86_64 && !UML
348         select DMA_ENGINE
349         select DMA_ENGINE_RAID
350         select DCA
351         help
352           Enable support for the Intel(R) I/OAT DMA engine present
353           in recent Intel Xeon chipsets.
354
355           Say Y here if you have such a chipset.
356
357           If unsure, say N.
358
359 config INTEL_IOP_ADMA
360         tristate "Intel IOP32x ADMA support"
361         depends on ARCH_IOP32X || COMPILE_TEST
362         select DMA_ENGINE
363         select ASYNC_TX_ENABLE_CHANNEL_SWITCH
364         help
365           Enable support for the Intel(R) IOP Series RAID engines.
366
367 config K3_DMA
368         tristate "Hisilicon K3 DMA support"
369         depends on ARCH_HI3xxx || ARCH_HISI || COMPILE_TEST
370         select DMA_ENGINE
371         select DMA_VIRTUAL_CHANNELS
372         help
373           Support the DMA engine for Hisilicon K3 platform
374           devices.
375
376 config LPC18XX_DMAMUX
377         bool "NXP LPC18xx/43xx DMA MUX for PL080"
378         depends on ARCH_LPC18XX || COMPILE_TEST
379         depends on OF && AMBA_PL08X
380         select MFD_SYSCON
381         help
382           Enable support for DMA on NXP LPC18xx/43xx platforms
383           with PL080 and multiplexed DMA request lines.
384
385 config MCF_EDMA
386         tristate "Freescale eDMA engine support, ColdFire mcf5441x SoCs"
387         depends on M5441x || COMPILE_TEST
388         select DMA_ENGINE
389         select DMA_VIRTUAL_CHANNELS
390         help
391           Support the Freescale ColdFire eDMA engine, 64-channel
392           implementation that performs complex data transfers with
393           minimal intervention from a host processor.
394           This module can be found on Freescale ColdFire mcf5441x SoCs.
395
396 config MILBEAUT_HDMAC
397         tristate "Milbeaut AHB DMA support"
398         depends on ARCH_MILBEAUT || COMPILE_TEST
399         depends on OF
400         select DMA_ENGINE
401         select DMA_VIRTUAL_CHANNELS
402         help
403           Say yes here to support the Socionext Milbeaut
404           HDMAC device.
405
406 config MILBEAUT_XDMAC
407         tristate "Milbeaut AXI DMA support"
408         depends on ARCH_MILBEAUT || COMPILE_TEST
409         depends on OF
410         select DMA_ENGINE
411         select DMA_VIRTUAL_CHANNELS
412         help
413           Say yes here to support the Socionext Milbeaut
414           XDMAC device.
415
416 config MMP_PDMA
417         tristate "MMP PDMA support"
418         depends on ARCH_MMP || ARCH_PXA || COMPILE_TEST
419         select DMA_ENGINE
420         help
421           Support the MMP PDMA engine for PXA and MMP platform.
422
423 config MMP_TDMA
424         tristate "MMP Two-Channel DMA support"
425         depends on ARCH_MMP || COMPILE_TEST
426         select DMA_ENGINE
427         select GENERIC_ALLOCATOR
428         help
429           Support the MMP Two-Channel DMA engine.
430           This engine used for MMP Audio DMA and pxa910 SQU.
431
432 config MOXART_DMA
433         tristate "MOXART DMA support"
434         depends on ARCH_MOXART
435         select DMA_ENGINE
436         select DMA_VIRTUAL_CHANNELS
437         help
438           Enable support for the MOXA ART SoC DMA controller.
439  
440           Say Y here if you enabled MMP ADMA, otherwise say N.
441
442 config MPC512X_DMA
443         tristate "Freescale MPC512x built-in DMA engine support"
444         depends on PPC_MPC512x || PPC_MPC831x
445         select DMA_ENGINE
446         help
447           Enable support for the Freescale MPC512x built-in DMA engine.
448
449 config MV_XOR
450         bool "Marvell XOR engine support"
451         depends on PLAT_ORION || ARCH_MVEBU || COMPILE_TEST
452         select DMA_ENGINE
453         select DMA_ENGINE_RAID
454         select ASYNC_TX_ENABLE_CHANNEL_SWITCH
455         help
456           Enable support for the Marvell XOR engine.
457
458 config MV_XOR_V2
459         bool "Marvell XOR engine version 2 support "
460         depends on ARM64
461         select DMA_ENGINE
462         select DMA_ENGINE_RAID
463         select ASYNC_TX_ENABLE_CHANNEL_SWITCH
464         select GENERIC_MSI_IRQ_DOMAIN
465         help
466           Enable support for the Marvell version 2 XOR engine.
467
468           This engine provides acceleration for copy, XOR and RAID6
469           operations, and is available on Marvell Armada 7K and 8K
470           platforms.
471
472 config MXS_DMA
473         bool "MXS DMA support"
474         depends on ARCH_MXS || ARCH_MXC || COMPILE_TEST
475         select STMP_DEVICE
476         select DMA_ENGINE
477         help
478           Support the MXS DMA engine. This engine including APBH-DMA
479           and APBX-DMA is integrated into some Freescale chips.
480
481 config MX3_IPU
482         bool "MX3x Image Processing Unit support"
483         depends on ARCH_MXC
484         select DMA_ENGINE
485         default y
486         help
487           If you plan to use the Image Processing unit in the i.MX3x, say
488           Y here. If unsure, select Y.
489
490 config MX3_IPU_IRQS
491         int "Number of dynamically mapped interrupts for IPU"
492         depends on MX3_IPU
493         range 2 137
494         default 4
495         help
496           Out of 137 interrupt sources on i.MX31 IPU only very few are used.
497           To avoid bloating the irq_desc[] array we allocate a sufficient
498           number of IRQ slots and map them dynamically to specific sources.
499
500 config NBPFAXI_DMA
501         tristate "Renesas Type-AXI NBPF DMA support"
502         select DMA_ENGINE
503         depends on ARM || COMPILE_TEST
504         help
505           Support for "Type-AXI" NBPF DMA IPs from Renesas
506
507 config OWL_DMA
508         tristate "Actions Semi Owl SoCs DMA support"
509         depends on ARCH_ACTIONS
510         select DMA_ENGINE
511         select DMA_VIRTUAL_CHANNELS
512         help
513           Enable support for the Actions Semi Owl SoCs DMA controller.
514
515 config PCH_DMA
516         tristate "Intel EG20T PCH / LAPIS Semicon IOH(ML7213/ML7223/ML7831) DMA"
517         depends on PCI && (X86_32 || COMPILE_TEST)
518         select DMA_ENGINE
519         help
520           Enable support for Intel EG20T PCH DMA engine.
521
522           This driver also can be used for LAPIS Semiconductor IOH(Input/
523           Output Hub), ML7213, ML7223 and ML7831.
524           ML7213 IOH is for IVI(In-Vehicle Infotainment) use, ML7223 IOH is
525           for MP(Media Phone) use and ML7831 IOH is for general purpose use.
526           ML7213/ML7223/ML7831 is companion chip for Intel Atom E6xx series.
527           ML7213/ML7223/ML7831 is completely compatible for Intel EG20T PCH.
528
529 config PL330_DMA
530         tristate "DMA API Driver for PL330"
531         select DMA_ENGINE
532         depends on ARM_AMBA
533         help
534           Select if your platform has one or more PL330 DMACs.
535           You need to provide platform specific settings via
536           platform_data for a dma-pl330 device.
537
538 config PXA_DMA
539         bool "PXA DMA support"
540         depends on (ARCH_MMP || ARCH_PXA)
541         select DMA_ENGINE
542         select DMA_VIRTUAL_CHANNELS
543         help
544           Support the DMA engine for PXA. It is also compatible with MMP PDMA
545           platform. The internal DMA IP of all PXA variants is supported, with
546           16 to 32 channels for peripheral to memory or memory to memory
547           transfers.
548
549 config PLX_DMA
550         tristate "PLX ExpressLane PEX Switch DMA Engine Support"
551         depends on PCI
552         select DMA_ENGINE
553         help
554           Some PLX ExpressLane PCI Switches support additional DMA engines.
555           These are exposed via extra functions on the switch's
556           upstream port. Each function exposes one DMA channel.
557
558 config STE_DMA40
559         bool "ST-Ericsson DMA40 support"
560         depends on ARCH_U8500
561         select DMA_ENGINE
562         help
563           Support for ST-Ericsson DMA40 controller
564
565 config ST_FDMA
566         tristate "ST FDMA dmaengine support"
567         depends on ARCH_STI
568         depends on REMOTEPROC
569         select ST_SLIM_REMOTEPROC
570         select DMA_ENGINE
571         select DMA_VIRTUAL_CHANNELS
572         help
573           Enable support for ST FDMA controller.
574           It supports 16 independent DMA channels, accepts up to 32 DMA requests
575
576           Say Y here if you have such a chipset.
577           If unsure, say N.
578
579 config STM32_DMA
580         bool "STMicroelectronics STM32 DMA support"
581         depends on ARCH_STM32 || COMPILE_TEST
582         select DMA_ENGINE
583         select DMA_VIRTUAL_CHANNELS
584         help
585           Enable support for the on-chip DMA controller on STMicroelectronics
586           STM32 MCUs.
587           If you have a board based on such a MCU and wish to use DMA say Y
588           here.
589
590 config STM32_DMAMUX
591         bool "STMicroelectronics STM32 dma multiplexer support"
592         depends on STM32_DMA || COMPILE_TEST
593         help
594           Enable support for the on-chip DMA multiplexer on STMicroelectronics
595           STM32 MCUs.
596           If you have a board based on such a MCU and wish to use DMAMUX say Y
597           here.
598
599 config STM32_MDMA
600         bool "STMicroelectronics STM32 master dma support"
601         depends on ARCH_STM32 || COMPILE_TEST
602         depends on OF
603         select DMA_ENGINE
604         select DMA_VIRTUAL_CHANNELS
605         help
606           Enable support for the on-chip MDMA controller on STMicroelectronics
607           STM32 platforms.
608           If you have a board based on STM32 SoC and wish to use the master DMA
609           say Y here.
610
611 config SPRD_DMA
612         tristate "Spreadtrum DMA support"
613         depends on ARCH_SPRD || COMPILE_TEST
614         select DMA_ENGINE
615         select DMA_VIRTUAL_CHANNELS
616         help
617           Enable support for the on-chip DMA controller on Spreadtrum platform.
618
619 config S3C24XX_DMAC
620         bool "Samsung S3C24XX DMA support"
621         depends on ARCH_S3C24XX || COMPILE_TEST
622         select DMA_ENGINE
623         select DMA_VIRTUAL_CHANNELS
624         help
625           Support for the Samsung S3C24XX DMA controller driver. The
626           DMA controller is having multiple DMA channels which can be
627           configured for different peripherals like audio, UART, SPI.
628           The DMA controller can transfer data from memory to peripheral,
629           periphal to memory, periphal to periphal and memory to memory.
630
631 config TXX9_DMAC
632         tristate "Toshiba TXx9 SoC DMA support"
633         depends on MACH_TX49XX || MACH_TX39XX
634         select DMA_ENGINE
635         help
636           Support the TXx9 SoC internal DMA controller.  This can be
637           integrated in chips such as the Toshiba TX4927/38/39.
638
639 config TEGRA20_APB_DMA
640         tristate "NVIDIA Tegra20 APB DMA support"
641         depends on ARCH_TEGRA || COMPILE_TEST
642         select DMA_ENGINE
643         help
644           Support for the NVIDIA Tegra20 APB DMA controller driver. The
645           DMA controller is having multiple DMA channel which can be
646           configured for different peripherals like audio, UART, SPI,
647           I2C etc which is in APB bus.
648           This DMA controller transfers data from memory to peripheral fifo
649           or vice versa. It does not support memory to memory data transfer.
650
651 config TEGRA210_ADMA
652         tristate "NVIDIA Tegra210 ADMA support"
653         depends on (ARCH_TEGRA_210_SOC || COMPILE_TEST)
654         select DMA_ENGINE
655         select DMA_VIRTUAL_CHANNELS
656         help
657           Support for the NVIDIA Tegra210 ADMA controller driver. The
658           DMA controller has multiple DMA channels and is used to service
659           various audio clients in the Tegra210 audio processing engine
660           (APE). This DMA controller transfers data from memory to
661           peripheral and vice versa. It does not support memory to
662           memory data transfer.
663
664 config TIMB_DMA
665         tristate "Timberdale FPGA DMA support"
666         depends on MFD_TIMBERDALE || COMPILE_TEST
667         select DMA_ENGINE
668         help
669           Enable support for the Timberdale FPGA DMA engine.
670
671 config UNIPHIER_MDMAC
672         tristate "UniPhier MIO DMAC"
673         depends on ARCH_UNIPHIER || COMPILE_TEST
674         depends on OF
675         select DMA_ENGINE
676         select DMA_VIRTUAL_CHANNELS
677         help
678           Enable support for the MIO DMAC (Media I/O DMA controller) on the
679           UniPhier platform.  This DMA controller is used as the external
680           DMA engine of the SD/eMMC controllers of the LD4, Pro4, sLD8 SoCs.
681
682 config UNIPHIER_XDMAC
683         tristate "UniPhier XDMAC support"
684         depends on ARCH_UNIPHIER || COMPILE_TEST
685         depends on OF
686         select DMA_ENGINE
687         select DMA_VIRTUAL_CHANNELS
688         help
689           Enable support for the XDMAC (external DMA controller) on the
690           UniPhier platform. This DMA controller can transfer data from
691           memory to memory, memory to peripheral and peripheral to memory.
692
693 config XGENE_DMA
694         tristate "APM X-Gene DMA support"
695         depends on ARCH_XGENE || COMPILE_TEST
696         select DMA_ENGINE
697         select DMA_ENGINE_RAID
698         select ASYNC_TX_ENABLE_CHANNEL_SWITCH
699         help
700           Enable support for the APM X-Gene SoC DMA engine.
701
702 config XILINX_DMA
703         tristate "Xilinx AXI DMAS Engine"
704         depends on (ARCH_ZYNQ || MICROBLAZE || ARM64)
705         select DMA_ENGINE
706         help
707           Enable support for Xilinx AXI VDMA Soft IP.
708
709           AXI VDMA engine provides high-bandwidth direct memory access
710           between memory and AXI4-Stream video type target
711           peripherals including peripherals which support AXI4-
712           Stream Video Protocol.  It has two stream interfaces/
713           channels, Memory Mapped to Stream (MM2S) and Stream to
714           Memory Mapped (S2MM) for the data transfers.
715           AXI CDMA engine provides high-bandwidth direct memory access
716           between a memory-mapped source address and a memory-mapped
717           destination address.
718           AXI DMA engine provides high-bandwidth one dimensional direct
719           memory access between memory and AXI4-Stream target peripherals.
720           AXI MCDMA engine provides high-bandwidth direct memory access
721           between memory and AXI4-Stream target peripherals. It provides
722           the scatter gather interface with multiple channels independent
723           configuration support.
724
725 config XILINX_ZYNQMP_DMA
726         tristate "Xilinx ZynqMP DMA Engine"
727         depends on (ARCH_ZYNQ || MICROBLAZE || ARM64)
728         select DMA_ENGINE
729         help
730           Enable support for Xilinx ZynqMP DMA controller.
731
732 config XILINX_ZYNQMP_DPDMA
733         tristate "Xilinx DPDMA Engine"
734         depends on HAS_IOMEM && OF
735         select DMA_ENGINE
736         select DMA_VIRTUAL_CHANNELS
737         help
738           Enable support for Xilinx ZynqMP DisplayPort DMA. Choose this option
739           if you have a Xilinx ZynqMP SoC with a DisplayPort subsystem. The
740           driver provides the dmaengine required by the DisplayPort subsystem
741           display driver.
742
743 # driver files
744 source "drivers/dma/bestcomm/Kconfig"
745
746 source "drivers/dma/mediatek/Kconfig"
747
748 source "drivers/dma/ptdma/Kconfig"
749
750 source "drivers/dma/qcom/Kconfig"
751
752 source "drivers/dma/dw/Kconfig"
753
754 source "drivers/dma/dw-edma/Kconfig"
755
756 source "drivers/dma/hsu/Kconfig"
757
758 source "drivers/dma/sf-pdma/Kconfig"
759
760 source "drivers/dma/sh/Kconfig"
761
762 source "drivers/dma/ti/Kconfig"
763
764 source "drivers/dma/fsl-dpaa2-qdma/Kconfig"
765
766 source "drivers/dma/lgm/Kconfig"
767
768 # clients
769 comment "DMA Clients"
770         depends on DMA_ENGINE
771
772 config ASYNC_TX_DMA
773         bool "Async_tx: Offload support for the async_tx api"
774         depends on DMA_ENGINE
775         help
776           This allows the async_tx api to take advantage of offload engines for
777           memcpy, memset, xor, and raid6 p+q operations.  If your platform has
778           a dma engine that can perform raid operations and you have enabled
779           MD_RAID456 say Y.
780
781           If unsure, say N.
782
783 config DMATEST
784         tristate "DMA Test client"
785         depends on DMA_ENGINE
786         select DMA_ENGINE_RAID
787         help
788           Simple DMA test client. Say N unless you're debugging a
789           DMA Device driver.
790
791 config DMA_ENGINE_RAID
792         bool
793
794 endif