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 C5450A0508; Wed, 13 Apr 2022 10:10:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4FD1340E03; Wed, 13 Apr 2022 10:10:41 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 73CAB4068B for ; Wed, 13 Apr 2022 10:10:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1649837439; x=1681373439; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=DfUJRgoTnL7fBaqmOMsSH07Udb06eUMjm5UE9aYmy/o=; b=cjYQfItGkkHAWUC9aT8GepGBNqU0j/Cu9eVknkr3kqHzd1tvATpoUi/w wlgey2h+XWHvwjWIFBsElUj7OH0iCRqaQJOPHWmQ5VbLbowFIuXGCcezl Yv3koXYqlPRkliaZukFBMDHrVz9A6jDOqfxiUULXx9HYwo9wRcfGc54SJ VpbSHueYuKKBIX287IDW2yxskFc7JTiwS6aKk4e9kOifZMHSUSEdgnjgD X98paaLxNhmLmPMPmtnXJBC/EbIPEKqHqKDcy93vjMoUbOsH9CthtUPNe NYNWwVMzE+7pOEE40iv3xLYSiBX/b2nhhV0S9QXJEztBIwSfbND4eoyNt w==; X-IronPort-AV: E=McAfee;i="6400,9594,10315"; a="243189010" X-IronPort-AV: E=Sophos;i="5.90,256,1643702400"; d="scan'208";a="243189010" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Apr 2022 01:10:38 -0700 X-IronPort-AV: E=Sophos;i="5.90,256,1643702400"; d="scan'208";a="526847431" Received: from intel-cd-odc-kevin.cd.intel.com ([10.240.178.195]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Apr 2022 01:10:36 -0700 From: Kevin Liu To: dev@dpdk.org Cc: qiming.yang@intel.com, qi.z.zhang@intel.com, stevex.yang@intel.com, Kevin Liu Subject: [PATCH v2 00/33] support full function of DCF Date: Wed, 13 Apr 2022 16:08:59 +0000 Message-Id: <20220413160932.2074781-1-kevinx.liu@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20220407105706.18889-1-kevinx.liu@intel.com> References: <20220407105706.18889-1-kevinx.liu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 These functions have been customized and implemented on DPDK-20.11, Now it's time to migrate the function to DPDK-22.07. v2: * remove patch: 1.net/iavf: support checking if device is an MDCF instance 2.net/ice: support MDCF(multi-DCF) instance 3.net/ice/base: support custom DDP buildin recipe 4.net/ice: support buildin recipe configuration 5.net/ice/base: support custom ddp package version 6.net/ice: disable ACL function for MDCF instance Alvin Zhang (14): net/ice: support dcf promisc configuration net/ice: support dcf VLAN filter and offload configuration net/ice: support DCF new VLAN capabilities common/iavf: support flushing rules and reporting DCF id net/ice/base: fix ethertype filter input set net/ice/base: support IPv6 GRE UDP pattern net/ice: support IPv6 NVGRE tunnel net/ice: support new pattern of IPv4 net/ice/base: support new patterns of TCP and UDP net/ice: support new patterns of TCP and UDP net/ice/base: support IPv4 GRE tunnel net/ice: support IPv4 GRE raw pattern type net/ice: treat unknown package as OS default package net/ice: fix DCF ACL flow engine Dapeng Yu (1): net/ice: enable CVL DCF device reset API Jie Wang (2): net/ice: add ops MTU-SET to dcf net/ice: add ops dev-supported-ptypes-get to dcf Junfeng Guo (4): net/ice/base: add VXLAN support for switch filter net/ice: add VXLAN support for switch filter net/ice/base: update Profile ID table for VXLAN net/ice/base: update Protocol ID table to match DVM DDP Kevin Liu (3): net/ice: support dcf MAC configuration net/ice: add enable/disable queues for DCF large VF net/ice: fix DCF reset Qi Zhang (1): testpmd: force flow flush Robin Zhang (1): net/ice: cleanup Tx buffers Steve Yang (7): net/ice: enable RSS RETA ops for DCF hardware net/ice: enable RSS HASH ops for DCF hardware net/ice: handle virtchnl event message without interrupt net/ice: add DCF request queues function net/ice: negotiate large VF and request more queues net/ice: enable multiple queues configurations for large VF net/ice: enable IRQ mapping configuration for large VF app/test-pmd/config.c | 6 +- drivers/common/iavf/virtchnl.h | 13 + drivers/net/ice/base/ice_common.c | 4 +- drivers/net/ice/base/ice_fdir.c | 3 + drivers/net/ice/base/ice_flex_pipe.c | 37 +- drivers/net/ice/base/ice_flex_pipe.h | 3 +- drivers/net/ice/base/ice_protocol_type.h | 22 + drivers/net/ice/base/ice_switch.c | 574 +++++++++++++- drivers/net/ice/base/ice_switch.h | 12 + drivers/net/ice/ice_acl_filter.c | 20 +- drivers/net/ice/ice_dcf.c | 375 ++++++++- drivers/net/ice/ice_dcf.h | 31 +- drivers/net/ice/ice_dcf_ethdev.c | 925 +++++++++++++++++++++-- drivers/net/ice/ice_dcf_ethdev.h | 14 + drivers/net/ice/ice_dcf_parent.c | 3 + drivers/net/ice/ice_ethdev.c | 13 +- drivers/net/ice/ice_generic_flow.c | 81 +- drivers/net/ice/ice_generic_flow.h | 13 + drivers/net/ice/ice_switch_filter.c | 163 +++- 19 files changed, 2174 insertions(+), 138 deletions(-) -- 2.33.1