Kconfig 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 DMA_ENGINE
  30. help
  31. Enable support for the Intel(R) IOP Series RAID engines.
  32. config DW_DMAC
  33. tristate "Synopsys DesignWare AHB DMA support"
  34. depends on AVR32
  35. select DMA_ENGINE
  36. default y if CPU_AT32AP7000
  37. help
  38. Support the Synopsys DesignWare AHB DMA controller. This
  39. can be integrated in chips such as the Atmel AT32ap7000.
  40. config FSL_DMA
  41. tristate "Freescale Elo and Elo Plus DMA support"
  42. depends on FSL_SOC
  43. select DMA_ENGINE
  44. ---help---
  45. Enable support for the Freescale Elo and Elo Plus DMA controllers.
  46. The Elo is the DMA controller on some 82xx and 83xx parts, and the
  47. Elo Plus is the DMA controller on 85xx and 86xx parts.
  48. config MV_XOR
  49. bool "Marvell XOR engine support"
  50. depends on PLAT_ORION
  51. select DMA_ENGINE
  52. ---help---
  53. Enable support for the Marvell XOR engine.
  54. config DMA_ENGINE
  55. bool
  56. comment "DMA Clients"
  57. depends on DMA_ENGINE
  58. config NET_DMA
  59. bool "Network: TCP receive copy offload"
  60. depends on DMA_ENGINE && NET
  61. default (INTEL_IOATDMA || FSL_DMA)
  62. help
  63. This enables the use of DMA engines in the network stack to
  64. offload receive copy-to-user operations, freeing CPU cycles.
  65. Say Y here if you enabled INTEL_IOATDMA or FSL_DMA, otherwise
  66. say N.
  67. config DMATEST
  68. tristate "DMA Test client"
  69. depends on DMA_ENGINE
  70. help
  71. Simple DMA test client. Say N unless you're debugging a
  72. DMA Device driver.
  73. endif