mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
64551ede6c
HFI1 VNIC SDMA support enables transmission of VNIC packets over SDMA. Map VNIC queues to SDMA engines and support halting and wakeup of the VNIC queues. Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Reviewed-by: Ira Weiny <ira.weiny@intel.com> Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
22 lines
561 B
Makefile
22 lines
561 B
Makefile
#
|
|
# HFI driver
|
|
#
|
|
#
|
|
#
|
|
# Called from the kernel module build system.
|
|
#
|
|
obj-$(CONFIG_INFINIBAND_HFI1) += hfi1.o
|
|
|
|
hfi1-y := affinity.o chip.o device.o driver.o efivar.o \
|
|
eprom.o file_ops.o firmware.o \
|
|
init.o intr.o mad.o mmu_rb.o pcie.o pio.o pio_copy.o platform.o \
|
|
qp.o qsfp.o rc.o ruc.o sdma.o sysfs.o trace.o \
|
|
uc.o ud.o user_exp_rcv.o user_pages.o user_sdma.o verbs.o \
|
|
verbs_txreq.o vnic_main.o vnic_sdma.o
|
|
hfi1-$(CONFIG_DEBUG_FS) += debugfs.o
|
|
|
|
CFLAGS_trace.o = -I$(src)
|
|
ifdef MVERSION
|
|
CFLAGS_driver.o = -DHFI_DRIVER_VERSION_BASE=\"$(MVERSION)\"
|
|
endif
|