From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by gabe.freedesktop.org (Postfix) with ESMTPS id 2E65E6E358 for ; Mon, 31 Aug 2020 22:20:33 +0000 (UTC) Date: Mon, 31 Aug 2020 15:20:32 -0700 Message-ID: <87imcyqwy7.wl-ashutosh.dixit@intel.com> From: "Dixit, Ashutosh" In-Reply-To: <20200831150951.357727-5-lionel.g.landwerlin@intel.com> References: <20200831150951.357727-1-lionel.g.landwerlin@intel.com> <20200831150951.357727-5-lionel.g.landwerlin@intel.com> MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Subject: Re: [igt-dev] [PATCH i-g-t v2 4/8] pciids/i915: break TGL into GT1/2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" To: Lionel Landwerlin Cc: igt-dev@lists.freedesktop.org List-ID: On Mon, 31 Aug 2020 08:09:47 -0700, Lionel Landwerlin wrote: > > Align with kernel commit: > d452bd091e168f ("drm/i915: break TGL pci-ids in GT 1 & 2") Reviewed-by: Ashutosh Dixit > Signed-off-by: Lionel Landwerlin > --- > lib/i915_pciids.h | 14 ++++++++++---- > lib/intel_device_info.c | 15 ++++++++++++--- > 2 files changed, 22 insertions(+), 7 deletions(-) > > diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h > index 8e7ae30e..7eeecb07 100644 > --- a/lib/i915_pciids.h > +++ b/lib/i915_pciids.h > @@ -594,19 +594,25 @@ > INTEL_VGA_DEVICE(0x4E51, info) > > /* TGL */ > -#define INTEL_TGL_12_IDS(info) \ > +#define INTEL_TGL_12_GT1_IDS(info) \ > + INTEL_VGA_DEVICE(0x9A60, info), \ > + INTEL_VGA_DEVICE(0x9A68, info), \ > + INTEL_VGA_DEVICE(0x9A70, info) > + > +#define INTEL_TGL_12_GT2_IDS(info) \ > INTEL_VGA_DEVICE(0x9A40, info), \ > INTEL_VGA_DEVICE(0x9A49, info), \ > INTEL_VGA_DEVICE(0x9A59, info), \ > - INTEL_VGA_DEVICE(0x9A60, info), \ > - INTEL_VGA_DEVICE(0x9A68, info), \ > - INTEL_VGA_DEVICE(0x9A70, info), \ > INTEL_VGA_DEVICE(0x9A78, info), \ > INTEL_VGA_DEVICE(0x9AC0, info), \ > INTEL_VGA_DEVICE(0x9AC9, info), \ > INTEL_VGA_DEVICE(0x9AD9, info), \ > INTEL_VGA_DEVICE(0x9AF8, info) > > +#define INTEL_TGL_12_IDS(info) \ > + INTEL_TGL_12_GT1_IDS(info), \ > + INTEL_TGL_12_GT2_IDS(info) > + > /* RKL */ > #define INTEL_RKL_IDS(info) \ > INTEL_VGA_DEVICE(0x4C80, info), \ > diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c > index d5f70156..e1132d9c 100644 > --- a/lib/intel_device_info.c > +++ b/lib/intel_device_info.c > @@ -315,10 +315,18 @@ static const struct intel_device_info intel_elkhartlake_info = { > .codename = "elkhartlake" > }; > > -static const struct intel_device_info intel_tigerlake_info = { > +static const struct intel_device_info intel_tigerlake_gt1_info = { > .gen = BIT(11), > .is_tigerlake = true, > - .codename = "tigerlake" > + .codename = "tigerlake", > + .gt = 1, > +}; > + > +static const struct intel_device_info intel_tigerlake_gt2_info = { > + .gen = BIT(11), > + .is_tigerlake = true, > + .codename = "tigerlake", > + .gt = 2, > }; > > static const struct intel_device_info intel_rocketlake_info = { > @@ -416,7 +424,8 @@ static const struct pci_id_match intel_device_match[] = { > > INTEL_EHL_IDS(&intel_elkhartlake_info), > > - INTEL_TGL_12_IDS(&intel_tigerlake_info), > + INTEL_TGL_12_GT1_IDS(&intel_tigerlake_gt1_info), > + INTEL_TGL_12_GT2_IDS(&intel_tigerlake_gt2_info), > INTEL_RKL_IDS(&intel_rocketlake_info), > > INTEL_DG1_IDS(&intel_dg1_info), > -- > 2.28.0 > > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev