From: "Dixit, Ashutosh" <ashutosh.dixit@intel.com>
To: Shekhar Chauhan <shekhar.chauhan@intel.com>
Cc: igt-dev@lists.freedesktop.org, lucas.demarchi@intel.com,
balasubramani.vivekanandan@intel.com,
kamil.konieczny@linux.intel.com
Subject: Re: [PATCH i-g-t v2 1/3] lib: Add NVL-S support
Date: Thu, 13 Nov 2025 21:43:33 -0800 [thread overview]
Message-ID: <87zf8ptbi2.wl-ashutosh.dixit@intel.com> (raw)
In-Reply-To: <20251106153419.1741989-2-shekhar.chauhan@intel.com>
On Thu, 06 Nov 2025 07:34:17 -0800, Shekhar Chauhan wrote:
>
> Add NVL-S device info.
>
> v2: Fix indentation/spacing for PantherLake and Novalake in
> lib/intel_chipset.h (Kamil)
>
> Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com>
> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
> ---
> lib/intel_chipset.h | 4 +++-
> lib/intel_device_info.c | 12 ++++++++++++
> 2 files changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
> index 2f6bf788a..70ea78464 100644
> --- a/lib/intel_chipset.h
> +++ b/lib/intel_chipset.h
> @@ -93,6 +93,7 @@ struct intel_device_info {
> bool is_lunarlake : 1;
> bool is_battlemage : 1;
> bool is_pantherlake : 1;
> + bool is_novalake: 1;
Maybe in this patch novalake should be changed to novalake_s everywhere?
>
> const struct intel_cmds_info *cmds_info;
> const char *codename;
> @@ -209,7 +210,8 @@ void intel_check_pch(void);
> #define IS_PONTEVECCHIO(devid) (intel_get_device_info(devid)->is_pontevecchio)
> #define IS_LUNARLAKE(devid) (intel_get_device_info(devid)->is_lunarlake)
> #define IS_BATTLEMAGE(devid) (intel_get_device_info(devid)->is_battlemage)
> -#define IS_PANTHERLAKE(devid) (intel_get_device_info(devid)->is_pantherlake)
> +#define IS_PANTHERLAKE(devid) (intel_get_device_info(devid)->is_pantherlake)
> +#define IS_NOVALAKE(devid) (intel_get_device_info(devid)->is_novalake)
>
> #define IS_GEN(devid, x) (intel_get_device_info(devid)->graphics_ver == x)
>
> diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
> index a853f9ab4..fe452d50f 100644
> --- a/lib/intel_device_info.c
> +++ b/lib/intel_device_info.c
> @@ -539,6 +539,16 @@ static const struct intel_device_info intel_pantherlake_info = {
> .cmds_info = &xe2_cmds_info,
> };
>
> +static const struct intel_device_info intel_novalake_info = {
> + .graphics_ver = 30,
> + .graphics_rel = 04,
> + .display_ver = 35,
> + .has_4tile = true,
> + .is_novalake = true,
> + .codename = "novalake",
> + .cmds_info = &xe2_cmds_info,
> +};
> +
> #define INTEL_PCI_ID_INIT(_id, _info) { \
> .vendor_id = 0x8086, .device_id = (_id), \
> .subvendor_id = PCI_MATCH_ANY, .subdevice_id = PCI_MATCH_ANY, \
> @@ -657,6 +667,8 @@ static const struct pci_id_match intel_device_match[] = {
>
> INTEL_PTL_IDS(INTEL_PCI_ID_INIT, &intel_pantherlake_info),
>
> + INTEL_NVLS_IDS(INTEL_PCI_ID_INIT, &intel_novalake_info),
> +
> INTEL_PCI_ID_INIT(PCI_MATCH_ANY, &intel_generic_info),
> };
>
> --
> 2.51.1
>
next prev parent reply other threads:[~2025-11-14 5:43 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-06 15:34 [PATCH i-g-t v2 0/3] Introduce NVL-S and CRI platforms Shekhar Chauhan
2025-11-06 15:34 ` [PATCH i-g-t v2 1/3] lib: Add NVL-S support Shekhar Chauhan
2025-11-06 16:20 ` Kamil Konieczny
2025-11-07 0:37 ` Matt Roper
2025-11-07 11:07 ` Vodapalli, Ravi Kumar
2025-11-07 11:56 ` Shekhar Chauhan
2025-11-07 11:29 ` Kamil Konieczny
2025-11-14 5:43 ` Dixit, Ashutosh [this message]
2025-11-06 15:34 ` [PATCH i-g-t v2 2/3] lib: Add Crescent Island Support Shekhar Chauhan
2025-11-06 19:47 ` Dixit, Ashutosh
2025-11-06 15:34 ` [PATCH i-g-t v2 3/3] lib/intel_pat: Define pat indices for xe3p_xpc Shekhar Chauhan
2025-11-07 0:35 ` Matt Roper
2025-11-06 23:24 ` ✓ Xe.CI.BAT: success for Introduce NVL-S and CRI platforms (rev2) Patchwork
2025-11-06 23:49 ` ✓ i915.CI.BAT: " Patchwork
2025-11-07 17:34 ` ✗ i915.CI.Full: failure " Patchwork
2025-11-07 22:25 ` ✗ Xe.CI.Full: " Patchwork
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=87zf8ptbi2.wl-ashutosh.dixit@intel.com \
--to=ashutosh.dixit@intel.com \
--cc=balasubramani.vivekanandan@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@linux.intel.com \
--cc=lucas.demarchi@intel.com \
--cc=shekhar.chauhan@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.