From: Jani Nikula <jani.nikula@linux.intel.com>
To: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>,
intel-xe@lists.freedesktop.org
Cc: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
Subject: Re: [PATCH 2/3] drm/i915/display: Add definition for wcl as subplatform
Date: Fri, 12 Sep 2025 11:21:35 +0300 [thread overview]
Message-ID: <84fc10ec3b82b3436b521811589067ad0850eacd@intel.com> (raw)
In-Reply-To: <20250911210514.389014-3-dnyaneshwar.bhadane@intel.com>
On Fri, 12 Sep 2025, Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com> wrote:
> Update the device definition structs for adding wildcat lake as
> subplatfrom of pantherlake.
>
> Signed-off-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display_device.c | 13 +++++++++++++
> drivers/gpu/drm/i915/display/intel_display_device.h | 4 +++-
> 2 files changed, 16 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index 65f0efc35bb7..1b9c921290e1 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -1379,6 +1379,11 @@ static const u16 mtl_u_ids[] = {
> 0
> };
>
> +static const u16 wcl_ids[] = {
> + INTEL_WCL_IDS(ID),
> + 0
> +};
> +
> /*
> * Do not initialize the .info member of the platform desc for GMD ID based
> * platforms. Their display will be probed automatically based on the IP version
> @@ -1406,6 +1411,13 @@ static const struct platform_desc bmg_desc = {
>
> static const struct platform_desc ptl_desc = {
> PLATFORM(pantherlake),
> + .subplatforms = (const struct subplatform_desc[]) {
> + {
> + SUBPLATFORM(pantherlake, wildcatlake),
> + .pciidlist = wcl_ids,
> + },
> + {},
> + }
> };
>
> __diag_pop();
> @@ -1482,6 +1494,7 @@ static const struct {
> INTEL_LNL_IDS(INTEL_DISPLAY_DEVICE, &lnl_desc),
> INTEL_BMG_IDS(INTEL_DISPLAY_DEVICE, &bmg_desc),
> INTEL_PTL_IDS(INTEL_DISPLAY_DEVICE, &ptl_desc),
> + INTEL_WCL_IDS(INTEL_DISPLAY_DEVICE, &ptl_desc),
Right, so this part belongs in the previous patch. Otherwise the series
breaks bisect.
> };
>
> static const struct {
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 6e87b763fe7c..dcc010caa423 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -101,7 +101,9 @@ struct pci_dev;
> /* Display ver 14.1 (based on GMD ID) */ \
> func(battlemage) \
> /* Display ver 30 (based on GMD ID) */ \
> - func(pantherlake)
> + func(pantherlake) \
> + func(pantherlake_wildcatlake)
> +
>
> #define __MEMBER(name) unsigned long name:1;
> #define __COUNT(x) 1 +
--
Jani Nikula, Intel
next prev parent reply other threads:[~2025-09-12 8:21 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-11 21:05 [PATCH 0/3] Add WCL as subplatform from PTL Dnyaneshwar Bhadane
2025-09-11 21:05 ` [PATCH 1/3] drm/pcids: Split PTL pciids group to make wcl subplatform Dnyaneshwar Bhadane
2025-09-12 8:19 ` Jani Nikula
2025-09-11 21:05 ` [PATCH 2/3] drm/i915/display: Add definition for wcl as subplatform Dnyaneshwar Bhadane
2025-09-12 8:21 ` Jani Nikula [this message]
2025-09-12 10:02 ` Bhadane, Dnyaneshwar
2025-09-11 21:05 ` [PATCH 3/3] drm/i915/xe3: Restrict PTL intel_encoder_is_c10phy() to only PHY A Dnyaneshwar Bhadane
2025-09-11 21:11 ` ✗ CI.checkpatch: warning for Add WCL as subplatform from PTL Patchwork
2025-09-11 21:12 ` ✓ CI.KUnit: success " Patchwork
2025-09-11 21:27 ` ✗ CI.checksparse: warning " Patchwork
2025-09-11 21:45 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-09-12 3:55 ` ✗ Xe.CI.Full: " Patchwork
2025-09-19 9:59 ` [PATCH v2 0/3] " Dnyaneshwar Bhadane
2025-09-19 9:59 ` [PATCH v2 1/3] drm/pcids: Split PTL pciids group to make wcl subplatform Dnyaneshwar Bhadane
2025-09-19 9:59 ` [PATCH v2 2/3] drm/i915/display: Add definition for wcl as subplatform Dnyaneshwar Bhadane
2025-09-19 9:59 ` [PATCH v2 3/3] drm/i915/xe3: Restrict PTL intel_encoder_is_c10phy() to only PHY A Dnyaneshwar Bhadane
2025-09-19 19:59 ` [PATCH v2 0/3] Add WCL as subplatform from PTL Gustavo Sousa
2025-09-19 12:12 ` ✓ i915.CI.BAT: success for series starting with [v2,1/3] drm/pcids: Split PTL pciids group to make wcl subplatform Patchwork
2025-09-20 5:37 ` ✗ i915.CI.Full: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-09-11 20:55 [PATCH 0/3] Add WCL as subplatform from PTL Dnyaneshwar Bhadane
2025-09-11 20:55 ` [PATCH 2/3] drm/i915/display: Add definition for wcl as subplatform Dnyaneshwar Bhadane
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=84fc10ec3b82b3436b521811589067ad0850eacd@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=dnyaneshwar.bhadane@intel.com \
--cc=intel-xe@lists.freedesktop.org \
/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.