Skip to content

Commit

Permalink
[I/OAT]: DMA memcpy subsystem
Browse files Browse the repository at this point in the history
Provides an API for offloading memory copies to DMA devices

Signed-off-by: Chris Leech <christopher.leech@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Chris Leech authored and David S. Miller committed Jun 18, 2006
1 parent 427abfa commit c13c826
Show file tree
Hide file tree
Showing 6 changed files with 762 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,6 @@ source "drivers/edac/Kconfig"

source "drivers/rtc/Kconfig"

source "drivers/dma/Kconfig"

endmenu
1 change: 1 addition & 0 deletions drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,4 @@ obj-$(CONFIG_SGI_SN) += sn/
obj-y += firmware/
obj-$(CONFIG_CRYPTO) += crypto/
obj-$(CONFIG_SUPERH) += sh/
obj-$(CONFIG_DMA_ENGINE) += dma/
13 changes: 13 additions & 0 deletions drivers/dma/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#
# DMA engine configuration
#

menu "DMA Engine support"

config DMA_ENGINE
bool "Support for DMA engines"
---help---
DMA engines offload copy operations from the CPU to dedicated
hardware, allowing the copies to happen asynchronously.

endmenu
1 change: 1 addition & 0 deletions drivers/dma/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-y += dmaengine.o
Loading

0 comments on commit c13c826

Please sign in to comment.