From: Wayne Boyer <wayne.boyer@intel.com>
To: Matt Roper <matthew.d.roper@intel.com>, <igt-dev@lists.freedesktop.org>
Subject: Re: [igt-dev] [i-g-t] lib: sync i915_pciids.h with kernel
Date: Wed, 3 Aug 2022 08:00:30 -0700 [thread overview]
Message-ID: <de34a62e-28c4-26dc-2039-b82b7c390f96@intel.com> (raw)
In-Reply-To: <20220727043452.4024839-1-matthew.d.roper@intel.com>
On 7/26/22 9:34 PM, Matt Roper wrote:
> This synchronizes with kernel commit
>
> 7835303982d1 ("drm/i915/mtl: Add MeteorLake PCI IDs")
> to bring in DG2/ATS-M and initial MTL PCI IDs.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Acked-by: Wayne Boyer <wayne.boyer@intel.com>
> ---
> lib/i915_pciids.h | 55 +++++++++++++++++++++++++++++++++++++++++
> lib/i915_pciids_local.h | 21 ----------------
> 2 files changed, 55 insertions(+), 21 deletions(-)
>
> diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
> index a7b5eea7..278031aa 100644
> --- a/lib/i915_pciids.h
> +++ b/lib/i915_pciids.h
> @@ -692,4 +692,59 @@
> INTEL_VGA_DEVICE(0xA7A8, info), \
> INTEL_VGA_DEVICE(0xA7A9, info)
>
> +/* DG2 */
> +#define INTEL_DG2_G10_IDS(info) \
> + INTEL_VGA_DEVICE(0x5690, info), \
> + INTEL_VGA_DEVICE(0x5691, info), \
> + INTEL_VGA_DEVICE(0x5692, info), \
> + INTEL_VGA_DEVICE(0x56A0, info), \
> + INTEL_VGA_DEVICE(0x56A1, info), \
> + INTEL_VGA_DEVICE(0x56A2, info)
> +
> +#define INTEL_DG2_G11_IDS(info) \
> + INTEL_VGA_DEVICE(0x5693, info), \
> + INTEL_VGA_DEVICE(0x5694, info), \
> + INTEL_VGA_DEVICE(0x5695, info), \
> + INTEL_VGA_DEVICE(0x5698, info), \
> + INTEL_VGA_DEVICE(0x56A5, info), \
> + INTEL_VGA_DEVICE(0x56A6, info), \
> + INTEL_VGA_DEVICE(0x56B0, info), \
> + INTEL_VGA_DEVICE(0x56B1, info)
> +
> +#define INTEL_DG2_G12_IDS(info) \
> + INTEL_VGA_DEVICE(0x5696, info), \
> + INTEL_VGA_DEVICE(0x5697, info), \
> + INTEL_VGA_DEVICE(0x56A3, info), \
> + INTEL_VGA_DEVICE(0x56A4, info), \
> + INTEL_VGA_DEVICE(0x56B2, info), \
> + INTEL_VGA_DEVICE(0x56B3, info)
> +
> +#define INTEL_DG2_IDS(info) \
> + INTEL_DG2_G10_IDS(info), \
> + INTEL_DG2_G11_IDS(info), \
> + INTEL_DG2_G12_IDS(info)
> +
> +#define INTEL_ATS_M150_IDS(info) \
> + INTEL_VGA_DEVICE(0x56C0, info)
> +
> +#define INTEL_ATS_M75_IDS(info) \
> + INTEL_VGA_DEVICE(0x56C1, info)
> +
> +#define INTEL_ATS_M_IDS(info) \
> + INTEL_ATS_M150_IDS(info), \
> + INTEL_ATS_M75_IDS(info)
> +/* MTL */
> +#define INTEL_MTL_M_IDS(info) \
> + INTEL_VGA_DEVICE(0x7D40, info), \
> + INTEL_VGA_DEVICE(0x7D60, info)
> +
> +#define INTEL_MTL_P_IDS(info) \
> + INTEL_VGA_DEVICE(0x7D45, info), \
> + INTEL_VGA_DEVICE(0x7D55, info), \
> + INTEL_VGA_DEVICE(0x7DD5, info)
> +
> +#define INTEL_MTL_IDS(info) \
> + INTEL_MTL_M_IDS(info), \
> + INTEL_MTL_P_IDS(info)
> +
> #endif /* _I915_PCIIDS_H */
> diff --git a/lib/i915_pciids_local.h b/lib/i915_pciids_local.h
> index b3ac70ff..91c26152 100644
> --- a/lib/i915_pciids_local.h
> +++ b/lib/i915_pciids_local.h
> @@ -7,25 +7,4 @@
>
> #include "i915_pciids.h"
>
> -/* DG2 */
> -#define INTEL_DG2_IDS(info) \
> - INTEL_VGA_DEVICE(0x56A0, info), \
> - INTEL_VGA_DEVICE(0x56A1, info), \
> - INTEL_VGA_DEVICE(0x56A2, info), \
> - INTEL_VGA_DEVICE(0x56A3, info), \
> - INTEL_VGA_DEVICE(0x56A4, info), \
> - INTEL_VGA_DEVICE(0x56A5, info), \
> - INTEL_VGA_DEVICE(0x56A6, info)
> -
> -/* ATS-M */
> -#define INTEL_ATS_M150_IDS(info) \
> - INTEL_VGA_DEVICE(0x56C0, info)
> -
> -#define INTEL_ATS_M75_IDS(info) \
> - INTEL_VGA_DEVICE(0x56C1, info)
> -
> -#define INTEL_ATS_M_IDS(info) \
> - INTEL_ATS_M150_IDS(info), \
> - INTEL_ATS_M75_IDS(info)
> -
> #endif /* _I915_PCIIDS_LOCAL_H */
--
--
Wayne Boyer
Graphics Software Engineer
VTT-OSGC Platform Enablement
next prev parent reply other threads:[~2022-08-03 15:00 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-27 4:34 [igt-dev] [PATCH i-g-t] lib: sync i915_pciids.h with kernel Matt Roper
2022-07-27 5:29 ` [igt-dev] ✓ Fi.CI.BAT: success for lib: sync i915_pciids.h with kernel (rev13) Patchwork
2022-07-27 7:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-08-03 15:00 ` Wayne Boyer [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-04-20 12:49 [igt-dev] [i-g-t] lib: sync i915_pciids.h with kernel Talla Raviteja Goud
2022-04-20 13:50 ` Petri Latvala
2021-12-16 11:15 Tejas Upadhyay
2021-12-16 11:27 ` Petri Latvala
2021-12-16 11:37 ` Surendrakumar Upadhyay, TejaskumarX
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=de34a62e-28c4-26dc-2039-b82b7c390f96@intel.com \
--to=wayne.boyer@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=matthew.d.roper@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox