Message ID | 20200709080046.65879-1-guinanx.sun@intel.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 06D4DA0526; Thu, 9 Jul 2020 10:13:50 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3F12D1DA9C; Thu, 9 Jul 2020 10:13:50 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 6CDC31DA3B for <dev@dpdk.org>; Thu, 9 Jul 2020 10:13:48 +0200 (CEST) IronPort-SDR: VqqZ8mCl86nRfQEDyd7DbFZETszW5/QXPB6y6mLv6w7hvXzKUi4C26rheQ744LUlHeDufALuLi UWHkir6grcDg== X-IronPort-AV: E=McAfee;i="6000,8403,9676"; a="212869311" X-IronPort-AV: E=Sophos;i="5.75,331,1589266800"; d="scan'208";a="212869311" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Jul 2020 01:13:47 -0700 IronPort-SDR: kYs0P6UkSUIV2XkMFe+NsXdcpCHyJDuIwUcMSnvOkSEZibrkHW3vBmkGHU5KyNy9zMtBIusFqg IpitS/0eL6Gw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,331,1589266800"; d="scan'208";a="297988955" Received: from intel.sh.intel.com ([10.239.255.18]) by orsmga002.jf.intel.com with ESMTP; 09 Jul 2020 01:13:45 -0700 From: Guinan Sun <guinanx.sun@intel.com> To: dev@dpdk.org Cc: Jeff Guo <jia.guo@intel.com>, Zhao1 Wei <wei.zhao1@intel.com>, Guinan Sun <guinanx.sun@intel.com> Date: Thu, 9 Jul 2020 08:00:27 +0000 Message-Id: <20200709080046.65879-1-guinanx.sun@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200702031329.4495-1-guinanx.sun@intel.com> References: <20200702031329.4495-1-guinanx.sun@intel.com> Subject: [dpdk-dev] [PATCH v3 00/19] update ixgbe base code X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Series |
update ixgbe base code
|
|
Message
Guinan Sun
July 9, 2020, 8 a.m. UTC
source code of ixgbe driver:
not-released-cid-ixgbe.2020.06.09.tar.gz released by the team which develop
basic drivers for any ixgbe NIC.
changelog in ND share repo:
From 66d7da32d8e8 ("ixgbe-shared: Add support to clear VFMBMEM and toggle VF's TX queues")
To 7f2d73c9742b ("ixgbe-shared: check Host Interface Return Status for Shadow RAM Write command for X550")
66d7da32d8e8 is ignore as no use in this release.
Reviewed-by: Wei Zhao <wei.zhao1@intel.com>
---
v3:
* Modify hardcode.
* Remove patch "toggle VF's Tx queues"
* Remove patch "add support to clear VFMBMEM"
* Split patch into two.
v2:
* Remove codes about IXGBE_NVMUPD_SUPPORT.
* Remove codes about PREBOOT_SUPPORT.
* Remove codes about IXGBE_SFP_DETECT_RETRIES.
* Remove codes about IXGBE_EEPROM_GRANT_ATTEMPTS.
* Remove codes about IXGBE_VFWRITE_REG.
* Remove some useless defines.
* Modify commit messages.
* Split some patch to two patches and Merge some patches to one patch.
* Update README.
Guinan Sun (19):
net/ixgbe/base: fix host interface shadow RAM read
net/ixgbe/base: change flow for "Apply Update" command
net/ixgbe/base: fix x550em 10G NIC link status report
net/ixgbe/base: resolve infinite recursion on PCIe link down
net/ixgbe/base: added register definitions for NVM update
net/ixgbe/base: cleanup spelling mistakes in comments
net/ixgbe/base: remove whitespace in function comments
net/ixgbe/base: move increments after evaluations
net/ixgbe/base: create dedicated func to restart auto nego
net/ixgbe/base: add typecast for type mismatch
net/ixgbe/base: remove unnecessary return value check
net/ixgbe/base: remove unnecessary log message FC autonego
net/ixgbe/base: initialize data field in struct buffer
net/ixgbe/base: improve log about autonego being disabled
net/ixgbe/base: add ipv6 mask for FDIR feature
net/ixgbe/base: remove default advertising for x550 2.5G/5G
net/ixgbe/base: check host interface return status
net/ixgbe/base: cleanup pre-processor tags
net/ixgbe/base: update version
drivers/net/ixgbe/base/README | 2 +-
drivers/net/ixgbe/base/ixgbe_82598.c | 238 ++---
drivers/net/ixgbe/base/ixgbe_82599.c | 397 ++++----
drivers/net/ixgbe/base/ixgbe_api.c | 866 +++++++++---------
drivers/net/ixgbe/base/ixgbe_common.c | 1055 +++++++++++-----------
drivers/net/ixgbe/base/ixgbe_common.h | 2 +-
drivers/net/ixgbe/base/ixgbe_dcb.c | 6 +-
drivers/net/ixgbe/base/ixgbe_dcb_82598.c | 2 +-
drivers/net/ixgbe/base/ixgbe_dcb_82599.c | 2 +-
drivers/net/ixgbe/base/ixgbe_hv_vf.c | 20 +-
drivers/net/ixgbe/base/ixgbe_mbx.c | 242 ++---
drivers/net/ixgbe/base/ixgbe_phy.c | 488 +++++-----
drivers/net/ixgbe/base/ixgbe_phy.h | 3 +-
drivers/net/ixgbe/base/ixgbe_type.h | 24 +-
drivers/net/ixgbe/base/ixgbe_vf.c | 170 ++--
drivers/net/ixgbe/base/ixgbe_x540.c | 190 ++--
drivers/net/ixgbe/base/ixgbe_x550.c | 527 ++++++-----
17 files changed, 2102 insertions(+), 2132 deletions(-)
Comments
> -----Original Message----- > From: dev <dev-bounces@dpdk.org> On Behalf Of Guinan Sun > Sent: Thursday, July 9, 2020 4:00 PM > To: dev@dpdk.org > Cc: Guo, Jia <jia.guo@intel.com>; Zhao1, Wei <wei.zhao1@intel.com>; Sun, > GuinanX <guinanx.sun@intel.com> > Subject: [dpdk-dev] [PATCH v3 00/19] update ixgbe base code > > source code of ixgbe driver: > not-released-cid-ixgbe.2020.06.09.tar.gz released by the team which develop > basic drivers for any ixgbe NIC. > > changelog in ND share repo: > From 66d7da32d8e8 ("ixgbe-shared: Add support to clear VFMBMEM and > toggle VF's TX queues") To 7f2d73c9742b ("ixgbe-shared: check Host > Interface Return Status for Shadow RAM Write command for X550") > > 66d7da32d8e8 is ignore as no use in this release. > Reviewed-by: Wei Zhao <wei.zhao1@intel.com> > --- > v3: > * Modify hardcode. > * Remove patch "toggle VF's Tx queues" > * Remove patch "add support to clear VFMBMEM" > * Split patch into two. > v2: > * Remove codes about IXGBE_NVMUPD_SUPPORT. > * Remove codes about PREBOOT_SUPPORT. > * Remove codes about IXGBE_SFP_DETECT_RETRIES. > * Remove codes about IXGBE_EEPROM_GRANT_ATTEMPTS. > * Remove codes about IXGBE_VFWRITE_REG. > * Remove some useless defines. > * Modify commit messages. > * Split some patch to two patches and Merge some patches to one patch. > * Update README. > > Guinan Sun (19): > net/ixgbe/base: fix host interface shadow RAM read > net/ixgbe/base: change flow for "Apply Update" command > net/ixgbe/base: fix x550em 10G NIC link status report > net/ixgbe/base: resolve infinite recursion on PCIe link down > net/ixgbe/base: added register definitions for NVM update > net/ixgbe/base: cleanup spelling mistakes in comments > net/ixgbe/base: remove whitespace in function comments > net/ixgbe/base: move increments after evaluations > net/ixgbe/base: create dedicated func to restart auto nego > net/ixgbe/base: add typecast for type mismatch > net/ixgbe/base: remove unnecessary return value check > net/ixgbe/base: remove unnecessary log message FC autonego > net/ixgbe/base: initialize data field in struct buffer > net/ixgbe/base: improve log about autonego being disabled > net/ixgbe/base: add ipv6 mask for FDIR feature > net/ixgbe/base: remove default advertising for x550 2.5G/5G > net/ixgbe/base: check host interface return status > net/ixgbe/base: cleanup pre-processor tags > net/ixgbe/base: update version > > drivers/net/ixgbe/base/README | 2 +- > drivers/net/ixgbe/base/ixgbe_82598.c | 238 ++--- > drivers/net/ixgbe/base/ixgbe_82599.c | 397 ++++---- > drivers/net/ixgbe/base/ixgbe_api.c | 866 +++++++++--------- > drivers/net/ixgbe/base/ixgbe_common.c | 1055 +++++++++++----------- > drivers/net/ixgbe/base/ixgbe_common.h | 2 +- > drivers/net/ixgbe/base/ixgbe_dcb.c | 6 +- > drivers/net/ixgbe/base/ixgbe_dcb_82598.c | 2 +- > drivers/net/ixgbe/base/ixgbe_dcb_82599.c | 2 +- > drivers/net/ixgbe/base/ixgbe_hv_vf.c | 20 +- > drivers/net/ixgbe/base/ixgbe_mbx.c | 242 ++--- > drivers/net/ixgbe/base/ixgbe_phy.c | 488 +++++----- > drivers/net/ixgbe/base/ixgbe_phy.h | 3 +- > drivers/net/ixgbe/base/ixgbe_type.h | 24 +- > drivers/net/ixgbe/base/ixgbe_vf.c | 170 ++-- > drivers/net/ixgbe/base/ixgbe_x540.c | 190 ++-- > drivers/net/ixgbe/base/ixgbe_x550.c | 527 ++++++----- > 17 files changed, 2102 insertions(+), 2132 deletions(-) > > -- > 2.17.1 Update v2 to v3 in dpdk-next-net-intel.