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 828CAA00C3; Tue, 19 Apr 2022 09:47:25 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6CA1040687; Tue, 19 Apr 2022 09:47:25 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id D326240150 for ; Tue, 19 Apr 2022 09:47:23 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650354444; x=1681890444; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=eysvbnU7+FTzKUfOsXfliWC2+bTOJiAVzZ/zY7YlCl0=; b=nQyW03NEB5MkTL7COcEK6Az8AI7b41UqnAz80VE/yNumiadI9co87Dx5 Nsu585ww5i3jynTjod76j/6mg/+PuoTbyB9uGUVGoTzJGlqu9oxeaWGfy ntc2xz95pfplH88v+EuEs7tA0uneZqOUhmLzAiGXxY2+vqvq/5bAIgDXY AYI5jn7S3wxVpARa9qYmDAkXL1tw8q0HbLjCOPW/BWB5vVtnE2WX8BKkC QX3thyVyvOPFWwaywrKqV4FVl0Wh7aS08cD2+yw37ijKKTVrsXXYznO/q TAP9s+Q8T05/KH6IVfkX88DQImlxpu1kgovN9+RW4DMrDeN+Skesqc+74 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10321"; a="244288476" X-IronPort-AV: E=Sophos;i="5.90,272,1643702400"; d="scan'208";a="244288476" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Apr 2022 00:47:22 -0700 X-IronPort-AV: E=Sophos;i="5.90,272,1643702400"; d="scan'208";a="575971534" Received: from intel-cd-odc-kevin.cd.intel.com ([10.240.178.195]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Apr 2022 00:47:19 -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 v4 00/23] complete common VF features for DCF Date: Tue, 19 Apr 2022 15:45:51 +0000 Message-Id: <20220419154614.476154-1-kevinx.liu@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20220413171030.2231163-1-kevinx.liu@intel.com> References: <20220413171030.2231163-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 The DCF PMD support the below dev ops, dev_supported_ptypes_get dev_link_update xstats_get xstats_get_names xstats_reset promiscuous_enable promiscuous_disable allmulticast_enable allmulticast_disable mac_addr_add mac_addr_remove set_mc_addr_list vlan_filter_set vlan_offload_set mac_addr_set reta_update reta_query rss_hash_update rss_hash_conf_get rxq_info_get txq_info_get mtu_set tx_done_cleanup get_monitor_addr v4: * remove patch: 1.testpmd: force flow flush 2.net/ice: fix DCF ACL flow engine 3.net/ice: fix DCF reset * add patch: 1.net/ice: add extended stats 2.net/ice: support queue information getting 3.net/ice: implement power management 4.doc: update for ice DCF datapath configuration v3: * remove patch: 1.net/ice/base: add VXLAN support for switch filter 2.net/ice: add VXLAN support for switch filter 3.common/iavf: support flushing rules and reporting DCF id 4.net/ice/base: fix ethertype filter input set 5.net/ice/base: support IPv6 GRE UDP pattern 6.net/ice/base: support new patterns of TCP and UDP 7.net/ice: support new patterns of TCP and UDP 8.net/ice/base: support IPv4 GRE tunnel 9.net/ice: support IPv4 GRE raw pattern type 10.net/ice/base: update Profile ID table for VXLAN 11.net/ice/base: update Protocol ID table to match DVM DDP 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 (6): net/ice: support dcf promisc configuration net/ice: support dcf VLAN filter and offload configuration net/ice: support DCF new VLAN capabilities net/ice: support IPv6 NVGRE tunnel net/ice: support new pattern of IPv4 net/ice: treat unknown package as OS default package 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 Kevin Liu (6): net/ice: support dcf MAC configuration net/ice: add enable/disable queues for DCF large VF net/ice: add extended stats net/ice: support queue information getting net/ice: implement power management doc: update for ice DCF datapath configuration 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 doc/guides/nics/features/ice_dcf.ini | 15 + drivers/net/ice/ice_dcf.c | 375 +++++++++- drivers/net/ice/ice_dcf.h | 52 +- drivers/net/ice/ice_dcf_ethdev.c | 986 +++++++++++++++++++++++++-- drivers/net/ice/ice_dcf_ethdev.h | 14 + drivers/net/ice/ice_ethdev.c | 13 +- drivers/net/ice/ice_switch_filter.c | 8 + 7 files changed, 1375 insertions(+), 88 deletions(-) -- 2.33.1