diff options
author | kmacy <kmacy@FreeBSD.org> | 2007-06-13 05:36:00 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2007-06-13 05:36:00 +0000 |
commit | ca1df96c1a9664f95b9ecb36fac419db0b745b4c (patch) | |
tree | 35a64009a2837c5c69bdb3309b0435cdd0fe3a46 /sys/modules/cxgb | |
parent | eb05a4b69fd72f248ee8d73dfb09a1e7dd6af8a3 (diff) | |
download | FreeBSD-src-ca1df96c1a9664f95b9ecb36fac419db0b745b4c.zip FreeBSD-src-ca1df96c1a9664f95b9ecb36fac419db0b745b4c.tar.gz |
- import new common code for the T304
- 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
Diffstat (limited to 'sys/modules/cxgb')
-rw-r--r-- | sys/modules/cxgb/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/modules/cxgb/Makefile b/sys/modules/cxgb/Makefile index 5df8112..cd2081e 100644 --- a/sys/modules/cxgb/Makefile +++ b/sys/modules/cxgb/Makefile @@ -5,22 +5,22 @@ CXGB = ${.CURDIR}/../../dev/cxgb KMOD= if_cxgb SRCS= cxgb_mc5.c cxgb_vsc8211.c cxgb_ael1002.c cxgb_mv88e1xxx.c -SRCS+= cxgb_xgmac.c cxgb_t3_hw.c cxgb_main.c cxgb_sge.c cxgb_lro.c -SRCS+= cxgb_offload.c cxgb_l2t.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 -DDEFAULT_JUMBO -DCONFIG_DEFINED -I${CXGB} -#CFLAGS+= -DINVARIANT_SUPPORT -DINVARIANTS -DDEBUG +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.0.0.bin: ${CXGB}/t3fw-4.0.0.bin.gz.uu - uudecode -p < ${CXGB}/t3fw-4.0.0.bin.gz.uu \ +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.0.0.bin:t3fw400 -CLEANFILES+= t3fw-4.0.0.bin +FIRMWS= t3fw-4.1.0.bin:t3fw410 +CLEANFILES+= t3fw-4.1.0.bin .endif |