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 56A7AA00C3; Wed, 21 Sep 2022 23:03:40 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C54A442B6D; Wed, 21 Sep 2022 23:03:25 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id E549B4067C for ; Wed, 21 Sep 2022 23:03:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1663794203; x=1695330203; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=mo1KJgGgcDC9ifXRJOi5w0OVgQFXkN9SUd2LoVKs8BY=; b=CS0rrNqjfchJcsJWswEmBwB/mO/2DoBdE7qdQ9YgmZEHYkEnZog/OZeh Q7fJlJvx5gaqWtS5atx3qw0OX92tTll6w4pkHS+uf4+BR4l/NgASAcnhI LkSuZDYs+C28euPoK/3q2erFwkTOiz/eRw2SzSs4ALVPnVZMG6KONbVMS bKYtH2Wb66wxG9kYwvtpAcyr5/iUSbDR7CZiU44jssFlVkCeOXp6WXsSK uiw1G8eUzZdLvtFQT3WacyE0NZVsDLTNS8nWQTBsDcg5MGcj1Z7LHVDrT plto04NL/46dYmwCe9B3XIpTuTm6ehGchad6kWsGndnbdmv4FTwlA1NCx Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10477"; a="300967611" X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="300967611" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Sep 2022 14:03:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="794832343" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by orsmga005.jf.intel.com with ESMTP; 21 Sep 2022 14:03:21 -0700 From: Nic Chautru To: dev@dpdk.org, thomas@monjalon.net, gakhil@marvell.com Cc: maxime.coquelin@redhat.com, trix@redhat.com, mdr@ashroe.eu, bruce.richardson@intel.com, david.marchand@redhat.com, stephen@networkplumber.org, mingshan.zhang@intel.com, hemant.agrawal@nxp.com, Nicolas Chautru Subject: [PATCH v8 3/7] bbdev: add device info on queue topology Date: Wed, 21 Sep 2022 14:02:48 -0700 Message-Id: <1663794172-19697-4-git-send-email-nicolas.chautru@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1663794172-19697-1-git-send-email-nicolas.chautru@intel.com> References: <1655491040-183649-6-git-send-email-nicolas.chautru@intel.com> <1663794172-19697-1-git-send-email-nicolas.chautru@intel.com> 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 From: Nicolas Chautru Adding more options in the API to expose the number of queues exposed and related priority. Signed-off-by: Nicolas Chautru Acked-by: Maxime Coquelin --- lib/bbdev/rte_bbdev.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h index 5ba7a61..7c883c9 100644 --- a/lib/bbdev/rte_bbdev.h +++ b/lib/bbdev/rte_bbdev.h @@ -289,6 +289,10 @@ struct rte_bbdev_driver_info { /** Maximum number of queues supported by the device */ unsigned int max_num_queues; + /** Maximum number of queues supported per operation type */ + unsigned int num_queues[RTE_BBDEV_OP_TYPE_PADDED_MAX]; + /** Priority level supported per operation type */ + unsigned int queue_priority[RTE_BBDEV_OP_TYPE_PADDED_MAX]; /** Queue size limit (queue size must also be power of 2) */ uint32_t queue_size_lim; /** Set if device off-loads operation to hardware */ -- 1.8.3.1