From patchwork Thu Jul 2 03:13:09 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guinan Sun X-Patchwork-Id: 72700 Return-Path: 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 8D191A0523; Thu, 2 Jul 2020 05:30:38 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5CAAD1D528; Thu, 2 Jul 2020 05:30:38 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 1B1291D44E for ; Thu, 2 Jul 2020 05:30:35 +0200 (CEST) IronPort-SDR: o/rV8e/ofOiByHXST/XNVc7sw9If7GBHnoSMZRvagzk3CZB3vDN421a+V33azg7WbIkRbklvm+ bcgu1/IL57+Q== X-IronPort-AV: E=McAfee;i="6000,8403,9669"; a="144300589" X-IronPort-AV: E=Sophos;i="5.75,302,1589266800"; d="scan'208";a="144300589" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jul 2020 20:30:35 -0700 IronPort-SDR: /qpfLPjTtXMv4qvRxgP/whQX50TGPJyamv0tJYkvwy54pFKdsAJcLDIT6h0ag77Exk7gi5CwAn SPiuaYgJMBIg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,302,1589266800"; d="scan'208";a="295751480" Received: from intel.sh.intel.com ([10.239.255.18]) by orsmga002.jf.intel.com with ESMTP; 01 Jul 2020 20:30:33 -0700 From: Guinan Sun To: dev@dpdk.org Cc: Jeff Guo , Zhao1 Wei , Guinan Sun Date: Thu, 2 Jul 2020 03:13:09 +0000 Message-Id: <20200702031329.4495-1-guinanx.sun@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200612032410.20864-1-guinanx.sun@intel.com> References: <20200612032410.20864-1-guinanx.sun@intel.com> Subject: [dpdk-dev] [PATCH v2 00/20] update ixgbe base code 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" 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") 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. * Rebase Guinan Sun (20): net/ixgbe/base: toggle VF's Tx queues net/ixgbe/base: add support to clear VFMBMEM 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: modify coding style 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 | 879 ++++++++--------- drivers/net/ixgbe/base/ixgbe_api.h | 1 + drivers/net/ixgbe/base/ixgbe_common.c | 1110 +++++++++++----------- drivers/net/ixgbe/base/ixgbe_common.h | 3 +- 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 | 285 +++--- drivers/net/ixgbe/base/ixgbe_mbx.h | 1 + drivers/net/ixgbe/base/ixgbe_phy.c | 488 +++++----- drivers/net/ixgbe/base/ixgbe_phy.h | 3 +- drivers/net/ixgbe/base/ixgbe_type.h | 26 +- drivers/net/ixgbe/base/ixgbe_vf.c | 170 ++-- drivers/net/ixgbe/base/ixgbe_x540.c | 190 ++-- drivers/net/ixgbe/base/ixgbe_x550.c | 527 +++++----- 19 files changed, 2218 insertions(+), 2132 deletions(-)