38fe3975b4
This is the initial framework for the new pds-vfio-pci device driver. This does the very basics of registering the PDS PCI device and configuring it as a VFIO PCI device. With this change, the VF device can be bound to the pds-vfio-pci driver on the host and presented to the VM as an ethernet VF. Signed-off-by: Brett Creeley <brett.creeley@amd.com> Signed-off-by: Shannon Nelson <shannon.nelson@amd.com> Reviewed-by: Simon Horman <horms@kernel.org> Reviewed-by: Kevin Tian <kevin.tian@intel.com> Reviewed-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com> Reviewed-by: Jason Gunthorpe <jgg@nvidia.com> Link: https://lore.kernel.org/r/20230807205755.29579-3-brett.creeley@amd.com Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
16 lines
479 B
Makefile
16 lines
479 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_VFIO_PCI_ZDEV_KVM) += 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/
|
|
|
|
obj-$(CONFIG_PDS_VFIO_PCI) += pds/
|