From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id C9A4BC54E90 for ; Thu, 22 May 2025 15:49:58 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7DF7710E25E; Thu, 22 May 2025 15:49:58 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="E4Mo9/Fe"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.21]) by gabe.freedesktop.org (Postfix) with ESMTPS id 125ED10E25E for ; Thu, 22 May 2025 15:49:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1747928998; x=1779464998; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KkStm02SIG22hKw02DzvCHcj+BqJIUIJbyvsZreFfgs=; b=E4Mo9/Fe7dCGdIzA3Jo8StUbo5tK7XAfElAgJK17ydYK5fNZ06AsdW0z ECxKnCj6YuxIcq3MOvjzy/FwkQ7LSJSzbKMx4tof0EDOGMwJtfrOfgFOF O0vS6e+ua7NSpRxEHTiE4FKcOTuC2UYvP4w/SHOqLBCICtSonK8ixsiZW ckSvmoK/XQdcIwJ8zXRTfbCMat/thUeMsCSKguWfJZnbCpm1UAiVFcSF2 9kVqOxmGjsZJ1k+eN5N/yYptKKNLDQLOT049kEsHZ0Iefvh3mmHeuU4mQ KEbOAxdIUBoZ9FV9mEiHeYS9odRzXxX+uIz+Jfj0PSonW2NJXuLRQyfEZ Q==; X-CSE-ConnectionGUID: VJaiQcVgSjmTTFjC+T+Gsw== X-CSE-MsgGUID: erY5QyU8SKGXrGibmuriYg== X-IronPort-AV: E=McAfee;i="6700,10204,11441"; a="49862142" X-IronPort-AV: E=Sophos;i="6.15,306,1739865600"; d="scan'208";a="49862142" Received: from orviesa008.jf.intel.com ([10.64.159.148]) by orvoesa113.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 May 2025 08:49:57 -0700 X-CSE-ConnectionGUID: 2prsvzyeQ7CA9nyDWqG3ZA== X-CSE-MsgGUID: X3/44/4yS0aQ2nGBco1EHw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.15,306,1739865600"; d="scan'208";a="141594109" Received: from psoham-nuc7i7bnh.iind.intel.com ([10.190.216.151]) by orviesa008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 May 2025 08:49:54 -0700 From: Soham Purkait To: igt-dev@lists.freedesktop.org, riana.tauro@intel.com, vinay.belgaumkar@intel.com, kamil.konieczny@intel.com, krzysztof.karas@intel.com, zbigniew.kempczynski@intel.com Cc: anshuman.gupta@intel.com, lucas.demarchi@intel.com, rodrigo.vivi@intel.com, soham.purkait@intel.com, ashutosh.dixit@intel.com Subject: [PATCH i-g-t v11 2/5] lib/igt_device_scan: Enable finding all matched IGT devices Date: Thu, 22 May 2025 21:14:44 +0530 Message-Id: <20250522154447.496407-3-soham.purkait@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20250522154447.496407-1-soham.purkait@intel.com> References: <20250522154447.496407-1-soham.purkait@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: igt-dev@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development mailing list for IGT GPU Tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" Use filter to find all the available GPUs or few among them by driver name and card type or card number. v2 : Fix for refactoring GPUTOP into a vendor-agnostic tool. (Lucas) v3 : Separate commit for lib. (Kamil) v4 : Refactor to use composition strategy for driver and device type filtering. Refactor code to improve memory allocation and error handling. (Lucas) v5 : Introduce device card match function to return collection of matching devices using device filter. v6 : Separate commit for device card match function. (Zbigniew) Function description modification for device card match function. (Zbigniew) v7 : Single return for card match function. (Krzysztof) v8 : Removed 'drivers' array as card match function parameter. (Zbigniew) v9 : Fixed allocation in card match instead of multiple realloc. (Zbigniew) Signed-off-by: Soham Purkait Reviewed-by: Zbigniew KempczyƄski Reviewed-by: Krzysztof Karas --- lib/igt_device_scan.c | 48 +++++++++++++++++++++++++++++++++++++++++++ lib/igt_device_scan.h | 1 + 2 files changed, 49 insertions(+) diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c index a250e7ee9..f11ebf02e 100644 --- a/lib/igt_device_scan.c +++ b/lib/igt_device_scan.c @@ -2143,6 +2143,54 @@ bool igt_device_card_match_pci(const char *filter, return __igt_device_card_match(filter, card, true); } +/** + * igt_device_card_match_all + * @filter: filter string. + * @card: double pointer to igt_device_card structure, containing + * an array of igt_device_card structures upon successful return. + * + * Function applies filter to match device from device array. + * + * Returns: the number of cards found. + * + * Note: The caller is responsible for freeing the memory which is + * dynamically allocated for the array of igt_device_card structures + * upon successful return. + */ +int igt_device_card_match_all(const char *filter, struct igt_device_card **card) +{ + struct igt_device *dev = NULL; + struct igt_device_card *crd = NULL; + int count = 0; + + igt_devices_scan(); + + if (igt_device_filter_apply(filter) == false) + return 0; + + if (igt_list_empty(&igt_devs.filtered)) + return 0; + + igt_list_for_each_entry(dev, &igt_devs.filtered, link) { + count++; + } + + crd = calloc(count, sizeof(struct igt_device_card)); + if (!crd) + return 0; + + count = 0; + + igt_list_for_each_entry(dev, &igt_devs.filtered, link) { + __copy_dev_to_card(dev, crd + count++); + } + + if (count) + *card = crd; + + return count; +} + /** * igt_device_get_pretty_name * @card: pointer to igt_device_card struct diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h index f1cd3b1e9..e6e31e799 100644 --- a/lib/igt_device_scan.h +++ b/lib/igt_device_scan.h @@ -89,6 +89,7 @@ int igt_device_filter_pci(void); bool igt_device_card_match(const char *filter, struct igt_device_card *card); bool igt_device_card_match_pci(const char *filter, struct igt_device_card *card); +int igt_device_card_match_all(const char *filter, struct igt_device_card **card); bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card); bool igt_device_find_integrated_card(struct igt_device_card *card); bool igt_device_find_first_xe_discrete_card(struct igt_device_card *card); -- 2.34.1