Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 MX3_IPU
  55. bool "MX3x Image Processing Unit support"
  56. depends on ARCH_MX3
  57. select DMA_ENGINE
  58. default y
  59. help
  60. If you plan to use the Image Processing unit in the i.MX3x, say
  61. Y here. If unsure, select Y.
  62. config MX3_IPU_IRQS
  63. int "Number of dynamically mapped interrupts for IPU"
  64. depends on MX3_IPU
  65. range 2 137
  66. default 4
  67. help
  68. Out of 137 interrupt sources on i.MX31 IPU only very few are used.
  69. To avoid bloating the irq_desc[] array we allocate a sufficient
  70. number of IRQ slots and map them dynamically to specific sources.
  71. config DMA_ENGINE
  72. bool
  73. comment "DMA Clients"
  74. depends on DMA_ENGINE
  75. config NET_DMA
  76. bool "Network: TCP receive copy offload"
  77. depends on DMA_ENGINE && NET
  78. default (INTEL_IOATDMA || FSL_DMA)
  79. help
  80. This enables the use of DMA engines in the network stack to
  81. offload receive copy-to-user operations, freeing CPU cycles.
  82. Say Y here if you enabled INTEL_IOATDMA or FSL_DMA, otherwise
  83. say N.
  84. config ASYNC_TX_DMA
  85. bool "Async_tx: Offload support for the async_tx api"
  86. depends on DMA_ENGINE
  87. help
  88. This allows the async_tx api to take advantage of offload engines for
  89. memcpy, memset, xor, and raid6 p+q operations. If your platform has
  90. a dma engine that can perform raid operations and you have enabled
  91. MD_RAID456 say Y.
  92. If unsure, say N.
  93. config DMATEST
  94. tristate "DMA Test client"
  95. depends on DMA_ENGINE
  96. help
  97. Simple DMA test client. Say N unless you're debugging a
  98. DMA Device driver.
  99. endif