* [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+
@ 2025-02-07 21:54 Ville Syrjala
2025-02-07 21:54 ` [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ Ville Syrjala
` (6 more replies)
0 siblings, 7 replies; 17+ messages in thread
From: Ville Syrjala @ 2025-02-07 21:54 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Something has changed in the hardware on LNL/BMG because
HDMI outputs no longer have the extra scanline offset.
I confirmed that MTL still has the old behaviour, which
is a bit weird since both MTL and BMG have display ver 14
vs. LNL is version 20. But can't argue with actual
hardware behaviour.
Ville Syrjälä (3):
drm/i915: Fix scanline_offset for LNL+ and BMG+
drm/i915: Reverse the scanline_offset if ladder
drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with
specific platform checks
drivers/gpu/drm/i915/display/intel_vblank.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
--
2.45.3
^ permalink raw reply [flat|nested] 17+ messages in thread* [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ 2025-02-07 21:54 [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Ville Syrjala @ 2025-02-07 21:54 ` Ville Syrjala 2025-02-20 9:30 ` Hogander, Jouni 2025-03-20 11:23 ` Shankar, Uma 2025-02-07 21:54 ` [PATCH 2/3] drm/i915: Reverse the scanline_offset if ladder Ville Syrjala ` (5 subsequent siblings) 6 siblings, 2 replies; 17+ messages in thread From: Ville Syrjala @ 2025-02-07 21:54 UTC (permalink / raw) To: intel-gfx; +Cc: intel-xe, stable From: Ville Syrjälä <ville.syrjala@linux.intel.com> Turns out LNL+ and BMG+ no longer have the weird extra scanline offset for HDMI outputs. Fix intel_crtc_scanline_offset() accordingly so that scanline evasion/etc. works correctly on HDMI outputs on these new platforms. Cc: stable@vger.kernel.org Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_vblank.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c index 4efd4f7d497a..7b240ce681a0 100644 --- a/drivers/gpu/drm/i915/display/intel_vblank.c +++ b/drivers/gpu/drm/i915/display/intel_vblank.c @@ -222,7 +222,9 @@ int intel_crtc_scanline_offset(const struct intel_crtc_state *crtc_state) * However if queried just before the start of vblank we'll get an * answer that's slightly in the future. */ - if (DISPLAY_VER(display) == 2) + if (DISPLAY_VER(display) >= 20 || display->platform.battlemage) + return 1; + else if (DISPLAY_VER(display) == 2) return -1; else if (HAS_DDI(display) && intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI)) return 2; -- 2.45.3 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ 2025-02-07 21:54 ` [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ Ville Syrjala @ 2025-02-20 9:30 ` Hogander, Jouni 2025-03-20 11:23 ` Shankar, Uma 1 sibling, 0 replies; 17+ messages in thread From: Hogander, Jouni @ 2025-02-20 9:30 UTC (permalink / raw) To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org Cc: intel-xe@lists.freedesktop.org, stable@vger.kernel.org On Fri, 2025-02-07 at 23:54 +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Turns out LNL+ and BMG+ no longer have the weird extra scanline > offset for HDMI outputs. Fix intel_crtc_scanline_offset() > accordingly so that scanline evasion/etc. works correctly on > HDMI outputs on these new platforms. > > Cc: stable@vger.kernel.org > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/i915/display/intel_vblank.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c > b/drivers/gpu/drm/i915/display/intel_vblank.c > index 4efd4f7d497a..7b240ce681a0 100644 > --- a/drivers/gpu/drm/i915/display/intel_vblank.c > +++ b/drivers/gpu/drm/i915/display/intel_vblank.c > @@ -222,7 +222,9 @@ int intel_crtc_scanline_offset(const struct > intel_crtc_state *crtc_state) > * However if queried just before the start of vblank we'll > get an > * answer that's slightly in the future. > */ > - if (DISPLAY_VER(display) == 2) > + if (DISPLAY_VER(display) >= 20 || display- > >platform.battlemage) Based on what Matt Roper wrote in response to cover letter you could consider changing this to: if (DISPLAY_VERx100(display) >= 1401) What do you think? BR, Jouni Högander > + return 1; > + else if (DISPLAY_VER(display) == 2) > return -1; > else if (HAS_DDI(display) && intel_crtc_has_type(crtc_state, > INTEL_OUTPUT_HDMI)) > return 2; ^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ 2025-02-07 21:54 ` [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ Ville Syrjala 2025-02-20 9:30 ` Hogander, Jouni @ 2025-03-20 11:23 ` Shankar, Uma 1 sibling, 0 replies; 17+ messages in thread From: Shankar, Uma @ 2025-03-20 11:23 UTC (permalink / raw) To: Ville Syrjala, intel-gfx@lists.freedesktop.org Cc: intel-xe@lists.freedesktop.org, stable@vger.kernel.org > -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Ville > Syrjala > Sent: Saturday, February 8, 2025 3:24 AM > To: intel-gfx@lists.freedesktop.org > Cc: intel-xe@lists.freedesktop.org; stable@vger.kernel.org > Subject: [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Turns out LNL+ and BMG+ no longer have the weird extra scanline offset for > HDMI outputs. Fix intel_crtc_scanline_offset() accordingly so that scanline > evasion/etc. works correctly on HDMI outputs on these new platforms. Interesting find, will try to follow up internally with hardware to explain the behaviour. Change Looks Good to me, however, would be good to align on the display version check as being discussed in the trailing mail thread. Reviewed-by: Uma Shankar <uma.shankar@intel.com> > Cc: stable@vger.kernel.org > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/i915/display/intel_vblank.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c > b/drivers/gpu/drm/i915/display/intel_vblank.c > index 4efd4f7d497a..7b240ce681a0 100644 > --- a/drivers/gpu/drm/i915/display/intel_vblank.c > +++ b/drivers/gpu/drm/i915/display/intel_vblank.c > @@ -222,7 +222,9 @@ int intel_crtc_scanline_offset(const struct > intel_crtc_state *crtc_state) > * However if queried just before the start of vblank we'll get an > * answer that's slightly in the future. > */ > - if (DISPLAY_VER(display) == 2) > + if (DISPLAY_VER(display) >= 20 || display->platform.battlemage) > + return 1; > + else if (DISPLAY_VER(display) == 2) > return -1; > else if (HAS_DDI(display) && intel_crtc_has_type(crtc_state, > INTEL_OUTPUT_HDMI)) > return 2; > -- > 2.45.3 ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 2/3] drm/i915: Reverse the scanline_offset if ladder 2025-02-07 21:54 [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Ville Syrjala 2025-02-07 21:54 ` [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ Ville Syrjala @ 2025-02-07 21:54 ` Ville Syrjala 2025-02-20 10:02 ` Hogander, Jouni 2025-02-07 21:54 ` [PATCH 3/3] drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with specific platform checks Ville Syrjala ` (4 subsequent siblings) 6 siblings, 1 reply; 17+ messages in thread From: Ville Syrjala @ 2025-02-07 21:54 UTC (permalink / raw) To: intel-gfx; +Cc: intel-xe From: Ville Syrjälä <ville.syrjala@linux.intel.com> Make intel_crtc_scanline_offset() a bit less confusing by fully reordering the if ladder to use the new->old platform order. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_vblank.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c index 7b240ce681a0..dd928d890e3a 100644 --- a/drivers/gpu/drm/i915/display/intel_vblank.c +++ b/drivers/gpu/drm/i915/display/intel_vblank.c @@ -224,12 +224,12 @@ int intel_crtc_scanline_offset(const struct intel_crtc_state *crtc_state) */ if (DISPLAY_VER(display) >= 20 || display->platform.battlemage) return 1; - else if (DISPLAY_VER(display) == 2) - return -1; else if (HAS_DDI(display) && intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI)) return 2; - else + else if (DISPLAY_VER(display) >= 3) return 1; + else + return -1; } /* -- 2.45.3 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH 2/3] drm/i915: Reverse the scanline_offset if ladder 2025-02-07 21:54 ` [PATCH 2/3] drm/i915: Reverse the scanline_offset if ladder Ville Syrjala @ 2025-02-20 10:02 ` Hogander, Jouni 0 siblings, 0 replies; 17+ messages in thread From: Hogander, Jouni @ 2025-02-20 10:02 UTC (permalink / raw) To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org Cc: intel-xe@lists.freedesktop.org On Fri, 2025-02-07 at 23:54 +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Make intel_crtc_scanline_offset() a bit less confusing by > fully reordering the if ladder to use the new->old platform > order. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/display/intel_vblank.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c > b/drivers/gpu/drm/i915/display/intel_vblank.c > index 7b240ce681a0..dd928d890e3a 100644 > --- a/drivers/gpu/drm/i915/display/intel_vblank.c > +++ b/drivers/gpu/drm/i915/display/intel_vblank.c > @@ -224,12 +224,12 @@ int intel_crtc_scanline_offset(const struct > intel_crtc_state *crtc_state) > */ > if (DISPLAY_VER(display) >= 20 || display- > >platform.battlemage) > return 1; > - else if (DISPLAY_VER(display) == 2) > - return -1; > else if (HAS_DDI(display) && intel_crtc_has_type(crtc_state, > INTEL_OUTPUT_HDMI)) > return 2; > - else > + else if (DISPLAY_VER(display) >= 3) > return 1; > + else > + return -1; > } > > /* ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 3/3] drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with specific platform checks 2025-02-07 21:54 [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Ville Syrjala 2025-02-07 21:54 ` [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ Ville Syrjala 2025-02-07 21:54 ` [PATCH 2/3] drm/i915: Reverse the scanline_offset if ladder Ville Syrjala @ 2025-02-07 21:54 ` Ville Syrjala 2025-02-20 9:58 ` Hogander, Jouni 2025-02-07 22:41 ` [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Lucas De Marchi ` (3 subsequent siblings) 6 siblings, 1 reply; 17+ messages in thread From: Ville Syrjala @ 2025-02-07 21:54 UTC (permalink / raw) To: intel-gfx; +Cc: intel-xe From: Ville Syrjälä <ville.syrjala@linux.intel.com> The HDMI vs. not scanline offset stuff no longer applies to the latest platforms, so using HAS_DDI() is a bit confusing. Replace with a more specific set of conditions. Also let's just deal with the platform types in the if ladder itself, and handle the HDMI vs. not within the specific branch for those platforms. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_vblank.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c index dd928d890e3a..139fa5deba80 100644 --- a/drivers/gpu/drm/i915/display/intel_vblank.c +++ b/drivers/gpu/drm/i915/display/intel_vblank.c @@ -224,8 +224,9 @@ int intel_crtc_scanline_offset(const struct intel_crtc_state *crtc_state) */ if (DISPLAY_VER(display) >= 20 || display->platform.battlemage) return 1; - else if (HAS_DDI(display) && intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI)) - return 2; + else if (DISPLAY_VER(display) >= 9 || + display->platform.broadwell || display->platform.haswell) + return intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI) ? 2 : 1; else if (DISPLAY_VER(display) >= 3) return 1; else -- 2.45.3 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH 3/3] drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with specific platform checks 2025-02-07 21:54 ` [PATCH 3/3] drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with specific platform checks Ville Syrjala @ 2025-02-20 9:58 ` Hogander, Jouni 0 siblings, 0 replies; 17+ messages in thread From: Hogander, Jouni @ 2025-02-20 9:58 UTC (permalink / raw) To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org Cc: intel-xe@lists.freedesktop.org On Fri, 2025-02-07 at 23:54 +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > The HDMI vs. not scanline offset stuff no longer applies to the > latest platforms, so using HAS_DDI() is a bit confusing. Replace > with a more specific set of conditions. > > Also let's just deal with the platform types in the if ladder > itself, and handle the HDMI vs. not within the specific branch > for those platforms. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/display/intel_vblank.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c > b/drivers/gpu/drm/i915/display/intel_vblank.c > index dd928d890e3a..139fa5deba80 100644 > --- a/drivers/gpu/drm/i915/display/intel_vblank.c > +++ b/drivers/gpu/drm/i915/display/intel_vblank.c > @@ -224,8 +224,9 @@ int intel_crtc_scanline_offset(const struct > intel_crtc_state *crtc_state) > */ > if (DISPLAY_VER(display) >= 20 || display- > >platform.battlemage) > return 1; > - else if (HAS_DDI(display) && intel_crtc_has_type(crtc_state, > INTEL_OUTPUT_HDMI)) > - return 2; > + else if (DISPLAY_VER(display) >= 9 || > + display->platform.broadwell || display- > >platform.haswell) > + return intel_crtc_has_type(crtc_state, > INTEL_OUTPUT_HDMI) ? 2 : 1; > else if (DISPLAY_VER(display) >= 3) > return 1; > else ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-07 21:54 [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Ville Syrjala ` (2 preceding siblings ...) 2025-02-07 21:54 ` [PATCH 3/3] drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with specific platform checks Ville Syrjala @ 2025-02-07 22:41 ` Lucas De Marchi 2025-02-10 16:05 ` Gustavo Sousa 2025-02-10 16:16 ` Ville Syrjälä 2025-02-07 22:54 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork ` (2 subsequent siblings) 6 siblings, 2 replies; 17+ messages in thread From: Lucas De Marchi @ 2025-02-07 22:41 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx, intel-xe, Matt Roper, gustavo.sousa On Fri, Feb 07, 2025 at 11:54:03PM +0200, Ville Syrjälä wrote: >From: Ville Syrjälä <ville.syrjala@linux.intel.com> > >Something has changed in the hardware on LNL/BMG because >HDMI outputs no longer have the extra scanline offset. > >I confirmed that MTL still has the old behaviour, which >is a bit weird since both MTL and BMG have display ver 14 >vs. LNL is version 20. But can't argue with actual >hardware behaviour. <6>[ 210.368608] xe 0000:03:00.0: [drm] Found battlemage (device ID e20b) discrete display version 14.01 stepping B0 vs <6>[ 412.999204] i915 0000:00:02.0: [drm] Found meteorlake (device ID 7d55) integrated display version 14.00 stepping C0 So 14.01 vs 14.00. In the driver: static const struct { u16 ver; u16 rel; const struct intel_display_device_info *display; } gmdid_display_map[] = { { 14, 0, &xe_lpdp_display }, { 14, 1, &xe2_hpd_display }, ... } So maybe we need to check for the full version >= 1401 instead? +Matt Roper, +Gustavo who may know the right bspec to confirm this change in behavior Lucas De Marchi > >Ville Syrjälä (3): > drm/i915: Fix scanline_offset for LNL+ and BMG+ > drm/i915: Reverse the scanline_offset if ladder > drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with > specific platform checks > > drivers/gpu/drm/i915/display/intel_vblank.c | 13 ++++++++----- > 1 file changed, 8 insertions(+), 5 deletions(-) > >-- >2.45.3 > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-07 22:41 ` [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Lucas De Marchi @ 2025-02-10 16:05 ` Gustavo Sousa 2025-02-10 16:16 ` Ville Syrjälä 1 sibling, 0 replies; 17+ messages in thread From: Gustavo Sousa @ 2025-02-10 16:05 UTC (permalink / raw) To: Lucas De Marchi, Ville Syrjala; +Cc: intel-gfx, intel-xe, Matt Roper Quoting Lucas De Marchi (2025-02-07 19:41:11-03:00) >On Fri, Feb 07, 2025 at 11:54:03PM +0200, Ville Syrjälä wrote: >>From: Ville Syrjälä <ville.syrjala@linux.intel.com> >> >>Something has changed in the hardware on LNL/BMG because >>HDMI outputs no longer have the extra scanline offset. >> >>I confirmed that MTL still has the old behaviour, which >>is a bit weird since both MTL and BMG have display ver 14 >>vs. LNL is version 20. But can't argue with actual >>hardware behaviour. > ><6>[ 210.368608] xe 0000:03:00.0: [drm] Found battlemage (device ID e20b) discrete display version 14.01 stepping B0 >vs ><6>[ 412.999204] i915 0000:00:02.0: [drm] Found meteorlake (device ID 7d55) integrated display version 14.00 stepping C0 > >So 14.01 vs 14.00. In the driver: > >static const struct { > u16 ver; > u16 rel; > const struct intel_display_device_info *display; >} gmdid_display_map[] = { > { 14, 0, &xe_lpdp_display }, > { 14, 1, &xe2_hpd_display }, > ... >} > >So maybe we need to check for the full version >= 1401 instead? Yeah, I think just checking for version >= 14.01 would make sense here. > >+Matt Roper, +Gustavo who may know the right bspec to confirm this >change in behavior I haven't found any bspec that explains the behavior of the counter outside of the bspec page for the scanline register itself, which seems to have the same description across different platforms. -- Gustavo Sousa > >Lucas De Marchi > >> >>Ville Syrjälä (3): >> drm/i915: Fix scanline_offset for LNL+ and BMG+ >> drm/i915: Reverse the scanline_offset if ladder >> drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with >> specific platform checks >> >> drivers/gpu/drm/i915/display/intel_vblank.c | 13 ++++++++----- >> 1 file changed, 8 insertions(+), 5 deletions(-) >> >>-- >>2.45.3 >> ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-07 22:41 ` [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Lucas De Marchi 2025-02-10 16:05 ` Gustavo Sousa @ 2025-02-10 16:16 ` Ville Syrjälä 2025-02-10 18:10 ` Lucas De Marchi 1 sibling, 1 reply; 17+ messages in thread From: Ville Syrjälä @ 2025-02-10 16:16 UTC (permalink / raw) To: Lucas De Marchi; +Cc: intel-gfx, intel-xe, Matt Roper, gustavo.sousa On Fri, Feb 07, 2025 at 04:41:11PM -0600, Lucas De Marchi wrote: > On Fri, Feb 07, 2025 at 11:54:03PM +0200, Ville Syrjälä wrote: > >From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > >Something has changed in the hardware on LNL/BMG because > >HDMI outputs no longer have the extra scanline offset. > > > >I confirmed that MTL still has the old behaviour, which > >is a bit weird since both MTL and BMG have display ver 14 > >vs. LNL is version 20. But can't argue with actual > >hardware behaviour. > > <6>[ 210.368608] xe 0000:03:00.0: [drm] Found battlemage (device ID e20b) discrete display version 14.01 stepping B0 > vs > <6>[ 412.999204] i915 0000:00:02.0: [drm] Found meteorlake (device ID 7d55) integrated display version 14.00 stepping C0 > > So 14.01 vs 14.00. In the driver: > > static const struct { > u16 ver; > u16 rel; > const struct intel_display_device_info *display; > } gmdid_display_map[] = { > { 14, 0, &xe_lpdp_display }, > { 14, 1, &xe2_hpd_display }, > ... > } > > So maybe we need to check for the full version >= 1401 instead? Just another pointless detail I don't want to have to remember. Also it's already a huge pain in the backside trying to figure out what new platform has what display ip. Someone really needs to at least document this properly. Or perhaps we should just put the expected display ip version back into the platform definition and then just double check that the version we read from the GMD thing matches our expectations. Until the hardware people get their act together and the display ip version actually has some real meaning we shouldn't use it outside the major version IMO. > > +Matt Roper, +Gustavo who may know the right bspec to confirm this > change in behavior None of this stuff is in bspec. > > Lucas De Marchi > > > > >Ville Syrjälä (3): > > drm/i915: Fix scanline_offset for LNL+ and BMG+ > > drm/i915: Reverse the scanline_offset if ladder > > drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with > > specific platform checks > > > > drivers/gpu/drm/i915/display/intel_vblank.c | 13 ++++++++----- > > 1 file changed, 8 insertions(+), 5 deletions(-) > > > >-- > >2.45.3 > > -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-10 16:16 ` Ville Syrjälä @ 2025-02-10 18:10 ` Lucas De Marchi 2025-02-10 20:02 ` Ville Syrjälä 0 siblings, 1 reply; 17+ messages in thread From: Lucas De Marchi @ 2025-02-10 18:10 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx, intel-xe, Matt Roper, gustavo.sousa On Mon, Feb 10, 2025 at 06:16:58PM +0200, Ville Syrjälä wrote: >On Fri, Feb 07, 2025 at 04:41:11PM -0600, Lucas De Marchi wrote: >> On Fri, Feb 07, 2025 at 11:54:03PM +0200, Ville Syrjälä wrote: >> >From: Ville Syrjälä <ville.syrjala@linux.intel.com> >> > >> >Something has changed in the hardware on LNL/BMG because >> >HDMI outputs no longer have the extra scanline offset. >> > >> >I confirmed that MTL still has the old behaviour, which >> >is a bit weird since both MTL and BMG have display ver 14 >> >vs. LNL is version 20. But can't argue with actual >> >hardware behaviour. >> >> <6>[ 210.368608] xe 0000:03:00.0: [drm] Found battlemage (device ID e20b) discrete display version 14.01 stepping B0 >> vs >> <6>[ 412.999204] i915 0000:00:02.0: [drm] Found meteorlake (device ID 7d55) integrated display version 14.00 stepping C0 >> >> So 14.01 vs 14.00. In the driver: >> >> static const struct { >> u16 ver; >> u16 rel; >> const struct intel_display_device_info *display; >> } gmdid_display_map[] = { >> { 14, 0, &xe_lpdp_display }, >> { 14, 1, &xe2_hpd_display }, >> ... >> } >> >> So maybe we need to check for the full version >= 1401 instead? > >Just another pointless detail I don't want to have to remember. we don't need the pointless update to the driver X months/years from now when another platform uses the same IP. > >Also it's already a huge pain in the backside trying to figure out >what new platform has what display ip. Someone really needs to at >least document this properly. Or perhaps we should just put the >expected display ip version back into the platform definition and >then just double check that the version we read from the GMD thing >matches our expectations. there's this indirection with gmdid_display_map and name of the IP, but other than that it's pretty much discoverable. From the bspec pov it's all in the configuration page for the platform and you don't even need the IP name. Example: 70821. > >Until the hardware people get their act together and the display ip >version actually has some real meaning we shouldn't use it outside >the major version IMO. it already does. ver.rel is what we need from the gmdid here. And it's used on the graphics/media side as well: git grep VERx100 -- drivers/gpu/drm/xe Lucas De Marchi > >> >> +Matt Roper, +Gustavo who may know the right bspec to confirm this >> change in behavior > >None of this stuff is in bspec. > >> >> Lucas De Marchi >> >> > >> >Ville Syrjälä (3): >> > drm/i915: Fix scanline_offset for LNL+ and BMG+ >> > drm/i915: Reverse the scanline_offset if ladder >> > drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with >> > specific platform checks >> > >> > drivers/gpu/drm/i915/display/intel_vblank.c | 13 ++++++++----- >> > 1 file changed, 8 insertions(+), 5 deletions(-) >> > >> >-- >> >2.45.3 >> > > >-- >Ville Syrjälä >Intel ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-10 18:10 ` Lucas De Marchi @ 2025-02-10 20:02 ` Ville Syrjälä 2025-02-10 21:49 ` Matt Roper 0 siblings, 1 reply; 17+ messages in thread From: Ville Syrjälä @ 2025-02-10 20:02 UTC (permalink / raw) To: Lucas De Marchi; +Cc: intel-gfx, intel-xe, Matt Roper, gustavo.sousa On Mon, Feb 10, 2025 at 12:10:56PM -0600, Lucas De Marchi wrote: > On Mon, Feb 10, 2025 at 06:16:58PM +0200, Ville Syrjälä wrote: > >On Fri, Feb 07, 2025 at 04:41:11PM -0600, Lucas De Marchi wrote: > >> On Fri, Feb 07, 2025 at 11:54:03PM +0200, Ville Syrjälä wrote: > >> >From: Ville Syrjälä <ville.syrjala@linux.intel.com> > >> > > >> >Something has changed in the hardware on LNL/BMG because > >> >HDMI outputs no longer have the extra scanline offset. > >> > > >> >I confirmed that MTL still has the old behaviour, which > >> >is a bit weird since both MTL and BMG have display ver 14 > >> >vs. LNL is version 20. But can't argue with actual > >> >hardware behaviour. > >> > >> <6>[ 210.368608] xe 0000:03:00.0: [drm] Found battlemage (device ID e20b) discrete display version 14.01 stepping B0 > >> vs > >> <6>[ 412.999204] i915 0000:00:02.0: [drm] Found meteorlake (device ID 7d55) integrated display version 14.00 stepping C0 > >> > >> So 14.01 vs 14.00. In the driver: > >> > >> static const struct { > >> u16 ver; > >> u16 rel; > >> const struct intel_display_device_info *display; > >> } gmdid_display_map[] = { > >> { 14, 0, &xe_lpdp_display }, > >> { 14, 1, &xe2_hpd_display }, > >> ... > >> } > >> > >> So maybe we need to check for the full version >= 1401 instead? > > > >Just another pointless detail I don't want to have to remember. > > we don't need the pointless update to the driver X months/years from now > when another platform uses the same IP. We have no idea if details like this have anything to do with the IP version. And in fact we have no idea idea about that for most details since the spec doesn't actually specify any of that. The only thing you can really trust when reding bspec is the platform. You can try to work backwards by first checking basically all the platforms, and then trying to see if there's some common IP version among them, and no other platform has that same IP version. But it'll still be just a guess, and based on past experience it's probably going to break as soon as the next random derivative platform comes along. > >Also it's already a huge pain in the backside trying to figure out > >what new platform has what display ip. Someone really needs to at > >least document this properly. Or perhaps we should just put the > >expected display ip version back into the platform definition and > >then just double check that the version we read from the GMD thing > >matches our expectations. > > there's this indirection with gmdid_display_map and name of the IP, but > other than that it's pretty much discoverable. From the bspec pov it's > all in the configuration page for the platform and you don't even need > the IP name. Example: 70821. But you can't even filter on the IP version number, and filtering is the only way to make any sense of anything these days. Ie. the only thing you can actually trust is the platform name. Also no one wants to have to open up all those pages for most platforms every time just to figure out which platforms have which IP version. We should just keep that information in the code so that you don't have to go through all that pain every single time. > > > > >Until the hardware people get their act together and the display ip > >version actually has some real meaning we shouldn't use it outside > >the major version IMO. > > it already does. As I said, the spec doesn't tell us anything about what's supported and/or broken on each IP version number. So it's all just guesswork. > ver.rel is what we need from the gmdid here. And it's > used on the graphics/media side as well: > > git grep VERx100 -- drivers/gpu/drm/xe Every time I see that crap I get super annoyed. I know which platorm I'm working on, I don't want to have to figure out all the different minor IP versions that it may or may not have, or what other platforms may or may not have those as well. Major numbers I think we can sort of use because those generally do map fairly well to actual features (though there are tons of exceptions to that rule all over the place as well). -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-10 20:02 ` Ville Syrjälä @ 2025-02-10 21:49 ` Matt Roper 0 siblings, 0 replies; 17+ messages in thread From: Matt Roper @ 2025-02-10 21:49 UTC (permalink / raw) To: Ville Syrjälä Cc: Lucas De Marchi, intel-gfx, intel-xe, gustavo.sousa On Mon, Feb 10, 2025 at 10:02:58PM +0200, Ville Syrjälä wrote: > On Mon, Feb 10, 2025 at 12:10:56PM -0600, Lucas De Marchi wrote: > > On Mon, Feb 10, 2025 at 06:16:58PM +0200, Ville Syrjälä wrote: > > >On Fri, Feb 07, 2025 at 04:41:11PM -0600, Lucas De Marchi wrote: > > >> On Fri, Feb 07, 2025 at 11:54:03PM +0200, Ville Syrjälä wrote: > > >> >From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > >> > > > >> >Something has changed in the hardware on LNL/BMG because > > >> >HDMI outputs no longer have the extra scanline offset. > > >> > > > >> >I confirmed that MTL still has the old behaviour, which > > >> >is a bit weird since both MTL and BMG have display ver 14 > > >> >vs. LNL is version 20. But can't argue with actual > > >> >hardware behaviour. > > >> > > >> <6>[ 210.368608] xe 0000:03:00.0: [drm] Found battlemage (device ID e20b) discrete display version 14.01 stepping B0 > > >> vs > > >> <6>[ 412.999204] i915 0000:00:02.0: [drm] Found meteorlake (device ID 7d55) integrated display version 14.00 stepping C0 > > >> > > >> So 14.01 vs 14.00. In the driver: > > >> > > >> static const struct { > > >> u16 ver; > > >> u16 rel; > > >> const struct intel_display_device_info *display; > > >> } gmdid_display_map[] = { > > >> { 14, 0, &xe_lpdp_display }, > > >> { 14, 1, &xe2_hpd_display }, > > >> ... > > >> } > > >> > > >> So maybe we need to check for the full version >= 1401 instead? > > > > > >Just another pointless detail I don't want to have to remember. > > > > we don't need the pointless update to the driver X months/years from now > > when another platform uses the same IP. > > We have no idea if details like this have anything to do with the > IP version. And in fact we have no idea idea about that for most > details since the spec doesn't actually specify any of that. > The only thing you can really trust when reding bspec is the > platform. This all fundamentally changed with MTL and its related IP blocks (not just at the driver level, but across the whole Intel organization workflow). Aside from some special cases that are tied to the SoC rather than display design, display hardware changes are no longer designed and defined against specific platforms. Instead the whole process happens on a specific IP branch, identified by a number like 14.00, 14.01, or 20.00. The binding of IP branches to specific platform(s) (or SKUs) is something that happens separately and may or may not change over time as new platforms/SKUs come out; some which may or may not use a new branch vs reuse an existing one. If you dig into it, the pages and various changes in the bspec aren't truly tagged to platforms anymore; instead they're tagged with something that only ties back to the IP branch and version number. For historical reasons the bspec tool tries to be "helpful" by attempting to do a mapping of IP -> platform when it shows the labels, although the reality is that this "helpful" part seems to just cause more confusion than it's worth given the modern mix-and-match way IPs get used in platforms. Supposedly the bspec is eventually supposed to start showing/filtering based on IP rather than platform, which will more accurately reflect how drivers are actually supposed to be implemented these days. The special cases that are still tied to a specific platform's SoC tend to be the physical/electrical characteristics like memory bandwidth, voltage levels, etc. Matt > > You can try to work backwards by first checking basically > all the platforms, and then trying to see if there's some common > IP version among them, and no other platform has that same > IP version. But it'll still be just a guess, and based on past > experience it's probably going to break as soon as the next > random derivative platform comes along. > > > >Also it's already a huge pain in the backside trying to figure out > > >what new platform has what display ip. Someone really needs to at > > >least document this properly. Or perhaps we should just put the > > >expected display ip version back into the platform definition and > > >then just double check that the version we read from the GMD thing > > >matches our expectations. > > > > there's this indirection with gmdid_display_map and name of the IP, but > > other than that it's pretty much discoverable. From the bspec pov it's > > all in the configuration page for the platform and you don't even need > > the IP name. Example: 70821. > > But you can't even filter on the IP version number, and filtering > is the only way to make any sense of anything these days. Ie. > the only thing you can actually trust is the platform name. > > Also no one wants to have to open up all those pages for most > platforms every time just to figure out which platforms have > which IP version. We should just keep that information in the > code so that you don't have to go through all that pain every > single time. > > > > > > > > >Until the hardware people get their act together and the display ip > > >version actually has some real meaning we shouldn't use it outside > > >the major version IMO. > > > > it already does. > > As I said, the spec doesn't tell us anything about what's supported > and/or broken on each IP version number. So it's all just guesswork. > > > ver.rel is what we need from the gmdid here. And it's > > used on the graphics/media side as well: > > > > git grep VERx100 -- drivers/gpu/drm/xe > > Every time I see that crap I get super annoyed. I know which > platorm I'm working on, I don't want to have to figure out > all the different minor IP versions that it may or may not have, > or what other platforms may or may not have those as well. > > Major numbers I think we can sort of use because those generally > do map fairly well to actual features (though there are tons of > exceptions to that rule all over the place as well). > > -- > Ville Syrjälä > Intel -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-07 21:54 [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Ville Syrjala ` (3 preceding siblings ...) 2025-02-07 22:41 ` [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Lucas De Marchi @ 2025-02-07 22:54 ` Patchwork 2025-02-08 2:44 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-08 17:47 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2025-02-07 22:54 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx == Series Details == Series: drm/i915: Fix scanline_offset for LNL+/BMG+ URL : https://patchwork.freedesktop.org/series/144526/ State : warning == Summary == Error: dim checkpatch failed 2489090b60c3 drm/i915: Fix scanline_offset for LNL+ and BMG+ -:31: WARNING:MISSING_FIXES_TAG: The commit message has 'stable@', perhaps it also needs a 'Fixes:' tag? total: 0 errors, 1 warnings, 0 checks, 10 lines checked 1d2c73ef0668 drm/i915: Reverse the scanline_offset if ladder a4fd772a18df drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with specific platform checks ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-07 21:54 [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Ville Syrjala ` (4 preceding siblings ...) 2025-02-07 22:54 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork @ 2025-02-08 2:44 ` Patchwork 2025-02-08 17:47 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2025-02-08 2:44 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4297 bytes --] == Series Details == Series: drm/i915: Fix scanline_offset for LNL+/BMG+ URL : https://patchwork.freedesktop.org/series/144526/ State : success == Summary == CI Bug Log - changes from CI_DRM_16090 -> Patchwork_144526v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/index.html Participating hosts (45 -> 43) ------------------------------ Missing (2): fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in Patchwork_144526v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [PASS][1] -> [FAIL][2] ([i915#13633]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html - bat-rpls-4: [PASS][3] -> [FAIL][4] ([i915#13633]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-arls-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/bat-arls-6/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/bat-arls-6/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][9] -> [SKIP][10] ([i915#9197]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlp-6: [INCOMPLETE][11] ([i915#9413]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/bat-adlp-6/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/bat-adlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][13] ([i915#11621]) -> [PASS][14] +132 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13633]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13633 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * Linux: CI_DRM_16090 -> Patchwork_144526v1 CI-20190529: 20190529 CI_DRM_16090: 4f934139887fd60bd4ac9027b7eec3e86ade8085 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8226: 8226 Patchwork_144526v1: 4f934139887fd60bd4ac9027b7eec3e86ade8085 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/index.html [-- Attachment #2: Type: text/html, Size: 5267 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915: Fix scanline_offset for LNL+/BMG+ 2025-02-07 21:54 [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Ville Syrjala ` (5 preceding siblings ...) 2025-02-08 2:44 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-02-08 17:47 ` Patchwork 6 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2025-02-08 17:47 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100269 bytes --] == Series Details == Series: drm/i915: Fix scanline_offset for LNL+/BMG+ URL : https://patchwork.freedesktop.org/series/144526/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16090_full -> Patchwork_144526v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_144526v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_144526v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_144526v1_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gt_timelines: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-snb6/igt@i915_selftest@live@gt_timelines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-snb1/igt@i915_selftest@live@gt_timelines.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1: - shard-snb: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-snb5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][4] +26 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_rotation_crc@exhaust-fences: - shard-rkl: [PASS][5] -> [SKIP][6] +30 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-4/igt@kms_rotation_crc@exhaust-fences.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_rotation_crc@exhaust-fences.html * igt@perf_pmu@invalid-init: - shard-dg2: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@perf_pmu@invalid-init.html #### Warnings #### * igt@kms_async_flips@test-cursor-atomic: - shard-rkl: [DMESG-WARN][8] ([i915#12964]) -> [SKIP][9] +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_async_flips@test-cursor-atomic.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: [SKIP][10] ([i915#5286]) -> [SKIP][11] +5 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: [SKIP][12] ([i915#3638]) -> [SKIP][13] +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][14] ([i915#12805]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][16] ([i915#6095]) -> [SKIP][17] +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: [SKIP][18] ([i915#7118] / [i915#9424]) -> [SKIP][19] +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][20] ([i915#3116]) -> [SKIP][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: [SKIP][22] ([i915#13049]) -> [SKIP][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: [SKIP][24] ([i915#3555]) -> [SKIP][25] +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][26] ([i915#13566]) -> [SKIP][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][28] ([i915#9067]) -> [SKIP][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][30] ([i915#4103]) -> [SKIP][31] +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: [SKIP][32] ([i915#8588]) -> [SKIP][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][34] ([i915#3840]) -> [SKIP][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [FAIL][36] ([i915#10826] / [i915#11989]) -> [SKIP][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][38] ([i915#3555] / [i915#8228]) -> [SKIP][39] +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][40] ([i915#6301]) -> [SKIP][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][42] ([i915#5289]) -> [SKIP][43] +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][44] ([i915#9906]) -> [SKIP][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf_pmu@module-unload: - shard-dg2: [INCOMPLETE][46] ([i915#13520]) -> [INCOMPLETE][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-dg2-5/igt@perf_pmu@module-unload.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@perf_pmu@module-unload.html New tests --------- New tests have been introduced between CI_DRM_16090_full and Patchwork_144526v1_full: ### New IGT tests (1) ### * igt@kms_atomic@plane-cursor-legacy@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.53] s Known issues ------------ Here are the changes found in Patchwork_144526v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#8411]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#11078]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-tglu: [PASS][50] -> [ABORT][51] ([i915#12817] / [i915#5507]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-tglu-8/igt@device_reset@unbind-reset-rebind.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-2/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#8414]) +13 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#8414]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@drm_fdinfo@virtual-busy-idle.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#8414]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@drm_fdinfo@virtual-busy-idle.html * igt@fbdev@unaligned-write: - shard-rkl: [PASS][55] -> [SKIP][56] ([i915#2582]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@fbdev@unaligned-write.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@fbdev@unaligned-write.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3555] / [i915#9323]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#3555] / [i915#9323]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#9323]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#13008]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][61] ([i915#12392] / [i915#13356]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#6335]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#8562]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_freq@sysfs: - shard-dg2: NOTRUN -> [FAIL][64] ([i915#9561]) +1 other test fail [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#8555]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-many.html - shard-dg2: NOTRUN -> [SKIP][66] ([i915#8555]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5882]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#280]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-1us: - shard-mtlp: [PASS][69] -> [ABORT][70] ([i915#13193]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-mtlp-1/igt@gem_eio@in-flight-1us.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@gem_eio@in-flight-1us.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#4812]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4771]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4812]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4812]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#4525]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2-9: NOTRUN -> [SKIP][76] ([i915#3539] / [i915#4852]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3539] / [i915#4852]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3539]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@gem_exec_flush@basic-uc-prw-default.html - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3539]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3539] / [i915#4852]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_params@secure-non-root: - shard-dg2-9: NOTRUN -> [SKIP][81] +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3281]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#3281]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3281]) +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3281]) +9 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3281]) +9 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4537] / [i915#4812]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#4537] / [i915#4812]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s3@smem: - shard-glk: NOTRUN -> [INCOMPLETE][89] ([i915#13196]) +1 other test incomplete [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-glk6/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4860]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#4860]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#4613]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-multi.html - shard-tglu: NOTRUN -> [SKIP][93] ([i915#4613]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#4613]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4613]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][96] ([i915#5493]) +1 other test timeout [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: NOTRUN -> [TIMEOUT][97] ([i915#5493]) +1 other test timeout [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-glk: NOTRUN -> [SKIP][98] ([i915#4613]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-glk3/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#12193]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4565]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#284]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-read-write: - shard-dg2-9: NOTRUN -> [SKIP][102] ([i915#4077]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_mmap_gtt@basic-read-write.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4077]) +8 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4077]) +10 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_gtt@ptrace: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4077]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@bad-size: - shard-dg2-9: NOTRUN -> [SKIP][106] ([i915#4083]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_mmap_wc@bad-size.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4083]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@write-display: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3282]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_pread@exhaustion: - shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#3282]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_pread@exhaustion.html * igt@gem_pread@self: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3282]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@gem_pread@self.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3282]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@gem_pread@snoop.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [PASS][112] -> [TIMEOUT][113] ([i915#12964]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4270]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][115] ([i915#12917] / [i915#12964]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#13398]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [PASS][117] -> [TIMEOUT][118] ([i915#12917] / [i915#12964]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [PASS][119] -> [SKIP][120] ([i915#4270]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2-9: NOTRUN -> [SKIP][121] ([i915#4270]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4270]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2-9: NOTRUN -> [SKIP][123] ([i915#5190] / [i915#8428]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190] / [i915#8428]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8428]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3297]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#3297]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3297] / [i915#3323]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2-9: NOTRUN -> [SKIP][129] ([i915#3297] / [i915#4880]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3297]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3297] / [i915#4880]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2-9: NOTRUN -> [SKIP][132] ([i915#3297]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3297] / [i915#4958]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#3297]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3297]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][136] ([i915#3297]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][137] +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#2856]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@gen9_exec_parse@allowed-single.html - shard-glk: [PASS][139] -> [ABORT][140] ([i915#5566]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-glk3/igt@gen9_exec_parse@allowed-single.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2-9: NOTRUN -> [SKIP][141] ([i915#2856]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#2527] / [i915#2856]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#2527]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#2527]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#2527] / [i915#2856]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][146] -> [ABORT][147] ([i915#9820]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][148] ([i915#2681]) +4 other tests warn [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#11681] / [i915#6621]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#11681] / [i915#6621]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#11681] / [i915#6621]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#11681]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@i915_pm_rps@thresholds-park.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11681]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#4387]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7984]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#6245]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][157] ([i915#9311]) +1 other test dmesg-warn [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][158] ([i915#9311]) +1 other test dmesg-warn [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][159] ([i915#9311]) +1 other test dmesg-warn [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@i915_selftest@mock@memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][160] ([i915#9311]) +1 other test dmesg-warn [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#7707]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5190]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4212]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2-9: NOTRUN -> [SKIP][164] ([i915#4212]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#12454] / [i915#12712]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4212]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#8709]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-vga-1-linear: - shard-snb: NOTRUN -> [SKIP][168] +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-snb5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-vga-1-linear.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#8709]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#8709]) +15 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg1: [PASS][171] -> [FAIL][172] ([i915#5956]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][173] -> [FAIL][174] ([i915#5956]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#1769] / [i915#3555]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#1769] / [i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#1769] / [i915#3555]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][178] ([i915#5956]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][179] ([i915#5956]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing: - shard-rkl: [PASS][180] -> [SKIP][181] [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-4/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#5286]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#4538] / [i915#5286]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#5286]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#5286]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#5286]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][187] -> [DMESG-FAIL][188] ([i915#13314]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][189] +8 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2-9: NOTRUN -> [SKIP][190] ([i915#4538] / [i915#5190]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3638]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3638]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-9: NOTRUN -> [SKIP][193] ([i915#5190]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#4538] / [i915#5190]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#4538]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#6095]) +166 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][197] ([i915#10307] / [i915#6095]) +29 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][198] +130 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-glk3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#12313]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#10307] / [i915#6095]) +191 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#6095]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#12313]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#6095]) +90 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#12805]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#6095]) +49 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#6095]) +15 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#12313]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#12313]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#12313]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#6095]) +19 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#11616] / [i915#7213]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3742]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3742]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#7213]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3742]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#4087]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#11151] / [i915#7828]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2-9: NOTRUN -> [SKIP][219] ([i915#11151] / [i915#7828]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#11151] / [i915#7828]) +6 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#11151] / [i915#7828]) +5 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#11151] / [i915#7828]) +7 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-tglu: NOTRUN -> [SKIP][223] ([i915#11151] / [i915#7828]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#11151] / [i915#7828]) +6 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-9: NOTRUN -> [SKIP][225] ([i915#3299]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_content_protection@dp-mst-type-0.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3299]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3116] / [i915#3299]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#6944] / [i915#9424]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9424]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_content_protection@lic-type-1.html - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#6944] / [i915#9424]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_content_protection@lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#9424]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#7118]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#7116]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#6944] / [i915#7116] / [i915#7118]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][235] ([i915#1339] / [i915#7173]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#3555]) +5 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#3555]) +7 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8814]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#13049]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][240] ([i915#13049]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#13049]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][242] ([i915#13049]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#13049]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-9: NOTRUN -> [SKIP][244] ([i915#13049]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2-9: NOTRUN -> [SKIP][245] ([i915#3555]) +6 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][246] ([i915#12964]) +6 other tests dmesg-warn [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-4/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#9809]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#13046] / [i915#5354]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#4103] / [i915#4213]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#13046] / [i915#5354]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8827]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3840] / [i915#9688]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-9: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#3840]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#3840]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#3840]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-9: NOTRUN -> [SKIP][256] ([i915#3840] / [i915#9053]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][257] ([i915#3840] / [i915#9053]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][258] ([i915#3840] / [i915#9053]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#1839]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#9337]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#9337]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#9337]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#658]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][264] ([i915#9934]) +4 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#9934]) +7 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][266] ([i915#8381]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#3637]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#3637]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#9934]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-rkl: NOTRUN -> [SKIP][270] ([i915#9934]) +5 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-mtlp: [PASS][271] -> [FAIL][272] ([i915#11989]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#8381]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [PASS][274] -> [FAIL][275] ([i915#11989]) +3 other tests fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-tglu: [PASS][276] -> [FAIL][277] ([i915#11989]) +3 other tests fail [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-tglu-2/igt@kms_flip@plain-flip-ts-check-interruptible.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-9/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][278] ([i915#2672] / [i915#3555]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][279] ([i915#2672]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#2672]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#2587] / [i915#2672]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#2672] / [i915#3555] / [i915#5190]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#2672]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#3555]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#2587] / [i915#2672]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#2672] / [i915#3555]) +3 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555]) +4 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#2587] / [i915#2672]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#2672] / [i915#3555]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: [PASS][292] -> [SKIP][293] ([i915#1849] / [i915#5354]) +6 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [PASS][294] -> [FAIL][295] ([i915#6880]) +3 other tests fail [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2-9: NOTRUN -> [FAIL][296] ([i915#6880]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][297] +61 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][298] ([i915#3458]) +7 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#8708]) +12 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][300] +42 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#1825]) +13 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#5354]) +18 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][303] +37 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#1849] / [i915#5354]) +17 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#8708]) +11 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#1825]) +21 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#3023]) +8 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#5439]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-9: NOTRUN -> [SKIP][309] ([i915#10055]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#9766]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#3458]) +10 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][312] ([i915#5354]) +17 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#3458]) +14 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][314] ([i915#8708]) +6 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8228]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_hdr@invalid-hdr.html - shard-dg1: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8228]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][317] -> [SKIP][318] ([i915#3555] / [i915#8228]) +2 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@uint-max-clock: - shard-rkl: [PASS][319] -> [SKIP][320] ([i915#3555]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_invalid_mode@uint-max-clock.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_invalid_mode@uint-max-clock.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#12394]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][322] ([i915#12394]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-9: NOTRUN -> [SKIP][323] ([i915#10656]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#12339]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#10656]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#12394]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12339]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#12756] / [i915#13409] / [i915#13476]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][329] ([i915#13409] / [i915#13476]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane@plane-position-covered: - shard-rkl: [PASS][330] -> [SKIP][331] ([i915#8825]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_plane@plane-position-covered.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_plane@plane-position-covered.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-rkl: [PASS][332] -> [SKIP][333] ([i915#7294]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_plane_alpha_blend@alpha-7efc.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8806]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#6953]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#12247]) +8 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#3555] / [i915#8152]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-rkl: [PASS][338] -> [SKIP][339] ([i915#8152]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#12247] / [i915#8152]) +6 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#12247]) +17 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#12247]) +18 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#12247] / [i915#6953] / [i915#8152]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-rkl: [PASS][344] -> [SKIP][345] ([i915#12247] / [i915#8152]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a: - shard-rkl: [PASS][346] -> [SKIP][347] ([i915#12247]) +5 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#12247] / [i915#6953]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#12247] / [i915#6953]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12247] / [i915#6953]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#12247] / [i915#6953]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#12247]) +23 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][353] ([i915#5354]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_pm_backlight@bad-brightness.html - shard-tglu: NOTRUN -> [SKIP][354] ([i915#9812]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#5354]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9812]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][357] -> [SKIP][358] ([i915#9340]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#8430]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#8430]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2-9: NOTRUN -> [SKIP][361] ([i915#9519]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][362] -> [SKIP][363] ([i915#9519]) +2 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#9519]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#9519]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][366] ([i915#9519]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][367] -> [SKIP][368] ([i915#9519]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16090/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#6524]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#6524]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#6524]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][372] ([i915#6524]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2-9: NOTRUN -> [SKIP][373] ([i915#6524] / [i915#6805]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#11520]) +6 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][375] ([i915#12316]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#9808]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-9: NOTRUN -> [SKIP][377] ([i915#11520]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#11520]) +8 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#11520]) +2 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][380] ([i915#11520]) +4 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-glk3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#11520]) +7 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][382] ([i915#11520]) +8 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9683]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-9: NOTRUN -> [SKIP][384] ([i915#9683]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][385] ([i915#9683]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-14/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][386] ([i915#9683]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][387] ([i915#1072] / [i915#9732]) +20 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#9688]) +6 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-basic: - shard-tglu: NOTRUN -> [SKIP][389] ([i915#9732]) +9 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#1072] / [i915#9732]) +15 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][391] ([i915#9732]) +14 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][392] ([i915#1072] / [i915#9732]) +9 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][393] ([i915#1072] / [i915#9732]) +17 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-9: NOTRUN -> [SKIP][394] ([i915#12755]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#5289]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][396] ([i915#5289]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][397] ([i915#3555]) +3 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3555]) +4 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][399] ([i915#3555]) +5 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][400] ([i915#5465]) +2 other tests fail [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_sysfs_edid_timing: - shard-dg2-9: NOTRUN -> [FAIL][401] ([IGT#160]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-9/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#8623]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][403] ([i915#3555] / [i915#8808]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][404] ([i915#9906]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@kms_vrr@max-min.html - shard-tglu: NOTRUN -> [SKIP][405] ([i915#9906]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-3/igt@kms_vrr@max-min.html - shard-dg2: NOTRUN -> [SKIP][406] ([i915#9906]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output: - shard-tglu-1: NOTRUN -> [SKIP][407] ([i915#2437]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][408] ([i915#2437]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][409] ([i915#2437]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-17/igt@kms_writeback@writeback-fb-id.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][410] ([i915#2436]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][411] ([i915#4349]) +2 other tests fail [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-6/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@event-wait: - shard-rkl: NOTRUN -> [SKIP][412] +15 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-rkl-8/igt@perf_pmu@event-wait.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][413] ([i915#12549] / [i915#6806]) +1 other test fail [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-11/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][414] ([i915#8516]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][415] ([i915#3708]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg1-13/igt@prime_vgem@basic-fence-flip.html - shard-dg2: NOTRUN -> [SKIP][416] ([i915#3708]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][417] ([i915#3708] / [i915#4077]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/shard-mtlp-7/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2-9: NOTRUN -> [SKIP][418] == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144526v1/index.html [-- Attachment #2: Type: text/html, Size: 109351 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2025-03-20 11:24 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-07 21:54 [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Ville Syrjala 2025-02-07 21:54 ` [PATCH 1/3] drm/i915: Fix scanline_offset for LNL+ and BMG+ Ville Syrjala 2025-02-20 9:30 ` Hogander, Jouni 2025-03-20 11:23 ` Shankar, Uma 2025-02-07 21:54 ` [PATCH 2/3] drm/i915: Reverse the scanline_offset if ladder Ville Syrjala 2025-02-20 10:02 ` Hogander, Jouni 2025-02-07 21:54 ` [PATCH 3/3] drm/i915: Replace the HAS_DDI() in intel_crtc_scanline_offset() with specific platform checks Ville Syrjala 2025-02-20 9:58 ` Hogander, Jouni 2025-02-07 22:41 ` [PATCH 0/3] drm/i915: Fix scanline_offset for LNL+/BMG+ Lucas De Marchi 2025-02-10 16:05 ` Gustavo Sousa 2025-02-10 16:16 ` Ville Syrjälä 2025-02-10 18:10 ` Lucas De Marchi 2025-02-10 20:02 ` Ville Syrjälä 2025-02-10 21:49 ` Matt Roper 2025-02-07 22:54 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork 2025-02-08 2:44 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-08 17:47 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox