From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 50354A2EDB for ; Fri, 6 Sep 2019 09:26:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1D0D11F0A2; Fri, 6 Sep 2019 09:26:06 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 125F71F057 for ; Fri, 6 Sep 2019 09:26:04 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x867KSSO031854; Fri, 6 Sep 2019 00:26:04 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-type; s=pfpt0818; bh=viq9JbwByHDbis3Rrx1jLtUJ0RqMP99p9lndAuCen8A=; b=gXt0razv7S1mDj3LTgN+TQ0ctu5uVu8Peo6iJfyCdFfinH6Rldd3LsZcDjmob3s8v+9o wGZrXDh/88kNkTkFlxsLmgSpTEyUEyCzdLFChqloszBPzNtzG74yDDIhcM05ox824JtJ idPL1TSMS8/xgTUQeHoJjh1PDjoT+nQEjC6m1tv/c0JruggubWxa/YodiJykCHjWKWg6 eR+HHbW1pM3WGbp1K3a3ngdOdHZc1st/TQTBSUt63hp/FtH0lShVfQcXl+YbKM6gsezz ebTeq5YrvQgfskEFcYKODrzhqTObgFo+ZXcXjX81OIRXRJHccFxKBDgkck8ufnIEt2jm uw== Received: from sc-exch03.marvell.com ([199.233.58.183]) by mx0b-0016f401.pphosted.com with ESMTP id 2uqrdmp2s0-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 06 Sep 2019 00:26:04 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Fri, 6 Sep 2019 00:26:01 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Fri, 6 Sep 2019 00:26:01 -0700 Received: from irv1user08.caveonetworks.com (unknown [10.104.116.105]) by maili.marvell.com (Postfix) with ESMTP id F1BA73F703F; Fri, 6 Sep 2019 00:26:00 -0700 (PDT) Received: (from rmody@localhost) by irv1user08.caveonetworks.com (8.14.4/8.14.4/Submit) id x867Q0Qd012366; Fri, 6 Sep 2019 00:26:00 -0700 X-Authentication-Warning: irv1user08.caveonetworks.com: rmody set sender to rmody@marvell.com using -f From: Rasesh Mody To: CC: Rasesh Mody , , , Date: Fri, 6 Sep 2019 00:25:43 -0700 Message-ID: <20190906072548.12304-1-rmody@marvell.com> X-Mailer: git-send-email 2.18.0 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.70,1.0.8 definitions=2019-09-06_03:2019-09-04,2019-09-06 signatures=0 Subject: [dpdk-dev] [PATCH 0/5] net/bnx2x: update to latest FW X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi, Currently, BNX2X PMD uses a very old firmware 7.2.51. This patch series updated the base driver to use to latest firmware 7.13.11. The latest firmware comprises of enhancements and fixes. Thanks! -Rasesh Rasesh Mody (5): net/bnx2x: update and reorganize HW registers net/bnx2x: update HSI code net/bnx2x: update to latest FW 7.13.11 doc: cleanup SPDX license id usage in bnx2x guide net/bnx2x: change PMD version to 1.1.0.1 doc/guides/nics/bnx2x.rst | 26 - drivers/net/bnx2x/bnx2x.c | 62 +- drivers/net/bnx2x/bnx2x.h | 95 +- drivers/net/bnx2x/bnx2x_osal.h | 27 + drivers/net/bnx2x/bnx2x_rxtx.c | 10 +- drivers/net/bnx2x/ecore_fw_defs.h | 252 +- drivers/net/bnx2x/ecore_hsi.h | 3507 +++++++++------- drivers/net/bnx2x/ecore_init.h | 212 +- drivers/net/bnx2x/ecore_init_ops.h | 224 +- drivers/net/bnx2x/ecore_mfw_req.h | 10 +- drivers/net/bnx2x/ecore_reg.h | 6246 ++++++++++++++++++---------- drivers/net/bnx2x/ecore_sp.c | 48 +- drivers/net/bnx2x/ecore_sp.h | 319 +- 13 files changed, 6852 insertions(+), 4186 deletions(-) create mode 100644 drivers/net/bnx2x/bnx2x_osal.h -- 2.18.0