From patchwork Fri Jun 18 06:38:37 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Robin Zhang X-Patchwork-Id: 94376 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 469E1A0C46; Fri, 18 Jun 2021 08:48:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BCF6940150; Fri, 18 Jun 2021 08:48:34 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 64B8A40142 for ; Fri, 18 Jun 2021 08:48:33 +0200 (CEST) IronPort-SDR: 5EPWTtrvFbj8q+MRzaa7V1Dq02kDKDZsw92LncUWaDv/5sTmqIa46OI3zV91j4wzQDamzhaDkg SWDlaPs8Ea0A== X-IronPort-AV: E=McAfee;i="6200,9189,10018"; a="186884243" X-IronPort-AV: E=Sophos;i="5.83,283,1616482800"; d="scan'208";a="186884243" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2021 23:48:32 -0700 IronPort-SDR: Sm/vEvJxS14nKpqyOZ4IUlw2DW/8i23L5ekioG6m1KMc5oe/wRYnuj62f+5WJtd9Lyg7H+zsIp vfMNk+EUtcGQ== X-IronPort-AV: E=Sophos;i="5.83,283,1616482800"; d="scan'208";a="485581315" Received: from unknown (HELO intel-npg-odc-srv03.cd.intel.com) ([10.240.178.145]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2021 23:48:30 -0700 From: Robin Zhang To: dev@dpdk.org Cc: beilei.xing@intel.com, junfeng.guo@intel.com, stevex.yang@intel.com, Robin Zhang Date: Fri, 18 Jun 2021 06:38:37 +0000 Message-Id: <20210618063851.3694702-1-robinx.zhang@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH 00/14] i40e base code update X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" update i40e base code. source code of i40e driver: cid-i40e.2021.04.29.tar.gz changelog in ND share repo: From 59a080f4fafe ("i40e-shared: Add opcode 0x0406 and 0x0416 to Linux support") To bedcbea1063 ("i40e-shared: Fix potentially uninitialized variables in NVM code") The following commits are ignored: cb9139e3bce8 ("i40e-shared: Fix not blinking X722 with x557 PHY via ‘ethtool -p'") c09d4f9cf390 ("i40e-shared: i40e-shared: Fix build warning -Wformat related to integer size") ff8a1abc6c17 ("i40e-shared: Fix build warning with __packed") 59a080f4fafe ("i40e-shared: Add opcode 0x0406 and 0x0416 to Linux support") Robin Zhang (14): net/i40e/base: add new versions of send ASQ command functions net/i40e/base: update FVL FW API version to 1.14 net/i40e/base: add support for Min Rollback Revision for 4 more FPK modules net/i40e/base: set TSA table values when parsing CEE configuration net/i40e/base: define new Shadow RAM pointers net/i40e/base: fix PHY type identifiers for 2.5G and 5G adapters net/i40e/base: fix PF reset failed net/i40e/base: fix update link data for X722 net/i40e/base: fix AOC media type reported by ethtool net/i40e/base: add flags and fields for double vlan processing net/i40e/base: 10GBASE-ER Optical modules recognition net/i40e/base: fix headers to match functions net/i40e/base: fix potentially uninitialized variables in NVM code net/i40e/base: update version in readme drivers/net/i40e/base/README | 2 +- drivers/net/i40e/base/i40e_adminq.c | 79 +++++++++-- drivers/net/i40e/base/i40e_adminq_cmd.h | 48 +++++-- drivers/net/i40e/base/i40e_common.c | 176 +++++++++++++++++++----- drivers/net/i40e/base/i40e_dcb.c | 10 +- drivers/net/i40e/base/i40e_lan_hmc.c | 2 +- drivers/net/i40e/base/i40e_nvm.c | 7 +- drivers/net/i40e/base/i40e_prototype.h | 17 +++ drivers/net/i40e/base/i40e_type.h | 12 +- 9 files changed, 288 insertions(+), 65 deletions(-)