From patchwork Thu Sep 16 09:52:52 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 99007 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 BB0EFA0C41; Thu, 16 Sep 2021 11:50:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3FC2040151; Thu, 16 Sep 2021 11:50:02 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 0D9214003F for ; Thu, 16 Sep 2021 11:50:00 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10108"; a="222185839" X-IronPort-AV: E=Sophos;i="5.85,298,1624345200"; d="scan'208";a="222185839" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Sep 2021 02:49:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,298,1624345200"; d="scan'208";a="509246830" Received: from dpdk51.sh.intel.com ([10.67.111.142]) by fmsmga008.fm.intel.com with ESMTP; 16 Sep 2021 02:49:58 -0700 From: Qi Zhang To: qiming.yang@intel.com Cc: junfeng.guo@intel.com, dev@dpdk.org, Qi Zhang Date: Thu, 16 Sep 2021 17:52:52 +0800 Message-Id: <20210916095304.3058210-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH 00/12] ice base code batch 2 for DPDK 21.11 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" Qi Zhang (12): net/ice/base: calculate logical PF ID net/ice/base: include more E810T adapters net/ice/base: use macro instead of open-coded division net/ice/base: allow to enable LAN and loopback in switch net/ice/base: change addr param to u16 net/ice/base: allow tool access to MNG register net/ice/base: add package segment ID net/ice/base: add a helper to check for 100M speed support net/ice/base: add GCO defines and new GCO flex descriptor net/ice/base: add get/set functions for shared parameters net/ice/base: implement support for SMA controller net/ice/base: update auto generated hardware register drivers/net/ice/base/ice_adminq_cmd.h | 10 + drivers/net/ice/base/ice_common.c | 134 ++++++++++++- drivers/net/ice/base/ice_common.h | 7 + drivers/net/ice/base/ice_devids.h | 1 + drivers/net/ice/base/ice_flex_pipe.c | 11 +- drivers/net/ice/base/ice_flex_type.h | 2 +- drivers/net/ice/base/ice_hw_autogen.h | 148 +++++++------- drivers/net/ice/base/ice_lan_tx_rx.h | 49 ++++- drivers/net/ice/base/ice_nvm.c | 7 +- drivers/net/ice/base/ice_nvm.h | 13 -- drivers/net/ice/base/ice_ptp_hw.c | 270 +++++++++++++++++++++++--- drivers/net/ice/base/ice_ptp_hw.h | 11 ++ drivers/net/ice/base/ice_switch.c | 7 +- drivers/net/ice/base/ice_switch.h | 11 ++ drivers/net/ice/base/ice_type.h | 3 + 15 files changed, 569 insertions(+), 115 deletions(-) Acked-by: Junfeng Guo