Kconfig 1.3 KB

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