Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
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 2/3] lib: Add Crescent Island Support
Date: Thu, 06 Nov 2025 11:47:01 -0800	[thread overview]
Message-ID: <87tsz7djuy.wl-ashutosh.dixit@intel.com> (raw)
In-Reply-To: <20251106153419.1741989-3-shekhar.chauhan@intel.com>

On Thu, 06 Nov 2025 07:34:18 -0800, Shekhar Chauhan wrote:
>
> From: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
>
> Add device info for Crescent Island (CRI).
>
> v2: Fix indentation/spacing for CrescentIsland in lib/intel_chipset.h
> (Kamil)
>
> Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan@intel.com>
> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
> ---
>  lib/intel_chipset.h     |  2 ++
>  lib/intel_device_info.c | 10 ++++++++++
>  2 files changed, 12 insertions(+)
>
> diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
> index 70ea78464..7739f4a84 100644
> --- a/lib/intel_chipset.h
> +++ b/lib/intel_chipset.h
> @@ -94,6 +94,7 @@ struct intel_device_info {
>	bool is_battlemage : 1;
>	bool is_pantherlake : 1;
>	bool is_novalake: 1;
> +	bool is_crescentisland: 1;
>
>	const struct intel_cmds_info *cmds_info;
>	const char *codename;
> @@ -212,6 +213,7 @@ void intel_check_pch(void);
>  #define IS_BATTLEMAGE(devid)	(intel_get_device_info(devid)->is_battlemage)
>  #define IS_PANTHERLAKE(devid)	(intel_get_device_info(devid)->is_pantherlake)
>  #define IS_NOVALAKE(devid)	(intel_get_device_info(devid)->is_novalake)
> +#define IS_CRESCENTISLAND(devid)	(intel_get_device_info(devid)->is_crescentisland)
>
>  #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 fe452d50f..bb36c6968 100644
> --- a/lib/intel_device_info.c
> +++ b/lib/intel_device_info.c
> @@ -549,6 +549,14 @@ static const struct intel_device_info intel_novalake_info = {
>	.cmds_info = &xe2_cmds_info,
>  };
>
> +static const struct intel_device_info intel_crescentisland_info = {
> +	.graphics_ver = 35,
> +	.graphics_rel = 11,
> +	.display_ver = 0,

Also:
       .has_oam = true,
       .is_crescentisland = true,

> +	.codename = "crescentisland",
> +	.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, \
> @@ -669,6 +677,8 @@ static const struct pci_id_match intel_device_match[] = {
>
>	INTEL_NVLS_IDS(INTEL_PCI_ID_INIT, &intel_novalake_info),
>
> +	INTEL_CRI_IDS(INTEL_PCI_ID_INIT, &intel_crescentisland_info),
> +
>	INTEL_PCI_ID_INIT(PCI_MATCH_ANY, &intel_generic_info),
>  };
>
> --
> 2.51.1
>

  reply	other threads:[~2025-11-06 19:47 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
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 [this message]
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=87tsz7djuy.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox