Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests
@ 2023-08-16 16:31 Bhanuprakash Modem
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 01/20] lib: Add tiling support for XE Bhanuprakash Modem
                   ` (22 more replies)
  0 siblings, 23 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Add IGT support to work kms tests on XE driver.

V2: - Rebase
V3: - Update testlist
V4: - Rebase

Bhanuprakash Modem (20):
  lib: Add tiling support for XE
  tests/kms_cursor_edge_walk: Fix intel specific checks
  tests/kms_getfb: Extended ccs tests to support XE
  tests/kms_addfb_basic: Add tiling support for XE
  tests/kms_plane: Add tiling support for XE
  tests/kms_plane_lowres: Add tiling support for XE
  tests/kms_plane_scaling: Add tiling support for XE
  tests/kms_rotation_crc: Add tiling support for XE
  tests/i915/kms_big_fb: Add tiling support for XE
  tests/i915/kms_draw_crc: Add tiling support for XE
  tests/i915/kms_flip_scaled_crc: Add tiling support for XE
  tests/i915/kms_flip_tiling: Add tiling support for XE
  tests/i915/kms_ccs: Add XE support
  tests/i915/kms_fb_coherancy: Add XE support
  tests/i915/kms_fbcon_fbt: Add XE support
  tests/kms_async_flips: Add XE support
  tests/kms_prime: Add XE support
  tests/intel-ci: Update Xe ffb testlist & blocklist for
    kms_frontbuffer_tracking
  tests/intel-ci: Drop tiling tests from xe blocklist
  HAX: Run tiling tests in XE fast-feedback

 lib/igt_draw.c                           |   5 +-
 lib/igt_fb.c                             |   8 +-
 lib/intel_bufops.c                       |  13 +-
 tests/i915/kms_big_fb.c                  |  23 +-
 tests/i915/kms_ccs.c                     |  42 +-
 tests/i915/kms_draw_crc.c                |   4 -
 tests/i915/kms_fb_coherency.c            |  43 +-
 tests/i915/kms_fbcon_fbt.c               |   2 +-
 tests/i915/kms_flip_scaled_crc.c         |   6 -
 tests/i915/kms_flip_tiling.c             |   6 -
 tests/intel-ci/xe-fast-feedback.testlist | 660 ++++++++++++++++-------
 tests/intel-ci/xe.blocklist.txt          |  13 +-
 tests/kms_addfb_basic.c                  |  17 +-
 tests/kms_async_flips.c                  |  12 +-
 tests/kms_cursor_edge_walk.c             |   2 +-
 tests/kms_getfb.c                        |  10 +-
 tests/kms_plane.c                        |   4 -
 tests/kms_plane_lowres.c                 |   3 -
 tests/kms_plane_scaling.c                |   4 -
 tests/kms_prime.c                        | 261 +++++++--
 tests/kms_rotation_crc.c                 |   8 +-
 21 files changed, 782 insertions(+), 364 deletions(-)

--
2.40.0

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

* [igt-dev] [i-g-t V4 01/20] lib: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-23 13:54   ` [igt-dev] [i-g-t,V4,01/20] " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 02/20] tests/kms_cursor_edge_walk: Fix intel specific checks Bhanuprakash Modem
                   ` (21 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in all libraries those used by
the Xe driver.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 lib/igt_draw.c     |  5 +----
 lib/igt_fb.c       |  8 ++++----
 lib/intel_bufops.c | 13 +++++++++----
 3 files changed, 14 insertions(+), 12 deletions(-)

diff --git a/lib/igt_draw.c b/lib/igt_draw.c
index 13b90702c..476778a13 100644
--- a/lib/igt_draw.c
+++ b/lib/igt_draw.c
@@ -677,14 +677,11 @@ static void draw_rect_blt(int fd, struct cmd_data *cmd_data,
 	int ver = intel_display_ver(devid);
 	int pitch;
 
-	if (tiling)
-		igt_require_i915(fd);
-
 	dst = create_buf(fd, cmd_data->bops, buf, tiling);
 	ibb = intel_bb_create(fd, PAGE_SIZE);
 	intel_bb_add_intel_buf(ibb, dst, true);
 
-	if (is_i915_device(fd) && HAS_4TILE(intel_get_drm_devid(fd))) {
+	if (HAS_4TILE(intel_get_drm_devid(fd))) {
 		int buf_height = buf->size / buf->stride;
 
 		switch (buf->bpp) {
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 60b0e2669..9b5f7f087 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -494,7 +494,7 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
 		break;
 	case I915_FORMAT_MOD_Yf_TILED:
 	case I915_FORMAT_MOD_Yf_TILED_CCS:
-		igt_require_i915(fd);
+		igt_require_intel(fd);
 		switch (fb_bpp) {
 		case 8:
 			*width_ret = 64;
@@ -767,7 +767,7 @@ static uint32_t calc_plane_stride(struct igt_fb *fb, int plane)
 		(fb->plane_bpp[plane] / 8);
 
 	if (fb->modifier != DRM_FORMAT_MOD_LINEAR &&
-	    is_i915_device(fb->fd) &&
+	    is_intel_device(fb->fd) &&
 	    intel_display_ver(intel_get_drm_devid(fb->fd)) <= 3) {
 		uint32_t stride;
 
@@ -836,7 +836,7 @@ static uint32_t calc_plane_stride(struct igt_fb *fb, int plane)
 static uint64_t calc_plane_size(struct igt_fb *fb, int plane)
 {
 	if (fb->modifier != DRM_FORMAT_MOD_LINEAR &&
-	    is_i915_device(fb->fd) &&
+	    is_intel_device(fb->fd) &&
 	    intel_display_ver(intel_get_drm_devid(fb->fd)) <= 3) {
 		uint64_t size = (uint64_t) fb->strides[plane] *
 			fb->plane_height[plane];
@@ -913,7 +913,7 @@ static unsigned int get_plane_alignment(struct igt_fb *fb, int color_plane)
 	unsigned int tile_row_size;
 	unsigned int alignment;
 
-	if (!(is_i915_device(fb->fd) &&
+	if (!(is_intel_device(fb->fd) &&
 	      is_gen12_ccs_modifier(fb->modifier) &&
 	      is_yuv_semiplanar_plane(fb, color_plane)))
 		return 0;
diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
index 524757933..2c91adb88 100644
--- a/lib/intel_bufops.c
+++ b/lib/intel_bufops.c
@@ -927,7 +927,8 @@ static void __intel_buf_init(struct buf_ops *bops,
 	/* Store gem bo size */
 	buf->bo_size = size;
 
-	set_hw_tiled(bops, buf);
+	if (bops->driver == INTEL_DRIVER_I915)
+		set_hw_tiled(bops, buf);
 }
 
 /**
@@ -1502,14 +1503,18 @@ static struct buf_ops *__buf_ops_create(int fd, bool check_idempotency)
 		  bops->intel_gen, bops->supported_tiles,
 		  bops->driver == INTEL_DRIVER_I915 ? "i915" : "xe");
 
-	/* No tiling support in XE. */
 	if (bops->driver == INTEL_DRIVER_XE) {
-		bops->supported_hw_tiles = TILE_NONE;
-
 		bops->linear_to_x = copy_linear_to_x;
 		bops->x_to_linear = copy_x_to_linear;
 		bops->linear_to_y = copy_linear_to_y;
 		bops->y_to_linear = copy_y_to_linear;
+		bops->linear_to_tile4 = copy_linear_to_tile4;
+		bops->tile4_to_linear = copy_tile4_to_linear;
+
+		bops->linear_to_yf = NULL;
+		bops->yf_to_linear = NULL;
+		bops->linear_to_ys = NULL;
+		bops->ys_to_linear = NULL;
 
 		return bops;
 	}
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 02/20] tests/kms_cursor_edge_walk: Fix intel specific checks
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 01/20] lib: Add tiling support for XE Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 03/20] tests/kms_getfb: Extended ccs tests to support XE Bhanuprakash Modem
                   ` (20 subsequent siblings)
  22 siblings, 0 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

Use the correct helper to check for the intel hardware.
s/is_i915_device/is_intel_device/

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
 tests/kms_cursor_edge_walk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c
index 8cc986fc8..2b4b43282 100644
--- a/tests/kms_cursor_edge_walk.c
+++ b/tests/kms_cursor_edge_walk.c
@@ -362,7 +362,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
 
 		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
 
-		if (is_i915_device(data.drm_fd))
+		if (is_intel_device(data.drm_fd))
 			data.devid = intel_get_drm_devid(data.drm_fd);
 
 		ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_WIDTH, &max_curw);
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 03/20] tests/kms_getfb: Extended ccs tests to support XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 01/20] lib: Add tiling support for XE Bhanuprakash Modem
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 02/20] tests/kms_cursor_edge_walk: Fix intel specific checks Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-17  8:29   ` Kamil Konieczny
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 04/20] tests/kms_addfb_basic: Add tiling support for XE Bhanuprakash Modem
                   ` (19 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

Add support for ccs tests work on XE driver.

V2: - Update XE blocklist

Fixes: 5fd20e72a (tests/kms_getfb: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
 tests/intel-ci/xe.blocklist.txt |  1 -
 tests/kms_getfb.c               | 10 +++++++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index 1778e91f1..805939507 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -78,7 +78,6 @@ igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-(atomic|legacy)
 igt@kms_rotation_crc@primary-(4|x|y|yf)-tiled-.*
 igt@kms_rotation_crc@exhaust-fences
 igt@kms_force_connector_basic@force-load-detect
-igt@kms_getfb@.*-ccs
 igt@kms_plane_lowres@tiling-(4|x|y|yf)
 igt@kms_.*@.*hang.*
 ##################################################################
diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
index f90e51d64..6ee58caab 100644
--- a/tests/kms_getfb.c
+++ b/tests/kms_getfb.c
@@ -48,6 +48,7 @@
 #include "i915/gem_create.h"
 #include "igt_device.h"
 #include "xe/xe_query.h"
+#include "xe/xe_ioctl.h"
 
 IGT_TEST_DESCRIPTION("Tests GETFB and GETFB2 ioctls.");
 
@@ -145,7 +146,10 @@ static void get_ccs_fb(int fd, struct drm_mode_fb_cmd2 *ret)
 		size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
 	}
 
-	add.handles[0] = gem_buffer_create_fb_obj(fd, size);
+	if (is_i915_device(fd))
+		add.handles[0] = gem_buffer_create_fb_obj(fd, size);
+	else
+		add.handles[0] = xe_bo_create_flags(fd, 0, size, vram_if_possible(fd, 0));
 	igt_require(add.handles[0] != 0);
 
 	if (!HAS_FLATCCS(devid))
@@ -315,7 +319,7 @@ static void test_duplicate_handles(int fd)
 		struct drm_mode_fb_cmd2 add_ccs = { };
 		struct drm_mode_fb_cmd get = { };
 
-		igt_require_i915(fd);
+		igt_require_intel(fd);
 		igt_require_f(!HAS_FLATCCS(intel_get_drm_devid(fd)),
 			      "skip because flat ccs has only one buffer.\n");
 
@@ -421,7 +425,7 @@ static void test_getfb2(int fd)
 		struct drm_mode_fb_cmd2 get = { };
 		int i;
 
-		igt_require_i915(fd);
+		igt_require_intel(fd);
 		get_ccs_fb(fd, &add_ccs);
 		igt_require(add_ccs.fb_id != 0);
 		get.fb_id = add_ccs.fb_id;
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 04/20] tests/kms_addfb_basic: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (2 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 03/20] tests/kms_getfb: Extended ccs tests to support XE Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-23 13:51   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 05/20] tests/kms_plane: " Bhanuprakash Modem
                   ` (18 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in Xe specific tests

V2: - Update Xe fast-feedback testlist & blocklist

Fixes: 8c3b02be3 (tests/kms_addfb_basic: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/intel-ci/xe-fast-feedback.testlist | 11 +++++++++++
 tests/intel-ci/xe.blocklist.txt          |  2 --
 tests/kms_addfb_basic.c                  | 17 ++++++++++++-----
 3 files changed, 23 insertions(+), 7 deletions(-)

diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 311f90c79..26c09ab8b 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -183,7 +183,13 @@ igt@xe_vm@munmap-style-unbind-userptr-inval-front
 igt@xe_waitfence@abstime
 igt@xe_waitfence@reltime
 igt@kms_addfb_basic@addfb25-bad-modifier
+igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
 igt@kms_addfb_basic@addfb25-modifier-no-flag
+igt@kms_addfb_basic@addfb25-x-tiled-legacy
+igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy
+igt@kms_addfb_basic@addfb25-yf-tiled-legacy
+igt@kms_addfb_basic@addfb25-y-tiled-legacy
+igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
 igt@kms_addfb_basic@bad-pitch-0
 igt@kms_addfb_basic@bad-pitch-1024
 igt@kms_addfb_basic@bad-pitch-128
@@ -193,7 +199,11 @@ igt@kms_addfb_basic@bad-pitch-63
 igt@kms_addfb_basic@bad-pitch-65536
 igt@kms_addfb_basic@bad-pitch-999
 igt@kms_addfb_basic@basic
+igt@kms_addfb_basic@basic-x-tiled-legacy
+igt@kms_addfb_basic@basic-y-tiled-legacy
 igt@kms_addfb_basic@bo-too-small
+igt@kms_addfb_basic@bo-too-small-due-to-tiling
+igt@kms_addfb_basic@framebuffer-vs-set-tiling
 igt@kms_addfb_basic@invalid-get-prop
 igt@kms_addfb_basic@invalid-get-prop-any
 igt@kms_addfb_basic@invalid-set-prop
@@ -201,6 +211,7 @@ igt@kms_addfb_basic@invalid-set-prop-any
 igt@kms_addfb_basic@no-handle
 igt@kms_addfb_basic@size-max
 igt@kms_addfb_basic@small-bo
+igt@kms_addfb_basic@tile-pitch-mismatch
 igt@kms_addfb_basic@too-high
 igt@kms_addfb_basic@too-wide
 igt@kms_addfb_basic@unused-handle
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index 805939507..358f44e6a 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -70,8 +70,6 @@ igt@kms_big_fb@(4|x|y|yf)-tiled-.*
 igt@kms_flip@2x-flip-vs-fences
 igt@kms_flip@flip-vs-fences(-interruptible)
 igt@kms_addfb_basic@clobberred-modifier
-igt@kms_addfb_basic@.*-tiling
-igt@kms_addfb_basic@.*-(4|x|y|yf)-.*
 igt@kms_async_flips@.*
 igt@kms_plane_multiple@tiling-(4|x|y|yf)
 igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-(atomic|legacy)
diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
index f415300b6..f6c27a3d3 100644
--- a/tests/kms_addfb_basic.c
+++ b/tests/kms_addfb_basic.c
@@ -444,7 +444,7 @@ static void tiling_tests(int fd)
 
 	igt_subtest_group {
 		igt_fixture {
-			igt_require_i915(fd);
+			igt_require_intel(fd);
 			tiled_x_bo = igt_create_bo_with_dimensions(fd, 1024, 1024,
 				DRM_FORMAT_XRGB8888, I915_FORMAT_MOD_X_TILED,
 				1024*4, NULL, NULL, NULL);
@@ -463,7 +463,8 @@ static void tiling_tests(int fd)
 		f.pitches[0] = 1024*4;
 		igt_describe("Check if addfb2 and rmfb call works for basic x-tiling test");
 		igt_subtest("basic-x-tiled-legacy") {
-			igt_require(gem_available_fences(fd) > 0);
+			if (is_i915_device(fd))
+				igt_require(gem_available_fences(fd) > 0);
 			f.handles[0] = tiled_x_bo;
 
 			do_ioctl(fd, DRM_IOCTL_MODE_ADDFB2, &f);
@@ -473,6 +474,7 @@ static void tiling_tests(int fd)
 
 		igt_describe("Check if addfb2 call works for x and y tiling");
 		igt_subtest("framebuffer-vs-set-tiling") {
+			igt_require_i915(fd);
 			igt_require(gem_available_fences(fd) > 0);
 			f.handles[0] = gem_bo;
 
@@ -487,6 +489,7 @@ static void tiling_tests(int fd)
 		igt_describe("Test that addfb2 call fails correctly for pitches mismatch");
 			f.pitches[0] = 512*4;
 		igt_subtest("tile-pitch-mismatch") {
+			igt_require_i915(fd);
 			igt_require(gem_available_fences(fd) > 0);
 			f.handles[0] = tiled_x_bo;
 
@@ -496,8 +499,12 @@ static void tiling_tests(int fd)
 		igt_describe("Test that addfb2 call fails correctly for basic y-tiling test");
 		f.pitches[0] = 1024*4;
 		igt_subtest("basic-y-tiled-legacy") {
-			igt_require(!gem_has_lmem(fd));
-			igt_require(gem_available_fences(fd) > 0);
+			if (is_i915_device(fd)) {
+				igt_require(!gem_has_lmem(fd));
+				igt_require(gem_available_fences(fd) > 0);
+			} else {
+				igt_require(!xe_has_vram(fd));
+			}
 			f.handles[0] = tiled_y_bo;
 
 			do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
@@ -1118,7 +1125,7 @@ igt_main
 		size_tests(fd);
 
 		igt_fixture
-			igt_require_i915(fd);
+			igt_require_intel(fd);
 
 		addfb25_ytile(fd);
 
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 05/20] tests/kms_plane: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (3 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 04/20] tests/kms_addfb_basic: Add tiling support for XE Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 06/20] tests/kms_plane_lowres: " Bhanuprakash Modem
                   ` (17 subsequent siblings)
  22 siblings, 0 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

Remove the tiling restrictions in Xe specific tests

V2: - Rebase

Fixes: 2b9637086 (tests/kms_plane: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
 tests/kms_plane.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 721d3b533..d8b5dca9c 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -1064,10 +1064,6 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
 			.modifier = plane->modifiers[i],
 		};
 
