From patchwork Thu Oct 17 16:04:45 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Cao, Yahui" X-Patchwork-Id: 61350 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 79C031E888; Thu, 17 Oct 2019 10:22:32 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 5EE4B1E886 for ; Thu, 17 Oct 2019 10:22:30 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Oct 2019 01:22:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,307,1566889200"; d="scan'208";a="189949953" Received: from dpdk-yahui-skylake.sh.intel.com ([10.67.119.16]) by orsmga008.jf.intel.com with ESMTP; 17 Oct 2019 01:22:28 -0700 From: Yahui Cao To: Qiming Yang , Wenzhuo Lu Cc: dev@dpdk.org, Qi Zhang , Xiaolong Ye , Beilei Xing , Yahui Cao Date: Fri, 18 Oct 2019 00:04:45 +0800 Message-Id: <20191017160454.14518-1-yahui.cao@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190930114547.74803-1-yahui.cao@intel.com> References: <20190930114547.74803-1-yahui.cao@intel.com> Subject: [dpdk-dev] [PATCH v6 0/9] net/ice: add ice Flow Director driver 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" This patch series adds Flow Director support for Intel Ethernet Controller E810 series using RTE_FLOW - Patch 01-02 are FDIR init,teardown and configuration - Remaining patches are FDIR RTE_FLOW enablement --- v6: * Fix build error on different platform v5: * Add GTPU rule support * Fix tunnel profile conflict issue * Update filter counter v4: * Remove rte_wmb. * Update input set mapping table. * Remove all created profiles during teardown * Fix tunnel rule duplication detection failure * Change function name v3: * Get flow id in flexible descriptor * Add vxlan tunnel rule support v2: * Move to flexible descriptor. * Distinguish tunnel and non-tunnel rule. * Add uninit function for fdir engine. * Fix coding style. * Change patch organization. * Add release notes. Beilei Xing (2): net/ice: enable flow director engine net/ice: configure HW FDIR rule Yahui Cao (7): net/ice: add FDIR create and destroy net/ice: enable FDIR queue group net/ice: add FDIR counter resource init/release net/ice: add FDIR counter support net/ice: reject duplicate flow for FDIR net/ice: add FDIR vxlan tunnel support net/ice: add FDIR GTPU tunnel support doc/guides/rel_notes/release_19_11.rst | 1 + drivers/net/ice/Makefile | 1 + drivers/net/ice/ice_ethdev.c | 107 +- drivers/net/ice/ice_ethdev.h | 96 ++ drivers/net/ice/ice_fdir_filter.c | 1792 ++++++++++++++++++++++++ drivers/net/ice/ice_rxtx.c | 403 ++++++ drivers/net/ice/ice_rxtx.h | 9 + drivers/net/ice/meson.build | 3 +- 8 files changed, 2392 insertions(+), 20 deletions(-) create mode 100644 drivers/net/ice/ice_fdir_filter.c