From d14b0ac129abd2f42171cf3a18c25f534ba2a88a Mon Sep 17 00:00:00 2001 From: Navdeep Parhar Date: Sat, 30 Mar 2013 02:26:20 +0000 Subject: cxgbe(4): Add support for Chelsio's Terminator 5 (aka T5) ASIC. This includes support for the NIC and TOE features of the 40G, 10G, and 1G/100M cards based on the T5. The ASIC is mostly backward compatible with the Terminator 4 so cxgbe(4) has been updated instead of writing a brand new driver. T5 cards will show up as cxl (short for cxlgb) ports attached to the t5nex bus driver. Sponsored by: Chelsio --- sys/modules/cxgbe/t4_firmware/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 sys/modules/cxgbe/t4_firmware/Makefile (limited to 'sys/modules/cxgbe/t4_firmware/Makefile') diff --git a/sys/modules/cxgbe/t4_firmware/Makefile b/sys/modules/cxgbe/t4_firmware/Makefile new file mode 100644 index 000000000000..fea29a5c1661 --- /dev/null +++ b/sys/modules/cxgbe/t4_firmware/Makefile @@ -0,0 +1,27 @@ +# +# $FreeBSD$ +# + +T4FW = ${.CURDIR}/../../../dev/cxgbe/firmware +.PATH: ${T4FW} + +KMOD = t4fw_cfg +FIRMWS = ${KMOD}.txt:${KMOD}:1.0.0.0 + +# You can have additional configuration files in the ${T4FW} directory. +# t4fw_cfg_.txt +CFG_FILES != cd ${T4FW} && echo ${KMOD}_*.txt +.for F in ${CFG_FILES} +.if exists(${F}) +FIRMWS += ${F}:${F:C/.txt//}:1.0.0.0 +.endif +.endfor + +T4FW_VER = 1.8.4.0 +FIRMWS += t4fw.fw:t4fw:${T4FW_VER} +CLEANFILES += t4fw.fw + +t4fw.fw: t4fw-${T4FW_VER}.bin.uu + uudecode -o ${.TARGET} ${.ALLSRC} + +.include -- cgit v1.2.3