From patchwork Wed May 22 17:33:43 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jani Nikula X-Patchwork-Id: 13671004 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 63365C25B7A for ; Wed, 22 May 2024 17:34:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 2FD4C10E265; Wed, 22 May 2024 17:34:36 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="ULRuIyN8"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.21]) by gabe.freedesktop.org (Postfix) with ESMTPS id EE56E10E1C7; Wed, 22 May 2024 17:34:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1716399266; x=1747935266; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=d9SGfLjftlPKuEdb0upzIfHACrM4n0eC3taiiBy4sjU=; b=ULRuIyN8IBlego8Dxypbz7E1eIe1Sg6DKHvwqOey8S3ipsqIPtOCPhjC QmvPX/KFVuZCot6Dk6ef/ucCnArOZYZ9OeaqZvnPhZNyHkWTuXTK0WKlC ip2qt8S714ImwLAhoLmGEng1bLunTLfV56RTSofE+NfXnWfeB2UlZO0k7 ETfjCLLlN3keEpd5Xil0nCfqwxj+FUXsLaaDaxdczXmnlX1A/ppJaNrgz 1K25UV8dqxBncMTM9WaPkAlOJK7QtjhaOQLXFkuhNTwASQGDsl4RSm+vj yIkqo/MfjlmWWu5m1ReoQPXYMwBlajonMK1a0ipOf2fYg0rlwOdH54LEa Q==; X-CSE-ConnectionGUID: 8d6NoAzgT2WVivezjvTytw== X-CSE-MsgGUID: td0Ljm2kTcajQdpfQYPi8g== X-IronPort-AV: E=McAfee;i="6600,9927,11080"; a="12611425" X-IronPort-AV: E=Sophos;i="6.08,181,1712646000"; d="scan'208";a="12611425" Received: from fmviesa010.fm.intel.com ([10.60.135.150]) by orvoesa113.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 May 2024 10:34:25 -0700 X-CSE-ConnectionGUID: smTK43ALSOmVdzk+3QZzHw== X-CSE-MsgGUID: ux07AAm5SRCVaefa21fSWg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,181,1712646000"; d="scan'208";a="33474965" Received: from lfiedoro-mobl.ger.corp.intel.com (HELO localhost) ([10.245.246.230]) by fmviesa010-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 May 2024 10:34:23 -0700 From: Jani Nikula To: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: jani.nikula@intel.com, rodrigo.vivi@intel.com, lucas.demarchi@intel.com Subject: [PATCH 06/10] drm/i915: add LNL PCI IDs Date: Wed, 22 May 2024 20:33:43 +0300 Message-Id: X-Mailer: git-send-email 2.39.2 In-Reply-To: References: MIME-Version: 1.0 Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Although not supported by i915 core, the display code needs to know the LNL PCI IDs. Long term, xe and i915 should probably share the file defining PCI IDs. Signed-off-by: Jani Nikula Reviewed-by: Rodrigo Vivi --- include/drm/i915_pciids.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h index 3e39d644ebaa..7ae7ee11ef38 100644 --- a/include/drm/i915_pciids.h +++ b/include/drm/i915_pciids.h @@ -783,4 +783,10 @@ MACRO__(0x7DD1, ## __VA_ARGS__), \ MACRO__(0x7DD5, ## __VA_ARGS__) +/* LNL */ +#define INTEL_LNL_IDS(MACRO__, ...) \ + MACRO__(0x6420, ## __VA_ARGS__), \ + MACRO__(0x64A0, ## __VA_ARGS__), \ + MACRO__(0x64B0, ## __VA_ARGS__) + #endif /* _I915_PCIIDS_H */