All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rodrigo Vivi <rodrigo.vivi@intel.com>
To: Gustavo Sousa <gustavo.sousa@intel.com>
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>,
	<intel-xe@lists.freedesktop.org>, <saurabhg.gupta@intel.com>,
	<alex.zuo@intel.com>, <tilak.tirumalesh.tangudu@intel.com>,
	<matthew.d.roper@intel.com>, <michal.wajdeczko@intel.com>
Subject: Re: [PATCH] drm/xe: Extend wa_13012615864 to additional Xe2 and Xe3 platforms
Date: Fri, 1 Aug 2025 16:34:39 -0400	[thread overview]
Message-ID: <aI0k35AlRb8rVtgC@intel.com> (raw)
In-Reply-To: <175406632667.2044.15653899817314879579@intel.com>

On Fri, Aug 01, 2025 at 01:38:46PM -0300, Gustavo Sousa wrote:
> Quoting Jonathan Cavitt (2025-07-31 19:01:44-03:00)
> >From: Tangudu Tilak Tirumalesh <tilak.tirumalesh.tangudu@intel.com>
> >
> >Extend WA 13012615864 to Graphics Versions 20.01,20.02,20.04
> >and 30.03.
> >
> >Signed-off-by: Tangudu Tilak Tirumalesh <tilak.tirumalesh.tangudu@intel.com>
> >Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> >Cc: Matt Roper <matthew.d.roper@intel.com>
> >Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> >Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> 
> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

pushed to drm-xe-next

> 
> >---
> > drivers/gpu/drm/xe/xe_wa.c | 13 ++++++++++++-
> > 1 file changed, 12 insertions(+), 1 deletion(-)
> >
> >diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
> >index 22a98600fd8f..535067e7fb0c 100644
> >--- a/drivers/gpu/drm/xe/xe_wa.c
> >+++ b/drivers/gpu/drm/xe/xe_wa.c
> >@@ -538,6 +538,11 @@ static const struct xe_rtp_entry_sr engine_was[] = {
> >           XE_RTP_RULES(GRAPHICS_VERSION(2004), ENGINE_CLASS(RENDER)),
> >           XE_RTP_ACTIONS(SET(HALF_SLICE_CHICKEN7, CLEAR_OPTIMIZATION_DISABLE))
> >         },
> >+        { XE_RTP_NAME("13012615864"),
> >+          XE_RTP_RULES(GRAPHICS_VERSION(2004),
> >+                       FUNC(xe_rtp_match_first_render_or_compute)),
> >+          XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, RES_CHK_SPR_DIS))
> >+        },
> > 
> >         /* Xe2_HPG */
> > 
> >@@ -602,6 +607,11 @@ static const struct xe_rtp_entry_sr engine_was[] = {
> >                        FUNC(xe_rtp_match_first_render_or_compute)),
> >           XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, STK_ID_RESTRICT))
> >         },
> >+        { XE_RTP_NAME("13012615864"),
> >+          XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2002),
> >+                       FUNC(xe_rtp_match_first_render_or_compute)),
> >+          XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, RES_CHK_SPR_DIS))
> >+        },
> > 
> >         /* Xe2_LPM */
> > 
> >@@ -647,7 +657,8 @@ static const struct xe_rtp_entry_sr engine_was[] = {
> >           XE_RTP_ACTIONS(SET(TDL_CHICKEN, QID_WAIT_FOR_THREAD_NOT_RUN_DISABLE))
> >         },
> >         { XE_RTP_NAME("13012615864"),
> >-          XE_RTP_RULES(GRAPHICS_VERSION_RANGE(3000, 3001),
> >+          XE_RTP_RULES(GRAPHICS_VERSION_RANGE(3000, 3001), OR,
> >+                       GRAPHICS_VERSION(3003),
> >                        FUNC(xe_rtp_match_first_render_or_compute)),
> >           XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, RES_CHK_SPR_DIS))
> >         },
> >-- 
> >2.43.0
> >

  reply	other threads:[~2025-08-01 20:35 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-31 22:01 [PATCH] drm/xe: Extend wa_13012615864 to additional Xe2 and Xe3 platforms Jonathan Cavitt
2025-08-01  1:14 ` ✓ CI.KUnit: success for drm/xe: Extend wa_13012615864 to additional Xe2 and Xe3 platforms (rev2) Patchwork
2025-08-01  1:52 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-01  4:07 ` ✗ Xe.CI.Full: failure " Patchwork
2025-08-01 16:38 ` [PATCH] drm/xe: Extend wa_13012615864 to additional Xe2 and Xe3 platforms Gustavo Sousa
2025-08-01 20:34   ` Rodrigo Vivi [this message]
2025-09-04 18:59 ` Matt Roper
2025-09-04 19:25   ` Lucas De Marchi
2025-09-04 19:51   ` Gustavo Sousa
  -- strict thread matches above, loose matches on Subject: below --
2025-07-31 15:29 Jonathan Cavitt

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=aI0k35AlRb8rVtgC@intel.com \
    --to=rodrigo.vivi@intel.com \
    --cc=alex.zuo@intel.com \
    --cc=gustavo.sousa@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=jonathan.cavitt@intel.com \
    --cc=matthew.d.roper@intel.com \
    --cc=michal.wajdeczko@intel.com \
    --cc=saurabhg.gupta@intel.com \
    --cc=tilak.tirumalesh.tangudu@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.