Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. #
  2. # DMA engine configuration
  3. #
  4. menuconfig DMADEVICES
  5. bool "DMA Engine support"
  6. depends on 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 ASYNC_TX_DISABLE_CHANNEL_SWITCH
  17. bool
  18. config INTEL_IOATDMA
  19. tristate "Intel I/OAT DMA support"
  20. depends on PCI && X86
  21. select DMA_ENGINE
  22. select DCA
  23. select ASYNC_TX_DISABLE_CHANNEL_SWITCH
  24. help
  25. Enable support for the Intel(R) I/OAT DMA engine present
  26. in recent Intel Xeon chipsets.
  27. Say Y here if you have such a chipset.
  28. If unsure, say N.
  29. config INTEL_IOP_ADMA
  30. tristate "Intel IOP ADMA support"
  31. depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX
  32. select DMA_ENGINE
  33. help
  34. Enable support for the Intel(R) IOP Series RAID engines.
  35. config DW_DMAC
  36. tristate "Synopsys DesignWare AHB DMA support"
  37. depends on AVR32
  38. select DMA_ENGINE
  39. default y if CPU_AT32AP7000
  40. help
  41. Support the Synopsys DesignWare AHB DMA controller. This
  42. can be integrated in chips such as the Atmel AT32ap7000.
  43. config FSL_DMA
  44. tristate "Freescale Elo and Elo Plus DMA support"
  45. depends on FSL_SOC
  46. select DMA_ENGINE
  47. ---help---
  48. Enable support for the Freescale Elo and Elo Plus DMA controllers.
  49. The Elo is the DMA controller on some 82xx and 83xx parts, and the
  50. Elo Plus is the DMA controller on 85xx and 86xx parts.
  51. config MV_XOR
  52. bool "Marvell XOR engine support"
  53. depends on PLAT_ORION
  54. select DMA_ENGINE
  55. ---help---
  56. Enable support for the Marvell XOR engine.
  57. config MX3_IPU
  58. bool "MX3x Image Processing Unit support"
  59. depends on ARCH_MX3
  60. select DMA_ENGINE
  61. default y
  62. help
  63. If you plan to use the Image Processing unit in the i.MX3x, say
  64. Y here. If unsure, select Y.
  65. config MX3_IPU_IRQS
  66. int "Number of dynamically mapped interrupts for IPU"
  67. depends on MX3_IPU
  68. range 2 137
  69. default 4
  70. help
  71. Out of 137 interrupt sources on i.MX31 IPU only very few are used.
  72. To avoid bloating the irq_desc[] array we allocate a sufficient
  73. number of IRQ slots and map them dynamically to specific sources.
  74. config DMA_ENGINE
  75. bool
  76. comment "DMA Clients"
  77. depends on DMA_ENGINE
  78. config NET_DMA
  79. bool "Network: TCP receive copy offload"
  80. depends on DMA_ENGINE && NET
  81. default (INTEL_IOATDMA || FSL_DMA)
  82. help
  83. This enables the use of DMA engines in the network stack to
  84. offload receive copy-to-user operations, freeing CPU cycles.
  85. Say Y here if you enabled INTEL_IOATDMA or FSL_DMA, otherwise
  86. say N.
  87. config ASYNC_TX_DMA
  88. bool "Async_tx: Offload support for the async_tx api"
  89. depends on DMA_ENGINE
  90. help
  91. This allows the async_tx api to take advantage of offload engines for
  92. memcpy, memset, xor, and raid6 p+q operations. If your platform has
  93. a dma engine that can perform raid operations and you have enabled
  94. MD_RAID456 say Y.
  95. If unsure, say N.
  96. config DMATEST
  97. tristate "DMA Test client"
  98. depends on DMA_ENGINE
  99. help
  100. Simple DMA test client. Say N unless you're debugging a
  101. DMA Device driver.
  102. endif