Chris Leech | c13c826 | 2006-05-23 17:18:44 -0700 | [diff] [blame] | 1 | # |
| 2 | # DMA engine configuration |
| 3 | # |
| 4 | |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame^] | 5 | menuconfig DMADEVICES |
| 6 | bool "DMA Offload Engine support" |
| 7 | depends on (PCI && X86) || ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX |
| 8 | help |
| 9 | Intel(R) offload engines enable offloading memory copies in the |
| 10 | network stack and RAID operations in the MD driver. |
Chris Leech | c13c826 | 2006-05-23 17:18:44 -0700 | [diff] [blame] | 11 | |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame^] | 12 | if DMADEVICES |
Chris Leech | db21733 | 2006-06-17 21:24:58 -0700 | [diff] [blame] | 13 | |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 14 | comment "DMA Devices" |
| 15 | |
| 16 | config INTEL_IOATDMA |
| 17 | tristate "Intel I/OAT DMA support" |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame^] | 18 | depends on PCI && X86 |
| 19 | select DMA_ENGINE |
| 20 | select DCA |
| 21 | help |
| 22 | Enable support for the Intel(R) I/OAT DMA engine present |
| 23 | in recent Intel Xeon chipsets. |
| 24 | |
| 25 | Say Y here if you have such a chipset. |
| 26 | |
| 27 | If unsure, say N. |
Dan Williams | c211092 | 2007-01-02 13:52:26 -0700 | [diff] [blame] | 28 | |
| 29 | config INTEL_IOP_ADMA |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame^] | 30 | tristate "Intel IOP ADMA support" |
| 31 | depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX |
Dan Williams | c211092 | 2007-01-02 13:52:26 -0700 | [diff] [blame] | 32 | select ASYNC_CORE |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame^] | 33 | select DMA_ENGINE |
| 34 | help |
| 35 | Enable support for the Intel(R) IOP Series RAID engines. |
Dan Williams | c211092 | 2007-01-02 13:52:26 -0700 | [diff] [blame] | 36 | |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame^] | 37 | config DMA_ENGINE |
| 38 | bool |
| 39 | |
| 40 | comment "DMA Clients" |
| 41 | depends on DMA_ENGINE |
| 42 | |
| 43 | config NET_DMA |
| 44 | bool "Network: TCP receive copy offload" |
| 45 | depends on DMA_ENGINE && NET |
| 46 | default y |
| 47 | help |
| 48 | This enables the use of DMA engines in the network stack to |
| 49 | offload receive copy-to-user operations, freeing CPU cycles. |
| 50 | Since this is the main user of the DMA engine, it should be enabled; |
| 51 | say Y here. |
| 52 | |
| 53 | endif |