Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband
@ 2025-10-22 12:25 Jouni Högander
  2025-10-22 15:37 ` Ville Syrjälä
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jouni Högander @ 2025-10-22 12:25 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander, Ankit Nautiyal

We started seeing "[drm] *ERROR* Timed out waiting PSR idle state" after
taking optimized guardband into use. These are seen because VSC SDPs are
sent on same line as AS SDPs when AS SDP is enabled. AS SDP is sent on line
configured in EMP_AS_SDP_TL register. We are configuring
crtc_state->vrr.vsync_start into that register.

Fix this by ensuring AS SDP is sent on line which is within
guardband. From the bspec:

EMP_AS_SDP_TL < SCL + Guardband

Bspec: 71197

Fixes: 52ecd48b8d3f ("drm/i915/dp: Add helper to get min sdp guardband")
Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index b0aeb6c2de86c..54b5e060be82a 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -7026,7 +7026,7 @@ int intel_dp_compute_config_late(struct intel_encoder *encoder,
 }
 
 static
-int intel_dp_get_lines_for_sdp(u32 type)
+int intel_dp_get_lines_for_sdp(const struct intel_crtc_state *crtc_state, u32 type)
 {
 	switch (type) {
 	case DP_SDP_VSC_EXT_VESA:
@@ -7036,6 +7036,8 @@ int intel_dp_get_lines_for_sdp(u32 type)
 		return 8;
 	case DP_SDP_PPS:
 		return 7;
+	case DP_SDP_ADAPTIVE_SYNC:
+		return crtc_state->vrr.vsync_start + 1;
 	default:
 		break;
 	}
@@ -7052,11 +7054,18 @@ int intel_dp_sdp_min_guardband(const struct intel_crtc_state *crtc_state,
 	    crtc_state->infoframes.enable &
 	    intel_hdmi_infoframe_enable(HDMI_PACKET_TYPE_GAMUT_METADATA))
 		sdp_guardband = max(sdp_guardband,
-				    intel_dp_get_lines_for_sdp(HDMI_PACKET_TYPE_GAMUT_METADATA));
+				    intel_dp_get_lines_for_sdp(crtc_state,
+							       HDMI_PACKET_TYPE_GAMUT_METADATA));
 
 	if (assume_all_enabled ||
 	    crtc_state->dsc.compression_enable)
-		sdp_guardband = max(sdp_guardband, intel_dp_get_lines_for_sdp(DP_SDP_PPS));
+		sdp_guardband = max(sdp_guardband,
+				    intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_PPS));
+
+	if (assume_all_enabled ||
+	    crtc_state->infoframes.enable & intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))
+		sdp_guardband = max(sdp_guardband,
+				    intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_ADAPTIVE_SYNC));
 
 	return sdp_guardband;
 }
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband
  2025-10-22 12:25 [PATCH] drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband Jouni Högander
@ 2025-10-22 15:37 ` Ville Syrjälä
  2025-10-22 16:08   ` Hogander, Jouni
  2025-10-22 22:40 ` ✓ i915.CI.BAT: success for " Patchwork
  2025-10-23  4:44 ` ✗ i915.CI.Full: failure " Patchwork
  2 siblings, 1 reply; 6+ messages in thread
From: Ville Syrjälä @ 2025-10-22 15:37 UTC (permalink / raw)
  To: Jouni Högander; +Cc: intel-gfx, intel-xe, Ankit Nautiyal

On Wed, Oct 22, 2025 at 03:25:52PM +0300, Jouni Högander wrote:
> We started seeing "[drm] *ERROR* Timed out waiting PSR idle state" after
> taking optimized guardband into use. These are seen because VSC SDPs are
> sent on same line as AS SDPs when AS SDP is enabled. AS SDP is sent on line
> configured in EMP_AS_SDP_TL register. We are configuring
> crtc_state->vrr.vsync_start into that register.
> 
> Fix this by ensuring AS SDP is sent on line which is within
> guardband. From the bspec:
> 
> EMP_AS_SDP_TL < SCL + Guardband
> 
> Bspec: 71197
> 
> Fixes: 52ecd48b8d3f ("drm/i915/dp: Add helper to get min sdp guardband")
> Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 15 ++++++++++++---
>  1 file changed, 12 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index b0aeb6c2de86c..54b5e060be82a 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -7026,7 +7026,7 @@ int intel_dp_compute_config_late(struct intel_encoder *encoder,
>  }
>  
>  static
> -int intel_dp_get_lines_for_sdp(u32 type)
> +int intel_dp_get_lines_for_sdp(const struct intel_crtc_state *crtc_state, u32 type)
>  {
>  	switch (type) {
>  	case DP_SDP_VSC_EXT_VESA:
> @@ -7036,6 +7036,8 @@ int intel_dp_get_lines_for_sdp(u32 type)
>  		return 8;
>  	case DP_SDP_PPS:
>  		return 7;
> +	case DP_SDP_ADAPTIVE_SYNC:
> +		return crtc_state->vrr.vsync_start + 1;

Is the +1 actually needed? I get the impression the bspec page isn't
being very accurate with the '<' usage.

Hmm, there is an extra note in the EMP_AS_SDP_TL register:
"For DP/eDP, if there is a set context latency (SCL) window, then it
 cannot be the first line of SCL
 For DP/eDP, if there is no SCL window, then it cannot be the first line 
 of the Delayed V. Blank"
So I guess there might be a real reason for that extra line.

Though I'm pretty sure no one has even confirmed that we don't have any
off by one errors in EMP_AS_SDP_TL/etc. Should do that at some point...

>  	default:
>  		break;
>  	}
> @@ -7052,11 +7054,18 @@ int intel_dp_sdp_min_guardband(const struct intel_crtc_state *crtc_state,
>  	    crtc_state->infoframes.enable &
>  	    intel_hdmi_infoframe_enable(HDMI_PACKET_TYPE_GAMUT_METADATA))
>  		sdp_guardband = max(sdp_guardband,
> -				    intel_dp_get_lines_for_sdp(HDMI_PACKET_TYPE_GAMUT_METADATA));
> +				    intel_dp_get_lines_for_sdp(crtc_state,
> +							       HDMI_PACKET_TYPE_GAMUT_METADATA));
>  
>  	if (assume_all_enabled ||
>  	    crtc_state->dsc.compression_enable)
> -		sdp_guardband = max(sdp_guardband, intel_dp_get_lines_for_sdp(DP_SDP_PPS));
> +		sdp_guardband = max(sdp_guardband,
> +				    intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_PPS));
> +
> +	if (assume_all_enabled ||

assume_all_enable && HAS_AS_SDP() ?

> +	    crtc_state->infoframes.enable & intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))
> +		sdp_guardband = max(sdp_guardband,
> +				    intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_ADAPTIVE_SYNC));
>  
>  	return sdp_guardband;
>  }
> -- 
> 2.43.0

-- 
Ville Syrjälä
Intel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband
  2025-10-22 15:37 ` Ville Syrjälä
@ 2025-10-22 16:08   ` Hogander, Jouni
  2025-10-23  6:05     ` Hogander, Jouni
  0 siblings, 1 reply; 6+ messages in thread
From: Hogander, Jouni @ 2025-10-22 16:08 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: intel-xe@lists.freedesktop.org, Nautiyal, Ankit K,
	intel-gfx@lists.freedesktop.org

