mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
a16291b5bc
This is the initial auxiliary driver framework for a new vDPA device driver, an auxiliary_bus client of the pds_core driver. The pds_core driver supplies the PCI services for the VF device and for accessing the adminq in the PF device. This patch adds the very basics of registering for the auxiliary device and setting up debugfs entries. Signed-off-by: Shannon Nelson <shannon.nelson@amd.com> Acked-by: Jason Wang <jasowang@redhat.com> Message-Id: <20230519215632.12343-4-shannon.nelson@amd.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
11 lines
355 B
Makefile
11 lines
355 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_VDPA) += vdpa.o
|
|
obj-$(CONFIG_VDPA_SIM) += vdpa_sim/
|
|
obj-$(CONFIG_VDPA_USER) += vdpa_user/
|
|
obj-$(CONFIG_IFCVF) += ifcvf/
|
|
obj-$(CONFIG_MLX5_VDPA) += mlx5/
|
|
obj-$(CONFIG_VP_VDPA) += virtio_pci/
|
|
obj-$(CONFIG_ALIBABA_ENI_VDPA) += alibaba/
|
|
obj-$(CONFIG_SNET_VDPA) += solidrun/
|
|
obj-$(CONFIG_PDS_VDPA) += pds/
|