-		if (is_xe_device(data->drm_fd) &&
-		    f.modifier != DRM_FORMAT_MOD_LINEAR)
-			continue;
-
 		/* igt doesn't know how to sw generate UBWC: */
 		if (is_msm_device(data->drm_fd) &&
 		    f.modifier == DRM_FORMAT_MOD_QCOM_COMPRESSED)
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 06/20] tests/kms_plane_lowres: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (4 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 05/20] tests/kms_plane: " Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-18  8:27   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 07/20] tests/kms_plane_scaling: " Bhanuprakash Modem
                   ` (16 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in Xe specific tests

V2: - Update XE blocklist

Fixes: 129983d07 (tests/kms_plane_lowers: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/intel-ci/xe.blocklist.txt | 1 -
 tests/kms_plane_lowres.c        | 3 ---
 2 files changed, 4 deletions(-)

diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index 358f44e6a..01495c7c9 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -76,6 +76,5 @@ igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-(atomic|legacy)
 igt@kms_rotation_crc@primary-(4|x|y|yf)-tiled-.*
 igt@kms_rotation_crc@exhaust-fences
 igt@kms_force_connector_basic@force-load-detect
-igt@kms_plane_lowres@tiling-(4|x|y|yf)
 igt@kms_.*@.*hang.*
 ##################################################################
diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c
index 5ff06c417..ea6c08200 100644
--- a/tests/kms_plane_lowres.c
+++ b/tests/kms_plane_lowres.c
@@ -301,9 +301,6 @@ static void run_test(data_t *data, uint64_t modifier)
 	if(!igt_display_has_format_mod(&data->display, DRM_FORMAT_XRGB8888, modifier))
 		return;
 
-	if (is_xe_device(data->drm_fd) && modifier != DRM_FORMAT_MOD_LINEAR)
-		return;
-
 	for_each_pipe(&data->display, pipe) {
 		for_each_valid_output_on_pipe(&data->display, pipe, output) {
 			data->pipe = pipe;
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 07/20] tests/kms_plane_scaling: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (5 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 06/20] tests/kms_plane_lowres: " Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-18  8:29   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 08/20] tests/kms_rotation_crc: " Bhanuprakash Modem
                   ` (15 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in Xe specific tests

Fixes: 28bc56a8b (tests/kms_plane_scaling: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_plane_scaling.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 89e5e6d3d..a7d60d6fc 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -596,10 +596,6 @@ static void test_scaler_with_modifier_pipe(data_t *d,
 		for (int i = 0; i < ARRAY_SIZE(modifiers); i++) {
 			uint64_t modifier = modifiers[i];
 
-			if (is_xe_device(d->drm_fd) &&
-			    modifier != DRM_FORMAT_MOD_LINEAR)
-				continue;
-
 			if (igt_plane_has_format_mod(plane, format, modifier))
 				check_scaling_pipe_plane_rot(d, plane,
 							     format, modifier,
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 08/20] tests/kms_rotation_crc: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (6 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 07/20] tests/kms_plane_scaling: " Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-18  8:32   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 09/20] tests/i915/kms_big_fb: " Bhanuprakash Modem
                   ` (14 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in Xe specific tests

V2: - Update XE blocklist

Fixes: e1d5b831e (tests/kms_rotation_crc: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/intel-ci/xe.blocklist.txt | 1 -
 tests/kms_rotation_crc.c        | 8 ++------
 2 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index 01495c7c9..cc6a68c73 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -73,7 +73,6 @@ igt@kms_addfb_basic@clobberred-modifier
 igt@kms_async_flips@.*
 igt@kms_plane_multiple@tiling-(4|x|y|yf)
 igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-(atomic|legacy)
-igt@kms_rotation_crc@primary-(4|x|y|yf)-tiled-.*
 igt@kms_rotation_crc@exhaust-fences
 igt@kms_force_connector_basic@force-load-detect
 igt@kms_.*@.*hang.*
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index b80cf695e..f08d31e37 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -977,10 +977,6 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
 		igt_pipe_crc_start(data->pipe_crc);
 
 		for (i = 0; i < ARRAY_SIZE(planeconfigs); i++) {
-			if (is_xe_device(data->gfx_fd) &&
-			    planeconfigs[i].modifier != DRM_FORMAT_MOD_LINEAR)
-				continue;
-
 			p[0].fbinfo = &planeconfigs[i];
 			pointlocation(data, p, mode, 0);
 
@@ -1351,7 +1347,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
 	igt_describe("Tiling and Rotation test for gen 10+ for primary plane");
 	for (reflect_x = reflect_x_subtests; reflect_x->modifier; reflect_x++) {
 		igt_fixture
-			igt_require_i915(data.gfx_fd);
+			igt_require_intel(data.gfx_fd);
 
 		igt_subtest_f("primary-%s-reflect-x-%s",
 			      modifier_test_str(reflect_x->modifier),
@@ -1412,7 +1408,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
 		enum pipe pipe;
 		igt_output_t *output;
 
-		igt_require_i915(data.gfx_fd);
+		igt_require_intel(data.gfx_fd);
 		igt_display_require_output(&data.display);
 
 		for_each_pipe_with_valid_output(&data.display, pipe, output) {
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 09/20] tests/i915/kms_big_fb: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (7 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 08/20] tests/kms_rotation_crc: " Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-18  8:33   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 10/20] tests/i915/kms_draw_crc: " Bhanuprakash Modem
                   ` (13 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in Xe specific tests

V2: - Update XE blocklist

Fixes: 34168d915 (tests/i915/kms_big_fb: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/i915/kms_big_fb.c         | 23 +----------------------
 tests/intel-ci/xe.blocklist.txt |  1 -
 2 files changed, 1 insertion(+), 23 deletions(-)

diff --git a/tests/i915/kms_big_fb.c b/tests/i915/kms_big_fb.c
index 33008c40a..4f39a65f4 100644
--- a/tests/i915/kms_big_fb.c
+++ b/tests/i915/kms_big_fb.c
@@ -1111,10 +1111,6 @@ igt_main
 	for (int i = 1; i < ARRAY_SIZE(modifiers); i++) {
 		igt_subtest_f("%s-addfb-size-overflow",
 			      modifiers[i].name) {
-			/* No tiling support in XE. */
-			igt_skip_on(is_xe_device(data.drm_fd) &&
-				    modifiers[i].modifier != DRM_FORMAT_MOD_LINEAR);
-
 			data.modifier = modifiers[i].modifier;
 			test_size_overflow(&data);
 		}
@@ -1124,10 +1120,6 @@ igt_main
 	for (int i = 1; i < ARRAY_SIZE(modifiers); i++) {
 		igt_subtest_f("%s-addfb-size-offset-overflow",
 			      modifiers[i].name) {
-			/* No tiling support in XE. */
-			igt_skip_on(is_xe_device(data.drm_fd) &&
-				    modifiers[i].modifier != DRM_FORMAT_MOD_LINEAR);
-
 			data.modifier = modifiers[i].modifier;
 			test_size_offset_overflow(&data);
 		}
@@ -1136,10 +1128,6 @@ igt_main
 	igt_describe("Sanity check if addfb ioctl works correctly for given size and strides of fb");
 	for (int i = 0; i < ARRAY_SIZE(modifiers); i++) {
 		igt_subtest_f("%s-addfb", modifiers[i].name) {
-			/* No tiling support in XE. */
-			igt_skip_on(is_xe_device(data.drm_fd) &&
-				    modifiers[i].modifier != DRM_FORMAT_MOD_LINEAR);
-
 			data.modifier = modifiers[i].modifier;
 			test_addfb(&data);
 		}
@@ -1157,13 +1145,8 @@ igt_main
 				igt_describe("Sanity check if addfb ioctl works correctly for given "
 						"combination of modifier formats and rotation");
 				igt_subtest_f("%s-%dbpp-rotate-%d", modifiers[i].name,
-					      formats[j].bpp, rotations[k].angle) {
-					/* No tiling support in XE. */
-					igt_skip_on(is_xe_device(data.drm_fd) &&
-						    data.modifier != DRM_FORMAT_MOD_LINEAR);
-
+					      formats[j].bpp, rotations[k].angle)
 					test_scanout(&data);
-				}
 			}
 
 			igt_fixture
@@ -1205,10 +1188,6 @@ igt_main
 						igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 5);
 						data.max_hw_fb_width = min(data.hw_stride / (formats[j].bpp >> 3), data.max_fb_width);
 
-						/* No tiling support in XE. */
-						igt_skip_on(is_xe_device(data.drm_fd) &&
-							    modifiers[i].modifier != DRM_FORMAT_MOD_LINEAR);
-
 						test_scanout(&data);
 					}
 
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index cc6a68c73..dc6984c44 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -66,7 +66,6 @@ igt@kms_psr@.*_mmap_(cpu|gtt)
 igt@kms_legacy_colorkey@basic
 igt@kms_legacy_colorkey@invalid-plane
 igt@kms_flip_scaled_crc@flip-(32|64)bpp-(4|x|y|yf|tileccs)tile-.*
-igt@kms_big_fb@(4|x|y|yf)-tiled-.*
 igt@kms_flip@2x-flip-vs-fences
 igt@kms_flip@flip-vs-fences(-interruptible)
 igt@kms_addfb_basic@clobberred-modifier
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 10/20] tests/i915/kms_draw_crc: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (8 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 09/20] tests/i915/kms_big_fb: " Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-18  8:38   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 11/20] tests/i915/kms_flip_scaled_crc: " Bhanuprakash Modem
                   ` (12 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in Xe specific tests

V2: - Update XE blocklist

Fixes: f6d0bacc0 (tests/i915/kms_draw_crc: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/i915/kms_draw_crc.c       | 4 ----
 tests/intel-ci/xe.blocklist.txt | 1 -
 2 files changed, 5 deletions(-)

diff --git a/tests/i915/kms_draw_crc.c b/tests/i915/kms_draw_crc.c
index ddd025455..ee1980552 100644
--- a/tests/i915/kms_draw_crc.c
+++ b/tests/i915/kms_draw_crc.c
@@ -340,10 +340,6 @@ igt_main
 			for (modifier_idx = 0; modifier_idx < ARRAY_SIZE(modifiers); modifier_idx++) {
 				modifier = modifiers[modifier_idx];
 
-				/* No tiling support in XE. */
-				if (is_xe_device(drm_fd) && modifier != DRM_FORMAT_MOD_LINEAR)
-					continue;
-
 				for (format_idx = 0; format_idx < ARRAY_SIZE(formats); format_idx++) {
 					if (!igt_display_has_format_mod(&display, formats[format_idx], modifier))
 						continue;
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index dc6984c44..20a6c976b 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -54,7 +54,6 @@ igt@.*@.*pipe-(e|f|g|h).*
 igt@kms_bw@.*-(5|6|7|8)-displays-.*
 ##################################################################
 igt@kms_draw_crc@draw-method-(mmap-cpu|mmap-gtt|pwrite)
-igt@kms_draw_crc@fill-fb
 igt@kms_pipe_b_c_ivb@.*
 igt@kms_pwrite_crc
 igt@kms_ccs@.*
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 11/20] tests/i915/kms_flip_scaled_crc: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (9 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 10/20] tests/i915/kms_draw_crc: " Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-18  8:40   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 12/20] tests/i915/kms_flip_tiling: " Bhanuprakash Modem
                   ` (11 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in Xe specific tests

V2: - Update XE blocklist

Fixes: 113fc78d0 (tests/i915/kms_flip_scaled_crc: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/i915/kms_flip_scaled_crc.c | 6 ------
 tests/intel-ci/xe.blocklist.txt  | 1 -
 2 files changed, 7 deletions(-)

diff --git a/tests/i915/kms_flip_scaled_crc.c b/tests/i915/kms_flip_scaled_crc.c
index ad68f2474..3d7991890 100644
--- a/tests/i915/kms_flip_scaled_crc.c
+++ b/tests/i915/kms_flip_scaled_crc.c
@@ -835,12 +835,6 @@ igt_main
 	for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
 		igt_describe(flip_scenario_test[index].describe);
 		igt_subtest_with_dynamic(flip_scenario_test[index].name) {
-			/* No tiling support in XE. */
-			if (is_xe_device(data.drm_fd) &&
-			    (flip_scenario_test[index].firstmodifier != DRM_FORMAT_MOD_LINEAR ||
-			     flip_scenario_test[index].secondmodifier != DRM_FORMAT_MOD_LINEAR))
-				continue;
-
 			free_fbs(&data);
 			for_each_pipe(&data.display, pipe) {
 				bool found = false;
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index 20a6c976b..ffba73e02 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -64,7 +64,6 @@ igt@kms_busy@.*
 igt@kms_psr@.*_mmap_(cpu|gtt)
 igt@kms_legacy_colorkey@basic
 igt@kms_legacy_colorkey@invalid-plane
-igt@kms_flip_scaled_crc@flip-(32|64)bpp-(4|x|y|yf|tileccs)tile-.*
 igt@kms_flip@2x-flip-vs-fences
 igt@kms_flip@flip-vs-fences(-interruptible)
 igt@kms_addfb_basic@clobberred-modifier
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 12/20] tests/i915/kms_flip_tiling: Add tiling support for XE
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (10 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 11/20] tests/i915/kms_flip_scaled_crc: " Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-18  8:41   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 13/20] tests/i915/kms_ccs: Add XE support Bhanuprakash Modem
                   ` (10 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Remove the tiling restrictions in Xe specific tests

Fixes: 77e9c217f (tests/i915/kms_flip_tiling: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/i915/kms_flip_tiling.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/tests/i915/kms_flip_tiling.c b/tests/i915/kms_flip_tiling.c
index ada4f5e0d..d30f73a7f 100644
--- a/tests/i915/kms_flip_tiling.c
+++ b/tests/i915/kms_flip_tiling.c
@@ -230,12 +230,6 @@ igt_main
 					if (plane->formats[j] != data.testformat)
 						continue;
 
-					/* No tiling support in XE. */
-					if (is_xe_device(data.drm_fd) &&
-					    (plane->modifiers[i] != DRM_FORMAT_MOD_LINEAR ||
-					     plane->modifiers[j] != DRM_FORMAT_MOD_LINEAR))
-						continue;
-
 					igt_dynamic_f("%s-pipe-%s-%s-to-%s",
 						      igt_output_name(output),
 						      kmstest_pipe_name(pipe),
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 13/20] tests/i915/kms_ccs: Add XE support
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (11 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 12/20] tests/i915/kms_flip_tiling: " Bhanuprakash Modem
@ 2023-08-16 16:31 ` Bhanuprakash Modem
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 14/20] tests/i915/kms_fb_coherancy: " Bhanuprakash Modem
                   ` (9 subsequent siblings)
  22 siblings, 0 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:31 UTC (permalink / raw)
  To: igt-dev

Add XE driver support for kms tests. This patch will add a support
to call the corresponding apis based on the driver (i915/xe)

V2: - Update XE blocklist

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/i915/kms_ccs.c            | 42 ++++++++++++++++++++-------------
 tests/intel-ci/xe.blocklist.txt |  1 -
 2 files changed, 26 insertions(+), 17 deletions(-)

diff --git a/tests/i915/kms_ccs.c b/tests/i915/kms_ccs.c
index 976aedb06..4a0f024dd 100644
--- a/tests/i915/kms_ccs.c
+++ b/tests/i915/kms_ccs.c
@@ -32,6 +32,7 @@
 #include "igt.h"
 
 #include "i915/gem_create.h"
+#include "xe/xe_ioctl.h"
 
 /**
  * SUBTEST: %s-%s-%s
@@ -313,17 +314,19 @@ static void check_ccs_plane(int drm_fd, igt_fb_t *fb, int plane)
 	ccs_size = fb->strides[plane] * fb->plane_height[plane];
 	igt_assert(ccs_size);
 
-	gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0);
-
-	map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ);
-
+	if (is_i915_device(drm_fd)) {
+		gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0);
+		map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ);
+	} else {
+		map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ);
+	}
 	ccs_size = fb->strides[plane] * fb->plane_height[plane];
 	ccs_p = map + fb->offsets[plane];
 	for (i = 0; i < ccs_size; i += sizeof(uint32_t))
 		if (*(uint32_t *)(ccs_p + i))
 			break;
 
-	munmap(map, fb->size);
+	igt_assert(gem_munmap(map, fb->size) == 0);
 
 	igt_assert_f(i < ccs_size,
 		     "CCS plane %d (for main plane %d) lacks compression meta-data\n",
@@ -339,9 +342,12 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float
 	void *map;
 	uint32_t native_color;
 
-	gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0);
-
-	map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ);
+	if (is_i915_device(drm_fd)) {
+		gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, 0);
+		map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_READ);
+	} else {
+		map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ);
+	}
 	cc_p = map + fb->offsets[plane];
 
 	igt_assert(cc_color[0] == cc_p[0].f &&
@@ -356,7 +362,7 @@ static void check_ccs_cc_plane(int drm_fd, igt_fb_t *fb, int plane, const float
 
 	igt_assert(native_color == cc_p[4].d);
 
-	munmap(map, fb->size);
+	igt_assert(gem_munmap(map, fb->size) == 0);
 };
 
 static void check_all_ccs_planes(int drm_fd, igt_fb_t *fb, const float *cc_color, bool check_cc_plane)
@@ -378,14 +384,17 @@ static void fill_fb_random(int drm_fd, igt_fb_t *fb)
 	uint8_t *p;
 	int i;
 
-	gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU);
-
-	p = map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE);
+	if (is_i915_device(drm_fd)) {
+		gem_set_domain(drm_fd, fb->gem_handle, I915_GEM_DOMAIN_CPU, I915_GEM_DOMAIN_CPU);
+		p = map = gem_mmap__cpu(drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE);
+	} else {
+		p = map = xe_bo_mmap_ext(drm_fd, fb->gem_handle, fb->size, PROT_READ | PROT_WRITE);
+	}
 
 	for (i = 0; i < fb->size; i++)
 		p[i] = rand();
 
-	munmap(map, fb->size);
+	igt_assert(gem_munmap(map, fb->size) == 0);
 }
 
 static void test_bad_ccs_plane(data_t *data, int width, int height, int ccs_plane,
@@ -493,8 +502,9 @@ static void fast_clear_fb(int drm_fd, struct igt_fb *fb, const float *cc_color)
 	struct buf_ops *bops = buf_ops_create(drm_fd);
 	struct intel_buf *dst = igt_fb_create_intel_buf(drm_fd, bops, fb, "fast clear dst");
 
-	gem_set_domain(drm_fd, fb->gem_handle,
-		       I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
+	if (is_i915_device(drm_fd))
+		gem_set_domain(drm_fd, fb->gem_handle,
+			       I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
 
 	fast_clear(ibb, dst, 0, 0, fb->width, fb->height, cc_color);
 
@@ -814,7 +824,7 @@ igt_main_args("cs:", NULL, help_str, opt_handler, &data)
 	enum pipe pipe;
 
 	igt_fixture {
-		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
+		data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
 
 		igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 9);
 		kmstest_set_vt_graphics_mode();
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index ffba73e02..81599c778 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -56,7 +56,6 @@ igt@kms_bw@.*-(5|6|7|8)-displays-.*
 igt@kms_draw_crc@draw-method-(mmap-cpu|mmap-gtt|pwrite)
 igt@kms_pipe_b_c_ivb@.*
 igt@kms_pwrite_crc
-igt@kms_ccs@.*
 igt@kms_frontbuffer_tracking@.*
 igt@kms_fbcon_fbt@(fbc|psr)(-suspend)
 igt@kms_fence_pin_leak
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 14/20] tests/i915/kms_fb_coherancy: Add XE support
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (12 preceding siblings ...)
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 13/20] tests/i915/kms_ccs: Add XE support Bhanuprakash Modem
@ 2023-08-16 16:32 ` Bhanuprakash Modem
  2023-08-23 16:12   ` Kamil Konieczny
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 15/20] tests/i915/kms_fbcon_fbt: " Bhanuprakash Modem
                   ` (8 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:32 UTC (permalink / raw)
  To: igt-dev

Add XE driver support for kms tests. This patch will add a support
to call the corresponding apis based on the driver (i915/xe)

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/i915/kms_fb_coherency.c | 43 +++++++++++++++++++----------------
 1 file changed, 23 insertions(+), 20 deletions(-)

diff --git a/tests/i915/kms_fb_coherency.c b/tests/i915/kms_fb_coherency.c
index c772ddcdc..745ffcdd2 100644
--- a/tests/i915/kms_fb_coherency.c
+++ b/tests/i915/kms_fb_coherency.c
@@ -16,6 +16,7 @@
 #include <string.h>
 
 #include "igt.h"
+#include "xe/xe_ioctl.h"
 
 typedef struct {
 	int drm_fd;
@@ -91,7 +92,7 @@ static struct igt_fb *prepare_fb(data_t *data)
 			0, 0, fb->width, fb->height,
 			0, 0, fb->width << 16, fb->height << 16);
 
-	if (!gem_has_lmem(data->drm_fd)) {
+	if (is_i915_device(data->drm_fd) && !gem_has_lmem(data->drm_fd)) {
 		uint32_t caching;
 
 		/* make sure caching mode has become UC/WT */
@@ -160,7 +161,10 @@ static void test_mmap_offset_wc(data_t *data)
 
 	fb = prepare_fb(data);
 
-	buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE);
+	if (is_i915_device(data->drm_fd))
+		buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE);
+	else
+		buf = xe_bo_mmap_ext(data->drm_fd, fb->gem_handle, fb->size, PROT_WRITE);
 
 	check_buf_crc(data, buf, fb);
 }
@@ -226,7 +230,7 @@ igt_main
 	data_t data;
 
 	igt_fixture {
-		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
+		data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
 
 		data.devid = intel_get_drm_devid(data.drm_fd);
 
@@ -251,39 +255,38 @@ igt_main
 	 * Test category: functionality test
 	 */
 	igt_subtest_with_dynamic("memset-crc") {
-		if (gem_has_mappable_ggtt(data.drm_fd)) {
+		if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_GTT)) {
 			igt_dynamic("mmap-gtt")
 				test_mmap_gtt(&data);
 
 			cleanup_crtc(&data);
 		}
 
-		if (gem_mmap_offset__has_wc(data.drm_fd)) {
+		if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_WC)) {
 			igt_dynamic("mmap-offset-wc")
 				test_mmap_offset_wc(&data);
 
 			cleanup_crtc(&data);
 		}
 
-		if (gem_has_lmem(data.drm_fd)) {
-			igt_dynamic("mmap-offset-fixed")
-				test_mmap_offset_fixed(&data);
+		if (is_i915_device(data.drm_fd)) {
+			if (gem_has_lmem(data.drm_fd)) {
+				igt_dynamic("mmap-offset-fixed")
+					test_mmap_offset_fixed(&data);
+			} else if (gem_has_mmap_offset(data.drm_fd)) {
+				igt_dynamic("mmap-offset-uc")
+					test_mmap_offset_uc(&data);
+			}
 
 			cleanup_crtc(&data);
 
-		} else if (gem_has_mmap_offset(data.drm_fd)) {
-			igt_dynamic("mmap-offset-uc")
-				test_mmap_offset_uc(&data);
+			if (gem_has_legacy_mmap(data.drm_fd) &&
+			    gem_mmap__has_wc(data.drm_fd)) {
+				igt_dynamic("mmap-legacy-wc")
+					test_legacy_mmap_wc(&data);
 
-			cleanup_crtc(&data);
-		}
-
-		if (gem_has_legacy_mmap(data.drm_fd) &&
-		    gem_mmap__has_wc(data.drm_fd)) {
-			igt_dynamic("mmap-legacy-wc")
-				test_legacy_mmap_wc(&data);
-
-			cleanup_crtc(&data);
+				cleanup_crtc(&data);
+			}
 		}
 	}
 
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 15/20] tests/i915/kms_fbcon_fbt: Add XE support
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (13 preceding siblings ...)
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 14/20] tests/i915/kms_fb_coherancy: " Bhanuprakash Modem
@ 2023-08-16 16:32 ` Bhanuprakash Modem
  2023-08-18  8:43   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 16/20] tests/kms_async_flips: " Bhanuprakash Modem
                   ` (7 subsequent siblings)
  22 siblings, 1 reply; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:32 UTC (permalink / raw)
  To: igt-dev

Add XE driver support for kms tests.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/i915/kms_fbcon_fbt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/i915/kms_fbcon_fbt.c b/tests/i915/kms_fbcon_fbt.c
index e65cbda93..9ee14f3b1 100644
--- a/tests/i915/kms_fbcon_fbt.c
+++ b/tests/i915/kms_fbcon_fbt.c
@@ -420,7 +420,7 @@ static void setup_environment(struct drm_info *drm)
 {
 	int i;
 
-	drm->fd = drm_open_driver_master(DRIVER_INTEL);
+	drm->fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
 	igt_require(drm->fd >= 0);
 	drm->debugfs_fd = igt_debugfs_dir(drm->fd);
 	igt_require(drm->debugfs_fd >= 0);
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 16/20] tests/kms_async_flips: Add XE support
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (14 preceding siblings ...)
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 15/20] tests/i915/kms_fbcon_fbt: " Bhanuprakash Modem
@ 2023-08-16 16:32 ` Bhanuprakash Modem
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 17/20] tests/kms_prime: " Bhanuprakash Modem
                   ` (6 subsequent siblings)
  22 siblings, 0 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:32 UTC (permalink / raw)
  To: igt-dev

Add XE driver support for kms tests.

V2: - Update XE blocklist

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
---
 tests/intel-ci/xe.blocklist.txt |  1 -
 tests/kms_async_flips.c         | 12 +++---------
 2 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index 81599c778..b89b0b951 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -66,7 +66,6 @@ igt@kms_legacy_colorkey@invalid-plane
 igt@kms_flip@2x-flip-vs-fences
 igt@kms_flip@flip-vs-fences(-interruptible)
 igt@kms_addfb_basic@clobberred-modifier
-igt@kms_async_flips@.*
 igt@kms_plane_multiple@tiling-(4|x|y|yf)
 igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-(atomic|legacy)
 igt@kms_rotation_crc@exhaust-fences
diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
index 2a317a9ef..45c38c590 100644
--- a/tests/kms_async_flips.c
+++ b/tests/kms_async_flips.c
@@ -254,7 +254,7 @@ static void test_async_flip(data_t *data)
 			 * in order to change the watermark levels as per the optimization. Hence the
 			 * subsequent async flips will actually do the asynchronous flips.
 			 */
-			if (is_i915_device(data->drm_fd)) {
+			if (is_intel_device(data->drm_fd)) {
 				uint32_t devid = intel_get_drm_devid(data->drm_fd);
 
 				if (IS_GEN9(devid) || IS_GEN10(devid) || AT_LEAST_GEN(devid, 12)) {
@@ -663,13 +663,7 @@ igt_main
 	int i;
 
 	igt_fixture {
-		/*
-		 * FIXME: As of now, Async flips won't work with linear buffers
-		 * on Intel hardware, hence don't run tests on XE device as XE
-		 * won't support tiling.
-		 * Once Kernel changes got landed, please update this logic.
-		 */
-		data.drm_fd = drm_open_driver_master(DRIVER_ANY & ~DRIVER_XE);
+		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
 		kmstest_set_vt_graphics_mode();
 		igt_display_require(&data.display, data.drm_fd);
 		igt_display_require_output(&data.display);
@@ -717,7 +711,7 @@ igt_main
 	igt_describe("Negative case to verify if changes in fb are rejected from kernel as expected");
 	igt_subtest_with_dynamic("invalid-async-flip") {
 		/* TODO: support more vendors */
-		igt_require(is_i915_device(data.drm_fd));
+		igt_require(is_intel_device(data.drm_fd));
 		igt_require(igt_display_has_format_mod(&data.display, DRM_FORMAT_XRGB8888,
 						       I915_FORMAT_MOD_Y_TILED));
 
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 17/20] tests/kms_prime: Add XE support
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (15 preceding siblings ...)
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 16/20] tests/kms_async_flips: " Bhanuprakash Modem
@ 2023-08-16 16:32 ` Bhanuprakash Modem
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 18/20] tests/intel-ci: Update Xe ffb testlist & blocklist for kms_frontbuffer_tracking Bhanuprakash Modem
                   ` (5 subsequent siblings)
  22 siblings, 0 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:32 UTC (permalink / raw)
  To: igt-dev

Add XE driver support for kms tests.

V2: - Use rendercopy method for both i915 & xe
    - Minor cleanup
V3: - New patch for cleanup & rendercopy
V4: - Fallback to blitter
V5: - Rebase

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_prime.c | 261 +++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 223 insertions(+), 38 deletions(-)

diff --git a/tests/kms_prime.c b/tests/kms_prime.c
index a14006147..8fc1ed524 100644
--- a/tests/kms_prime.c
+++ b/tests/kms_prime.c
@@ -27,9 +27,15 @@
 #include "igt_sysfs.h"
 #include <fcntl.h>
 
+#include <limits.h>
 #include <sys/ioctl.h>
 #include <sys/poll.h>
 #include <time.h>
+#include "lib/intel_blt.h"
+#include "lib/intel_mocs.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+
 /**
  * TEST: kms prime
  * Category: Display
@@ -147,7 +153,29 @@ static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch,
 	scratch->height = mode->vdisplay;
 	scratch->bpp = 32;
 
-	if (!is_i915_device(exporter_fd)) {
+	if (is_intel_device(exporter_fd)) {
+		igt_calc_fb_size(exporter_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888,
+				 DRM_FORMAT_MOD_LINEAR, &scratch->size, &scratch->pitch);
+
+		if (is_i915_device(exporter_fd)) {
+			if (gem_has_lmem(exporter_fd))
+				scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size,
+								       REGION_LMEM(0), REGION_SMEM);
+			else
+				scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size,
+								       REGION_SMEM);
+
+			ptr = gem_mmap__device_coherent(exporter_fd, scratch->handle, 0,
+							scratch->size, PROT_WRITE | PROT_READ);
+		} else {
+			scratch->handle = xe_bo_create_flags(exporter_fd, 0,
+							     ALIGN(scratch->size, xe_get_default_alignment(exporter_fd)),
+							     vram_if_possible(exporter_fd, 0));
+
+			ptr = xe_bo_mmap_ext(exporter_fd, scratch->handle,
+					     scratch->size, PROT_READ | PROT_WRITE);
+		}
+	} else {
 		scratch->handle = kmstest_dumb_create(exporter_fd,
 						      ALIGN(scratch->width, 256),
 						      scratch->height, scratch->bpp,
@@ -155,18 +183,6 @@ static void prepare_scratch(int exporter_fd, struct dumb_bo *scratch,
 
 		ptr = kmstest_dumb_map_buffer(exporter_fd, scratch->handle,
 					      scratch->size, PROT_WRITE);
-	} else {
-		igt_calc_fb_size(exporter_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888,
-				 DRM_FORMAT_MOD_LINEAR, &scratch->size, &scratch->pitch);
-		if (gem_has_lmem(exporter_fd))
-			scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size,
-								       REGION_LMEM(0), REGION_SMEM);
-		else
-			scratch->handle = gem_create_in_memory_regions(exporter_fd, scratch->size,
-								       REGION_SMEM);
-
-		ptr = gem_mmap__device_coherent(exporter_fd, scratch->handle, 0, scratch->size,
-						PROT_WRITE | PROT_READ);
 	}
 
 	for (size_t idx = 0; idx < scratch->size / sizeof(*ptr); ++idx)
@@ -185,23 +201,52 @@ static void prepare_fb(int importer_fd, struct dumb_bo *scratch, struct igt_fb *
 		    color_encoding, color_range);
 }
 
+static struct blt_copy_object *blt_fb_init(const struct igt_fb *fb,
+					   uint32_t memregion, uint32_t pitch)
+{
+	uint32_t name, handle;
+	struct blt_copy_object *blt;
+
+	blt = malloc(sizeof(*blt));
+	igt_assert(blt);
+
+	name = gem_flink(fb->fd, fb->gem_handle);
+	handle = gem_open(fb->fd, name);
+
+	blt_set_object(blt, handle, fb->size, memregion,
+		       intel_get_uc_mocs(fb->fd),
+		       0, 0, 0);
+
+	blt_set_geom(blt, pitch, 0, 0, fb->width, fb->height, 0, 0);
+
+	blt->plane_offset = 0;
+
+	blt->ptr = xe_bo_mmap_ext(fb->fd, handle, fb->size,
+				  PROT_READ | PROT_WRITE);
+	return blt;
+}
+
 static void import_fb(int importer_fd, struct igt_fb *fb,
 		      int dmabuf_fd, uint32_t pitch)
 {
 	uint32_t offsets[4] = {}, pitches[4] = {}, handles[4] = {}, temp_buf_handle;
 	int ret;
+	struct igt_fb dst_fb;
+
+	if ((is_i915_device(importer_fd) && gem_has_lmem(importer_fd)) ||
+	    (is_xe_device(importer_fd) && xe_has_vram(importer_fd)))  {
+		uint64_t fb_size = 0;
+		uint64_t ahnd = 0;
 
-	if (is_i915_device(importer_fd)) {
-		if (gem_has_lmem(importer_fd)) {
-			uint64_t ahnd = get_reloc_ahnd(importer_fd, 0);
-			uint64_t fb_size = 0;
+		igt_info("Importer is dGPU\n");
+		temp_buf_handle = prime_fd_to_handle(importer_fd, dmabuf_fd);
+		igt_assert(temp_buf_handle > 0);
+		fb->gem_handle = igt_create_bo_with_dimensions(importer_fd, fb->width, fb->height,
+							       fb->drm_format, fb->modifier, pitch, &fb_size, NULL, NULL);
+		igt_assert(fb->gem_handle > 0);
 
-			igt_info("Importer is dGPU\n");
-			temp_buf_handle = prime_fd_to_handle(importer_fd, dmabuf_fd);
-			igt_assert(temp_buf_handle > 0);
-			fb->gem_handle = igt_create_bo_with_dimensions(importer_fd, fb->width, fb->height,
-								       fb->drm_format, fb->modifier, pitch, &fb_size, NULL, NULL);
-			igt_assert(fb->gem_handle > 0);
+		if (is_i915_device(importer_fd)) {
+			ahnd = get_reloc_ahnd(importer_fd, 0);
 
 			igt_blitter_src_copy(importer_fd, ahnd, 0, NULL, temp_buf_handle,
 					     0, pitch, fb->modifier, 0, 0, fb_size, fb->width,
@@ -212,7 +257,62 @@ static void import_fb(int importer_fd, struct igt_fb *fb,
 			gem_close(importer_fd, temp_buf_handle);
 			put_ahnd(ahnd);
 		} else {
-			fb->gem_handle = prime_fd_to_handle(importer_fd, dmabuf_fd);
+			uint32_t xe_bb;
+			uint64_t bb_size = 4096;
+			struct blt_copy_data blt = {};
+			struct blt_copy_object *src, *dst;
+			struct blt_block_copy_data_ext ext = {};
+			uint32_t mem_region;
+			intel_ctx_t *xe_ctx;
+			uint32_t vm, xe_exec;
+
+			struct drm_xe_engine_class_instance inst = {
+				.engine_class = DRM_XE_ENGINE_CLASS_COPY,
+			};
+			vm = xe_vm_create(importer_fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
+			xe_exec = xe_exec_queue_create(importer_fd, vm, &inst, 0);
+			xe_ctx = intel_ctx_xe(importer_fd, vm, xe_exec, 0, 0, 0);
+			mem_region = vram_if_possible(importer_fd, 0);
+
+			ahnd = intel_allocator_open_full(importer_fd, xe_ctx->vm, 0, 0,
+							 INTEL_ALLOCATOR_SIMPLE,
+							 ALLOC_STRATEGY_LOW_TO_HIGH, 0);
+
+			bb_size = ALIGN(bb_size + xe_cs_prefetch_size(importer_fd),
+					xe_get_default_alignment(importer_fd));
+			xe_bb = xe_bo_create_flags(importer_fd, 0, bb_size, mem_region);
+
+
+
+			igt_init_fb(&dst_fb, importer_fd, fb->width, fb->height,
+				    DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR,
+				    IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE);
+			dst_fb.gem_handle = temp_buf_handle;
+
+			src = blt_fb_init(fb, mem_region, pitch);
+			dst = blt_fb_init(&dst_fb, mem_region, pitch);
+
+			blt_copy_init(importer_fd, &blt);
+			blt.color_depth = 32;
+			blt_set_copy_object(&blt.src, src);
+			blt_set_copy_object(&blt.dst, dst);
+
+			blt_set_object_ext(&ext.src, 0, fb->width, fb->height,
+					   SURFACE_TYPE_2D);
+			blt_set_object_ext(&ext.src, 0, fb->width, fb->height,
+					   SURFACE_TYPE_2D);
+
+			blt_set_batch(&blt.bb, xe_bb, bb_size, mem_region);
+
+			blt_block_copy(importer_fd, xe_ctx, NULL, ahnd, &blt, &ext);
+
+			blt_destroy_object(importer_fd, dst);
+
+			put_ahnd(ahnd);
+			gem_close(importer_fd, xe_bb);
+			xe_exec_queue_destroy(importer_fd, xe_exec);
+			xe_vm_destroy(importer_fd, vm);
+			free(xe_ctx);
 		}
 	} else {
 		fb->gem_handle = prime_fd_to_handle(importer_fd, dmabuf_fd);
@@ -365,12 +465,6 @@ static bool has_connected_output(int drm_fd)
 	return false;
 }
 
-static void validate_d3_hot(int drm_fd)
-{
-	igt_assert(igt_debugfs_search(drm_fd, "i915_runtime_pm_status", "GPU idle: yes"));
-	igt_assert(igt_debugfs_search(drm_fd, "i915_runtime_pm_status", "PCI device power state: D3hot [3]"));
-}
-
 static void kms_poll_state_restore(void)
 {
 	int sysfs_fd;
@@ -392,6 +486,88 @@ static void kms_poll_disable(void)
 	close(sysfs_fd);
 }
 
+static bool runtime_usage_available(struct pci_device *pci)
+{
+	char name[PATH_MAX];
+	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/runtime_usage",
+		 pci->domain, pci->bus, pci->dev, pci->func);
+	return access(name, F_OK) == 0;
+}
+
+static bool in_d3_hot(struct pci_device *pci)
+{
+	uint16_t val;
+
+	/* We need to wait for the autosuspend to kick in before we can check */
+	if (!igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED))
+		return false;
+
+	if (runtime_usage_available(pci) &&
+	    igt_pm_get_runtime_usage(pci) != 0)
+		return false;
+
+	igt_assert_eq(pci_device_cfg_read_u16(pci, &val, 0xd4), 0);
+
+	return (val & 0x3) == 0x3;
+}
+
+static void validate_d3_hot(int drm_fd, struct pci_device *pci)
+{
+	if (is_i915_device(drm_fd)) {
+		igt_assert(igt_debugfs_search(drm_fd, "i915_runtime_pm_status", "GPU idle: yes"));
+		igt_assert(igt_debugfs_search(drm_fd, "i915_runtime_pm_status", "PCI device power state: D3hot [3]"));
+	} else {
+		igt_assert(in_d3_hot(pci));
+	}
+}
+
+static int open_d3_allowed(struct pci_device *pci)
+{
+	char name[PATH_MAX];
+	int fd;
+
+	snprintf(name, PATH_MAX, "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/d3cold_allowed",
+		 pci->domain, pci->bus, pci->dev, pci->func);
+
+	fd = open(name, O_RDWR);
+	igt_assert_f(fd >= 0, "Can't open %s\n", name);
+
+	return fd;
+}
+
+static void get_d3_allowed(struct pci_device *pci, char *d3_allowed)
+{
+	int fd = open_d3_allowed(pci);
+
+	igt_assert(read(fd, d3_allowed, 2));
+	close(fd);
+}
+
+static void set_d3_allowed(struct pci_device *pci, const char *d3_allowed)
+{
+	int fd = open_d3_allowed(pci);
+
+	igt_assert(write(fd, d3_allowed, 2));
+	close(fd);
+}
+
+static void setup_d3_hot(int fd, struct pci_device *pci)
+{
+	if (is_xe_device(fd)) {
+		igt_assert(igt_setup_runtime_pm(fd));
+
+		set_d3_allowed(pci, "0\n");
+
+		igt_assert(in_d3_hot(pci));
+	} else {
+		igt_set_timeout(10, "Wait for dGPU to enter D3hot before starting the subtest");
+		while (!igt_debugfs_search(fd,
+			"i915_runtime_pm_status",
+			"PCI device power state: D3hot [3]"));
+		igt_reset_timeout();
+	}
+}
+
 igt_main
 {
 	int first_fd = -1;
@@ -445,21 +621,28 @@ igt_main
 
 		igt_describe("Validate pci state of dGPU when dGPU is idle and  scanout is on iGPU");
 		igt_subtest("D3hot") {
-			igt_require_f(is_i915_device(second_fd_hybrid), "i915 device required\n");
-			igt_require_f(gem_has_lmem(second_fd_hybrid), "Second GPU is not dGPU\n");
+			char d3_allowed[2];
+			struct pci_device *pci;
+
+			igt_require_f(is_intel_device(second_fd_hybrid), "intel device required\n");
+			if (is_i915_device(second_fd_hybrid))
+				igt_require_f(gem_has_lmem(second_fd_hybrid), "Second GPU is not dGPU\n");
+			else
+				igt_require_f(xe_has_vram(second_fd_hybrid), "Second GPU is not dGPU\n");
 			igt_require_f(first_output, "No display connected to iGPU\n");
 			igt_require_f(!second_output, "Display connected to dGPU\n");
 
 			kms_poll_disable();
 
-			igt_set_timeout(10, "Wait for dGPU to enter D3hot before starting the subtest");
-			while (!igt_debugfs_search(second_fd_hybrid,
-			       "i915_runtime_pm_status",
-			       "PCI device power state: D3hot [3]"));
-			igt_reset_timeout();
+			pci = igt_device_get_pci_device(second_fd_hybrid);
+			get_d3_allowed(pci, d3_allowed);
+
+			setup_d3_hot(second_fd_hybrid, pci);
 
 			test_basic_modeset(first_fd);
-			validate_d3_hot(second_fd_hybrid);
+			validate_d3_hot(second_fd_hybrid, pci);
+
+			set_d3_allowed(pci, d3_allowed);
 		}
 
 		igt_fixture {
@@ -477,6 +660,8 @@ igt_main
 			igt_require(second_fd_vgem >= 0);
 			if (is_i915_device(first_fd))
 				igt_require(!gem_has_lmem(first_fd));
+			if (is_xe_device(first_fd))
+				igt_require(!xe_has_vram(first_fd));
 		}
 
 		igt_describe("Make a dumb color buffer, export to another device and"
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 18/20] tests/intel-ci: Update Xe ffb testlist & blocklist for kms_frontbuffer_tracking
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (16 preceding siblings ...)
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 17/20] tests/kms_prime: " Bhanuprakash Modem
@ 2023-08-16 16:32 ` Bhanuprakash Modem
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 19/20] tests/intel-ci: Drop tiling tests from xe blocklist Bhanuprakash Modem
                   ` (4 subsequent siblings)
  22 siblings, 0 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:32 UTC (permalink / raw)
  To: igt-dev

Add kms_frontbuffer_tracking tests back to xe fast-feedback testlist and
drop them from xe blocklist.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/intel-ci/xe-fast-feedback.testlist | 1 +
 tests/intel-ci/xe.blocklist.txt          | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 26c09ab8b..4f4991fba 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -231,6 +231,7 @@ igt@kms_flip@basic-plain-flip
 igt@kms_force_connector_basic@force-connector-state
 igt@kms_force_connector_basic@force-edid
 igt@kms_force_connector_basic@prune-stale-modes
+igt@kms_frontbuffer_tracking@basic
 igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
 igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
 igt@kms_pipe_crc_basic@hang-read-crc
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index b89b0b951..3b7c565bd 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -56,7 +56,7 @@ igt@kms_bw@.*-(5|6|7|8)-displays-.*
 igt@kms_draw_crc@draw-method-(mmap-cpu|mmap-gtt|pwrite)
 igt@kms_pipe_b_c_ivb@.*
 igt@kms_pwrite_crc
-igt@kms_frontbuffer_tracking@.*
+igt@kms_frontbuffer_tracking@.*-(cpu|gtt|pwrite)
 igt@kms_fbcon_fbt@(fbc|psr)(-suspend)
 igt@kms_fence_pin_leak
 igt@kms_busy@.*
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 19/20] tests/intel-ci: Drop tiling tests from xe blocklist
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (17 preceding siblings ...)
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 18/20] tests/intel-ci: Update Xe ffb testlist & blocklist for kms_frontbuffer_tracking Bhanuprakash Modem
@ 2023-08-16 16:32 ` Bhanuprakash Modem
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 20/20] HAX: Run tiling tests in XE fast-feedback Bhanuprakash Modem
                   ` (3 subsequent siblings)
  22 siblings, 0 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:32 UTC (permalink / raw)
  To: igt-dev

Drop tiling tests from the xe blocklist, since those are
no more invalid for XE.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/intel-ci/xe.blocklist.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index 3b7c565bd..0d1ce1f98 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -66,7 +66,6 @@ igt@kms_legacy_colorkey@invalid-plane
 igt@kms_flip@2x-flip-vs-fences
 igt@kms_flip@flip-vs-fences(-interruptible)
 igt@kms_addfb_basic@clobberred-modifier
-igt@kms_plane_multiple@tiling-(4|x|y|yf)
 igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-(atomic|legacy)
 igt@kms_rotation_crc@exhaust-fences
 igt@kms_force_connector_basic@force-load-detect
-- 
2.40.0

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

* [igt-dev] [i-g-t V4 20/20] HAX: Run tiling tests in XE fast-feedback
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (18 preceding siblings ...)
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 19/20] tests/intel-ci: Drop tiling tests from xe blocklist Bhanuprakash Modem
@ 2023-08-16 16:32 ` Bhanuprakash Modem
  2023-08-16 19:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Add XE suppor for display tests (rev5) Patchwork
                   ` (2 subsequent siblings)
  22 siblings, 0 replies; 36+ messages in thread
From: Bhanuprakash Modem @ 2023-08-16 16:32 UTC (permalink / raw)
  To: igt-dev

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/intel-ci/xe-fast-feedback.testlist | 648 ++++++++++++++++-------
 1 file changed, 456 insertions(+), 192 deletions(-)

diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 4f4991fba..d8d6400ff 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,187 +1,6 @@
 # Should be the first test
 igt@xe_module_load@load
 
-igt@xe_compute@compute-square
-igt@xe_create@create-execqueues-noleak
-igt@xe_create@create-execqueues-leak
-igt@xe_create@create-massive-size
-igt@xe_debugfs@base
-igt@xe_debugfs@gt
-igt@xe_debugfs@forcewake
-igt@xe_dma_buf_sync@export-dma-buf-once
-igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
-igt@xe_evict@evict-beng-mixed-threads-small-multi-vm
-igt@xe_evict@evict-beng-small
-igt@xe_evict@evict-beng-small-cm
-igt@xe_evict@evict-beng-small-external
-igt@xe_evict@evict-beng-small-external-cm
-igt@xe_evict@evict-beng-small-multi-vm
-igt@xe_evict@evict-cm-threads-small
-igt@xe_evict@evict-mixed-threads-small
-igt@xe_evict@evict-mixed-threads-small-multi-vm
-igt@xe_evict@evict-small
-igt@xe_evict@evict-small-cm
-igt@xe_evict@evict-small-external
-igt@xe_evict@evict-small-external-cm
-igt@xe_evict@evict-small-multi-vm
-igt@xe_evict@evict-small-multi-vm-cm
-igt@xe_evict@evict-threads-small
-igt@xe_exec_balancer@twice-virtual-basic
-igt@xe_exec_balancer@no-exec-virtual-basic
-igt@xe_exec_balancer@twice-cm-virtual-basic
-igt@xe_exec_balancer@no-exec-cm-virtual-basic
-igt@xe_exec_balancer@twice-virtual-userptr
-igt@xe_exec_balancer@twice-cm-virtual-userptr
-igt@xe_exec_balancer@twice-virtual-rebind
-igt@xe_exec_balancer@twice-cm-virtual-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-parallel-basic
-igt@xe_exec_balancer@no-exec-parallel-basic
-igt@xe_exec_balancer@twice-parallel-userptr
-igt@xe_exec_balancer@twice-parallel-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-invalidate
-igt@xe_exec_basic@twice-basic
-igt@xe_exec_basic@no-exec-basic
-igt@xe_exec_basic@twice-basic-defer-mmap
-igt@xe_exec_basic@twice-basic-defer-bind
-igt@xe_exec_basic@twice-userptr
-igt@xe_exec_basic@twice-rebind
-igt@xe_exec_basic@twice-userptr-rebind
-igt@xe_exec_basic@twice-userptr-invalidate
-igt@xe_exec_basic@no-exec-userptr-invalidate
-igt@xe_exec_basic@twice-bindexecqueue
-igt@xe_exec_basic@no-exec-bindexecqueue
-igt@xe_exec_basic@twice-bindexecqueue-userptr
-igt@xe_exec_basic@twice-bindexecqueue-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_compute_mode@twice-basic
-igt@xe_exec_compute_mode@twice-preempt-fence-early
-igt@xe_exec_compute_mode@twice-userptr
-igt@xe_exec_compute_mode@twice-rebind
-igt@xe_exec_compute_mode@twice-userptr-rebind
-igt@xe_exec_compute_mode@twice-userptr-invalidate
-igt@xe_exec_compute_mode@twice-bindexecqueue
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr
-igt@xe_exec_compute_mode@twice-bindexecqueue-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic
-igt@xe_exec_fault_mode@many-basic
-igt@xe_exec_fault_mode@twice-userptr
-igt@xe_exec_fault_mode@twice-rebind
-igt@xe_exec_fault_mode@twice-userptr-rebind
-igt@xe_exec_fault_mode@twice-userptr-invalidate
-igt@xe_exec_fault_mode@twice-bindexecqueue
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic-imm
-igt@xe_exec_fault_mode@twice-userptr-imm
-igt@xe_exec_fault_mode@twice-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-basic-prefetch
-igt@xe_exec_fault_mode@twice-userptr-prefetch
-igt@xe_exec_fault_mode@twice-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-invalid-fault
-igt@xe_exec_fault_mode@twice-invalid-userptr-fault
-igt@xe_exec_reset@close-fd-no-exec
-igt@xe_exec_reset@cm-close-fd-no-exec
-igt@xe_exec_reset@virtual-close-fd-no-exec
-igt@xe_exec_store@basic-store
-igt@xe_exec_threads@threads-basic
-igt@xe_exec_threads@threads-mixed-basic
-igt@xe_exec_threads@threads-mixed-shared-vm-basic
-igt@xe_exec_threads@threads-mixed-fd-basic
-igt@xe_exec_threads@threads-mixed-userptr-invalidate
-igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race
-igt@xe_gpgpu_fill@basic
-igt@xe_guc_pc@freq_basic_api
-igt@xe_guc_pc@freq_fixed_idle
-igt@xe_guc_pc@freq_range_idle
-igt@xe_huc_copy@huc_copy
-igt@xe_intel_bb@add-remove-objects
-igt@xe_intel_bb@bb-with-allocator
-igt@xe_intel_bb@blit-reloc
-igt@xe_intel_bb@blit-simple
-igt@xe_intel_bb@create-in-region
-igt@xe_intel_bb@delta-check
-igt@xe_intel_bb@destroy-bb
-igt@xe_intel_bb@intel-bb-blit-none
-igt@xe_intel_bb@intel-bb-blit-x
-igt@xe_intel_bb@intel-bb-blit-y
-igt@xe_intel_bb@lot-of-buffers
-igt@xe_intel_bb@offset-control
-igt@xe_intel_bb@purge-bb
-igt@xe_intel_bb@render
-igt@xe_intel_bb@reset-bb
-igt@xe_intel_bb@simple-bb
-igt@xe_intel_bb@simple-bb-ctx
-igt@xe_mmap@bad-extensions
-igt@xe_mmap@bad-flags
-igt@xe_mmap@bad-object
-igt@xe_mmap@system
-igt@xe_mmap@vram
-igt@xe_mmap@vram-system
-igt@xe_mmio@mmio-timestamp
-igt@xe_mmio@mmio-invalid
-igt@xe_pm_residency@gt-c6-on-idle
-igt@xe_prime_self_import@basic-with_one_bo
-igt@xe_prime_self_import@basic-with_fd_dup
-#igt@xe_prime_self_import@basic-llseek-size
-igt@xe_query@query-engines
-igt@xe_query@query-mem-usage
-igt@xe_query@query-gts
-igt@xe_query@query-config
-igt@xe_query@query-hwconfig
-igt@xe_query@query-topology
-igt@xe_query@query-invalid-extension
-igt@xe_query@query-invalid-query
-igt@xe_query@query-invalid-size
-igt@xe_spin_batch@spin-basic
-igt@xe_spin_batch@spin-batch
-igt@xe_sysfs_defaults@engine-defaults
-igt@xe_sysfs_scheduler@preempt_timeout_us-invalid
-igt@xe_sysfs_scheduler@preempt_timeout_us-min-max
-igt@xe_sysfs_scheduler@timeslice_duration_us-invalid
-igt@xe_sysfs_scheduler@timeslice_duration_us-min-max
-igt@xe_sysfs_scheduler@job_timeout_ms-invalid
-igt@xe_sysfs_scheduler@job_timeout_ms-min-max
-#igt@xe_vm@bind-once
-#igt@xe_vm@scratch
-igt@xe_vm@shared-pte-page
-igt@xe_vm@shared-pde-page
-igt@xe_vm@shared-pde2-page
-igt@xe_vm@shared-pde3-page
-igt@xe_vm@bind-execqueues-independent
-igt@xe_vm@munmap-style-unbind-one-partial
-igt@xe_vm@munmap-style-unbind-end
-igt@xe_vm@munmap-style-unbind-front
-igt@xe_vm@munmap-style-unbind-userptr-one-partial
-igt@xe_vm@munmap-style-unbind-userptr-end
-igt@xe_vm@munmap-style-unbind-userptr-front
-igt@xe_vm@munmap-style-unbind-userptr-inval-end
-igt@xe_vm@munmap-style-unbind-userptr-inval-front
-igt@xe_waitfence@abstime
-igt@xe_waitfence@reltime
 igt@kms_addfb_basic@addfb25-bad-modifier
 igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
 igt@kms_addfb_basic@addfb25-modifier-no-flag
@@ -239,18 +58,463 @@ igt@kms_pipe_crc_basic@nonblocking-crc
 igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
 igt@kms_pipe_crc_basic@read-crc
 igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_pipe_crc_basic@suspend-read-crc
 igt@kms_prop_blob@basic
 igt@kms_psr@primary_page_flip
 igt@kms_psr@cursor_plane_move
 igt@kms_psr@sprite_plane_onoff
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-igt@core_hotunplug@unbind-rebind
-
-# Run KUnit tests at the end
-igt@xe_live_ktest@bo
-igt@xe_live_ktest@dmabuf
-igt@xe_live_ktest@migrate
+igt@kms_cursor_edge_walk@64x64-left-edge
+igt@kms_cursor_edge_walk@128x128-left-edge
+igt@kms_cursor_edge_walk@256x256-left-edge
+igt@kms_cursor_edge_walk@64x64-right-edge
+igt@kms_cursor_edge_walk@128x128-right-edge
+igt@kms_cursor_edge_walk@256x256-right-edge
+igt@kms_cursor_edge_walk@64x64-top-edge
+igt@kms_cursor_edge_walk@128x128-top-edge
+igt@kms_cursor_edge_walk@256x256-top-edge
+igt@kms_cursor_edge_walk@64x64-top-bottom
+igt@kms_cursor_edge_walk@128x128-top-bottom
+igt@kms_cursor_edge_walk@256x256-top-bottom
+igt@kms_getfb@getfb-reject-ccs
+igt@kms_getfb@getfb-accept-ccs
+igt@kms_plane@pixel-format
+igt@kms_plane@pixel-format-source-clamping
+igt@kms_plane@plane-position-covered
+igt@kms_plane@plane-position-hole
+igt@kms_plane@plane-position-hole-dpms
+igt@kms_plane@plane-panning-top-left
+igt@kms_plane@plane-panning-bottom-right
+igt@kms_plane@invalid-pixel-format-settings
+igt@kms_plane_lowres@tiling-none
+igt@kms_plane_lowres@tiling-x
+igt@kms_plane_lowres@tiling-y
+igt@kms_plane_lowres@tiling-yf
+igt@kms_plane_lowres@tiling-4
+igt@kms_plane_scaling@plane-upscale-with-pixel-format-20x20
+igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5
+igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-75
+igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling
+igt@kms_plane_scaling@plane-upscale-with-rotation-20x20
+igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5
+igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75
+igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling
+igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20
+igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5
+igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-75
+igt@kms_plane_scaling@plane-scaler-with-modifiers-unity-scaling
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers
+igt@kms_plane_scaling@planes-upscale-20x20
+igt@kms_plane_scaling@planes-upscale-factor-0-25
+igt@kms_plane_scaling@planes-scaler-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5
+igt@kms_plane_scaling@planes-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
+igt@kms_plane_scaling@intel-max-src-size
+igt@kms_plane_scaling@invalid-num-scalers
+igt@kms_plane_scaling@invalid-parameters
+igt@kms_rotation_crc@primary-rotation-90
+igt@kms_rotation_crc@primary-rotation-180
+igt@kms_rotation_crc@primary-rotation-270
+igt@kms_rotation_crc@sprite-rotation-90
+igt@kms_rotation_crc@sprite-rotation-180
+igt@kms_rotation_crc@sprite-rotation-270
+igt@kms_rotation_crc@cursor-rotation-180
+igt@kms_rotation_crc@sprite-rotation-90-pos-100-0
+igt@kms_rotation_crc@bad-pixel-format
+igt@kms_rotation_crc@bad-tiling
+igt@kms_rotation_crc@primary-x-tiled-reflect-x-0
+igt@kms_rotation_crc@primary-x-tiled-reflect-x-180
+igt@kms_rotation_crc@primary-y-tiled-reflect-x-0
+igt@kms_rotation_crc@primary-y-tiled-reflect-x-90
+igt@kms_rotation_crc@primary-y-tiled-reflect-x-180
+igt@kms_rotation_crc@primary-y-tiled-reflect-x-270
+igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0
+igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90
+igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180
+igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270
+igt@kms_rotation_crc@primary-4-tiled-reflect-x-0
+igt@kms_rotation_crc@primary-4-tiled-reflect-x-180
+igt@kms_rotation_crc@multiplane-rotation
+igt@kms_rotation_crc@multiplane-rotation-cropping-top
+igt@kms_rotation_crc@multiplane-rotation-cropping-bottom
+igt@kms_rotation_crc@exhaust-fences
+igt@kms_big_fb@x-tiled-addfb-size-overflow
+igt@kms_big_fb@y-tiled-addfb-size-overflow
+igt@kms_big_fb@yf-tiled-addfb-size-overflow
+igt@kms_big_fb@4-tiled-addfb-size-overflow
+igt@kms_big_fb@x-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@y-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@4-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@linear-addfb
+igt@kms_big_fb@x-tiled-addfb
+igt@kms_big_fb@y-tiled-addfb
+igt@kms_big_fb@yf-tiled-addfb
+igt@kms_big_fb@4-tiled-addfb
+igt@kms_big_fb@linear-8bpp-rotate-0
+igt@kms_big_fb@linear-8bpp-rotate-90
+igt@kms_big_fb@linear-8bpp-rotate-180
+igt@kms_big_fb@linear-8bpp-rotate-270
+igt@kms_big_fb@linear-16bpp-rotate-0
+igt@kms_big_fb@linear-16bpp-rotate-90
+igt@kms_big_fb@linear-16bpp-rotate-180
+igt@kms_big_fb@linear-16bpp-rotate-270
+igt@kms_big_fb@linear-32bpp-rotate-0
+igt@kms_big_fb@linear-32bpp-rotate-90
+igt@kms_big_fb@linear-32bpp-rotate-180
+igt@kms_big_fb@linear-32bpp-rotate-270
+igt@kms_big_fb@linear-64bpp-rotate-0
+igt@kms_big_fb@linear-64bpp-rotate-90
+igt@kms_big_fb@linear-64bpp-rotate-180
+igt@kms_big_fb@linear-64bpp-rotate-270
+igt@kms_big_fb@x-tiled-8bpp-rotate-0
+igt@kms_big_fb@x-tiled-8bpp-rotate-90
+igt@kms_big_fb@x-tiled-8bpp-rotate-180
+igt@kms_big_fb@x-tiled-8bpp-rotate-270
+igt@kms_big_fb@x-tiled-16bpp-rotate-0
+igt@kms_big_fb@x-tiled-16bpp-rotate-90
+igt@kms_big_fb@x-tiled-16bpp-rotate-180
+igt@kms_big_fb@x-tiled-16bpp-rotate-270
+igt@kms_big_fb@x-tiled-32bpp-rotate-0
+igt@kms_big_fb@x-tiled-32bpp-rotate-90
+igt@kms_big_fb@x-tiled-32bpp-rotate-180
+igt@kms_big_fb@x-tiled-32bpp-rotate-270
+igt@kms_big_fb@x-tiled-64bpp-rotate-0
+igt@kms_big_fb@x-tiled-64bpp-rotate-90
+igt@kms_big_fb@x-tiled-64bpp-rotate-180
+igt@kms_big_fb@x-tiled-64bpp-rotate-270
+igt@kms_big_fb@y-tiled-8bpp-rotate-0
+igt@kms_big_fb@y-tiled-8bpp-rotate-90
+igt@kms_big_fb@y-tiled-8bpp-rotate-180
+igt@kms_big_fb@y-tiled-8bpp-rotate-270
+igt@kms_big_fb@y-tiled-16bpp-rotate-0
+igt@kms_big_fb@y-tiled-16bpp-rotate-90
+igt@kms_big_fb@y-tiled-16bpp-rotate-180
+igt@kms_big_fb@y-tiled-16bpp-rotate-270
+igt@kms_big_fb@y-tiled-32bpp-rotate-0
+igt@kms_big_fb@y-tiled-32bpp-rotate-90
+igt@kms_big_fb@y-tiled-32bpp-rotate-180
+igt@kms_big_fb@y-tiled-32bpp-rotate-270
+igt@kms_big_fb@y-tiled-64bpp-rotate-0
+igt@kms_big_fb@y-tiled-64bpp-rotate-90
+igt@kms_big_fb@y-tiled-64bpp-rotate-180
+igt@kms_big_fb@y-tiled-64bpp-rotate-270
+igt@kms_big_fb@yf-tiled-8bpp-rotate-0
+igt@kms_big_fb@yf-tiled-8bpp-rotate-90
+igt@kms_big_fb@yf-tiled-8bpp-rotate-180
+igt@kms_big_fb@yf-tiled-8bpp-rotate-270
+igt@kms_big_fb@yf-tiled-16bpp-rotate-0
+igt@kms_big_fb@yf-tiled-16bpp-rotate-90
+igt@kms_big_fb@yf-tiled-16bpp-rotate-180
+igt@kms_big_fb@yf-tiled-16bpp-rotate-270
+igt@kms_big_fb@yf-tiled-32bpp-rotate-0
+igt@kms_big_fb@yf-tiled-32bpp-rotate-90
+igt@kms_big_fb@yf-tiled-32bpp-rotate-180
+igt@kms_big_fb@yf-tiled-32bpp-rotate-270
+igt@kms_big_fb@yf-tiled-64bpp-rotate-0
+igt@kms_big_fb@yf-tiled-64bpp-rotate-90
+igt@kms_big_fb@yf-tiled-64bpp-rotate-180
+igt@kms_big_fb@yf-tiled-64bpp-rotate-270
+igt@kms_big_fb@4-tiled-8bpp-rotate-0
+igt@kms_big_fb@4-tiled-8bpp-rotate-90
+igt@kms_big_fb@4-tiled-8bpp-rotate-180
+igt@kms_big_fb@4-tiled-8bpp-rotate-270
+igt@kms_big_fb@4-tiled-16bpp-rotate-0
+igt@kms_big_fb@4-tiled-16bpp-rotate-90
+igt@kms_big_fb@4-tiled-16bpp-rotate-180
+igt@kms_big_fb@4-tiled-16bpp-rotate-270
+igt@kms_big_fb@4-tiled-32bpp-rotate-0
+igt@kms_big_fb@4-tiled-32bpp-rotate-90
+igt@kms_big_fb@4-tiled-32bpp-rotate-180
+igt@kms_big_fb@4-tiled-32bpp-rotate-270
+igt@kms_big_fb@4-tiled-64bpp-rotate-0
+igt@kms_big_fb@4-tiled-64bpp-rotate-90
+igt@kms_big_fb@4-tiled-64bpp-rotate-180
+igt@kms_big_fb@4-tiled-64bpp-rotate-270
+igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip
+igt@kms_draw_crc@draw-method-mmap-wc
+igt@kms_draw_crc@draw-method-blt
+igt@kms_draw_crc@draw-method-render
+igt@kms_draw_crc@fill-fb
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling
+igt@kms_flip_tiling@flip-change-tiling
+igt@kms_ccs@pipe-A-bad-pixel-format-y_tiled_ccs
+igt@kms_ccs@pipe-A-bad-pixel-format-yf_tiled_ccs
+igt@kms_ccs@pipe-A-bad-pixel-format-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-bad-pixel-format-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-bad-pixel-format-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-bad-pixel-format-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-A-bad-pixel-format-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-A-bad-pixel-format-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-A-bad-rotation-90-y_tiled_ccs
+igt@kms_ccs@pipe-A-bad-rotation-90-yf_tiled_ccs
+igt@kms_ccs@pipe-A-bad-rotation-90-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-bad-rotation-90-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-bad-rotation-90-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-bad-rotation-90-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-A-bad-rotation-90-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-A-bad-rotation-90-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-A-crc-primary-basic-y_tiled_ccs
+igt@kms_ccs@pipe-A-crc-primary-basic-yf_tiled_ccs
+igt@kms_ccs@pipe-A-crc-primary-basic-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-crc-primary-basic-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-crc-primary-basic-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-crc-primary-basic-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-A-crc-primary-basic-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-A-crc-primary-basic-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-A-crc-primary-rotation-180-y_tiled_ccs
+igt@kms_ccs@pipe-A-crc-primary-rotation-180-yf_tiled_ccs
+igt@kms_ccs@pipe-A-crc-primary-rotation-180-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-crc-primary-rotation-180-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-crc-primary-rotation-180-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-A-crc-primary-rotation-180-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-A-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-A-random-ccs-data-y_tiled_ccs
+igt@kms_ccs@pipe-A-random-ccs-data-yf_tiled_ccs
+igt@kms_ccs@pipe-A-random-ccs-data-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-random-ccs-data-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-random-ccs-data-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-random-ccs-data-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-A-random-ccs-data-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-A-random-ccs-data-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-A-missing-ccs-buffer-y_tiled_ccs
+igt@kms_ccs@pipe-A-missing-ccs-buffer-yf_tiled_ccs
+igt@kms_ccs@pipe-A-missing-ccs-buffer-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-missing-ccs-buffer-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-ccs-on-another-bo-y_tiled_ccs
+igt@kms_ccs@pipe-A-ccs-on-another-bo-yf_tiled_ccs
+igt@kms_ccs@pipe-A-ccs-on-another-bo-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-ccs-on-another-bo-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-bad-aux-stride-y_tiled_ccs
+igt@kms_ccs@pipe-A-bad-aux-stride-yf_tiled_ccs
+igt@kms_ccs@pipe-A-bad-aux-stride-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-bad-aux-stride-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-bad-aux-stride-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-crc-sprite-planes-basic-y_tiled_ccs
+igt@kms_ccs@pipe-A-crc-sprite-planes-basic-yf_tiled_ccs
+igt@kms_ccs@pipe-A-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-A-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-A-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-A-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-A-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-A-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-D-bad-pixel-format-y_tiled_ccs
+igt@kms_ccs@pipe-D-bad-pixel-format-yf_tiled_ccs
+igt@kms_ccs@pipe-D-bad-pixel-format-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-bad-pixel-format-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-bad-pixel-format-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-bad-pixel-format-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-D-bad-pixel-format-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-D-bad-pixel-format-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-D-bad-rotation-90-y_tiled_ccs
+igt@kms_ccs@pipe-D-bad-rotation-90-yf_tiled_ccs
+igt@kms_ccs@pipe-D-bad-rotation-90-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-bad-rotation-90-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-bad-rotation-90-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-bad-rotation-90-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-D-bad-rotation-90-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-D-bad-rotation-90-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-D-crc-primary-basic-y_tiled_ccs
+igt@kms_ccs@pipe-D-crc-primary-basic-yf_tiled_ccs
+igt@kms_ccs@pipe-D-crc-primary-basic-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-crc-primary-basic-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-crc-primary-basic-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-crc-primary-basic-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-D-crc-primary-basic-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-D-crc-primary-basic-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-D-crc-primary-rotation-180-y_tiled_ccs
+igt@kms_ccs@pipe-D-crc-primary-rotation-180-yf_tiled_ccs
+igt@kms_ccs@pipe-D-crc-primary-rotation-180-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-crc-primary-rotation-180-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-crc-primary-rotation-180-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-D-crc-primary-rotation-180-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-D-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-D-random-ccs-data-y_tiled_ccs
+igt@kms_ccs@pipe-D-random-ccs-data-yf_tiled_ccs
+igt@kms_ccs@pipe-D-random-ccs-data-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-random-ccs-data-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-random-ccs-data-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-random-ccs-data-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-D-random-ccs-data-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-D-random-ccs-data-4_tiled_dg2_rc_ccs_cc
+igt@kms_ccs@pipe-D-missing-ccs-buffer-y_tiled_ccs
+igt@kms_ccs@pipe-D-missing-ccs-buffer-yf_tiled_ccs
+igt@kms_ccs@pipe-D-missing-ccs-buffer-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-missing-ccs-buffer-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-ccs-on-another-bo-y_tiled_ccs
+igt@kms_ccs@pipe-D-ccs-on-another-bo-yf_tiled_ccs
+igt@kms_ccs@pipe-D-ccs-on-another-bo-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-ccs-on-another-bo-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-bad-aux-stride-y_tiled_ccs
+igt@kms_ccs@pipe-D-bad-aux-stride-yf_tiled_ccs
+igt@kms_ccs@pipe-D-bad-aux-stride-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-bad-aux-stride-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-bad-aux-stride-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-crc-sprite-planes-basic-y_tiled_ccs
+igt@kms_ccs@pipe-D-crc-sprite-planes-basic-yf_tiled_ccs
+igt@kms_ccs@pipe-D-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs
+igt@kms_ccs@pipe-D-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc
+igt@kms_ccs@pipe-D-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs
+igt@kms_ccs@pipe-D-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs
+igt@kms_ccs@pipe-D-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs
+igt@kms_ccs@pipe-D-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc
+igt@kms_fb_coherency@memset-crc
+igt@kms_fbcon_fbt@fbc
+igt@kms_fbcon_fbt@psr
+igt@kms_async_flips@async-flip-with-page-flip-events
+igt@kms_async_flips@alternate-sync-async-flip
+igt@kms_async_flips@test-time-stamp
+igt@kms_async_flips@test-cursor
+igt@kms_async_flips@invalid-async-flip
+igt@kms_async_flips@crc
+igt@kms_plane_multiple@tiling-none
+igt@kms_plane_multiple@tiling-x
+igt@kms_plane_multiple@tiling-y
+igt@kms_plane_multiple@tiling-yf
+igt@kms_plane_multiple@tiling-4
+igt@kms_psr@primary_blt
+igt@kms_psr@sprite_blt
+igt@kms_psr@cursor_blt
-- 
2.40.0

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

* [igt-dev] ✓ Fi.CI.BAT: success for Add XE suppor for display tests (rev5)
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (19 preceding siblings ...)
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 20/20] HAX: Run tiling tests in XE fast-feedback Bhanuprakash Modem
@ 2023-08-16 19:05 ` Patchwork
  2023-08-16 20:12 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
  2023-08-17  3:28 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  22 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2023-08-16 19:05 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Add XE suppor for display tests (rev5)
URL   : https://patchwork.freedesktop.org/series/119525/
State : success

== Summary ==

CI Bug Log - changes from IGT_7441 -> IGTPW_9602
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (2): fi-kbl-soraka fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@gt_mocs:
    - bat-mtlp-8:         [PASS][1] -> [DMESG-FAIL][2] ([i915#7059])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html

  * igt@i915_selftest@live@slpc:
    - bat-rpls-2:         [PASS][3] -> [DMESG-WARN][4] ([i915#6367])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/bat-rpls-2/igt@i915_selftest@live@slpc.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/bat-rpls-2/igt@i915_selftest@live@slpc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - fi-rkl-11600:       [PASS][5] -> [FAIL][6] ([fdo#103375])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/fi-rkl-11600/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/fi-rkl-11600/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_psr@sprite_plane_onoff:
    - bat-rplp-1:         NOTRUN -> [ABORT][7] ([i915#8442] / [i915#8668] / [i915#8712])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@execlists:
    - fi-bsw-n3050:       [ABORT][8] ([i915#7913]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/fi-bsw-n3050/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gt_mocs:
    - bat-mtlp-6:         [DMESG-FAIL][10] ([i915#7059]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html

  * igt@i915_selftest@live@migrate:
    - bat-mtlp-6:         [DMESG-FAIL][12] ([i915#7699]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/bat-mtlp-6/igt@i915_selftest@live@migrate.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/bat-mtlp-6/igt@i915_selftest@live@migrate.html

  * igt@i915_selftest@live@requests:
    - bat-mtlp-8:         [DMESG-FAIL][14] ([i915#8497]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/bat-mtlp-8/igt@i915_selftest@live@requests.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/bat-mtlp-8/igt@i915_selftest@live@requests.html

  
#### Warnings ####

  * igt@kms_psr@cursor_plane_move:
    - bat-rplp-1:         [ABORT][16] ([i915#8469] / [i915#8668]) -> [SKIP][17] ([i915#1072])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/bat-rplp-1/igt@kms_psr@cursor_plane_move.html

  
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
  [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
  [i915#8469]: https://gitlab.freedesktop.org/drm/intel/issues/8469
  [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7441 -> IGTPW_9602

  CI-20190529: 20190529
  CI_DRM_13525: 24f9c135e4749ff3e8bc084e34166cde8b68ab73 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9602: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/index.html
  IGT_7441: 152bb04fd1297075b5d0b1c4487dac8e9a70d070 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ○ CI.xeBAT: info for Add XE suppor for display tests (rev5)
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (20 preceding siblings ...)
  2023-08-16 19:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Add XE suppor for display tests (rev5) Patchwork
@ 2023-08-16 20:12 ` Patchwork
  2023-08-17  3:28 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  22 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2023-08-16 20:12 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Add XE suppor for display tests (rev5)
