From patchwork Thu Aug 20 08:46:42 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adam Miszczak X-Patchwork-Id: 11725877 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 E5014618 for ; Thu, 20 Aug 2020 08:50:55 +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 CDA1C206FA for ; Thu, 20 Aug 2020 08:50:55 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org CDA1C206FA Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.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 3FD406E91E; Thu, 20 Aug 2020 08:50:52 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by gabe.freedesktop.org (Postfix) with ESMTPS id AA69D6E91E for ; Thu, 20 Aug 2020 08:50:50 +0000 (UTC) IronPort-SDR: rXQN5wBOvPNcjXXvpLusUhItvgcwe4havmVTloA5GZc9bTchfNs1zkqn/NEnnJyMR0sN/SDnhv J/DTpGcDHUPA== X-IronPort-AV: E=McAfee;i="6000,8403,9718"; a="154527054" X-IronPort-AV: E=Sophos;i="5.76,332,1592895600"; d="scan'208";a="154527054" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Aug 2020 01:50:49 -0700 IronPort-SDR: OyP0G+J/s8oJFsyXEmu6zYJr4SU+3QQUSP/0DYxya4UFlRrfdKIwWF7YZh/kGwEOd8xkgL8lNa lNjjfIAG1OOg== X-IronPort-AV: E=Sophos;i="5.76,332,1592895600"; d="scan'208";a="441898338" Received: from amiszcza-desk-dev.igk.intel.com (HELO localhost) ([10.237.130.129]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Aug 2020 01:50:46 -0700 From: Adam Miszczak To: dri-devel@lists.freedesktop.org Subject: [PATCH libdrm] intel: sync i915_pciids.h with kernel Date: Thu, 20 Aug 2020 10:46:42 +0200 Message-Id: <20200820084642.26562-1-adam.miszczak@linux.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?= , Adam Miszczak Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Add DG1 and clean-up VLV PCI IDs. Align with kernel commits: f2bde2546b81 ("drm/i915: Remove dubious Valleyview PCI IDs") fd38cdb81105 ("drm/i915/dg1: Add DG1 PCI IDs") Signed-off-by: Adam Miszczak Cc: José Roberto de Souza Reviewed-by: José Roberto de Souza --- intel/i915_pciids.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/intel/i915_pciids.h b/intel/i915_pciids.h index d6cb2899..8e7ae30e 100644 --- a/intel/i915_pciids.h +++ b/intel/i915_pciids.h @@ -258,9 +258,7 @@ INTEL_VGA_DEVICE(0x0f30, info), \ INTEL_VGA_DEVICE(0x0f31, info), \ INTEL_VGA_DEVICE(0x0f32, info), \ - INTEL_VGA_DEVICE(0x0f33, info), \ - INTEL_VGA_DEVICE(0x0157, info), \ - INTEL_VGA_DEVICE(0x0155, info) + INTEL_VGA_DEVICE(0x0f33, info) #define INTEL_BDW_ULT_GT1_IDS(info) \ INTEL_VGA_DEVICE(0x1606, info), /* GT1 ULT */ \ @@ -618,4 +616,8 @@ INTEL_VGA_DEVICE(0x4C90, info), \ INTEL_VGA_DEVICE(0x4C9A, info) +/* DG1 */ +#define INTEL_DG1_IDS(info) \ + INTEL_VGA_DEVICE(0x4905, info) + #endif /* _I915_PCIIDS_H */