dmaengine: remove dependency on async_tx
[safe/jmp/linux-2.6] / drivers / dma / Kconfig
1 #
2 # DMA engine configuration
3 #
4
5 menuconfig DMADEVICES
6         bool "DMA Engine support"
7         depends on !HIGHMEM64G && HAS_DMA
8         help
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
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.
15
16 if DMADEVICES
17
18 comment "DMA Devices"
19
20 config 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
33 config INTEL_IOP_ADMA
34         tristate "Intel IOP ADMA support"
35         depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX
36         select DMA_ENGINE
37         help
38           Enable support for the Intel(R) IOP Series RAID engines.
39
40 config DW_DMAC
41         tristate "Synopsys DesignWare AHB DMA support"
42         depends on AVR32
43         select DMA_ENGINE
44         default y if CPU_AT32AP7000
45         help
46           Support the Synopsys DesignWare AHB DMA controller.  This
47           can be integrated in chips such as the Atmel AT32ap7000.
48
49 config FSL_DMA
50         tristate "Freescale Elo and Elo Plus DMA support"
51         depends on FSL_SOC
52         select DMA_ENGINE
53         ---help---
54           Enable support for the Freescale Elo and Elo Plus DMA controllers.
55           The Elo is the DMA controller on some 82xx and 83xx parts, and the
56           Elo Plus is the DMA controller on 85xx and 86xx parts.
57
58 config MV_XOR
59         bool "Marvell XOR engine support"
60         depends on PLAT_ORION
61         select DMA_ENGINE
62         ---help---
63           Enable support for the Marvell XOR engine.
64
65 config DMA_ENGINE
66         bool
67
68 comment "DMA Clients"
69         depends on DMA_ENGINE
70
71 config NET_DMA
72         bool "Network: TCP receive copy offload"
73         depends on DMA_ENGINE && NET
74         default (INTEL_IOATDMA || FSL_DMA)
75         help
76           This enables the use of DMA engines in the network stack to
77           offload receive copy-to-user operations, freeing CPU cycles.
78
79           Say Y here if you enabled INTEL_IOATDMA or FSL_DMA, otherwise
80           say N.
81
82 config DMATEST
83         tristate "DMA Test client"
84         depends on DMA_ENGINE
85         help
86           Simple DMA test client. Say N unless you're debugging a
87           DMA Device driver.
88
89 endif