From: "Pottumuttu, Sai Teja" <sai.teja.pottumuttu@intel.com>
To: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>,
<intel-xe@lists.freedesktop.org>
Cc: <intel-gfx@lists.freedesktop.org>,
Matt Roper <matthew.d.roper@intel.com>
Subject: Re: [PATCH v4 2/9] drm/xe/xe3: Add support for graphics IP version 30.03
Date: Thu, 12 Jun 2025 12:20:05 +0530 [thread overview]
Message-ID: <142f581a-42e1-4e34-a1d4-e15e8970d634@intel.com> (raw)
In-Reply-To: <20250611134431.2761487-3-dnyaneshwar.bhadane@intel.com>
On 11-06-2025 19:14, Dnyaneshwar Bhadane wrote:
> From: Matt Roper <matthew.d.roper@intel.com>
>
> Graphics version 30.03 should be treated the same as other Xe3 IP, but
> will have a slightly different set of workarounds.
>
> -v2: Merge and extend the WA onto existing entry (Bala)
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
> ---
> drivers/gpu/drm/xe/xe_pci.c | 1 +
> drivers/gpu/drm/xe/xe_wa.c | 2 +-
> drivers/gpu/drm/xe/xe_wa_oob.rules | 7 ++++---
> 3 files changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
> index b5559800db7a..8824a8016b1c 100644
> --- a/drivers/gpu/drm/xe/xe_pci.c
> +++ b/drivers/gpu/drm/xe/xe_pci.c
> @@ -183,6 +183,7 @@ static const struct xe_ip graphics_ips[] = {
> { 2004, "Xe2_LPG", &graphics_xe2 },
> { 3000, "Xe3_LPG", &graphics_xe2 },
> { 3001, "Xe3_LPG", &graphics_xe2 },
> + { 3003, "Xe3_LPG", &graphics_xe2 },
> };
>
> /* Pre-GMDID Media IPs */
> diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
> index 67196baa4249..8693d098aa9b 100644
> --- a/drivers/gpu/drm/xe/xe_wa.c
> +++ b/drivers/gpu/drm/xe/xe_wa.c
> @@ -609,7 +609,7 @@ static const struct xe_rtp_entry_sr engine_was[] = {
> /* Xe3_LPG */
>
> { XE_RTP_NAME("14021402888"),
> - XE_RTP_RULES(GRAPHICS_VERSION_RANGE(3000, 3001),
> + XE_RTP_RULES(GRAPHICS_VERSION_RANGE(3000, 3003),
> FUNC(xe_rtp_match_first_render_or_compute)),
> XE_RTP_ACTIONS(SET(HALF_SLICE_CHICKEN7, CLEAR_OPTIMIZATION_DISABLE))
> },
> diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules b/drivers/gpu/drm/xe/xe_wa_oob.rules
> index 9efc5accd43d..5c0d8b720946 100644
> --- a/drivers/gpu/drm/xe/xe_wa_oob.rules
> +++ b/drivers/gpu/drm/xe/xe_wa_oob.rules
> @@ -32,10 +32,10 @@
> GRAPHICS_VERSION(3001)
> 14022293748 GRAPHICS_VERSION(2001)
> GRAPHICS_VERSION(2004)
> - GRAPHICS_VERSION_RANGE(3000, 3001)
> + GRAPHICS_VERSION_RANGE(3000, 3003)
> 22019794406 GRAPHICS_VERSION(2001)
> GRAPHICS_VERSION(2004)
> - GRAPHICS_VERSION_RANGE(3000, 3001)
> + GRAPHICS_VERSION_RANGE(3000, 3003)
> 22019338487 MEDIA_VERSION(2000)
> GRAPHICS_VERSION(2001)
> MEDIA_VERSION(3000), MEDIA_STEP(A0, B0), FUNC(xe_rtp_match_not_sriov_vf)
> @@ -57,5 +57,6 @@ no_media_l3 MEDIA_VERSION(3000)
> GRAPHICS_VERSION(1260), GRAPHICS_STEP(A0, B0)
> 16023105232 GRAPHICS_VERSION_RANGE(2001, 3001)
> MEDIA_VERSION_RANGE(1301, 3000)
> -16026508708 GRAPHICS_VERSION_RANGE(1200, 3001)
> + GRAPHICS_VERSION(3003)
Can we merge GRAPHICS_VERSION(3003) here into
GRAPHICS_VERSION_RANGE(2001, 3001) above just like the other WAs?
Thanks,
Sai Teja
> +16026508708 GRAPHICS_VERSION_RANGE(1200, 3003)
> MEDIA_VERSION_RANGE(1300, 3000)
next prev parent reply other threads:[~2025-06-12 6:50 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-11 13:44 [PATCH v4 0/9] Add WildCat Lake support Dnyaneshwar Bhadane
2025-06-11 13:44 ` [PATCH v4 1/9] drm/i915/xe3lpd: Add support for display version 30.02 Dnyaneshwar Bhadane
2025-06-11 13:44 ` [PATCH v4 2/9] drm/xe/xe3: Add support for graphics IP version 30.03 Dnyaneshwar Bhadane
2025-06-12 6:50 ` Pottumuttu, Sai Teja [this message]
2025-06-12 16:30 ` Matt Roper
2025-06-12 17:13 ` Bhadane, Dnyaneshwar
2025-06-11 13:44 ` [PATCH v4 3/9] drm/xe/xe3: Add support for media IP version 30.02 Dnyaneshwar Bhadane
2025-06-11 13:44 ` [PATCH v4 4/9] drm/i915/xe3lpd: Update bandwidth parameters for display " Dnyaneshwar Bhadane
2025-06-11 13:44 ` [PATCH v4 5/9] drm/i915: Set max cdclk for display 30.02 Dnyaneshwar Bhadane
2025-06-11 13:44 ` [PATCH v4 6/9] drm/xe: Add Wildcat Lake device IDs to PTL list Dnyaneshwar Bhadane
2025-06-11 13:44 ` [PATCH v4 7/9] drm/i915/xe3lpd: Extend DMC path for display version 30.02 Dnyaneshwar Bhadane
2025-06-12 6:27 ` Pottumuttu, Sai Teja
2025-06-11 13:44 ` [PATCH v4 8/9] drm/i915/wcl: C10 phy connected to port A and B Dnyaneshwar Bhadane
2025-06-11 13:44 ` [PATCH v4 9/9] drm/i915/xe3lpd: Extend WA 16023981245 for display 30.02 Dnyaneshwar Bhadane
2025-06-11 13:51 ` ✓ CI.checkpatch: success for Add WildCat Lake support (rev4) Patchwork
2025-06-11 13:52 ` ✓ CI.KUnit: " Patchwork
2025-06-11 13:56 ` [PATCH v4 0/9] Add WildCat Lake support Jani Nikula
2025-06-11 14:03 ` ✓ CI.Build: success for Add WildCat Lake support (rev4) Patchwork
2025-06-11 14:05 ` ✓ CI.Hooks: " Patchwork
2025-06-11 14:07 ` ✗ CI.checksparse: warning " Patchwork
2025-06-11 16:07 ` ✗ Xe.CI.Full: failure " Patchwork
2025-06-11 16:44 ` ✗ Fi.CI.BUILD: failure for Add WildCat Lake support Patchwork
2025-06-12 17:17 ` Bhadane, Dnyaneshwar
2025-06-12 4:45 ` ✓ Xe.CI.BAT: success for Add WildCat Lake support (rev4) 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=142f581a-42e1-4e34-a1d4-e15e8970d634@intel.com \
--to=sai.teja.pottumuttu@intel.com \
--cc=dnyaneshwar.bhadane@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@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 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.