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 D5E97CCD19F for ; Mon, 20 Oct 2025 23:12:57 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7532C10E53D; Mon, 20 Oct 2025 23:12:57 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="OyITn/Bz"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.9]) by gabe.freedesktop.org (Postfix) with ESMTPS id 68DC610E53C for ; Mon, 20 Oct 2025 23:12:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1761001976; x=1792537976; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=baoPanPqvI+HnJH4kmSrXVJnsHaMhJ1dSFjgu15ey18=; b=OyITn/BzTv4FcWzTqpbLVBrVoitVP8THMucwIijjEakSS4ThFBSDWuS7 f6f8pz6FCz7YX+AIv2MnukBoV/0JpWrHbsoJx/EPTZs7cdAVrtcj+jUR5 d654BOn0ASlhE+Ib+TRnk6Pk2eEUxfCDeZ0IawPF+pCYwluO1pzRRbN3Z kf+EgKRX7dhGr5m1Hsm2icqOv9X3IO+0qJw0J9VCb5Ci1xeACfNjvIIYj DDg/u6mpwQ0/N7+SMUDRw+c52i+EFLsnRFYBeO4IxIJ46fi36LU43+FIm 6QoGvI2eHK+v0rWwGLEmwB9iXrzHi7lUQI6WHfNTIg9EGmlwPmXGHzzRi w==; X-CSE-ConnectionGUID: g48JtDrBSqO0PLMN07f41g== X-CSE-MsgGUID: a5sokgNSSU+JQluO55+vEQ== X-IronPort-AV: E=McAfee;i="6800,10657,11586"; a="73797666" X-IronPort-AV: E=Sophos;i="6.19,243,1754982000"; d="scan'208";a="73797666" Received: from orviesa001.jf.intel.com ([10.64.159.141]) by fmvoesa103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Oct 2025 16:12:56 -0700 X-CSE-ConnectionGUID: yJV8ee2TTVWUhrpbU844Aw== X-CSE-MsgGUID: EOFTlMIzTGiSW5Ph2IhejQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.19,243,1754982000"; d="scan'208";a="220605176" Received: from dut6304bmgfrd.fm.intel.com ([10.36.21.81]) by orviesa001.jf.intel.com with ESMTP; 20 Oct 2025 16:12:56 -0700 From: Xin Wang To: igt-dev@lists.freedesktop.org Cc: Xin Wang Subject: [PATCH v8 2/2] lib/intel_device_info: Query runtime xe device graphics versions Date: Mon, 20 Oct 2025 23:12:53 +0000 Message-ID: <20251020231253.138842-3-x.wang@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20251020231253.138842-1-x.wang@intel.com> References: <20251020231253.138842-1-x.wang@intel.com> MIME-Version: 1.0 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" For platforms with graphics_ver >= 20, query the runtime xe device ver instead of relying solely on hardcoded values from the PCI device table. This enables accurate IP minor version (graphics_rel) detection for platforms like Xe2 where different steppings have different IP versions. Implementation details: - Use weak symbol linkage for xe_ipver_cache_lookup() to handle static library compilation (libigt_chipset.a, libigt_device_scan.a) without xe_query.c dependencies which are used for i915 tools (i915_perf and intel_gpu_top) - Provide a weak stub that returns NULL when xe_query is not linked - For Gen20+ platforms, prefer runtime xe device versions over static data - Fall back to PCI table if xe device info is unavailable - Reset cache on query failure to allow retry Remove hardcoded graphics_rel from static table entries for xe devices as they will be populated at runtime from GMD_ID. This unifies device info handling between i915 and xe drivers, enabling: - Platform-specific workarounds based on accurate IP versions - Consistent device info API across both drivers Signed-off-by: Xin Wang --- lib/intel_device_info.c | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c index a853f9ab4..87b1069be 100644 --- a/lib/intel_device_info.c +++ b/lib/intel_device_info.c @@ -3,6 +3,16 @@ #include "i915_pciids_local.h" #include /* ffs() */ +#include +#include + +/* Weak symbol stub - will be overridden if xe_query.c is linked */ +struct xe_device_ipver *xe_ipver_cache_lookup(uint32_t devid) __attribute__((weak)); + +struct xe_device_ipver *xe_ipver_cache_lookup(uint32_t devid) +{ + return NULL; +} static const struct intel_device_info intel_generic_info = { .graphics_ver = 0, @@ -505,7 +515,6 @@ static const struct intel_device_info intel_pontevecchio_info = { static const struct intel_device_info intel_lunarlake_info = { .graphics_ver = 20, - .graphics_rel = 4, .display_ver = 20, .has_4tile = true, .has_flatccs = true, @@ -517,7 +526,6 @@ static const struct intel_device_info intel_lunarlake_info = { static const struct intel_device_info intel_battlemage_info = { .graphics_ver = 20, - .graphics_rel = 1, .display_ver = 14, .has_4tile = true, .has_flatccs = true, @@ -529,7 +537,6 @@ static const struct intel_device_info intel_battlemage_info = { static const struct intel_device_info intel_pantherlake_info = { .graphics_ver = 30, - .graphics_rel = 0, .display_ver = 30, .has_4tile = true, .has_flatccs = true, @@ -675,6 +682,8 @@ const struct intel_device_info *intel_get_device_info(uint16_t devid) { static __thread const struct intel_device_info *cache = &intel_generic_info; static __thread uint16_t cached_devid; + static __thread struct intel_device_info xe_dev_info; + struct xe_device_ipver *ipver; int i; if (cached_devid == devid) @@ -689,6 +698,17 @@ const struct intel_device_info *intel_get_device_info(uint16_t devid) cached_devid = devid; cache = (void *)intel_device_match[i].match_data; + if (cache->graphics_ver >= 20) { + ipver = xe_ipver_cache_lookup(devid); + if (ipver && ipver->devid == devid) { + memcpy(&xe_dev_info, cache, sizeof(struct intel_device_info)); + xe_dev_info.graphics_ver = ipver->graphics_ver; + xe_dev_info.graphics_rel = ipver->graphics_rel; + cache = &xe_dev_info; + } else { + cached_devid = 0; + } + } out: return cache; } -- 2.43.0