All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/2] Add MediaTek CTM color test support
@ 2026-01-28  8:24 Jason-JH Lin
  2026-01-28  8:24 ` [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices Jason-JH Lin
                   ` (5 more replies)
  0 siblings, 6 replies; 18+ messages in thread
From: Jason-JH Lin @ 2026-01-28  8:24 UTC (permalink / raw)
  To: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
	Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao
  Cc: Jani, Jason-JH Lin, Paul-PL Chen, Nancy Lin, Singo Chang,
	Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group

This series adds MediaTek hardware support for CTM (Color Transformation
Matrix) color tests.

MediaTek display hardware has two specific characteristics for CTM:
1. CTM matrix value range is limited to -2.0 to 2.0
2. Bit-true results are only achievable with 10-bit color depth

Patch 1 clamps CTM matrix values to the hardware-supported range to
prevent test failures when values exceed the limits.

Patch 2 switches to 10-bit color depth and XRGB2101010 format for
MediaTek devices to enable accurate CRC validation.

Jason-JH Lin (2):
  test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  tests/kms_color: Add 10-bit color depth support to CTM test for
    MediaTek

 tests/kms_color.c | 30 +++++++++++++++++++++++++-----
 1 file changed, 25 insertions(+), 5 deletions(-)

--
2.43.0


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

