From: Prabhakar Kushwaha <pkushwaha@marvell.com>
To: <netdev@vger.kernel.org>, <davem@davemloft.net>, <kuba@kernel.org>
Cc: <linux-rdma@vger.kernel.org>, <linux-scsi@vger.kernel.org>,
<martin.petersen@oracle.com>, <aelior@marvell.com>,
<smalin@marvell.com>, <jhasan@marvell.com>,
<mrangankar@marvell.com>, <pkushwaha@marvell.com>,
<prabhakar.pkin@gmail.com>, <malin1024@gmail.com>
Subject: [PATCH 00/12] qed: new firmware version 8.59.1.0 support
Date: Wed, 29 Sep 2021 15:12:03 +0300 [thread overview]
Message-ID: <20210929121215.17864-1-pkushwaha@marvell.com> (raw)
This series integrate new firmware version 8.59.1.0, along with updated
HSI (hardware software interface) to use the FW, into the family of
qed drivers (fastlinq devices). This FW does not reside in the NVRAM.
It needs to be programmed to device during driver load as the part of
initialization sequence.
Similar to previous FW support series, this FW is tightly linked to
software and pf function driver. This means FW release is not backward
compatible, and driver should always run with the FW it was designed
against.
FW binary blob is already submitted & accepted in linux-firmware repo.
Patches in the series include:
patch 1 - qed: Remove e4_ and _e4 from FW HSI
patch 2 - qed: split huge qed_hsi.h header file
patch 3-7 - HSI (hardware software interface) changes
patch 8 - qed: Add '_GTT' suffix to the IRO RAM macros
patch 9 - qed: Update debug related changes
patch 10 - qed: rdma: Update TCP silly-window-syndrome timeout
patch 11 - qed: Update the TCP active termination 2 MSL timer
patch 12 - qed: fix ll2 establishment during load of RDMA driver
In addition, this patch series also fixes existing checkpatch warnings
and checks which are missing.
Manish Chopra (1):
qed: fix ll2 establishment during load of RDMA driver
Nikolay Assa (1):
qed: Update TCP silly-window-syndrome timeout for iwarp, scsi
Omkar Kulkarni (2):
qed: Split huge qed_hsi.h header file
qed: Update FW init functions to support FW 8.59.1.0
Prabhakar Kushwaha (7):
qed: Update common_hsi for FW ver 8.59.1.0
qed: Update qed_mfw_hsi.h for FW ver 8.59.1.0
qed: Update qed_hsi.h for fw 8.59.1.0
qed: Use enum as per FW 8.59.1.0 in qed_iro_hsi.h
qed: Add '_GTT' suffix to the IRO RAM macros
qed: Update debug related changes
qed: Update the TCP active termination 2 MSL timer ("TIME_WAIT")
Shai Malin (1):
qed: Remove e4_ and _e4 from FW HSI
drivers/infiniband/hw/qedr/main.c | 2 +-
drivers/net/ethernet/qlogic/qed/qed.h | 35 +-
drivers/net/ethernet/qlogic/qed/qed_cxt.c | 16 +-
drivers/net/ethernet/qlogic/qed/qed_cxt.h | 5 +-
drivers/net/ethernet/qlogic/qed/qed_dbg_hsi.h | 1478 ++
drivers/net/ethernet/qlogic/qed/qed_dcbx.h | 11 +-
drivers/net/ethernet/qlogic/qed/qed_debug.c | 1398 +-
drivers/net/ethernet/qlogic/qed/qed_debug.h | 7 +-
drivers/net/ethernet/qlogic/qed/qed_dev.c | 122 +-
drivers/net/ethernet/qlogic/qed/qed_dev_api.h | 6 +-
drivers/net/ethernet/qlogic/qed/qed_fcoe.c | 25 +-
drivers/net/ethernet/qlogic/qed/qed_hsi.h | 12265 ++++++----------
.../ethernet/qlogic/qed/qed_init_fw_funcs.c | 405 +-
.../net/ethernet/qlogic/qed/qed_init_ops.c | 98 +-
.../net/ethernet/qlogic/qed/qed_init_ops.h | 2 +-
drivers/net/ethernet/qlogic/qed/qed_int.c | 4 +-
drivers/net/ethernet/qlogic/qed/qed_int.h | 2 +-
drivers/net/ethernet/qlogic/qed/qed_iro_hsi.h | 500 +
drivers/net/ethernet/qlogic/qed/qed_iscsi.c | 15 +-
drivers/net/ethernet/qlogic/qed/qed_iwarp.c | 2 +
drivers/net/ethernet/qlogic/qed/qed_l2.c | 18 +-
drivers/net/ethernet/qlogic/qed/qed_l2.h | 5 +-
drivers/net/ethernet/qlogic/qed/qed_ll2.c | 64 +-
drivers/net/ethernet/qlogic/qed/qed_ll2.h | 1 -
drivers/net/ethernet/qlogic/qed/qed_main.c | 17 +-
drivers/net/ethernet/qlogic/qed/qed_mcp.c | 64 +-
drivers/net/ethernet/qlogic/qed/qed_mcp.h | 11 +-
drivers/net/ethernet/qlogic/qed/qed_mfw_hsi.h | 2474 ++++
drivers/net/ethernet/qlogic/qed/qed_rdma.c | 7 +-
drivers/net/ethernet/qlogic/qed/qed_rdma.h | 7 +-
.../net/ethernet/qlogic/qed/qed_reg_addr.h | 95 +-
drivers/net/ethernet/qlogic/qed/qed_roce.c | 1 -
drivers/net/ethernet/qlogic/qed/qed_sp.h | 8 +-
.../net/ethernet/qlogic/qed/qed_sp_commands.c | 10 +-
drivers/net/ethernet/qlogic/qed/qed_spq.c | 63 +-
drivers/net/ethernet/qlogic/qed/qed_sriov.c | 200 +-
drivers/net/ethernet/qlogic/qed/qed_sriov.h | 26 +-
drivers/net/ethernet/qlogic/qed/qed_vf.c | 11 +-
drivers/net/ethernet/qlogic/qed/qed_vf.h | 11 +-
drivers/net/ethernet/qlogic/qede/qede_main.c | 2 +-
drivers/scsi/qedf/drv_fcoe_fw_funcs.c | 8 +-
drivers/scsi/qedf/drv_fcoe_fw_funcs.h | 2 +-
drivers/scsi/qedf/qedf.h | 4 +-
drivers/scsi/qedf/qedf_els.c | 2 +-
drivers/scsi/qedf/qedf_io.c | 12 +-
drivers/scsi/qedf/qedf_main.c | 8 +-
drivers/scsi/qedi/qedi_debugfs.c | 4 +-
drivers/scsi/qedi/qedi_fw.c | 40 +-
drivers/scsi/qedi/qedi_fw_api.c | 22 +-
drivers/scsi/qedi/qedi_fw_iscsi.h | 2 +-
drivers/scsi/qedi/qedi_iscsi.h | 2 +-
drivers/scsi/qedi/qedi_main.c | 11 +-
include/linux/qed/common_hsi.h | 141 +-
include/linux/qed/eth_common.h | 1 +
include/linux/qed/fcoe_common.h | 362 +-
include/linux/qed/iscsi_common.h | 360 +-
include/linux/qed/nvmetcp_common.h | 18 +-
include/linux/qed/qed_if.h | 8 +-
include/linux/qed/rdma_common.h | 1 +
59 files changed, 11687 insertions(+), 8814 deletions(-)
create mode 100644 drivers/net/ethernet/qlogic/qed/qed_dbg_hsi.h
create mode 100644 drivers/net/ethernet/qlogic/qed/qed_iro_hsi.h
create mode 100644 drivers/net/ethernet/qlogic/qed/qed_mfw_hsi.h
--
2.24.1
next reply other threads:[~2021-09-29 12:14 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-29 12:12 Prabhakar Kushwaha [this message]
2021-09-29 12:12 ` [PATCH 01/12] qed: Remove e4_ and _e4 from FW HSI Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 02/12] qed: Split huge qed_hsi.h header file Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 03/12] qed: Update common_hsi for FW ver 8.59.1.0 Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 04/12] qed: Update qed_mfw_hsi.h " Prabhakar Kushwaha
2021-09-29 18:38 ` Jakub Kicinski
2021-09-30 10:18 ` [EXT] " Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 05/12] qed: Update qed_hsi.h for fw 8.59.1.0 Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 06/12] qed: Use enum as per FW 8.59.1.0 in qed_iro_hsi.h Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 07/12] qed: Update FW init functions to support FW 8.59.1.0 Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 08/12] qed: Add '_GTT' suffix to the IRO RAM macros Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 09/12] qed: Update debug related changes Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 10/12] qed: Update TCP silly-window-syndrome timeout for iwarp, scsi Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 11/12] qed: Update the TCP active termination 2 MSL timer ("TIME_WAIT") Prabhakar Kushwaha
2021-09-29 12:12 ` [PATCH 12/12] qed: fix ll2 establishment during load of RDMA driver Prabhakar Kushwaha
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210929121215.17864-1-pkushwaha@marvell.com \
--to=pkushwaha@marvell.com \
--cc=aelior@marvell.com \
--cc=davem@davemloft.net \
--cc=jhasan@marvell.com \
--cc=kuba@kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=malin1024@gmail.com \
--cc=martin.petersen@oracle.com \
--cc=mrangankar@marvell.com \
--cc=netdev@vger.kernel.org \
--cc=prabhakar.pkin@gmail.com \
--cc=smalin@marvell.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).