From patchwork Wed Oct 11 08:00:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chauhan, Shekhar" X-Patchwork-Id: 13416833 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 E774BCD98F9 for ; Wed, 11 Oct 2023 08:00:52 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5480510E249; Wed, 11 Oct 2023 08:00:52 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.20]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4670A10E249 for ; Wed, 11 Oct 2023 08:00:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1697011250; x=1728547250; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=+1ocNnbh+8T53ryv2tOK+ZdvzALWJrSF5NXLp5rU8/A=; b=A6uK4xpKSoTfnYTzfRdx9xdjPlk87d/kTJd/P6tINZrvTaKFNVR2bWMo Og95IqKhZjrgDPQzeK/tTwb4ycv4c1KcoFoF2gxIiQ5yRphP10oMYmXHZ 1jYhx0mPVdwClSVR9p0pnLhubvaSi0YT1zJgbmYKchAwuifv7TQSNU1RT Dx6EKCaPfRzJmRXs2sbzQdZQCBK8LcNSGECrQIkkutU0vxWsFysK9Vet2 gorv0ZAqPUroGEiMp7gyDaQH5VetMgTV72u7V1LR5mwvhJvLz9B0ldTrQ 6m2FqMaXhThVVw4SCjNc+wxfWIsfgSzjlP7ckQir1xKprzM6xjyLAuV6m g==; X-IronPort-AV: E=McAfee;i="6600,9927,10859"; a="374947435" X-IronPort-AV: E=Sophos;i="6.03,214,1694761200"; d="scan'208";a="374947435" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Oct 2023 01:00:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10859"; a="1085126248" X-IronPort-AV: E=Sophos;i="6.03,214,1694761200"; d="scan'208";a="1085126248" Received: from shekharc-desk.iind.intel.com ([10.190.239.54]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Oct 2023 01:00:48 -0700 From: Shekhar Chauhan To: intel-gfx@lists.freedesktop.org Date: Wed, 11 Oct 2023 13:30:39 +0530 Message-Id: <20231011080039.2781048-1-shekhar.chauhan@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH v2] drm/i915: Add new DG2 PCI IDs 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: , Cc: matthew.d.roper@intel.com Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Add recently added PCI IDs for DG2 BSpec: 44477 Signed-off-by: Shekhar Chauhan Reviewed-by: Matt Roper --- include/drm/i915_pciids.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h index 1256770d3827..1c9ea6ab3eb9 100644 --- a/include/drm/i915_pciids.h +++ b/include/drm/i915_pciids.h @@ -718,7 +718,11 @@ INTEL_VGA_DEVICE(0x56A5, info), \ INTEL_VGA_DEVICE(0x56A6, info), \ INTEL_VGA_DEVICE(0x56B0, info), \ - INTEL_VGA_DEVICE(0x56B1, info) + INTEL_VGA_DEVICE(0x56B1, info), \ + INTEL_VGA_DEVICE(0x56BA, info), \ + INTEL_VGA_DEVICE(0x56BB, info), \ + INTEL_VGA_DEVICE(0x56BC, info), \ + INTEL_VGA_DEVICE(0x56BD, info) #define INTEL_DG2_G12_IDS(info) \ INTEL_VGA_DEVICE(0x5696, info), \