On Wed, 2025-10-22 at 18:37 +0300, Ville Syrjälä wrote:
> On Wed, Oct 22, 2025 at 03:25:52PM +0300, Jouni Högander wrote:
> > We started seeing "[drm] *ERROR* Timed out waiting PSR idle state"
> > after
> > taking optimized guardband into use. These are seen because VSC
> > SDPs are
> > sent on same line as AS SDPs when AS SDP is enabled. AS SDP is sent
> > on line
> > configured in EMP_AS_SDP_TL register. We are configuring
> > crtc_state->vrr.vsync_start into that register.
> > 
> > Fix this by ensuring AS SDP is sent on line which is within
> > guardband. From the bspec:
> > 
> > EMP_AS_SDP_TL < SCL + Guardband
> > 
> > Bspec: 71197
> > 
> > Fixes: 52ecd48b8d3f ("drm/i915/dp: Add helper to get min sdp
> > guardband")
> > Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_dp.c | 15 ++++++++++++---
> >  1 file changed, 12 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > b/drivers/gpu/drm/i915/display/intel_dp.c
> > index b0aeb6c2de86c..54b5e060be82a 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > @@ -7026,7 +7026,7 @@ int intel_dp_compute_config_late(struct
> > intel_encoder *encoder,
> >  }
> >  
> >  static
> > -int intel_dp_get_lines_for_sdp(u32 type)
> > +int intel_dp_get_lines_for_sdp(const struct intel_crtc_state
> > *crtc_state, u32 type)
> >  {
> >  	switch (type) {
> >  	case DP_SDP_VSC_EXT_VESA:
> > @@ -7036,6 +7036,8 @@ int intel_dp_get_lines_for_sdp(u32 type)
> >  		return 8;
> >  	case DP_SDP_PPS:
> >  		return 7;
> > +	case DP_SDP_ADAPTIVE_SYNC:
> > +		return crtc_state->vrr.vsync_start + 1;
> 
> Is the +1 actually needed? I get the impression the bspec page isn't
> being very accurate with the '<' usage.
> 
> Hmm, there is an extra note in the EMP_AS_SDP_TL register:
> "For DP/eDP, if there is a set context latency (SCL) window, then it
>  cannot be the first line of SCL
>  For DP/eDP, if there is no SCL window, then it cannot be the first
> line 
>  of the Delayed V. Blank"
> So I guess there might be a real reason for that extra line.

I actually tested without that +1 and I still saw those timeouts. So
that also supports the idea we need that.

> 
> Though I'm pretty sure no one has even confirmed that we don't have
> any
> off by one errors in EMP_AS_SDP_TL/etc. Should do that at some
> point...
> 
> >  	default:
> >  		break;
> >  	}
> > @@ -7052,11 +7054,18 @@ int intel_dp_sdp_min_guardband(const struct
> > intel_crtc_state *crtc_state,
> >  	    crtc_state->infoframes.enable &
> >  	   
> > intel_hdmi_infoframe_enable(HDMI_PACKET_TYPE_GAMUT_METADATA))
> >  		sdp_guardband = max(sdp_guardband,
> > -				   
> > intel_dp_get_lines_for_sdp(HDMI_PACKET_TYPE_GAMUT_METADATA));
> > +				   
> > intel_dp_get_lines_for_sdp(crtc_state,
> > +							      
> > HDMI_PACKET_TYPE_GAMUT_METADATA));
> >  
> >  	if (assume_all_enabled ||
> >  	    crtc_state->dsc.compression_enable)
> > -		sdp_guardband = max(sdp_guardband,
> > intel_dp_get_lines_for_sdp(DP_SDP_PPS));
> > +		sdp_guardband = max(sdp_guardband,
> > +				   
> > intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_PPS));
> > +
> > +	if (assume_all_enabled ||
> 
> assume_all_enable && HAS_AS_SDP() ?

Ok, I will change this.

BR,

Jouni Högander

> 
> > +	    crtc_state->infoframes.enable &
> > intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))
> > +		sdp_guardband = max(sdp_guardband,
> > +				   
> > intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_ADAPTIVE_SYNC));
> >  
> >  	return sdp_guardband;
> >  }
> > -- 
> > 2.43.0
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* ✓ i915.CI.BAT: success for drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband
  2025-10-22 12:25 [PATCH] drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband Jouni Högander
  2025-10-22 15:37 ` Ville Syrjälä
@ 2025-10-22 22:40 ` Patchwork
  2025-10-23  4:44 ` ✗ i915.CI.Full: failure " Patchwork
  2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-10-22 22:40 UTC (permalink / raw)
  To: Hogander, Jouni; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 4104 bytes --]

== Series Details ==

Series: drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband
URL   : https://patchwork.freedesktop.org/series/156341/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_17407 -> Patchwork_156341v1
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/index.html

Participating hosts (45 -> 44)
------------------------------

  Missing    (1): fi-snb-2520m 

Known issues
------------

  Here are the changes found in Patchwork_156341v1 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/bat-mtlp-8/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/bat-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/bat-arls-5/igt@i915_selftest@live@workarounds.html
    - bat-dg2-9:          [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/bat-dg2-9/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/bat-dg2-9/igt@i915_selftest@live@workarounds.html
    - bat-dg2-14:         [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/bat-dg2-14/igt@i915_selftest@live@workarounds.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/bat-dg2-14/igt@i915_selftest@live@workarounds.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][9] +21 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/fi-bsw-n3050/igt@kms_psr@psr-primary-mmap-gtt.html

  
#### Possible fixes ####

  * igt@dmabuf@all-tests:
    - bat-apl-1:          [ABORT][10] ([i915#12904]) -> [PASS][11] +1 other test pass
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/bat-apl-1/igt@dmabuf@all-tests.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/bat-apl-1/igt@dmabuf@all-tests.html

  
#### Warnings ####

  * igt@i915_selftest@live:
    - bat-atsm-1:         [DMESG-FAIL][12] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][13] ([i915#12061] / [i915#14204])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/bat-atsm-1/igt@i915_selftest@live.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/bat-atsm-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@mman:
    - bat-atsm-1:         [DMESG-FAIL][14] ([i915#13929]) -> [DMESG-FAIL][15] ([i915#14204])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/bat-atsm-1/igt@i915_selftest@live@mman.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/bat-atsm-1/igt@i915_selftest@live@mman.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
  [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
  [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204


Build changes
-------------

  * Linux: CI_DRM_17407 -> Patchwork_156341v1

  CI-20190529: 20190529
  CI_DRM_17407: 602d56f809ae2450a720a0fbedcfe84ff38ffb98 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8594: 8594
  Patchwork_156341v1: 602d56f809ae2450a720a0fbedcfe84ff38ffb98 @ git://anongit.freedesktop.org/gfx-ci/linux

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/index.html

[-- Attachment #2: Type: text/html, Size: 5370 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* ✗ i915.CI.Full: failure for drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband
  2025-10-22 12:25 [PATCH] drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband Jouni Högander
  2025-10-22 15:37 ` Ville Syrjälä
  2025-10-22 22:40 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2025-10-23  4:44 ` Patchwork
  2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-10-23  4:44 UTC (permalink / raw)
  To: Jouni Högander; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 134796 bytes --]

== Series Details ==

Series: drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband
URL   : https://patchwork.freedesktop.org/series/156341/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_17407_full -> Patchwork_156341v1_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_156341v1_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_156341v1_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 (11 -> 11)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_156341v1_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
    - shard-tglu:         [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1:
    - shard-tglu:         [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html

  
New tests
---------

  New tests have been introduced between CI_DRM_17407_full and Patchwork_156341v1_full:

### New IGT tests (16) ###

  * igt@kms_atomic_interruptible@atomic-setmode@pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [6.27] s

  * igt@kms_atomic_transition@plane-all-transition-fencing@pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.27] s

  * igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.25] s

  * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing@pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.20] s

  * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing@pipe-b-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.18] s

  * igt@kms_flip@bad-size:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@basic-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@fbc-2p-primscrn-spr-indfb-draw-render:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@manyslice:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@primary-yf-tiled-reflect-x-180:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@q-independent:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@wait-immediate:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_lease@lease-invalid-crtc@pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_lease@lease-invalid-crtc@pipe-b-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_vblank@wait-forked-hang@pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [6.31] s

  * igt@kms_vblank@wait-forked-hang@pipe-b-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [5.98] s

  

Known issues
------------

  Here are the changes found in Patchwork_156341v1_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-tglu-1:       NOTRUN -> [SKIP][5] ([i915#9323])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_ctx_freq@sysfs@gt0:
    - shard-dg2:          [PASS][6] -> [FAIL][7] ([i915#9561]) +1 other test fail
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-4/igt@gem_ctx_freq@sysfs@gt0.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-glk:          NOTRUN -> [INCOMPLETE][8] ([i915#12353]) +1 other test incomplete
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk1/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg2:          NOTRUN -> [SKIP][9] ([i915#8555]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_eio@in-flight-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][10] ([i915#13390])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk5/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_balancer@bonded-dual:
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#4771])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html

  * igt@gem_exec_balancer@parallel:
    - shard-tglu-1:       NOTRUN -> [SKIP][12] ([i915#4525]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-tglu:         NOTRUN -> [SKIP][13] ([i915#4525])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@sliced:
    - shard-dg2:          NOTRUN -> [SKIP][14] ([i915#4812]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@gem_exec_balancer@sliced.html

  * igt@gem_exec_endless@dispatch@bcs0:
    - shard-dg2:          [PASS][15] -> [TIMEOUT][16] ([i915#3778] / [i915#7016]) +1 other test timeout
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-8/igt@gem_exec_endless@dispatch@bcs0.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@gem_exec_endless@dispatch@bcs0.html

  * igt@gem_exec_flush@basic-uc-prw-default:
    - shard-dg2:          NOTRUN -> [SKIP][17] ([i915#3539])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html

  * igt@gem_exec_flush@basic-uc-rw-default:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#3539] / [i915#4852])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@gem_exec_flush@basic-uc-rw-default.html

  * igt@gem_exec_reloc@basic-range-active:
    - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#3281]) +2 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@gem_exec_reloc@basic-range-active.html

  * igt@gem_exec_reloc@basic-write-cpu-active:
    - shard-dg2-9:        NOTRUN -> [SKIP][20] ([i915#3281]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@gem_exec_reloc@basic-write-cpu-active.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2:          NOTRUN -> [SKIP][21] ([i915#4537] / [i915#4812]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-rkl:          [PASS][22] -> [INCOMPLETE][23] ([i915#13356]) +1 other test incomplete
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@gem_exec_suspend@basic-s0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-glk:          [PASS][24] -> [INCOMPLETE][25] ([i915#13196] / [i915#13356]) +1 other test incomplete
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-glk9/igt@gem_exec_suspend@basic-s3.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk6/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_fence_thrash@bo-write-verify-threaded-none:
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#4860]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html

  * igt@gem_huc_copy@huc-copy:
    - shard-glk:          NOTRUN -> [SKIP][27] ([i915#2190])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk6/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-glk:          NOTRUN -> [SKIP][28] ([i915#4613]) +3 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk6/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][29] ([i915#4613]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_media_vme:
    - shard-tglu:         NOTRUN -> [SKIP][30] ([i915#284])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@gem_media_vme.html

  * igt@gem_mmap_gtt@basic-read:
    - shard-dg2-9:        NOTRUN -> [SKIP][31] ([i915#4077]) +2 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@gem_mmap_gtt@basic-read.html

  * igt@gem_mmap_offset@clear-via-pagefault:
    - shard-mtlp:         [PASS][32] -> [ABORT][33] ([i915#14809]) +1 other test abort
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html

  * igt@gem_mmap_wc@bad-object:
    - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#4083]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@gem_mmap_wc@bad-object.html

  * igt@gem_partial_pwrite_pread@reads-display:
    - shard-dg2-9:        NOTRUN -> [SKIP][35] ([i915#3282]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-display.html

  * igt@gem_partial_pwrite_pread@write:
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#3282])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@gem_partial_pwrite_pread@write.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-tglu-1:       NOTRUN -> [WARN][37] ([i915#2658])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-rkl:          [PASS][38] -> [TIMEOUT][39] ([i915#12964])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@create-valid-protected-context:
    - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#4270])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@gem_pxp@create-valid-protected-context.html

  * igt@gem_pxp@display-protected-crc:
    - shard-rkl:          NOTRUN -> [TIMEOUT][41] ([i915#12917] / [i915#12964]) +1 other test timeout
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@reject-modify-context-protection-off-3:
    - shard-rkl:          [PASS][42] -> [TIMEOUT][43] ([i915#12917] / [i915#12964])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-3.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
    - shard-dg2-9:        NOTRUN -> [SKIP][44] ([i915#5190] / [i915#8428]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][45] ([i915#5190] / [i915#8428]) +5 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4079])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@access-control:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#3297])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglu-1:       NOTRUN -> [SKIP][48] ([i915#3297])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#3297] / [i915#4880])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
    - shard-dg2-9:        NOTRUN -> [SKIP][50] ([i915#3297] / [i915#4880])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglu:         NOTRUN -> [SKIP][51] ([i915#3297])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][52] ([i915#13356])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-7/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-dg2:          NOTRUN -> [SKIP][53] ([i915#2856]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-tglu:         NOTRUN -> [SKIP][54] ([i915#2527] / [i915#2856])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglu-1:       NOTRUN -> [SKIP][55] ([i915#2527] / [i915#2856]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html

  * igt@i915_drm_fdinfo@all-busy-idle-check-all:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#14123])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@i915_drm_fdinfo@all-busy-idle-check-all.html

  * igt@i915_drm_fdinfo@busy@vecs1:
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#14073]) +7 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@i915_drm_fdinfo@busy@vecs1.html

  * igt@i915_drm_fdinfo@virtual-busy:
    - shard-dg2:          NOTRUN -> [SKIP][58] ([i915#14118])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy.html

  * igt@i915_module_load@load:
    - shard-snb:          ([PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83]) -> ([PASS][84], [PASS][85], [PASS][86], [SKIP][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [SKIP][105], [PASS][106])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb1/igt@i915_module_load@load.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb1/igt@i915_module_load@load.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb1/igt@i915_module_load@load.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb1/igt@i915_module_load@load.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb1/igt@i915_module_load@load.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb4/igt@i915_module_load@load.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb4/igt@i915_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb4/igt@i915_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb4/igt@i915_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb4/igt@i915_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb5/igt@i915_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb5/igt@i915_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb5/igt@i915_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb5/igt@i915_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb5/igt@i915_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb6/igt@i915_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb6/igt@i915_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb6/igt@i915_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb6/igt@i915_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb6/igt@i915_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@i915_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@i915_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@i915_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@i915_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@i915_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb1/igt@i915_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb1/igt@i915_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb1/igt@i915_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb1/igt@i915_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb4/igt@i915_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb4/igt@i915_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb4/igt@i915_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb4/igt@i915_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb4/igt@i915_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb5/igt@i915_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb5/igt@i915_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb5/igt@i915_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb5/igt@i915_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb5/igt@i915_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb6/igt@i915_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb6/igt@i915_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb6/igt@i915_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb6/igt@i915_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb6/igt@i915_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb7/igt@i915_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb7/igt@i915_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb7/igt@i915_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb7/igt@i915_module_load@load.html

  * igt@i915_module_load@reload-no-display:
    - shard-dg1:          [PASS][107] -> [DMESG-WARN][108] ([i915#13029] / [i915#14545])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg1-17/igt@i915_module_load@reload-no-display.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg1-12/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_freq_api@freq-basic-api:
    - shard-tglu:         NOTRUN -> [SKIP][109] ([i915#8399])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@i915_pm_freq_api@freq-basic-api.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [PASS][110] -> [INCOMPLETE][111] ([i915#13356] / [i915#13820]) +1 other test incomplete
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-glk:          NOTRUN -> [SKIP][112] +334 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rps@basic-api:
    - shard-dg2-9:        NOTRUN -> [SKIP][113] ([i915#11681] / [i915#6621])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@i915_pm_rps@basic-api.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@i915_pm_sseu@full-enable:
    - shard-tglu:         NOTRUN -> [SKIP][115] ([i915#4387])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@i915_pm_sseu@full-enable.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([i915#6188])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-glk:          NOTRUN -> [INCOMPLETE][117] ([i915#4817])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk6/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-dg2:          NOTRUN -> [SKIP][118] ([i915#4077]) +4 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-tglu-1:       NOTRUN -> [SKIP][119] ([i915#9531])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk10:        NOTRUN -> [SKIP][120] ([i915#1769])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-transition:
    - shard-rkl:          [PASS][121] -> [DMESG-WARN][122] ([i915#12964]) +14 other tests dmesg-warn
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_atomic_transition@plane-all-transition.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_atomic_transition@plane-all-transition.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-9:        NOTRUN -> [SKIP][124]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-tglu-1:       NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-tglu:         NOTRUN -> [SKIP][126] +32 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][127] ([i915#5190])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +7 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-tglu-1:       NOTRUN -> [SKIP][129] +31 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-dg2-9:        NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][131] ([i915#6095]) +166 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +108 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][133] ([i915#6095]) +34 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][134] ([i915#4423] / [i915#6095])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][135] ([i915#12805])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][136] ([i915#6095]) +29 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][137] ([i915#6095]) +8 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][138] ([i915#6095]) +45 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#12313]) +1 other test skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][141] ([i915#14098] / [i915#6095]) +37 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-tglu-1:       NOTRUN -> [SKIP][142] ([i915#3742])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#13783]) +3 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html

  * igt@kms_chamelium_audio@dp-audio-edid:
    - shard-dg2-9:        NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_chamelium_audio@dp-audio-edid.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-dg2:          NOTRUN -> [SKIP][145] +7 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-tglu-1:       NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +4 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +5 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-tglu:         NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +3 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_color@gamma:
    - shard-rkl:          [PASS][149] -> [SKIP][150] ([i915#12655] / [i915#14544]) +2 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_color@gamma.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_color@gamma.html

  * igt@kms_content_protection@content-type-change:
    - shard-tglu:         NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-tglu:         NOTRUN -> [SKIP][152] ([i915#3116] / [i915#3299])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][153] ([i915#9424])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_content_protection@lic-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#13049])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglu-1:       NOTRUN -> [SKIP][155] ([i915#13049])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [FAIL][156] ([i915#13566]) +1 other test fail
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][157] ([i915#13566])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [FAIL][158] ([i915#13566]) +1 other test fail
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#4103] / [i915#4213]) +2 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][160] ([i915#13046] / [i915#5354]) +3 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-tglu-1:       NOTRUN -> [SKIP][161] ([i915#1769] / [i915#3555] / [i915#3804])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][162] ([i915#3804])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-rkl:          [PASS][163] -> [SKIP][164] ([i915#14544]) +55 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_draw_crc@draw-method-mmap-gtt.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#3840] / [i915#9688])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-tglu-1:       NOTRUN -> [SKIP][166] ([i915#3840])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-tglu:         NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-tglu-1:       NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#1839])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
    - shard-snb:          [PASS][171] -> [FAIL][172] ([i915#10826] / [i915#11832]) +1 other test fail
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-tglu-1:       NOTRUN -> [SKIP][173] ([i915#3637] / [i915#9934]) +1 other test skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-dg2-9:        NOTRUN -> [SKIP][174] ([i915#9934]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-snb:          [PASS][175] -> [TIMEOUT][176] ([i915#14033] / [i915#14350])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
    - shard-snb:          [PASS][177] -> [TIMEOUT][178] ([i915#14033])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-tglu:         NOTRUN -> [SKIP][179] ([i915#3637] / [i915#9934]) +3 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-dg2:          NOTRUN -> [SKIP][180] ([i915#9934]) +6 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@bo-too-big:
    - shard-rkl:          [PASS][181] -> [SKIP][182] ([i915#14544] / [i915#3637]) +5 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_flip@bo-too-big.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_flip@bo-too-big.html

  * igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a1:
    - shard-tglu:         [PASS][183] -> [FAIL][184] ([i915#10826]) +1 other test fail
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-tglu-10/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a1.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-tglu:         [PASS][185] -> [ABORT][186] ([i915#14627] / [i915#14973])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@nonexisting-fb:
    - shard-rkl:          NOTRUN -> [SKIP][187] ([i915#14544] / [i915#3637])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_flip@nonexisting-fb.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#2672])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/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-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][189] ([i915#2672]) +2 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-rkl:          [PASS][190] -> [SKIP][191] ([i915#14544] / [i915#3555]) +3 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-tglu:         NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672] / [i915#3555])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) +3 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-tglu-1:       NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672]) +3 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +2 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-snb:          NOTRUN -> [SKIP][197] +22 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu:
    - shard-glk10:        NOTRUN -> [SKIP][198] +137 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
    - shard-dg2-9:        NOTRUN -> [SKIP][199] ([i915#8708]) +1 other test skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#14544] / [i915#1849] / [i915#5354]) +4 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
    - shard-rkl:          [PASS][201] -> [SKIP][202] ([i915#14544] / [i915#1849] / [i915#5354]) +5 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][203] ([i915#15102] / [i915#3458]) +10 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][204] ([i915#15102]) +9 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][205] ([i915#15102]) +9 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][206] ([i915#15104]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#15102]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2-9:        NOTRUN -> [SKIP][208] ([i915#15102] / [i915#3458]) +1 other test skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#8708]) +12 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#5354]) +19 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
    - shard-dg2-9:        NOTRUN -> [SKIP][211] ([i915#5354]) +3 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_hdr@bpc-switch:
    - shard-tglu:         NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +1 other test skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-tglu-1:       NOTRUN -> [SKIP][214] ([i915#12713])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-dg2-9:        NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +1 other test skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_invalid_mode@bad-vsync-start:
    - shard-rkl:          [PASS][216] -> [SKIP][217] ([i915#14544] / [i915#3555] / [i915#8826])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-start.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-start.html

  * igt@kms_invalid_mode@overflow-vrefresh:
    - shard-rkl:          [PASS][218] -> [SKIP][219] ([i915#14544] / [i915#8826])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_invalid_mode@overflow-vrefresh.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_invalid_mode@overflow-vrefresh.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][220] ([i915#13688])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][221] ([i915#12339])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][222] ([i915#10656])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_pipe_crc_basic@read-crc:
    - shard-rkl:          [PASS][223] -> [SKIP][224] ([i915#11190] / [i915#14544])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_pipe_crc_basic@read-crc.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_pipe_crc_basic@read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-dg2-9:        NOTRUN -> [INCOMPLETE][225] ([i915#12756] / [i915#13409] / [i915#13476])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
    - shard-dg2-9:        NOTRUN -> [INCOMPLETE][226] ([i915#13409] / [i915#13476])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][227] ([i915#13026]) +1 other test incomplete
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb:
    - shard-rkl:          [PASS][228] -> [SKIP][229] ([i915#14544] / [i915#7294]) +1 other test skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#8821])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-tglu-1:       NOTRUN -> [SKIP][231] ([i915#13958])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@tiling-none@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][232] ([i915#12964]) +8 other tests dmesg-warn
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-7/igt@kms_plane_multiple@tiling-none@pipe-b-hdmi-a-1.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2-9:        NOTRUN -> [SKIP][233] ([i915#14259])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-tglu-1:       NOTRUN -> [SKIP][234] ([i915#12247]) +4 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][235] ([i915#12247]) +4 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
    - shard-rkl:          [PASS][236] -> [SKIP][237] ([i915#14544] / [i915#8152]) +1 other test skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
    - shard-rkl:          [PASS][238] -> [SKIP][239] ([i915#12247] / [i915#14544] / [i915#8152]) +5 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
    - shard-rkl:          [PASS][240] -> [SKIP][241] ([i915#12247] / [i915#14544]) +4 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20:
    - shard-rkl:          [PASS][242] -> [SKIP][243] ([i915#14544] / [i915#6953] / [i915#8152]) +1 other test skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-tglu:         NOTRUN -> [SKIP][244] ([i915#9812])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][245] ([i915#9812])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-tglu:         NOTRUN -> [SKIP][246] ([i915#9685])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-tglu:         NOTRUN -> [SKIP][247] ([i915#8430])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - shard-dg1:          [PASS][248] -> [DMESG-WARN][249] ([i915#4423])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg1-16/igt@kms_pm_rpm@basic-pci-d3-state.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg1-18/igt@kms_pm_rpm@basic-pci-d3-state.html

  * igt@kms_pm_rpm@basic-rte:
    - shard-rkl:          [PASS][250] -> [DMESG-FAIL][251] ([i915#12964])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_pm_rpm@basic-rte.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_pm_rpm@basic-rte.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2:          [PASS][252] -> [SKIP][253] ([i915#15073])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@i2c:
    - shard-glk:          NOTRUN -> [FAIL][254] ([i915#8717])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk5/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#15073])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          [PASS][256] -> [SKIP][257] ([i915#15073]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-tglu:         NOTRUN -> [SKIP][258] ([i915#6524])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_prime@basic-crc-vgem:
    - shard-rkl:          [PASS][259] -> [SKIP][260] ([i915#14544] / [i915#6524])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_prime@basic-crc-vgem.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html

  * igt@kms_prime@d3hot:
    - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#6524] / [i915#6805])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_prime@d3hot.html

  * igt@kms_properties@plane-properties-legacy:
    - shard-rkl:          [PASS][262] -> [SKIP][263] ([i915#11521] / [i915#14544]) +1 other test skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_properties@plane-properties-legacy.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
    - shard-glk10:        NOTRUN -> [SKIP][264] ([i915#11520]) +3 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
    - shard-tglu:         NOTRUN -> [SKIP][265] ([i915#11520]) +3 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
    - shard-dg2-9:        NOTRUN -> [SKIP][266] ([i915#11520]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-tglu-1:       NOTRUN -> [SKIP][267] ([i915#11520]) +3 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
    - shard-dg2:          NOTRUN -> [SKIP][268] ([i915#11520]) +5 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-snb:          NOTRUN -> [SKIP][269] ([i915#11520])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-glk:          NOTRUN -> [SKIP][270] ([i915#11520]) +9 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][271] ([i915#11520] / [i915#14544])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-primary-blt:
    - shard-dg2:          NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +15 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_psr@fbc-psr-primary-blt.html

  * igt@kms_psr@fbc-psr-primary-mmap-gtt:
    - shard-dg2-9:        NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +2 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_psr@fbc-psr-primary-mmap-gtt.html

  * igt@kms_psr@pr-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][274] ([i915#9732]) +9 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-tglu-1:       NOTRUN -> [SKIP][275] ([i915#9732]) +10 other tests skip
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_psr@psr2-cursor-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][276] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][277] ([i915#12755] / [i915#5190])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-tglu-1:       NOTRUN -> [SKIP][278] ([i915#3555]) +1 other test skip
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options:
    - shard-rkl:          NOTRUN -> [FAIL][279] ([i915#15119]) +2 other tests fail
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_selftest@drm_cmdline_parser@drm_test_cmdline_tv_options.html

  * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb888:
    - shard-glk:          NOTRUN -> [FAIL][280] ([i915#15119]) +20 other tests fail
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb888.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-dg2:          NOTRUN -> [SKIP][281] ([i915#3555]) +7 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-dg2-9:        NOTRUN -> [SKIP][282] ([i915#3555])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_setmode@invalid-clone-exclusive-crtc.html
    - shard-tglu:         NOTRUN -> [SKIP][283] ([i915#3555])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2:          NOTRUN -> [SKIP][284] ([i915#8623])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglu-1:       NOTRUN -> [SKIP][285] ([i915#8623])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][286] ([i915#12276]) +1 other test incomplete
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-glk10/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][287] ([i915#12276])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-dg2:          NOTRUN -> [SKIP][288] ([i915#9906])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-rkl:          NOTRUN -> [SKIP][289] ([i915#14544]) +6 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-tglu:         NOTRUN -> [SKIP][290] ([i915#2437] / [i915#9412])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#2437])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html

  * igt@perf@mi-rpc:
    - shard-dg2:          NOTRUN -> [SKIP][292] ([i915#2434])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@perf@mi-rpc.html

  * igt@perf_pmu@busy-double-start@rcs0:
    - shard-mtlp:         [PASS][293] -> [FAIL][294] ([i915#4349])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-tglu:         NOTRUN -> [SKIP][295] ([i915#8516])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@perf_pmu@rc6-all-gts.html

  * igt@perf_pmu@rc6@other-idle-gt0:
    - shard-dg2:          NOTRUN -> [SKIP][296] ([i915#8516])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@perf_pmu@rc6@other-idle-gt0.html

  * igt@prime_vgem@basic-fence-mmap:
    - shard-dg2:          NOTRUN -> [SKIP][297] ([i915#3708] / [i915#4077])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-dg2:          NOTRUN -> [SKIP][298] ([i915#3708])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-3/igt@prime_vgem@fence-flip-hang.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
    - shard-tglu:         NOTRUN -> [FAIL][299] ([i915#12910]) +8 other tests fail
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-10/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-dg2:          NOTRUN -> [SKIP][300] ([i915#4818])
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@fbdev@read:
    - shard-rkl:          [SKIP][301] ([i915#14544] / [i915#2582]) -> [PASS][302]
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@fbdev@read.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@fbdev@read.html

  * igt@gem_eio@hibernate:
    - shard-rkl:          [FAIL][303] ([i915#15136]) -> [PASS][304]
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@gem_eio@hibernate.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_eio@hibernate.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [INCOMPLETE][305] ([i915#13356]) -> [PASS][306] +1 other test pass
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg2:          [TIMEOUT][307] ([i915#5493]) -> [PASS][308] +1 other test pass
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_pxp@fail-invalid-protected-context:
    - shard-rkl:          [TIMEOUT][309] ([i915#12964]) -> [PASS][310]
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@gem_pxp@fail-invalid-protected-context.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-8/igt@gem_pxp@fail-invalid-protected-context.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-rkl:          [TIMEOUT][311] ([i915#12917] / [i915#12964]) -> [PASS][312] +1 other test pass
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg2:          [DMESG-WARN][313] ([i915#13447]) -> [PASS][314]
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-rkl:          [INCOMPLETE][315] ([i915#4817]) -> [PASS][316]
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-dg2-9:        [FAIL][317] ([i915#5956]) -> [PASS][318] +1 other test pass
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_color@degamma:
    - shard-rkl:          [SKIP][319] ([i915#12655] / [i915#14544]) -> [PASS][320]
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_color@degamma.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_color@degamma.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][321] ([i915#13566]) -> [PASS][322] +1 other test pass
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x128:
    - shard-rkl:          [SKIP][323] ([i915#14544]) -> [PASS][324] +22 other tests pass
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html

  * igt@kms_cursor_edge_walk@64x64-top-edge:
    - shard-rkl:          [DMESG-WARN][325] ([i915#12917] / [i915#12964]) -> [PASS][326]
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_cursor_edge_walk@64x64-top-edge.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-8/igt@kms_cursor_edge_walk@64x64-top-edge.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-snb:          [SKIP][327] -> [PASS][328] +2 other tests pass
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-snb1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-mtlp:         [FAIL][329] ([i915#13027]) -> [PASS][330] +1 other test pass
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-mtlp-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-mtlp-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-rkl:          [SKIP][331] ([i915#14544] / [i915#3637]) -> [PASS][332] +2 other tests pass
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-rkl:          [SKIP][333] ([i915#14544] / [i915#3555]) -> [PASS][334] +1 other test pass
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
    - shard-rkl:          [SKIP][335] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][336]
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
    - shard-rkl:          [DMESG-WARN][337] ([i915#12964]) -> [PASS][338] +4 other tests pass
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html

  * igt@kms_invalid_mode@bad-vsync-end:
    - shard-rkl:          [SKIP][339] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][340]
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_invalid_mode@bad-vsync-end.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
    - shard-rkl:          [SKIP][341] ([i915#11190] / [i915#14544]) -> [PASS][342] +1 other test pass
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers:
    - shard-rkl:          [SKIP][343] ([i915#14544] / [i915#8152]) -> [PASS][344] +1 other test pass
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
    - shard-rkl:          [SKIP][345] ([i915#12247] / [i915#14544]) -> [PASS][346] +1 other test pass
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
    - shard-rkl:          [SKIP][347] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][348] +1 other test pass
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          [SKIP][349] ([i915#15073]) -> [PASS][350] +2 other tests pass
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@i2c:
    - shard-dg1:          [DMESG-WARN][351] ([i915#4423]) -> [PASS][352] +2 other tests pass
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg1-18/igt@kms_pm_rpm@i2c.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg1-12/igt@kms_pm_rpm@i2c.html

  * igt@kms_properties@crtc-properties-legacy:
    - shard-rkl:          [SKIP][353] ([i915#11521] / [i915#14544]) -> [PASS][354]
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_properties@crtc-properties-legacy.html

  
#### Warnings ####

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-rkl:          [SKIP][355] ([i915#9323]) -> [SKIP][356] ([i915#14544] / [i915#9323])
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-rkl:          [SKIP][357] ([i915#7697]) -> [SKIP][358] ([i915#14544] / [i915#7697])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_create@create-ext-set-pat:
    - shard-rkl:          [SKIP][359] ([i915#8562]) -> [SKIP][360] ([i915#14544] / [i915#8562])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@gem_create@create-ext-set-pat.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_create@create-ext-set-pat.html

  * igt@gem_exec_balancer@parallel:
    - shard-rkl:          [SKIP][361] ([i915#4525]) -> [SKIP][362] ([i915#14544] / [i915#4525]) +2 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@gem_exec_balancer@parallel.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_reloc@basic-gtt-cpu-active:
    - shard-rkl:          [SKIP][363] ([i915#14544] / [i915#3281]) -> [SKIP][364] ([i915#3281]) +4 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html

  * igt@gem_exec_reloc@basic-write-read-noreloc:
    - shard-rkl:          [SKIP][365] ([i915#3281]) -> [SKIP][366] ([i915#14544] / [i915#3281]) +7 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          [SKIP][367] ([i915#2190]) -> [SKIP][368] ([i915#14544] / [i915#2190])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-rkl:          [SKIP][369] ([i915#14544] / [i915#4613]) -> [SKIP][370] ([i915#4613]) +2 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-rkl:          [SKIP][371] ([i915#4613]) -> [SKIP][372] ([i915#14544] / [i915#4613]) +2 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pxp@create-regular-buffer:
    - shard-rkl:          [SKIP][373] ([i915#14544] / [i915#4270]) -> [TIMEOUT][374] ([i915#12917] / [i915#12964])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@gem_pxp@create-regular-buffer.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@create-regular-context-1:
    - shard-rkl:          [SKIP][375] ([i915#4270]) -> [SKIP][376] ([i915#14544] / [i915#4270])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_pxp@create-regular-context-1.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          [SKIP][377] ([i915#13717]) -> [TIMEOUT][378] ([i915#12917] / [i915#12964])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-rkl:          [SKIP][379] ([i915#14544] / [i915#4270]) -> [TIMEOUT][380] ([i915#12964])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-rkl:          [SKIP][381] ([i915#8411]) -> [SKIP][382] ([i915#14544] / [i915#8411])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-rkl:          [SKIP][383] ([i915#3282]) -> [SKIP][384] ([i915#14544] / [i915#3282]) +6 other tests skip
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-rkl:          [SKIP][385] ([i915#14544] / [i915#3297]) -> [SKIP][386] ([i915#3297]) +1 other test skip
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-rkl:          [SKIP][387] ([i915#3282] / [i915#3297]) -> [SKIP][388] ([i915#14544] / [i915#3282] / [i915#3297])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-rkl:          [SKIP][389] ([i915#14544] / [i915#2527]) -> [SKIP][390] ([i915#2527])
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-rkl:          [SKIP][391] ([i915#2527]) -> [SKIP][392] ([i915#14544] / [i915#2527]) +4 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-rkl:          [SKIP][393] ([i915#14544]) -> [SKIP][394] +8 other tests skip
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          [SKIP][395] ([i915#14544] / [i915#7707]) -> [SKIP][396] ([i915#7707])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@intel_hwmon@hwmon-read.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-rkl:          [SKIP][397] ([i915#14544]) -> [SKIP][398] ([i915#9531])
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
    - shard-rkl:          [SKIP][399] ([i915#14544]) -> [SKIP][400] ([i915#5286]) +3 other tests skip
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-rkl:          [SKIP][401] ([i915#5286]) -> [SKIP][402] ([i915#14544]) +5 other tests skip
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-rkl:          [SKIP][403] ([i915#14544]) -> [SKIP][404] ([i915#3638])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-rkl:          [SKIP][405] ([i915#3638]) -> [SKIP][406] ([i915#14544])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
    - shard-rkl:          [SKIP][407] ([i915#14544]) -> [SKIP][408] ([i915#14098] / [i915#6095]) +8 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
    - shard-dg1:          [SKIP][409] ([i915#6095]) -> [SKIP][410] ([i915#4423] / [i915#6095])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-rkl:          [SKIP][411] ([i915#14544]) -> [SKIP][412] ([i915#12805])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][413] ([i915#12805]) -> [SKIP][414] ([i915#14544])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][415] ([i915#6095]) -> [SKIP][416] ([i915#14098] / [i915#6095]) +3 other tests skip
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
    - shard-rkl:          [SKIP][417] ([i915#14098] / [i915#6095]) -> [SKIP][418] ([i915#14544]) +11 other tests skip
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-rkl:          [SKIP][419] ([i915#14544] / [i915#3742]) -> [SKIP][420] ([i915#3742])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-rkl:          [SKIP][421] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][422] ([i915#11151] / [i915#7828]) +3 other tests skip
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-rkl:          [SKIP][423] ([i915#11151] / [i915#7828]) -> [SKIP][424] ([i915#11151] / [i915#14544] / [i915#7828]) +9 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_content_protection@lic-type-0:
    - shard-rkl:          [SKIP][425] ([i915#9424]) -> [SKIP][426] ([i915#14544])
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_content_protection@lic-type-0.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          [SKIP][427] ([i915#9424]) -> [SKIP][428] ([i915#9433])
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg1-17/igt@kms_content_protection@mei-interface.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg1-12/igt@kms_content_protection@mei-interface.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-rkl:          [SKIP][429] ([i915#14544]) -> [SKIP][430] ([i915#13049])
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-rkl:          [FAIL][431] ([i915#13566]) -> [SKIP][432] ([i915#14544])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-rkl:          [SKIP][433] ([i915#13049]) -> [SKIP][434] ([i915#14544]) +1 other test skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-rkl:          [SKIP][435] ([i915#14544]) -> [FAIL][436] ([i915#13566])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-rkl:          [SKIP][437] ([i915#3555]) -> [SKIP][438] ([i915#14544]) +3 other tests skip
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          [SKIP][439] -> [SKIP][440] ([i915#14544]) +15 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-rkl:          [SKIP][441] ([i915#11190] / [i915#14544]) -> [SKIP][442] ([i915#4103])
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-rkl:          [SKIP][443] ([i915#9723]) -> [SKIP][444] ([i915#14544])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-rkl:          [SKIP][445] ([i915#13691]) -> [SKIP][446] ([i915#14544])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-rkl:          [SKIP][447] ([i915#3555] / [i915#3804]) -> [SKIP][448] ([i915#14544])
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dsc@dsc-basic:
    - shard-rkl:          [SKIP][449] ([i915#3555] / [i915#3840]) -> [SKIP][450] ([i915#11190] / [i915#14544])
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_dsc@dsc-basic.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-rkl:          [SKIP][451] ([i915#14544]) -> [SKIP][452] ([i915#3840]) +1 other test skip
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-rkl:          [SKIP][453] ([i915#3555] / [i915#3840]) -> [SKIP][454] ([i915#14544])
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          [SKIP][455] ([i915#3955]) -> [SKIP][456] ([i915#14544] / [i915#3955])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@psr1:
    - shard-rkl:          [SKIP][457] ([i915#658]) -> [SKIP][458] ([i915#14544] / [i915#658])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_feature_discovery@psr1.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-rkl:          [SKIP][459] ([i915#14544] / [i915#9934]) -> [SKIP][460] ([i915#9934]) +2 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-rkl:          [SKIP][461] ([i915#9934]) -> [SKIP][462] ([i915#14544] / [i915#9934]) +4 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-rkl:          [SKIP][463] ([i915#2672] / [i915#3555]) -> [SKIP][464] ([i915#14544] / [i915#3555]) +3 other tests skip
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-rkl:          [SKIP][465] ([i915#14544] / [i915#3555]) -> [SKIP][466] ([i915#2672] / [i915#3555]) +2 other tests skip
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][467] ([i915#14544]) -> [SKIP][468] ([i915#15102]) +2 other tests skip
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-rkl:          [SKIP][469] ([i915#15102]) -> [SKIP][470] ([i915#14544]) +2 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-rkl:          [SKIP][471] ([i915#1825]) -> [SKIP][472] ([i915#14544] / [i915#1849] / [i915#5354]) +31 other tests skip
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][473] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][474] ([i915#1825]) +18 other tests skip
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
    - shard-rkl:          [SKIP][475] ([i915#15102] / [i915#3023]) -> [SKIP][476] ([i915#14544] / [i915#1849] / [i915#5354]) +17 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
    - shard-dg2:          [SKIP][477] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][478] ([i915#15102] / [i915#3458]) +4 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
    - shard-dg2:          [SKIP][479] ([i915#15102] / [i915#3458]) -> [SKIP][480] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-rkl:          [SKIP][481] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][482] ([i915#15102] / [i915#3023]) +7 other tests skip
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-rkl:          [SKIP][483] ([i915#14544]) -> [SKIP][484] ([i915#3555] / [i915#8228])
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-rkl:          [SKIP][485] ([i915#12713]) -> [SKIP][486] ([i915#14544])
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-rkl:          [SKIP][487] ([i915#3555] / [i915#8228]) -> [SKIP][488] ([i915#14544])
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-rkl:          [SKIP][489] ([i915#12339] / [i915#14544]) -> [SKIP][490] ([i915#12339])
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-rkl:          [SKIP][491] ([i915#10656]) -> [SKIP][492] ([i915#10656] / [i915#14544])
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-5/igt@kms_joiner@invalid-modeset-big-joiner.html
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][493] ([i915#4070] / [i915#4816]) -> [SKIP][494] ([i915#1839] / [i915#4816])
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-rkl:          [SKIP][495] ([i915#6301]) -> [SKIP][496] ([i915#14544])
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_panel_fitting@legacy.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-rkl:          [SKIP][497] ([i915#14544]) -> [SKIP][498] ([i915#13958])
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-rkl:          [SKIP][499] ([i915#13958]) -> [SKIP][500] ([i915#14544])
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-y.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-rkl:          [SKIP][501] ([i915#6953]) -> [SKIP][502] ([i915#14544] / [i915#6953] / [i915#8152])
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][503] ([i915#12247]) -> [SKIP][504] ([i915#12247] / [i915#14544])
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
    - shard-rkl:          [SKIP][505] ([i915#12247]) -> [SKIP][506] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][507] ([i915#12247] / [i915#14544]) -> [SKIP][508] ([i915#12247])
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-rkl:          [SKIP][509] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][510] ([i915#12247]) +1 other test skip
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

  * igt@kms_pm_backlight@fade:
    - shard-rkl:          [SKIP][511] ([i915#5354]) -> [SKIP][512] ([i915#14544] / [i915#5354])
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_pm_backlight@fade.html
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-rkl:          [SKIP][513] ([i915#14544] / [i915#5354]) -> [SKIP][514] ([i915#5354])
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-tglu:         [FAIL][515] ([i915#9295]) -> [SKIP][516] ([i915#15128])
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          [SKIP][517] ([i915#4281]) -> [SKIP][518] ([i915#14544] / [i915#4281])
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          [SKIP][519] ([i915#15073]) -> [SKIP][520] ([i915#14544] / [i915#15073]) +2 other tests skip
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [SKIP][521] ([i915#15073]) -> [DMESG-WARN][522] ([i915#12964])
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-rkl:          [DMESG-WARN][523] ([i915#12964]) -> [SKIP][524] ([i915#14544] / [i915#15073])
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-rkl:          [SKIP][525] ([i915#11520] / [i915#14544]) -> [SKIP][526] ([i915#11520]) +3 other tests skip
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-rkl:          [SKIP][527] ([i915#11520]) -> [SKIP][528] ([i915#11520] / [i915#14544]) +6 other tests skip
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-rkl:          [SKIP][529] ([i915#9683]) -> [SKIP][530] ([i915#14544] / [i915#9683])
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_psr2_su@page_flip-p010.html
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-rkl:          [SKIP][531] ([i915#1072] / [i915#9732]) -> [SKIP][532] ([i915#1072] / [i915#14544] / [i915#9732]) +15 other tests skip
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-rkl:          [SKIP][533] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][534] ([i915#1072] / [i915#9732]) +10 other tests skip
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_psr@pr-cursor-plane-onoff.html
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-rkl:          [SKIP][535] ([i915#5289]) -> [SKIP][536] ([i915#14544])
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-rkl:          [SKIP][537] ([i915#14544]) -> [SKIP][538] ([i915#3555]) +1 other test skip
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-rkl:          [SKIP][539] ([i915#3555]) -> [SKIP][540] ([i915#14544] / [i915#3555])
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_setmode@clone-exclusive-crtc.html
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-rkl:          [SKIP][541] ([i915#14544]) -> [SKIP][542] ([i915#8623]) +1 other test skip
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vblank@wait-forked-busy-hang:
    - shard-rkl:          [SKIP][543] ([i915#14544]) -> [DMESG-WARN][544] ([i915#12964]) +1 other test dmesg-warn
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@kms_vblank@wait-forked-busy-hang.html
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-3/igt@kms_vblank@wait-forked-busy-hang.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-rkl:          [SKIP][545] ([i915#9906]) -> [SKIP][546] ([i915#14544])
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-virtual.html
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@perf@mi-rpc:
    - shard-rkl:          [SKIP][547] ([i915#14544] / [i915#2434]) -> [SKIP][548] ([i915#2434])
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@perf@mi-rpc.html
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@perf@mi-rpc.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-rkl:          [SKIP][549] ([i915#14544] / [i915#2435]) -> [SKIP][550] ([i915#2435])
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html

  * igt@prime_vgem@basic-read:
    - shard-rkl:          [SKIP][551] ([i915#3291] / [i915#3708]) -> [SKIP][552] ([i915#14544] / [i915#3291] / [i915#3708])
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-2/igt@prime_vgem@basic-read.html
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@prime_vgem@basic-read.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-rkl:          [SKIP][553] ([i915#14544] / [i915#3708]) -> [SKIP][554] ([i915#3708]) +1 other test skip
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-rkl:          [SKIP][555] ([i915#9917]) -> [SKIP][556] ([i915#14544] / [i915#9917])
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17407/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html

  
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
  [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
  [i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
  [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
  [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13447]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
  [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14627]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14627
  [i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
  [i915#14973]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14973
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15119
  [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
  [i915#15136]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15136
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
  [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
  [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
  [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
  [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


Build changes
-------------

  * Linux: CI_DRM_17407 -> Patchwork_156341v1

  CI-20190529: 20190529
  CI_DRM_17407: 602d56f809ae2450a720a0fbedcfe84ff38ffb98 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8594: 8594
  Patchwork_156341v1: 602d56f809ae2450a720a0fbedcfe84ff38ffb98 @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_156341v1/index.html

[-- Attachment #2: Type: text/html, Size: 180623 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband
  2025-10-22 16:08   ` Hogander, Jouni
