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 B0AAAA0A0C; Thu, 1 Jul 2021 13:40:31 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 803AD40141; Thu, 1 Jul 2021 13:40:31 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id BF0EA4003E for ; Thu, 1 Jul 2021 13:40:29 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10031"; a="205513400" X-IronPort-AV: E=Sophos;i="5.83,314,1616482800"; d="scan'208";a="205513400" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jul 2021 04:40:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.83,313,1616482800"; d="scan'208";a="457624027" Received: from dpdk-xuting-second.sh.intel.com ([10.67.116.193]) by fmsmga008.fm.intel.com with ESMTP; 01 Jul 2021 04:40:27 -0700 From: Ting Xu To: dev@dpdk.org Cc: qi.z.zhang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com, qiming.yang@intel.com, Ting Xu Date: Thu, 1 Jul 2021 19:41:17 +0800 Message-Id: <20210701114124.6174-1-ting.xu@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210601014034.36100-1-ting.xu@intel.com> References: <20210601014034.36100-1-ting.xu@intel.com> Subject: [dpdk-dev] [PATCH v5 0/7] Enable ETS-based Tx QoS for VF in DCF 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" This patch enables the ETS-based Tx QoS for IAVF. Kernel tool is used to configure ETS first. DCF is used to set bandwidth limit for VFs of each TC. IAVF is supported to query QoS capability and set queue TC mapping. Traffic Management API is utilized to configure the QoS hierarchy scheduler tree. The scheduler tree will be passed to hardware to enable all above functions. Ting Xu (7): common/iavf: support ETS-based QoS offload configuration net/ice/base: support DCF query port ETS adminq net/ice: support DCF link status event handling net/ice: support QoS config VF bandwidth in DCF net/iavf: query QoS cap and set queue TC mapping net/iavf: check Tx packet with correct UP and queue doc: release note for ETS-based Tx QoS doc/guides/rel_notes/release_21_08.rst | 7 + drivers/common/iavf/iavf_type.h | 2 + drivers/common/iavf/virtchnl.h | 131 +++++ drivers/net/iavf/iavf.h | 56 ++ drivers/net/iavf/iavf_ethdev.c | 37 ++ drivers/net/iavf/iavf_rxtx.c | 49 ++ drivers/net/iavf/iavf_rxtx.h | 1 + drivers/net/iavf/iavf_tm.c | 743 ++++++++++++++++++++++++ drivers/net/iavf/iavf_vchnl.c | 56 +- drivers/net/iavf/meson.build | 1 + drivers/net/ice/base/ice_dcb.c | 3 +- drivers/net/ice/ice_dcf.c | 9 +- drivers/net/ice/ice_dcf.h | 54 ++ drivers/net/ice/ice_dcf_ethdev.c | 68 ++- drivers/net/ice/ice_dcf_ethdev.h | 3 + drivers/net/ice/ice_dcf_parent.c | 83 +++ drivers/net/ice/ice_dcf_sched.c | 765 +++++++++++++++++++++++++ drivers/net/ice/meson.build | 3 +- 18 files changed, 2064 insertions(+), 7 deletions(-) create mode 100644 drivers/net/iavf/iavf_tm.c create mode 100644 drivers/net/ice/ice_dcf_sched.c -- 2.17.1