Kconfig 1.2 KB

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