Date: Wed, 20 Oct 2021 17:39:39 GMT From: Navdeep Parhar <np@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: c1f66d325a56 - stable/13 - cxgbe(4): Update firmwares to 1.26.0.0. Message-ID: <202110201739.19KHddHA094523@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by np: URL: https://cgit.FreeBSD.org/src/commit/?id=c1f66d325a56c94b8aa384073c561a88dc9e25f9 commit c1f66d325a56c94b8aa384073c561a88dc9e25f9 Author: Navdeep Parhar <np@FreeBSD.org> AuthorDate: 2021-06-24 20:21:51 +0000 Commit: Navdeep Parhar <np@FreeBSD.org> CommitDate: 2021-10-20 17:35:56 +0000 cxgbe(4): Update firmwares to 1.26.0.0. Changes since 1.25.6.0 are listed here. This list comes from the Release Notes for "Chelsio Unified Wire 3.14.0.4 for Linux" dated 2021-07-08. Fixes ----- BASE: - Wait 5ms before and after the i2c command that clears the mod_select. This fixes incorrect port module type read from i2c. Obtained from: Chelsio Communications Sponsored by: Chelsio Communications (cherry picked from commit 3c900106ea7aab69690945ad885b4df1095c1504) --- sys/conf/files | 6 +++--- .../{t4fw-1.25.6.0.bin => t4fw-1.26.0.0.bin} | Bin 570368 -> 570368 bytes sys/dev/cxgbe/firmware/t4fw_interface.h | 12 ++++++------ .../{t5fw-1.25.6.0.bin => t5fw-1.26.0.0.bin} | Bin 675840 -> 675840 bytes .../{t6fw-1.25.6.0.bin => t6fw-1.26.0.0.bin} | Bin 730112 -> 729088 bytes sys/modules/cxgbe/t4_firmware/Makefile | 2 +- sys/modules/cxgbe/t5_firmware/Makefile | 2 +- sys/modules/cxgbe/t6_firmware/Makefile | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sys/conf/files b/sys/conf/files index 30f1a0940a8e..889e0289dfa8 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1523,7 +1523,7 @@ t4fw.fwo optional cxgbe \ no-implicit-rule \ clean "t4fw.fwo" t4fw.fw optional cxgbe \ - dependency "$S/dev/cxgbe/firmware/t4fw-1.25.6.0.bin" \ + dependency "$S/dev/cxgbe/firmware/t4fw-1.26.0.0.bin" \ compile-with "${CP} ${.ALLSRC} ${.TARGET}" \ no-obj no-implicit-rule \ clean "t4fw.fw" @@ -1557,7 +1557,7 @@ t5fw.fwo optional cxgbe \ no-implicit-rule \ clean "t5fw.fwo" t5fw.fw optional cxgbe \ - dependency "$S/dev/cxgbe/firmware/t5fw-1.25.6.0.bin" \ + dependency "$S/dev/cxgbe/firmware/t5fw-1.26.0.0.bin" \ compile-with "${CP} ${.ALLSRC} ${.TARGET}" \ no-obj no-implicit-rule \ clean "t5fw.fw" @@ -1591,7 +1591,7 @@ t6fw.fwo optional cxgbe \ no-implicit-rule \ clean "t6fw.fwo" t6fw.fw optional cxgbe \ - dependency "$S/dev/cxgbe/firmware/t6fw-1.25.6.0.bin" \ + dependency "$S/dev/cxgbe/firmware/t6fw-1.26.0.0.bin" \ compile-with "${CP} ${.ALLSRC} ${.TARGET}" \ no-obj no-implicit-rule \ clean "t6fw.fw" diff --git a/sys/dev/cxgbe/firmware/t4fw-1.25.6.0.bin b/sys/dev/cxgbe/firmware/t4fw-1.26.0.0.bin similarity index 77% rename from sys/dev/cxgbe/firmware/t4fw-1.25.6.0.bin rename to sys/dev/cxgbe/firmware/t4fw-1.26.0.0.bin index 45e805198f59..04e96d16c57a 100644 Binary files a/sys/dev/cxgbe/firmware/t4fw-1.25.6.0.bin and b/sys/dev/cxgbe/firmware/t4fw-1.26.0.0.bin differ diff --git a/sys/dev/cxgbe/firmware/t4fw_interface.h b/sys/dev/cxgbe/firmware/t4fw_interface.h index 0f877cb5a045..acb7a6481d9c 100644 --- a/sys/dev/cxgbe/firmware/t4fw_interface.h +++ b/sys/dev/cxgbe/firmware/t4fw_interface.h @@ -9991,18 +9991,18 @@ enum fw_hdr_chip { enum { T4FW_VERSION_MAJOR = 1, - T4FW_VERSION_MINOR = 25, - T4FW_VERSION_MICRO = 6, + T4FW_VERSION_MINOR = 26, + T4FW_VERSION_MICRO = 0, T4FW_VERSION_BUILD = 0, T5FW_VERSION_MAJOR = 1, - T5FW_VERSION_MINOR = 25, - T5FW_VERSION_MICRO = 6, + T5FW_VERSION_MINOR = 26, + T5FW_VERSION_MICRO = 0, T5FW_VERSION_BUILD = 0, T6FW_VERSION_MAJOR = 1, - T6FW_VERSION_MINOR = 25, - T6FW_VERSION_MICRO = 6, + T6FW_VERSION_MINOR = 26, + T6FW_VERSION_MICRO = 0, T6FW_VERSION_BUILD = 0, }; diff --git a/sys/dev/cxgbe/firmware/t5fw-1.25.6.0.bin b/sys/dev/cxgbe/firmware/t5fw-1.26.0.0.bin similarity index 72% rename from sys/dev/cxgbe/firmware/t5fw-1.25.6.0.bin rename to sys/dev/cxgbe/firmware/t5fw-1.26.0.0.bin index 6c2d1374c87a..f72bd502ea1f 100644 Binary files a/sys/dev/cxgbe/firmware/t5fw-1.25.6.0.bin and b/sys/dev/cxgbe/firmware/t5fw-1.26.0.0.bin differ diff --git a/sys/dev/cxgbe/firmware/t6fw-1.25.6.0.bin b/sys/dev/cxgbe/firmware/t6fw-1.26.0.0.bin similarity index 61% rename from sys/dev/cxgbe/firmware/t6fw-1.25.6.0.bin rename to sys/dev/cxgbe/firmware/t6fw-1.26.0.0.bin index 1cf05565ffff..ee4341d5074f 100644 Binary files a/sys/dev/cxgbe/firmware/t6fw-1.25.6.0.bin and b/sys/dev/cxgbe/firmware/t6fw-1.26.0.0.bin differ diff --git a/sys/modules/cxgbe/t4_firmware/Makefile b/sys/modules/cxgbe/t4_firmware/Makefile index 48ac2766a560..a202c5d2a6a0 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.25.6.0 +T4FW_VER= 1.26.0.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 3b54df8b222b..371df89f233b 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.25.6.0 +T5FW_VER= 1.26.0.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 e7b39839b5e4..074c3991bc37 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.25.6.0 +T6FW_VER= 1.26.0.0 FIRMWS+= t6fw-${T6FW_VER}.bin:t6fw:${T6FW_VER} .include <bsd.kmod.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110201739.19KHddHA094523>