diff options
author | Alex Williamson <alex.williamson@redhat.com> | 2012-07-31 08:16:23 -0600 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2012-07-31 08:16:23 -0600 |
commit | 73fa0d10d077d9521ee2dace2307ae2c9a965336 (patch) | |
tree | 2c820b194dd8ea00f23d85c382e86ea6c3beb498 /drivers/vfio/Makefile | |
parent | 4a5b2a20ec87384eeb19e70991e7e15a00cad87b (diff) | |
download | linux-stable-73fa0d10d077d9521ee2dace2307ae2c9a965336.tar.gz linux-stable-73fa0d10d077d9521ee2dace2307ae2c9a965336.tar.bz2 linux-stable-73fa0d10d077d9521ee2dace2307ae2c9a965336.zip |
vfio: Type1 IOMMU implementation
This VFIO IOMMU backend is designed primarily for AMD-Vi and Intel
VT-d hardware, but is potentially usable by anything supporting
similar mapping functionality. We arbitrarily call this a Type1
backend for lack of a better name. This backend has no IOVA
or host memory mapping restrictions for the user and is optimized
for relatively static mappings. Mapped areas are pinned into system
memory.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio/Makefile')
-rw-r--r-- | drivers/vfio/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/vfio/Makefile b/drivers/vfio/Makefile index 7500a67a42a0..2398d4a0e38b 100644 --- a/drivers/vfio/Makefile +++ b/drivers/vfio/Makefile @@ -1 +1,3 @@ obj-$(CONFIG_VFIO) += vfio.o +obj-$(CONFIG_VFIO_IOMMU_TYPE1) += vfio_iommu_type1.o +obj-$(CONFIG_VFIO_PCI) += pci/ |