URL   : https://patchwork.freedesktop.org/series/119525/
State : info

== Summary ==

Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[2]:
bat-pvc-2
bat-atsm-2
Results: [IGTPW_9602](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9602/index.html)



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

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

* [igt-dev] ✓ Fi.CI.IGT: success for Add XE suppor for display tests (rev5)
  2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
                   ` (21 preceding siblings ...)
  2023-08-16 20:12 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
@ 2023-08-17  3:28 ` Patchwork
  22 siblings, 0 replies; 36+ messages in thread
From: Patchwork @ 2023-08-17  3:28 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Add XE suppor for display tests (rev5)
URL   : https://patchwork.freedesktop.org/series/119525/
State : success

== Summary ==

CI Bug Log - changes from IGT_7441_full -> IGTPW_9602_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_9602_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_9602_full, please notify your bug team 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_9602/index.html

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Warnings ####

  * igt@perf_pmu@rc6-all-gts:
    - shard-dg2:          [SKIP][1] ([i915#8516]) -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-1/igt@perf_pmu@rc6-all-gts.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@perf_pmu@rc6-all-gts.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@object-reloc-keep-cache:
    - shard-dg1:          NOTRUN -> [SKIP][3] ([i915#8411])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-16/igt@api_intel_bb@object-reloc-keep-cache.html

  * igt@drm_fdinfo@all-busy-check-all:
    - shard-mtlp:         NOTRUN -> [SKIP][4] ([i915#8414])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@drm_fdinfo@all-busy-check-all.html

  * igt@drm_fdinfo@busy-hang@bcs0:
    - shard-dg1:          NOTRUN -> [SKIP][5] ([i915#8414]) +5 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@drm_fdinfo@busy-hang@bcs0.html

  * igt@drm_fdinfo@isolation:
    - shard-dg2:          NOTRUN -> [SKIP][6] ([i915#5608]) +11 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@drm_fdinfo@isolation.html

  * igt@drm_fdinfo@most-busy-check-all@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][7] ([i915#8414]) +29 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@drm_fdinfo@most-busy-check-all@bcs0.html

  * igt@fbdev@unaligned-read:
    - shard-dg2:          [PASS][8] -> [SKIP][9] ([i915#2582]) +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@fbdev@unaligned-read.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@fbdev@unaligned-read.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-rkl:          NOTRUN -> [SKIP][10] ([i915#4098] / [i915#5325])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
    - shard-dg1:          NOTRUN -> [SKIP][11] ([i915#5325])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ccs@suspend-resume:
    - shard-rkl:          NOTRUN -> [SKIP][12] ([i915#5325])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@gem_ccs@suspend-resume.html
    - shard-tglu:         NOTRUN -> [SKIP][13] ([i915#5325])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-2/igt@gem_ccs@suspend-resume.html

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-mtlp:         [PASS][14] -> [FAIL][15] ([i915#6121])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-4/igt@gem_ctx_exec@basic-nohangcheck.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-2/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_ctx_persistence@engines-hostile@vcs0:
    - shard-mtlp:         [PASS][16] -> [FAIL][17] ([i915#2410]) +3 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-1/igt@gem_ctx_persistence@engines-hostile@vcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1099]) +2 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-snb6/igt@gem_ctx_persistence@file.html

  * igt@gem_ctx_persistence@legacy-engines-hang@bsd2:
    - shard-mtlp:         [PASS][19] -> [ABORT][20] ([i915#8865])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hang@bsd2.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hang@bsd2.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt:
    - shard-dg2:          NOTRUN -> [SKIP][21] ([i915#2575]) +161 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
    - shard-mtlp:         NOTRUN -> [SKIP][22] ([i915#5882]) +5 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-dg2:          NOTRUN -> [SKIP][23] ([i915#280])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-mtlp:         NOTRUN -> [SKIP][24] ([i915#280])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-7/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-dg1:          NOTRUN -> [SKIP][25] ([i915#280])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-16/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@hibernate:
    - shard-tglu:         [PASS][26] -> [ABORT][27] ([i915#7975] / [i915#8213] / [i915#8398])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-tglu-6/igt@gem_eio@hibernate.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-10/igt@gem_eio@hibernate.html

  * igt@gem_eio@in-flight-1us:
    - shard-mtlp:         [PASS][28] -> [ABORT][29] ([i915#8503])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-1/igt@gem_eio@in-flight-1us.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-7/igt@gem_eio@in-flight-1us.html

  * igt@gem_eio@in-flight-contexts-10ms:
    - shard-mtlp:         [PASS][30] -> [ABORT][31] ([i915#7941])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-2/igt@gem_eio@in-flight-contexts-10ms.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@gem_eio@in-flight-contexts-10ms.html

  * igt@gem_eio@in-flight-suspend:
    - shard-snb:          NOTRUN -> [DMESG-WARN][32] ([i915#8841]) +3 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-snb6/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg1:          NOTRUN -> [FAIL][33] ([i915#5784]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@gem_eio@unwedge-stress.html
    - shard-tglu:         [PASS][34] -> [TIMEOUT][35] ([i915#3063] / [i915#7941])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-tglu-6/igt@gem_eio@unwedge-stress.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-8/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@hog:
    - shard-dg2:          NOTRUN -> [SKIP][36] ([i915#4812])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-12/igt@gem_exec_balancer@hog.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#6334]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][38] ([i915#2842])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk9/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-pace-share:
    - shard-dg1:          NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@gem_exec_fair@basic-pace-share.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-rkl:          NOTRUN -> [FAIL][40] ([i915#2842])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [PASS][41] -> [FAIL][42] ([i915#2842])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-glk:          [PASS][43] -> [FAIL][44] ([i915#2842]) +2 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-glk7/igt@gem_exec_fair@basic-pace@rcs0.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-throttle:
    - shard-dg2:          NOTRUN -> [SKIP][45] ([i915#3539]) +2 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html

  * igt@gem_exec_fence@parallel@bcs0:
    - shard-mtlp:         [PASS][46] -> [DMESG-FAIL][47] ([i915#8962] / [i915#9121]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-3/igt@gem_exec_fence@parallel@bcs0.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-4/igt@gem_exec_fence@parallel@bcs0.html

  * igt@gem_exec_fence@parallel@vcs0:
    - shard-mtlp:         [PASS][48] -> [DMESG-FAIL][49] ([i915#9121])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-3/igt@gem_exec_fence@parallel@vcs0.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html

  * igt@gem_exec_fence@parallel@vecs0:
    - shard-mtlp:         [PASS][50] -> [FAIL][51] ([i915#8957]) +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-3/igt@gem_exec_fence@parallel@vecs0.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html

  * igt@gem_exec_fence@submit67:
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#4812])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_params@secure-non-master:
    - shard-dg1:          NOTRUN -> [SKIP][53] ([fdo#112283]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#3281]) +4 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html

  * igt@gem_exec_reloc@basic-wc-cpu-active:
    - shard-rkl:          NOTRUN -> [SKIP][55] ([i915#3281])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@gem_exec_reloc@basic-wc-cpu-active.html
    - shard-mtlp:         NOTRUN -> [SKIP][56] ([i915#3281]) +2 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu-active.html

  * igt@gem_exec_reloc@basic-write-cpu-active:
    - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#3281]) +10 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html

  * igt@gem_fence_thrash@bo-write-verify-threaded-none:
    - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#4860])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html

  * igt@gem_fenced_exec_thrash@2-spare-fences:
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#4860])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-5/igt@gem_fenced_exec_thrash@2-spare-fences.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4860])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-dg2:          [PASS][61] -> [SKIP][62] ([i915#5775])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-10/igt@gem_lmem_evict@dontneed-evict-race.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#5775]) +4 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-rkl:          NOTRUN -> [SKIP][64] ([i915#4613])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@gem_lmem_swapping@random-engines.html
    - shard-tglu:         NOTRUN -> [SKIP][65] ([i915#4613])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-5/igt@gem_lmem_swapping@random-engines.html
    - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#4613]) +2 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][67] ([i915#4565]) +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs@lmem0.html

  * igt@gem_mmap@big-bo:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#4083])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@gem_mmap@big-bo.html

  * igt@gem_mmap_gtt@basic-wc:
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#4077]) +10 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@gem_mmap_gtt@basic-wc.html

  * igt@gem_mmap_gtt@big-bo-tiledy:
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#4077]) +6 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@gem_mmap_gtt@big-bo-tiledy.html

  * igt@gem_mmap_wc@write-read-distinct:
    - shard-dg1:          NOTRUN -> [SKIP][71] ([i915#4083]) +3 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-16/igt@gem_mmap_wc@write-read-distinct.html

  * igt@gem_mmap_wc@write-wc-read-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#4083]) +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@gem_mmap_wc@write-wc-read-gtt.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][73] ([i915#2658])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-snb1/igt@gem_pwrite@basic-exhaustion.html

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

  * igt@gem_pxp@display-protected-crc:
    - shard-dg1:          NOTRUN -> [SKIP][75] ([i915#4270]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-16/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@reject-modify-context-protection-off-2:
    - shard-tglu:         NOTRUN -> [SKIP][76] ([i915#4270])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-off-2.html

  * igt@gem_readwrite@write-bad-handle:
    - shard-dg1:          NOTRUN -> [SKIP][77] ([i915#3282]) +3 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@gem_readwrite@write-bad-handle.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#8428])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#2575] / [i915#5190])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html

  * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#5190]) +4 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html

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

  * igt@gem_tiled_partial_pwrite_pread@reads:
    - shard-rkl:          NOTRUN -> [SKIP][82] ([i915#3282])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@gem_tiled_partial_pwrite_pread@reads.html

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#4879])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#3323])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@map-fixed-invalidate:
    - shard-dg1:          NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate.html

  * igt@gem_userptr_blits@unsync-unmap-after-close:
    - shard-dg1:          NOTRUN -> [SKIP][86] ([i915#3297])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-after-close.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-rkl:          NOTRUN -> [SKIP][87] ([i915#3297])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html
    - shard-tglu:         NOTRUN -> [SKIP][88] ([i915#3297])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-dg2:          NOTRUN -> [FAIL][89] ([i915#3318])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@gem_userptr_blits@vma-merge.html
    - shard-snb:          NOTRUN -> [FAIL][90] ([i915#2724])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-snb1/igt@gem_userptr_blits@vma-merge.html

  * igt@gen3_render_linear_blits:
    - shard-dg1:          NOTRUN -> [SKIP][91] ([fdo#109289]) +2 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@gen3_render_linear_blits.html

  * igt@gen3_render_tiledy_blits:
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([fdo#109289])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@gen3_render_tiledy_blits.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [PASS][93] -> [ABORT][94] ([i915#5566])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-apl1/igt@gen9_exec_parse@allowed-single.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-apl6/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-tglu:         NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-10/igt@gen9_exec_parse@basic-rejected.html
    - shard-rkl:          NOTRUN -> [SKIP][96] ([i915#2527])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-7/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#2856])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@cmd-crossing-page:
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#2856]) +1 similar issue
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-dg1:          NOTRUN -> [SKIP][99] ([i915#2527]) +3 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_fb_tiling:
    - shard-dg2:          NOTRUN -> [SKIP][100] ([i915#4881])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@i915_fb_tiling.html

  * igt@i915_hangman@detector@vcs0:
    - shard-mtlp:         [PASS][101] -> [FAIL][102] ([i915#8456]) +2 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-1/igt@i915_hangman@detector@vcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html

  * igt@i915_module_load@load:
    - shard-snb:          NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#6227])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-snb2/igt@i915_module_load@load.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg2:          [PASS][104] -> [DMESG-WARN][105] ([i915#7061] / [i915#8617])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
    - shard-mtlp:         [PASS][106] -> [ABORT][107] ([i915#8489] / [i915#8668])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_module_load@resize-bar:
    - shard-mtlp:         NOTRUN -> [SKIP][108] ([i915#6412])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@i915_module_load@resize-bar.html

  * igt@i915_pipe_stress@stress-xrgb8888-untiled:
    - shard-mtlp:         [PASS][109] -> [FAIL][110] ([i915#8691])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-dg1:          NOTRUN -> [SKIP][111] ([i915#5354] / [i915#7561])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_backlight@basic-brightness:
    - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#7561])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_pm_dc@dc5-psr:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([i915#658]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@i915_pm_dc@dc5-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [PASS][114] -> [SKIP][115] ([fdo#109271])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-apl1/igt@i915_pm_dc@dc9-dpms.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-apl1/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - shard-dg1:          [PASS][116] -> [SKIP][117] ([i915#1937])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
    - shard-dg1:          [PASS][118] -> [FAIL][119] ([i915#3591])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][120] ([fdo#111644] / [i915#1397]) +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-9/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@gem-idle:
    - shard-dg2:          [PASS][121] -> [SKIP][122] ([i915#5174]) +4 similar issues
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-1/igt@i915_pm_rpm@gem-idle.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@i915_pm_rpm@gem-idle.html

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [PASS][123] -> [SKIP][124] ([i915#1397])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html
    - shard-dg1:          NOTRUN -> [SKIP][125] ([i915#1397])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-16/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#5174]) +2 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg1:          [PASS][127] -> [SKIP][128] ([i915#1397])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
    - shard-mtlp:         NOTRUN -> [SKIP][129] ([i915#1397])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

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

  * igt@i915_pm_rps@thresholds-idle@gt0:
    - shard-dg1:          NOTRUN -> [SKIP][131] ([i915#8925])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@i915_pm_rps@thresholds-idle@gt0.html

  * igt@i915_pm_rps@thresholds-park@gt0:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#8925])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@i915_pm_rps@thresholds-park@gt0.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-tglu:         NOTRUN -> [SKIP][133] ([fdo#109303])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-2/igt@i915_query@query-topology-known-pci-ids.html
    - shard-mtlp:         NOTRUN -> [SKIP][134] ([fdo#109303])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-5/igt@i915_query@query-topology-known-pci-ids.html
    - shard-rkl:          NOTRUN -> [SKIP][135] ([fdo#109303])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@i915_query@query-topology-known-pci-ids.html

  * igt@i915_selftest@live@migrate:
    - shard-dg2:          [PASS][136] -> [FAIL][137] ([i915#7913]) +15 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@i915_selftest@live@migrate.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@i915_selftest@live@migrate.html

  * igt@i915_selftest@live@objects:
    - shard-dg2:          [PASS][138] -> [FAIL][139] ([i915#9028]) +20 similar issues
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@i915_selftest@live@objects.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@i915_selftest@live@objects.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#6645])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#4077]) +2 similar issues
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
    - shard-dg2:          [PASS][142] -> [SKIP][143] ([i915#2575] / [i915#5190])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-10/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html

  * igt@kms_addfb_basic@tile-pitch-mismatch:
    - shard-dg1:          NOTRUN -> [SKIP][144] ([i915#4212]) +2 similar issues
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-16/igt@kms_addfb_basic@tile-pitch-mismatch.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][145] ([i915#8502]) +3 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html

  * igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][146] ([i915#8247]) +1 similar issue
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg1:          NOTRUN -> [SKIP][147] ([i915#404])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

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

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][149] ([i915#5286])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
    - shard-tglu:         NOTRUN -> [SKIP][150] ([fdo#111615] / [i915#5286])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-9/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-dg1:          NOTRUN -> [SKIP][151] ([i915#5286])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-mtlp:         [PASS][152] -> [FAIL][153] ([i915#5138])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5286]) +3 similar issues
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         NOTRUN -> [FAIL][155] ([i915#5138])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][156] ([fdo#111614])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][157] ([i915#3638])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0:
    - shard-mtlp:         [PASS][158] -> [DMESG-WARN][159] ([i915#1982]) +1 similar issue
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][160] ([fdo#111614] / [i915#3638])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
    - shard-tglu:         NOTRUN -> [SKIP][161] ([fdo#111614])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-mtlp:         [PASS][162] -> [FAIL][163] ([i915#3743])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-mtlp:         NOTRUN -> [SKIP][164] ([i915#6187])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][165] ([fdo#109315] / [i915#5190]) +3 similar issues
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2:          NOTRUN -> [SKIP][166] ([i915#4538] / [i915#5190]) +3 similar issues
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([fdo#110723])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
    - shard-tglu:         NOTRUN -> [SKIP][168] ([fdo#111615])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][169] ([fdo#111615])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#4538]) +3 similar issues
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][171] ([i915#3734] / [i915#5354] / [i915#6095]) +2 similar issues
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-7/igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][172] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-2/igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_mtl_rc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][173] ([i915#5354] / [i915#6095]) +1 similar issue
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_mtl_rc_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][174] ([i915#6095]) +13 similar issues
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([i915#3886] / [i915#5354] / [i915#6095])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][176] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-9/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-dg2:          NOTRUN -> [SKIP][177] ([i915#3689] / [i915#3886] / [i915#5354]) +2 similar issues
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][178] ([fdo#109271] / [i915#3886]) +1 similar issue
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk1/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][179] ([i915#5354]) +8 similar issues
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][180] ([i915#3886] / [i915#6095])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-5/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-dg1:          NOTRUN -> [SKIP][181] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-aux-stride-4_tiled_mtl_rc_ccs_cc:
    - shard-tglu:         NOTRUN -> [SKIP][182] ([i915#5354] / [i915#6095]) +6 similar issues
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-6/igt@kms_ccs@pipe-d-bad-aux-stride-4_tiled_mtl_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc:
    - shard-dg1:          NOTRUN -> [SKIP][183] ([i915#5354] / [i915#6095]) +14 similar issues
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-tglu:         NOTRUN -> [SKIP][184] ([i915#3689] / [i915#5354] / [i915#6095]) +2 similar issues
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-8/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_mc_ccs:
    - shard-dg1:          NOTRUN -> [SKIP][185] ([i915#3689] / [i915#5354] / [i915#6095]) +10 similar issues
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#3689] / [i915#5354]) +7 similar issues
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-12/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

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

  * igt@kms_cdclk@plane-scaling@pipe-c-dp-2:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#4087]) +3 similar issues
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-12/igt@kms_cdclk@plane-scaling@pipe-c-dp-2.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-tglu:         NOTRUN -> [SKIP][189] ([i915#7828]) +2 similar issues
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-7/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg1:          NOTRUN -> [SKIP][190] ([fdo#111827])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([fdo#111827])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-rkl:          NOTRUN -> [SKIP][192] ([i915#7828]) +3 similar issues
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-mtlp:         NOTRUN -> [SKIP][193] ([i915#7828])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-dg1:          NOTRUN -> [SKIP][194] ([i915#7828]) +6 similar issues
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-dg2:          NOTRUN -> [SKIP][195] ([i915#7828]) +2 similar issues
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

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

  * igt@kms_content_protection@legacy:
    - shard-dg1:          NOTRUN -> [SKIP][198] ([i915#7116])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-16/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@srm@pipe-a-dp-2:
    - shard-dg2:          NOTRUN -> [TIMEOUT][199] ([i915#7173])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-12/igt@kms_content_protection@srm@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg1:          NOTRUN -> [SKIP][200] ([i915#3359]) +1 similar issue
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-dg1:          NOTRUN -> [SKIP][201] ([i915#3555]) +1 similar issue
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-mtlp:         NOTRUN -> [SKIP][202] ([i915#3359])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][203] ([i915#3546])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][204] ([fdo#111825]) +21 similar issues
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-rkl:          NOTRUN -> [SKIP][205] ([fdo#111825]) +2 similar issues
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          [PASS][206] -> [FAIL][207] ([i915#2346]) +1 similar issue
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
    - shard-glk:          [PASS][208] -> [FAIL][209] ([i915#2346])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#4103] / [i915#4213])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-mtlp:         NOTRUN -> [SKIP][211] ([i915#4213])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg1:          NOTRUN -> [SKIP][212] ([i915#4103] / [i915#4213])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][213] ([i915#8812])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html

  * igt@kms_draw_crc@draw-method-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][214] ([i915#8812])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html

  * igt@kms_dsc@dsc-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][215] ([i915#3840])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@kms_dsc@dsc-basic.html

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

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2:          NOTRUN -> [SKIP][217] ([fdo#109274]) +3 similar issues
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-mtlp:         NOTRUN -> [SKIP][218] ([i915#3637]) +1 similar issue
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-6/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-tglu:         NOTRUN -> [SKIP][219] ([fdo#109274] / [i915#3637])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][220] ([i915#8810])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][221] ([i915#2672]) +5 similar issues
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) +1 similar issue
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][224] ([i915#2672]) +1 similar issue
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [PASS][226] -> [SKIP][227] ([fdo#109315]) +36 similar issues
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][228] ([i915#8708]) +6 similar issues
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][229] ([i915#5354]) +21 similar issues
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-rkl:          NOTRUN -> [SKIP][232] ([i915#3023]) +4 similar issues
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
    - shard-tglu:         NOTRUN -> [SKIP][233] ([fdo#110189]) +5 similar issues
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-dg1:          NOTRUN -> [SKIP][234] ([i915#3458]) +12 similar issues
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          NOTRUN -> [SKIP][235] ([fdo#109315]) +37 similar issues
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][236] ([i915#8708]) +3 similar issues
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][237] ([i915#1825]) +10 similar issues
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-apl:          NOTRUN -> [SKIP][238] ([fdo#109271]) +6 similar issues
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][239] ([fdo#111825] / [i915#1825]) +15 similar issues
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
    - shard-tglu:         NOTRUN -> [SKIP][240] ([fdo#109280]) +14 similar issues
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-dg2:          NOTRUN -> [SKIP][241] ([i915#3458]) +8 similar issues
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#8708]) +14 similar issues
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html

  * igt@kms_hdr@invalid-hdr:
    - shard-rkl:          NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@kms_hdr@static-swap.html

  * igt@kms_panel_fitting@legacy:
    - shard-tglu:         NOTRUN -> [SKIP][245] ([i915#6301])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-9/igt@kms_panel_fitting@legacy.html
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#6301])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
    - shard-dg2:          NOTRUN -> [SKIP][247] ([fdo#109289]) +2 similar issues
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8821])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-tglu:         NOTRUN -> [SKIP][249] ([fdo#109274]) +1 similar issue
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [FAIL][250] ([i915#8292])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#5176]) +3 similar issues
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][252] ([i915#5176]) +11 similar issues
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-4.html

  * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][253] ([i915#5176]) +9 similar issues
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [SKIP][254] ([i915#5235]) +15 similar issues
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][255] ([i915#5235]) +3 similar issues
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][256] ([i915#5235]) +7 similar issues
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
    - shard-rkl:          NOTRUN -> [SKIP][257] ([i915#5235]) +7 similar issues
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][258] ([i915#5235]) +7 similar issues
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html

  * igt@kms_prime@basic-crc-vgem:
    - shard-dg2:          NOTRUN -> [SKIP][259] ([i915#6524] / [i915#6805])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-12/igt@kms_prime@basic-crc-vgem.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-mtlp:         NOTRUN -> [SKIP][260] ([i915#6524])
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-7/igt@kms_prime@basic-modeset-hybrid.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
    - shard-glk:          NOTRUN -> [SKIP][261] ([fdo#109271] / [i915#658])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][262] ([fdo#111068] / [i915#658])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
    - shard-tglu:         NOTRUN -> [SKIP][263] ([fdo#111068] / [i915#658])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-dg1:          NOTRUN -> [SKIP][264] ([fdo#111068] / [i915#658]) +1 similar issue
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-rkl:          NOTRUN -> [SKIP][265] ([i915#1072]) +2 similar issues
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@kms_psr@psr2_cursor_mmap_cpu.html
    - shard-dg1:          NOTRUN -> [SKIP][266] ([i915#1072]) +1 similar issue
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-dg2:          NOTRUN -> [SKIP][267] ([i915#1072]) +3 similar issues
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-snb:          NOTRUN -> [SKIP][268] ([fdo#109271]) +262 similar issues
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-snb7/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-rkl:          [PASS][269] -> [ABORT][270] ([i915#7461] / [i915#8178] / [i915#8875])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

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

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-mtlp:         NOTRUN -> [SKIP][272] ([i915#4235])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#3555]) +2 similar issues
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_selftest@drm_plane:
    - shard-dg1:          NOTRUN -> [SKIP][274] ([i915#8661]) +1 similar issue
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-17/igt@kms_selftest@drm_plane.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-mtlp:         NOTRUN -> [SKIP][275] ([i915#8809])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-1/igt@kms_setmode@basic-clone-single-crtc.html

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

  * igt@kms_vblank@pipe-c-ts-continuation-modeset:
    - shard-rkl:          NOTRUN -> [SKIP][277] ([i915#4070] / [i915#6768])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@kms_vblank@pipe-c-ts-continuation-modeset.html

  * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
    - shard-rkl:          NOTRUN -> [SKIP][278] ([i915#4070] / [i915#533] / [i915#6768])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html

  * igt@kms_vrr@negative-basic:
    - shard-rkl:          NOTRUN -> [SKIP][279] ([i915#3555])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@kms_vrr@negative-basic.html
    - shard-tglu:         NOTRUN -> [SKIP][280] ([i915#3555])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-2/igt@kms_vrr@negative-basic.html

  * igt@kms_writeback@writeback-check-output:
    - shard-dg1:          NOTRUN -> [SKIP][281] ([i915#2437])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-14/igt@kms_writeback@writeback-check-output.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          NOTRUN -> [FAIL][282] ([i915#7484])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html

  * igt@perf_pmu@rc6-suspend:
    - shard-dg2:          [PASS][283] -> [SKIP][284] ([i915#5608]) +2 similar issues
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-2/igt@perf_pmu@rc6-suspend.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@perf_pmu@rc6-suspend.html

  * igt@prime_vgem@basic-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][285] ([i915#3708] / [i915#4077])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@prime_vgem@basic-gtt.html

  * igt@prime_vgem@coherency-blt:
    - shard-mtlp:         NOTRUN -> [FAIL][286] ([i915#8445])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-2/igt@prime_vgem@coherency-blt.html

  * igt@prime_vgem@coherency-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][287] ([i915#3708] / [i915#4077])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@prime_vgem@coherency-gtt.html

  * igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
    - shard-dg2:          [PASS][288] -> [SKIP][289] ([i915#2575]) +156 similar issues
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-6/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-rkl:          NOTRUN -> [SKIP][290] ([fdo#109307])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html
    - shard-tglu:         NOTRUN -> [SKIP][291] ([fdo#109307])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-2/igt@tools_test@sysfs_l3_parity.html
    - shard-mtlp:         NOTRUN -> [SKIP][292] ([i915#4818])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-5/igt@tools_test@sysfs_l3_parity.html

  * igt@v3d/v3d_get_bo_offset@create-get-offsets:
    - shard-dg1:          NOTRUN -> [SKIP][293] ([i915#2575]) +7 similar issues
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@v3d/v3d_get_bo_offset@create-get-offsets.html

  * igt@v3d/v3d_job_submission@array-job-submission:
    - shard-rkl:          NOTRUN -> [SKIP][294] ([fdo#109315]) +2 similar issues
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-4/igt@v3d/v3d_job_submission@array-job-submission.html
    - shard-tglu:         NOTRUN -> [SKIP][295] ([fdo#109315] / [i915#2575]) +3 similar issues
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-7/igt@v3d/v3d_job_submission@array-job-submission.html

  * igt@v3d/v3d_submit_cl@single-out-sync:
    - shard-mtlp:         NOTRUN -> [SKIP][296] ([i915#2575]) +2 similar issues
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@v3d/v3d_submit_cl@single-out-sync.html

  * igt@v3d/v3d_submit_csd@bad-pad:
    - shard-glk:          NOTRUN -> [SKIP][297] ([fdo#109271]) +45 similar issues
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk1/igt@v3d/v3d_submit_csd@bad-pad.html

  * igt@vc4/vc4_create_bo@create-bo-zeroed:
    - shard-dg2:          NOTRUN -> [SKIP][298] ([i915#7711]) +5 similar issues
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@vc4/vc4_create_bo@create-bo-zeroed.html
    - shard-rkl:          NOTRUN -> [SKIP][299] ([i915#7711]) +1 similar issue
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@vc4/vc4_create_bo@create-bo-zeroed.html

  * igt@vc4/vc4_perfmon@get-values-invalid-pointer:
    - shard-tglu:         NOTRUN -> [SKIP][300] ([i915#2575]) +1 similar issue
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-6/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html

  * igt@vc4/vc4_purgeable_bo@mark-willneed:
    - shard-mtlp:         NOTRUN -> [SKIP][301] ([i915#7711]) +2 similar issues
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-willneed.html

  * igt@vc4/vc4_tiling@get-bad-handle:
    - shard-dg1:          NOTRUN -> [SKIP][302] ([i915#7711]) +4 similar issues
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-18/igt@vc4/vc4_tiling@get-bad-handle.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-dg2:          [SKIP][303] ([i915#6767]) -> [PASS][304]
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@core_hotunplug@unbind-rebind.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@core_hotunplug@unbind-rebind.html

  * igt@drm_fdinfo@most-busy-check-all@rcs0:
    - shard-rkl:          [FAIL][305] ([i915#7742]) -> [PASS][306]
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html

  * igt@fbdev@info:
    - shard-dg2:          [SKIP][307] ([i915#1849] / [i915#2582]) -> [PASS][308]
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@fbdev@info.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@fbdev@info.html

  * igt@fbdev@nullptr:
    - shard-dg2:          [SKIP][309] ([i915#2582]) -> [PASS][310] +1 similar issue
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@fbdev@nullptr.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@fbdev@nullptr.html

  * igt@gem_ctx_persistence@engines-hang@vcs0:
    - shard-mtlp:         [FAIL][311] ([i915#2410]) -> [PASS][312]
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-2/igt@gem_ctx_persistence@engines-hang@vcs0.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html

  * igt@gem_eio@in-flight-contexts-1us:
    - shard-mtlp:         [ABORT][313] ([i915#8503]) -> [PASS][314]
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-7/igt@gem_eio@in-flight-contexts-1us.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-2/igt@gem_eio@in-flight-contexts-1us.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-rkl:          [FAIL][315] ([i915#2842]) -> [PASS][316] +1 similar issue
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_suspend@basic-s4-devices@smem:
    - shard-tglu:         [ABORT][317] ([i915#7975] / [i915#8213]) -> [PASS][318]
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-3/igt@gem_exec_suspend@basic-s4-devices@smem.html

  * igt@gem_userptr_blits@nohangcheck:
    - shard-mtlp:         [FAIL][319] ([i915#6268]) -> [PASS][320]
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-6/igt@gem_userptr_blits@nohangcheck.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [ABORT][321] ([i915#5566]) -> [PASS][322]
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-glk9/igt@gen9_exec_parse@allowed-single.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk8/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-tglu:         [FAIL][323] ([i915#3989] / [i915#454]) -> [PASS][324]
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-tglu-6/igt@i915_pm_dc@dc6-dpms.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_freq_api@freq-basic-api@gt0:
    - shard-mtlp:         [FAIL][325] ([i915#8670]) -> [PASS][326]
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-8/igt@i915_pm_freq_api@freq-basic-api@gt0.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-2/igt@i915_pm_freq_api@freq-basic-api@gt0.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-mtlp:         [SKIP][327] ([i915#8403]) -> [PASS][328]
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-2/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rc6_residency@rc6-idle@bcs0:
    - shard-dg1:          [FAIL][329] ([i915#3591]) -> [PASS][330]
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - shard-rkl:          [SKIP][331] ([i915#1397]) -> [PASS][332] +1 similar issue
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - shard-dg1:          [SKIP][333] ([i915#1397]) -> [PASS][334]
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-dg2:          [SKIP][335] ([i915#5174]) -> [PASS][336] +2 similar issues
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@i915_pm_rpm@system-suspend.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          [INCOMPLETE][337] ([i915#7790]) -> [PASS][338]
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-snb6/igt@i915_pm_rps@reset.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-snb1/igt@i915_pm_rps@reset.html

  * igt@i915_selftest@live@requests:
    - shard-mtlp:         [DMESG-FAIL][339] ([i915#8497]) -> [PASS][340]
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-5/igt@i915_selftest@live@requests.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-5/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@slpc:
    - shard-mtlp:         [DMESG-WARN][341] ([i915#6367]) -> [PASS][342]
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-5/igt@i915_selftest@live@slpc.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-5/igt@i915_selftest@live@slpc.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
    - shard-mtlp:         [FAIL][343] ([i915#2521]) -> [PASS][344]
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
    - shard-glk:          [FAIL][345] ([i915#2521]) -> [PASS][346]
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-mtlp:         [FAIL][347] ([i915#3743]) -> [PASS][348]
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-glk:          [FAIL][349] ([i915#72]) -> [PASS][350]
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [FAIL][351] ([i915#2346]) -> [PASS][352]
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2:
    - shard-glk:          [FAIL][353] ([i915#79]) -> [PASS][354]
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
    - shard-mtlp:         [DMESG-WARN][355] ([i915#1982]) -> [PASS][356]
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html

  * igt@kms_flip_event_leak@basic@pipe-a-edp-1:
    - shard-mtlp:         [DMESG-WARN][357] ([i915#2017]) -> [PASS][358]
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-2/igt@kms_flip_event_leak@basic@pipe-a-edp-1.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-6/igt@kms_flip_event_leak@basic@pipe-a-edp-1.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
    - shard-dg2:          [SKIP][359] ([fdo#109315]) -> [PASS][360] +28 similar issues
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
    - shard-apl:          [ABORT][361] ([i915#180]) -> [PASS][362]
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-apl4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][363] ([i915#8292]) -> [PASS][364]
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html

  * igt@kms_vblank@pipe-c-query-forked-busy-hang:
    - shard-dg2:          [SKIP][365] ([i915#2575]) -> [PASS][366] +182 similar issues
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@kms_vblank@pipe-c-query-forked-busy-hang.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@kms_vblank@pipe-c-query-forked-busy-hang.html

  * igt@perf_pmu@all-busy-idle-check-all:
    - shard-dg2:          [SKIP][367] ([i915#5608]) -> [PASS][368] +6 similar issues
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-12/igt@perf_pmu@all-busy-idle-check-all.html

  * igt@perf_pmu@semaphore-busy@bcs0:
    - shard-mtlp:         [FAIL][369] ([i915#4349]) -> [PASS][370]
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-8/igt@perf_pmu@semaphore-busy@bcs0.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-7/igt@perf_pmu@semaphore-busy@bcs0.html

  * igt@sysfs_heartbeat_interval@nopreempt@ccs0:
    - shard-mtlp:         [FAIL][371] ([i915#6015]) -> [PASS][372] +3 similar issues
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-mtlp-8/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-mtlp-4/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html

  * igt@tools_test@tools_test:
    - shard-dg2:          [FAIL][373] ([i915#9030]) -> [PASS][374]
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@tools_test@tools_test.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@tools_test@tools_test.html

  
#### Warnings ####

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-dg2:          [SKIP][375] ([i915#2575]) -> [SKIP][376] ([i915#8411])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@api_intel_bb@render-ccs:
    - shard-dg2:          [FAIL][377] ([i915#6122]) -> [SKIP][378] ([i915#2575])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-6/igt@api_intel_bb@render-ccs.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@api_intel_bb@render-ccs.html

  * igt@drm_fdinfo@all-busy-check-all:
    - shard-dg2:          [SKIP][379] ([i915#8414]) -> [SKIP][380] ([i915#5608]) +1 similar issue
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-2/igt@drm_fdinfo@all-busy-check-all.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@drm_fdinfo@all-busy-check-all.html

  * igt@drm_fdinfo@virtual-busy-all:
    - shard-dg2:          [SKIP][381] ([i915#5608]) -> [SKIP][382] ([i915#8414])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@drm_fdinfo@virtual-busy-all.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@drm_fdinfo@virtual-busy-all.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          [SKIP][383] ([i915#3936]) -> [SKIP][384] ([i915#2575])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-1/igt@gem_busy@semaphore.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_busy@semaphore.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-dg2:          [SKIP][385] ([i915#7697]) -> [SKIP][386] ([i915#2575])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2:          [SKIP][387] ([i915#8555]) -> [SKIP][388] ([i915#2575]) +1 similar issue
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_ctx_persistence@heartbeat-many:
    - shard-dg2:          [SKIP][389] ([i915#2575]) -> [SKIP][390] ([i915#8555])
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg2:          [SKIP][391] ([i915#280]) -> [SKIP][392] ([i915#2575])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@gem_ctx_sseu@invalid-sseu.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@hibernate:
    - shard-dg2:          [SKIP][393] ([i915#2575]) -> [ABORT][394] ([i915#7975] / [i915#8213])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_eio@hibernate.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-12/igt@gem_eio@hibernate.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg2:          [SKIP][395] ([i915#2575]) -> [FAIL][396] ([i915#5784])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_eio@unwedge-stress.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@bonded-false-hang:
    - shard-dg2:          [SKIP][397] ([i915#2575]) -> [SKIP][398] ([i915#4812])
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg2:          [SKIP][399] ([i915#4036]) -> [SKIP][400] ([i915#2575])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-1/igt@gem_exec_balancer@invalid-bonds.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-dg2:          [SKIP][401] ([i915#2575]) -> [SKIP][402] ([i915#3539] / [i915#4852]) +5 similar issues
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@gem_exec_flush@basic-uc-ro-default.html

  * igt@gem_exec_flush@basic-uc-rw-default:
    - shard-dg2:          [SKIP][403] ([i915#3539] / [i915#4852]) -> [SKIP][404] ([i915#2575]) +2 similar issues
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-6/igt@gem_exec_flush@basic-uc-rw-default.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_exec_flush@basic-uc-rw-default.html

  * igt@gem_exec_params@secure-non-master:
    - shard-dg2:          [SKIP][405] ([fdo#112283]) -> [SKIP][406] ([i915#2575])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-6/igt@gem_exec_params@secure-non-master.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - shard-dg2:          [SKIP][407] ([i915#3281]) -> [SKIP][408] ([i915#2575]) +8 similar issues
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-noreloc.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-write-read-active:
    - shard-dg2:          [SKIP][409] ([i915#2575]) -> [SKIP][410] ([i915#3281]) +13 similar issues
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2:          [SKIP][411] ([i915#4537] / [i915#4812]) -> [SKIP][412] ([i915#2575])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_fence_thrash@bo-copy:
    - shard-dg2:          [SKIP][413] ([i915#4860]) -> [SKIP][414] ([i915#2575]) +2 similar issues
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-10/igt@gem_fence_thrash@bo-copy.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html

  * igt@gem_fence_thrash@bo-write-verify-y:
    - shard-dg2:          [SKIP][415] ([i915#2575]) -> [SKIP][416] ([i915#4860])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-y.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg2:          [DMESG-WARN][417] ([i915#4936] / [i915#5493]) -> [TIMEOUT][418] ([i915#5493])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_media_vme:
    - shard-dg2:          [SKIP][419] ([i915#284]) -> [SKIP][420] ([i915#2575])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-1/igt@gem_media_vme.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_media_vme.html

  * igt@gem_mmap@basic-small-bo:
    - shard-dg2:          [SKIP][421] ([i915#2575]) -> [SKIP][422] ([i915#4083]) +7 similar issues
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_mmap@basic-small-bo.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@gem_mmap@basic-small-bo.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
    - shard-dg2:          [SKIP][423] ([i915#2575]) -> [SKIP][424] ([i915#4077]) +9 similar issues
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-12/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html

  * igt@gem_mmap_wc@write-gtt-read-wc:
    - shard-dg2:          [SKIP][425] ([i915#4083]) -> [SKIP][426] ([i915#2575]) +4 similar issues
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@gem_mmap_wc@write-gtt-read-wc.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_mmap_wc@write-gtt-read-wc.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-display:
    - shard-dg2:          [SKIP][427] ([i915#2575]) -> [SKIP][428] ([i915#3282]) +5 similar issues
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html

  * igt@gem_pxp@display-protected-crc:
    - shard-dg2:          [SKIP][429] ([i915#2575]) -> [SKIP][430] ([i915#4270]) +7 similar issues
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_pxp@display-protected-crc.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@reject-modify-context-protection-off-1:
    - shard-dg2:          [SKIP][431] ([i915#4270]) -> [SKIP][432] ([i915#2575]) +2 similar issues
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_pxp@reject-modify-context-protection-off-1.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-dg2:          [SKIP][433] ([i915#5190]) -> [SKIP][434] ([i915#2575] / [i915#5190]) +6 similar issues
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
    - shard-dg2:          [SKIP][435] ([i915#2575] / [i915#5190]) -> [SKIP][436] ([i915#5190]) +9 similar issues
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-dg2:          [SKIP][437] ([i915#2575]) -> [SKIP][438] ([i915#4079])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-dg2:          [SKIP][439] ([i915#4885]) -> [SKIP][440] ([i915#2575])
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-10/igt@gem_softpin@evict-snoop.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_softpin@evict-snoop.html

  * igt@gem_spin_batch@spin-all-new:
    - shard-dg2:          [FAIL][441] ([i915#5889]) -> [SKIP][442] ([i915#2575])
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-2/igt@gem_spin_batch@spin-all-new.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html

  * igt@gem_tiled_blits@basic:
    - shard-dg2:          [SKIP][443] ([i915#4077]) -> [SKIP][444] ([i915#2575]) +7 similar issues
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-2/igt@gem_tiled_blits@basic.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_tiled_blits@basic.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          [SKIP][445] ([i915#4079]) -> [SKIP][446] ([i915#2575])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@gem_tiled_pread_pwrite.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-dg2:          [SKIP][447] ([i915#3282]) -> [SKIP][448] ([i915#2575]) +3 similar issues
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-12/igt@gem_userptr_blits@forbidden-operations.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@map-fixed-invalidate:
    - shard-dg2:          [SKIP][449] ([i915#2575]) -> [SKIP][450] ([i915#3297] / [i915#4880])
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate.html

  * igt@gem_userptr_blits@sd-probe:
    - shard-dg2:          [SKIP][451] ([i915#2575]) -> [SKIP][452] ([i915#3297] / [i915#4958])
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-dg2:          [SKIP][453] ([i915#2575]) -> [SKIP][454] ([i915#3297]) +1 similar issue
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap-cycles.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen7_exec_parse@load-register-reg:
    - shard-dg2:          [SKIP][455] ([i915#2575]) -> [SKIP][456] ([fdo#109289]) +2 similar issues
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gen7_exec_parse@load-register-reg.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@gen7_exec_parse@load-register-reg.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-dg2:          [SKIP][457] ([i915#2856]) -> [SKIP][458] ([i915#2575]) +3 similar issues
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-6/igt@gen9_exec_parse@allowed-all.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-dg2:          [SKIP][459] ([i915#2575]) -> [SKIP][460] ([i915#2856]) +5 similar issues
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@gen9_exec_parse@secure-batches.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2:          [SKIP][461] ([i915#7091]) -> [SKIP][462] ([i915#2575])
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@i915_pm_backlight@fade-with-suspend:
    - shard-dg2:          [SKIP][463] ([i915#2575]) -> [SKIP][464] ([i915#5354] / [i915#7561])
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@i915_pm_backlight@fade-with-suspend.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-10/igt@i915_pm_backlight@fade-with-suspend.html

  * igt@i915_pm_rpm@dpms-lpsp:
    - shard-dg2:          [SKIP][465] ([i915#5174]) -> [SKIP][466] ([i915#1397])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@i915_pm_rpm@dpms-lpsp.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@i915_pm_rpm@dpms-lpsp.html

  * igt@i915_pm_rpm@gem-evict-pwrite:
    - shard-dg2:          [SKIP][467] ([i915#5174]) -> [SKIP][468] ([i915#4077]) +1 similar issue
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@i915_pm_rpm@gem-evict-pwrite.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-2/igt@i915_pm_rpm@gem-evict-pwrite.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-dg2:          [SKIP][469] ([i915#2575]) -> [SKIP][470] ([i915#6621])
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9602/shard-dg2-1/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-dg2:          [SKIP][471] ([i915#2575]) -> [SKIP][472] ([i915#6188])
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7441/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html

== Logs ==

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

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

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

* Re: [igt-dev] [i-g-t V4 03/20] tests/kms_getfb: Extended ccs tests to support XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 03/20] tests/kms_getfb: Extended ccs tests to support XE Bhanuprakash Modem
@ 2023-08-17  8:29   ` Kamil Konieczny
  0 siblings, 0 replies; 36+ messages in thread
From: Kamil Konieczny @ 2023-08-17  8:29 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

Hi Bhanuprakash,

On 2023-08-16 at 22:01:49 +0530, Bhanuprakash Modem wrote:
> Add support for ccs tests work on XE driver.
> 
> V2: - Update XE blocklist
> 
> Fixes: 5fd20e72a (tests/kms_getfb: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
>  tests/intel-ci/xe.blocklist.txt |  1 -
>  tests/kms_getfb.c               | 10 +++++++---
>  2 files changed, 7 insertions(+), 4 deletions(-)
> 
> diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
> index 1778e91f1..805939507 100644
> --- a/tests/intel-ci/xe.blocklist.txt
> +++ b/tests/intel-ci/xe.blocklist.txt
> @@ -78,7 +78,6 @@ igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-(atomic|legacy)
>  igt@kms_rotation_crc@primary-(4|x|y|yf)-tiled-.*
>  igt@kms_rotation_crc@exhaust-fences
>  igt@kms_force_connector_basic@force-load-detect
> -igt@kms_getfb@.*-ccs

Could you separate intel-ci changes into one separate (last)
patch? Here and at other kms patches?

Regards,
Kamil

>  igt@kms_plane_lowres@tiling-(4|x|y|yf)
>  igt@kms_.*@.*hang.*
>  ##################################################################
> diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
> index f90e51d64..6ee58caab 100644
> --- a/tests/kms_getfb.c
> +++ b/tests/kms_getfb.c
> @@ -48,6 +48,7 @@
>  #include "i915/gem_create.h"
>  #include "igt_device.h"
>  #include "xe/xe_query.h"
> +#include "xe/xe_ioctl.h"
>  
>  IGT_TEST_DESCRIPTION("Tests GETFB and GETFB2 ioctls.");
>  
> @@ -145,7 +146,10 @@ static void get_ccs_fb(int fd, struct drm_mode_fb_cmd2 *ret)
>  		size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
>  	}
>  
> -	add.handles[0] = gem_buffer_create_fb_obj(fd, size);
> +	if (is_i915_device(fd))
> +		add.handles[0] = gem_buffer_create_fb_obj(fd, size);
> +	else
> +		add.handles[0] = xe_bo_create_flags(fd, 0, size, vram_if_possible(fd, 0));
>  	igt_require(add.handles[0] != 0);
>  
>  	if (!HAS_FLATCCS(devid))
> @@ -315,7 +319,7 @@ static void test_duplicate_handles(int fd)
>  		struct drm_mode_fb_cmd2 add_ccs = { };
>  		struct drm_mode_fb_cmd get = { };
>  
> -		igt_require_i915(fd);
> +		igt_require_intel(fd);
>  		igt_require_f(!HAS_FLATCCS(intel_get_drm_devid(fd)),
>  			      "skip because flat ccs has only one buffer.\n");
>  
> @@ -421,7 +425,7 @@ static void test_getfb2(int fd)
>  		struct drm_mode_fb_cmd2 get = { };
>  		int i;
>  
> -		igt_require_i915(fd);
> +		igt_require_intel(fd);
>  		get_ccs_fb(fd, &add_ccs);
>  		igt_require(add_ccs.fb_id != 0);
>  		get.fb_id = add_ccs.fb_id;
> -- 
> 2.40.0
> 


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

* Re: [igt-dev] [i-g-t, V4, 06/20] tests/kms_plane_lowres: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 06/20] tests/kms_plane_lowres: " Bhanuprakash Modem
@ 2023-08-18  8:27   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-18  8:27 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in Xe specific tests
>
> V2: - Update XE blocklist
>
> Fixes: 129983d07 (tests/kms_plane_lowers: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, V4, 07/20] tests/kms_plane_scaling: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 07/20] tests/kms_plane_scaling: " Bhanuprakash Modem
@ 2023-08-18  8:29   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-18  8:29 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in Xe specific tests
>
> Fixes: 28bc56a8b (tests/kms_plane_scaling: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, V4, 08/20] tests/kms_rotation_crc: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 08/20] tests/kms_rotation_crc: " Bhanuprakash Modem
@ 2023-08-18  8:32   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-18  8:32 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in Xe specific tests
>
> V2: - Update XE blocklist
>
> Fixes: e1d5b831e (tests/kms_rotation_crc: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, V4, 09/20] tests/i915/kms_big_fb: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 09/20] tests/i915/kms_big_fb: " Bhanuprakash Modem
@ 2023-08-18  8:33   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-18  8:33 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in Xe specific tests
>
> V2: - Update XE blocklist
>
> Fixes: 34168d915 (tests/i915/kms_big_fb: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, V4, 10/20] tests/i915/kms_draw_crc: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 10/20] tests/i915/kms_draw_crc: " Bhanuprakash Modem
@ 2023-08-18  8:38   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-18  8:38 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in Xe specific tests
>
> V2: - Update XE blocklist
>
> Fixes: f6d0bacc0 (tests/i915/kms_draw_crc: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, V4, 11/20] tests/i915/kms_flip_scaled_crc: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 11/20] tests/i915/kms_flip_scaled_crc: " Bhanuprakash Modem
@ 2023-08-18  8:40   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-18  8:40 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in Xe specific tests
>
> V2: - Update XE blocklist
>
> Fixes: 113fc78d0 (tests/i915/kms_flip_scaled_crc: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, V4, 12/20] tests/i915/kms_flip_tiling: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 12/20] tests/i915/kms_flip_tiling: " Bhanuprakash Modem
@ 2023-08-18  8:41   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-18  8:41 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in Xe specific tests
>
> Fixes: 77e9c217f (tests/i915/kms_flip_tiling: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, V4, 15/20] tests/i915/kms_fbcon_fbt: Add XE support
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 15/20] tests/i915/kms_fbcon_fbt: " Bhanuprakash Modem
@ 2023-08-18  8:43   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-18  8:43 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:02 PM, Bhanuprakash Modem wrote:
> Add XE driver support for kms tests.
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, V4, 04/20] tests/kms_addfb_basic: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 04/20] tests/kms_addfb_basic: Add tiling support for XE Bhanuprakash Modem
@ 2023-08-23 13:51   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-23 13:51 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in Xe specific tests
>
> V2: - Update Xe fast-feedback testlist & blocklist
>
> Fixes: 8c3b02be3 (tests/kms_addfb_basic: Add XE support)
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t,V4,01/20] lib: Add tiling support for XE
  2023-08-16 16:31 ` [igt-dev] [i-g-t V4 01/20] lib: Add tiling support for XE Bhanuprakash Modem
@ 2023-08-23 13:54   ` Joshi, Kunal1
  0 siblings, 0 replies; 36+ messages in thread
From: Joshi, Kunal1 @ 2023-08-23 13:54 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 8/16/2023 10:01 PM, Bhanuprakash Modem wrote:
> Remove the tiling restrictions in all libraries those used by
> the Xe driver.
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t V4 14/20] tests/i915/kms_fb_coherancy: Add XE support
  2023-08-16 16:32 ` [igt-dev] [i-g-t V4 14/20] tests/i915/kms_fb_coherancy: " Bhanuprakash Modem
@ 2023-08-23 16:12   ` Kamil Konieczny
  0 siblings, 0 replies; 36+ messages in thread
From: Kamil Konieczny @ 2023-08-23 16:12 UTC (permalink / raw)
  To: igt-dev

Hi Bhanuprakash,

small nit in subject:
tests/i915/kms_fb_coherancy: Add XE support
---------------------- ^
s/_coherancy:/_coherency:/

Regards,
Kamil

On 2023-08-16 at 22:02:00 +0530, Bhanuprakash Modem wrote:
> Add XE driver support for kms tests. This patch will add a support
> to call the corresponding apis based on the driver (i915/xe)
> 
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
>  tests/i915/kms_fb_coherency.c | 43 +++++++++++++++++++----------------
>  1 file changed, 23 insertions(+), 20 deletions(-)
> 
> diff --git a/tests/i915/kms_fb_coherency.c b/tests/i915/kms_fb_coherency.c
> index c772ddcdc..745ffcdd2 100644
> --- a/tests/i915/kms_fb_coherency.c
> +++ b/tests/i915/kms_fb_coherency.c
> @@ -16,6 +16,7 @@
>  #include <string.h>
>  
>  #include "igt.h"
> +#include "xe/xe_ioctl.h"
>  
>  typedef struct {
>  	int drm_fd;
> @@ -91,7 +92,7 @@ static struct igt_fb *prepare_fb(data_t *data)
>  			0, 0, fb->width, fb->height,
>  			0, 0, fb->width << 16, fb->height << 16);
>  
> -	if (!gem_has_lmem(data->drm_fd)) {
> +	if (is_i915_device(data->drm_fd) && !gem_has_lmem(data->drm_fd)) {
>  		uint32_t caching;
>  
>  		/* make sure caching mode has become UC/WT */
> @@ -160,7 +161,10 @@ static void test_mmap_offset_wc(data_t *data)
>  
>  	fb = prepare_fb(data);
>  
> -	buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE);
> +	if (is_i915_device(data->drm_fd))
> +		buf = gem_mmap_offset__wc(data->drm_fd, fb->gem_handle, 0, fb->size, PROT_WRITE);
> +	else
> +		buf = xe_bo_mmap_ext(data->drm_fd, fb->gem_handle, fb->size, PROT_WRITE);
>  
>  	check_buf_crc(data, buf, fb);
>  }
> @@ -226,7 +230,7 @@ igt_main
>  	data_t data;
>  
>  	igt_fixture {
> -		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
> +		data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE);
>  
>  		data.devid = intel_get_drm_devid(data.drm_fd);
>  
> @@ -251,39 +255,38 @@ igt_main
>  	 * Test category: functionality test
>  	 */
>  	igt_subtest_with_dynamic("memset-crc") {
> -		if (gem_has_mappable_ggtt(data.drm_fd)) {
> +		if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_GTT)) {
>  			igt_dynamic("mmap-gtt")
>  				test_mmap_gtt(&data);
>  
>  			cleanup_crtc(&data);
>  		}
>  
> -		if (gem_mmap_offset__has_wc(data.drm_fd)) {
> +		if (igt_draw_supports_method(data.drm_fd, IGT_DRAW_MMAP_WC)) {
>  			igt_dynamic("mmap-offset-wc")
>  				test_mmap_offset_wc(&data);
>  
>  			cleanup_crtc(&data);
>  		}
>  
> -		if (gem_has_lmem(data.drm_fd)) {
> -			igt_dynamic("mmap-offset-fixed")
> -				test_mmap_offset_fixed(&data);
> +		if (is_i915_device(data.drm_fd)) {
> +			if (gem_has_lmem(data.drm_fd)) {
> +				igt_dynamic("mmap-offset-fixed")
> +					test_mmap_offset_fixed(&data);
> +			} else if (gem_has_mmap_offset(data.drm_fd)) {
> +				igt_dynamic("mmap-offset-uc")
> +					test_mmap_offset_uc(&data);
> +			}
>  
>  			cleanup_crtc(&data);
>  
> -		} else if (gem_has_mmap_offset(data.drm_fd)) {
> -			igt_dynamic("mmap-offset-uc")
> -				test_mmap_offset_uc(&data);
> +			if (gem_has_legacy_mmap(data.drm_fd) &&
> +			    gem_mmap__has_wc(data.drm_fd)) {
> +				igt_dynamic("mmap-legacy-wc")
> +					test_legacy_mmap_wc(&data);
>  
> -			cleanup_crtc(&data);
> -		}
> -
> -		if (gem_has_legacy_mmap(data.drm_fd) &&
> -		    gem_mmap__has_wc(data.drm_fd)) {
> -			igt_dynamic("mmap-legacy-wc")
> -				test_legacy_mmap_wc(&data);
> -
> -			cleanup_crtc(&data);
> +				cleanup_crtc(&data);
> +			}
>  		}
>  	}
>  
> -- 
> 2.40.0
> 

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

end of thread, other threads:[~2023-08-23 16:15 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-16 16:31 [igt-dev] [i-g-t V4 00/20] Add XE suppor for display tests Bhanuprakash Modem
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 01/20] lib: Add tiling support for XE Bhanuprakash Modem
2023-08-23 13:54   ` [igt-dev] [i-g-t,V4,01/20] " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 02/20] tests/kms_cursor_edge_walk: Fix intel specific checks Bhanuprakash Modem
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 03/20] tests/kms_getfb: Extended ccs tests to support XE Bhanuprakash Modem
2023-08-17  8:29   ` Kamil Konieczny
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 04/20] tests/kms_addfb_basic: Add tiling support for XE Bhanuprakash Modem
2023-08-23 13:51   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 05/20] tests/kms_plane: " Bhanuprakash Modem
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 06/20] tests/kms_plane_lowres: " Bhanuprakash Modem
2023-08-18  8:27   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 07/20] tests/kms_plane_scaling: " Bhanuprakash Modem
2023-08-18  8:29   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 08/20] tests/kms_rotation_crc: " Bhanuprakash Modem
2023-08-18  8:32   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 09/20] tests/i915/kms_big_fb: " Bhanuprakash Modem
2023-08-18  8:33   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 10/20] tests/i915/kms_draw_crc: " Bhanuprakash Modem
2023-08-18  8:38   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 11/20] tests/i915/kms_flip_scaled_crc: " Bhanuprakash Modem
2023-08-18  8:40   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 12/20] tests/i915/kms_flip_tiling: " Bhanuprakash Modem
2023-08-18  8:41   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:31 ` [igt-dev] [i-g-t V4 13/20] tests/i915/kms_ccs: Add XE support Bhanuprakash Modem
2023-08-16 16:32 ` [igt-dev] [i-g-t V4 14/20] tests/i915/kms_fb_coherancy: " Bhanuprakash Modem
2023-08-23 16:12   ` Kamil Konieczny
2023-08-16 16:32 ` [igt-dev] [i-g-t V4 15/20] tests/i915/kms_fbcon_fbt: " Bhanuprakash Modem
2023-08-18  8:43   ` [igt-dev] [i-g-t, V4, " Joshi, Kunal1
2023-08-16 16:32 ` [igt-dev] [i-g-t V4 16/20] tests/kms_async_flips: " Bhanuprakash Modem
2023-08-16 16:32 ` [igt-dev] [i-g-t V4 17/20] tests/kms_prime: " Bhanuprakash Modem
2023-08-16 16:32 ` [igt-dev] [i-g-t V4 18/20] tests/intel-ci: Update Xe ffb testlist & blocklist for kms_frontbuffer_tracking Bhanuprakash Modem
2023-08-16 16:32 ` [igt-dev] [i-g-t V4 19/20] tests/intel-ci: Drop tiling tests from xe blocklist Bhanuprakash Modem
2023-08-16 16:32 ` [igt-dev] [i-g-t V4 20/20] HAX: Run tiling tests in XE fast-feedback Bhanuprakash Modem
2023-08-16 19:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Add XE suppor for display tests (rev5) Patchwork
2023-08-16 20:12 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-08-17  3:28 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork

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