The branch stable/13 has been updated by np:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=886a5109c84a491e704f4b707fab0968da82df4d

commit 886a5109c84a491e704f4b707fab0968da82df4d
Author:     Navdeep Parhar <n...@freebsd.org>
AuthorDate: 2022-08-14 23:57:39 +0000
Commit:     Navdeep Parhar <n...@freebsd.org>
CommitDate: 2023-02-02 07:15:22 +0000

    cxgbe(4): Update firmwares to 1.27.0.0.
    
    Changes since 1.26.6.0 are listed here.  This list comes from the
    Release Notes for "Chelsio Unified Wire 3.17.0.0 for Linux" dated
    2022-07-29.
    
    Fixes
    -----
    
    BASE:
    - Enabled all MA parity interrupt bits.
    - Use config file value to override number of rx channel. nrxch=1 was not
      handled in the firmware.
    - Replaced read only registers with new registers EDC_H_BIST_USER_WDATA0,
      EDC_H_BIST_USER_WDATA1 and EDC_H_BIST_CMD_LEN to dump the uP memory parity
      error status registers.
    - 10G simplex module support enabled.
    
    Obtained from:  Chelsio Communications
    Sponsored by:   Chelsio Communications
    
    (cherry picked from commit 2bb28b5f8cb5700945539584e7864773f0dfcd51)
---
 sys/conf/files                                     |   6 +++---
 .../{t4fw-1.26.6.0.bin => t4fw-1.27.0.0.bin}       | Bin 570880 -> 570880 bytes
 sys/dev/cxgbe/firmware/t4fw_interface.h            |  12 ++++++------
 .../{t5fw-1.26.6.0.bin => t5fw-1.27.0.0.bin}       | Bin 676352 -> 677376 bytes
 .../{t6fw-1.26.6.0.bin => t6fw-1.27.0.0.bin}       | Bin 729600 -> 729600 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 d1d317172c92..aaf9d4223bbe 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -1528,7 +1528,7 @@ t4fw.fwo          optional cxgbe                          
        \
        no-implicit-rule                                                \
        clean           "t4fw.fwo"
 t4fw.fw                        optional cxgbe                                  
\
-       dependency      "$S/dev/cxgbe/firmware/t4fw-1.26.6.0.bin"       \
+       dependency      "$S/dev/cxgbe/firmware/t4fw-1.27.0.0.bin"       \
        compile-with    "${CP} ${.ALLSRC} ${.TARGET}"                   \
        no-obj no-implicit-rule                                         \
        clean           "t4fw.fw"
@@ -1562,7 +1562,7 @@ t5fw.fwo          optional cxgbe                          
        \
        no-implicit-rule                                                \
        clean           "t5fw.fwo"
 t5fw.fw                        optional cxgbe                                  
\
-       dependency      "$S/dev/cxgbe/firmware/t5fw-1.26.6.0.bin"       \
+       dependency      "$S/dev/cxgbe/firmware/t5fw-1.27.0.0.bin"       \
        compile-with    "${CP} ${.ALLSRC} ${.TARGET}"                   \
        no-obj no-implicit-rule                                         \
        clean           "t5fw.fw"
@@ -1596,7 +1596,7 @@ t6fw.fwo          optional cxgbe                          
        \
        no-implicit-rule                                                \
        clean           "t6fw.fwo"
 t6fw.fw                        optional cxgbe                                  
\
-       dependency      "$S/dev/cxgbe/firmware/t6fw-1.26.6.0.bin"       \
+       dependency      "$S/dev/cxgbe/firmware/t6fw-1.27.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.26.6.0.bin 
b/sys/dev/cxgbe/firmware/t4fw-1.27.0.0.bin
similarity index 79%
rename from sys/dev/cxgbe/firmware/t4fw-1.26.6.0.bin
rename to sys/dev/cxgbe/firmware/t4fw-1.27.0.0.bin
index ea13e7084dde..dcae4d1b8a2b 100644
Binary files a/sys/dev/cxgbe/firmware/t4fw-1.26.6.0.bin and 
b/sys/dev/cxgbe/firmware/t4fw-1.27.0.0.bin differ
diff --git a/sys/dev/cxgbe/firmware/t4fw_interface.h 
b/sys/dev/cxgbe/firmware/t4fw_interface.h
index f589052618b7..e8f8096a6595 100644
--- a/sys/dev/cxgbe/firmware/t4fw_interface.h
+++ b/sys/dev/cxgbe/firmware/t4fw_interface.h
@@ -10002,18 +10002,18 @@ enum fw_hdr_chip {
 
 enum {
        T4FW_VERSION_MAJOR      = 1,
-       T4FW_VERSION_MINOR      = 26,
-       T4FW_VERSION_MICRO      = 6,
+       T4FW_VERSION_MINOR      = 27,
+       T4FW_VERSION_MICRO      = 0,
        T4FW_VERSION_BUILD      = 0,
 
        T5FW_VERSION_MAJOR      = 1,
-       T5FW_VERSION_MINOR      = 26,
-       T5FW_VERSION_MICRO      = 6,
+       T5FW_VERSION_MINOR      = 27,
+       T5FW_VERSION_MICRO      = 0,
        T5FW_VERSION_BUILD      = 0,
 
        T6FW_VERSION_MAJOR      = 1,
-       T6FW_VERSION_MINOR      = 26,
-       T6FW_VERSION_MICRO      = 6,
+       T6FW_VERSION_MINOR      = 27,
+       T6FW_VERSION_MICRO      = 0,
        T6FW_VERSION_BUILD      = 0,
 };
 
diff --git a/sys/dev/cxgbe/firmware/t5fw-1.26.6.0.bin 
b/sys/dev/cxgbe/firmware/t5fw-1.27.0.0.bin
similarity index 77%
rename from sys/dev/cxgbe/firmware/t5fw-1.26.6.0.bin
rename to sys/dev/cxgbe/firmware/t5fw-1.27.0.0.bin
index 8963b7247b6e..1158b9567336 100644
Binary files a/sys/dev/cxgbe/firmware/t5fw-1.26.6.0.bin and 
b/sys/dev/cxgbe/firmware/t5fw-1.27.0.0.bin differ
diff --git a/sys/dev/cxgbe/firmware/t6fw-1.26.6.0.bin 
b/sys/dev/cxgbe/firmware/t6fw-1.27.0.0.bin
similarity index 71%
rename from sys/dev/cxgbe/firmware/t6fw-1.26.6.0.bin
rename to sys/dev/cxgbe/firmware/t6fw-1.27.0.0.bin
index 41ce839ce105..0652ae751b82 100644
Binary files a/sys/dev/cxgbe/firmware/t6fw-1.26.6.0.bin and 
b/sys/dev/cxgbe/firmware/t6fw-1.27.0.0.bin differ
diff --git a/sys/modules/cxgbe/t4_firmware/Makefile 
b/sys/modules/cxgbe/t4_firmware/Makefile
index 179a9133c90a..bd46124af668 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.26.6.0
+T4FW_VER=      1.27.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 efa401c73099..3cc9c0b07f09 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.26.6.0
+T5FW_VER=      1.27.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 3269432e8ac1..0f89e03fe819 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.26.6.0
+T6FW_VER=      1.27.0.0
 FIRMWS+=       t6fw-${T6FW_VER}.bin:t6fw:${T6FW_VER}
 
 .include <bsd.kmod.mk>

Reply via email to