@ 2025-10-23  6:05     ` Hogander, Jouni
  0 siblings, 0 replies; 6+ messages in thread
From: Hogander, Jouni @ 2025-10-23  6:05 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: intel-xe@lists.freedesktop.org, Nautiyal, Ankit K,
	intel-gfx@lists.freedesktop.org

On Wed, 2025-10-22 at 19:08 +0300, Hogander, Jouni wrote:
> On Wed, 2025-10-22 at 18:37 +0300, Ville Syrjälä wrote:
> > On Wed, Oct 22, 2025 at 03:25:52PM +0300, Jouni Högander wrote:
> > > We started seeing "[drm] *ERROR* Timed out waiting PSR idle
> > > state"
> > > after
> > > taking optimized guardband into use. These are seen because VSC
> > > SDPs are
> > > sent on same line as AS SDPs when AS SDP is enabled. AS SDP is
> > > sent
> > > on line
> > > configured in EMP_AS_SDP_TL register. We are configuring
> > > crtc_state->vrr.vsync_start into that register.
> > > 
> > > Fix this by ensuring AS SDP is sent on line which is within
> > > guardband. From the bspec:
> > > 
> > > EMP_AS_SDP_TL < SCL + Guardband
> > > 
> > > Bspec: 71197
> > > 
> > > Fixes: 52ecd48b8d3f ("drm/i915/dp: Add helper to get min sdp
> > > guardband")
> > > Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > > ---
> > >  drivers/gpu/drm/i915/display/intel_dp.c | 15 ++++++++++++---
> > >  1 file changed, 12 insertions(+), 3 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > > b/drivers/gpu/drm/i915/display/intel_dp.c
> > > index b0aeb6c2de86c..54b5e060be82a 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > > @@ -7026,7 +7026,7 @@ int intel_dp_compute_config_late(struct
> > > intel_encoder *encoder,
> > >  }
> > >  
> > >  static
> > > -int intel_dp_get_lines_for_sdp(u32 type)
> > > +int intel_dp_get_lines_for_sdp(const struct intel_crtc_state
> > > *crtc_state, u32 type)
> > >  {
> > >  	switch (type) {
> > >  	case DP_SDP_VSC_EXT_VESA:
> > > @@ -7036,6 +7036,8 @@ int intel_dp_get_lines_for_sdp(u32 type)
> > >  		return 8;
> > >  	case DP_SDP_PPS:
> > >  		return 7;
> > > +	case DP_SDP_ADAPTIVE_SYNC:
> > > +		return crtc_state->vrr.vsync_start + 1;
> > 
> > Is the +1 actually needed? I get the impression the bspec page
> > isn't
> > being very accurate with the '<' usage.
> > 
> > Hmm, there is an extra note in the EMP_AS_SDP_TL register:
> > "For DP/eDP, if there is a set context latency (SCL) window, then
> > it
> >  cannot be the first line of SCL
> >  For DP/eDP, if there is no SCL window, then it cannot be the first
> > line 
> >  of the Delayed V. Blank"
> > So I guess there might be a real reason for that extra line.
> 
> I actually tested without that +1 and I still saw those timeouts. So
> that also supports the idea we need that.
> 
> > 
> > Though I'm pretty sure no one has even confirmed that we don't have
> > any
> > off by one errors in EMP_AS_SDP_TL/etc. Should do that at some
> > point...
> > 
> > >  	default:
> > >  		break;
> > >  	}
> > > @@ -7052,11 +7054,18 @@ int intel_dp_sdp_min_guardband(const
> > > struct
> > > intel_crtc_state *crtc_state,
> > >  	    crtc_state->infoframes.enable &
> > >  	   
> > > intel_hdmi_infoframe_enable(HDMI_PACKET_TYPE_GAMUT_METADATA))
> > >  		sdp_guardband = max(sdp_guardband,
> > > -				   
> > > intel_dp_get_lines_for_sdp(HDMI_PACKET_TYPE_GAMUT_METADATA));
> > > +				   
> > > intel_dp_get_lines_for_sdp(crtc_state,
> > > +							      
> > > HDMI_PACKET_TYPE_GAMUT_METADATA));
> > >  
> > >  	if (assume_all_enabled ||
> > >  	    crtc_state->dsc.compression_enable)
> > > -		sdp_guardband = max(sdp_guardband,
> > > intel_dp_get_lines_for_sdp(DP_SDP_PPS));
> > > +		sdp_guardband = max(sdp_guardband,
> > > +				   
> > > intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_PPS));
> > > +
> > > +	if (assume_all_enabled ||
> > 
> > assume_all_enable && HAS_AS_SDP() ?
> 
> Ok, I will change this.

a New version sent. Please check.

BR,

Jouni Högander

> 
> BR,
> 
> Jouni Högander
> 
> > 
> > > +	    crtc_state->infoframes.enable &
> > > intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))
> > > +		sdp_guardband = max(sdp_guardband,
> > > +				   
> > > intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_ADAPTIVE_SYNC));
> > >  
> > >  	return sdp_guardband;
> > >  }
> > > -- 
> > > 2.43.0
> > 
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-10-23  6:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-22 12:25 [PATCH] drm/i915/display: Take into account AS SDP in intel_dp_sdp_min_guardband Jouni Högander
2025-10-22 15:37 ` Ville Syrjälä
2025-10-22 16:08   ` Hogander, Jouni
2025-10-23  6:05     ` Hogander, Jouni
2025-10-22 22:40 ` ✓ i915.CI.BAT: success for " Patchwork
2025-10-23  4:44 ` ✗ 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