public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
@ 2026-03-06 13:49 Jani Nikula
  2026-03-06 17:41 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Jani Nikula @ 2026-03-06 13:49 UTC (permalink / raw)
  To: igt-dev; +Cc: ville.syrjala, jani.nikula

Convert the test to use for_each_crtc() to avoid having to use
igt_crtc_for_pipe(). Prefer crtc->crtc_index over crtc->pipe.

As a side effect, fix an off-by-one in i <= num_pipes loop.

Note: The implementation relies on the fact that on AMD hardware
for_each_crtc() returns CRTCs in CRTC index order.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 tests/amdgpu/amd_mode_switch.c | 60 +++++++++++++++++++---------------
 1 file changed, 34 insertions(+), 26 deletions(-)

diff --git a/tests/amdgpu/amd_mode_switch.c b/tests/amdgpu/amd_mode_switch.c
index 4da07c412996..5815ec34cb12 100644
--- a/tests/amdgpu/amd_mode_switch.c
+++ b/tests/amdgpu/amd_mode_switch.c
@@ -39,12 +39,12 @@ static void test_init(data_t *data)
 	igt_crtc_t *crtc;
 
 	for_each_crtc(display, crtc) {
-		igt_output_t *output = &display->outputs[crtc->pipe];
+		igt_output_t *output = &display->outputs[crtc->crtc_index];
 
-		data->primary[crtc->pipe] = igt_crtc_get_plane_type(crtc,
-								    DRM_PLANE_TYPE_PRIMARY);
+		data->primary[crtc->crtc_index] = igt_crtc_get_plane_type(crtc,
+									  DRM_PLANE_TYPE_PRIMARY);
 
-		data->output[crtc->pipe] = output;
+		data->output[crtc->crtc_index] = output;
 	}
 
 	igt_require(data->output[0]);
@@ -79,13 +79,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
 {
 	igt_display_t *display = &data->display;
 	igt_output_t *output;
+	igt_crtc_t *crtc;
 	struct igt_fb *buffer1[MAX_PIPES] = { NULL };
 	struct igt_fb *buffer2[MAX_PIPES] = { NULL };
 	drmModeConnectorPtr conn;
 	drmModeModeInfoPtr kmode;
 	void *user_data = NULL;
-	int i = 0;
-	int j = 0;
 
 	test_init(data);
 
@@ -94,11 +93,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
 		      "ASIC does not have %d outputs/pipes\n", num_pipes);
 
 	/* First supported mode */
+	for_each_crtc(display, crtc) {
+		if (crtc->crtc_index >= num_pipes)
+			break;
 
-	for (j = 0; j < num_pipes; j++) {
-		igt_crtc_t *crtc = igt_crtc_for_pipe(display, j);
-
-		output = data->output[j];
+		output = data->output[crtc->crtc_index];
 		if (!igt_output_is_connected(output))
 			continue;
 
@@ -106,18 +105,18 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
 			data->fd, output->config.connector->connector_id);
 
 		kmode = &conn->modes[0];
-		if (buffer1[j] == NULL) {
+		if (buffer1[crtc->crtc_index] == NULL) {
 			igt_fb_t fb;
-			buffer1[j] = &fb;
+			buffer1[crtc->crtc_index] = &fb;
 			igt_create_color_fb(data->fd, kmode->hdisplay,
 					    kmode->vdisplay,
 					    DRM_FORMAT_XRGB8888,
 					    DRM_FORMAT_MOD_NONE, 1.f, 0.f,
-					    0.f, buffer1[j]);
+					    0.f, buffer1[crtc->crtc_index]);
 		}
 		igt_output_set_crtc(output, crtc);
 		force_output_mode(data, output, kmode);
-		igt_plane_set_fb(data->primary[j], buffer1[j]);
+		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
 		drmModeFreeConnector(conn);
 	}
 
@@ -126,8 +125,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
 
 	/* Last supported mode */
 
-	for (j = 0; j < num_pipes; j++) {
-		output = data->output[j];
+	for_each_crtc(display, crtc) {
+		if (crtc->crtc_index >= num_pipes)
+			break;
+
+		output = data->output[crtc->crtc_index];
 		if (!igt_output_is_connected(output))
 			continue;
 
@@ -135,17 +137,17 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
 			data->fd, output->config.connector->connector_id);
 
 		kmode = &conn->modes[conn->count_modes - 1];
-		if (buffer2[j] == NULL) {
+		if (buffer2[crtc->crtc_index] == NULL) {
 			igt_fb_t fb;
-			buffer2[j] = &fb;
+			buffer2[crtc->crtc_index] = &fb;
 			igt_create_color_fb(data->fd, kmode->hdisplay,
 					    kmode->vdisplay,
 					    DRM_FORMAT_XRGB8888,
 					    DRM_FORMAT_MOD_NONE, 1.f, 0.f,
-					    0.f, buffer2[j]);
+					    0.f, buffer2[crtc->crtc_index]);
 		}
 		force_output_mode(data, output, kmode);
-		igt_plane_set_fb(data->primary[j], buffer2[j]);
+		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer2[crtc->crtc_index]);
 		drmModeFreeConnector(conn);
 	}
 
@@ -153,8 +155,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
 				  user_data);
 
 	/* First supported again */
