fsldma: remove internal self-test from Freescale Elo DMA driver
[linux-2.6-block.git] / drivers / dma / Kconfig
CommitLineData
c13c8260
CL
1#
2# DMA engine configuration
3#
4
2ed6dc34 5menuconfig DMADEVICES
6d4f5879 6 bool "DMA Engine support"
9c402f4e 7 depends on !HIGHMEM64G && HAS_DMA
2ed6dc34 8 help
6d4f5879
HS
9 DMA engines can do asynchronous data transfers without
10 involving the host CPU. Currently, this framework can be
11 used to offload memory copies in the network stack and
9c402f4e
DW
12 RAID operations in the MD driver. This menu only presents
13 DMA Device drivers supported by the configured arch, it may
14 be empty in some cases.
2ed6dc34
SN
15
16if DMADEVICES
17
18comment "DMA Devices"
19
20config INTEL_IOATDMA
21 tristate "Intel I/OAT DMA support"
22 depends on PCI && X86
23 select DMA_ENGINE
24 select DCA
25 help
26 Enable support for the Intel(R) I/OAT DMA engine present
27 in recent Intel Xeon chipsets.
28
29 Say Y here if you have such a chipset.
30
31 If unsure, say N.
32
33config INTEL_IOP_ADMA
34 tristate "Intel IOP ADMA support"
35 depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX
36 select ASYNC_CORE
37 select DMA_ENGINE
38 help
39 Enable support for the Intel(R) IOP Series RAID engines.
c13c8260 40
3bfb1d20
HS
41config DW_DMAC
42 tristate "Synopsys DesignWare AHB DMA support"
43 depends on AVR32
44 select DMA_ENGINE
45 default y if CPU_AT32AP7000
46 help
47 Support the Synopsys DesignWare AHB DMA controller. This
48 can be integrated in chips such as the Atmel AT32ap7000.
49
173acc7c
ZW
50config FSL_DMA
51 bool "Freescale MPC85xx/MPC83xx DMA support"
52 depends on PPC
53 select DMA_ENGINE
54 ---help---
55 Enable support for the Freescale DMA engine. Now, it support
56 MPC8560/40, MPC8555, MPC8548 and MPC8641 processors.
57 The MPC8349, MPC8360 is also supported.
58
ff7b0479
SB
59config MV_XOR
60 bool "Marvell XOR engine support"
61 depends on PLAT_ORION
62 select ASYNC_CORE
63 select DMA_ENGINE
64 ---help---
65 Enable support for the Marvell XOR engine.
66
c13c8260 67config DMA_ENGINE
2ed6dc34 68 bool
c13c8260 69
db217334 70comment "DMA Clients"
2ed6dc34 71 depends on DMA_ENGINE
db217334
CL
72
73config NET_DMA
74 bool "Network: TCP receive copy offload"
75 depends on DMA_ENGINE && NET
9c402f4e 76 default (INTEL_IOATDMA || FSL_DMA)
2ed6dc34 77 help
db217334
CL
78 This enables the use of DMA engines in the network stack to
79 offload receive copy-to-user operations, freeing CPU cycles.
9c402f4e
DW
80
81 Say Y here if you enabled INTEL_IOATDMA or FSL_DMA, otherwise
82 say N.
db217334 83
4a776f0a
HS
84config DMATEST
85 tristate "DMA Test client"
86 depends on DMA_ENGINE
87 help
88 Simple DMA test client. Say N unless you're debugging a
89 DMA Device driver.
90
2ed6dc34 91endif