From patchwork Wed Jun 21 16:34:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Srivatsa, Anusha" X-Patchwork-Id: 9802269 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id C12B660329 for ; Wed, 21 Jun 2017 16:35:07 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B39C422638 for ; Wed, 21 Jun 2017 16:35:07 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A83E32862B; Wed, 21 Jun 2017 16:35:07 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 74A6122638 for ; Wed, 21 Jun 2017 16:35:07 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 469626E04B; Wed, 21 Jun 2017 16:35:06 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id 2C63C6E02D for ; Wed, 21 Jun 2017 16:35:05 +0000 (UTC) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga105.jf.intel.com with ESMTP; 21 Jun 2017 09:35:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,369,1493708400"; d="scan'208";a="100168253" Received: from anusha.jf.intel.com ([10.54.75.168]) by orsmga004.jf.intel.com with ESMTP; 21 Jun 2017 09:35:05 -0700 From: Anusha Srivatsa To: intel-gfx@lists.freedesktop.org Date: Wed, 21 Jun 2017 09:34:58 -0700 Message-Id: <1498062899-10659-2-git-send-email-anusha.srivatsa@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1498062899-10659-1-git-send-email-anusha.srivatsa@intel.com> References: <1498062899-10659-1-git-send-email-anusha.srivatsa@intel.com> Cc: Rodrigo Vivi Subject: [Intel-gfx] [i-g-t 2/3] lib/cfl: Add PCI IDs to H SKU in CFl X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Virus-Scanned: ClamAV using ClamSMTP From: anushasr Follow the spec and add the ID for H SKU in CFL. v2: Update IDs. Cc: Rodrigo Vivi Signed-off-by: Anusha Srivatsa Reviewed-by: Clint Taylor --- lib/i915_pciids.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h index 02f43d9..c319e37 100644 --- a/lib/i915_pciids.h +++ b/lib/i915_pciids.h @@ -341,7 +341,13 @@ INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \ INTEL_VGA_DEVICE(0x3E96, info) /* SRV GT2 */ + +#define INTEL_CFL_H_IDS(info) \ + INTEL_VGA_DEVICE(0x3E9B, info), /* Halo GT2 */ \ + INTEL_VGA_DEVICE(0x3E94, info) /* Halo GT2 */ + #define INTEL_CFL_IDS(info) \ - INTEL_CFL_S_IDS(info) + INTEL_CFL_S_IDS(info), \ + INTEL_CFL_H_IDS(info) #endif /* _I915_PCIIDS_H */