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 1DBFCFD4F04 for ; Tue, 10 Mar 2026 16:40:51 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B2AC010E738; Tue, 10 Mar 2026 16:40:50 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="eVHAXFpF"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.19]) by gabe.freedesktop.org (Postfix) with ESMTPS id B9BFA10E738 for ; Tue, 10 Mar 2026 16:40:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1773160847; x=1804696847; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=W70V2rV1yREGzLeFoYqxCL0CA4upNf3svvfOBQ6Go1Y=; b=eVHAXFpFZJ3FH9HH5HLLBeo5m/vpJNLA88G89+ioxHiMJijtZ9zIdA4l vY8TXucMfryjjtuJ3hlBD7j59QHDU+USpZfxL7YjY3BzDV2jXF3GN9zU+ +q05spOei3Ul8hidYiOQ0EOOQEmAAljmMLvdlHaivbeEjFn1moMfeM3xx 5RjNCfsASjpQtIkxEe/D5/Te48MEUB/vF36lHzQyMHf0PP/WngmAiHBvZ OaLi3AP1jdyiKRfY9LwcQziuf789P+xqjVHyJaFLtIM7evu4NK2+QgzE/ 4RoSzXEW2rIwEJ8+WAYrUCn871GONW5hTVNiXYWBWC1Rn0Q4Z+xR94Fb2 Q==; X-CSE-ConnectionGUID: 27irzMqJSguEDAuR9at1qg== X-CSE-MsgGUID: rEKilWw/RH2LG6eDLxfSPw== X-IronPort-AV: E=McAfee;i="6800,10657,11725"; a="74115450" X-IronPort-AV: E=Sophos;i="6.23,112,1770624000"; d="scan'208";a="74115450" Received: from fmviesa010.fm.intel.com ([10.60.135.150]) by orvoesa111.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Mar 2026 09:40:46 -0700 X-CSE-ConnectionGUID: sNKTjDKeTd+LpXiInHXt8g== X-CSE-MsgGUID: CEHrHdvrRuy9/H8CwBBGqQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.23,112,1770624000"; d="scan'208";a="216934063" Received: from xwang-desk.fm.intel.com ([10.121.64.134]) by fmviesa010.fm.intel.com with ESMTP; 10 Mar 2026 09:40:45 -0700 From: Xin Wang To: igt-dev@lists.freedesktop.org Cc: Xin Wang Subject: [PATCH v4 4/4] lib/intel_device_info: remove the graphcs_rel from xe2+ devices Date: Tue, 10 Mar 2026 09:40:44 -0700 Message-ID: <20260310164044.1490471-5-x.wang@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260310164044.1490471-1-x.wang@intel.com> References: <20260310164044.1490471-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" On Xe2+ platforms, the graphics/media IP version is no longer a stable property of a PCI ID "device type". After IP disaggregation, devices sharing the same PCI ID can potentially report different IP versions, so encoding graphics_rel in the static PCI-ID table is misleading. Signed-off-by: Xin Wang --- lib/intel_device_info.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c index c0fde6182..2a9c09d01 100644 --- a/lib/intel_device_info.c +++ b/lib/intel_device_info.c @@ -505,7 +505,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 +516,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 +527,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, @@ -541,7 +538,6 @@ static const struct intel_device_info intel_pantherlake_info = { static const struct intel_device_info intel_novalake_s_info = { .graphics_ver = 30, - .graphics_rel = 04, .display_ver = 35, .has_4tile = true, .has_oam = true, @@ -553,7 +549,6 @@ static const struct intel_device_info intel_novalake_s_info = { static const struct intel_device_info intel_crescentisland_info = { .graphics_ver = 35, - .graphics_rel = 11, .display_ver = 0, .has_oam = true, .is_crescentisland = true, -- 2.43.0