Kconfig 441 B

12345678910111213141516171819202122
  1. #
  2. # DMA engine configuration
  3. #
  4. menu "DMA Engine support"
  5. config DMA_ENGINE
  6. bool "Support for DMA engines"
  7. ---help---
  8. DMA engines offload copy operations from the CPU to dedicated
  9. hardware, allowing the copies to happen asynchronously.
  10. comment "DMA Devices"
  11. config INTEL_IOATDMA
  12. tristate "Intel I/OAT DMA support"
  13. depends on DMA_ENGINE && PCI
  14. default m
  15. ---help---
  16. Enable support for the Intel(R) I/OAT DMA engine.
  17. endmenu