-	for (j = 0; j < num_pipes; j++) {
-		output = data->output[j];
+	for_each_crtc(display, crtc) {
+		if (crtc->crtc_index >= num_pipes)
+			break;
+
+		output = data->output[crtc->crtc_index];
 		if (!igt_output_is_connected(output))
 			continue;
 
@@ -163,7 +168,7 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
 
 		kmode = &conn->modes[0];
 		force_output_mode(data, output, kmode);
-		igt_plane_set_fb(data->primary[j], buffer1[j]);
+		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
 		drmModeFreeConnector(conn);
 	}
 
@@ -172,9 +177,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
 
 	test_fini(data);
 
-	for (i = 0; i <= num_pipes; i++) {
-		igt_remove_fb(data->fd, buffer1[i]);
-		igt_remove_fb(data->fd, buffer2[i]);
+	for_each_crtc(display, crtc) {
+		if (crtc->crtc_index >= num_pipes)
+			break;
+
+		igt_remove_fb(data->fd, buffer1[crtc->crtc_index]);
+		igt_remove_fb(data->fd, buffer2[crtc->crtc_index]);
 	}
 }
 
-- 
2.47.3


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

* ✓ Xe.CI.BAT: success for tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
  2026-03-06 13:49 [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc() Jani Nikula
@ 2026-03-06 17:41 ` Patchwork
  2026-03-06 17:54 ` ✓ i915.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-06 17:41 UTC (permalink / raw)
  To: Jani Nikula; +Cc: igt-dev

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

== Series Details ==

Series: tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
URL   : https://patchwork.freedesktop.org/series/162760/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8783_BAT -> XEIGTPW_14692_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (14 -> 14)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html

  
  [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483


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

  * IGT: IGT_8783 -> IGTPW_14692

  IGTPW_14692: 83e84a5c038f06cc61dc2c0f6464d10a98c2ecc5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8783: b5051dc2e867005c758c707312aa9cf9d1dc3291 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4674-a48305e6a2e6a1ed90df374101dd29542c105d8f: a48305e6a2e6a1ed90df374101dd29542c105d8f

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/index.html

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

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

* ✓ i915.CI.BAT: success for tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
  2026-03-06 13:49 [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc() Jani Nikula
  2026-03-06 17:41 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-03-06 17:54 ` Patchwork
  2026-03-07 19:23 ` ✓ Xe.CI.FULL: " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-06 17:54 UTC (permalink / raw)
  To: Jani Nikula; +Cc: igt-dev

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

== Series Details ==

Series: tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
URL   : https://patchwork.freedesktop.org/series/162760/
State : success

== Summary ==

CI Bug Log - changes from IGT_8783 -> IGTPW_14692
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (41 -> 39)
------------------------------

  Missing    (2): bat-dg2-13 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8783 -> IGTPW_14692

  CI-20190529: 20190529
  CI_DRM_18104: a48305e6a2e6a1ed90df374101dd29542c105d8f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14692: 83e84a5c038f06cc61dc2c0f6464d10a98c2ecc5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8783: b5051dc2e867005c758c707312aa9cf9d1dc3291 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
  2026-03-06 13:49 [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc() Jani Nikula
  2026-03-06 17:41 ` ✓ Xe.CI.BAT: success for " Patchwork
  2026-03-06 17:54 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-07 19:23 ` Patchwork
  2026-03-07 20:44 ` ✗ i915.CI.Full: failure " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-07 19:23 UTC (permalink / raw)
  To: Jani Nikula; +Cc: igt-dev

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

== Series Details ==

Series: tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
URL   : https://patchwork.freedesktop.org/series/162760/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8783_FULL -> XEIGTPW_14692_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [PASS][1] -> [FAIL][2] ([Intel XE#6054]) +3 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][3] ([Intel XE#1407])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#2327]) +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#1124])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#1124]) +8 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#1512] / [Intel XE#7392])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#367] / [Intel XE#7354]) +2 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2652]) +8 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2887]) +8 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-5/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2724] / [Intel XE#7449])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-7/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2325] / [Intel XE#7358]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-10/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2252]) +5 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-c-plane-2:
    - shard-lnl:          NOTRUN -> [FAIL][15] ([Intel XE#7305]) +9 other tests fail
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-1/igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-c-plane-2.html

  * igt@kms_content_protection@mei-interface:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2341])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][17] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2320]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#309] / [Intel XE#7343])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#323] / [Intel XE#6035])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2286] / [Intel XE#6035])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#4354] / [Intel XE#5870])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-10/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#4331] / [Intel XE#7227])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2244])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats.html
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#2244])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#4422] / [Intel XE#7442])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html

  * igt@kms_fbcon_fbt@psr:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#6126] / [Intel XE#776])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-4/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][28] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7178] / [Intel XE#7349])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#7178] / [Intel XE#7351])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2311]) +27 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#6312] / [Intel XE#651])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#4141]) +8 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#6312])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#656]) +3 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2313]) +14 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#7308])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [PASS][40] -> [SKIP][41] ([Intel XE#1503])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@kms_hdr@invalid-hdr.html

  * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#1450] / [Intel XE#7394]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-4/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html

  * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#1450] / [Intel XE#2568] / [Intel XE#7394]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-4/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#7283])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#7130]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#7283]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#4596] / [Intel XE#5854])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#5021] / [Intel XE#7377])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][50] -> [FAIL][51] ([Intel XE#7340])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@package-g7:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#6813])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-3/igt@kms_pm_rpm@package-g7.html
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#6814] / [Intel XE#7428])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-5/igt@kms_pm_rpm@package-g7.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#1489]) +4 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@pr-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-9/igt@kms_psr@pr-sprite-render.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_sharpness_filter@filter-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#6503])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@kms_sharpness_filter@filter-dpms.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-bmg:          [PASS][59] -> [FAIL][60] ([Intel XE#5937])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#4837]) +7 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug_online@pagefault-read-stress:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#6665] / [Intel XE#6681])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@xe_eudebug_online@pagefault-read-stress.html

  * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-6/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html

  * igt@xe_evict@evict-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#6540] / [Intel XE#688])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-8/igt@xe_evict@evict-large-multi-vm.html

  * igt@xe_exec_balancer@no-exec-virtual-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#7482]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-5/igt@xe_exec_balancer@no-exec-virtual-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#1392])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#7136]) +9 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html

  * igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#7136]) +2 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-8/igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#6874]) +19 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority-smem:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#6874]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority-smem.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [PASS][72] -> [FAIL][73] ([Intel XE#5625])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  * igt@xe_exec_threads@threads-multi-queue-cm-fd-basic:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#7138]) +8 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html

  * igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#7138])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#6964]) +3 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-4/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html

  * igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#6964])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-4/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html

  * igt@xe_pm@d3cold-i2c:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#5694] / [Intel XE#7370])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-10/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#2284] / [Intel XE#7370])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7456])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#944]) +2 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-9/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_sriov_admin@sched-priority-vf-write-denied:
    - shard-lnl:          NOTRUN -> [SKIP][84] ([Intel XE#7174])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-2/igt@xe_sriov_admin@sched-priority-vf-write-denied.html

  
#### Possible fixes ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-bmg:          [FAIL][85] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
    - shard-bmg:          [FAIL][87] ([Intel XE#6078]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
    - shard-bmg:          [ABORT][89] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][90] +1 other test pass
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-bmg:          [INCOMPLETE][91] ([Intel XE#6891]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-7/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_pm_rpm@universal-planes-dpms@plane-144:
    - shard-bmg:          [INCOMPLETE][93] -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms@plane-144.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-7/igt@kms_pm_rpm@universal-planes-dpms@plane-144.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][95] ([Intel XE#4459]) -> [PASS][96] +1 other test pass
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [FAIL][97] ([Intel XE#5625]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_pm_residency@aspm_link_residency:
    - shard-bmg:          [SKIP][99] ([Intel XE#7258]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-6/igt@xe_pm_residency@aspm_link_residency.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-2/igt@xe_pm_residency@aspm_link_residency.html

  
#### Warnings ####

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][101] ([Intel XE#3544]) -> [SKIP][102] ([Intel XE#3374] / [Intel XE#3544])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][103] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][104] ([Intel XE#1729] / [Intel XE#7424])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8783/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
  [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
  [Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
  [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6891]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6891
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305
  [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
  [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7392
  [Intel XE#7394]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7394
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7456]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7456
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8783 -> IGTPW_14692

  IGTPW_14692: 83e84a5c038f06cc61dc2c0f6464d10a98c2ecc5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8783: b5051dc2e867005c758c707312aa9cf9d1dc3291 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4674-a48305e6a2e6a1ed90df374101dd29542c105d8f: a48305e6a2e6a1ed90df374101dd29542c105d8f

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14692/index.html

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

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

* ✗ i915.CI.Full: failure for tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
  2026-03-06 13:49 [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc() Jani Nikula
                   ` (2 preceding siblings ...)
  2026-03-07 19:23 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-03-07 20:44 ` Patchwork
  2026-03-16 16:23 ` [PATCH i-g-t] " Kamil Konieczny
  2026-03-18 13:00 ` Kamil Konieczny
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-07 20:44 UTC (permalink / raw)
  To: Jani Nikula; +Cc: igt-dev

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

== Series Details ==

Series: tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
URL   : https://patchwork.freedesktop.org/series/162760/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8783_full -> IGTPW_14692_full
====================================================

Summary
-------

  **FAILURE**

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

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

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-glk:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-glk8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  
New tests
---------

  New tests have been introduced between IGT_8783_full and IGTPW_14692_full:

### New IGT tests (25) ###

  * igt@i915_pm_rps@4-tiled-32bpp-rotate-270:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@bad-open:
    - Statuses :
    - Exec time: [None] s

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

  * igt@i915_pm_rps@basic-max-non-joiner:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@dp-mst-lic-type-1:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@etime-multi-wait-all-for-submit-unsubmitted:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@etime-single-wait-for-submit-submitted:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@fbc-1p-offscreen-pri-shrfb-draw-render:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@fbc-rgb565-draw-mmap-cpu:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@fbcpsr-1p-primscrn-indfb-msflip-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@fence-restore-tiled2untiled:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@flip-vs-dpms-on-nop:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@getfb-handle-zero:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@lease-invalid-crtc:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@linear-32bpp-rotate-0:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@max-min:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@multigpu-create-close:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@pixel-format-yf-tiled-modifier:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@plane-all-transition-nonblocking-fencing:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@precise:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@short-flip-before-cursor-toggle:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@x-tiled-32bpp-rotate-90:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@y-tiled-8bpp-rotate-0:
    - Statuses :
    - Exec time: [None] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@device_reset@unbind-reset-rebind:
    - shard-dg1:          NOTRUN -> [ABORT][3] ([i915#11814] / [i915#11815])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html

  * igt@drm_buddy@drm_buddy:
    - shard-tglu-1:       NOTRUN -> [SKIP][4] ([i915#15678])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@drm_buddy@drm_buddy.html

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-tglu:         NOTRUN -> [SKIP][5] ([i915#13008])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-4/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [PASS][6] -> [INCOMPLETE][7] ([i915#13356]) +1 other test incomplete
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg2-8/igt@gem_ccs@suspend-resume.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-3/igt@gem_ccs@suspend-resume.html

  * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          [PASS][8] -> [INCOMPLETE][9] ([i915#12392] / [i915#13356])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-tglu:         NOTRUN -> [SKIP][10] ([i915#7697])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_ctx_persistence@engines-persistence:
    - shard-snb:          NOTRUN -> [SKIP][11] ([i915#1099]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-snb1/igt@gem_ctx_persistence@engines-persistence.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#8555])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html
    - shard-dg1:          NOTRUN -> [SKIP][13] ([i915#8555])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#8555])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_eio@in-flight-suspend:
    - shard-rkl:          [PASS][15] -> [INCOMPLETE][16] ([i915#13390])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-5/igt@gem_eio@in-flight-suspend.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_balancer@bonded-semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][17] ([i915#4812])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-3/igt@gem_exec_balancer@bonded-semaphore.html
    - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#4812])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-7/igt@gem_exec_balancer@bonded-semaphore.html

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

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [SKIP][20] ([i915#4525])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu:         [PASS][21] -> [ABORT][22] ([i915#11713])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-tglu-10/igt@gem_exec_big@single.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-5/igt@gem_exec_big@single.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-glk:          NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk3/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_params@secure-non-master:
    - shard-dg2:          NOTRUN -> [SKIP][24] +7 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-8/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#3281]) +4 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
    - shard-dg1:          NOTRUN -> [SKIP][26] ([i915#3281]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-14/igt@gem_exec_reloc@basic-cpu-noreloc.html
    - shard-mtlp:         NOTRUN -> [SKIP][27] ([i915#3281]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][28] ([i915#3281]) +12 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#4537] / [i915#4812])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html
    - shard-dg1:          NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-17/igt@gem_exec_schedule@reorder-wide.html
    - shard-mtlp:         NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-6/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_exec_suspend@basic-s3@smem:
    - shard-snb:          [PASS][32] -> [ABORT][33] ([i915#14871]) +1 other test abort
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-snb4/igt@gem_exec_suspend@basic-s3@smem.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-snb5/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@gem_fence_thrash@bo-write-verify-threaded-none:
    - shard-dg1:          NOTRUN -> [SKIP][34] ([i915#4860])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
    - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#4860])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4860]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-threaded-none.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-rkl:          NOTRUN -> [SKIP][37] ([i915#14544] / [i915#4613]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_lmem_swapping@random:
    - shard-glk:          NOTRUN -> [SKIP][38] ([i915#4613]) +5 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk3/igt@gem_lmem_swapping@random.html

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

  * igt@gem_lmem_swapping@verify-random:
    - shard-tglu:         NOTRUN -> [SKIP][40] ([i915#4613])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-4/igt@gem_lmem_swapping@verify-random.html
    - shard-mtlp:         NOTRUN -> [SKIP][41] ([i915#4613]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-2/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_mmap_gtt@bad-object:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#4077]) +6 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-4/igt@gem_mmap_gtt@bad-object.html

  * igt@gem_mmap_gtt@big-bo-tiledy:
    - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#4077]) +6 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@gem_mmap_gtt@big-bo-tiledy.html

  * igt@gem_mmap_wc@read:
    - shard-dg1:          NOTRUN -> [SKIP][44] ([i915#4083]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@gem_mmap_wc@read.html
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4083]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@gem_mmap_wc@read.html

  * igt@gem_mmap_wc@write-wc-read-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4083]) +4 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html

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

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][48] ([i915#3282]) +6 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gem_pwrite@basic-random:
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-4/igt@gem_pwrite@basic-random.html
    - shard-dg1:          NOTRUN -> [SKIP][50] ([i915#3282]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-19/igt@gem_pwrite@basic-random.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-tglu-1:       NOTRUN -> [SKIP][51] ([i915#13398])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@verify-pxp-stale-ctx-execution:
    - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#4270])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
    - shard-rkl:          NOTRUN -> [SKIP][53] ([i915#4270])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
    - shard-dg1:          NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#8428]) +3 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html

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

  * igt@gem_softpin@noreloc-s3:
    - shard-glk:          NOTRUN -> [INCOMPLETE][57] ([i915#13809])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk2/igt@gem_softpin@noreloc-s3.html

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

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-rkl:          NOTRUN -> [SKIP][59] ([i915#3282] / [i915#3297])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#3297] / [i915#4880])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
    - shard-dg1:          NOTRUN -> [SKIP][61] ([i915#3297] / [i915#4880])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#3297])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][63] ([i915#3297]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html

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

  * igt@gen9_exec_parse@bb-start-out:
    - shard-rkl:          NOTRUN -> [SKIP][65] ([i915#2527]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html

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

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

  * igt@i915_drm_fdinfo@virtual-busy-hang:
    - shard-mtlp:         NOTRUN -> [SKIP][68] ([i915#14118]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-2/igt@i915_drm_fdinfo@virtual-busy-hang.html

  * igt@i915_drm_fdinfo@virtual-busy-idle-all:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#14118]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
    - shard-dg1:          NOTRUN -> [SKIP][70] ([i915#14118]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-idle-all.html

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][71] ([i915#8399]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][72] ([i915#13356] / [i915#13820]) +1 other test incomplete
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-tglu-1:       NOTRUN -> [SKIP][73] ([i915#6590]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglu:         NOTRUN -> [WARN][74] ([i915#13790] / [i915#2681]) +1 other test warn
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][75] ([i915#13356])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk2/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_pm_sseu@full-enable:
    - shard-rkl:          NOTRUN -> [SKIP][76] ([i915#4387])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@i915_pm_sseu@full-enable.html

  * igt@i915_query@test-query-geometry-subslices:
    - shard-tglu:         NOTRUN -> [SKIP][77] ([i915#5723])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-6/igt@i915_query@test-query-geometry-subslices.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-tglu-1:       NOTRUN -> [INCOMPLETE][78] ([i915#4817] / [i915#7443])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@debugfs-reader:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][79] ([i915#4817])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@i915_suspend@debugfs-reader.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-rkl:          [PASS][80] -> [INCOMPLETE][81] ([i915#4817])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@i915_suspend@sysfs-reader:
    - shard-rkl:          [PASS][82] -> [ABORT][83] ([i915#15140])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@i915_suspend@sysfs-reader.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@i915_suspend@sysfs-reader.html

  * igt@intel_hwmon@hwmon-read:
    - shard-tglu-1:       NOTRUN -> [SKIP][84] ([i915#7707])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-rkl:          NOTRUN -> [SKIP][85] ([i915#12454] / [i915#12712])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-glk:          [PASS][86] -> [FAIL][87] ([i915#14888]) +1 other test fail
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#9531])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-rkl:          NOTRUN -> [SKIP][89] ([i915#9531])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-tglu-1:       NOTRUN -> [SKIP][90] ([i915#9531])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-dg1:          NOTRUN -> [SKIP][91] ([i915#9531])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk:          NOTRUN -> [SKIP][92] ([i915#1769])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-tglu:         NOTRUN -> [SKIP][93] ([i915#1769] / [i915#3555])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
    - shard-mtlp:         [PASS][94] -> [FAIL][95] ([i915#5956]) +1 other test fail
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html

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

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][97] ([i915#5286]) +2 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-0:
    - shard-dg1:          NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5286])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-tglu:         NOTRUN -> [SKIP][99] ([i915#5286]) +3 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][100] ([i915#14544] / [i915#3638])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2:          NOTRUN -> [SKIP][101] ([i915#3828])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
    - shard-rkl:          NOTRUN -> [SKIP][102] ([i915#3828])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
    - shard-tglu-1:       NOTRUN -> [SKIP][103] ([i915#3828])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
    - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#3828])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-tglu:         NOTRUN -> [SKIP][105] ([i915#3828])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][106] ([i915#3638]) +3 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-mtlp:         NOTRUN -> [SKIP][107] +7 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][108] ([i915#3638])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-rkl:          NOTRUN -> [SKIP][110] +22 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][111] ([i915#4538]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#6095]) +202 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][113] ([i915#6095]) +81 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][114] ([i915#14544] / [i915#6095]) +5 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][115] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][116] ([i915#6095]) +19 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][117] ([i915#15582]) +1 other test incomplete
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#14098] / [i915#6095]) +56 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][119] ([i915#14694] / [i915#15582]) +1 other test incomplete
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][120] ([i915#6095]) +29 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-edp-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][121] ([i915#6095]) +38 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +93 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#6095]) +59 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][124] ([i915#12313])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-glk:          NOTRUN -> [SKIP][126] +548 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk9/igt@kms_cdclk@mode-transition.html
    - shard-tglu:         NOTRUN -> [SKIP][127] ([i915#3742])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-5/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-rkl:          NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828]) +6 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-read.html
    - shard-dg1:          NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-14/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-rkl:          NOTRUN -> [SKIP][130] ([i915#11151] / [i915#14544] / [i915#7828])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
    - shard-tglu-1:       NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +4 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-tglu:         NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +4 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
    - shard-mtlp:         NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +1 other test skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-7/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
    - shard-dg2:          NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +1 other test skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_color@deep-color:
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#3555] / [i915#9979])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_color@deep-color.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][136] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][137] ([i915#15330])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-rkl:          NOTRUN -> [SKIP][138] ([i915#15330] / [i915#3116])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][139] ([i915#6944] / [i915#9424]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-7/igt@kms_content_protection@lic-type-0.html
    - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#6944] / [i915#9424])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-4/igt@kms_content_protection@lic-type-0.html
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#6944] / [i915#9424])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
    - shard-rkl:          NOTRUN -> [SKIP][142] ([i915#6944] / [i915#9424]) +1 other test skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_content_protection@lic-type-0.html
    - shard-dg1:          NOTRUN -> [SKIP][143] ([i915#6944] / [i915#9424])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-17/igt@kms_content_protection@lic-type-0.html

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

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][145] ([i915#14544] / [i915#6944])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-tglu:         [PASS][146] -> [FAIL][147] ([i915#13566]) +5 other tests fail
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-tglu:         NOTRUN -> [SKIP][148] ([i915#3555]) +1 other test skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-rkl:          [PASS][149] -> [FAIL][150] ([i915#13566])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-64x21.html

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

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-rkl:          NOTRUN -> [SKIP][152] ([i915#3555]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_cursor_crc@cursor-random-32x10.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][153] ([i915#13049])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-rkl:          NOTRUN -> [SKIP][154] ([i915#13049])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-dg1:          NOTRUN -> [SKIP][155] ([i915#13049])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-tglu:         NOTRUN -> [SKIP][156] ([i915#13049])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-3/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-mtlp:         NOTRUN -> [SKIP][157] ([i915#13049])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-tglu:         NOTRUN -> [FAIL][158] ([i915#13566]) +1 other test fail
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][159] ([i915#13566]) +2 other tests fail
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][160] ([i915#12358] / [i915#14152] / [i915#7882])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk3/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][161] ([i915#12358] / [i915#14152])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#4103])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
    - shard-rkl:          [PASS][163] -> [FAIL][164] ([i915#15564])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#13046] / [i915#5354]) +1 other test skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#9809]) +1 other test skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-tglu:         NOTRUN -> [SKIP][167] ([i915#9723])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

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

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

  * igt@kms_dp_aux_dev:
    - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#1257])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@kms_dp_aux_dev.html
    - shard-rkl:          NOTRUN -> [SKIP][171] ([i915#1257])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_dp_aux_dev.html
    - shard-dg1:          NOTRUN -> [SKIP][172] ([i915#1257])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-17/igt@kms_dp_aux_dev.html
    - shard-tglu:         NOTRUN -> [SKIP][173] ([i915#1257])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-7/igt@kms_dp_aux_dev.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-tglu:         NOTRUN -> [SKIP][174] ([i915#13707])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-basic:
    - shard-tglu:         NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-8/igt@kms_dsc@dsc-basic.html

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

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][177] ([i915#9878])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk11/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-rkl:          NOTRUN -> [SKIP][178] ([i915#4854])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-2x:
    - shard-tglu-1:       NOTRUN -> [SKIP][179] ([i915#1839])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2:          NOTRUN -> [SKIP][180] ([i915#9337])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html
    - shard-rkl:          NOTRUN -> [SKIP][181] ([i915#9337])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
    - shard-dg1:          NOTRUN -> [SKIP][182] ([i915#9337])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html
    - shard-tglu:         NOTRUN -> [SKIP][183] ([i915#9337])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-4/igt@kms_feature_discovery@dp-mst.html
    - shard-mtlp:         NOTRUN -> [SKIP][184] ([i915#9337])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-2/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#658])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-3/igt@kms_feature_discovery@psr1.html
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#658])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-8/igt@kms_feature_discovery@psr1.html
    - shard-rkl:          NOTRUN -> [SKIP][187] ([i915#658])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_feature_discovery@psr1.html
    - shard-dg1:          NOTRUN -> [SKIP][188] ([i915#658])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-16/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#9934]) +5 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-8/igt@kms_flip@2x-absolute-wf_vblank.html
    - shard-rkl:          NOTRUN -> [SKIP][190] ([i915#14544] / [i915#9934]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-tglu-1:       NOTRUN -> [SKIP][191] ([i915#3637] / [i915#9934])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][192] ([i915#9934]) +4 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-16/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
    - shard-tglu:         NOTRUN -> [SKIP][193] ([i915#3637] / [i915#9934]) +5 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
    - shard-mtlp:         NOTRUN -> [SKIP][194] ([i915#3637] / [i915#9934]) +4 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-rkl:          NOTRUN -> [SKIP][195] ([i915#9934]) +8 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][196] ([i915#12745] / [i915#4839])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk11/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][197] ([i915#12745])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk11/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-wf_vblank-interruptible:
    - shard-snb:          [PASS][198] -> [FAIL][199] ([i915#10826]) +1 other test fail
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-snb5/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-snb1/igt@kms_flip@flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-tglu:         NOTRUN -> [SKIP][200] ([i915#15643])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][201] ([i915#15643])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][202] ([i915#15643])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][203] ([i915#15643]) +4 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#15643])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
    - shard-glk10:        NOTRUN -> [SKIP][205] +97 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][206] ([i915#15643] / [i915#5190]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-rkl:          NOTRUN -> [SKIP][207] ([i915#14544]) +3 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite:
    - shard-dg2:          [PASS][208] -> [FAIL][209] ([i915#15389])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#8708]) +6 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
    - shard-dg1:          NOTRUN -> [SKIP][211] ([i915#8708]) +4 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][212] +21 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][213] ([i915#14544] / [i915#1825]) +2 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][214] ([i915#15102]) +5 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][215] ([i915#15102] / [i915#3458]) +4 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
    - shard-dg1:          NOTRUN -> [SKIP][216] ([i915#15102] / [i915#3458]) +3 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
    - shard-mtlp:         NOTRUN -> [SKIP][217] ([i915#1825]) +15 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][218] ([i915#8708]) +2 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
    - shard-tglu:         NOTRUN -> [SKIP][219] +48 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][220] ([i915#1825]) +44 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
    - shard-tglu:         NOTRUN -> [SKIP][221] ([i915#15102]) +15 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][222] ([i915#15102] / [i915#3023]) +19 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-tglu-1:       NOTRUN -> [SKIP][223] ([i915#9766])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][224] ([i915#15102]) +1 other test skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-snb:          NOTRUN -> [SKIP][226] +183 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][227] ([i915#5354]) +18 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-tglu:         NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228])
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-7/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_hdr@static-toggle.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-tglu-1:       NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#15458])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][232] ([i915#15458])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][233] ([i915#15460])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-rkl:          NOTRUN -> [SKIP][234] ([i915#15460])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-dg1:          NOTRUN -> [SKIP][235] ([i915#15460])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][236] ([i915#15460])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-6/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-mtlp:         NOTRUN -> [SKIP][237] ([i915#15460])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-3/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][238] ([i915#15459])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html

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

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][240] ([i915#15638] / [i915#15722])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
    - shard-rkl:          NOTRUN -> [SKIP][241] ([i915#15638] / [i915#15722])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][242] ([i915#15638] / [i915#15722])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
    - shard-mtlp:         NOTRUN -> [SKIP][243] ([i915#15638] / [i915#15722])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_lease@lease-uevent:
    - shard-dg1:          [PASS][244] -> [DMESG-WARN][245] ([i915#4423]) +2 other tests dmesg-warn
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg1-19/igt@kms_lease@lease-uevent.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-12/igt@kms_lease@lease-uevent.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#1839] / [i915#4816])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-tglu-1:       NOTRUN -> [SKIP][247] ([i915#6301])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
    - shard-dg1:          NOTRUN -> [SKIP][248] +22 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][249] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][250] ([i915#14544] / [i915#15709])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
    - shard-tglu-1:       NOTRUN -> [SKIP][251] ([i915#15709])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
    - shard-rkl:          NOTRUN -> [SKIP][252] ([i915#15709]) +3 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
    - shard-rkl:          NOTRUN -> [SKIP][253] ([i915#15608]) +1 other test skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
    - shard-tglu:         NOTRUN -> [SKIP][254] ([i915#15608]) +1 other test skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html

  * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
    - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#15709]) +2 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
    - shard-dg1:          NOTRUN -> [SKIP][256] ([i915#15709]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-tglu:         NOTRUN -> [SKIP][257] ([i915#15709]) +2 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][258] ([i915#15709]) +1 other test skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-8/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

  * igt@kms_plane_alpha_blend@alpha-opaque-fb:
    - shard-glk:          NOTRUN -> [FAIL][259] ([i915#10647] / [i915#12169])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][260] ([i915#10647]) +1 other test fail
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#8821])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html
    - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8821])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglu-1:       NOTRUN -> [SKIP][263] ([i915#3555]) +2 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-rkl:          NOTRUN -> [SKIP][264] ([i915#13958])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][265] ([i915#14259])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
    - shard-dg2:          NOTRUN -> [SKIP][266] ([i915#14259])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-8/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-tglu:         NOTRUN -> [SKIP][267] ([i915#14259])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-2/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
    - shard-mtlp:         NOTRUN -> [SKIP][268] ([i915#15329]) +4 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html

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

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-rkl:          NOTRUN -> [SKIP][270] ([i915#15329] / [i915#3555])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-tglu:         NOTRUN -> [SKIP][271] ([i915#9685])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-rkl:          NOTRUN -> [SKIP][272] ([i915#14544] / [i915#9685])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-rkl:          NOTRUN -> [SKIP][273] ([i915#8430])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@cursor:
    - shard-dg1:          NOTRUN -> [SKIP][274] ([i915#4077]) +6 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-19/igt@kms_pm_rpm@cursor.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][275] ([i915#15073])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-3/igt@kms_pm_rpm@dpms-non-lpsp.html
    - shard-rkl:          [PASS][276] -> [SKIP][277] ([i915#15073])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#15073])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
    - shard-dg1:          NOTRUN -> [SKIP][279] ([i915#15073])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg1:          [PASS][280] -> [SKIP][281] ([i915#15073])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-tglu-1:       NOTRUN -> [SKIP][282] ([i915#15073])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-snb:          NOTRUN -> [SKIP][283] ([i915#11520]) +5 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-snb7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
    - shard-dg1:          NOTRUN -> [SKIP][284] ([i915#11520]) +4 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][285] ([i915#9808])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][286] ([i915#12316]) +4 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html

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

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

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][289] ([i915#11520]) +14 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][290] ([i915#11520])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-rkl:          NOTRUN -> [SKIP][291] ([i915#11520]) +10 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> [SKIP][292] ([i915#11520]) +7 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
    - shard-glk10:        NOTRUN -> [SKIP][293] ([i915#11520]) +3 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk10/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-glk11:        NOTRUN -> [SKIP][294] ([i915#11520]) +1 other test skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg1:          NOTRUN -> [SKIP][295] ([i915#9683])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html
    - shard-tglu:         NOTRUN -> [SKIP][296] ([i915#9683])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-10/igt@kms_psr2_su@page_flip-nv12.html
    - shard-mtlp:         NOTRUN -> [SKIP][297] ([i915#4348])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-tglu-1:       NOTRUN -> [SKIP][298] ([i915#9683])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-rkl:          NOTRUN -> [SKIP][299] ([i915#9683]) +1 other test skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-cursor-plane-onoff:
    - shard-glk11:        NOTRUN -> [SKIP][300] +144 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk11/igt@kms_psr@fbc-pr-cursor-plane-onoff.html

  * igt@kms_psr@fbc-pr-sprite-plane-onoff:
    - shard-dg1:          NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +7 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-14/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
    - shard-mtlp:         NOTRUN -> [SKIP][302] ([i915#9688]) +4 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@kms_psr@fbc-pr-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr-basic:
    - shard-rkl:          NOTRUN -> [SKIP][303] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_psr@fbc-psr-basic.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-rkl:          NOTRUN -> [SKIP][304] ([i915#1072] / [i915#9732]) +22 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@pr-cursor-blt:
    - shard-dg2:          NOTRUN -> [SKIP][305] ([i915#1072] / [i915#9732]) +9 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-8/igt@kms_psr@pr-cursor-blt.html

  * igt@kms_psr@pr-sprite-mmap-cpu:
    - shard-tglu:         NOTRUN -> [SKIP][306] ([i915#9732]) +16 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_psr@pr-sprite-mmap-cpu.html

  * igt@kms_psr@pr-sprite-plane-onoff:
    - shard-tglu-1:       NOTRUN -> [SKIP][307] ([i915#9732]) +5 other tests skip
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-rkl:          NOTRUN -> [SKIP][308] ([i915#9685])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][309] ([i915#12755]) +1 other test skip
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@kms_rotation_crc@bad-tiling.html
    - shard-mtlp:         NOTRUN -> [SKIP][310] ([i915#12755])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-3/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][311] ([i915#15500])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk11/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-glk:          NOTRUN -> [INCOMPLETE][312] ([i915#15492])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-tglu:         NOTRUN -> [SKIP][313] ([i915#5289])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-tglu-1:       NOTRUN -> [ABORT][314] ([i915#13179]) +1 other test abort
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
    - shard-glk:          NOTRUN -> [ABORT][315] ([i915#13179]) +1 other test abort
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk6/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-mtlp:         [PASS][316] -> [FAIL][317] ([i915#15106]) +2 other tests fail
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-mtlp-6/igt@kms_setmode@basic@pipe-b-edp-1.html
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@kms_setmode@basic@pipe-b-hdmi-a-3:
    - shard-dg2:          [PASS][318] -> [FAIL][319] ([i915#15106]) +2 other tests fail
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg2-7/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-6/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-dg2:          NOTRUN -> [SKIP][320] ([i915#3555])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-1/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-glk:          NOTRUN -> [FAIL][321] ([i915#10959])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html

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

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

  * igt@kms_vrr@flip-basic-fastset:
    - shard-tglu:         NOTRUN -> [SKIP][324] ([i915#9906])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-rkl:          NOTRUN -> [SKIP][325] ([i915#9906])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-dg2:          NOTRUN -> [SKIP][326] ([i915#9906])
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-rkl:          NOTRUN -> [SKIP][327] ([i915#14544] / [i915#9906])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@global-sseu-config-invalid:
    - shard-mtlp:         NOTRUN -> [SKIP][328] ([i915#7387])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-4/igt@perf@global-sseu-config-invalid.html
    - shard-dg2:          NOTRUN -> [SKIP][329] ([i915#7387])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@perf@global-sseu-config-invalid.html

  * igt@perf@mi-rpc:
    - shard-rkl:          NOTRUN -> [SKIP][330] ([i915#2434])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@perf@mi-rpc.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-rkl:          NOTRUN -> [SKIP][331] ([i915#14544] / [i915#2433])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html

  * igt@perf_pmu@module-unload:
    - shard-rkl:          NOTRUN -> [ABORT][332] ([i915#15778])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@perf_pmu@module-unload.html

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

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

  * igt@prime_vgem@basic-fence-read:
    - shard-rkl:          NOTRUN -> [SKIP][335] ([i915#3291] / [i915#3708])
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@prime_vgem@basic-fence-read.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-tglu:         NOTRUN -> [FAIL][336] ([i915#12910]) +9 other tests fail
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-on.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@preservation-s3:
    - shard-rkl:          [INCOMPLETE][337] ([i915#13356]) -> [PASS][338] +1 other test pass
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         [FAIL][339] ([i915#15733] / [i915#5138]) -> [PASS][340]
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
    - shard-rkl:          [FAIL][341] ([i915#13566]) -> [PASS][342] +1 other test pass
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
    - shard-tglu:         [FAIL][343] ([i915#13566]) -> [PASS][344] +1 other test pass
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-9/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-edp-1:
    - shard-mtlp:         [DMESG-WARN][345] -> [PASS][346] +2 other tests pass
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-edp-1.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-a-edp-1.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-rkl:          [SKIP][347] ([i915#3555] / [i915#8228]) -> [PASS][348]
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-8/igt@kms_hdr@static-toggle-dpms.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_pipe_stress@stress-xrgb8888-xtiled:
    - shard-dg1:          [DMESG-WARN][349] ([i915#4423]) -> [PASS][350]
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg1-18/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          [SKIP][351] ([i915#15073]) -> [PASS][352] +2 other tests pass
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
    - shard-dg1:          [SKIP][353] ([i915#15073]) -> [PASS][354] +1 other test pass
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          [SKIP][355] ([i915#15073]) -> [PASS][356] +2 other tests pass
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-dg2:          [INCOMPLETE][357] ([i915#14419]) -> [PASS][358]
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html

  
#### Warnings ####

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-rkl:          [SKIP][359] ([i915#11078]) -> [SKIP][360] ([i915#11078] / [i915#14544])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@gem_bad_reloc@negative-reloc-lut:
    - shard-rkl:          [SKIP][361] ([i915#3281]) -> [SKIP][362] ([i915#14544] / [i915#3281]) +1 other test skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          [SKIP][363] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][364] ([i915#3555] / [i915#9323])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-rkl:          [SKIP][365] ([i915#14544] / [i915#6335]) -> [SKIP][366] ([i915#6335])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_exec_balancer@parallel:
    - shard-rkl:          [SKIP][367] ([i915#4525]) -> [SKIP][368] ([i915#14544] / [i915#4525])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@gem_exec_balancer@parallel.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-keep-submit-fence:
    - shard-rkl:          [SKIP][369] ([i915#14544] / [i915#4525]) -> [SKIP][370] ([i915#4525]) +1 other test skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-rkl:          [SKIP][371] ([i915#6334]) -> [SKIP][372] ([i915#14544] / [i915#6334]) +1 other test skip
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_reloc@basic-write-read:
    - shard-rkl:          [SKIP][373] ([i915#14544] / [i915#3281]) -> [SKIP][374] ([i915#3281]) +9 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-rkl:          [SKIP][375] ([i915#4613]) -> [SKIP][376] ([i915#14544] / [i915#4613])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-rkl:          [SKIP][377] ([i915#14544] / [i915#4613]) -> [SKIP][378] ([i915#4613]) +3 other tests skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_partial_pwrite_pread@reads:
    - shard-rkl:          [SKIP][379] ([i915#14544] / [i915#3282]) -> [SKIP][380] ([i915#3282]) +3 other tests skip
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          [SKIP][381] ([i915#13717]) -> [SKIP][382] ([i915#13717] / [i915#14544])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-context.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-rkl:          [SKIP][383] ([i915#3297]) -> [SKIP][384] ([i915#14544] / [i915#3297])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@unsync-unmap-after-close:
    - shard-rkl:          [SKIP][385] ([i915#14544] / [i915#3297]) -> [SKIP][386] ([i915#3297])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-rkl:          [SKIP][387] ([i915#14544] / [i915#2527]) -> [SKIP][388] ([i915#2527])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-rkl:          [SKIP][389] ([i915#2527]) -> [SKIP][390] ([i915#14544] / [i915#2527])
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_query@hwconfig_table:
    - shard-rkl:          [SKIP][391] ([i915#14544] / [i915#6245]) -> [SKIP][392] ([i915#6245])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@i915_query@hwconfig_table.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@i915_query@hwconfig_table.html

  * igt@intel_hwmon@hwmon-write:
    - shard-rkl:          [SKIP][393] ([i915#7707]) -> [SKIP][394] ([i915#14544] / [i915#7707])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@intel_hwmon@hwmon-write.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-rkl:          [SKIP][395] ([i915#5286]) -> [SKIP][396] ([i915#14544] / [i915#5286]) +1 other test skip
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-rkl:          [SKIP][397] ([i915#14544] / [i915#5286]) -> [SKIP][398] ([i915#5286]) +3 other tests skip
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-rkl:          [SKIP][399] ([i915#14544] / [i915#3638]) -> [SKIP][400] ([i915#3638])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
    - shard-rkl:          [SKIP][401] ([i915#14098] / [i915#6095]) -> [SKIP][402] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][403] ([i915#12313]) -> [SKIP][404] ([i915#12313] / [i915#14544]) +4 other tests skip
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
    - shard-rkl:          [SKIP][405] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][406] ([i915#14098] / [i915#6095]) +14 other tests skip
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][407] ([i915#14544] / [i915#6095]) -> [SKIP][408] ([i915#6095]) +6 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-rkl:          [SKIP][409] ([i915#14544] / [i915#3742]) -> [SKIP][410] ([i915#3742]) +1 other test skip
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-rkl:          [SKIP][411] ([i915#11151] / [i915#7828]) -> [SKIP][412] ([i915#11151] / [i915#14544] / [i915#7828])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-rkl:          [SKIP][413] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][414] ([i915#11151] / [i915#7828]) +6 other tests skip
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-rkl:          [SKIP][415] ([i915#14544] / [i915#6944]) -> [SKIP][416] ([i915#6944])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_content_protection@atomic-hdcp14.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_content_protection@atomic-hdcp14.html

  * igt@kms_content_protection@content-type-change:
    - shard-rkl:          [SKIP][417] ([i915#14544] / [i915#6944] / [i915#9424]) -> [SKIP][418] ([i915#6944] / [i915#9424])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_content_protection@content-type-change.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_content_protection@content-type-change.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-rkl:          [SKIP][419] ([i915#3555]) -> [SKIP][420] ([i915#14544] / [i915#3555]) +2 other tests skip
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-rkl:          [SKIP][421] ([i915#14544] / [i915#3555]) -> [SKIP][422] ([i915#3555]) +2 other tests skip
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          [SKIP][423] ([i915#14544]) -> [SKIP][424] +7 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-rkl:          [SKIP][425] -> [SKIP][426] ([i915#14544]) +1 other test skip
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-rkl:          [SKIP][427] ([i915#13749] / [i915#14544]) -> [SKIP][428] ([i915#13749])
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-rkl:          [SKIP][429] ([i915#13748]) -> [SKIP][430] ([i915#13748] / [i915#14544])
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-rkl:          [SKIP][431] ([i915#14544] / [i915#3840]) -> [SKIP][432] ([i915#3840])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-rkl:          [SKIP][433] ([i915#14544] / [i915#3840] / [i915#9053]) -> [SKIP][434] ([i915#3840] / [i915#9053])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-rkl:          [SKIP][435] ([i915#3955]) -> [SKIP][436] ([i915#14544] / [i915#3955])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-plain-flip:
    - shard-rkl:          [SKIP][437] ([i915#14544] / [i915#9934]) -> [SKIP][438] ([i915#9934]) +3 other tests skip
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-rkl:          [SKIP][439] ([i915#9934]) -> [SKIP][440] ([i915#14544] / [i915#9934]) +3 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-rkl:          [SKIP][441] ([i915#14544] / [i915#15643]) -> [SKIP][442] ([i915#15643]) +4 other tests skip
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
    - shard-rkl:          [SKIP][443] ([i915#15643]) -> [SKIP][444] ([i915#14544] / [i915#15643])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][445] ([i915#14544] / [i915#15102]) -> [SKIP][446] ([i915#15102])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][447] ([i915#15102] / [i915#3023]) -> [SKIP][448] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          [SKIP][449] ([i915#15102] / [i915#3458]) -> [SKIP][450] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
    - shard-dg2:          [SKIP][451] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][452] ([i915#15102] / [i915#3458]) +1 other test skip
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-rkl:          [SKIP][453] ([i915#9766]) -> [SKIP][454] ([i915#14544] / [i915#9766])
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
    - shard-rkl:          [SKIP][455] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][456] ([i915#15102] / [i915#3023]) +13 other tests skip
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][457] ([i915#14544] / [i915#1825]) -> [SKIP][458] ([i915#1825]) +23 other tests skip
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
    - shard-rkl:          [SKIP][459] ([i915#1825]) -> [SKIP][460] ([i915#14544] / [i915#1825]) +10 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg1:          [SKIP][461] ([i915#12713]) -> [SKIP][462] ([i915#1187] / [i915#12713])
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html

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

  * igt@kms_joiner@basic-big-joiner:
    - shard-rkl:          [SKIP][465] ([i915#14544] / [i915#15460]) -> [SKIP][466] ([i915#15460])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
    - shard-rkl:          [SKIP][467] ([i915#14544] / [i915#15709]) -> [SKIP][468] ([i915#15709]) +1 other test skip
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-rkl:          [SKIP][469] ([i915#14259] / [i915#14544]) -> [SKIP][470] ([i915#14259])
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-rkl:          [SKIP][471] ([i915#12343] / [i915#14544]) -> [SKIP][472] ([i915#12343])
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html

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

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg1:          [SKIP][475] ([i915#9685]) -> [SKIP][476] ([i915#4423] / [i915#9685])
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg1-19/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-19/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-tglu:         [FAIL][477] ([i915#15752]) -> [SKIP][478] ([i915#15128])
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-rkl:          [SKIP][479] ([i915#14544] / [i915#9685]) -> [SKIP][480] ([i915#9685])
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          [SKIP][481] ([i915#14544] / [i915#15739]) -> [SKIP][482] ([i915#15739])
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][483] ([i915#9340]) -> [SKIP][484] ([i915#3828])
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-rkl:          [SKIP][485] ([i915#11520]) -> [SKIP][486] ([i915#11520] / [i915#14544]) +2 other tests skip
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          [SKIP][487] ([i915#11520] / [i915#14544]) -> [SKIP][488] ([i915#11520]) +3 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@pr-sprite-mmap-cpu:
    - shard-dg1:          [SKIP][489] ([i915#1072] / [i915#9732]) -> [SKIP][490] ([i915#1072] / [i915#4423] / [i915#9732])
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-dg1-14/igt@kms_psr@pr-sprite-mmap-cpu.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-dg1-19/igt@kms_psr@pr-sprite-mmap-cpu.html

  * igt@kms_psr@psr-suspend:
    - shard-rkl:          [SKIP][491] ([i915#1072] / [i915#9732]) -> [SKIP][492] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-4/igt@kms_psr@psr-suspend.html
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@kms_psr@psr-suspend.html

  * igt@kms_psr@psr2-cursor-blt:
    - shard-rkl:          [SKIP][493] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][494] ([i915#1072] / [i915#9732]) +12 other tests skip
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@kms_psr@psr2-cursor-blt.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-rkl:          [SKIP][495] ([i915#14544] / [i915#5289]) -> [SKIP][496] ([i915#5289]) +1 other test skip
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_vrr@flipline:
    - shard-rkl:          [SKIP][497] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][498] ([i915#15243] / [i915#3555])
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_vrr@flipline.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-7/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-rkl:          [SKIP][499] ([i915#11920] / [i915#14544]) -> [SKIP][500] ([i915#11920])
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@kms_vrr@lobf.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-2/igt@kms_vrr@lobf.html

  * igt@perf_pmu@module-unload:
    - shard-tglu:         [ABORT][501] ([i915#13029] / [i915#15778]) -> [ABORT][502] ([i915#15778])
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-tglu-10/igt@perf_pmu@module-unload.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-tglu-5/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@rc6-suspend:
    - shard-glk:          [INCOMPLETE][503] ([i915#13356] / [i915#14242]) -> [INCOMPLETE][504] ([i915#13356])
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-glk1/igt@perf_pmu@rc6-suspend.html
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-glk3/igt@perf_pmu@rc6-suspend.html

  * igt@prime_vgem@coherency-gtt:
    - shard-rkl:          [SKIP][505] ([i915#14544] / [i915#3708]) -> [SKIP][506] ([i915#3708])
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-4/igt@prime_vgem@coherency-gtt.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-rkl:          [SKIP][507] ([i915#3708]) -> [SKIP][508] ([i915#14544] / [i915#3708])
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8783/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14692/shard-rkl-6/igt@prime_vgem@fence-flip-hang.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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
  [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
  [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
  [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
  [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
  [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [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#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
  [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
  [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
  [i915#14871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14871
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
  [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
  [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
  [i915#15564]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15564
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
  [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
  [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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
  [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#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#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
  [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
  [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#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [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#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [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#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
  [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8783 -> IGTPW_14692

  CI-20190529: 20190529
  CI_DRM_18104: a48305e6a2e6a1ed90df374101dd29542c105d8f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14692: 83e84a5c038f06cc61dc2c0f6464d10a98c2ecc5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8783: b5051dc2e867005c758c707312aa9cf9d1dc3291 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
  2026-03-06 13:49 [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc() Jani Nikula
                   ` (3 preceding siblings ...)
  2026-03-07 20:44 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-03-16 16:23 ` Kamil Konieczny
  2026-03-16 17:21   ` Pillai, Aurabindo
  2026-03-18 13:00 ` Kamil Konieczny
  5 siblings, 1 reply; 9+ messages in thread
From: Kamil Konieczny @ 2026-03-16 16:23 UTC (permalink / raw)
  To: Jani Nikula
  Cc: igt-dev, ville.syrjala, Rodrigo Siqueira, Aurabindo Pillai,
	Vitaly Prosyak

Hi Jani,
On 2026-03-06 at 15:49:37 +0200, Jani Nikula wrote:
> Convert the test to use for_each_crtc() to avoid having to use
> igt_crtc_for_pipe(). Prefer crtc->crtc_index over crtc->pipe.
> 
> As a side effect, fix an off-by-one in i <= num_pipes loop.
> 
> Note: The implementation relies on the fact that on AMD hardware
> for_each_crtc() returns CRTCs in CRTC index order.
> 

+cc amd developers
Cc: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>

Regards,
Kamil

> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  tests/amdgpu/amd_mode_switch.c | 60 +++++++++++++++++++---------------
>  1 file changed, 34 insertions(+), 26 deletions(-)
> 
> diff --git a/tests/amdgpu/amd_mode_switch.c b/tests/amdgpu/amd_mode_switch.c
> index 4da07c412996..5815ec34cb12 100644
> --- a/tests/amdgpu/amd_mode_switch.c
> +++ b/tests/amdgpu/amd_mode_switch.c
> @@ -39,12 +39,12 @@ static void test_init(data_t *data)
>  	igt_crtc_t *crtc;
>  
>  	for_each_crtc(display, crtc) {
> -		igt_output_t *output = &display->outputs[crtc->pipe];
> +		igt_output_t *output = &display->outputs[crtc->crtc_index];
>  
> -		data->primary[crtc->pipe] = igt_crtc_get_plane_type(crtc,
> -								    DRM_PLANE_TYPE_PRIMARY);
> +		data->primary[crtc->crtc_index] = igt_crtc_get_plane_type(crtc,
> +									  DRM_PLANE_TYPE_PRIMARY);
>  
> -		data->output[crtc->pipe] = output;
> +		data->output[crtc->crtc_index] = output;
>  	}
>  
>  	igt_require(data->output[0]);
> @@ -79,13 +79,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  {
>  	igt_display_t *display = &data->display;
>  	igt_output_t *output;
> +	igt_crtc_t *crtc;
>  	struct igt_fb *buffer1[MAX_PIPES] = { NULL };
>  	struct igt_fb *buffer2[MAX_PIPES] = { NULL };
>  	drmModeConnectorPtr conn;
>  	drmModeModeInfoPtr kmode;
>  	void *user_data = NULL;
> -	int i = 0;
> -	int j = 0;
>  
>  	test_init(data);
>  
> @@ -94,11 +93,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  		      "ASIC does not have %d outputs/pipes\n", num_pipes);
>  
>  	/* First supported mode */
> +	for_each_crtc(display, crtc) {
> +		if (crtc->crtc_index >= num_pipes)
> +			break;
>  
> -	for (j = 0; j < num_pipes; j++) {
> -		igt_crtc_t *crtc = igt_crtc_for_pipe(display, j);
> -
> -		output = data->output[j];
> +		output = data->output[crtc->crtc_index];
>  		if (!igt_output_is_connected(output))
>  			continue;
>  
> @@ -106,18 +105,18 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  			data->fd, output->config.connector->connector_id);
>  
>  		kmode = &conn->modes[0];
> -		if (buffer1[j] == NULL) {
> +		if (buffer1[crtc->crtc_index] == NULL) {
>  			igt_fb_t fb;
> -			buffer1[j] = &fb;
> +			buffer1[crtc->crtc_index] = &fb;
>  			igt_create_color_fb(data->fd, kmode->hdisplay,
>  					    kmode->vdisplay,
>  					    DRM_FORMAT_XRGB8888,
>  					    DRM_FORMAT_MOD_NONE, 1.f, 0.f,
> -					    0.f, buffer1[j]);
> +					    0.f, buffer1[crtc->crtc_index]);
>  		}
>  		igt_output_set_crtc(output, crtc);
>  		force_output_mode(data, output, kmode);
> -		igt_plane_set_fb(data->primary[j], buffer1[j]);
> +		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
>  		drmModeFreeConnector(conn);
>  	}
>  
> @@ -126,8 +125,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  
>  	/* Last supported mode */
>  
> -	for (j = 0; j < num_pipes; j++) {
> -		output = data->output[j];
> +	for_each_crtc(display, crtc) {
> +		if (crtc->crtc_index >= num_pipes)
> +			break;
> +
> +		output = data->output[crtc->crtc_index];
>  		if (!igt_output_is_connected(output))
>  			continue;
>  
> @@ -135,17 +137,17 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  			data->fd, output->config.connector->connector_id);
>  
>  		kmode = &conn->modes[conn->count_modes - 1];
> -		if (buffer2[j] == NULL) {
> +		if (buffer2[crtc->crtc_index] == NULL) {
>  			igt_fb_t fb;
> -			buffer2[j] = &fb;
> +			buffer2[crtc->crtc_index] = &fb;
>  			igt_create_color_fb(data->fd, kmode->hdisplay,
>  					    kmode->vdisplay,
>  					    DRM_FORMAT_XRGB8888,
>  					    DRM_FORMAT_MOD_NONE, 1.f, 0.f,
> -					    0.f, buffer2[j]);
> +					    0.f, buffer2[crtc->crtc_index]);
>  		}
>  		force_output_mode(data, output, kmode);
> -		igt_plane_set_fb(data->primary[j], buffer2[j]);
> +		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer2[crtc->crtc_index]);
>  		drmModeFreeConnector(conn);
>  	}
>  
> @@ -153,8 +155,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  				  user_data);
>  
>  	/* First supported again */
> -	for (j = 0; j < num_pipes; j++) {
> -		output = data->output[j];
> +	for_each_crtc(display, crtc) {
> +		if (crtc->crtc_index >= num_pipes)
> +			break;
> +
> +		output = data->output[crtc->crtc_index];
>  		if (!igt_output_is_connected(output))
>  			continue;
>  
> @@ -163,7 +168,7 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  
>  		kmode = &conn->modes[0];
>  		force_output_mode(data, output, kmode);
> -		igt_plane_set_fb(data->primary[j], buffer1[j]);
> +		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
>  		drmModeFreeConnector(conn);
>  	}
>  
> @@ -172,9 +177,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  
>  	test_fini(data);
>  
> -	for (i = 0; i <= num_pipes; i++) {
> -		igt_remove_fb(data->fd, buffer1[i]);
> -		igt_remove_fb(data->fd, buffer2[i]);
> +	for_each_crtc(display, crtc) {
> +		if (crtc->crtc_index >= num_pipes)
> +			break;
> +
> +		igt_remove_fb(data->fd, buffer1[crtc->crtc_index]);
> +		igt_remove_fb(data->fd, buffer2[crtc->crtc_index]);
>  	}
>  }
>  
> -- 
> 2.47.3
> 

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

* Re: [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
  2026-03-16 16:23 ` [PATCH i-g-t] " Kamil Konieczny
@ 2026-03-16 17:21   ` Pillai, Aurabindo
  2026-03-18 12:24     ` Jani Nikula
  0 siblings, 1 reply; 9+ messages in thread
From: Pillai, Aurabindo @ 2026-03-16 17:21 UTC (permalink / raw)
  To: Kamil Konieczny, Jani Nikula
  Cc: igt-dev@lists.freedesktop.org, ville.syrjala@linux.intel.com,
	Rodrigo Siqueira, Prosyak, Vitaly

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

[Public]

Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>

--

Regards,
Jay
________________________________
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Monday, March 16, 2026 12:23 PM
To: Jani Nikula <jani.nikula@intel.com>
Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>; ville.syrjala@linux.intel.com <ville.syrjala@linux.intel.com>; Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>; Pillai, Aurabindo <Aurabindo.Pillai@amd.com>; Prosyak, Vitaly <Vitaly.Prosyak@amd.com>
Subject: Re: [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc()

Hi Jani,
On 2026-03-06 at 15:49:37 +0200, Jani Nikula wrote:
> Convert the test to use for_each_crtc() to avoid having to use
> igt_crtc_for_pipe(). Prefer crtc->crtc_index over crtc->pipe.
>
> As a side effect, fix an off-by-one in i <= num_pipes loop.
>
> Note: The implementation relies on the fact that on AMD hardware
> for_each_crtc() returns CRTCs in CRTC index order.
>

+cc amd developers
Cc: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>

Regards,
Kamil

> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  tests/amdgpu/amd_mode_switch.c | 60 +++++++++++++++++++---------------
>  1 file changed, 34 insertions(+), 26 deletions(-)
>
> diff --git a/tests/amdgpu/amd_mode_switch.c b/tests/amdgpu/amd_mode_switch.c
> index 4da07c412996..5815ec34cb12 100644
> --- a/tests/amdgpu/amd_mode_switch.c
> +++ b/tests/amdgpu/amd_mode_switch.c
> @@ -39,12 +39,12 @@ static void test_init(data_t *data)
>        igt_crtc_t *crtc;
>
>        for_each_crtc(display, crtc) {
> -             igt_output_t *output = &display->outputs[crtc->pipe];
> +             igt_output_t *output = &display->outputs[crtc->crtc_index];
>
> -             data->primary[crtc->pipe] = igt_crtc_get_plane_type(crtc,
> -                                                                 DRM_PLANE_TYPE_PRIMARY);
> +             data->primary[crtc->crtc_index] = igt_crtc_get_plane_type(crtc,
> +                                                                       DRM_PLANE_TYPE_PRIMARY);
>
> -             data->output[crtc->pipe] = output;
> +             data->output[crtc->crtc_index] = output;
>        }
>
>        igt_require(data->output[0]);
> @@ -79,13 +79,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  {
>        igt_display_t *display = &data->display;
>        igt_output_t *output;
> +     igt_crtc_t *crtc;
>        struct igt_fb *buffer1[MAX_PIPES] = { NULL };
>        struct igt_fb *buffer2[MAX_PIPES] = { NULL };
>        drmModeConnectorPtr conn;
>        drmModeModeInfoPtr kmode;
>        void *user_data = NULL;
> -     int i = 0;
> -     int j = 0;
>
>        test_init(data);
>
> @@ -94,11 +93,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>                      "ASIC does not have %d outputs/pipes\n", num_pipes);
>
>        /* First supported mode */
> +     for_each_crtc(display, crtc) {
> +             if (crtc->crtc_index >= num_pipes)
> +                     break;
>
> -     for (j = 0; j < num_pipes; j++) {
> -             igt_crtc_t *crtc = igt_crtc_for_pipe(display, j);
> -
> -             output = data->output[j];
> +             output = data->output[crtc->crtc_index];
>                if (!igt_output_is_connected(output))
>                        continue;
>
> @@ -106,18 +105,18 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>                        data->fd, output->config.connector->connector_id);
>
>                kmode = &conn->modes[0];
> -             if (buffer1[j] == NULL) {
> +             if (buffer1[crtc->crtc_index] == NULL) {
>                        igt_fb_t fb;
> -                     buffer1[j] = &fb;
> +                     buffer1[crtc->crtc_index] = &fb;
>                        igt_create_color_fb(data->fd, kmode->hdisplay,
>                                            kmode->vdisplay,
>                                            DRM_FORMAT_XRGB8888,
>                                            DRM_FORMAT_MOD_NONE, 1.f, 0.f,
> -                                         0.f, buffer1[j]);
> +                                         0.f, buffer1[crtc->crtc_index]);
>                }
>                igt_output_set_crtc(output, crtc);
>                force_output_mode(data, output, kmode);
> -             igt_plane_set_fb(data->primary[j], buffer1[j]);
> +             igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
>                drmModeFreeConnector(conn);
>        }
>
> @@ -126,8 +125,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>
>        /* Last supported mode */
>
> -     for (j = 0; j < num_pipes; j++) {
> -             output = data->output[j];
> +     for_each_crtc(display, crtc) {
> +             if (crtc->crtc_index >= num_pipes)
> +                     break;
> +
> +             output = data->output[crtc->crtc_index];
>                if (!igt_output_is_connected(output))
>                        continue;
>
> @@ -135,17 +137,17 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>                        data->fd, output->config.connector->connector_id);
>
>                kmode = &conn->modes[conn->count_modes - 1];
> -             if (buffer2[j] == NULL) {
> +             if (buffer2[crtc->crtc_index] == NULL) {
>                        igt_fb_t fb;
> -                     buffer2[j] = &fb;
> +                     buffer2[crtc->crtc_index] = &fb;
>                        igt_create_color_fb(data->fd, kmode->hdisplay,
>                                            kmode->vdisplay,
>                                            DRM_FORMAT_XRGB8888,
>                                            DRM_FORMAT_MOD_NONE, 1.f, 0.f,
> -                                         0.f, buffer2[j]);
> +                                         0.f, buffer2[crtc->crtc_index]);
>                }
>                force_output_mode(data, output, kmode);
> -             igt_plane_set_fb(data->primary[j], buffer2[j]);
> +             igt_plane_set_fb(data->primary[crtc->crtc_index], buffer2[crtc->crtc_index]);
>                drmModeFreeConnector(conn);
>        }
>
> @@ -153,8 +155,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>                                  user_data);
>
>        /* First supported again */
> -     for (j = 0; j < num_pipes; j++) {
> -             output = data->output[j];
> +     for_each_crtc(display, crtc) {
> +             if (crtc->crtc_index >= num_pipes)
> +                     break;
> +
> +             output = data->output[crtc->crtc_index];
>                if (!igt_output_is_connected(output))
>                        continue;
>
> @@ -163,7 +168,7 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>
>                kmode = &conn->modes[0];
>                force_output_mode(data, output, kmode);
> -             igt_plane_set_fb(data->primary[j], buffer1[j]);
> +             igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
>                drmModeFreeConnector(conn);
>        }
>
> @@ -172,9 +177,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>
>        test_fini(data);
>
> -     for (i = 0; i <= num_pipes; i++) {
> -             igt_remove_fb(data->fd, buffer1[i]);
> -             igt_remove_fb(data->fd, buffer2[i]);
> +     for_each_crtc(display, crtc) {
> +             if (crtc->crtc_index >= num_pipes)
> +                     break;
> +
> +             igt_remove_fb(data->fd, buffer1[crtc->crtc_index]);
> +             igt_remove_fb(data->fd, buffer2[crtc->crtc_index]);
>        }
>  }
>
> --
> 2.47.3
>

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

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

* Re: [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
  2026-03-16 17:21   ` Pillai, Aurabindo
@ 2026-03-18 12:24     ` Jani Nikula
  0 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2026-03-18 12:24 UTC (permalink / raw)
  To: Pillai, Aurabindo, Kamil Konieczny
  Cc: igt-dev@lists.freedesktop.org, ville.syrjala@linux.intel.com,
	Rodrigo Siqueira, Prosyak, Vitaly

On Mon, 16 Mar 2026, "Pillai, Aurabindo" <Aurabindo.Pillai@amd.com> wrote:
> [Public]
>
> Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>

Thanks, pushed.

BR,
Jani.

>
> --
>
> Regards,
> Jay
> ________________________________
> From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Sent: Monday, March 16, 2026 12:23 PM
> To: Jani Nikula <jani.nikula@intel.com>
> Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>; ville.syrjala@linux.intel.com <ville.syrjala@linux.intel.com>; Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>; Pillai, Aurabindo <Aurabindo.Pillai@amd.com>; Prosyak, Vitaly <Vitaly.Prosyak@amd.com>
> Subject: Re: [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
>
> Hi Jani,
> On 2026-03-06 at 15:49:37 +0200, Jani Nikula wrote:
>> Convert the test to use for_each_crtc() to avoid having to use
>> igt_crtc_for_pipe(). Prefer crtc->crtc_index over crtc->pipe.
>>
>> As a side effect, fix an off-by-one in i <= num_pipes loop.
>>
>> Note: The implementation relies on the fact that on AMD hardware
>> for_each_crtc() returns CRTCs in CRTC index order.
>>
>
> +cc amd developers
> Cc: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
> Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
> Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
>
> Regards,
> Kamil
>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>>  tests/amdgpu/amd_mode_switch.c | 60 +++++++++++++++++++---------------
>>  1 file changed, 34 insertions(+), 26 deletions(-)
>>
>> diff --git a/tests/amdgpu/amd_mode_switch.c b/tests/amdgpu/amd_mode_switch.c
>> index 4da07c412996..5815ec34cb12 100644
>> --- a/tests/amdgpu/amd_mode_switch.c
>> +++ b/tests/amdgpu/amd_mode_switch.c
>> @@ -39,12 +39,12 @@ static void test_init(data_t *data)
>>        igt_crtc_t *crtc;
>>
>>        for_each_crtc(display, crtc) {
>> -             igt_output_t *output = &display->outputs[crtc->pipe];
>> +             igt_output_t *output = &display->outputs[crtc->crtc_index];
>>
>> -             data->primary[crtc->pipe] = igt_crtc_get_plane_type(crtc,
>> -                                                                 DRM_PLANE_TYPE_PRIMARY);
>> +             data->primary[crtc->crtc_index] = igt_crtc_get_plane_type(crtc,
>> +                                                                       DRM_PLANE_TYPE_PRIMARY);
>>
>> -             data->output[crtc->pipe] = output;
>> +             data->output[crtc->crtc_index] = output;
>>        }
>>
>>        igt_require(data->output[0]);
>> @@ -79,13 +79,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>>  {
>>        igt_display_t *display = &data->display;
>>        igt_output_t *output;
>> +     igt_crtc_t *crtc;
>>        struct igt_fb *buffer1[MAX_PIPES] = { NULL };
>>        struct igt_fb *buffer2[MAX_PIPES] = { NULL };
>>        drmModeConnectorPtr conn;
>>        drmModeModeInfoPtr kmode;
>>        void *user_data = NULL;
>> -     int i = 0;
>> -     int j = 0;
>>
>>        test_init(data);
>>
>> @@ -94,11 +93,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>>                      "ASIC does not have %d outputs/pipes\n", num_pipes);
>>
>>        /* First supported mode */
>> +     for_each_crtc(display, crtc) {
>> +             if (crtc->crtc_index >= num_pipes)
>> +                     break;
>>
>> -     for (j = 0; j < num_pipes; j++) {
>> -             igt_crtc_t *crtc = igt_crtc_for_pipe(display, j);
>> -
>> -             output = data->output[j];
>> +             output = data->output[crtc->crtc_index];
>>                if (!igt_output_is_connected(output))
>>                        continue;
>>
>> @@ -106,18 +105,18 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>>                        data->fd, output->config.connector->connector_id);
>>
>>                kmode = &conn->modes[0];
>> -             if (buffer1[j] == NULL) {
>> +             if (buffer1[crtc->crtc_index] == NULL) {
>>                        igt_fb_t fb;
>> -                     buffer1[j] = &fb;
>> +                     buffer1[crtc->crtc_index] = &fb;
>>                        igt_create_color_fb(data->fd, kmode->hdisplay,
>>                                            kmode->vdisplay,
>>                                            DRM_FORMAT_XRGB8888,
>>                                            DRM_FORMAT_MOD_NONE, 1.f, 0.f,
>> -                                         0.f, buffer1[j]);
>> +                                         0.f, buffer1[crtc->crtc_index]);
>>                }
>>                igt_output_set_crtc(output, crtc);
>>                force_output_mode(data, output, kmode);
>> -             igt_plane_set_fb(data->primary[j], buffer1[j]);
>> +             igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
>>                drmModeFreeConnector(conn);
>>        }
>>
>> @@ -126,8 +125,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>>
>>        /* Last supported mode */
>>
>> -     for (j = 0; j < num_pipes; j++) {
>> -             output = data->output[j];
>> +     for_each_crtc(display, crtc) {
>> +             if (crtc->crtc_index >= num_pipes)
>> +                     break;
>> +
>> +             output = data->output[crtc->crtc_index];
>>                if (!igt_output_is_connected(output))
>>                        continue;
>>
>> @@ -135,17 +137,17 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>>                        data->fd, output->config.connector->connector_id);
>>
>>                kmode = &conn->modes[conn->count_modes - 1];
>> -             if (buffer2[j] == NULL) {
>> +             if (buffer2[crtc->crtc_index] == NULL) {
>>                        igt_fb_t fb;
>> -                     buffer2[j] = &fb;
>> +                     buffer2[crtc->crtc_index] = &fb;
>>                        igt_create_color_fb(data->fd, kmode->hdisplay,
>>                                            kmode->vdisplay,
>>                                            DRM_FORMAT_XRGB8888,
>>                                            DRM_FORMAT_MOD_NONE, 1.f, 0.f,
>> -                                         0.f, buffer2[j]);
>> +                                         0.f, buffer2[crtc->crtc_index]);
>>                }
>>                force_output_mode(data, output, kmode);
>> -             igt_plane_set_fb(data->primary[j], buffer2[j]);
>> +             igt_plane_set_fb(data->primary[crtc->crtc_index], buffer2[crtc->crtc_index]);
>>                drmModeFreeConnector(conn);
>>        }
>>
>> @@ -153,8 +155,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>>                                  user_data);
>>
>>        /* First supported again */
>> -     for (j = 0; j < num_pipes; j++) {
>> -             output = data->output[j];
>> +     for_each_crtc(display, crtc) {
>> +             if (crtc->crtc_index >= num_pipes)
>> +                     break;
>> +
>> +             output = data->output[crtc->crtc_index];
>>                if (!igt_output_is_connected(output))
>>                        continue;
>>
>> @@ -163,7 +168,7 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>>
>>                kmode = &conn->modes[0];
>>                force_output_mode(data, output, kmode);
>> -             igt_plane_set_fb(data->primary[j], buffer1[j]);
>> +             igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
>>                drmModeFreeConnector(conn);
>>        }
>>
>> @@ -172,9 +177,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>>
>>        test_fini(data);
>>
>> -     for (i = 0; i <= num_pipes; i++) {
>> -             igt_remove_fb(data->fd, buffer1[i]);
>> -             igt_remove_fb(data->fd, buffer2[i]);
>> +     for_each_crtc(display, crtc) {
>> +             if (crtc->crtc_index >= num_pipes)
>> +                     break;
>> +
>> +             igt_remove_fb(data->fd, buffer1[crtc->crtc_index]);
>> +             igt_remove_fb(data->fd, buffer2[crtc->crtc_index]);
>>        }
>>  }
>>
>> --
>> 2.47.3
>>

-- 
Jani Nikula, Intel

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

* Re: [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc()
  2026-03-06 13:49 [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc() Jani Nikula
                   ` (4 preceding siblings ...)
  2026-03-16 16:23 ` [PATCH i-g-t] " Kamil Konieczny
@ 2026-03-18 13:00 ` Kamil Konieczny
  5 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2026-03-18 13:00 UTC (permalink / raw)
  To: Jani Nikula; +Cc: igt-dev, ville.syrjala

Hi Jani,
On 2026-03-06 at 15:49:37 +0200, Jani Nikula wrote:
> Convert the test to use for_each_crtc() to avoid having to use
> igt_crtc_for_pipe(). Prefer crtc->crtc_index over crtc->pipe.
> 
> As a side effect, fix an off-by-one in i <= num_pipes loop.
> 
> Note: The implementation relies on the fact that on AMD hardware
> for_each_crtc() returns CRTCs in CRTC index order.

This is already merged but I have one small nit, see below.

> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  tests/amdgpu/amd_mode_switch.c | 60 +++++++++++++++++++---------------
>  1 file changed, 34 insertions(+), 26 deletions(-)
> 
> diff --git a/tests/amdgpu/amd_mode_switch.c b/tests/amdgpu/amd_mode_switch.c
> index 4da07c412996..5815ec34cb12 100644
> --- a/tests/amdgpu/amd_mode_switch.c
> +++ b/tests/amdgpu/amd_mode_switch.c
> @@ -39,12 +39,12 @@ static void test_init(data_t *data)
>  	igt_crtc_t *crtc;
>  
>  	for_each_crtc(display, crtc) {
> -		igt_output_t *output = &display->outputs[crtc->pipe];
> +		igt_output_t *output = &display->outputs[crtc->crtc_index];
>  
> -		data->primary[crtc->pipe] = igt_crtc_get_plane_type(crtc,
> -								    DRM_PLANE_TYPE_PRIMARY);
> +		data->primary[crtc->crtc_index] = igt_crtc_get_plane_type(crtc,
> +									  DRM_PLANE_TYPE_PRIMARY);
>  
> -		data->output[crtc->pipe] = output;
> +		data->output[crtc->crtc_index] = output;
>  	}
>  
>  	igt_require(data->output[0]);
> @@ -79,13 +79,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  {
>  	igt_display_t *display = &data->display;
>  	igt_output_t *output;
> +	igt_crtc_t *crtc;
>  	struct igt_fb *buffer1[MAX_PIPES] = { NULL };
>  	struct igt_fb *buffer2[MAX_PIPES] = { NULL };
>  	drmModeConnectorPtr conn;
>  	drmModeModeInfoPtr kmode;
>  	void *user_data = NULL;
> -	int i = 0;
> -	int j = 0;
>  
>  	test_init(data);
>  
> @@ -94,11 +93,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  		      "ASIC does not have %d outputs/pipes\n", num_pipes);
>  
>  	/* First supported mode */
> +	for_each_crtc(display, crtc) {
> +		if (crtc->crtc_index >= num_pipes)
> +			break;
>  
> -	for (j = 0; j < num_pipes; j++) {
> -		igt_crtc_t *crtc = igt_crtc_for_pipe(display, j);
> -
> -		output = data->output[j];
> +		output = data->output[crtc->crtc_index];
>  		if (!igt_output_is_connected(output))
>  			continue;
>  
> @@ -106,18 +105,18 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  			data->fd, output->config.connector->connector_id);
>  
>  		kmode = &conn->modes[0];
> -		if (buffer1[j] == NULL) {
> +		if (buffer1[crtc->crtc_index] == NULL) {

You keep old shape here but checkpatch.pl suggest simpler code:
		if (buffer2[crtc->crtc_index]) {

>  			igt_fb_t fb;
> -			buffer1[j] = &fb;
> +			buffer1[crtc->crtc_index] = &fb;
>  			igt_create_color_fb(data->fd, kmode->hdisplay,
>  					    kmode->vdisplay,
>  					    DRM_FORMAT_XRGB8888,
>  					    DRM_FORMAT_MOD_NONE, 1.f, 0.f,
> -					    0.f, buffer1[j]);
> +					    0.f, buffer1[crtc->crtc_index]);
>  		}
>  		igt_output_set_crtc(output, crtc);
>  		force_output_mode(data, output, kmode);
> -		igt_plane_set_fb(data->primary[j], buffer1[j]);
> +		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
>  		drmModeFreeConnector(conn);
>  	}
>  
> @@ -126,8 +125,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  
>  	/* Last supported mode */
>  
> -	for (j = 0; j < num_pipes; j++) {
> -		output = data->output[j];
> +	for_each_crtc(display, crtc) {
> +		if (crtc->crtc_index >= num_pipes)
> +			break;
> +
> +		output = data->output[crtc->crtc_index];
>  		if (!igt_output_is_connected(output))
>  			continue;
>  
> @@ -135,17 +137,17 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  			data->fd, output->config.connector->connector_id);
>  
>  		kmode = &conn->modes[conn->count_modes - 1];
> -		if (buffer2[j] == NULL) {
> +		if (buffer2[crtc->crtc_index] == NULL) {

Same here, ' == NULL' could be dropped.

Regards,
Kamil

>  			igt_fb_t fb;
> -			buffer2[j] = &fb;
> +			buffer2[crtc->crtc_index] = &fb;
>  			igt_create_color_fb(data->fd, kmode->hdisplay,
>  					    kmode->vdisplay,
>  					    DRM_FORMAT_XRGB8888,
>  					    DRM_FORMAT_MOD_NONE, 1.f, 0.f,
> -					    0.f, buffer2[j]);
> +					    0.f, buffer2[crtc->crtc_index]);
>  		}
>  		force_output_mode(data, output, kmode);
> -		igt_plane_set_fb(data->primary[j], buffer2[j]);
> +		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer2[crtc->crtc_index]);
>  		drmModeFreeConnector(conn);
>  	}
>  
> @@ -153,8 +155,11 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  				  user_data);
>  
>  	/* First supported again */
> -	for (j = 0; j < num_pipes; j++) {
> -		output = data->output[j];
> +	for_each_crtc(display, crtc) {
> +		if (crtc->crtc_index >= num_pipes)
> +			break;
> +
> +		output = data->output[crtc->crtc_index];
>  		if (!igt_output_is_connected(output))
>  			continue;
>  
> @@ -163,7 +168,7 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  
>  		kmode = &conn->modes[0];
>  		force_output_mode(data, output, kmode);
> -		igt_plane_set_fb(data->primary[j], buffer1[j]);
> +		igt_plane_set_fb(data->primary[crtc->crtc_index], buffer1[crtc->crtc_index]);
>  		drmModeFreeConnector(conn);
>  	}
>  
> @@ -172,9 +177,12 @@ static void run_mode_switch_first_last(data_t *data, int num_pipes)
>  
>  	test_fini(data);
>  
> -	for (i = 0; i <= num_pipes; i++) {
> -		igt_remove_fb(data->fd, buffer1[i]);
> -		igt_remove_fb(data->fd, buffer2[i]);
> +	for_each_crtc(display, crtc) {
> +		if (crtc->crtc_index >= num_pipes)
> +			break;
> +
> +		igt_remove_fb(data->fd, buffer1[crtc->crtc_index]);
> +		igt_remove_fb(data->fd, buffer2[crtc->crtc_index]);
>  	}
>  }
>  
> -- 
> 2.47.3
> 

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

end of thread, other threads:[~2026-03-18 13:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-06 13:49 [PATCH i-g-t] tests/amdgpu/amd_mode_switch: switch to for_each_crtc() Jani Nikula
2026-03-06 17:41 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-06 17:54 ` ✓ i915.CI.BAT: " Patchwork
2026-03-07 19:23 ` ✓ Xe.CI.FULL: " Patchwork
2026-03-07 20:44 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-16 16:23 ` [PATCH i-g-t] " Kamil Konieczny
2026-03-16 17:21   ` Pillai, Aurabindo
2026-03-18 12:24     ` Jani Nikula
2026-03-18 13:00 ` Kamil Konieczny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox