From patchwork Sun Oct 25 00:29:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 82067 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 23CEFA04B5; Sun, 25 Oct 2020 02:26:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 47622F90; Sun, 25 Oct 2020 02:26:02 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 24DD098 for ; Sun, 25 Oct 2020 02:26:00 +0200 (CEST) IronPort-SDR: fR23+61IaBH3Hj31FwvW7raK+v4izUxDOfauUPWP4M2PuHFVBH0tf8mYWupoOeuWi1V3TK2P0L Itn8B2wQ4ekQ== X-IronPort-AV: E=McAfee;i="6000,8403,9784"; a="167927023" X-IronPort-AV: E=Sophos;i="5.77,414,1596524400"; d="scan'208";a="167927023" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Oct 2020 17:25:58 -0700 IronPort-SDR: OVCQthns704W71phXaetZa8vs4JsgrYuk/1L0iWc/XfzKQkkbvKoNRzyl+JVBz9FwOyvh4J4MC WTSEdY9equQw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,414,1596524400"; d="scan'208";a="359983990" Received: from dpdk51.sh.intel.com ([10.67.111.142]) by FMSMGA003.fm.intel.com with ESMTP; 24 Oct 2020 17:25:57 -0700 From: Qi Zhang To: qiming.yang@intel.com Cc: dev@dpdk.org, Qi Zhang Date: Sun, 25 Oct 2020 08:29:32 +0800 Message-Id: <20201025002953.1680999-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.25.4 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 00/21] ice: update 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" main change: 1. Refactor the RSS configure API. 2. Add global LUT support . 3. copule fix and code clean v2: - fix a bug in patch 19/21. Qi Zhang (21): net/ice/base: add tunnel support for FDIR net/ice/base: add NVM Write Response flags net/ice/base: modify ptype bitmap for outer MAC net/ice/base: rename ptype bitmap net/ice/base: move sched function prototypes net/ice/base: read security revision net/ice/base: add functions to allocate and free a RSS global LUT net/ice/base: add more capability to admin queue net/ice/base: update to use package info from ice segment net/ice/base: use malloc instead of calloc net/ice/base: add support for class 5+ modules net/ice/base: return error directly net/ice/base: implement shared rate limiter net/ice/base: recognize 860 as iSCSI port in CEE mode net/ice/base: fix parameter name in comment net/ice/base: support extended GPIO access net/ice/base: remove duplicated AQ command flag setting net/ice/base: introduce and use FLEX_ARRAY_SIZE where possible net/ice/base: refactor RSS configure API net/ice/base: add support for get/set RSS LUT to specify global LUT net/ice/base: update version drivers/net/ice/base/README | 2 +- drivers/net/ice/base/ice_adminq_cmd.h | 35 +- drivers/net/ice/base/ice_common.c | 58 ++- drivers/net/ice/base/ice_common.h | 13 +- drivers/net/ice/base/ice_dcb.c | 38 +- drivers/net/ice/base/ice_fdir.c | 8 + drivers/net/ice/base/ice_fdir.h | 9 + drivers/net/ice/base/ice_flex_pipe.c | 46 +-- drivers/net/ice/base/ice_flex_type.h | 8 + drivers/net/ice/base/ice_flow.c | 265 ++++++++------ drivers/net/ice/base/ice_flow.h | 34 +- drivers/net/ice/base/ice_nvm.c | 174 +++++++++ drivers/net/ice/base/ice_sched.c | 493 +++++++++++++++++--------- drivers/net/ice/base/ice_sched.h | 29 +- drivers/net/ice/base/ice_switch.c | 68 +++- drivers/net/ice/base/ice_switch.h | 2 + drivers/net/ice/base/ice_type.h | 64 +++- drivers/net/ice/ice_ethdev.c | 326 ++++++++--------- drivers/net/ice/ice_ethdev.h | 18 +- drivers/net/ice/ice_hash.c | 14 +- 20 files changed, 1118 insertions(+), 586 deletions(-)