aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavdeep Parhar <np@FreeBSD.org>2023-08-16 12:42:00 +0000
committerNavdeep Parhar <np@FreeBSD.org>2023-08-16 15:43:43 +0000
commit8a2e880ab07f3cd04a0f458809fba5d4eacf75f1 (patch)
treef0e85ee1df03cc853aa52cda8dd349d04246c694
parent93ac817faed22c7d7d7de5211ac6eb7da6910e02 (diff)
downloadsrc-8a2e880ab07f3cd04a0f458809fba5d4eacf75f1.tar.gz
src-8a2e880ab07f3cd04a0f458809fba5d4eacf75f1.zip
cxgbe(4): Update firmwares to 1.27.4.0
This is the list of changes since last release, taken from the release notes of Chelsio Unified Wire 3.18.0.1. Version : 1.27.4.0 Date : 07/05/2023 ======================================= Fixes ----- BASE: - Handle 40G to 100G cable change. - Avoid unnecessary i2c read. ======================================= Obtained from: Chelsio Communications Sponsored by: Chelsio Communications MFC after: 1 week
-rw-r--r--sys/conf/files6
-rw-r--r--sys/dev/cxgbe/firmware/t4fw-1.27.4.0.bin (renamed from sys/dev/cxgbe/firmware/t4fw-1.27.3.0.bin)bin570880 -> 570880 bytes
-rw-r--r--sys/dev/cxgbe/firmware/t4fw_interface.h6
-rw-r--r--sys/dev/cxgbe/firmware/t5fw-1.27.4.0.bin (renamed from sys/dev/cxgbe/firmware/t5fw-1.27.3.0.bin)bin678912 -> 678912 bytes
-rw-r--r--sys/dev/cxgbe/firmware/t6fw-1.27.4.0.bin (renamed from sys/dev/cxgbe/firmware/t6fw-1.27.3.0.bin)bin730624 -> 730624 bytes
-rw-r--r--sys/modules/cxgbe/t4_firmware/Makefile2
-rw-r--r--sys/modules/cxgbe/t5_firmware/Makefile2
-rw-r--r--sys/modules/cxgbe/t6_firmware/Makefile2
8 files changed, 9 insertions, 9 deletions
diff --git a/sys/conf/files b/sys/conf/files
index f831ee2b5275..0feeded13ba4 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -1456,7 +1456,7 @@ t4fw.fwo optional cxgbe \
no-implicit-rule \
clean "t4fw.fwo"
t4fw.fw optional cxgbe \
- dependency "$S/dev/cxgbe/firmware/t4fw-1.27.3.0.bin" \
+ dependency "$S/dev/cxgbe/firmware/t4fw-1.27.4.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t4fw.fw"
@@ -1490,7 +1490,7 @@ t5fw.fwo optional cxgbe \
no-implicit-rule \
clean "t5fw.fwo"
t5fw.fw optional cxgbe \
- dependency "$S/dev/cxgbe/firmware/t5fw-1.27.3.0.bin" \
+ dependency "$S/dev/cxgbe/firmware/t5fw-1.27.4.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t5fw.fw"
@@ -1524,7 +1524,7 @@ t6fw.fwo optional cxgbe \
no-implicit-rule \
clean "t6fw.fwo"
t6fw.fw optional cxgbe \
- dependency "$S/dev/cxgbe/firmware/t6fw-1.27.3.0.bin" \
+ dependency "$S/dev/cxgbe/firmware/t6fw-1.27.4.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t6fw.fw"
diff --git a/sys/dev/cxgbe/firmware/t4fw-1.27.3.0.bin b/sys/dev/cxgbe/firmware/t4fw-1.27.4.0.bin
index e1576783a65c..9addb9e25422 100644
--- a/sys/dev/cxgbe/firmware/t4fw-1.27.3.0.bin
+++ b/sys/dev/cxgbe/firmware/t4fw-1.27.4.0.bin
Binary files differ
diff --git a/sys/dev/cxgbe/firmware/t4fw_interface.h b/sys/dev/cxgbe/firmware/t4fw_interface.h
index bbe6896430d3..e68e4a2c5461 100644
--- a/sys/dev/cxgbe/firmware/t4fw_interface.h
+++ b/sys/dev/cxgbe/firmware/t4fw_interface.h
@@ -10003,17 +10003,17 @@ enum fw_hdr_chip {
enum {
T4FW_VERSION_MAJOR = 1,
T4FW_VERSION_MINOR = 27,
- T4FW_VERSION_MICRO = 3,
+ T4FW_VERSION_MICRO = 4,
T4FW_VERSION_BUILD = 0,
T5FW_VERSION_MAJOR = 1,
T5FW_VERSION_MINOR = 27,
- T5FW_VERSION_MICRO = 3,
+ T5FW_VERSION_MICRO = 4,
T5FW_VERSION_BUILD = 0,
T6FW_VERSION_MAJOR = 1,
T6FW_VERSION_MINOR = 27,
- T6FW_VERSION_MICRO = 3,
+ T6FW_VERSION_MICRO = 4,
T6FW_VERSION_BUILD = 0,
};
diff --git a/sys/dev/cxgbe/firmware/t5fw-1.27.3.0.bin b/sys/dev/cxgbe/firmware/t5fw-1.27.4.0.bin
index fcae45a4df35..b32f270b1866 100644
--- a/sys/dev/cxgbe/firmware/t5fw-1.27.3.0.bin
+++ b/sys/dev/cxgbe/firmware/t5fw-1.27.4.0.bin
Binary files differ
diff --git a/sys/dev/cxgbe/firmware/t6fw-1.27.3.0.bin b/sys/dev/cxgbe/firmware/t6fw-1.27.4.0.bin
index 31bd7019e51e..a47f287848f1 100644
--- a/sys/dev/cxgbe/firmware/t6fw-1.27.3.0.bin
+++ b/sys/dev/cxgbe/firmware/t6fw-1.27.4.0.bin
Binary files differ
diff --git a/sys/modules/cxgbe/t4_firmware/Makefile b/sys/modules/cxgbe/t4_firmware/Makefile
index f70a13a3e30e..807dc6beaf35 100644
--- a/sys/modules/cxgbe/t4_firmware/Makefile
+++ b/sys/modules/cxgbe/t4_firmware/Makefile
@@ -17,7 +17,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor
-T4FW_VER= 1.27.3.0
+T4FW_VER= 1.27.4.0
FIRMWS+= t4fw-${T4FW_VER}.bin:t4fw:${T4FW_VER}
.include <bsd.kmod.mk>
diff --git a/sys/modules/cxgbe/t5_firmware/Makefile b/sys/modules/cxgbe/t5_firmware/Makefile
index b586727a994a..a7aae96b111f 100644
--- a/sys/modules/cxgbe/t5_firmware/Makefile
+++ b/sys/modules/cxgbe/t5_firmware/Makefile
@@ -17,7 +17,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor
-T5FW_VER= 1.27.3.0
+T5FW_VER= 1.27.4.0
FIRMWS+= t5fw-${T5FW_VER}.bin:t5fw:${T5FW_VER}
.include <bsd.kmod.mk>
diff --git a/sys/modules/cxgbe/t6_firmware/Makefile b/sys/modules/cxgbe/t6_firmware/Makefile
index be5ed1d99bb4..77905f4d8861 100644
--- a/sys/modules/cxgbe/t6_firmware/Makefile
+++ b/sys/modules/cxgbe/t6_firmware/Makefile
@@ -17,7 +17,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor
-T6FW_VER= 1.27.3.0
+T6FW_VER= 1.27.4.0
FIRMWS+= t6fw-${T6FW_VER}.bin:t6fw:${T6FW_VER}
.include <bsd.kmod.mk>