From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1210CA034F; Sat, 9 Oct 2021 03:41:17 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8ECAA40142; Sat, 9 Oct 2021 03:41:16 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 857CF40042 for ; Sat, 9 Oct 2021 03:41:14 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10131"; a="290118377" X-IronPort-AV: E=Sophos;i="5.85,358,1624345200"; d="scan'208";a="290118377" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Oct 2021 18:41:13 -0700 X-IronPort-AV: E=Sophos;i="5.85,358,1624345200"; d="scan'208";a="489686782" Received: from unknown (HELO intel-npg-odc-srv03.cd.intel.com) ([10.240.178.145]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Oct 2021 18:41:09 -0700 From: Robin Zhang To: dev@dpdk.org Cc: beilei.xing@intel.com, qi.z.zhang@intel.com, helin.zhang@intel.com, jingjing.wu@intel.com, remy.horton@intel.com, jijiang.liu@intel.com, jing.d.chen@intel.com, cunming.liang@intel.com, wenzhuo.lu@intel.com, junfeng.guo@intel.com, stevex.yang@intel.com, Robin Zhang Date: Sat, 9 Oct 2021 01:26:31 +0000 Message-Id: <20211009012648.64838-1-robinx.zhang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210618063851.3694702-1-robinx.zhang@intel.com> References: <20210618063851.3694702-1-robinx.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v5 00/17] 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.08.16.tar.gz changelog in i40e share repo: >From 59a080f4fafe ("i40e-shared: Add opcode 0x0406 and 0x0416 to Linux support") To 2c7aab559654 ("i40e-shared: Add defines related to DDP") 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") v5: - refine commit messages v4: - update base code to cid-i40e.2021.08.16 v3: - there has a fix patch contains two issues, split it into two patches v2: - refine commit messages and macro name Robin Zhang (17): net/i40e/base: add v2 version of send ASQ command functions net/i40e/base: add Min SRev for 4 more X722 modules net/i40e/base: set TSA table values when parsing CEE config net/i40e/base: define new shadow RAM pointers net/i40e/base: fix PHY identifiers for 2.5G and 5G adapters net/i40e/base: fix PF reset net/i40e/base: fix update link data for X722 net/i40e/base: fix AOC media type net/i40e/base: add flags and fields for double VLAN net/i40e/base: fix headers to match functions net/i40e/base: fix potentially uninitialized variables net/i40e/base: fix checksum is used incorrectly net/i40e/base: add calculation of MAC frequency if no link net/i40e/base: separate kernel allocated Rx bi rings net/i40e/base: update FVL FW API version to 1.15 net/i40e/base: add defines related to DDP 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 | 55 ++++++-- drivers/net/i40e/base/i40e_common.c | 175 +++++++++++++++++++----- 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_register.h | 10 ++ drivers/net/i40e/base/i40e_type.h | 26 +++- drivers/net/i40e/i40e_ethdev.c | 3 +- 11 files changed, 318 insertions(+), 68 deletions(-) -- 2.25.1