Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #
  2. # DMA engine configuration
  3. #
  4. menuconfig DMADEVICES
  5. bool "DMA Engine support"
  6. depends on !HIGHMEM64G && HAS_DMA
  7. help
  8. DMA engines can do asynchronous data transfers without
  9. involving the host CPU. Currently, this framework can be
  10. used to offload memory copies in the network stack and
  11. RAID operations in the MD driver. This menu only presents
  12. DMA Device drivers supported by the configured arch, it may
  13. be empty in some cases.
  14. if DMADEVICES
  15. comment "DMA Devices"
  16. config INTEL_IOATDMA
  17. tristate "Intel I/OAT DMA support"
  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. Say Y here if you have such a chipset.
  25. If unsure, say N.
  26. config INTEL_IOP_ADMA
  27. tristate "Intel IOP ADMA support"
  28. depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX
  29. select ASYNC_CORE
  30. select DMA_ENGINE
  31. help
  32. Enable support for the Intel(R) IOP Series RAID engines.
  33. config FSL_DMA
  34. bool "Freescale MPC85xx/MPC83xx DMA support"
  35. depends on PPC
  36. select DMA_ENGINE
  37. ---help---
  38. Enable support for the Freescale DMA engine. Now, it support
  39. MPC8560/40, MPC8555, MPC8548 and MPC8641 processors.
  40. The MPC8349, MPC8360 is also supported.
  41. config DMA_ENGINE
  42. bool
  43. comment "DMA Clients"
  44. depends on DMA_ENGINE
  45. config NET_DMA
  46. bool "Network: TCP receive copy offload"
  47. depends on DMA_ENGINE && NET
  48. default (INTEL_IOATDMA || FSL_DMA)
  49. help
  50. This enables the use of DMA engines in the network stack to
  51. offload receive copy-to-user operations, freeing CPU cycles.
  52. Say Y here if you enabled INTEL_IOATDMA or FSL_DMA, otherwise
  53. say N.
  54. endif