* [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-01-28  8:24 [PATCH i-g-t 0/2] Add MediaTek CTM color test support Jason-JH Lin
@ 2026-01-28  8:24 ` Jason-JH Lin
  2026-01-29 11:00   ` Kamil Konieczny
  2026-01-29 11:15   ` Ville Syrjälä
  2026-01-28  8:24 ` [PATCH i-g-t 2/2] tests/kms_color: Add 10-bit color depth support to CTM test for MediaTek Jason-JH Lin
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 18+ messages in thread
From: Jason-JH Lin @ 2026-01-28  8:24 UTC (permalink / raw)
  To: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
	Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao
  Cc: Jani, Jason-JH Lin, Paul-PL Chen, Nancy Lin, Singo Chang,
	Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group

Use clamp to restrict CTM matrix values to the -2.0 to 2.0 range for
MediaTek devices, ensuring tests do not exceed hardware limits.

Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
---
 tests/kms_color.c | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/tests/kms_color.c b/tests/kms_color.c
index b2ca6975d6a5..c6cd35d74a2f 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -76,6 +76,8 @@
  * @gamma-lut:          Gamma LUT
  */
 
+#define CTM_SIZE		(9)
+
 IGT_TEST_DESCRIPTION("Test Color Features at Pipe level");
 
 static bool test_pipe_degamma(data_t *data,
@@ -1025,7 +1027,7 @@ run_tests_for_pipe(data_t *data)
 		const char *name;
 		int iter;
 		const color_t *fb_colors;
-		double ctm[9];
+		double ctm[CTM_SIZE];
 		const char *desc;
 	} ctm_tests[] = {
 		{ .name = "ctm-red-to-blue",
@@ -1128,6 +1130,19 @@ run_tests_for_pipe(data_t *data)
 	}
 
 	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
+		double fixed_ctm[CTM_SIZE];
+		const double *ctm_ptr = ctm_tests[i].ctm;
+
+		/* The valid value of MediaTek color matrix range is -2.0 ~ 2.0 */
+		if (is_mtk_device(data->drm_fd)) {
+			int j;
+
+			for (j = 0; j < CTM_SIZE; j++)
+				fixed_ctm[j] = clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
+
+			ctm_ptr = fixed_ctm;
+		}
+
 		igt_describe_f("%s", ctm_tests[i].desc);
 		igt_subtest_with_dynamic_f("%s", ctm_tests[i].name) {
 			for_each_pipe_with_valid_output(&data->display, pipe, data->output) {
@@ -1135,7 +1150,7 @@ run_tests_for_pipe(data_t *data)
 					      igt_output_name(data->output))
 					run_ctm_tests_for_pipe(data, pipe,
 							       ctm_tests[i].fb_colors,
-							       ctm_tests[i].ctm,
+							       ctm_ptr,
 							       ctm_tests[i].iter);
 				if (igt_run_in_simulation())
 					break;
-- 
2.43.0


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

* [PATCH i-g-t 2/2] tests/kms_color: Add 10-bit color depth support to CTM test for MediaTek
  2026-01-28  8:24 [PATCH i-g-t 0/2] Add MediaTek CTM color test support Jason-JH Lin
  2026-01-28  8:24 ` [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices Jason-JH Lin
@ 2026-01-28  8:24 ` Jason-JH Lin
  2026-01-29 11:07   ` Kamil Konieczny
  2026-01-28  9:50 ` ✓ Xe.CI.BAT: success for Add MediaTek CTM color test support Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 18+ messages in thread
From: Jason-JH Lin @ 2026-01-28  8:24 UTC (permalink / raw)
  To: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
	Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao
  Cc: Jani, Jason-JH Lin, Paul-PL Chen, Nancy Lin, Singo Chang,
	Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group

Add 10-bit color depth flow to CTM test for MediaTek devices, which only
support bit-true results with 10-bit data. The test now selects 8-bit or
10-bit color depth and framebuffer format based on device type.

Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
---
 tests/kms_color.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/tests/kms_color.c b/tests/kms_color.c
index c6cd35d74a2f..146e1c67ea60 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -792,18 +792,23 @@ run_ctm_tests_for_pipe(data_t *data, enum pipe p,
 		       int iter)
 {
 	bool success = false;
+	bool depth_10bit = false;
 	double delta;
 	int i;
 
 	test_setup(data, p);
 
+	/* MediaTek can only support bit-ture in 10-bit depth pre color */
+	if (is_mtk_device(data->drm_fd))
+		depth_10bit = true;
+
 	/*
-	 * We assume an 8bits depth per color for degamma/gamma LUTs
+	 * We assume an 8bits or 10bits depth per color for degamma/gamma LUTs
 	 * for CRC checks with framebuffer references.
 	 */
-	data->color_depth = 8;
+	data->color_depth = depth_10bit ? 10 : 8;
 	delta = 1.0 / (1 << data->color_depth);
-	data->drm_format = DRM_FORMAT_XRGB8888;
+	data->drm_format = depth_10bit ? DRM_FORMAT_XRGB2101010 : DRM_FORMAT_XRGB8888;
 	data->mode = igt_output_get_mode(data->output);
 
 	igt_require(pipe_output_combo_valid(data, p));
-- 
2.43.0


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

* ✓ Xe.CI.BAT: success for Add MediaTek CTM color test support
  2026-01-28  8:24 [PATCH i-g-t 0/2] Add MediaTek CTM color test support Jason-JH Lin
  2026-01-28  8:24 ` [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices Jason-JH Lin
  2026-01-28  8:24 ` [PATCH i-g-t 2/2] tests/kms_color: Add 10-bit color depth support to CTM test for MediaTek Jason-JH Lin
@ 2026-01-28  9:50 ` Patchwork
  2026-01-28 10:57 ` ✓ i915.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-01-28  9:50 UTC (permalink / raw)
  To: Jason-JH Lin; +Cc: igt-dev

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

== Series Details ==

Series: Add MediaTek CTM color test support
URL   : https://patchwork.freedesktop.org/series/160743/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8721_BAT -> XEIGTPW_14434_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [FAIL][1] ([Intel XE#6520]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8721/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14434/bat-dg2-oem2/igt@xe_waitfence@reltime.html

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


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

  * IGT: IGT_8721 -> IGTPW_14434
  * Linux: xe-4459-6d88e21d3ccde3ca984304cde021744d0e326ee1 -> xe-4464-23ebb43006b887363bd6653fbc4a327fd3072226

  IGTPW_14434: 14434
  IGT_8721: 3707bb4267de22a18d61b232c4ab5fbaf61db90c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4459-6d88e21d3ccde3ca984304cde021744d0e326ee1: 6d88e21d3ccde3ca984304cde021744d0e326ee1
  xe-4464-23ebb43006b887363bd6653fbc4a327fd3072226: 23ebb43006b887363bd6653fbc4a327fd3072226

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for Add MediaTek CTM color test support
  2026-01-28  8:24 [PATCH i-g-t 0/2] Add MediaTek CTM color test support Jason-JH Lin
                   ` (2 preceding siblings ...)
  2026-01-28  9:50 ` ✓ Xe.CI.BAT: success for Add MediaTek CTM color test support Patchwork
@ 2026-01-28 10:57 ` Patchwork
  2026-01-28 16:12 ` ✗ i915.CI.Full: failure " Patchwork
  2026-02-10 10:15 ` [PATCH i-g-t 0/2] " Jason-JH Lin (林睿祥)
  5 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-01-28 10:57 UTC (permalink / raw)
  To: Jason-JH Lin; +Cc: igt-dev

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

== Series Details ==

Series: Add MediaTek CTM color test support
URL   : https://patchwork.freedesktop.org/series/160743/
State : success

== Summary ==

CI Bug Log - changes from IGT_8721 -> IGTPW_14434
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (42 -> 41)
------------------------------

  Additional (1): bat-adls-6 
  Missing    (2): bat-dg2-13 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-adls-6:         NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_tiled_pread_basic:
    - bat-adls-6:         NOTRUN -> [SKIP][2] ([i915#3282])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@gem_tiled_pread_basic.html

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

  * igt@intel_hwmon@hwmon-read:
    - bat-adls-6:         NOTRUN -> [SKIP][5] ([i915#7707]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@intel_hwmon@hwmon-read.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-adls-6:         NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-adls-6:         NOTRUN -> [SKIP][7] ([i915#3555] / [i915#3840])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-adls-6:         NOTRUN -> [SKIP][8]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-adls-6:         NOTRUN -> [SKIP][9] ([i915#5354])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-adls-6:         NOTRUN -> [SKIP][10] ([i915#1072] / [i915#9732]) +3 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-adls-6:         NOTRUN -> [SKIP][11] ([i915#3555])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-read:
    - bat-adls-6:         NOTRUN -> [SKIP][12] ([i915#3291]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/bat-adls-6/igt@prime_vgem@basic-fence-read.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8721 -> IGTPW_14434
  * Linux: CI_DRM_17897 -> CI_DRM_17899

  CI-20190529: 20190529
  CI_DRM_17897: ba05f22d6945596fac691e952c98f566696c24ad @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_17899: 23ebb43006b887363bd6653fbc4a327fd3072226 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14434: 14434
  IGT_8721: 3707bb4267de22a18d61b232c4ab5fbaf61db90c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for Add MediaTek CTM color test support
  2026-01-28  8:24 [PATCH i-g-t 0/2] Add MediaTek CTM color test support Jason-JH Lin
                   ` (3 preceding siblings ...)
  2026-01-28 10:57 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-01-28 16:12 ` Patchwork
  2026-01-29 11:09   ` Kamil Konieczny
  2026-02-10 10:15 ` [PATCH i-g-t 0/2] " Jason-JH Lin (林睿祥)
  5 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2026-01-28 16:12 UTC (permalink / raw)
  To: Jason-JH Lin; +Cc: igt-dev

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

== Series Details ==

Series: Add MediaTek CTM color test support
URL   : https://patchwork.freedesktop.org/series/160743/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_17899_full -> IGTPW_14434_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_14434_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_14434_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_14434/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_14434_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_plane@pixel-format-4-tiled-modifier:
    - shard-mtlp:         [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-modifier.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-modifier.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
    - shard-glk:          [PASS][3] -> [FAIL][4] +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-glk1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html

  
New tests
---------

  New tests have been introduced between CI_DRM_17899_full and IGTPW_14434_full:

### New IGT tests (15) ###

  * igt@i915_pm_rps@addfb25-4-tiled:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@basic-wc-gtt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@cursora-vs-flipa-varying-size:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@draw-method-mmap-gtt:
    - Statuses :
    - Exec time: [None] s

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

  * igt@i915_pm_rps@fbc-2p-scndscrn-cur-indfb-draw-render:
    - 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@hw-rejects-pxp-context:
    - Statuses :
    - Exec time: [None] s

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

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

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

  * igt@i915_pm_rps@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_sequence@get-forked@pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [2.37] s

  * igt@kms_vblank@ts-continuation-modeset@pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.38] s

  * igt@kms_vblank@ts-continuation-modeset@pipe-b-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.27] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-tglu:         NOTRUN -> [SKIP][5] ([i915#6230])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-8/igt@api_intel_bb@crc32.html

  * igt@device_reset@cold-reset-bound:
    - shard-tglu:         NOTRUN -> [SKIP][6] ([i915#11078])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-9/igt@device_reset@cold-reset-bound.html

  * igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance:
    - shard-tglu-1:       NOTRUN -> [DMESG-WARN][7] ([i915#15095]) +1 other test dmesg-warn
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html

  * igt@gem_basic@multigpu-create-close:
    - shard-rkl:          NOTRUN -> [SKIP][8] ([i915#7697]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
    - shard-dg1:          NOTRUN -> [SKIP][9] ([i915#7697])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-17/igt@gem_basic@multigpu-create-close.html
    - shard-tglu:         NOTRUN -> [SKIP][10] ([i915#7697])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-9/igt@gem_basic@multigpu-create-close.html
    - shard-mtlp:         NOTRUN -> [SKIP][11] ([i915#7697])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-7/igt@gem_basic@multigpu-create-close.html
    - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#7697])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-1/igt@gem_basic@multigpu-create-close.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-tglu:         NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-8/igt@gem_ccs@block-copy-compressed.html

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

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

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-rkl:          NOTRUN -> [SKIP][16] ([i915#6335])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_ctx_persistence@processes:
    - shard-snb:          NOTRUN -> [SKIP][17] ([i915#1099])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-snb6/igt@gem_ctx_persistence@processes.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-dg1:          NOTRUN -> [SKIP][18] ([i915#280])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-17/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-rkl:          NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html
    - shard-tglu-1:       NOTRUN -> [SKIP][20] ([i915#280])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html

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

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

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-tglu:         NOTRUN -> [SKIP][23] ([i915#4525])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-2/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fence@concurrent:
    - shard-mtlp:         NOTRUN -> [SKIP][24] ([i915#4812])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@gem_exec_fence@concurrent.html
    - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#4812])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-5/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#3539])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html
    - shard-dg1:          NOTRUN -> [SKIP][27] ([i915#3539])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-12/igt@gem_exec_flush@basic-uc-set-default.html

  * igt@gem_exec_flush@basic-wb-ro-default:
    - shard-dg1:          NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-12/igt@gem_exec_flush@basic-wb-ro-default.html

  * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
    - shard-dg1:          NOTRUN -> [SKIP][29] ([i915#3281]) +4 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
    - shard-mtlp:         NOTRUN -> [SKIP][30] ([i915#3281]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html

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

  * igt@gem_exec_reloc@basic-write-cpu-active:
    - shard-rkl:          NOTRUN -> [SKIP][32] ([i915#14544] / [i915#3281])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu-active.html

  * igt@gem_exec_reloc@basic-write-read:
    - shard-rkl:          NOTRUN -> [SKIP][33] ([i915#3281]) +7 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-rkl:          NOTRUN -> [SKIP][34] ([i915#7276])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
    - shard-dg1:          NOTRUN -> [SKIP][35] ([i915#4812]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-19/igt@gem_exec_schedule@semaphore-power.html
    - shard-mtlp:         NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [PASS][38] -> [INCOMPLETE][39] ([i915#13356]) +1 other test incomplete
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglu:         NOTRUN -> [SKIP][40] ([i915#2190])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-2/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-random:
    - shard-glk:          NOTRUN -> [SKIP][41] ([i915#4613]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk6/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][43] ([i915#12193])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][44] ([i915#4613])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4613])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][46] ([i915#4565])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html

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

  * igt@gem_mmap_wc@read-write:
    - shard-dg1:          NOTRUN -> [SKIP][48] ([i915#4083])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-19/igt@gem_mmap_wc@read-write.html

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

  * igt@gem_pread@exhaustion:
    - shard-tglu:         NOTRUN -> [WARN][50] ([i915#2658])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-8/igt@gem_pread@exhaustion.html

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

  * igt@gem_pxp@reject-modify-context-protection-on:
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#4270]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-on.html

  * igt@gem_readwrite@write-bad-handle:
    - shard-dg1:          NOTRUN -> [SKIP][53] ([i915#3282]) +2 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-12/igt@gem_readwrite@write-bad-handle.html

  * igt@gem_softpin@evict-snoop:
    - shard-mtlp:         NOTRUN -> [SKIP][54] ([i915#4885])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-3/igt@gem_softpin@evict-snoop.html
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4885])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-11/igt@gem_softpin@evict-snoop.html

  * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#4077]) +3 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-14/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][57] ([i915#3297]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][58] ([i915#3297]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
    - shard-dg1:          NOTRUN -> [SKIP][59] ([i915#3297]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-13/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
    - shard-mtlp:         NOTRUN -> [SKIP][60] ([i915#3297]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

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

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

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

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-snb:          NOTRUN -> [SKIP][64] +72 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
    - shard-tglu:         NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
    - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#2856])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#2856])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#2527])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-rkl:          NOTRUN -> [SKIP][69] ([i915#2527]) +5 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html
    - shard-tglu-1:       NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html

  * igt@i915_drm_fdinfo@busy-hang@ccs0:
    - shard-mtlp:         NOTRUN -> [SKIP][71] ([i915#14073]) +6 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-3/igt@i915_drm_fdinfo@busy-hang@ccs0.html

  * igt@i915_drm_fdinfo@busy-hang@vcs0:
    - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#14073]) +7 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-7/igt@i915_drm_fdinfo@busy-hang@vcs0.html
    - shard-dg1:          NOTRUN -> [SKIP][73] ([i915#14073]) +5 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-13/igt@i915_drm_fdinfo@busy-hang@vcs0.html

  * igt@i915_module_load@reload-no-display:
    - shard-tglu-1:       NOTRUN -> [DMESG-WARN][74] ([i915#13029] / [i915#14545])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-rkl:          NOTRUN -> [SKIP][75] ([i915#8399])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_freq_api@freq-reset-multiple:
    - shard-tglu:         NOTRUN -> [SKIP][76] ([i915#8399])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-3/igt@i915_pm_freq_api@freq-reset-multiple.html

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

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-dg2:          [PASS][78] -> [FAIL][79] ([i915#12964]) +1 other test fail
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-rkl:          NOTRUN -> [SKIP][80] ([i915#14498])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [PASS][81] -> [INCOMPLETE][82] ([i915#13729] / [i915#13821])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-snb4/igt@i915_pm_rps@reset.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-snb5/igt@i915_pm_rps@reset.html

  * igt@i915_pm_rps@waitboost:
    - shard-mtlp:         [PASS][83] -> [FAIL][84] ([i915#15365])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-mtlp-3/igt@i915_pm_rps@waitboost.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@i915_pm_rps@waitboost.html

  * igt@i915_selftest@live:
    - shard-mtlp:         [PASS][85] -> [DMESG-FAIL][86] ([i915#12061] / [i915#15560])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-mtlp-2/igt@i915_selftest@live.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-6/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [PASS][87] -> [DMESG-FAIL][88] ([i915#12061])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-6/igt@i915_selftest@live@workarounds.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-rkl:          [PASS][89] -> [INCOMPLETE][90] ([i915#4817])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html

  * igt@i915_suspend@forcewake:
    - shard-glk:          NOTRUN -> [INCOMPLETE][91] ([i915#4817])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk6/igt@i915_suspend@forcewake.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#7707])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@intel_hwmon@hwmon-read.html

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

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#4215])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - shard-dg1:          NOTRUN -> [SKIP][95] ([i915#4212])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-17/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-rkl:          [PASS][96] -> [INCOMPLETE][97] ([i915#12761])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][98] ([i915#12761])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-rkl:          NOTRUN -> [SKIP][99] ([i915#14544] / [i915#1769] / [i915#3555])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

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

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][101] ([i915#4538] / [i915#5286])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][102]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-11/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
    - shard-rkl:          NOTRUN -> [SKIP][103] ([i915#5286]) +2 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-rkl:          NOTRUN -> [SKIP][104] ([i915#14544] / [i915#5286])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         [PASS][106] -> [FAIL][107] ([i915#5138])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-tglu-1:       NOTRUN -> [SKIP][108] ([i915#3828])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
    - shard-dg1:          NOTRUN -> [SKIP][109] ([i915#3828])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][110] ([i915#3638])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][111] ([i915#14544] / [i915#3638])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +2 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-1/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#4538])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2:
    - shard-glk10:        NOTRUN -> [SKIP][114] +243 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk10/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][115] ([i915#12313])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

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

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][117] +333 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#14544] / [i915#6095]) +6 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-tglu:         NOTRUN -> [SKIP][120] ([i915#6095]) +34 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

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

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-dp-3:
    - shard-dg2:          NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +80 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-dp-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][123] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][124] -> [INCOMPLETE][125] ([i915#15582]) +1 other test incomplete
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#12313] / [i915#14544])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][128] ([i915#12313])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

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

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][130] ([i915#6095]) +19 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-edp-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-dg1:          NOTRUN -> [SKIP][131] ([i915#3742])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-18/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-b-dp-3:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#13781]) +3 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html

  * igt@kms_cdclk@plane-scaling:
    - shard-rkl:          NOTRUN -> [SKIP][133] ([i915#3742])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_cdclk@plane-scaling.html
    - shard-tglu-1:       NOTRUN -> [SKIP][134] ([i915#3742])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_cdclk@plane-scaling.html

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

  * igt@kms_chamelium_audio@dp-audio:
    - shard-tglu:         NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +6 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html
    - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@kms_chamelium_audio@hdmi-audio-edid.html
    - shard-dg2:          NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-1/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_edid@dp-edid-read:
    - shard-rkl:          NOTRUN -> [SKIP][140] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-read.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-tglu-1:       NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +5 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html

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

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

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

  * igt@kms_content_protection@atomic-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][145] ([i915#6944] / [i915#7118] / [i915#9424])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#6944] / [i915#9424])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@kms_content_protection@content-type-change.html
    - shard-rkl:          NOTRUN -> [SKIP][147] ([i915#6944] / [i915#9424])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_content_protection@content-type-change.html
    - shard-dg1:          NOTRUN -> [SKIP][148] ([i915#6944] / [i915#9424])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-12/igt@kms_content_protection@content-type-change.html
    - shard-tglu:         NOTRUN -> [SKIP][149] ([i915#6944] / [i915#9424])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-6/igt@kms_content_protection@content-type-change.html
    - shard-mtlp:         NOTRUN -> [SKIP][150] ([i915#6944] / [i915#9424])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-8/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-mtlp:         NOTRUN -> [SKIP][151] ([i915#15330])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#15330])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
    - shard-rkl:          NOTRUN -> [SKIP][153] ([i915#15330])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
    - shard-tglu-1:       NOTRUN -> [SKIP][154] ([i915#15330]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
    - shard-dg1:          NOTRUN -> [SKIP][155] ([i915#15330])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@suspend-resume:
    - shard-rkl:          NOTRUN -> [SKIP][156] ([i915#6944])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@kms_content_protection@suspend-resume.html
    - shard-tglu:         NOTRUN -> [SKIP][157] ([i915#6944])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-9/igt@kms_content_protection@suspend-resume.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [FAIL][158] ([i915#13566])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][159] ([i915#13049])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
    - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#13049]) +1 other test skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html

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

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

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-tglu-1:       NOTRUN -> [SKIP][163] ([i915#3555]) +4 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x64@pipe-a-edp-1:
    - shard-mtlp:         [PASS][164] -> [DMESG-WARN][165] ([i915#12935]) +1 other test dmesg-warn
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-64x64@pipe-a-edp-1.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-64x64@pipe-a-edp-1.html

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

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

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][168] +11 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-rkl:          NOTRUN -> [SKIP][169] ([i915#4103])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-tglu:         NOTRUN -> [SKIP][171] ([i915#4103])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-tglu-1:       NOTRUN -> [SKIP][172] ([i915#4103])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          NOTRUN -> [FAIL][173] ([i915#2346])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-rkl:          NOTRUN -> [SKIP][174] ([i915#9067])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([i915#13691])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
    - shard-dg2:          [PASS][176] -> [SKIP][177] ([i915#3555])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-tglu:         NOTRUN -> [SKIP][178] ([i915#13748])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-8/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-tglu-1:       NOTRUN -> [SKIP][179] ([i915#13707])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

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

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

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][182] ([i915#3469])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-8/igt@kms_fbcon_fbt@psr-suspend.html

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

  * igt@kms_feature_discovery@dp-mst:
    - shard-tglu-1:       NOTRUN -> [SKIP][184] ([i915#9337])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-tglu-1:       NOTRUN -> [SKIP][185] ([i915#3637] / [i915#9934]) +4 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-fences:
    - shard-rkl:          NOTRUN -> [SKIP][186] ([i915#14544] / [i915#9934])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][187] ([i915#3637] / [i915#9934]) +3 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@2x-plain-flip:
    - shard-rkl:          NOTRUN -> [SKIP][188] ([i915#9934]) +3 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-dg2:          NOTRUN -> [SKIP][189] ([i915#9934])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-1/igt@kms_flip@2x-plain-flip-ts-check.html
    - shard-dg1:          NOTRUN -> [SKIP][190] ([i915#9934])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-17/igt@kms_flip@2x-plain-flip-ts-check.html
    - shard-mtlp:         NOTRUN -> [SKIP][191] ([i915#3637] / [i915#9934])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-7/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@flip-vs-fences:
    - shard-dg1:          NOTRUN -> [SKIP][192] ([i915#8381])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-14/igt@kms_flip@flip-vs-fences.html

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

  * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
    - shard-snb:          [PASS][194] -> [INCOMPLETE][195] ([i915#12314] / [i915#12745] / [i915#4839]) +1 other test incomplete
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html

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

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

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555]) +2 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672]) +2 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
    - shard-mtlp:         NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][206] ([i915#2672] / [i915#8813]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#2672]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
    - shard-dg1:          NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#2672] / [i915#3555] / [i915#5190])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][210] ([i915#15573]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - shard-dg2:          [PASS][211] -> [FAIL][212] ([i915#15389] / [i915#6880])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][213] ([i915#14544])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][214] ([i915#5354]) +2 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][215] +48 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][216] ([i915#15574]) +2 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
    - shard-tglu:         NOTRUN -> [SKIP][217] ([i915#15574]) +1 other test skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][218] ([i915#15574])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][219] ([i915#8708]) +4 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][220] ([i915#8708])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-tglu:         NOTRUN -> [SKIP][221] ([i915#5439])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#15102])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#15102]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-tglu-1:       NOTRUN -> [SKIP][224] ([i915#15102]) +15 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][225] +11 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][226] ([i915#1825]) +25 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-tglu-1:       NOTRUN -> [SKIP][227] +33 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][228] ([i915#1825]) +6 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
    - shard-rkl:          NOTRUN -> [SKIP][229] ([i915#15102] / [i915#3023]) +13 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][230] ([i915#15102]) +13 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html

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

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][232] ([i915#15102] / [i915#3458]) +3 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html
    - shard-dg1:          NOTRUN -> [SKIP][233] ([i915#15102] / [i915#3458]) +4 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][234] ([i915#14544] / [i915#1825]) +2 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][235] ([i915#8708]) +6 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][236] ([i915#15574]) +3 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-rkl:          [PASS][237] -> [SKIP][238] ([i915#3555] / [i915#8228])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-rkl:          NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +1 other test skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_hdr@static-swap.html
    - shard-dg1:          NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-18/igt@kms_hdr@static-swap.html
    - shard-mtlp:         NOTRUN -> [SKIP][242] ([i915#12713] / [i915#3555] / [i915#8228])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-4/igt@kms_hdr@static-swap.html

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

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-dg2:          [PASS][244] -> [SKIP][245] ([i915#15459])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-dg1:          NOTRUN -> [SKIP][246] ([i915#13522])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

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

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-tglu:         NOTRUN -> [SKIP][248] ([i915#14712])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-10/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2:          NOTRUN -> [SKIP][249] ([i915#13705])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][250] ([i915#13705])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
    - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#15608] / [i915#15609] / [i915#8825]) +2 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-0:
    - shard-rkl:          NOTRUN -> [SKIP][252] ([i915#15608]) +13 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-0.html

  * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
    - shard-tglu-1:       NOTRUN -> [SKIP][253] ([i915#15608] / [i915#15609] / [i915#8825])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-3:
    - shard-tglu-1:       NOTRUN -> [SKIP][254] ([i915#15608]) +7 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-3.html

  * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-7:
    - shard-tglu-1:       NOTRUN -> [SKIP][255] ([i915#15609])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-7.html

  * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-b-plane-7:
    - shard-tglu-1:       NOTRUN -> [SKIP][256] ([i915#15609] / [i915#8825])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-b-plane-7.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
    - shard-tglu:         NOTRUN -> [SKIP][257] ([i915#15608] / [i915#8825]) +7 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-3:
    - shard-tglu:         NOTRUN -> [SKIP][258] ([i915#15608]) +33 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-3.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5:
    - shard-mtlp:         NOTRUN -> [SKIP][259] ([i915#15608]) +5 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5:
    - shard-dg2:          NOTRUN -> [SKIP][260] ([i915#15608] / [i915#8825]) +1 other test skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-7:
    - shard-dg1:          NOTRUN -> [SKIP][261] ([i915#15608] / [i915#8825]) +1 other test skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-7.html

  * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-7:
    - shard-dg1:          NOTRUN -> [SKIP][262] ([i915#15609]) +2 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-7.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-5:
    - shard-rkl:          NOTRUN -> [SKIP][263] ([i915#15609]) +4 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
    - shard-dg1:          NOTRUN -> [SKIP][264] ([i915#15608] / [i915#15609] / [i915#8825])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-tglu:         NOTRUN -> [SKIP][265] ([i915#15608] / [i915#15609] / [i915#8825])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#15608] / [i915#15609] / [i915#8825])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-8/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
    - shard-dg2:          NOTRUN -> [SKIP][267] ([i915#15608] / [i915#15609] / [i915#8825])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0:
    - shard-dg2:          NOTRUN -> [SKIP][268] ([i915#15608]) +8 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-5:
    - shard-dg2:          NOTRUN -> [SKIP][269] ([i915#15609])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-5.html
    - shard-mtlp:         NOTRUN -> [SKIP][270] ([i915#15609])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-8/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-7:
    - shard-tglu:         NOTRUN -> [SKIP][271] ([i915#15609])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-7.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-3:
    - shard-dg1:          NOTRUN -> [SKIP][272] ([i915#15608]) +12 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-3.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5:
    - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#15609] / [i915#8825])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html
    - shard-rkl:          NOTRUN -> [SKIP][274] ([i915#15609] / [i915#8825]) +2 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html
    - shard-mtlp:         NOTRUN -> [SKIP][275] ([i915#15609] / [i915#8825])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-8/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7:
    - shard-dg1:          NOTRUN -> [SKIP][276] ([i915#15609] / [i915#8825])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7.html
    - shard-tglu:         NOTRUN -> [SKIP][277] ([i915#15609] / [i915#8825])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7.html

  * igt@kms_plane_alpha_blend@alpha-opaque-fb:
    - shard-glk10:        NOTRUN -> [FAIL][278] ([i915#10647] / [i915#12169]) +1 other test fail
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1:
    - shard-glk10:        NOTRUN -> [FAIL][279] ([i915#10647]) +3 other tests fail
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#3555]) +1 other test skip
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html

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

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-dg1:          NOTRUN -> [SKIP][282] ([i915#13958])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-x.html

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

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

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
    - shard-tglu-1:       NOTRUN -> [SKIP][285] ([i915#15329]) +3 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
    - shard-rkl:          NOTRUN -> [SKIP][286] ([i915#15329]) +11 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-tglu-1:       NOTRUN -> [SKIP][287] ([i915#9812])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-tglu-1:       NOTRUN -> [SKIP][288] ([i915#12343])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-rkl:          NOTRUN -> [SKIP][289] ([i915#5354])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][290] ([i915#9340])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg1:          NOTRUN -> [SKIP][291] ([i915#15073])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg2:          [PASS][292] -> [SKIP][293] ([i915#15073]) +3 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html

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

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-rkl:          [PASS][295] -> [ABORT][296] ([i915#15132])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html

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

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

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

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][300] ([i915#11520]) +2 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

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

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
    - shard-dg2:          NOTRUN -> [SKIP][302] ([i915#11520])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
    - shard-snb:          NOTRUN -> [SKIP][303] ([i915#11520])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-snb4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html

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

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-tglu-1:       NOTRUN -> [SKIP][305] ([i915#11520]) +5 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

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

  * igt@kms_psr@fbc-pr-cursor-render:
    - shard-dg2:          NOTRUN -> [SKIP][307] ([i915#1072] / [i915#9732]) +4 other tests skip
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-6/igt@kms_psr@fbc-pr-cursor-render.html
    - shard-mtlp:         NOTRUN -> [SKIP][308] ([i915#9688]) +2 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-8/igt@kms_psr@fbc-pr-cursor-render.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-rkl:          NOTRUN -> [SKIP][309] ([i915#1072] / [i915#9732]) +18 other tests skip
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html

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

  * igt@kms_psr@psr-cursor-plane-move:
    - shard-rkl:          NOTRUN -> [SKIP][311] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_psr@psr-cursor-render:
    - shard-dg1:          NOTRUN -> [SKIP][312] ([i915#1072] / [i915#9732]) +9 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-17/igt@kms_psr@psr-cursor-render.html

  * igt@kms_psr@psr2-sprite-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][313] ([i915#9732]) +12 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglu-1:       NOTRUN -> [SKIP][314] ([i915#9685]) +1 other test skip
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-mtlp:         NOTRUN -> [SKIP][315] ([i915#12755]) +1 other test skip
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][316] ([i915#12755]) +1 other test skip
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html

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

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-rkl:          NOTRUN -> [SKIP][318] ([i915#5289])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-tglu:         NOTRUN -> [SKIP][319] ([i915#3555]) +3 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@basic:
    - shard-tglu:         NOTRUN -> [FAIL][320] ([i915#15106]) +2 other tests fail
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-4/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-dg2:          NOTRUN -> [SKIP][321] ([i915#3555])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-5/igt@kms_setmode@basic-clone-single-crtc.html
    - shard-dg1:          NOTRUN -> [SKIP][322] ([i915#3555]) +1 other test skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_setmode@basic-clone-single-crtc.html
    - shard-mtlp:         NOTRUN -> [SKIP][323] ([i915#3555] / [i915#8809])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-1-pipe-b-hdmi-a-2:
    - shard-glk:          [PASS][324] -> [FAIL][325] ([i915#15106]) +4 other tests fail
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-glk1/igt@kms_setmode@basic@pipe-a-hdmi-a-1-pipe-b-hdmi-a-2.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk1/igt@kms_setmode@basic@pipe-a-hdmi-a-1-pipe-b-hdmi-a-2.html

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

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

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

  * igt@kms_vrr@lobf:
    - shard-tglu-1:       NOTRUN -> [SKIP][330] ([i915#11920])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-1/igt@kms_vrr@lobf.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-mtlp:         NOTRUN -> [SKIP][331] +4 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
    - shard-dg2:          NOTRUN -> [SKIP][332] ([i915#2436])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
    - shard-rkl:          NOTRUN -> [SKIP][333] ([i915#2436])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html

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

  
#### Possible fixes ####

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-glk:          [DMESG-WARN][335] ([i915#118]) -> [PASS][336]
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-glk3/igt@gem_eio@in-flight-contexts-immediate.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk6/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_eio@in-flight-suspend:
    - shard-rkl:          [INCOMPLETE][337] ([i915#13390]) -> [PASS][338]
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@gem_eio@in-flight-suspend.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@kms:
    - shard-rkl:          [DMESG-WARN][339] ([i915#13363]) -> [PASS][340]
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@gem_eio@kms.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@gem_eio@kms.html
    - shard-tglu:         [DMESG-WARN][341] ([i915#13363]) -> [PASS][342]
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-tglu-4/igt@gem_eio@kms.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-4/igt@gem_eio@kms.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          [INCOMPLETE][343] ([i915#13356]) -> [PASS][344]
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_selftest@live@gem_contexts:
    - shard-dg2:          [DMESG-FAIL][345] ([i915#15558]) -> [PASS][346]
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-3/igt@i915_selftest@live@gem_contexts.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-3/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_selftest@live@objects:
    - shard-dg2:          [DMESG-FAIL][347] ([i915#15559]) -> [PASS][348]
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-3/igt@i915_selftest@live@objects.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-3/igt@i915_selftest@live@objects.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-dg1:          [FAIL][349] ([i915#14888]) -> [PASS][350]
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg1-15/igt@kms_async_flips@alternate-sync-async-flip.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-dg2:          [FAIL][351] ([i915#5956]) -> [PASS][352]
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-mtlp:         [FAIL][353] ([i915#5138]) -> [PASS][354]
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

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

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-rkl:          [FAIL][357] ([i915#13566]) -> [PASS][358] +1 other test pass
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-rkl:          [INCOMPLETE][359] ([i915#12358] / [i915#14152]) -> [PASS][360]
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-rkl:          [ABORT][361] ([i915#15132]) -> [PASS][362]
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglu:         [SKIP][363] ([i915#13030]) -> [PASS][364]
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-dg2:          [SKIP][365] ([i915#3555] / [i915#8228]) -> [PASS][366]
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          [SKIP][367] ([i915#3555] / [i915#8228]) -> [PASS][368]
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@kms_hdr@static-toggle.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_hdr@static-toggle.html

  * igt@kms_lease@lease-invalid-plane:
    - shard-dg1:          [DMESG-WARN][369] ([i915#4423]) -> [PASS][370] +3 other tests pass
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg1-19/igt@kms_lease@lease-invalid-plane.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-15/igt@kms_lease@lease-invalid-plane.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          [SKIP][371] ([i915#15073]) -> [PASS][372] +1 other test pass
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
    - shard-dg1:          [SKIP][373] ([i915#15073]) -> [PASS][374]
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  
#### Warnings ####

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

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-rkl:          [SKIP][377] ([i915#13008] / [i915#14544]) -> [SKIP][378] ([i915#13008])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_exec_balancer@parallel-keep-submit-fence:
    - shard-rkl:          [SKIP][379] ([i915#4525]) -> [SKIP][380] ([i915#14544] / [i915#4525])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html

  * igt@gem_exec_reloc@basic-gtt-cpu:
    - shard-rkl:          [SKIP][381] ([i915#14544] / [i915#3281]) -> [SKIP][382] ([i915#3281]) +2 other tests skip
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu.html

  * igt@gem_exec_reloc@basic-write-wc-noreloc:
    - shard-rkl:          [SKIP][383] ([i915#3281]) -> [SKIP][384] ([i915#14544] / [i915#3281]) +3 other tests skip
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@gem_exec_reloc@basic-write-wc-noreloc.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html

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

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-rkl:          [SKIP][387] ([i915#4613]) -> [SKIP][388] ([i915#14544] / [i915#4613]) +1 other test skip
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_readwrite@read-write:
    - shard-rkl:          [SKIP][389] ([i915#3282]) -> [SKIP][390] ([i915#14544] / [i915#3282]) +2 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@gem_readwrite@read-write.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@gem_readwrite@read-write.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-rkl:          [SKIP][391] ([i915#8411]) -> [SKIP][392] ([i915#14544] / [i915#8411]) +1 other test skip
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-rkl:          [SKIP][393] ([i915#14544] / [i915#3282]) -> [SKIP][394] ([i915#3282]) +2 other tests skip
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-rkl:          [SKIP][395] ([i915#14544] / [i915#3297]) -> [SKIP][396] ([i915#3297]) +1 other test skip
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gen9_exec_parse@bb-large:
    - shard-rkl:          [SKIP][397] ([i915#2527]) -> [SKIP][398] ([i915#14544] / [i915#2527])
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@gen9_exec_parse@bb-large.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-rkl:          [SKIP][399] ([i915#14544] / [i915#2527]) -> [SKIP][400] ([i915#2527])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@gen9_exec_parse@shadow-peek.html

  * igt@i915_pm_freq_api@freq-basic-api:
    - shard-rkl:          [SKIP][401] ([i915#8399]) -> [SKIP][402] ([i915#14544] / [i915#8399])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html

  * igt@i915_selftest@live:
    - shard-dg2:          [DMESG-FAIL][403] ([i915#12061] / [i915#15559]) -> [DMESG-FAIL][404] ([i915#12061])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-3/igt@i915_selftest@live.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-3/igt@i915_selftest@live.html

  * igt@intel_hwmon@hwmon-write:
    - shard-rkl:          [SKIP][405] ([i915#14544] / [i915#7707]) -> [SKIP][406] ([i915#7707])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-1/igt@intel_hwmon@hwmon-write.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-rkl:          [SKIP][407] ([i915#14544] / [i915#5286]) -> [SKIP][408] ([i915#5286]) +2 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-rkl:          [SKIP][409] ([i915#5286]) -> [SKIP][410] ([i915#14544] / [i915#5286])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-rkl:          [SKIP][411] ([i915#3638]) -> [SKIP][412] ([i915#14544] / [i915#3638])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-rkl:          [SKIP][413] ([i915#14544] / [i915#3638]) -> [SKIP][414] ([i915#3638])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-dg1:          [SKIP][415] ([i915#4538]) -> [SKIP][416] ([i915#4423] / [i915#4538])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][417] ([i915#14544] / [i915#6095]) -> [SKIP][418] ([i915#6095]) +1 other test skip
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][419] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][420] ([i915#14098] / [i915#6095]) +2 other tests skip
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-rkl:          [SKIP][421] ([i915#12313]) -> [SKIP][422] ([i915#12313] / [i915#14544])
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][423] ([i915#6095]) -> [SKIP][424] ([i915#14544] / [i915#6095]) +3 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][425] ([i915#14098] / [i915#6095]) -> [SKIP][426] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_chamelium_color@degamma:
    - shard-rkl:          [SKIP][427] ([i915#14544]) -> [SKIP][428] +4 other tests skip
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_chamelium_color@degamma.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
    - shard-rkl:          [SKIP][429] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][430] ([i915#11151] / [i915#7828]) +3 other tests skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-rkl:          [SKIP][431] ([i915#11151] / [i915#7828]) -> [SKIP][432] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-rkl:          [SKIP][433] ([i915#14544] / [i915#6944]) -> [SKIP][434] ([i915#6944]) +1 other test skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-rkl:          [SKIP][435] ([i915#15330] / [i915#3116]) -> [SKIP][436] ([i915#14544] / [i915#15330] / [i915#3116])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-rkl:          [SKIP][437] ([i915#14544] / [i915#15330]) -> [SKIP][438] ([i915#15330])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@lic-type-0:
    - shard-rkl:          [SKIP][439] ([i915#6944] / [i915#9424]) -> [SKIP][440] ([i915#14544] / [i915#6944] / [i915#9424])
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@kms_content_protection@lic-type-0.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-dg2:          [FAIL][441] ([i915#7173]) -> [SKIP][442] ([i915#6944])
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-11/igt@kms_content_protection@lic-type-0-hdcp14.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-1/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          [FAIL][443] ([i915#7173]) -> [SKIP][444] ([i915#6944] / [i915#7118])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-11/igt@kms_content_protection@srm.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-7/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][445] ([i915#6944] / [i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][446] ([i915#6944] / [i915#7118] / [i915#9424])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-11/igt@kms_content_protection@type1.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-rkl:          [SKIP][447] ([i915#3555]) -> [SKIP][448] ([i915#14544] / [i915#3555])
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-rkl:          [SKIP][449] ([i915#13049] / [i915#14544]) -> [SKIP][450] ([i915#13049])
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-rkl:          [SKIP][451] -> [SKIP][452] ([i915#14544]) +8 other tests skip
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-rkl:          [SKIP][453] ([i915#13749] / [i915#14544]) -> [SKIP][454] ([i915#13749])
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-rkl:          [SKIP][455] ([i915#13707] / [i915#14544]) -> [SKIP][456] ([i915#13707])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-basic:
    - shard-rkl:          [SKIP][457] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][458] ([i915#3555] / [i915#3840])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_dsc@dsc-basic.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-rkl:          [SKIP][459] ([i915#3840] / [i915#9053]) -> [SKIP][460] ([i915#14544] / [i915#3840] / [i915#9053])
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

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

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-rkl:          [SKIP][463] ([i915#14544] / [i915#9934]) -> [SKIP][464] ([i915#9934]) +4 other tests skip
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_flip@2x-flip-vs-panning.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
    - shard-rkl:          [SKIP][467] ([i915#2672]) -> [SKIP][468] ([i915#14544] / [i915#2672])
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][469] ([i915#14544] / [i915#1825]) -> [SKIP][470] ([i915#1825]) +13 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc:
    - shard-rkl:          [SKIP][471] ([i915#14544] / [i915#15574]) -> [SKIP][472] ([i915#15574])
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
    - shard-rkl:          [SKIP][473] ([i915#14544] / [i915#15102]) -> [SKIP][474] ([i915#15102]) +1 other test skip
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-dg2:          [SKIP][475] ([i915#15102] / [i915#3458]) -> [SKIP][476] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-rkl:          [SKIP][477] ([i915#1825]) -> [SKIP][478] ([i915#14544] / [i915#1825]) +13 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-rkl:          [SKIP][479] ([i915#14544] / [i915#5439]) -> [SKIP][480] ([i915#5439])
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-rkl:          [SKIP][481] ([i915#9766]) -> [SKIP][482] ([i915#14544] / [i915#9766])
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][483] ([i915#15102]) -> [SKIP][484] ([i915#14544] / [i915#15102]) +2 other tests skip
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [SKIP][485] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][486] ([i915#15102] / [i915#3458]) +3 other tests skip
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
    - shard-rkl:          [SKIP][487] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][488] ([i915#15102] / [i915#3023]) +7 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-rkl:          [SKIP][489] ([i915#15102] / [i915#3023]) -> [SKIP][490] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-rkl:          [SKIP][491] ([i915#12713]) -> [SKIP][492] ([i915#13331] / [i915#14544])
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
    - shard-rkl:          [SKIP][493] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][494] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825])
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-a-plane-0:
    - shard-rkl:          [SKIP][495] ([i915#15608]) -> [SKIP][496] ([i915#14544] / [i915#15608])
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-a-plane-0.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5:
    - shard-rkl:          [SKIP][497] ([i915#15609] / [i915#8825]) -> [SKIP][498] ([i915#14544] / [i915#15609] / [i915#8825])
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
    - shard-rkl:          [SKIP][499] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][500] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-a-plane-0:
    - shard-rkl:          [SKIP][501] ([i915#14544] / [i915#15608]) -> [SKIP][502] ([i915#15608]) +2 other tests skip
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-a-plane-0.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5:
    - shard-rkl:          [SKIP][503] ([i915#14544] / [i915#15608] / [i915#8825]) -> [SKIP][504] ([i915#15608] / [i915#8825]) +1 other test skip
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5:
    - shard-rkl:          [SKIP][505] ([i915#14544] / [i915#15609] / [i915#8825]) -> [SKIP][506] ([i915#15609] / [i915#8825]) +1 other test skip
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-rkl:          [SKIP][507] ([i915#13958]) -> [SKIP][508] ([i915#13958] / [i915#14544])
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-rkl:          [SKIP][509] ([i915#3828]) -> [SKIP][510] ([i915#14544] / [i915#3828])
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg1:          [SKIP][511] ([i915#3828]) -> [SKIP][512] ([i915#9340])
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-rkl:          [SKIP][513] ([i915#14544] / [i915#15403]) -> [SKIP][514] ([i915#15403])
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_pm_rpm@package-g7.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-rkl:          [SKIP][515] ([i915#6524]) -> [SKIP][516] ([i915#14544] / [i915#6524])
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][517] ([i915#11520]) -> [SKIP][518] ([i915#11520] / [i915#14544]) +1 other test skip
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-rkl:          [SKIP][519] ([i915#11520] / [i915#14544]) -> [SKIP][520] ([i915#11520]) +4 other tests skip
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

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

  * igt@kms_psr@fbc-psr-cursor-plane-move:
    - shard-rkl:          [SKIP][523] ([i915#1072] / [i915#9732]) -> [SKIP][524] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-8/igt@kms_psr@fbc-psr-cursor-plane-move.html
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-rkl:          [SKIP][525] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][526] ([i915#1072] / [i915#9732]) +7 other tests skip
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-7/igt@kms_psr@psr-sprite-plane-move.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-rkl:          [SKIP][527] ([i915#14544] / [i915#9685]) -> [SKIP][528] ([i915#9685])
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
    - shard-rkl:          [SKIP][529] ([i915#5289]) -> [SKIP][530] ([i915#14544] / [i915#5289])
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-rkl:          [SKIP][531] ([i915#9906]) -> [SKIP][532] ([i915#14544] / [i915#9906])
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@prime_vgem@basic-fence-read:
    - shard-rkl:          [SKIP][533] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][534] ([i915#3291] / [i915#3708])
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-rkl-2/igt@prime_vgem@basic-fence-read.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [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#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
  [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12935]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12935
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
  [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
  [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
  [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
  [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
  [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15558
  [i915#15559]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15559
  [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
  [i915#15573]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15573
  [i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609
  [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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [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#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [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#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
  [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#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [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#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
  [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
  [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
  [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#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [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#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#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [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_8721 -> IGTPW_14434
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_17899: 23ebb43006b887363bd6653fbc4a327fd3072226 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14434: 14434
  IGT_8721: 3707bb4267de22a18d61b232c4ab5fbaf61db90c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-01-28  8:24 ` [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices Jason-JH Lin
@ 2026-01-29 11:00   ` Kamil Konieczny
  2026-01-29 11:15   ` Ville Syrjälä
  1 sibling, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2026-01-29 11:00 UTC (permalink / raw)
  To: Jason-JH Lin
  Cc: igt-dev, Karthik B S, Swati Sharma, Juha-Pekka Heikkila,
	Bhanuprakash Modem, Fei Shao, Jani, Paul-PL Chen, Nancy Lin,
	Singo Chang, Gil Dekel, Yacoub,
	Project_Global_Chrome_Upstream_Group

Hi Jason-JH,
On 2026-01-28 at 16:24:42 +0800, Jason-JH Lin wrote:
> Use clamp to restrict CTM matrix values to the -2.0 to 2.0 range for
> MediaTek devices, ensuring tests do not exceed hardware limits.
> 
> Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> ---

Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

Regards,
Kamil

>  tests/kms_color.c | 19 +++++++++++++++++--
>  1 file changed, 17 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/kms_color.c b/tests/kms_color.c
> index b2ca6975d6a5..c6cd35d74a2f 100644
> --- a/tests/kms_color.c
> +++ b/tests/kms_color.c
> @@ -76,6 +76,8 @@
>   * @gamma-lut:          Gamma LUT
>   */
>  
> +#define CTM_SIZE		(9)
> +
>  IGT_TEST_DESCRIPTION("Test Color Features at Pipe level");
>  
>  static bool test_pipe_degamma(data_t *data,
> @@ -1025,7 +1027,7 @@ run_tests_for_pipe(data_t *data)
>  		const char *name;
>  		int iter;
>  		const color_t *fb_colors;
> -		double ctm[9];
> +		double ctm[CTM_SIZE];
>  		const char *desc;
>  	} ctm_tests[] = {
>  		{ .name = "ctm-red-to-blue",
> @@ -1128,6 +1130,19 @@ run_tests_for_pipe(data_t *data)
>  	}
>  
>  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> +		double fixed_ctm[CTM_SIZE];
> +		const double *ctm_ptr = ctm_tests[i].ctm;
> +
> +		/* The valid value of MediaTek color matrix range is -2.0 ~ 2.0 */
> +		if (is_mtk_device(data->drm_fd)) {
> +			int j;
> +
> +			for (j = 0; j < CTM_SIZE; j++)
> +				fixed_ctm[j] = clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> +
> +			ctm_ptr = fixed_ctm;
> +		}
> +
>  		igt_describe_f("%s", ctm_tests[i].desc);
>  		igt_subtest_with_dynamic_f("%s", ctm_tests[i].name) {
>  			for_each_pipe_with_valid_output(&data->display, pipe, data->output) {
> @@ -1135,7 +1150,7 @@ run_tests_for_pipe(data_t *data)
>  					      igt_output_name(data->output))
>  					run_ctm_tests_for_pipe(data, pipe,
>  							       ctm_tests[i].fb_colors,
> -							       ctm_tests[i].ctm,
> +							       ctm_ptr,
>  							       ctm_tests[i].iter);
>  				if (igt_run_in_simulation())
>  					break;
> -- 
> 2.43.0
> 

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

* Re: [PATCH i-g-t 2/2] tests/kms_color: Add 10-bit color depth support to CTM test for MediaTek
  2026-01-28  8:24 ` [PATCH i-g-t 2/2] tests/kms_color: Add 10-bit color depth support to CTM test for MediaTek Jason-JH Lin
@ 2026-01-29 11:07   ` Kamil Konieczny
  0 siblings, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2026-01-29 11:07 UTC (permalink / raw)
  To: Jason-JH Lin
  Cc: igt-dev, Karthik B S, Swati Sharma, Juha-Pekka Heikkila,
	Bhanuprakash Modem, Fei Shao, Jani, Paul-PL Chen, Nancy Lin,
	Singo Chang, Gil Dekel, Yacoub,
	Project_Global_Chrome_Upstream_Group

Hi Jason-JH,
On 2026-01-28 at 16:24:43 +0800, Jason-JH Lin wrote:
> Add 10-bit color depth flow to CTM test for MediaTek devices, which only
> support bit-true results with 10-bit data. The test now selects 8-bit or
> 10-bit color depth and framebuffer format based on device type.
> 
> Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>

LGTM
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

Regards,
Kamil

> ---
>  tests/kms_color.c | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/kms_color.c b/tests/kms_color.c
> index c6cd35d74a2f..146e1c67ea60 100644
> --- a/tests/kms_color.c
> +++ b/tests/kms_color.c
> @@ -792,18 +792,23 @@ run_ctm_tests_for_pipe(data_t *data, enum pipe p,
>  		       int iter)
>  {
>  	bool success = false;
> +	bool depth_10bit = false;
>  	double delta;
>  	int i;
>  
>  	test_setup(data, p);
>  
> +	/* MediaTek can only support bit-ture in 10-bit depth pre color */
> +	if (is_mtk_device(data->drm_fd))
> +		depth_10bit = true;
> +
>  	/*
> -	 * We assume an 8bits depth per color for degamma/gamma LUTs
> +	 * We assume an 8bits or 10bits depth per color for degamma/gamma LUTs
>  	 * for CRC checks with framebuffer references.
>  	 */
> -	data->color_depth = 8;
> +	data->color_depth = depth_10bit ? 10 : 8;
>  	delta = 1.0 / (1 << data->color_depth);
> -	data->drm_format = DRM_FORMAT_XRGB8888;
> +	data->drm_format = depth_10bit ? DRM_FORMAT_XRGB2101010 : DRM_FORMAT_XRGB8888;
>  	data->mode = igt_output_get_mode(data->output);
>  
>  	igt_require(pipe_output_combo_valid(data, p));
> -- 
> 2.43.0
> 

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

* Re: ✗ i915.CI.Full: failure for Add MediaTek CTM color test support
  2026-01-28 16:12 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-01-29 11:09   ` Kamil Konieczny
  0 siblings, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2026-01-29 11:09 UTC (permalink / raw)
  To: igt-dev; +Cc: Jason-JH Lin, I915-ci-infra

Hi igt-dev,
On 2026-01-28 at 16:12:22 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: Add MediaTek CTM color test support
> URL   : https://patchwork.freedesktop.org/series/160743/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_17899_full -> IGTPW_14434_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_14434_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_14434_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_14434/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_14434_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_plane@pixel-format-4-tiled-modifier:
>     - shard-mtlp:         [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-modifier.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-modifier.html
> 
>   * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
>     - shard-glk:          [PASS][3] -> [FAIL][4] +1 other test fail
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17899/shard-glk1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-glk1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
> 

Unrelated to change in kms_color.

Regards,
Kamil

>   
> New tests
> ---------
> 
>   New tests have been introduced between CI_DRM_17899_full and IGTPW_14434_full:
> 
> ### New IGT tests (15) ###
> 
>   * igt@i915_pm_rps@addfb25-4-tiled:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@basic-wc-gtt:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@cursora-vs-flipa-varying-size:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@draw-method-mmap-gtt:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@drm_dp_mst_helper:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@fbc-2p-scndscrn-cur-indfb-draw-render:
>     - 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@hw-rejects-pxp-context:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@psr-abgr161616f-draw-mmap-cpu:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@single-bo:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@syncobj-repeat:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@i915_pm_rps@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>     - Statuses :
>     - Exec time: [None] s
> 
>   * igt@kms_sequence@get-forked@pipe-a-vga-1:
>     - Statuses : 1 pass(s)
>     - Exec time: [2.37] s
> 
>   * igt@kms_vblank@ts-continuation-modeset@pipe-a-vga-1:
>     - Statuses : 1 pass(s)
>     - Exec time: [0.38] s
> 
>   * igt@kms_vblank@ts-continuation-modeset@pipe-b-vga-1:
>     - Statuses : 1 pass(s)
>     - Exec time: [0.27] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_14434_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@api_intel_bb@crc32:
>     - shard-tglu:         NOTRUN -> [SKIP][5] ([i915#6230])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14434/shard-tglu-8/igt@api_intel_bb@crc32.html
> 
...cut...

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-01-28  8:24 ` [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices Jason-JH Lin
  2026-01-29 11:00   ` Kamil Konieczny
@ 2026-01-29 11:15   ` Ville Syrjälä
  2026-01-29 11:42     ` Kamil Konieczny
  2026-01-30 13:32     ` Jason-JH Lin (林睿祥)
  1 sibling, 2 replies; 18+ messages in thread
From: Ville Syrjälä @ 2026-01-29 11:15 UTC (permalink / raw)
  To: Jason-JH Lin
  Cc: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
	Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao, Jani,
	Paul-PL Chen, Nancy Lin, Singo Chang, Gil Dekel, Yacoub,
	Project_Global_Chrome_Upstream_Group

On Wed, Jan 28, 2026 at 04:24:42PM +0800, Jason-JH Lin wrote:
> Use clamp to restrict CTM matrix values to the -2.0 to 2.0 range for
> MediaTek devices, ensuring tests do not exceed hardware limits.
> 
> Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> ---
>  tests/kms_color.c | 19 +++++++++++++++++--
>  1 file changed, 17 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/kms_color.c b/tests/kms_color.c
> index b2ca6975d6a5..c6cd35d74a2f 100644
> --- a/tests/kms_color.c
> +++ b/tests/kms_color.c
> @@ -76,6 +76,8 @@
>   * @gamma-lut:          Gamma LUT
>   */
>  
> +#define CTM_SIZE		(9)
> +
>  IGT_TEST_DESCRIPTION("Test Color Features at Pipe level");
>  
>  static bool test_pipe_degamma(data_t *data,
> @@ -1025,7 +1027,7 @@ run_tests_for_pipe(data_t *data)
>  		const char *name;
>  		int iter;
>  		const color_t *fb_colors;
> -		double ctm[9];
> +		double ctm[CTM_SIZE];
>  		const char *desc;
>  	} ctm_tests[] = {
>  		{ .name = "ctm-red-to-blue",
> @@ -1128,6 +1130,19 @@ run_tests_for_pipe(data_t *data)
>  	}
>  
>  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> +		double fixed_ctm[CTM_SIZE];
> +		const double *ctm_ptr = ctm_tests[i].ctm;
> +
> +		/* The valid value of MediaTek color matrix range is -2.0 ~ 2.0 */
> +		if (is_mtk_device(data->drm_fd)) {
> +			int j;
> +
> +			for (j = 0; j < CTM_SIZE; j++)
> +				fixed_ctm[j] = clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> +
> +			ctm_ptr = fixed_ctm;
> +		}

The kernel is supposed to clamp this.

> +
>  		igt_describe_f("%s", ctm_tests[i].desc);
>  		igt_subtest_with_dynamic_f("%s", ctm_tests[i].name) {
>  			for_each_pipe_with_valid_output(&data->display, pipe, data->output) {
> @@ -1135,7 +1150,7 @@ run_tests_for_pipe(data_t *data)
>  					      igt_output_name(data->output))
>  					run_ctm_tests_for_pipe(data, pipe,
>  							       ctm_tests[i].fb_colors,
> -							       ctm_tests[i].ctm,
> +							       ctm_ptr,
>  							       ctm_tests[i].iter);
>  				if (igt_run_in_simulation())
>  					break;
> -- 
> 2.43.0

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-01-29 11:15   ` Ville Syrjälä
@ 2026-01-29 11:42     ` Kamil Konieczny
  2026-01-30 13:32     ` Jason-JH Lin (林睿祥)
  1 sibling, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2026-01-29 11:42 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: Jason-JH Lin, igt-dev, Karthik B S, Swati Sharma,
	Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao, Jani,
	Paul-PL Chen, Nancy Lin, Singo Chang, Gil Dekel, Yacoub,
	Project_Global_Chrome_Upstream_Group

Hi Ville,
On 2026-01-29 at 13:15:13 +0200, Ville Syrjälä wrote:
> On Wed, Jan 28, 2026 at 04:24:42PM +0800, Jason-JH Lin wrote:
> > Use clamp to restrict CTM matrix values to the -2.0 to 2.0 range for
> > MediaTek devices, ensuring tests do not exceed hardware limits.
> > 
> > Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> > ---
> >  tests/kms_color.c | 19 +++++++++++++++++--
> >  1 file changed, 17 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/kms_color.c b/tests/kms_color.c
> > index b2ca6975d6a5..c6cd35d74a2f 100644
> > --- a/tests/kms_color.c
> > +++ b/tests/kms_color.c
> > @@ -76,6 +76,8 @@
> >   * @gamma-lut:          Gamma LUT
> >   */
> >  
> > +#define CTM_SIZE		(9)
> > +
> >  IGT_TEST_DESCRIPTION("Test Color Features at Pipe level");
> >  
> >  static bool test_pipe_degamma(data_t *data,
> > @@ -1025,7 +1027,7 @@ run_tests_for_pipe(data_t *data)
> >  		const char *name;
> >  		int iter;
> >  		const color_t *fb_colors;
> > -		double ctm[9];
> > +		double ctm[CTM_SIZE];
> >  		const char *desc;
> >  	} ctm_tests[] = {
> >  		{ .name = "ctm-red-to-blue",
> > @@ -1128,6 +1130,19 @@ run_tests_for_pipe(data_t *data)
> >  	}
> >  
> >  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> > +		double fixed_ctm[CTM_SIZE];
> > +		const double *ctm_ptr = ctm_tests[i].ctm;
> > +
> > +		/* The valid value of MediaTek color matrix range is -2.0 ~ 2.0 */
> > +		if (is_mtk_device(data->drm_fd)) {
> > +			int j;
> > +
> > +			for (j = 0; j < CTM_SIZE; j++)
> > +				fixed_ctm[j] = clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> > +
> > +			ctm_ptr = fixed_ctm;
> > +		}
> 
> The kernel is supposed to clamp this.
> 

Thank you for looing into this, is second patch ok?

Regards,
Kamil

> > +
> >  		igt_describe_f("%s", ctm_tests[i].desc);
> >  		igt_subtest_with_dynamic_f("%s", ctm_tests[i].name) {
> >  			for_each_pipe_with_valid_output(&data->display, pipe, data->output) {
> > @@ -1135,7 +1150,7 @@ run_tests_for_pipe(data_t *data)
> >  					      igt_output_name(data->output))
> >  					run_ctm_tests_for_pipe(data, pipe,
> >  							       ctm_tests[i].fb_colors,
> > -							       ctm_tests[i].ctm,
> > +							       ctm_ptr,
> >  							       ctm_tests[i].iter);
> >  				if (igt_run_in_simulation())
> >  					break;
> > -- 
> > 2.43.0
> 
> -- 
> Ville Syrjälä
> Intel

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-01-29 11:15   ` Ville Syrjälä
  2026-01-29 11:42     ` Kamil Konieczny
@ 2026-01-30 13:32     ` Jason-JH Lin (林睿祥)
  2026-01-30 15:19       ` Ville Syrjälä
  1 sibling, 1 reply; 18+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-01-30 13:32 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: karthik.b.s@intel.com, swati2.sharma@intel.com,
	juhapekka.heikkila@gmail.com, jani.nikula@intel.com,
	Singo Chang (張興國),
	Nancy Lin (林欣螢),
	bhanuprakash.modem@gmail.com, igt-dev@lists.freedesktop.org,
	Paul-pl Chen (陳柏霖),
	kamil.konieczny@linux.intel.com,
	Project_Global_Chrome_Upstream_Group, gildekel@google.com,
	fshao@chromium.org, markyacoub@chromium.org

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

On Thu, 2026-01-29 at 13:15 +0200, Ville Syrjälä wrote:
> On Wed, Jan 28, 2026 at 04:24:42PM +0800, Jason-JH Lin wrote:
> > Use clamp to restrict CTM matrix values to the -2.0 to 2.0 range
> > for
> > MediaTek devices, ensuring tests do not exceed hardware limits.
> > 
> > Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> > ---
> >  tests/kms_color.c | 19 +++++++++++++++++--
> >  1 file changed, 17 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/kms_color.c b/tests/kms_color.c
> > index b2ca6975d6a5..c6cd35d74a2f 100644
> > --- a/tests/kms_color.c
> > +++ b/tests/kms_color.c
> > @@ -76,6 +76,8 @@
> >   * @gamma-lut:          Gamma LUT
> >   */
> >  
> > +#define CTM_SIZE		(9)
> > +
> >  IGT_TEST_DESCRIPTION("Test Color Features at Pipe level");
> >  
> >  static bool test_pipe_degamma(data_t *data,
> > @@ -1025,7 +1027,7 @@ run_tests_for_pipe(data_t *data)
> >  		const char *name;
> >  		int iter;
> >  		const color_t *fb_colors;
> > -		double ctm[9];
> > +		double ctm[CTM_SIZE];
> >  		const char *desc;
> >  	} ctm_tests[] = {
> >  		{ .name = "ctm-red-to-blue",
> > @@ -1128,6 +1130,19 @@ run_tests_for_pipe(data_t *data)
> >  	}
> >  
> >  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> > +		double fixed_ctm[CTM_SIZE];
> > +		const double *ctm_ptr = ctm_tests[i].ctm;
> > +
> > +		/* The valid value of MediaTek color matrix range
> > is -2.0 ~ 2.0 */
> > +		if (is_mtk_device(data->drm_fd)) {
> > +			int j;
> > +
> > +			for (j = 0; j < CTM_SIZE; j++)
> > +				fixed_ctm[j] =
> > clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> > +
> > +			ctm_ptr = fixed_ctm;
> > +		}
> 
> The kernel is supposed to clamp this.

Thanks for the reviews!

The reason I added the clamp in here is that, without it, IGT will
generate a reference framebuffer using CTM=100.0 on the CPU side, then
send CTM1.0 to kernel.
IGT will generate another framebuffer using CTM=1.0, then send
CTM=100.0 to the kernel.

The kernel will clamp the CTM from 100.0 to 2.0 due to hardware limits,
so the hardware output will not match the CPU-generated reference,
resulting in a CRC mismatch and a test failure.

Therefore, I think I need to clamp CTM from 100.0 to 2.0 before IGT
generating a reference framebuffer on CPU side.

Regards,
Jason-JH Lin

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

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-01-30 13:32     ` Jason-JH Lin (林睿祥)
@ 2026-01-30 15:19       ` Ville Syrjälä
  2026-01-31 11:52         ` Jason-JH Lin (林睿祥)
  0 siblings, 1 reply; 18+ messages in thread
From: Ville Syrjälä @ 2026-01-30 15:19 UTC (permalink / raw)
  To: Jason-JH Lin (林睿祥)
  Cc: karthik.b.s@intel.com, swati2.sharma@intel.com,
	juhapekka.heikkila@gmail.com, jani.nikula@intel.com,
	Singo Chang (張興國),
	Nancy Lin (林欣螢),
	bhanuprakash.modem@gmail.com, igt-dev@lists.freedesktop.org,
	Paul-pl Chen (陳柏霖),
	kamil.konieczny@linux.intel.com,
	Project_Global_Chrome_Upstream_Group, gildekel@google.com,
	fshao@chromium.org, markyacoub@chromium.org

On Fri, Jan 30, 2026 at 01:32:05PM +0000, Jason-JH Lin (林睿祥) wrote:
> On Thu, 2026-01-29 at 13:15 +0200, Ville Syrjälä wrote:
> > On Wed, Jan 28, 2026 at 04:24:42PM +0800, Jason-JH Lin wrote:
> > > Use clamp to restrict CTM matrix values to the -2.0 to 2.0 range
> > > for
> > > MediaTek devices, ensuring tests do not exceed hardware limits.
> > > 
> > > Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> > > ---
> > >  tests/kms_color.c | 19 +++++++++++++++++--
> > >  1 file changed, 17 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/tests/kms_color.c b/tests/kms_color.c
> > > index b2ca6975d6a5..c6cd35d74a2f 100644
> > > --- a/tests/kms_color.c
> > > +++ b/tests/kms_color.c
> > > @@ -76,6 +76,8 @@
> > >   * @gamma-lut:          Gamma LUT
> > >   */
> > >  
> > > +#define CTM_SIZE		(9)
> > > +
> > >  IGT_TEST_DESCRIPTION("Test Color Features at Pipe level");
> > >  
> > >  static bool test_pipe_degamma(data_t *data,
> > > @@ -1025,7 +1027,7 @@ run_tests_for_pipe(data_t *data)
> > >  		const char *name;
> > >  		int iter;
> > >  		const color_t *fb_colors;
> > > -		double ctm[9];
> > > +		double ctm[CTM_SIZE];
> > >  		const char *desc;
> > >  	} ctm_tests[] = {
> > >  		{ .name = "ctm-red-to-blue",
> > > @@ -1128,6 +1130,19 @@ run_tests_for_pipe(data_t *data)
> > >  	}
> > >  
> > >  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> > > +		double fixed_ctm[CTM_SIZE];
> > > +		const double *ctm_ptr = ctm_tests[i].ctm;
> > > +
> > > +		/* The valid value of MediaTek color matrix range
> > > is -2.0 ~ 2.0 */
> > > +		if (is_mtk_device(data->drm_fd)) {
> > > +			int j;
> > > +
> > > +			for (j = 0; j < CTM_SIZE; j++)
> > > +				fixed_ctm[j] =
> > > clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> > > +
> > > +			ctm_ptr = fixed_ctm;
> > > +		}
> > 
> > The kernel is supposed to clamp this.
> 
> Thanks for the reviews!
> 
> The reason I added the clamp in here is that, without it, IGT will
> generate a reference framebuffer using CTM=100.0 on the CPU side, then
> send CTM1.0 to kernel.
> IGT will generate another framebuffer using CTM=1.0, then send
> CTM=100.0 to the kernel.
> 
> The kernel will clamp the CTM from 100.0 to 2.0 due to hardware limits,
> so the hardware output will not match the CPU-generated reference,
> resulting in a CRC mismatch and a test failure.
> 
> Therefore, I think I need to clamp CTM from 100.0 to 2.0 before IGT
> generating a reference framebuffer on CPU side.

IIRC the way the test does things is that with the 100.0 (or
whatever >1.0) the colors should end up fully saturated anyway.
So whether it used 2.0 or 100.0 shouldn't matter.

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-01-30 15:19       ` Ville Syrjälä
@ 2026-01-31 11:52         ` Jason-JH Lin (林睿祥)
  2026-02-10 17:28           ` Ville Syrjälä
  0 siblings, 1 reply; 18+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-01-31 11:52 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: karthik.b.s@intel.com, Singo Chang (張興國),
	juhapekka.heikkila@gmail.com, jani.nikula@intel.com,
	swati2.sharma@intel.com, Project_Global_Chrome_Upstream_Group,
	bhanuprakash.modem@gmail.com,
	Nancy Lin (林欣螢),
	igt-dev@lists.freedesktop.org, kamil.konieczny@linux.intel.com,
	Paul-pl Chen (陳柏霖), gildekel@google.com,
	fshao@chromium.org, markyacoub@chromium.org

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

On Fri, 2026-01-30 at 17:19 +0200, Ville Syrjälä wrote:

[snip]

> > > >  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> > > > +		double fixed_ctm[CTM_SIZE];
> > > > +		const double *ctm_ptr = ctm_tests[i].ctm;
> > > > +
> > > > +		/* The valid value of MediaTek color matrix
> > > > range
> > > > is -2.0 ~ 2.0 */
> > > > +		if (is_mtk_device(data->drm_fd)) {
> > > > +			int j;
> > > > +
> > > > +			for (j = 0; j < CTM_SIZE; j++)
> > > > +				fixed_ctm[j] =
> > > > clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> > > > +
> > > > +			ctm_ptr = fixed_ctm;
> > > > +		}
> > > 
> > > The kernel is supposed to clamp this.
> > 
> > Thanks for the reviews!
> > 
> > The reason I added the clamp in here is that, without it, IGT will
> > generate a reference framebuffer using CTM=100.0 on the CPU side,
> > then
> > send CTM1.0 to kernel.
> > IGT will generate another framebuffer using CTM=1.0, then send
> > CTM=100.0 to the kernel.
> > 
> > The kernel will clamp the CTM from 100.0 to 2.0 due to hardware
> > limits,
> > so the hardware output will not match the CPU-generated reference,
> > resulting in a CRC mismatch and a test failure.
> > 
> > Therefore, I think I need to clamp CTM from 100.0 to 2.0 before IGT
> > generating a reference framebuffer on CPU side.
> 
> IIRC the way the test does things is that with the 100.0 (or
> whatever >1.0) the colors should end up fully saturated anyway.
> So whether it used 2.0 or 100.0 shouldn't matter.
> 
For MTK hardware, CTM values between 1.0 and 2.0 result in a gain
effect, while values between 0 and 1.0 cause attenuation. Values above
2.0 are not supported by the hardware.

Therefore, if the reference framebuffer generated by the CPU using CTM
2.0 does not match the hardware’s output, the CRC should theoretically
be different. However, in our current tests, the CRC results for CTM
2.0 are actually identical.

This means that CTM values greater than 1.0 may not be equivalent to
CTM 1.0 in terms of output.

Regards,
Jason-JH Lin


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

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

* Re: [PATCH i-g-t 0/2] Add MediaTek CTM color test support
  2026-01-28  8:24 [PATCH i-g-t 0/2] Add MediaTek CTM color test support Jason-JH Lin
                   ` (4 preceding siblings ...)
  2026-01-28 16:12 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-02-10 10:15 ` Jason-JH Lin (林睿祥)
  5 siblings, 0 replies; 18+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-02-10 10:15 UTC (permalink / raw)
  To: karthik.b.s@intel.com, swati2.sharma@intel.com,
	juhapekka.heikkila@gmail.com, ville.syrjala@linux.intel.com,
	bhanuprakash.modem@gmail.com, igt-dev@lists.freedesktop.org,
	kamil.konieczny@linux.intel.com, fshao@chromium.org
  Cc: markyacoub@chromium.org, jani.nikula@intel.com,
	Paul-pl Chen (陳柏霖),
	Nancy Lin (林欣螢),
	Project_Global_Chrome_Upstream_Group,
	Singo Chang (張興國), gildekel@google.com

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

Hi Kamil, Ville,

Thanks for your review and guidance.
Do you have any concern on this series?

If everything looks good, could you please help to apply this series?
Much appreciated!

On Wed, 2026-01-28 at 16:24 +0800, Jason-JH Lin wrote:
> This series adds MediaTek hardware support for CTM (Color
> Transformation
> Matrix) color tests.
> 
> MediaTek display hardware has two specific characteristics for CTM:
> 1. CTM matrix value range is limited to -2.0 to 2.0
> 2. Bit-true results are only achievable with 10-bit color depth
> 
> Patch 1 clamps CTM matrix values to the hardware-supported range to
> prevent test failures when values exceed the limits.
> 
> Patch 2 switches to 10-bit color depth and XRGB2101010 format for
> MediaTek devices to enable accurate CRC validation.
> 
> Jason-JH Lin (2):
>   test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
>   tests/kms_color: Add 10-bit color depth support to CTM test for
>     MediaTek
> 
>  tests/kms_color.c | 30 +++++++++++++++++++++++++-----
>  1 file changed, 25 insertions(+), 5 deletions(-)
> 
> --
> 2.43.0
> 


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

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-01-31 11:52         ` Jason-JH Lin (林睿祥)
@ 2026-02-10 17:28           ` Ville Syrjälä
  2026-02-11 10:51             ` Jason-JH Lin (林睿祥)
  0 siblings, 1 reply; 18+ messages in thread
From: Ville Syrjälä @ 2026-02-10 17:28 UTC (permalink / raw)
  To: Jason-JH Lin (林睿祥)
  Cc: karthik.b.s@intel.com, Singo Chang (張興國),
	juhapekka.heikkila@gmail.com, jani.nikula@intel.com,
	swati2.sharma@intel.com, Project_Global_Chrome_Upstream_Group,
	bhanuprakash.modem@gmail.com,
	Nancy Lin (林欣螢),
	igt-dev@lists.freedesktop.org, kamil.konieczny@linux.intel.com,
	Paul-pl Chen (陳柏霖), gildekel@google.com,
	fshao@chromium.org, markyacoub@chromium.org

On Sat, Jan 31, 2026 at 11:52:02AM +0000, Jason-JH Lin (林睿祥) wrote:
> On Fri, 2026-01-30 at 17:19 +0200, Ville Syrjälä wrote:
> 
> [snip]
> 
> > > > >  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> > > > > +		double fixed_ctm[CTM_SIZE];
> > > > > +		const double *ctm_ptr = ctm_tests[i].ctm;
> > > > > +
> > > > > +		/* The valid value of MediaTek color matrix
> > > > > range
> > > > > is -2.0 ~ 2.0 */
> > > > > +		if (is_mtk_device(data->drm_fd)) {
> > > > > +			int j;
> > > > > +
> > > > > +			for (j = 0; j < CTM_SIZE; j++)
> > > > > +				fixed_ctm[j] =
> > > > > clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> > > > > +
> > > > > +			ctm_ptr = fixed_ctm;
> > > > > +		}
> > > > 
> > > > The kernel is supposed to clamp this.
> > > 
> > > Thanks for the reviews!
> > > 
> > > The reason I added the clamp in here is that, without it, IGT will
> > > generate a reference framebuffer using CTM=100.0 on the CPU side,
> > > then
> > > send CTM1.0 to kernel.
> > > IGT will generate another framebuffer using CTM=1.0, then send
> > > CTM=100.0 to the kernel.
> > > 
> > > The kernel will clamp the CTM from 100.0 to 2.0 due to hardware
> > > limits,
> > > so the hardware output will not match the CPU-generated reference,
> > > resulting in a CRC mismatch and a test failure.
> > > 
> > > Therefore, I think I need to clamp CTM from 100.0 to 2.0 before IGT
> > > generating a reference framebuffer on CPU side.
> > 
> > IIRC the way the test does things is that with the 100.0 (or
> > whatever >1.0) the colors should end up fully saturated anyway.
> > So whether it used 2.0 or 100.0 shouldn't matter.
> > 
> For MTK hardware, CTM values between 1.0 and 2.0 result in a gain
> effect, while values between 0 and 1.0 cause attenuation. Values above
> 2.0 are not supported by the hardware.
> 
> Therefore, if the reference framebuffer generated by the CPU using CTM
> 2.0 does not match the hardware’s output, the CRC should theoretically
> be different. However, in our current tests, the CRC results for CTM
> 2.0 are actually identical.
> 
> This means that CTM values greater than 1.0 may not be equivalent to
> CTM 1.0 in terms of output.

As I said IIRC the max-ctm test should only generate fully saturated
colors for any value >=1.0. So it shouldn't matter what the hardware
max is as long as it's >=1.0.

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-02-10 17:28           ` Ville Syrjälä
@ 2026-02-11 10:51             ` Jason-JH Lin (林睿祥)
  2026-02-11 12:44               ` Kamil Konieczny
  0 siblings, 1 reply; 18+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-02-11 10:51 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: karthik.b.s@intel.com, swati2.sharma@intel.com,
	juhapekka.heikkila@gmail.com, jani.nikula@intel.com,
	Project_Global_Chrome_Upstream_Group, gildekel@google.com,
	bhanuprakash.modem@gmail.com,
	Singo Chang (張興國),
	igt-dev@lists.freedesktop.org,
	Nancy Lin (林欣螢),
	kamil.konieczny@linux.intel.com, fshao@chromium.org,
	Paul-pl Chen (陳柏霖), markyacoub@chromium.org

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

On Tue, 2026-02-10 at 19:28 +0200, Ville Syrjälä wrote:
> On Sat, Jan 31, 2026 at 11:52:02AM +0000, Jason-JH Lin (林睿祥) wrote:
> > On Fri, 2026-01-30 at 17:19 +0200, Ville Syrjälä wrote:
> > 
> > [snip]
> > 
> > > > > >  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> > > > > > +		double fixed_ctm[CTM_SIZE];
> > > > > > +		const double *ctm_ptr = ctm_tests[i].ctm;
> > > > > > +
> > > > > > +		/* The valid value of MediaTek color
> > > > > > matrix
> > > > > > range
> > > > > > is -2.0 ~ 2.0 */
> > > > > > +		if (is_mtk_device(data->drm_fd)) {
> > > > > > +			int j;
> > > > > > +
> > > > > > +			for (j = 0; j < CTM_SIZE; j++)
> > > > > > +				fixed_ctm[j] =
> > > > > > clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> > > > > > +
> > > > > > +			ctm_ptr = fixed_ctm;
> > > > > > +		}
> > > > > 
> > > > > The kernel is supposed to clamp this.
> > > > 
> > > > Thanks for the reviews!
> > > > 
> > > > The reason I added the clamp in here is that, without it, IGT
> > > > will
> > > > generate a reference framebuffer using CTM=100.0 on the CPU
> > > > side,
> > > > then
> > > > send CTM1.0 to kernel.
> > > > IGT will generate another framebuffer using CTM=1.0, then send
> > > > CTM=100.0 to the kernel.
> > > > 
> > > > The kernel will clamp the CTM from 100.0 to 2.0 due to hardware
> > > > limits,
> > > > so the hardware output will not match the CPU-generated
> > > > reference,
> > > > resulting in a CRC mismatch and a test failure.
> > > > 
> > > > Therefore, I think I need to clamp CTM from 100.0 to 2.0 before
> > > > IGT
> > > > generating a reference framebuffer on CPU side.
> > > 
> > > IIRC the way the test does things is that with the 100.0 (or
> > > whatever >1.0) the colors should end up fully saturated anyway.
> > > So whether it used 2.0 or 100.0 shouldn't matter.
> > > 
> > For MTK hardware, CTM values between 1.0 and 2.0 result in a gain
> > effect, while values between 0 and 1.0 cause attenuation. Values
> > above
> > 2.0 are not supported by the hardware.
> > 
> > Therefore, if the reference framebuffer generated by the CPU using
> > CTM
> > 2.0 does not match the hardware’s output, the CRC should
> > theoretically
> > be different. However, in our current tests, the CRC results for
> > CTM
> > 2.0 are actually identical.
> > 
> > This means that CTM values greater than 1.0 may not be equivalent
> > to
> > CTM 1.0 in terms of output.
> 
> As I said IIRC the max-ctm test should only generate fully saturated
> colors for any value >=1.0. So it shouldn't matter what the hardware
> max is as long as it's >=1.0.
> 

I conducted some experiments and confirmed that what you said is
correct.

When the IGT test CTM value is greater than or equal to 1.0, the CPU
always draws a pattern where all RGB channels are filled.

Therefore, regardless of the hardware CTM value setting, as long as it
is greater than or equal to 1.0, the calculated RGB channels will
always be full, resulting in the same CRC checksum result.

I found the previous ctm-max failure was due to a 10-bits issue, so
please drop this patch and apply the first 10-bit patch in this
series. 

Thank you for your patience and corrections.

Regards,
Jason-JH Lin


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

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

* Re: [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices
  2026-02-11 10:51             ` Jason-JH Lin (林睿祥)
@ 2026-02-11 12:44               ` Kamil Konieczny
  0 siblings, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2026-02-11 12:44 UTC (permalink / raw)
  To: Jason-JH Lin (林睿祥)
  Cc: ville.syrjala@linux.intel.com, karthik.b.s@intel.com,
	swati2.sharma@intel.com, juhapekka.heikkila@gmail.com,
	jani.nikula@intel.com, Project_Global_Chrome_Upstream_Group,
	gildekel@google.com, bhanuprakash.modem@gmail.com,
	Singo Chang (張興國),
	igt-dev@lists.freedesktop.org,
	Nancy Lin (林欣螢), fshao@chromium.org,
	Paul-pl Chen (陳柏霖), markyacoub@chromium.org

Hi Jason-JH,
On 2026-02-11 at 10:51:21 +0000, Jason-JH Lin (林睿祥) wrote:
> On Tue, 2026-02-10 at 19:28 +0200, Ville Syrjälä wrote:
> > On Sat, Jan 31, 2026 at 11:52:02AM +0000, Jason-JH Lin (林睿祥) wrote:
> > > On Fri, 2026-01-30 at 17:19 +0200, Ville Syrjälä wrote:
> > > 
> > > [snip]
> > > 
> > > > > > >  	for (i = 0; i < ARRAY_SIZE(ctm_tests); i++) {
> > > > > > > +		double fixed_ctm[CTM_SIZE];
> > > > > > > +		const double *ctm_ptr = ctm_tests[i].ctm;
> > > > > > > +
> > > > > > > +		/* The valid value of MediaTek color
> > > > > > > matrix
> > > > > > > range
> > > > > > > is -2.0 ~ 2.0 */
> > > > > > > +		if (is_mtk_device(data->drm_fd)) {
> > > > > > > +			int j;
> > > > > > > +
> > > > > > > +			for (j = 0; j < CTM_SIZE; j++)
> > > > > > > +				fixed_ctm[j] =
> > > > > > > clamp(ctm_tests[i].ctm[j], -2.0, 2.0);
> > > > > > > +
> > > > > > > +			ctm_ptr = fixed_ctm;
> > > > > > > +		}
> > > > > > 
> > > > > > The kernel is supposed to clamp this.
> > > > > 
> > > > > Thanks for the reviews!
> > > > > 
> > > > > The reason I added the clamp in here is that, without it, IGT
> > > > > will
> > > > > generate a reference framebuffer using CTM=100.0 on the CPU
> > > > > side,
> > > > > then
> > > > > send CTM1.0 to kernel.
> > > > > IGT will generate another framebuffer using CTM=1.0, then send
> > > > > CTM=100.0 to the kernel.
> > > > > 
> > > > > The kernel will clamp the CTM from 100.0 to 2.0 due to hardware
> > > > > limits,
> > > > > so the hardware output will not match the CPU-generated
> > > > > reference,
> > > > > resulting in a CRC mismatch and a test failure.
> > > > > 
> > > > > Therefore, I think I need to clamp CTM from 100.0 to 2.0 before
> > > > > IGT
> > > > > generating a reference framebuffer on CPU side.
> > > > 
> > > > IIRC the way the test does things is that with the 100.0 (or
> > > > whatever >1.0) the colors should end up fully saturated anyway.
> > > > So whether it used 2.0 or 100.0 shouldn't matter.
> > > > 
> > > For MTK hardware, CTM values between 1.0 and 2.0 result in a gain
> > > effect, while values between 0 and 1.0 cause attenuation. Values
> > > above
> > > 2.0 are not supported by the hardware.
> > > 
> > > Therefore, if the reference framebuffer generated by the CPU using
> > > CTM
> > > 2.0 does not match the hardware’s output, the CRC should
> > > theoretically
> > > be different. However, in our current tests, the CRC results for
> > > CTM
> > > 2.0 are actually identical.
> > > 
> > > This means that CTM values greater than 1.0 may not be equivalent
> > > to
> > > CTM 1.0 in terms of output.
> > 
> > As I said IIRC the max-ctm test should only generate fully saturated
> > colors for any value >=1.0. So it shouldn't matter what the hardware
> > max is as long as it's >=1.0.
> > 
> 
> I conducted some experiments and confirmed that what you said is
> correct.
> 
> When the IGT test CTM value is greater than or equal to 1.0, the CPU
> always draws a pattern where all RGB channels are filled.
> 
> Therefore, regardless of the hardware CTM value setting, as long as it
> is greater than or equal to 1.0, the calculated RGB channels will
> always be full, resulting in the same CRC checksum result.
> 
> I found the previous ctm-max failure was due to a 10-bits issue, so
> please drop this patch and apply the first 10-bit patch in this
> series. 
> 
> Thank you for your patience and corrections.
> 
> Regards,
> Jason-JH Lin
> 

Thank you all, I merged 2nd patch.

Regards,
Kamil


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

end of thread, other threads:[~2026-02-11 12:44 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-28  8:24 [PATCH i-g-t 0/2] Add MediaTek CTM color test support Jason-JH Lin
2026-01-28  8:24 ` [PATCH i-g-t 1/2] test/kms_color: Clamp CTM values to -2.0~2.0 for MediaTek devices Jason-JH Lin
2026-01-29 11:00   ` Kamil Konieczny
2026-01-29 11:15   ` Ville Syrjälä
2026-01-29 11:42     ` Kamil Konieczny
2026-01-30 13:32     ` Jason-JH Lin (林睿祥)
2026-01-30 15:19       ` Ville Syrjälä
2026-01-31 11:52         ` Jason-JH Lin (林睿祥)
2026-02-10 17:28           ` Ville Syrjälä
2026-02-11 10:51             ` Jason-JH Lin (林睿祥)
2026-02-11 12:44               ` Kamil Konieczny
2026-01-28  8:24 ` [PATCH i-g-t 2/2] tests/kms_color: Add 10-bit color depth support to CTM test for MediaTek Jason-JH Lin
2026-01-29 11:07   ` Kamil Konieczny
2026-01-28  9:50 ` ✓ Xe.CI.BAT: success for Add MediaTek CTM color test support Patchwork
2026-01-28 10:57 ` ✓ i915.CI.BAT: " Patchwork
2026-01-28 16:12 ` ✗ i915.CI.Full: failure " Patchwork
2026-01-29 11:09   ` Kamil Konieczny
2026-02-10 10:15 ` [PATCH i-g-t 0/2] " Jason-JH Lin (林睿祥)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.