]> asedeno.scripts.mit.edu Git - linux.git/commit
dmaengine: idxd: Init and probe for Intel data accelerators
authorDave Jiang <dave.jiang@intel.com>
Tue, 21 Jan 2020 23:43:59 +0000 (16:43 -0700)
committerVinod Koul <vkoul@kernel.org>
Fri, 24 Jan 2020 05:48:45 +0000 (11:18 +0530)
commitbfe1d56091c1a404b3d4ce7e9809d745fc4453bb
tree5e53b468626dc7fb9533e4865258d8ba1dc69862
parente81274cd6b5264809384066e09a5253708822522
dmaengine: idxd: Init and probe for Intel data accelerators

The idxd driver introduces the Intel Data Stream Accelerator [1] that will
be available on future Intel Xeon CPUs. One of the kernel access
point for the driver is through the dmaengine subsystem. It will initially
provide the DMA copy service to the kernel.

Some of the main functionality introduced with this accelerator
are: shared virtual memory (SVM) support, and descriptor submission using
Intel CPU instructions movdir64b and enqcmds. There will be additional
accelerator devices that share the same driver with variations to
capabilities.

This commit introduces the probe and initialization component of the
driver.

[1]: https://software.intel.com/en-us/download/intel-data-streaming-accelerator-preliminary-architecture-specification

Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Link: https://lore.kernel.org/r/157965023991.73301.6186843973135311580.stgit@djiang5-desk3.ch.intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
MAINTAINERS
drivers/dma/Kconfig
drivers/dma/Makefile
drivers/dma/idxd/Makefile [new file with mode: 0644]
drivers/dma/idxd/device.c [new file with mode: 0644]
drivers/dma/idxd/idxd.h [new file with mode: 0644]
drivers/dma/idxd/init.c [new file with mode: 0644]
drivers/dma/idxd/irq.c [new file with mode: 0644]
drivers/dma/idxd/registers.h [new file with mode: 0644]
include/uapi/linux/idxd.h [new file with mode: 0644]