From patchwork Wed Jul 8 17:46:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: "Souza, Jose" X-Patchwork-Id: 11652005 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6DBE1912 for ; Wed, 8 Jul 2020 17:48:26 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 56C0F206E2 for ; Wed, 8 Jul 2020 17:48:26 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 56C0F206E2 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 26CBB6E591; Wed, 8 Jul 2020 17:48:23 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id A047F6E591 for ; Wed, 8 Jul 2020 17:48:21 +0000 (UTC) IronPort-SDR: PsxWMm2ZcKt4e+DCbXIHHZPVxyk1RTO978JOLfVcK4SpYgvt6YBjMPmPmlDih8I2g5l5PCNgMk yVi5YhuukD0g== X-IronPort-AV: E=McAfee;i="6000,8403,9676"; a="145973019" X-IronPort-AV: E=Sophos;i="5.75,328,1589266800"; d="scan'208";a="145973019" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jul 2020 10:44:52 -0700 IronPort-SDR: uPB0YhA7LcEx5IHrgX2ow0OsKvHIPaM4rFI3w3LMssUKJgO2p20PmCFKO0XUu0gA92UPLt6tQs W3jLnxTdNY+A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,328,1589266800"; d="scan'208";a="283869843" Received: from yota-mobl2.gar.corp.intel.com (HELO josouza-MOBL2.amr.corp.intel.com) ([10.251.141.141]) by orsmga006.jf.intel.com with ESMTP; 08 Jul 2020 10:44:52 -0700 From: =?utf-8?q?Jos=C3=A9_Roberto_de_Souza?= To: dri-devel@lists.freedesktop.org Subject: [PATCH] intel: sync i915_pciids.h with kernel Date: Wed, 8 Jul 2020 10:46:32 -0700 Message-Id: <20200708174632.26487-1-jose.souza@intel.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?utf-8?q?Jos=C3=A9_Roberto_de_Souza?= Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Two new patches landed in kernel adding new PCI ids: 123f62de419f ("drm/i915/rkl: Add RKL platform info and PCI ids") 52797a8e8529 ("drm/i915/ehl: Add new PCI ids") Cc: Matt Roper Signed-off-by: José Roberto de Souza Reviewed-by: Matt Roper --- intel/i915_pciids.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/intel/i915_pciids.h b/intel/i915_pciids.h index 662d8351..d6cb2899 100644 --- a/intel/i915_pciids.h +++ b/intel/i915_pciids.h @@ -588,7 +588,11 @@ INTEL_VGA_DEVICE(0x4551, info), \ INTEL_VGA_DEVICE(0x4541, info), \ INTEL_VGA_DEVICE(0x4E71, info), \ + INTEL_VGA_DEVICE(0x4557, info), \ + INTEL_VGA_DEVICE(0x4555, info), \ INTEL_VGA_DEVICE(0x4E61, info), \ + INTEL_VGA_DEVICE(0x4E57, info), \ + INTEL_VGA_DEVICE(0x4E55, info), \ INTEL_VGA_DEVICE(0x4E51, info) /* TGL */ @@ -605,4 +609,13 @@ INTEL_VGA_DEVICE(0x9AD9, info), \ INTEL_VGA_DEVICE(0x9AF8, info) +/* RKL */ +#define INTEL_RKL_IDS(info) \ + INTEL_VGA_DEVICE(0x4C80, info), \ + INTEL_VGA_DEVICE(0x4C8A, info), \ + INTEL_VGA_DEVICE(0x4C8B, info), \ + INTEL_VGA_DEVICE(0x4C8C, info), \ + INTEL_VGA_DEVICE(0x4C90, info), \ + INTEL_VGA_DEVICE(0x4C9A, info) + #endif /* _I915_PCIIDS_H */