Skip to content

Commit

Permalink
cxgbe(4): Update firmwares to 1.27.5.0
Browse files Browse the repository at this point in the history
Version : 1.27.5.0
Date    : 10/10/2023
=====================
Fixes
-----

BASE:
- Fixed handling the Remote Fault with AN, causing the link failure.
=====================

Obtained from:	Chelsio Communications
MFC after:	2 weeks
Sponsored by:	Chelsio Communications
  • Loading branch information
np-2020 committed Jan 4, 2024
1 parent 53d908d commit b1e82d3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions sys/conf/files
Original file line number Diff line number Diff line change
Expand Up @@ -1455,7 +1455,7 @@ t4fw.fwo optional cxgbe \
no-implicit-rule \
clean "t4fw.fwo"
t4fw.fw optional cxgbe \
dependency "$S/dev/cxgbe/firmware/t4fw-1.27.4.0.bin" \
dependency "$S/dev/cxgbe/firmware/t4fw-1.27.5.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t4fw.fw"
Expand Down Expand Up @@ -1489,7 +1489,7 @@ t5fw.fwo optional cxgbe \
no-implicit-rule \
clean "t5fw.fwo"
t5fw.fw optional cxgbe \
dependency "$S/dev/cxgbe/firmware/t5fw-1.27.4.0.bin" \
dependency "$S/dev/cxgbe/firmware/t5fw-1.27.5.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t5fw.fw"
Expand Down Expand Up @@ -1523,7 +1523,7 @@ t6fw.fwo optional cxgbe \
no-implicit-rule \
clean "t6fw.fwo"
t6fw.fw optional cxgbe \
dependency "$S/dev/cxgbe/firmware/t6fw-1.27.4.0.bin" \
dependency "$S/dev/cxgbe/firmware/t6fw-1.27.5.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t6fw.fw"
Expand Down
Binary file not shown.
6 changes: 3 additions & 3 deletions sys/dev/cxgbe/firmware/t4fw_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -10001,17 +10001,17 @@ enum fw_hdr_chip {
enum {
T4FW_VERSION_MAJOR = 1,
T4FW_VERSION_MINOR = 27,
T4FW_VERSION_MICRO = 4,
T4FW_VERSION_MICRO = 5,
T4FW_VERSION_BUILD = 0,

T5FW_VERSION_MAJOR = 1,
T5FW_VERSION_MINOR = 27,
T5FW_VERSION_MICRO = 4,
T5FW_VERSION_MICRO = 5,
T5FW_VERSION_BUILD = 0,

T6FW_VERSION_MAJOR = 1,
T6FW_VERSION_MINOR = 27,
T6FW_VERSION_MICRO = 4,
T6FW_VERSION_MICRO = 5,
T6FW_VERSION_BUILD = 0,
};

Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion sys/modules/cxgbe/t4_firmware/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor

T4FW_VER= 1.27.4.0
T4FW_VER= 1.27.5.0
FIRMWS+= t4fw-${T4FW_VER}.bin:t4fw:${T4FW_VER}

.include <bsd.kmod.mk>
2 changes: 1 addition & 1 deletion sys/modules/cxgbe/t5_firmware/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor

T5FW_VER= 1.27.4.0
T5FW_VER= 1.27.5.0
FIRMWS+= t5fw-${T5FW_VER}.bin:t5fw:${T5FW_VER}

.include <bsd.kmod.mk>
2 changes: 1 addition & 1 deletion sys/modules/cxgbe/t6_firmware/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor

T6FW_VER= 1.27.4.0
T6FW_VER= 1.27.5.0
FIRMWS+= t6fw-${T6FW_VER}.bin:t6fw:${T6FW_VER}

.include <bsd.kmod.mk>

0 comments on commit b1e82d3

Please sign in to comment.