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 9B63A4575B; Wed, 7 Aug 2024 11:34:17 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3BCE54064C; Wed, 7 Aug 2024 11:34:17 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.16]) by mails.dpdk.org (Postfix) with ESMTP id 9671B4029C for ; Wed, 7 Aug 2024 11:34:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1723023256; x=1754559256; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=8CIZQ/YQrw6EPFw42J/SGFs/bAZw9fjP/sUx6qImjyg=; b=a4BB0Ws/RDXTLhnbigPbRBI+RoqdpL/PL2TrByySDMWIDCSX8+gi2bYp aymyNjjSNhpw30Lgwnotsq50Rtm1OiN5hDqlHLojGcldPfsDeDfEnXEqb 6Bixd3fWE8cB9UgdQUMnW+bZ2mhOaIej0UHDhD1LUieFivBd8HlTjgfk2 QAPcG60UZ9A5ZRRogx40pPYP2FTXesI18sMjUO4f4dI3kG42h6GYTawmV qv12X42O7PnEWtppD7qR11o89i637L7lqfWEcyt4PyZUudD2Qk/6BlLwH WSvpkteH/UoSJQpXS8cB8dDDsPJcTN7Mf+yV9Z25eGusZs1kU9CFjU1Zr w==; X-CSE-ConnectionGUID: SsgbkdgJSuqFUq/lZsKv0A== X-CSE-MsgGUID: EVU7SdnqSaCjuj0AKbroKw== X-IronPort-AV: E=McAfee;i="6700,10204,11156"; a="12897946" X-IronPort-AV: E=Sophos;i="6.09,269,1716274800"; d="scan'208";a="12897946" Received: from fmviesa001.fm.intel.com ([10.60.135.141]) by fmvoesa110.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Aug 2024 02:34:14 -0700 X-CSE-ConnectionGUID: /UaIroIfSjqui9Kt6wCPWA== X-CSE-MsgGUID: Bo7puqd9SOes8NCG7rhjhQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,269,1716274800"; d="scan'208";a="87730960" Received: from silpixa00400562.ir.intel.com (HELO silpixa00401385.ir.intel.com) ([10.237.214.39]) by fmviesa001.fm.intel.com with ESMTP; 07 Aug 2024 02:34:14 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH 00/15] Improve rte_tm support in ICE driver Date: Wed, 7 Aug 2024 10:33:52 +0100 Message-ID: <20240807093407.452784-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 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 This patchset expands the capabilities of the traffic management support in the ICE driver. It allows the driver to support different sizes of topologies, and support >256 queues and more than 3 hierarchy layers. Bruce Richardson (15): net/ice: add traffic management node query function net/ice: detect stopping a flow-director queue twice net/ice: improve Tx scheduler graph output net/ice: add option to choose DDP package file net/ice: add option to download scheduler topology net/ice/base: allow init without TC class sched nodes net/ice/base: set VSI index on newly created nodes net/ice/base: read VSI layer info from VSI net/ice/base: remove 255 limit on sched child nodes net/ice/base: optimize subtree searches net/ice/base: make functions non-static net/ice/base: remove flag checks before topology upload net/ice: limit the number of queues to sched capabilities net/ice: enhance Tx scheduler hierarchy support net/ice: add minimal capability reporting API doc/guides/nics/ice.rst | 9 + drivers/net/ice/base/ice_ddp.c | 51 +-- drivers/net/ice/base/ice_ddp.h | 4 +- drivers/net/ice/base/ice_sched.c | 56 ++-- drivers/net/ice/base/ice_sched.h | 8 + drivers/net/ice/base/ice_type.h | 3 +- drivers/net/ice/ice_diagnose.c | 196 ++++------- drivers/net/ice/ice_ethdev.c | 92 +++-- drivers/net/ice/ice_ethdev.h | 18 +- drivers/net/ice/ice_rxtx.c | 15 + drivers/net/ice/ice_tm.c | 558 +++++++++++++++---------------- 11 files changed, 487 insertions(+), 523 deletions(-) -- 2.43.0