cb6b8299fd
Refresh upstream driver before impending conversion to iflib. Major new features: - Support for Fortville-based 25G adapters - Support for I2C reads/writes (To prevent getting or sending corrupt data, you should set dev.ixl.0.debug.disable_fw_link_management=1 when using I2C [this will disable link!], then set it to 0 when done. The driver implements the SIOCGI2C ioctl, so ifconfig -v works for reading I2C data, but there are read_i2c and write_i2c sysctls under the .debug sysctl tree [the latter being useful for upper page support in QSFP+]). - Addition of an iWARP client interface (so the future iWARP driver for X722 devices can communicate with the base driver). - Compiling this option in is enabled by default, with "options IXL_IW" in GENERIC. Differential Revision: https://reviews.freebsd.org/D9227 Reviewed by: sbruno MFC after: 2 weeks Sponsored by: Intel Corporation
18 lines
454 B
Makefile
18 lines
454 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ixl
|
|
|
|
KMOD = if_ixl
|
|
SRCS = device_if.h bus_if.h pci_if.h pci_iov_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h opt_ixl.h
|
|
SRCS += if_ixl.c ixl_pf_main.c ixl_pf_qmgr.c ixl_txrx.c ixl_pf_i2c.c i40e_osdep.c
|
|
SRCS += ixl_pf_iov.c ixl_iw.c
|
|
|
|
# Shared source
|
|
SRCS += i40e_common.c i40e_nvm.c i40e_adminq.c i40e_lan_hmc.c i40e_hmc.c
|
|
|
|
# Debug messages / sysctls
|
|
# CFLAGS += -DIXL_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|