mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 10:01:56 +00:00
ee3a5b2359
Add a vendor-specific vfio_pci driver for HiSilicon ACC devices. This will be extended in subsequent patches to add support for VFIO live migration feature. Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com> Reviewed-by: Kevin Tian <kevin.tian@intel.com> Link: https://lore.kernel.org/r/20220308184902.2242-5-shameerali.kolothum.thodi@huawei.com Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
14 lines
430 B
Makefile
14 lines
430 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
vfio-pci-core-y := vfio_pci_core.o vfio_pci_intrs.o vfio_pci_rdwr.o vfio_pci_config.o
|
|
vfio-pci-core-$(CONFIG_S390) += vfio_pci_zdev.o
|
|
obj-$(CONFIG_VFIO_PCI_CORE) += vfio-pci-core.o
|
|
|
|
vfio-pci-y := vfio_pci.o
|
|
vfio-pci-$(CONFIG_VFIO_PCI_IGD) += vfio_pci_igd.o
|
|
obj-$(CONFIG_VFIO_PCI) += vfio-pci.o
|
|
|
|
obj-$(CONFIG_MLX5_VFIO_PCI) += mlx5/
|
|
|
|
obj-$(CONFIG_HISI_ACC_VFIO_PCI) += hisilicon/
|