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