ef72318f0e
- update to firmware version 4.1.0 - switch over to standard method for initializing cdevs (contributed by scottl@) - break out timer_reclaim_task to be per-port - move msix teardown into separate function - fix bus_setup_intr for msi-x for the multi-port case so that msi-x resources are not corrupted on unload - handle 10/100/1000 base-T media and auto negotiation - bind qset to cpu even for singleq case - white space cleanups - remove recursive PORT_LOCK - move mtu setting to separate function - stop and re-init port when changing mtu - replace all direct references to m_data with calls to mtod - handle attach failure better by not trying to de-initialize taskqueues when they have not been allocated - no longer default to jumbo frames Sponsored by: Chelsio MFC after: 3 days
28 lines
740 B
Makefile
28 lines
740 B
Makefile
# $FreeBSD$
|
|
|
|
CXGB = ${.CURDIR}/../../dev/cxgb
|
|
.PATH: ${CXGB} ${CXGB}/common ${CXGB}/sys
|
|
|
|
KMOD= if_cxgb
|
|
SRCS= cxgb_mc5.c cxgb_vsc8211.c cxgb_ael1002.c cxgb_mv88e1xxx.c
|
|
SRCS+= cxgb_xgmac.c cxgb_vsc7323.c cxgb_t3_hw.c cxgb_main.c
|
|
SRCS+= cxgb_sge.c cxgb_lro.c cxgb_offload.c cxgb_l2t.c
|
|
SRCS+= device_if.h bus_if.h pci_if.h opt_zero.h
|
|
SRCS+= uipc_mvec.c
|
|
|
|
CFLAGS+= -DCONFIG_CHELSIO_T3_CORE -g -DCONFIG_DEFINED -DDEFAULT_JUMBO -I${CXGB}
|
|
#CFLAGS+= -DINVARIANT_SUPPORT -DINVARIANTS
|
|
|
|
.if ${MACHINE_ARCH} != "ia64"
|
|
# ld is broken on ia64
|
|
t3fw-4.1.0.bin: ${CXGB}/t3fw-4.1.0.bin.gz.uu
|
|
uudecode -p < ${CXGB}/t3fw-4.1.0.bin.gz.uu \
|
|
| gzip -dc > ${.TARGET}
|
|
|
|
FIRMWS= t3fw-4.1.0.bin:t3fw410
|
|
CLEANFILES+= t3fw-4.1.0.bin
|
|
.endif
|
|
|
|
|
|
.include <bsd.kmod.mk>
|