> -----Original Message----- > From: Intel-xe <[email protected]> On Behalf Of Gustavo > Sousa > Sent: Thursday, 22 January 2026 14.37 > To: [email protected]; [email protected] > Cc: Sousa, Gustavo <[email protected]> > Subject: [PATCH] drm/i915/cdclk: Extend Wa_13012396614 to Xe3p_LPD > > Xe3p_LPD also needs Wa_13012396614. Update the conditions for that > workaround accordingly. >
Reviewed-by: Mika Kahola <[email protected]> > Signed-off-by: Gustavo Sousa <[email protected]> > --- > drivers/gpu/drm/i915/display/intel_display_wa.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.c > b/drivers/gpu/drm/i915/display/intel_display_wa.c > index 581d943b9bdc..4ff690124b33 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_wa.c > +++ b/drivers/gpu/drm/i915/display/intel_display_wa.c > @@ -63,7 +63,8 @@ bool __intel_display_wa(struct intel_display *display, enum > intel_display_wa wa, { > switch (wa) { > case INTEL_DISPLAY_WA_13012396614: > - return DISPLAY_VERx100(display) == 3000; > + return DISPLAY_VERx100(display) == 3000 || > + DISPLAY_VERx100(display) == 3500; > case INTEL_DISPLAY_WA_14011503117: > return DISPLAY_VER(display) == 13; > case INTEL_DISPLAY_WA_14025769978: > > --- > base-commit: 75950b1567cb40a67e93cb3912e023219745ff60 > change-id: 20260122-wa_13012396614-xe3p_lpd-d5881ab71274 > > Best regards, > -- > Gustavo Sousa <[email protected]>
