blob: ddcd9793b25c2e4c2d612e0c27cc52ab596ba6b3 [file] [log] [blame]
Chris Leechc13c8262006-05-23 17:18:44 -07001#
2# DMA engine configuration
3#
4
Shannon Nelson2ed6dc32007-10-16 01:27:42 -07005menuconfig DMADEVICES
Haavard Skinnemoen6d4f5872007-11-28 16:21:43 -08006 bool "DMA Engine support"
Dan Williams04ce9ab2009-06-03 14:22:28 -07007 depends on HAS_DMA
Shannon Nelson2ed6dc32007-10-16 01:27:42 -07008 help
Haavard Skinnemoen6d4f5872007-11-28 16:21:43 -08009 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
Dan Williams9c402f42008-06-27 01:21:11 -070012 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.
Chris Leechc13c8262006-05-23 17:18:44 -070015
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070016if DMADEVICES
Chris Leechdb217332006-06-17 21:24:58 -070017
Chris Leech0bbd5f42006-05-23 17:35:34 -070018comment "DMA Devices"
19
Dan Williams138f4c32009-09-08 17:42:51 -070020config ASYNC_TX_DISABLE_CHANNEL_SWITCH
21 bool
22
Chris Leech0bbd5f42006-05-23 17:35:34 -070023config INTEL_IOATDMA
24 tristate "Intel I/OAT DMA support"
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070025 depends on PCI && X86
26 select DMA_ENGINE
27 select DCA
Dan Williams138f4c32009-09-08 17:42:51 -070028 select ASYNC_TX_DISABLE_CHANNEL_SWITCH
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070029 help
30 Enable support for the Intel(R) I/OAT DMA engine present
31 in recent Intel Xeon chipsets.
32
33 Say Y here if you have such a chipset.
34
35 If unsure, say N.
Dan Williamsc2110922007-01-02 13:52:26 -070036
37config INTEL_IOP_ADMA
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070038 tristate "Intel IOP ADMA support"
39 depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070040 select DMA_ENGINE
41 help
42 Enable support for the Intel(R) IOP Series RAID engines.
Dan Williamsc2110922007-01-02 13:52:26 -070043
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -070044config DW_DMAC
45 tristate "Synopsys DesignWare AHB DMA support"
46 depends on AVR32
47 select DMA_ENGINE
48 default y if CPU_AT32AP7000
49 help
50 Support the Synopsys DesignWare AHB DMA controller. This
51 can be integrated in chips such as the Atmel AT32ap7000.
52
Zhang Wei173acc72008-03-01 07:42:48 -070053config FSL_DMA
Timur Tabi77cd62e2008-09-26 17:00:11 -070054 tristate "Freescale Elo and Elo Plus DMA support"
55 depends on FSL_SOC
Zhang Wei173acc72008-03-01 07:42:48 -070056 select DMA_ENGINE
57 ---help---
Timur Tabi77cd62e2008-09-26 17:00:11 -070058 Enable support for the Freescale Elo and Elo Plus DMA controllers.
59 The Elo is the DMA controller on some 82xx and 83xx parts, and the
60 Elo Plus is the DMA controller on 85xx and 86xx parts.
Zhang Wei173acc72008-03-01 07:42:48 -070061
Saeed Bisharaff7b0472008-07-08 11:58:36 -070062config MV_XOR
63 bool "Marvell XOR engine support"
64 depends on PLAT_ORION
Saeed Bisharaff7b0472008-07-08 11:58:36 -070065 select DMA_ENGINE
66 ---help---
67 Enable support for the Marvell XOR engine.
68
Guennadi Liakhovetski5296b562009-01-19 15:36:21 -070069config MX3_IPU
70 bool "MX3x Image Processing Unit support"
71 depends on ARCH_MX3
72 select DMA_ENGINE
73 default y
74 help
75 If you plan to use the Image Processing unit in the i.MX3x, say
76 Y here. If unsure, select Y.
77
78config MX3_IPU_IRQS
79 int "Number of dynamically mapped interrupts for IPU"
80 depends on MX3_IPU
81 range 2 137
82 default 4
83 help
84 Out of 137 interrupt sources on i.MX31 IPU only very few are used.
85 To avoid bloating the irq_desc[] array we allocate a sufficient
86 number of IRQ slots and map them dynamically to specific sources.
87
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070088config DMA_ENGINE
89 bool
90
91comment "DMA Clients"
92 depends on DMA_ENGINE
93
94config NET_DMA
95 bool "Network: TCP receive copy offload"
96 depends on DMA_ENGINE && NET
Dan Williams9c402f42008-06-27 01:21:11 -070097 default (INTEL_IOATDMA || FSL_DMA)
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070098 help
99 This enables the use of DMA engines in the network stack to
100 offload receive copy-to-user operations, freeing CPU cycles.
Dan Williams9c402f42008-06-27 01:21:11 -0700101
102 Say Y here if you enabled INTEL_IOATDMA or FSL_DMA, otherwise
103 say N.
Shannon Nelson2ed6dc32007-10-16 01:27:42 -0700104
Dan Williams729b5d12009-03-25 09:13:25 -0700105config ASYNC_TX_DMA
106 bool "Async_tx: Offload support for the async_tx api"
107 depends on DMA_ENGINE
108 help
109 This allows the async_tx api to take advantage of offload engines for
110 memcpy, memset, xor, and raid6 p+q operations. If your platform has
111 a dma engine that can perform raid operations and you have enabled
112 MD_RAID456 say Y.
113
114 If unsure, say N.
115
Haavard Skinnemoen4a776f02008-07-08 11:58:45 -0700116config DMATEST
117 tristate "DMA Test client"
118 depends on DMA_ENGINE
119 help
120 Simple DMA test client. Say N unless you're debugging a
121 DMA Device driver.
122
Shannon Nelson2ed6dc32007-10-16 01:27:42 -0700123endif