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 65353A00BE; Thu, 17 Feb 2022 12:09:49 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F3F741168; Thu, 17 Feb 2022 12:09:41 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 374C24115C for ; Thu, 17 Feb 2022 12:09:39 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 21HAe4Di017554; Thu, 17 Feb 2022 03:09:37 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=2a8OhaD4B20XrSw2hNCVXJ172kDBd0FIXBfouoSM+gY=; b=ijSQ76v5CCmVb7rgOv5Sx2brtuf9Q0zQKrz9A24Da/8pzsslu7hRwIQARpxPh31aQSaP LFx79Z6ozQxKb3dwy7fH64espIeAtAX7P3/O+siDQ6vjoPmYlIltiwnRqw6XbI0Ul52d 1z5Dgze+AOKrijv2XYG4KYp9300hY4AEZf8hJDCk7ThJG88xp2zA15qSAgD7k7RfrIrA /YG4Q2pI817VitlQJUzl7Q3PRBIf5pP42zNSbyw1fuoX4ECdH4pRg26EIH0GbShskjNL qXfCosmFx5LeNj9M8PaTnUJ+3gGAcmq94PSaxmjj4RQu6ip2oUOiEr8X8LAYuSe2GbAh Fw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3e9mt9r2xv-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 17 Feb 2022 03:09:37 -0800 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Thu, 17 Feb 2022 03:09:36 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Thu, 17 Feb 2022 03:09:36 -0800 Received: from localhost.localdomain (unknown [10.28.34.39]) by maili.marvell.com (Postfix) with ESMTP id 967333F7050; Thu, 17 Feb 2022 03:09:34 -0800 (PST) From: Tomasz Duszynski To: , Jakub Palider , Tomasz Duszynski CC: , Subject: [PATCH v6 03/11] raw/cnxk_gpio: support reading queue count Date: Thu, 17 Feb 2022 12:09:16 +0100 Message-ID: <20220217110924.419024-4-tduszynski@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220217110924.419024-1-tduszynski@marvell.com> References: <20220118132424.2573372-1-tduszynski@marvell.com> <20220217110924.419024-1-tduszynski@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: 33VoBir2lZLWHjfQfHqwFTeQVFGEeY1- X-Proofpoint-ORIG-GUID: 33VoBir2lZLWHjfQfHqwFTeQVFGEeY1- X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.816,Hydra:6.0.425,FMLib:17.11.62.513 definitions=2022-02-17_04,2022-02-17_01,2021-12-02_01 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 Add support for reading number of available queues. Single queue corresponds to GPIO. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index 1f36f6e22c..cee75e389a 100644 --- a/drivers/raw/cnxk_gpio/cnxk_gpio.c +++ b/drivers/raw/cnxk_gpio/cnxk_gpio.c @@ -164,9 +164,18 @@ cnxk_gpio_queue_def_conf(struct rte_rawdev *dev, uint16_t queue_id, return 0; } +static uint16_t +cnxk_gpio_queue_count(struct rte_rawdev *dev) +{ + struct cnxk_gpiochip *gpiochip = dev->dev_private; + + return gpiochip->num_gpios; +} + static const struct rte_rawdev_ops cnxk_gpio_rawdev_ops = { .dev_close = cnxk_gpio_dev_close, .queue_def_conf = cnxk_gpio_queue_def_conf, + .queue_count = cnxk_gpio_queue_count, }; static int -- 2.25.1