All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/4] misc fixes
@ 2022-09-27 19:11 Juha-Pekka Heikkila
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 1/4] tests/kms_cursor_crc: wait for cursor only when needed Juha-Pekka Heikkila
                   ` (7 more replies)
  0 siblings, 8 replies; 17+ messages in thread
From: Juha-Pekka Heikkila @ 2022-09-27 19:11 UTC (permalink / raw)
  To: igt-dev

Sanitized kms_cursor_crc a bit, it became slighly faster.
Fix intel clear color handling in libigt.
Add missing intel modifiers into multiplane rotation tests and try
to make test itself bit more readable.

/Juha-Pekka

Juha-Pekka Heikkila (4):
  tests/kms_cursor_crc: wait for cursor only when needed
  tests/kms_rotation_crc: add I915_FORMAT_MOD_4_TILED to multiplane
    rotation tests
  lib/rendercopy: separate intel clear color functions
  tests/kms_rotation_crc: try to simplify multiplane rotation tests

 lib/intel_batchbuffer.c  |   8 +-
 lib/rendercopy.h         |   4 +
 lib/rendercopy_gen9.c    |  45 +++---
 tests/kms_cursor_crc.c   |  19 +--
 tests/kms_rotation_crc.c | 295 +++++++++++++++++++++++----------------
 5 files changed, 225 insertions(+), 146 deletions(-)

-- 
2.37.3

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

* [igt-dev] [PATCH i-g-t 1/4] tests/kms_cursor_crc: wait for cursor only when needed
  2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
@ 2022-09-27 19:11 ` Juha-Pekka Heikkila
  2022-09-28 22:29   ` Jessica Zhang
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 2/4] tests/kms_rotation_crc: add I915_FORMAT_MOD_4_TILED to multiplane rotation tests Juha-Pekka Heikkila
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Juha-Pekka Heikkila @ 2022-09-27 19:11 UTC (permalink / raw)
  To: igt-dev

moved cursor vblank waits out from sw tests and wait only when
disabling cursor. With this need to wait few frames less than
currently, this seems to shave off around 1s per subtest.

Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 tests/kms_cursor_crc.c | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 7c1f74be5..f9a1f8689 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -72,6 +72,7 @@ typedef struct {
 	cairo_surface_t *surface;
 	uint32_t devid;
 	double alpha;
+	int vblank_wait_count; /* because of msm */
 } data_t;
 
 #define TEST_DPMS (1<<0)
@@ -124,6 +125,12 @@ static void cursor_disable(data_t *data)
 {
 	igt_plane_set_fb(data->cursor, NULL);
 	igt_plane_set_position(data->cursor, 0, 0);
+	igt_display_commit(&data->display);
+
+	/* do this wait here so it will not need to be added everywhere */
+	igt_wait_for_vblank_count(data->drm_fd,
+				  data->display.pipes[data->pipe].crtc_offset,
+				  data->vblank_wait_count);
 }
 
 static bool chv_cursor_broken(data_t *data, int x)
@@ -185,7 +192,6 @@ static void do_single_test(data_t *data, int x, int y, bool hw_test,
 	igt_pipe_crc_t *pipe_crc = data->pipe_crc;
 	igt_crc_t crc;
 	int ret = 0, swbufidx;
-	int vblank_wait_count = is_msm_device(data->drm_fd) ? 2 : 1;
 
 	igt_print_activity();
 
@@ -204,7 +210,8 @@ static void do_single_test(data_t *data, int x, int y, bool hw_test,
 
 		/* Extra vblank wait is because nonblocking cursor ioctl */
 		igt_wait_for_vblank_count(data->drm_fd,
-				display->pipes[data->pipe].crtc_offset, vblank_wait_count);
+					  display->pipes[data->pipe].crtc_offset,
+					  data->vblank_wait_count);
 
 		igt_pipe_crc_get_current(data->drm_fd, pipe_crc, hwcrc);
 
@@ -242,11 +249,7 @@ static void do_single_test(data_t *data, int x, int y, bool hw_test,
 
 		restore_image(data, swbufidx, &((cursorarea){x, y, data->curw, data->curh}));
 		igt_plane_set_fb(data->primary, &data->primary_fb[swbufidx]);
-
 		igt_display_commit(display);
-		igt_wait_for_vblank_count(data->drm_fd,
-				display->pipes[data->pipe].crtc_offset, vblank_wait_count);
-
 		igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc);
 		igt_assert_crc_equal(&crc, hwcrc);
 	}
@@ -264,9 +267,7 @@ static void do_fail_test(data_t *data, int x, int y, int expect)
 	igt_plane_set_position(data->cursor, x, y);
 	ret = igt_display_try_commit2(display, COMMIT_LEGACY);
 
-	igt_plane_set_position(data->cursor, 0, 0);
 	cursor_disable(data);
-	igt_display_commit(display);
 
 	igt_assert_eq(ret, expect);
 }
@@ -895,6 +896,8 @@ igt_main
 		kmstest_set_vt_graphics_mode();
 
 		igt_require_pipe_crc(data.drm_fd);
+
+		data.vblank_wait_count = is_msm_device(data.drm_fd) ? 2 : 1;
 	}
 
 	data.cursor_max_w = cursor_width;
-- 
2.37.3

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

* [igt-dev] [PATCH i-g-t 2/4] tests/kms_rotation_crc: add I915_FORMAT_MOD_4_TILED to multiplane rotation tests
  2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 1/4] tests/kms_cursor_crc: wait for cursor only when needed Juha-Pekka Heikkila
@ 2022-09-27 19:11 ` Juha-Pekka Heikkila
  2022-10-04  9:18   ` Kahola, Mika
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 3/4] lib/rendercopy: separate intel clear color functions Juha-Pekka Heikkila
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Juha-Pekka Heikkila @ 2022-09-27 19:11 UTC (permalink / raw)
  To: igt-dev

Add I915_FORMAT_MOD_4_TILED to list for multiplane rotation tests so
they will be tested on dg2.

Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 tests/kms_rotation_crc.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 50869a08a..53f1f6ec1 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -696,12 +696,14 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
 	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
 	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
 	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
+	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
 	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
 	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
 	{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
 	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
 	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
 	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
+	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
 	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
 	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
 	};
-- 
2.37.3

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

* [igt-dev] [PATCH i-g-t 3/4] lib/rendercopy: separate intel clear color functions
  2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 1/4] tests/kms_cursor_crc: wait for cursor only when needed Juha-Pekka Heikkila
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 2/4] tests/kms_rotation_crc: add I915_FORMAT_MOD_4_TILED to multiplane rotation tests Juha-Pekka Heikkila
@ 2022-09-27 19:11 ` Juha-Pekka Heikkila
  2022-10-04  9:20   ` Kahola, Mika
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify multiplane rotation tests Juha-Pekka Heikkila
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Juha-Pekka Heikkila @ 2022-09-27 19:11 UTC (permalink / raw)
  To: igt-dev

separate dg2 style ccs clear color from generic gen12 clear color
same way as how they're separate on rendercopy.

Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 lib/intel_batchbuffer.c |  8 +++++++-
 lib/rendercopy.h        |  4 ++++
 lib/rendercopy_gen9.c   | 45 +++++++++++++++++++++++------------------
 3 files changed, 36 insertions(+), 21 deletions(-)

diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index ef1b59477..bb2503bbd 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -1166,7 +1166,13 @@ igt_vebox_copyfunc_t igt_get_vebox_copyfunc(int devid)
 
 igt_render_clearfunc_t igt_get_render_clearfunc(int devid)
 {
-	return IS_GEN12(devid) ? gen12_render_clearfunc : NULL;
+	if (IS_DG2(devid)) {
+		return gen12p71_render_clearfunc;
+	} else if (IS_GEN12(devid)) {
+		return gen12_render_clearfunc;
+	} else {
+		return NULL;
+	}
 }
 
 /**
diff --git a/lib/rendercopy.h b/lib/rendercopy.h
index 3e984a141..480fdee8d 100644
--- a/lib/rendercopy.h
+++ b/lib/rendercopy.h
@@ -23,6 +23,10 @@ static inline void emit_vertex_normalized(struct intel_bb *ibb,
 	intel_bb_out(ibb, u.ui);
 }
 
+void gen12p71_render_clearfunc(struct intel_bb *ibb,
+			       struct intel_buf *dst, unsigned int dst_x, unsigned int dst_y,
+			       unsigned int width, unsigned int height,
+			       const float clear_color[4]);
 void gen12_render_clearfunc(struct intel_bb *ibb,
 			    struct intel_buf *dst, unsigned int dst_x, unsigned int dst_y,
 			    unsigned int width, unsigned int height,
diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
index ae0f775ac..d74f1c999 100644
--- a/lib/rendercopy_gen9.c
+++ b/lib/rendercopy_gen9.c
@@ -1254,24 +1254,29 @@ void gen12_render_clearfunc(struct intel_bb *ibb,
 			    unsigned int width, unsigned int height,
 			    const float clear_color[4])
 {
-	if (!HAS_4TILE(ibb->devid)) {
-		struct aux_pgtable_info pgtable_info = { };
-
-		gen12_aux_pgtable_init(&pgtable_info, ibb, NULL, dst);
-
-		_gen9_render_op(ibb, NULL, 0, 0,
-				width, height, dst, dst_x, dst_y,
-				pgtable_info.pgtable_buf,
-				clear_color,
-				gen12_render_copy,
-				sizeof(gen12_render_copy));
-		gen12_aux_pgtable_cleanup(ibb, &pgtable_info);
-	} else {
-			_gen9_render_op(ibb, NULL, 0, 0,
-					width, height, dst, dst_x, dst_y,
-					NULL,
-					clear_color,
-					gen12p71_render_copy,
-					sizeof(gen12p71_render_copy));
-	}
+	struct aux_pgtable_info pgtable_info = { };
+
+	gen12_aux_pgtable_init(&pgtable_info, ibb, NULL, dst);
+
+	_gen9_render_op(ibb, NULL, 0, 0,
+			width, height, dst, dst_x, dst_y,
+			pgtable_info.pgtable_buf,
+			clear_color,
+			gen12_render_copy,
+			sizeof(gen12_render_copy));
+	gen12_aux_pgtable_cleanup(ibb, &pgtable_info);
+}
+
+void gen12p71_render_clearfunc(struct intel_bb *ibb,
+			       struct intel_buf *dst,
+			       unsigned int dst_x, unsigned int dst_y,
+			       unsigned int width, unsigned int height,
+			       const float clear_color[4])
+{
+	_gen9_render_op(ibb, NULL, 0, 0,
+			width, height, dst, dst_x, dst_y,
+			NULL,
+			clear_color,
+			gen12p71_render_copy,
+			sizeof(gen12p71_render_copy));
 }
-- 
2.37.3

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

* [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify multiplane rotation tests
  2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
                   ` (2 preceding siblings ...)
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 3/4] lib/rendercopy: separate intel clear color functions Juha-Pekka Heikkila
@ 2022-09-27 19:11 ` Juha-Pekka Heikkila
  2022-10-04 12:56   ` Kahola, Mika
  2022-09-27 20:23 ` [igt-dev] ✓ Fi.CI.BAT: success for misc fixes Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 17+ messages in thread
From: Juha-Pekka Heikkila @ 2022-09-27 19:11 UTC (permalink / raw)
  To: igt-dev

As is multiplane rotation tests are far from readable, here attempt
to break it to bit more readable form. No functional change on test
itself.

Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
 tests/kms_rotation_crc.c | 297 +++++++++++++++++++++++----------------
 1 file changed, 178 insertions(+), 119 deletions(-)

diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 53f1f6ec1..755da20e7 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -60,6 +60,24 @@ enum rectangle_type {
 	num_rectangle_types /* must be last */
 };
 
+/*
+ * These are those modes which are tested on multiplane test.
+ * For testing feel interesting case with modifier are 2BPP, 4BPP, NV12 and
+ * one P0xx format.
+ */
+const uint32_t multiplaneformatlist[] = { DRM_FORMAT_RGB565,
+					  DRM_FORMAT_XRGB8888,
+					  DRM_FORMAT_NV12,
+					  DRM_FORMAT_P010 };
+
+typedef struct {
+	igt_rotation_t rotation;
+	float_t width;
+	float_t height;
+	uint64_t modifier;
+	struct igt_fb fbs[ARRAY_SIZE(multiplaneformatlist)][2];
+} planeconfigs_t;
+
 typedef struct {
 	int gfx_fd;
 	igt_display_t display;
@@ -76,7 +94,6 @@ typedef struct {
 	uint64_t override_modifier;
 	int devid;
 
-	struct p_struct *multiplaneoldview;
 	struct p_point planepos[MAXMULTIPLANESAMOUNT];
 
 	bool use_native_resolution;
@@ -571,33 +588,46 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form
 }
 
 typedef struct {
-	int32_t x1, y1;
-	uint64_t width, height, modifier, format;
+	int32_t x1, y1, formatindex;
 	igt_plane_t *plane;
 	igt_rotation_t rotation_sw, rotation_hw;
+	planeconfigs_t *fbinfo;
 } planeinfos;
 
-static bool setup_multiplane(data_t *data, planeinfos *planeinfo,
-			     struct igt_fb *fbleft,  struct igt_fb *fbright)
+static bool setup_multiplane(data_t *data, planeinfos planeinfo[2], drmModeModeInfo *mode,
+			     int hwround)
 {
 	uint32_t w, h;
-	struct igt_fb *planes[2] = {fbleft, fbright};
+	struct igt_fb *planes[2] = {&planeinfo[0].fbinfo->fbs[planeinfo[0].formatindex][hwround],
+				    &planeinfo[1].fbinfo->fbs[planeinfo[1].formatindex][hwround]};
 	int c;
 
+	if (hwround == MULTIPLANE_REFERENCE) {
+		planeinfo[0].rotation_sw = planeinfo[0].fbinfo->rotation;
+		planeinfo[1].rotation_sw = planeinfo[1].fbinfo->rotation;
+		planeinfo[0].rotation_hw = IGT_ROTATION_0;
+		planeinfo[1].rotation_hw = IGT_ROTATION_0;
+	} else {
+		planeinfo[0].rotation_sw = IGT_ROTATION_0;
+		planeinfo[1].rotation_sw = IGT_ROTATION_0;
+		planeinfo[0].rotation_hw = planeinfo[0].fbinfo->rotation;
+		planeinfo[1].rotation_hw = planeinfo[1].fbinfo->rotation;
+	}
+
 	for (c = 0; c < ARRAY_SIZE(planes); c++) {
 		/*
 		 * make plane and fb width and height always divisible by 4
 		 * due to NV12 support and Intel hw workarounds.
 		 */
-		w = planeinfo[c].width & ~3;
-		h = planeinfo[c].height & ~3;
+		w = (uint64_t)(planeinfo[c].fbinfo->width * TEST_WIDTH(mode)) & ~3;
+		h = (uint64_t)(planeinfo[c].fbinfo->height * TEST_HEIGHT(mode)) & ~3;
 
 		if (igt_rotation_90_or_270(planeinfo[c].rotation_sw))
 			igt_swap(w, h);
 
 		if (!igt_plane_has_format_mod(planeinfo[c].plane,
-					      planeinfo[c].format,
-					      planeinfo[c].modifier))
+					      multiplaneformatlist[planeinfo[c].formatindex],
+					      planeinfo[c].fbinfo->modifier))
 			return false;
 
 		/*
@@ -605,8 +635,9 @@ static bool setup_multiplane(data_t *data, planeinfos *planeinfo,
 		 * new fb?
 		 */
 		if (planes[c]->fb_id == 0) {
-			igt_create_fb(data->gfx_fd, w, h, planeinfo[c].format,
-				      planeinfo[c].modifier, planes[c]);
+			igt_create_fb(data->gfx_fd, w, h,
+				      multiplaneformatlist[planeinfo[c].formatindex],
+				      planeinfo[c].fbinfo->modifier, planes[c]);
 
 			paint_squares(data, planeinfo[c].rotation_sw,
 				      planes[c], 1.0f);
@@ -625,7 +656,7 @@ static bool setup_multiplane(data_t *data, planeinfos *planeinfo,
 	return true;
 }
 
-static void pointlocation(data_t *data, planeinfos *p, drmModeModeInfo *mode,
+static void pointlocation(data_t *data, planeinfos p[2], drmModeModeInfo *mode,
 			  int c)
 {
 	if (data->planepos[c].origo & p_right) {
@@ -655,11 +686,88 @@ static void pointlocation(data_t *data, planeinfos *p, drmModeModeInfo *mode,
 	}
 }
 
+static bool multiplaneskiproundcheck(data_t *data, planeinfos p[2])
+{
+	/*
+	 * RGB565 90/270 degrees rotation is supported
+	 * from gen11 onwards.
+	 */
+	if (multiplaneformatlist[p[0].formatindex] == DRM_FORMAT_RGB565 &&
+	    igt_rotation_90_or_270(p[0].fbinfo->rotation)
+	    && intel_display_ver(data->devid) < 11)
+		return false;
+
+	if (multiplaneformatlist[p[1].formatindex] == DRM_FORMAT_RGB565 &&
+	    igt_rotation_90_or_270(p[1].fbinfo->rotation)
+	    && intel_display_ver(data->devid) < 11)
+		return false;
+
+	if (!igt_plane_has_rotation(p[0].plane, p[0].fbinfo->rotation))
+		return false;
+
+	if (!igt_plane_has_rotation(p[1].plane, p[1].fbinfo->rotation))
+		return false;
+
+	return true;
+}
+
 /*
  * count trailing zeroes
  */
 #define ctz __builtin_ctz
 
+/*
+ * this is to make below inner loops more readable.
+ * 1 = left plane has palar format
+ * 2 = right plane has planar format
+ * 3 = both planes has planar formats
+ */
+#define planarcheck (igt_format_is_yuv_semiplanar(multiplaneformatlist[p[0].formatindex]) | \
+		    (igt_format_is_yuv_semiplanar(multiplaneformatlist[p[1].formatindex]) << 1))
+
+/*
+ * used formats are packed formats and these rotation were already seen on
+ * screen so crc was already logged?
+ */
+static bool havepackedcrc(planeinfos p[2], igt_crc_t crclog[16])
+{
+	int logindex;
+
+	if (planarcheck != 0)
+		return false;
+
+	logindex = ctz(p[0].fbinfo->rotation);
+	logindex |= ctz(p[1].fbinfo->rotation) << 2;
+
+	if (crclog[logindex].frame == 0)
+		return false;
+
+	return true;
+}
+
+/*
+ * check left plane has planar format, right plane doesn't have planar format
+ * and rotations stay the same, if all these are true crc can be re-used from
+ * previous round.
+ */
+static bool reusecrcfromlastround(planeinfos p[2], int lastroundp1format,
+				  int lastroundp0rotation,
+				  int lastroundp1rotation)
+{
+	if (planarcheck != 1)
+		return false;
+
+	if (igt_format_is_yuv_semiplanar(lastroundp1format))
+		return false;
+
+	if (p[0].fbinfo->rotation != lastroundp0rotation)
+		return false;
+
+	if (p[1].fbinfo->rotation != lastroundp1rotation)
+		return false;
+
+	return true;
+}
 /*
  * Here is pipe parameter which is now used only for first pipe.
  * It is left here if this test ever was wanted to be run on
@@ -671,41 +779,29 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
 	igt_output_t *output;
 	igt_crc_t retcrc_sw, retcrc_hw;
 	planeinfos p[2];
-	int used_w, used_h, lastroundirotation = 0, lastroundjrotation = 0,
+	int lastroundirotation = 0, lastroundjrotation = 0,
 	    lastroundjformat = 0, c, d;
 	drmModeModeInfo *mode;
 	bool have_crc; // flag if can use previously logged crc for comparison
 	igt_crc_t crclog[16] = {}; //4 * 4 rotation crc storage for packed formats
 	char *str1, *str2; // for debug printouts
-
-	/*
-	 * These are those modes which are tested. For testing feel interesting
-	 * case with modifier are 2 bpp, 4 bpp and NV12.
-	 */
-	static const uint32_t formatlist[] = {DRM_FORMAT_RGB565,
-		DRM_FORMAT_XRGB8888, DRM_FORMAT_NV12, DRM_FORMAT_P010};
-
-	static struct {
-		igt_rotation_t rotation;
-		float_t width;
-		float_t height;
-		uint64_t modifier;
-		struct igt_fb fbs[ARRAY_SIZE(formatlist)][2];
-	} planeconfigs[] = {
-	{IGT_ROTATION_0, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
-	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
-	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
-	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
-	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
-	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
-	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
-	{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
-	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
-	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
-	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
-	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
-	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
-	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
+	int logindex;
+
+	static planeconfigs_t planeconfigs[] = {
+		{IGT_ROTATION_0, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
+		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
+		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
+		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
+		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
+		{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
+		{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
+		{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
+		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
+		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
+		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
+		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
+		{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
+		{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
 	};
 
 	for_each_valid_output_on_pipe(display, pipe, output) {
@@ -715,9 +811,6 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
 		igt_display_require_output(display);
 		igt_display_commit2(display, COMMIT_ATOMIC);
 
-		used_w = TEST_WIDTH(mode);
-		used_h = TEST_HEIGHT(mode);
-
 		p[0].plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
 		p[1].plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_OVERLAY);
 
@@ -726,88 +819,60 @@ 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++) {
-			p[0].width = (uint64_t)(planeconfigs[i].width * used_w);
-			p[0].height = (uint64_t)(planeconfigs[i].height * used_h);
-			p[0].modifier = planeconfigs[i].modifier;
-			pointlocation(data, (planeinfos *)&p, mode, 0);
+			p[0].fbinfo = &planeconfigs[i];
+			pointlocation(data, p, mode, 0);
 
-			for (k = 0; k < ARRAY_SIZE(formatlist); k++) {
-				p[0].format = formatlist[k];
+			for (k = 0; k < ARRAY_SIZE(multiplaneformatlist); k++) {
+				p[0].formatindex = k;
 
 				for (j = 0; j < ARRAY_SIZE(planeconfigs); j++) {
-					p[1].width = (uint64_t)(planeconfigs[j].width * used_w);
-					p[1].height = (uint64_t)(planeconfigs[j].height * used_h);
-					p[1].modifier = planeconfigs[j].modifier;
-					pointlocation(data, (planeinfos *)&p,
-						      mode, 1);
-
-					for (l = 0; l < ARRAY_SIZE(formatlist); l++) {
-						p[1].format = formatlist[l];
-						/*
-						 * RGB565 90/270 degrees rotation is supported
-						 * from gen11 onwards.
-						 */
-						if (p[0].format == DRM_FORMAT_RGB565 &&
-						     igt_rotation_90_or_270(planeconfigs[i].rotation)
-						     && intel_display_ver(data->devid) < 11)
-							continue;
+					p[1].fbinfo = &planeconfigs[j];
+					pointlocation(data, p, mode, 1);
 
-						if (p[1].format == DRM_FORMAT_RGB565 &&
-						     igt_rotation_90_or_270(planeconfigs[j].rotation)
-						     && intel_display_ver(data->devid) < 11)
-							continue;
-
-						if (!igt_plane_has_rotation(p[0].plane,
-									    planeconfigs[i].rotation))
-							continue;
+					for (l = 0; l < ARRAY_SIZE(multiplaneformatlist); l++) {
+						p[1].formatindex = l;
 
-						if (!igt_plane_has_rotation(p[1].plane,
-									    planeconfigs[j].rotation))
+						if (!multiplaneskiproundcheck(data, p))
 							continue;
 
 						/*
 						 * if using packed formats crc's will be
 						 * same and can store them so there's
-						 * no need to redo comparison image and
+						 * no need to redo reference image and
 						 * just use stored crc.
 						 */
-						if (!igt_format_is_yuv_semiplanar(p[0].format) && !igt_format_is_yuv_semiplanar(p[1].format) &&
-						    crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)].frame != 0) {
-							retcrc_sw = crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)];
+						if (havepackedcrc(p, crclog)) {
+							logindex = ctz(p[0].fbinfo->rotation);
+							logindex |= ctz(p[1].fbinfo->rotation) << 2;
+
+							retcrc_sw = crclog[logindex];
 							have_crc = true;
-						} else if((p[0].format == DRM_FORMAT_NV12 || p[0].format == DRM_FORMAT_P010) &&
-							   p[1].format != DRM_FORMAT_NV12 && p[1].format != DRM_FORMAT_P010 &&
-							   lastroundjformat != DRM_FORMAT_NV12 && lastroundjformat != DRM_FORMAT_P010 &&
-							   planeconfigs[i].rotation == lastroundirotation &&
-							   planeconfigs[j].rotation == lastroundjrotation) {
+						} else if(reusecrcfromlastround(p, lastroundjformat,
+										lastroundirotation,
+										lastroundjrotation)) {
 							/*
-							 * With NV12 can benefit from
-							 * previous crc if rotations
+							 * With planar formats can benefit
+							 * from previous crc if rotations
 							 * stay same. If both planes
-							 * have NV12 in use we need to
-							 * skip that case.
+							 * have planar format in use we
+							 * need to skip that case.
 							 * If last round right plane
-							 * had NV12 need to skip this.
+							 * had planar format need to skip
+							 * this.
 							 */
 							have_crc = true;
 						} else {
 							/*
 							 * here will be created
-							 * comparison image and get crc
+							 * reference image and get crc
 							 * if didn't have stored crc
 							 * or planar format is in use.
 							 * have_crc flag will control
 							 * crc comparison part.
 							 */
-							p[0].rotation_sw = planeconfigs[i].rotation;
-							p[0].rotation_hw = IGT_ROTATION_0;
-							p[1].rotation_sw = planeconfigs[j].rotation;
-							p[1].rotation_hw = IGT_ROTATION_0;
-							if (!setup_multiplane(data,
-									(planeinfos *)&p,
-									&planeconfigs[i].fbs[k][MULTIPLANE_REFERENCE],
-									&planeconfigs[j].fbs[l][MULTIPLANE_REFERENCE]))
+							if (!setup_multiplane(data, p, mode, MULTIPLANE_REFERENCE))
 								continue;
+
 							igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
 							flipsw = kmstest_get_vblank(data->gfx_fd, pipe, 0) + 1;
 							have_crc = false;
@@ -818,15 +883,7 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
 						 * get vblank where interesting
 						 * crc will be at, grab crc bit later
 						 */
-						p[0].rotation_sw = IGT_ROTATION_0;
-						p[0].rotation_hw = planeconfigs[i].rotation;
-						p[1].rotation_sw = IGT_ROTATION_0;
-						p[1].rotation_hw = planeconfigs[j].rotation;
-
-						if (!setup_multiplane(data,
-								      (planeinfos *)&p,
-								      &planeconfigs[i].fbs[k][MULTIPLANE_ROTATED],
-								      &planeconfigs[j].fbs[l][MULTIPLANE_ROTATED]))
+						if (!setup_multiplane(data, p, mode, MULTIPLANE_ROTATED))
 							continue;
 
 						igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
@@ -838,9 +895,12 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
 										   flipsw,
 										   &retcrc_sw);
 
-							if (!igt_format_is_yuv_semiplanar(p[0].format) &&!igt_format_is_yuv_semiplanar(p[1].format))
-								crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)]
-								= retcrc_sw;
+							if (planarcheck == 0) {
+								logindex = ctz(p[0].fbinfo->rotation);
+								logindex |= ctz(p[1].fbinfo->rotation) << 2;
+
+								crclog[logindex] = retcrc_sw;
+							}
 						}
 						igt_pipe_crc_get_for_frame(data->gfx_fd, data->pipe_crc, fliphw, &retcrc_hw);
 
@@ -849,18 +909,18 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
 
 						igt_debug("crc %.8s vs %.8s -- %.4s - %.4s crc buffered:%s rot1 %d rot2 %d\n",
 							str1, str2,
-							(char *) &p[0].format, (char *) &p[1].format,
-							have_crc?"yes":" no",
+							(char *) &multiplaneformatlist[p[0].formatindex],
+							(char *) &multiplaneformatlist[p[1].formatindex],
+							have_crc ? "yes" : " no",
 							(int[]) {0, 90, 180, 270} [ctz(planeconfigs[i].rotation)],
 							(int[]) {0, 90, 180, 270} [ctz(planeconfigs[j].rotation)]);
 
 						free(str1);
 						free(str2);
 
-
 						igt_assert_crc_equal(&retcrc_sw, &retcrc_hw);
 
-						lastroundjformat = p[1].format;
+						lastroundjformat = multiplaneformatlist[p[1].formatindex];
 						lastroundirotation = planeconfigs[i].rotation;
 						lastroundjrotation = planeconfigs[j].rotation;
 					}
@@ -881,13 +941,12 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
 		lastroundirotation = 0;
 		lastroundjrotation = 0;
 
-
 		igt_output_set_pipe(output, PIPE_NONE);
 	}
 	data->pipe_crc = NULL;
 
 	for (c = 0; c < ARRAY_SIZE(planeconfigs); c++) {
-		for  (d = 0; d < ARRAY_SIZE(formatlist); d++) {
+		for  (d = 0; d < ARRAY_SIZE(multiplaneformatlist); d++) {
 			igt_remove_fb(data->gfx_fd, &planeconfigs[c].fbs[d][MULTIPLANE_REFERENCE]);
 			igt_remove_fb(data->gfx_fd, &planeconfigs[c].fbs[d][MULTIPLANE_ROTATED]);
 		}
-- 
2.37.3

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

* [igt-dev] ✓ Fi.CI.BAT: success for misc fixes
  2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
                   ` (3 preceding siblings ...)
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify multiplane rotation tests Juha-Pekka Heikkila
@ 2022-09-27 20:23 ` Patchwork
  2022-09-28 11:23 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2022-09-27 20:23 UTC (permalink / raw)
  To: Juha-Pekka Heikkila; +Cc: igt-dev

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

== Series Details ==

Series: misc fixes
URL   : https://patchwork.freedesktop.org/series/109144/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12192 -> IGTPW_7852
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (46 -> 44)
------------------------------

  Missing    (2): fi-bdw-samus fi-tgl-dsi 

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - {bat-adlm-1}:       [DMESG-WARN][1] ([i915#2867]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/bat-adlm-1/igt@gem_exec_suspend@basic-s3@smem.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/bat-adlm-1/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [DMESG-FAIL][3] ([i915#62]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@hangcheck:
    - {fi-ehl-2}:         [INCOMPLETE][5] ([i915#5153]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/fi-ehl-2/igt@i915_selftest@live@hangcheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/fi-ehl-2/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@late_gt_pm:
    - fi-cfl-8109u:       [DMESG-WARN][7] ([i915#5904]) -> [PASS][8] +30 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - fi-cfl-8109u:       [DMESG-WARN][9] ([i915#5904] / [i915#62]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-cfl-8109u:       [DMESG-WARN][11] ([i915#62]) -> [PASS][12] +12 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/fi-cfl-8109u/igt@kms_frontbuffer_tracking@basic.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/fi-cfl-8109u/igt@kms_frontbuffer_tracking@basic.html

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

  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5153]: https://gitlab.freedesktop.org/drm/intel/issues/5153
  [i915#5904]: https://gitlab.freedesktop.org/drm/intel/issues/5904
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6666 -> IGTPW_7852

  CI-20190529: 20190529
  CI_DRM_12192: 83f5b1665fc067c78ed2d46c585d8c49e57e6b06 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7852: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
  IGT_6666: 1e3ecbaa3c56f4c52c62047707eb4942d3a39c44 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for misc fixes
  2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
                   ` (4 preceding siblings ...)
  2022-09-27 20:23 ` [igt-dev] ✓ Fi.CI.BAT: success for misc fixes Patchwork
@ 2022-09-28 11:23 ` Patchwork
  2022-09-28 11:47   ` Juha-Pekka Heikkila
  2022-09-28 16:14 ` Patchwork
  2022-09-28 16:58 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  7 siblings, 1 reply; 17+ messages in thread
From: Patchwork @ 2022-09-28 11:23 UTC (permalink / raw)
  To: Juha-Pekka Heikkila; +Cc: igt-dev

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

== Series Details ==

Series: misc fixes
URL   : https://patchwork.freedesktop.org/series/109144/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12192_full -> IGTPW_7852_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7852_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7852_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_7852/index.html

Participating hosts (11 -> 6)
------------------------------

  Missing    (5): pig-kbl-iris shard-tglu pig-glk-j5005 pig-skl-6260u shard-rkl 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@api_intel_allocator@fork-simple-stress:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb2/igt@api_intel_allocator@fork-simple-stress.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@api_intel_allocator@fork-simple-stress.html

  * igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2:
    - shard-glk:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html

  * igt@nouveau_crc@pipe-b-source-outp-inactive:
    - shard-tglb:         NOTRUN -> [SKIP][5] +48 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-iclb:         NOTRUN -> [SKIP][6] +49 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@prime_nv_test@i915_blt_fill_nv_read.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ccs@block-copy-compressed:
    - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#3555] / [i915#5325])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ctx_persistence@engines-hang@rcs0:
    - shard-apl:          [PASS][8] -> [FAIL][9] ([i915#2410])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@gem_ctx_persistence@engines-hang@rcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@gem_ctx_persistence@engines-hang@rcs0.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([i915#4525]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglb:         NOTRUN -> [SKIP][12] ([i915#6344])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@gem_exec_capture@capture-recoverable.html
    - shard-iclb:         NOTRUN -> [SKIP][13] ([i915#6344])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2842])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][17] ([i915#4613])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-glk:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][19] ([i915#4613])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_mmap_gtt@fault-concurrent-x:
    - shard-snb:          [PASS][20] -> [INCOMPLETE][21] ([i915#5161])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([i915#4270])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
    - shard-tglb:         NOTRUN -> [SKIP][23] ([i915#4270]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#768]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][25] ([i915#4991])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gem_userptr_blits@input-checking.html

  * igt@gen7_exec_parse@basic-allowed:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#109289])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gen7_exec_parse@basic-allowed.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [PASS][27] -> [DMESG-WARN][28] ([i915#5566] / [i915#716])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk6/igt@gen9_exec_parse@allowed-all.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][29] -> [FAIL][30] ([i915#3989] / [i915#454])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [PASS][31] -> [SKIP][32] ([fdo#109271])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_pm_dc@dc9-dpms.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#4281])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_selftest@live@gt_heartbeat:
    - shard-apl:          [PASS][34] -> [DMESG-FAIL][35] ([i915#5334])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_selftest@live@gt_heartbeat.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#5286]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([fdo#110725] / [fdo#111614])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#111614])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109278]) +3 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
    - shard-tglb:         NOTRUN -> [SKIP][40] ([i915#6095])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][41] ([fdo#109271]) +181 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#111615] / [i915#3689]) +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109278] / [i915#3886])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([i915#3689] / [i915#6095])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#3689]) +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#3886]) +5 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_chamelium@vga-frame-dump:
    - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_chamelium@vga-frame-dump.html

  * igt@kms_chamelium@vga-hpd:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_chamelium@vga-hpd.html

  * igt@kms_chamelium@vga-hpd-without-ddc:
    - shard-snb:          NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_chamelium@vga-hpd-without-ddc.html
    - shard-glk:          NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@kms_chamelium@vga-hpd-without-ddc.html
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_chamelium@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic:
    - shard-apl:          NOTRUN -> [TIMEOUT][53] ([i915#1319])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_content_protection@atomic.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([fdo#109279] / [i915#3359])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#3359])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@cursor-vs-flip@varying-size:
    - shard-iclb:         [PASS][56] -> [FAIL][57] ([i915#5072]) +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([i915#4103])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][60] ([fdo#109274])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][61] -> [FAIL][62] ([i915#79])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
    - shard-apl:          [PASS][64] -> [FAIL][65] ([i915#79])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([i915#2672]) +2 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109280]) +4 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([fdo#109280] / [fdo#111825]) +11 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([i915#6497])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][71] -> [SKIP][72] ([i915#433])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][73] ([i915#265])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
    - shard-apl:          NOTRUN -> [FAIL][74] ([i915#265])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1:
    - shard-glk:          [PASS][75] -> [FAIL][76] ([i915#1888])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html

  * igt@kms_prime@d3hot:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#6524])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#1911])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109441])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
    - shard-tglb:         NOTRUN -> [FAIL][81] ([i915#132] / [i915#3467])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][82] -> [SKIP][83] ([fdo#109441]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-iclb:         [PASS][84] -> [SKIP][85] ([i915#5519])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_setmode@basic@pipe-a-vga-1:
    - shard-snb:          NOTRUN -> [FAIL][86] ([i915#5465]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([i915#3555]) +2 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc.html
    - shard-tglb:         NOTRUN -> [SKIP][88] ([i915#3555]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@nouveau_crc@pipe-d-ctx-flip-detection:
    - shard-glk:          NOTRUN -> [SKIP][89] ([fdo#109271]) +66 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@nouveau_crc@pipe-d-ctx-flip-detection.html

  * igt@perf_pmu@rc6-suspend:
    - shard-apl:          [PASS][90] -> [DMESG-WARN][91] ([i915#180])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@perf_pmu@rc6-suspend.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@perf_pmu@rc6-suspend.html

  * igt@prime_nv_pcopy@test3_5:
    - shard-snb:          NOTRUN -> [SKIP][92] ([fdo#109271]) +85 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb4/igt@prime_nv_pcopy@test3_5.html

  * igt@sysfs_clients@busy:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#2994]) +2 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@sysfs_clients@busy.html

  * igt@sysfs_clients@split-25:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([i915#2994]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@sysfs_clients@split-25.html
    - shard-apl:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2994]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@sysfs_clients@split-25.html
    - shard-glk:          NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@sysfs_clients@split-25.html

  
#### Possible fixes ####

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [SKIP][97] ([i915#4525]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][99] ([i915#2842]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [FAIL][101] ([i915#2842]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl8/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-iclb:         [FAIL][103] ([i915#2842]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@gem_exec_fair@basic-pace@vecs0.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@gem_exec_fair@basic-pace@vecs0.html
    - shard-glk:          [FAIL][105] ([i915#2842]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [DMESG-WARN][107] ([i915#5566] / [i915#716]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gen9_exec_parse@allowed-single.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_suspend@debugfs-reader:
    - shard-apl:          [DMESG-WARN][109] ([i915#180]) -> [PASS][110] +3 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@i915_suspend@debugfs-reader.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_legacy@forked-bo@pipe-b:
    - shard-glk:          [DMESG-WARN][111] ([i915#118]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
    - shard-iclb:         [SKIP][113] ([i915#5235]) -> [PASS][114] +2 similar issues
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr@psr2_no_drrs.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-iclb:         [SKIP][117] ([i915#5519]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  
#### Warnings ####

  * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
    - shard-iclb:         [FAIL][119] ([i915#2684]) -> [WARN][120] ([i915#2684])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html

  * igt@kms_content_protection@mei_interface:
    - shard-tglb:         [SKIP][121] ([fdo#109300]) -> [SKIP][122] ([i915#1063])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb3/igt@kms_content_protection@mei_interface.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_content_protection@mei_interface.html
    - shard-iclb:         [SKIP][123] ([fdo#109300]) -> [SKIP][124] ([fdo#109300] / [fdo#111066])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@kms_content_protection@mei_interface.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_content_protection@mei_interface.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-iclb:         [SKIP][125] ([i915#658]) -> [SKIP][126] ([i915#2920])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][127] ([fdo#111068] / [i915#658]) -> [SKIP][128] ([i915#2920])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-iclb:         [SKIP][129] ([i915#2920]) -> [SKIP][130] ([fdo#111068] / [i915#658])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][137], [FAIL][138], [FAIL][139]) ([i915#3002] / [i915#4312])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@runner@aborted.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5072]: https://gitlab.freedesktop.org/drm/intel/issues/5072
  [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6666 -> IGTPW_7852
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12192: 83f5b1665fc067c78ed2d46c585d8c49e57e6b06 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7852: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
  IGT_6666: 1e3ecbaa3c56f4c52c62047707eb4942d3a39c44 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for misc fixes
  2022-09-28 11:23 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-09-28 11:47   ` Juha-Pekka Heikkila
  2022-09-28 17:21     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 17+ messages in thread
From: Juha-Pekka Heikkila @ 2022-09-28 11:47 UTC (permalink / raw)
  To: igt-dev, Vudum, Lakshminarayana

Hi Lakshmi,

These listed failures don't seem to relate to my changes in any way.

/Juha-Pekka

On 28.9.2022 14.23, Patchwork wrote:
> *Patch Details*
> *Series:*	misc fixes
> *URL:*	https://patchwork.freedesktop.org/series/109144/ 
> <https://patchwork.freedesktop.org/series/109144/>
> *State:*	failure
> *Details:* 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html>
> 
> 
>   CI Bug Log - changes from CI_DRM_12192_full -> IGTPW_7852_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with IGTPW_7852_full absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_7852_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_7852/index.html
> 
> 
>     Participating hosts (11 -> 6)
> 
> Missing (5): pig-kbl-iris shard-tglu pig-glk-j5005 pig-skl-6260u shard-rkl
> 
> 
>     Possible new issues
> 
> Here are the unknown changes that may have been introduced in 
> IGTPW_7852_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   *
> 
>     igt@api_intel_allocator@fork-simple-stress:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb2/igt@api_intel_allocator@fork-simple-stress.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@api_intel_allocator@fork-simple-stress.html>
>   *
> 
>     igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html>
>   *
> 
>     igt@nouveau_crc@pipe-b-source-outp-inactive:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> +48 similar issues
>   *
> 
>     igt@prime_nv_test@i915_blt_fill_nv_read:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@prime_nv_test@i915_blt_fill_nv_read.html> +49 similar issues
> 
> 
>     Known issues
> 
> Here are the changes found in IGTPW_7852_full that come from known issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@gem_ccs@block-copy-compressed:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_ccs@block-copy-compressed.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#5325 <https://gitlab.freedesktop.org/drm/intel/issues/5325>)
>   *
> 
>     igt@gem_ctx_persistence@engines-hang@rcs0:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@gem_ctx_persistence@engines-hang@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@gem_ctx_persistence@engines-hang@rcs0.html> (i915#2410 <https://gitlab.freedesktop.org/drm/intel/issues/2410>)
>   *
> 
>     igt@gem_exec_balancer@parallel-bb-first:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) +1 similar issue
>   *
> 
>     igt@gem_exec_capture@capture-recoverable:
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@gem_exec_capture@capture-recoverable.html> (i915#6344 <https://gitlab.freedesktop.org/drm/intel/issues/6344>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_capture@capture-recoverable.html> (i915#6344 <https://gitlab.freedesktop.org/drm/intel/issues/6344>)
> 
>   *
> 
>     igt@gem_exec_fair@basic-none-share@rcs0:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>   *
> 
>     igt@gem_lmem_swapping@heavy-verify-random-ccs:
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>   *
> 
>     igt@gem_mmap_gtt@fault-concurrent-x:
> 
>       o shard-snb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html> (i915#5161 <https://gitlab.freedesktop.org/drm/intel/issues/5161>)
>   *
> 
>     igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue
> 
>   *
> 
>     igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html> (i915#768 <https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue
>   *
> 
>     igt@gem_userptr_blits@input-checking:
> 
>       o shard-apl: NOTRUN -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gem_userptr_blits@input-checking.html> (i915#4991 <https://gitlab.freedesktop.org/drm/intel/issues/4991>)
>   *
> 
>     igt@gen7_exec_parse@basic-allowed:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gen7_exec_parse@basic-allowed.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
>   *
> 
>     igt@gen9_exec_parse@allowed-all:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk6/igt@gen9_exec_parse@allowed-all.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gen9_exec_parse@allowed-all.html> (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>)
>   *
> 
>     igt@i915_pm_dc@dc6-psr:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@i915_pm_dc@dc6-psr.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_dc@dc6-psr.html> (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>   *
> 
>     igt@i915_pm_dc@dc9-dpms:
> 
>       o
> 
>         shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_pm_dc@dc9-dpms.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_pm_dc@dc9-dpms.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@i915_pm_dc@dc9-dpms.html> (i915#4281 <https://gitlab.freedesktop.org/drm/intel/issues/4281>)
> 
>   *
> 
>     igt@i915_selftest@live@gt_heartbeat:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_selftest@live@gt_heartbeat.html> -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> (i915#5334 <https://gitlab.freedesktop.org/drm/intel/issues/5334>)
>   *
> 
>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue
>   *
> 
>     igt@kms_big_fb@x-tiled-8bpp-rotate-270:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> (fdo#110725 <https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
> 
>   *
> 
>     igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +3 similar issues
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
> 
>   *
> 
>     igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +181 similar issues
>   *
> 
>     igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue
>   *
> 
>     igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>   *
> 
>     igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>   *
> 
>     igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +2 similar issues
>   *
> 
>     igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues
>   *
> 
>     igt@kms_chamelium@vga-frame-dump:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_chamelium@vga-frame-dump.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +9 similar issues
>   *
> 
>     igt@kms_chamelium@vga-hpd:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_chamelium@vga-hpd.html> (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues
>   *
> 
>     igt@kms_chamelium@vga-hpd-without-ddc:
> 
>       o
> 
>         shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_chamelium@vga-hpd-without-ddc.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@kms_chamelium@vga-hpd-without-ddc.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_chamelium@vga-hpd-without-ddc.html> (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues
> 
>   *
> 
>     igt@kms_content_protection@atomic:
> 
>       o shard-apl: NOTRUN -> TIMEOUT
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_content_protection@atomic.html> (i915#1319 <https://gitlab.freedesktop.org/drm/intel/issues/1319>)
>   *
> 
>     igt@kms_cursor_crc@cursor-offscreen-512x170:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
>   *
> 
>     igt@kms_cursor_crc@cursor-onscreen-512x512:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
>   *
> 
>     igt@kms_cursor_legacy@cursor-vs-flip@varying-size:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html> (i915#5072 <https://gitlab.freedesktop.org/drm/intel/issues/5072>) +1 similar issue
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
> 
>       o shard-glk: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
>   *
> 
>     igt@kms_cursor_legacy@short-busy-flip-before-cursor:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html> (i915#4103 <https://gitlab.freedesktop.org/drm/intel/issues/4103>)
>   *
> 
>     igt@kms_flip@2x-absolute-wf_vblank-interruptible:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-panning-vs-hang:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1 similar issue
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +4 similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html> (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>)
>   *
> 
>     igt@kms_hdmi_inject@inject-audio:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html> (i915#433 <https://gitlab.freedesktop.org/drm/intel/issues/433>)
>   *
> 
>     igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> 
>       o
> 
>         shard-glk: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> (i915#265 <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> 
>       o
> 
>         shard-apl: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> (i915#265 <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> 
>   *
> 
>     igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html> (i915#1888 <https://gitlab.freedesktop.org/drm/intel/issues/1888>)
>   *
> 
>     igt@kms_prime@d3hot:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_prime@d3hot.html> (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524>)
>   *
> 
>     igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>   *
> 
>     igt@kms_psr2_su@page_flip-nv12:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html> (i915#1911 <https://gitlab.freedesktop.org/drm/intel/issues/1911>)
>   *
> 
>     igt@kms_psr@psr2_sprite_blt:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_psr@psr2_sprite_blt.html> (i915#132 <https://gitlab.freedesktop.org/drm/intel/issues/132> / i915#3467 <https://gitlab.freedesktop.org/drm/intel/issues/3467>)
> 
>   *
> 
>     igt@kms_psr@psr2_sprite_mmap_gtt:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue
>   *
> 
>     igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>   *
> 
>     igt@kms_setmode@basic@pipe-a-vga-1:
> 
>       o shard-snb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 similar issue
>   *
> 
>     igt@kms_setmode@invalid-clone-single-crtc:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2 similar issues
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_setmode@invalid-clone-single-crtc.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar issue
> 
>   *
> 
>     igt@nouveau_crc@pipe-d-ctx-flip-detection:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +66 similar issues
>   *
> 
>     igt@perf_pmu@rc6-suspend:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@perf_pmu@rc6-suspend.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@perf_pmu@rc6-suspend.html> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>   *
> 
>     igt@prime_nv_pcopy@test3_5:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb4/igt@prime_nv_pcopy@test3_5.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +85 similar issues
>   *
> 
>     igt@sysfs_clients@busy:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@sysfs_clients@busy.html> (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +2 similar issues
>   *
> 
>     igt@sysfs_clients@split-25:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@sysfs_clients@split-25.html> (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@sysfs_clients@split-25.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@sysfs_clients@split-25.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
> 
> 
>         Possible fixes
> 
>   *
> 
>     igt@gem_exec_balancer@parallel-keep-in-fence:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html>
>   *
> 
>     igt@gem_exec_fair@basic-flow@rcs0:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html>
>   *
> 
>     igt@gem_exec_fair@basic-pace-solo@rcs0:
> 
>       o shard-apl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl8/igt@gem_exec_fair@basic-pace-solo@rcs0.html>
>   *
> 
>     igt@gem_exec_fair@basic-pace@vecs0:
> 
>       o
> 
>         shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@gem_exec_fair@basic-pace@vecs0.html>
> 
>       o
> 
>         shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@gem_exec_fair@basic-pace@vecs0.html>
> 
>   *
> 
>     igt@gen9_exec_parse@allowed-single:
> 
>       o shard-apl: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gen9_exec_parse@allowed-single.html> (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gen9_exec_parse@allowed-single.html>
>   *
> 
>     igt@i915_suspend@debugfs-reader:
> 
>       o shard-apl: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@i915_suspend@debugfs-reader.html> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_suspend@debugfs-reader.html> +3 similar issues
>   *
> 
>     igt@kms_cursor_legacy@forked-bo@pipe-b:
> 
>       o shard-glk: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html> (i915#118 <https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html>
>   *
> 
>     igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> +2 similar issues
>   *
> 
>     igt@kms_psr@psr2_no_drrs:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr@psr2_no_drrs.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> +1 similar issue
>   *
> 
>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> 
> 
>         Warnings
> 
>   *
> 
>     igt@i915_pm_rc6_residency@rc6-idle@vcs0:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>)
>   *
> 
>     igt@kms_content_protection@mei_interface:
> 
>       o
> 
>         shard-tglb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb3/igt@kms_content_protection@mei_interface.html> (fdo#109300 <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_content_protection@mei_interface.html> (i915#1063 <https://gitlab.freedesktop.org/drm/intel/issues/1063>)
> 
>       o
> 
>         shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@kms_content_protection@mei_interface.html> (fdo#109300 <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_content_protection@mei_interface.html> (fdo#109300 <https://bugs.freedesktop.org/show_bug.cgi?id=109300> / fdo#111066 <https://bugs.freedesktop.org/show_bug.cgi?id=111066>)
> 
>   *
> 
>     igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@cursor-plane-update-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr2_sf@cursor-plane-update-sf.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>   *
> 
>     igt@runner@aborted:
> 
>       o shard-apl: (FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl7/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@runner@aborted.html>) (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@runner@aborted.html>) (i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>)
> 
> 
>     Build changes
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_6666 -> IGTPW_7852
>   * Piglit: piglit_4509 -> None
> 
> CI-20190529: 20190529
> CI_DRM_12192: 83f5b1665fc067c78ed2d46c585d8c49e57e6b06 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_7852: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
> IGT_6666: 1e3ecbaa3c56f4c52c62047707eb4942d3a39c44 @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> git://anongit.freedesktop.org/piglit
> 


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

* [igt-dev] ✗ Fi.CI.IGT: failure for misc fixes
  2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
                   ` (5 preceding siblings ...)
  2022-09-28 11:23 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-09-28 16:14 ` Patchwork
  2022-09-28 16:58 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2022-09-28 16:14 UTC (permalink / raw)
  To: Juha-Pekka Heikkila; +Cc: igt-dev

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

== Series Details ==

Series: misc fixes
URL   : https://patchwork.freedesktop.org/series/109144/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12192_full -> IGTPW_7852_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7852_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7852_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_7852/index.html

Participating hosts (11 -> 6)
------------------------------

  Missing    (5): pig-kbl-iris shard-tglu pig-glk-j5005 pig-skl-6260u shard-rkl 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@api_intel_allocator@fork-simple-stress:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb2/igt@api_intel_allocator@fork-simple-stress.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@api_intel_allocator@fork-simple-stress.html

  * igt@nouveau_crc@pipe-a-ctx-flip-detection:
    - shard-iclb:         NOTRUN -> [SKIP][3] +47 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@nouveau_crc@pipe-a-ctx-flip-detection.html

  * igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name:
    - shard-tglb:         NOTRUN -> [SKIP][4] +46 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ccs@block-copy-compressed:
    - shard-tglb:         NOTRUN -> [SKIP][5] ([i915#3555] / [i915#5325])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ctx_persistence@engines-hang@rcs0:
    - shard-apl:          [PASS][6] -> [FAIL][7] ([i915#2410])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@gem_ctx_persistence@engines-hang@rcs0.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@gem_ctx_persistence@engines-hang@rcs0.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [PASS][8] -> [SKIP][9] ([i915#4525]) +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#6344])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@gem_exec_capture@capture-recoverable.html
    - shard-iclb:         NOTRUN -> [SKIP][11] ([i915#6344])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-glk:          [PASS][12] -> [FAIL][13] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][15] ([i915#4613])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-glk:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][17] ([i915#4613])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_mmap_gtt@fault-concurrent-x:
    - shard-snb:          [PASS][18] -> [INCOMPLETE][19] ([i915#5161])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([i915#4270])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
    - shard-tglb:         NOTRUN -> [SKIP][21] ([i915#4270]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([i915#768]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][23] ([i915#4991])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gem_userptr_blits@input-checking.html

  * igt@gen7_exec_parse@basic-allowed:
    - shard-tglb:         NOTRUN -> [SKIP][24] ([fdo#109289])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gen7_exec_parse@basic-allowed.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [PASS][25] -> [DMESG-WARN][26] ([i915#5566] / [i915#716])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk6/igt@gen9_exec_parse@allowed-all.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][27] -> [FAIL][28] ([i915#3989] / [i915#454])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [PASS][29] -> [SKIP][30] ([fdo#109271])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_pm_dc@dc9-dpms.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
    - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#4281])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_selftest@live@gt_heartbeat:
    - shard-apl:          [PASS][32] -> [DMESG-FAIL][33] ([i915#5334])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_selftest@live@gt_heartbeat.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([i915#5286]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#110725] / [fdo#111614])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
    - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#111614])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([fdo#109278]) +3 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#6095])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][39] ([fdo#109271]) +181 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#111615] / [i915#3689]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
    - shard-iclb:         NOTRUN -> [SKIP][42] ([fdo#109278] / [i915#3886])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([i915#3689] / [i915#6095])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#3689]) +2 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3886]) +5 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_chamelium@vga-frame-dump:
    - shard-apl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_chamelium@vga-frame-dump.html

  * igt@kms_chamelium@vga-hpd:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_chamelium@vga-hpd.html

  * igt@kms_chamelium@vga-hpd-without-ddc:
    - shard-snb:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_chamelium@vga-hpd-without-ddc.html
    - shard-glk:          NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@kms_chamelium@vga-hpd-without-ddc.html
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_chamelium@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic:
    - shard-apl:          NOTRUN -> [TIMEOUT][51] ([i915#1319])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_content_protection@atomic.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([fdo#109279] / [i915#3359])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#3359])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@cursor-vs-flip@varying-size:
    - shard-iclb:         [PASS][54] -> [FAIL][55] ([i915#5072]) +1 similar issue
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([i915#4103])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109274])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][59] -> [FAIL][60] ([i915#79])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
    - shard-apl:          [PASS][62] -> [FAIL][63] ([i915#79])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([i915#2672]) +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109280]) +4 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#109280] / [fdo#111825]) +11 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([i915#6497])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][69] -> [SKIP][70] ([i915#433])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][71] ([i915#265])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
    - shard-apl:          NOTRUN -> [FAIL][72] ([i915#265])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1:
    - shard-glk:          [PASS][73] -> [FAIL][74] ([i915#1888])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html

  * igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2:
    - shard-glk:          [PASS][75] -> [FAIL][76] ([i915#6970])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html

  * igt@kms_prime@d3hot:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#6524])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#1911])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109441])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
    - shard-tglb:         NOTRUN -> [FAIL][81] ([i915#132] / [i915#3467])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][82] -> [SKIP][83] ([fdo#109441]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-iclb:         [PASS][84] -> [SKIP][85] ([i915#5519])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_setmode@basic@pipe-a-vga-1:
    - shard-snb:          NOTRUN -> [FAIL][86] ([i915#5465]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([i915#3555]) +2 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc.html
    - shard-tglb:         NOTRUN -> [SKIP][88] ([i915#3555]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@nouveau_crc@pipe-b-source-outp-inactive:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#6971]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html

  * igt@nouveau_crc@pipe-d-ctx-flip-detection:
    - shard-glk:          NOTRUN -> [SKIP][90] ([fdo#109271]) +66 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@nouveau_crc@pipe-d-ctx-flip-detection.html

  * igt@perf_pmu@rc6-suspend:
    - shard-apl:          [PASS][91] -> [DMESG-WARN][92] ([i915#180])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@perf_pmu@rc6-suspend.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@perf_pmu@rc6-suspend.html

  * igt@prime_nv_pcopy@test3_5:
    - shard-snb:          NOTRUN -> [SKIP][93] ([fdo#109271]) +85 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb4/igt@prime_nv_pcopy@test3_5.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([i915#6971]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@prime_nv_test@i915_blt_fill_nv_read.html

  * igt@sysfs_clients@busy:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([i915#2994]) +2 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@sysfs_clients@busy.html

  * igt@sysfs_clients@split-25:
    - shard-iclb:         NOTRUN -> [SKIP][96] ([i915#2994]) +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@sysfs_clients@split-25.html
    - shard-apl:          NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#2994]) +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@sysfs_clients@split-25.html
    - shard-glk:          NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2994])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@sysfs_clients@split-25.html

  
#### Possible fixes ####

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [SKIP][99] ([i915#4525]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][101] ([i915#2842]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [FAIL][103] ([i915#2842]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl8/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-iclb:         [FAIL][105] ([i915#2842]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@gem_exec_fair@basic-pace@vecs0.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@gem_exec_fair@basic-pace@vecs0.html
    - shard-glk:          [FAIL][107] ([i915#2842]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [DMESG-WARN][109] ([i915#5566] / [i915#716]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gen9_exec_parse@allowed-single.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_suspend@debugfs-reader:
    - shard-apl:          [DMESG-WARN][111] ([i915#180]) -> [PASS][112] +3 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@i915_suspend@debugfs-reader.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_legacy@forked-bo@pipe-b:
    - shard-glk:          [DMESG-WARN][113] ([i915#118]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
    - shard-iclb:         [SKIP][115] ([i915#5235]) -> [PASS][116] +2 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [SKIP][117] ([fdo#109441]) -> [PASS][118] +1 similar issue
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr@psr2_no_drrs.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-iclb:         [SKIP][119] ([i915#5519]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  
#### Warnings ####

  * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
    - shard-iclb:         [FAIL][121] ([i915#2684]) -> [WARN][122] ([i915#2684])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html

  * igt@kms_content_protection@mei_interface:
    - shard-tglb:         [SKIP][123] ([fdo#109300]) -> [SKIP][124] ([i915#1063])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb3/igt@kms_content_protection@mei_interface.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_content_protection@mei_interface.html
    - shard-iclb:         [SKIP][125] ([fdo#109300]) -> [SKIP][126] ([fdo#109300] / [fdo#111066])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@kms_content_protection@mei_interface.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_content_protection@mei_interface.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-iclb:         [SKIP][127] ([i915#658]) -> [SKIP][128] ([i915#2920])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][129] ([fdo#111068] / [i915#658]) -> [SKIP][130] ([i915#2920])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-iclb:         [SKIP][131] ([i915#2920]) -> [SKIP][132] ([fdo#111068] / [i915#658])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][139], [FAIL][140], [FAIL][141]) ([i915#3002] / [i915#4312])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl7/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@runner@aborted.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5072]: https://gitlab.freedesktop.org/drm/intel/issues/5072
  [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6970]: https://gitlab.freedesktop.org/drm/intel/issues/6970
  [i915#6971]: https://gitlab.freedesktop.org/drm/intel/issues/6971
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6666 -> IGTPW_7852
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12192: 83f5b1665fc067c78ed2d46c585d8c49e57e6b06 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7852: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
  IGT_6666: 1e3ecbaa3c56f4c52c62047707eb4942d3a39c44 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for misc fixes
  2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
                   ` (6 preceding siblings ...)
  2022-09-28 16:14 ` Patchwork
@ 2022-09-28 16:58 ` Patchwork
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2022-09-28 16:58 UTC (permalink / raw)
  To: Juha-Pekka Heikkila; +Cc: igt-dev

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

== Series Details ==

Series: misc fixes
URL   : https://patchwork.freedesktop.org/series/109144/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12192_full -> IGTPW_7852_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (11 -> 6)
------------------------------

  Missing    (5): pig-kbl-iris shard-tglu pig-glk-j5005 pig-skl-6260u shard-rkl 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_allocator@fork-simple-stress:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2] ([i915#6453])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb2/igt@api_intel_allocator@fork-simple-stress.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@api_intel_allocator@fork-simple-stress.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-tglb:         NOTRUN -> [SKIP][3] ([i915#3555] / [i915#5325])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ctx_persistence@engines-hang@rcs0:
    - shard-apl:          [PASS][4] -> [FAIL][5] ([i915#2410])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@gem_ctx_persistence@engines-hang@rcs0.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@gem_ctx_persistence@engines-hang@rcs0.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([i915#4525]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-tglb:         NOTRUN -> [SKIP][8] ([i915#6344])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@gem_exec_capture@capture-recoverable.html
    - shard-iclb:         NOTRUN -> [SKIP][9] ([i915#6344])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-glk:          [PASS][10] -> [FAIL][11] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][13] ([i915#4613])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-glk:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][15] ([i915#4613])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_mmap_gtt@fault-concurrent-x:
    - shard-snb:          [PASS][16] -> [INCOMPLETE][17] ([i915#5161])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([i915#4270])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
    - shard-tglb:         NOTRUN -> [SKIP][19] ([i915#4270]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([i915#768]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][21] ([i915#4991])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gem_userptr_blits@input-checking.html

  * igt@gen7_exec_parse@basic-allowed:
    - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#109289])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gen7_exec_parse@basic-allowed.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [PASS][23] -> [DMESG-WARN][24] ([i915#5566] / [i915#716])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk6/igt@gen9_exec_parse@allowed-all.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][25] -> [FAIL][26] ([i915#3989] / [i915#454])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [PASS][27] -> [SKIP][28] ([fdo#109271])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_pm_dc@dc9-dpms.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
    - shard-tglb:         NOTRUN -> [SKIP][29] ([i915#4281])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_selftest@live@gt_heartbeat:
    - shard-apl:          [PASS][30] -> [DMESG-FAIL][31] ([i915#5334])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_selftest@live@gt_heartbeat.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#5286]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][33] ([fdo#110725] / [fdo#111614])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
    - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#111614])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#109278]) +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
    - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#6095])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][37] ([fdo#109271]) +181 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#111615] / [i915#3689]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#3689] / [i915#6095])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#3689]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +5 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_chamelium@vga-frame-dump:
    - shard-apl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_chamelium@vga-frame-dump.html

  * igt@kms_chamelium@vga-hpd:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_chamelium@vga-hpd.html

  * igt@kms_chamelium@vga-hpd-without-ddc:
    - shard-snb:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_chamelium@vga-hpd-without-ddc.html
    - shard-glk:          NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@kms_chamelium@vga-hpd-without-ddc.html
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_chamelium@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic:
    - shard-apl:          NOTRUN -> [TIMEOUT][49] ([i915#1319])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_content_protection@atomic.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([fdo#109279] / [i915#3359])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3359])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@cursor-vs-flip@varying-size:
    - shard-iclb:         [PASS][52] -> [FAIL][53] ([i915#5072]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#4103])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#109274])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][57] -> [FAIL][58] ([i915#79])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
    - shard-apl:          [PASS][60] -> [FAIL][61] ([i915#79])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([i915#2672]) +2 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109280]) +4 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([fdo#109280] / [fdo#111825]) +11 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#6497])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][67] -> [SKIP][68] ([i915#433])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][69] ([i915#265])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
    - shard-apl:          NOTRUN -> [FAIL][70] ([i915#265])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1:
    - shard-glk:          [PASS][71] -> [FAIL][72] ([i915#1888])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html

  * igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2:
    - shard-glk:          [PASS][73] -> [FAIL][74] ([i915#6970])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html

  * igt@kms_prime@d3hot:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([i915#6524])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#1911])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109441])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
    - shard-tglb:         NOTRUN -> [FAIL][79] ([i915#132] / [i915#3467])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][80] -> [SKIP][81] ([fdo#109441]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-iclb:         [PASS][82] -> [SKIP][83] ([i915#5519])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_setmode@basic@pipe-a-vga-1:
    - shard-snb:          NOTRUN -> [FAIL][84] ([i915#5465]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([i915#3555]) +2 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc.html
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#3555]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@nouveau_crc@pipe-b-source-outp-inactive:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([i915#6971]) +48 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html

  * igt@nouveau_crc@pipe-d-ctx-flip-detection:
    - shard-glk:          NOTRUN -> [SKIP][88] ([fdo#109271]) +66 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@nouveau_crc@pipe-d-ctx-flip-detection.html

  * igt@perf_pmu@rc6-suspend:
    - shard-apl:          [PASS][89] -> [DMESG-WARN][90] ([i915#180])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@perf_pmu@rc6-suspend.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@perf_pmu@rc6-suspend.html

  * igt@prime_nv_pcopy@test3_5:
    - shard-snb:          NOTRUN -> [SKIP][91] ([fdo#109271]) +85 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb4/igt@prime_nv_pcopy@test3_5.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-iclb:         NOTRUN -> [SKIP][92] ([i915#6971]) +49 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@prime_nv_test@i915_blt_fill_nv_read.html

  * igt@sysfs_clients@busy:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#2994]) +2 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@sysfs_clients@busy.html

  * igt@sysfs_clients@split-25:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([i915#2994]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@sysfs_clients@split-25.html
    - shard-apl:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2994]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@sysfs_clients@split-25.html
    - shard-glk:          NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@sysfs_clients@split-25.html

  
#### Possible fixes ####

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [SKIP][97] ([i915#4525]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][99] ([i915#2842]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [FAIL][101] ([i915#2842]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl8/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-iclb:         [FAIL][103] ([i915#2842]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@gem_exec_fair@basic-pace@vecs0.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@gem_exec_fair@basic-pace@vecs0.html
    - shard-glk:          [FAIL][105] ([i915#2842]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [DMESG-WARN][107] ([i915#5566] / [i915#716]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gen9_exec_parse@allowed-single.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_suspend@debugfs-reader:
    - shard-apl:          [DMESG-WARN][109] ([i915#180]) -> [PASS][110] +3 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@i915_suspend@debugfs-reader.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_legacy@forked-bo@pipe-b:
    - shard-glk:          [DMESG-WARN][111] ([i915#118]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
    - shard-iclb:         [SKIP][113] ([i915#5235]) -> [PASS][114] +2 similar issues
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr@psr2_no_drrs.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-iclb:         [SKIP][117] ([i915#5519]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  
#### Warnings ####

  * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
    - shard-iclb:         [FAIL][119] ([i915#2684]) -> [WARN][120] ([i915#2684])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html

  * igt@kms_content_protection@mei_interface:
    - shard-tglb:         [SKIP][121] ([fdo#109300]) -> [SKIP][122] ([i915#1063])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb3/igt@kms_content_protection@mei_interface.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_content_protection@mei_interface.html
    - shard-iclb:         [SKIP][123] ([fdo#109300]) -> [SKIP][124] ([fdo#109300] / [fdo#111066])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@kms_content_protection@mei_interface.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_content_protection@mei_interface.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-iclb:         [SKIP][125] ([i915#658]) -> [SKIP][126] ([i915#2920])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][127] ([fdo#111068] / [i915#658]) -> [SKIP][128] ([i915#2920])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-iclb:         [SKIP][129] ([i915#2920]) -> [SKIP][130] ([fdo#111068] / [i915#658])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][137], [FAIL][138], [FAIL][139]) ([i915#3002] / [i915#4312])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@runner@aborted.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5072]: https://gitlab.freedesktop.org/drm/intel/issues/5072
  [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6453]: https://gitlab.freedesktop.org/drm/intel/issues/6453
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6970]: https://gitlab.freedesktop.org/drm/intel/issues/6970
  [i915#6971]: https://gitlab.freedesktop.org/drm/intel/issues/6971
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6666 -> IGTPW_7852
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12192: 83f5b1665fc067c78ed2d46c585d8c49e57e6b06 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7852: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
  IGT_6666: 1e3ecbaa3c56f4c52c62047707eb4942d3a39c44 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for misc fixes
  2022-09-28 11:47   ` Juha-Pekka Heikkila
@ 2022-09-28 17:21     ` Vudum, Lakshminarayana
  2022-09-28 19:25       ` Juha-Pekka Heikkila
  0 siblings, 1 reply; 17+ messages in thread
From: Vudum, Lakshminarayana @ 2022-09-28 17:21 UTC (permalink / raw)
  To: juhapekka.heikkila, igt-dev

Filed a couple of new issues and re-reported.
https://gitlab.freedesktop.org/drm/intel/-/issues/6971
igt@prime_nv_test@i915_blt_fill_nv_read|igt@nouveau_crc@pipe-b-source-outp-inactive - skip - Cannot execute /opt/igt/libexec/igt-gpu-tools.*, watchdogs from exit handler!, SKIP

https://gitlab.freedesktop.org/drm/intel/-/issues/6970
igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2 - fail - Failed assertion: write(pipe_crc->ctl_fd, src, strlen(src)) == strlen(src)

Thanks,
Lakshmi.

-----Original Message-----
From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> 
Sent: Wednesday, September 28, 2022 4:47 AM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for misc fixes

Hi Lakshmi,

These listed failures don't seem to relate to my changes in any way.

/Juha-Pekka

On 28.9.2022 14.23, Patchwork wrote:
> *Patch Details*
> *Series:*	misc fixes
> *URL:*	https://patchwork.freedesktop.org/series/109144/ 
> <https://patchwork.freedesktop.org/series/109144/>
> *State:*	failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html>
> 
> 
>   CI Bug Log - changes from CI_DRM_12192_full -> IGTPW_7852_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with IGTPW_7852_full absolutely need to 
> be verified manually.
> 
> If you think the reported changes have nothing to do with the changes 
> introduced in IGTPW_7852_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_7852/index.html
> 
> 
>     Participating hosts (11 -> 6)
> 
> Missing (5): pig-kbl-iris shard-tglu pig-glk-j5005 pig-skl-6260u 
> shard-rkl
> 
> 
>     Possible new issues
> 
> Here are the unknown changes that may have been introduced in
> IGTPW_7852_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   *
> 
>     igt@api_intel_allocator@fork-simple-stress:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb2/igt@api_intel_allocator@fork-simple-stress.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@api_intel_allocator@fork-simple-stress.html>
>   *
> 
>     igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html>
>   *
> 
>     igt@nouveau_crc@pipe-b-source-outp-inactive:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> +48 similar issues
>   *
> 
>     igt@prime_nv_test@i915_blt_fill_nv_read:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@p
> rime_nv_test@i915_blt_fill_nv_read.html> +49 similar issues
> 
> 
>     Known issues
> 
> Here are the changes found in IGTPW_7852_full that come from known issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@gem_ccs@block-copy-compressed:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_ccs@block-copy-compressed.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#5325 <https://gitlab.freedesktop.org/drm/intel/issues/5325>)
>   *
> 
>     igt@gem_ctx_persistence@engines-hang@rcs0:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@gem_ctx_persistence@engines-hang@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@gem_ctx_persistence@engines-hang@rcs0.html> (i915#2410 <https://gitlab.freedesktop.org/drm/intel/issues/2410>)
>   *
> 
>     igt@gem_exec_balancer@parallel-bb-first:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) +1 similar issue
>   *
> 
>     igt@gem_exec_capture@capture-recoverable:
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@g
> em_exec_capture@capture-recoverable.html> (i915#6344 
> <https://gitlab.freedesktop.org/drm/intel/issues/6344>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@g
> em_exec_capture@capture-recoverable.html> (i915#6344 
> <https://gitlab.freedesktop.org/drm/intel/issues/6344>)
> 
>   *
> 
>     igt@gem_exec_fair@basic-none-share@rcs0:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>   *
> 
>     igt@gem_lmem_swapping@heavy-verify-random-ccs:
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@ge
> m_lmem_swapping@heavy-verify-random-ccs.html> (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar 
> issue
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@g
> em_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@ge
> m_lmem_swapping@heavy-verify-random-ccs.html> (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@g
> em_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>   *
> 
>     igt@gem_mmap_gtt@fault-concurrent-x:
> 
>       o shard-snb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html> (i915#5161 <https://gitlab.freedesktop.org/drm/intel/issues/5161>)
>   *
> 
>     igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@g
> em_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> 
> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@g
> em_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> 
> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 
> similar issue
> 
>   *
> 
>     igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html> (i915#768 <https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue
>   *
> 
>     igt@gem_userptr_blits@input-checking:
> 
>       o shard-apl: NOTRUN -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gem_userptr_blits@input-checking.html> (i915#4991 <https://gitlab.freedesktop.org/drm/intel/issues/4991>)
>   *
> 
>     igt@gen7_exec_parse@basic-allowed:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gen7_exec_parse@basic-allowed.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
>   *
> 
>     igt@gen9_exec_parse@allowed-all:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk6/igt@gen9_exec_parse@allowed-all.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gen9_exec_parse@allowed-all.html> (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>)
>   *
> 
>     igt@i915_pm_dc@dc6-psr:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@i915_pm_dc@dc6-psr.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_dc@dc6-psr.html> (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>   *
> 
>     igt@i915_pm_dc@dc9-dpms:
> 
>       o
> 
>         shard-apl: PASS
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@
> i915_pm_dc@dc9-dpms.html> -> SKIP 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i9
> 15_pm_dc@dc9-dpms.html> (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@i
> 915_pm_dc@dc9-dpms.html> (i915#4281 
> <https://gitlab.freedesktop.org/drm/intel/issues/4281>)
> 
>   *
> 
>     igt@i915_selftest@live@gt_heartbeat:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_selftest@live@gt_heartbeat.html> -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> (i915#5334 <https://gitlab.freedesktop.org/drm/intel/issues/5334>)
>   *
> 
>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue
>   *
> 
>     igt@kms_big_fb@x-tiled-8bpp-rotate-270:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@k
> ms_big_fb@x-tiled-8bpp-rotate-270.html> (fdo#110725 
> <https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614 
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@k
> ms_big_fb@x-tiled-8bpp-rotate-270.html> (fdo#111614 
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
> 
>   *
> 
>     igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@k
> ms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (fdo#109278 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +3 similar 
> issues
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@k
> ms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095 
> <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
> 
>   *
> 
>     igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +181 similar issues
>   *
> 
>     igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue
>   *
> 
>     igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@km
> s_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> 
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / 
> i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@k
> ms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> 
> (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278> / 
> i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>   *
> 
>     igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>   *
> 
>     igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +2 similar issues
>   *
> 
>     igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues
>   *
> 
>     igt@kms_chamelium@vga-frame-dump:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_chamelium@vga-frame-dump.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +9 similar issues
>   *
> 
>     igt@kms_chamelium@vga-hpd:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_chamelium@vga-hpd.html> (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues
>   *
> 
>     igt@kms_chamelium@vga-hpd-without-ddc:
> 
>       o
> 
>         shard-snb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@km
> s_chamelium@vga-hpd-without-ddc.html> (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar 
> issues
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@km
> s_chamelium@vga-hpd-without-ddc.html> (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar 
> issues
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@k
> ms_chamelium@vga-hpd-without-ddc.html> (fdo#109284 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827 
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar 
> issues
> 
>   *
> 
>     igt@kms_content_protection@atomic:
> 
>       o shard-apl: NOTRUN -> TIMEOUT
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_content_protection@atomic.html> (i915#1319 <https://gitlab.freedesktop.org/drm/intel/issues/1319>)
>   *
> 
>     igt@kms_cursor_crc@cursor-offscreen-512x170:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
>   *
> 
>     igt@kms_cursor_crc@cursor-onscreen-512x512:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
>   *
> 
>     igt@kms_cursor_legacy@cursor-vs-flip@varying-size:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html> (i915#5072 <https://gitlab.freedesktop.org/drm/intel/issues/5072>) +1 similar issue
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
> 
>       o shard-glk: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
>   *
> 
>     igt@kms_cursor_legacy@short-busy-flip-before-cursor:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html> (i915#4103 <https://gitlab.freedesktop.org/drm/intel/issues/4103>)
>   *
> 
>     igt@kms_flip@2x-absolute-wf_vblank-interruptible:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-panning-vs-hang:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1 similar issue
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +4 similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html> (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>)
>   *
> 
>     igt@kms_hdmi_inject@inject-audio:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html> (i915#433 <https://gitlab.freedesktop.org/drm/intel/issues/433>)
>   *
> 
>     igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> 
>       o
> 
>         shard-glk: NOTRUN -> FAIL
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@km
> s_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> (i915#265 
> <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> 
>       o
> 
>         shard-apl: NOTRUN -> FAIL
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@km
> s_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> (i915#265 
> <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> 
>   *
> 
>     igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html> (i915#1888 <https://gitlab.freedesktop.org/drm/intel/issues/1888>)
>   *
> 
>     igt@kms_prime@d3hot:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_prime@d3hot.html> (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524>)
>   *
> 
>     igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>   *
> 
>     igt@kms_psr2_su@page_flip-nv12:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html> (i915#1911 <https://gitlab.freedesktop.org/drm/intel/issues/1911>)
>   *
> 
>     igt@kms_psr@psr2_sprite_blt:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@k
> ms_psr@psr2_sprite_blt.html> (fdo#109441 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> FAIL
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@k
> ms_psr@psr2_sprite_blt.html> (i915#132 
> <https://gitlab.freedesktop.org/drm/intel/issues/132> / i915#3467 
> <https://gitlab.freedesktop.org/drm/intel/issues/3467>)
> 
>   *
> 
>     igt@kms_psr@psr2_sprite_mmap_gtt:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue
>   *
> 
>     igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>   *
> 
>     igt@kms_setmode@basic@pipe-a-vga-1:
> 
>       o shard-snb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 similar issue
>   *
> 
>     igt@kms_setmode@invalid-clone-single-crtc:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@k
> ms_setmode@invalid-clone-single-crtc.html> (i915#3555 
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2 similar 
> issues
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@k
> ms_setmode@invalid-clone-single-crtc.html> (i915#3555 
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar 
> issue
> 
>   *
> 
>     igt@nouveau_crc@pipe-d-ctx-flip-detection:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +66 similar issues
>   *
> 
>     igt@perf_pmu@rc6-suspend:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@perf_pmu@rc6-suspend.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@perf_pmu@rc6-suspend.html> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>   *
> 
>     igt@prime_nv_pcopy@test3_5:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb4/igt@prime_nv_pcopy@test3_5.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +85 similar issues
>   *
> 
>     igt@sysfs_clients@busy:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@sysfs_clients@busy.html> (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +2 similar issues
>   *
> 
>     igt@sysfs_clients@split-25:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@s
> ysfs_clients@split-25.html> (i915#2994 
> <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar 
> issue
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@sy
> sfs_clients@split-25.html> (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994 
> <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar 
> issue
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@sy
> sfs_clients@split-25.html> (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994 
> <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
> 
> 
>         Possible fixes
> 
>   *
> 
>     igt@gem_exec_balancer@parallel-keep-in-fence:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html>
>   *
> 
>     igt@gem_exec_fair@basic-flow@rcs0:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html>
>   *
> 
>     igt@gem_exec_fair@basic-pace-solo@rcs0:
> 
>       o shard-apl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl8/igt@gem_exec_fair@basic-pace-solo@rcs0.html>
>   *
> 
>     igt@gem_exec_fair@basic-pace@vecs0:
> 
>       o
> 
>         shard-iclb: FAIL
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt
> @gem_exec_fair@basic-pace@vecs0.html> (i915#2842 
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@g
> em_exec_fair@basic-pace@vecs0.html>
> 
>       o
> 
>         shard-glk: FAIL
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@
> gem_exec_fair@basic-pace@vecs0.html> (i915#2842 
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@ge
> m_exec_fair@basic-pace@vecs0.html>
> 
>   *
> 
>     igt@gen9_exec_parse@allowed-single:
> 
>       o shard-apl: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gen9_exec_parse@allowed-single.html> (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gen9_exec_parse@allowed-single.html>
>   *
> 
>     igt@i915_suspend@debugfs-reader:
> 
>       o shard-apl: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@i915_suspend@debugfs-reader.html> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_suspend@debugfs-reader.html> +3 similar issues
>   *
> 
>     igt@kms_cursor_legacy@forked-bo@pipe-b:
> 
>       o shard-glk: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html> (i915#118 <https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html>
>   *
> 
>     igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> +2 similar issues
>   *
> 
>     igt@kms_psr@psr2_no_drrs:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr@psr2_no_drrs.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> +1 similar issue
>   *
> 
>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> 
>       o shard-iclb: SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt
> @kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519 
> <https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@k
> ms_psr_stress_test@flip-primary-invalidate-overlay.html>
> 
> 
>         Warnings
> 
>   *
> 
>     igt@i915_pm_rc6_residency@rc6-idle@vcs0:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>)
>   *
> 
>     igt@kms_content_protection@mei_interface:
> 
>       o
> 
>         shard-tglb: SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb3/igt
> @kms_content_protection@mei_interface.html> (fdo#109300 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) -> SKIP 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@k
> ms_content_protection@mei_interface.html> (i915#1063 
> <https://gitlab.freedesktop.org/drm/intel/issues/1063>)
> 
>       o
> 
>         shard-iclb: SKIP
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt
> @kms_content_protection@mei_interface.html> (fdo#109300 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) -> SKIP 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@k
> ms_content_protection@mei_interface.html> (fdo#109300 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109300> / fdo#111066 
> <https://bugs.freedesktop.org/show_bug.cgi?id=111066>)
> 
>   *
> 
>     igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@cursor-plane-update-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr2_sf@cursor-plane-update-sf.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>   *
> 
>     igt@runner@aborted:
> 
>       o shard-apl: (FAIL
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@
> runner@aborted.html>, FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl7/igt@
> runner@aborted.html>, FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@
> runner@aborted.html>, FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@
> runner@aborted.html>, FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@
> runner@aborted.html>, FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@
> runner@aborted.html>) (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180 
> <https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002 
> <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312 
> <https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@ru
> nner@aborted.html>, FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@ru
> nner@aborted.html>, FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@ru
> nner@aborted.html>) (i915#3002 
> <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312 
> <https://gitlab.freedesktop.org/drm/intel/issues/4312>)
> 
> 
>     Build changes
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_6666 -> IGTPW_7852
>   * Piglit: piglit_4509 -> None
> 
> CI-20190529: 20190529
> CI_DRM_12192: 83f5b1665fc067c78ed2d46c585d8c49e57e6b06 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_7852: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
> IGT_6666: 1e3ecbaa3c56f4c52c62047707eb4942d3a39c44 @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> git://anongit.freedesktop.org/piglit
> 


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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for misc fixes
  2022-09-28 17:21     ` Vudum, Lakshminarayana
@ 2022-09-28 19:25       ` Juha-Pekka Heikkila
  0 siblings, 0 replies; 17+ messages in thread
From: Juha-Pekka Heikkila @ 2022-09-28 19:25 UTC (permalink / raw)
  To: Vudum, Lakshminarayana, igt-dev

Thanks for the help Lakshmi. Much appreciated.

/Juha-Pekka

On 28.9.2022 20.21, Vudum, Lakshminarayana wrote:
> Filed a couple of new issues and re-reported.
> https://gitlab.freedesktop.org/drm/intel/-/issues/6971
> igt@prime_nv_test@i915_blt_fill_nv_read|igt@nouveau_crc@pipe-b-source-outp-inactive - skip - Cannot execute /opt/igt/libexec/igt-gpu-tools.*, watchdogs from exit handler!, SKIP
> 
> https://gitlab.freedesktop.org/drm/intel/-/issues/6970
> igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2 - fail - Failed assertion: write(pipe_crc->ctl_fd, src, strlen(src)) == strlen(src)
> 
> Thanks,
> Lakshmi.
> 
> -----Original Message-----
> From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Sent: Wednesday, September 28, 2022 4:47 AM
> To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
> Subject: Re: ✗ Fi.CI.IGT: failure for misc fixes
> 
> Hi Lakshmi,
> 
> These listed failures don't seem to relate to my changes in any way.
> 
> /Juha-Pekka
> 
> On 28.9.2022 14.23, Patchwork wrote:
>> *Patch Details*
>> *Series:*	misc fixes
>> *URL:*	https://patchwork.freedesktop.org/series/109144/
>> <https://patchwork.freedesktop.org/series/109144/>
>> *State:*	failure
>> *Details:*
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html>
>>
>>
>>    CI Bug Log - changes from CI_DRM_12192_full -> IGTPW_7852_full
>>
>>
>>      Summary
>>
>> *FAILURE*
>>
>> Serious unknown changes coming with IGTPW_7852_full absolutely need to
>> be verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in IGTPW_7852_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_7852/index.html
>>
>>
>>      Participating hosts (11 -> 6)
>>
>> Missing (5): pig-kbl-iris shard-tglu pig-glk-j5005 pig-skl-6260u
>> shard-rkl
>>
>>
>>      Possible new issues
>>
>> Here are the unknown changes that may have been introduced in
>> IGTPW_7852_full:
>>
>>
>>        IGT changes
>>
>>
>>          Possible regressions
>>
>>    *
>>
>>      igt@api_intel_allocator@fork-simple-stress:
>>
>>        o shard-tglb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb2/igt@api_intel_allocator@fork-simple-stress.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@api_intel_allocator@fork-simple-stress.html>
>>    *
>>
>>      igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2:
>>
>>        o shard-glk: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-2.html>
>>    *
>>
>>      igt@nouveau_crc@pipe-b-source-outp-inactive:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> +48 similar issues
>>    *
>>
>>      igt@prime_nv_test@i915_blt_fill_nv_read:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@p
>> rime_nv_test@i915_blt_fill_nv_read.html> +49 similar issues
>>
>>
>>      Known issues
>>
>> Here are the changes found in IGTPW_7852_full that come from known issues:
>>
>>
>>        IGT changes
>>
>>
>>          Issues hit
>>
>>    *
>>
>>      igt@gem_ccs@block-copy-compressed:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gem_ccs@block-copy-compressed.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#5325 <https://gitlab.freedesktop.org/drm/intel/issues/5325>)
>>    *
>>
>>      igt@gem_ctx_persistence@engines-hang@rcs0:
>>
>>        o shard-apl: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@gem_ctx_persistence@engines-hang@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@gem_ctx_persistence@engines-hang@rcs0.html> (i915#2410 <https://gitlab.freedesktop.org/drm/intel/issues/2410>)
>>    *
>>
>>      igt@gem_exec_balancer@parallel-bb-first:
>>
>>        o shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) +1 similar issue
>>    *
>>
>>      igt@gem_exec_capture@capture-recoverable:
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@g
>> em_exec_capture@capture-recoverable.html> (i915#6344
>> <https://gitlab.freedesktop.org/drm/intel/issues/6344>)
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@g
>> em_exec_capture@capture-recoverable.html> (i915#6344
>> <https://gitlab.freedesktop.org/drm/intel/issues/6344>)
>>
>>    *
>>
>>      igt@gem_exec_fair@basic-none-share@rcs0:
>>
>>        o shard-glk: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>>    *
>>
>>      igt@gem_lmem_swapping@heavy-verify-random-ccs:
>>
>>        o
>>
>>          shard-apl: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@ge
>> m_lmem_swapping@heavy-verify-random-ccs.html> (fdo#109271
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613
>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar
>> issue
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@g
>> em_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613
>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>
>>        o
>>
>>          shard-glk: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@ge
>> m_lmem_swapping@heavy-verify-random-ccs.html> (fdo#109271
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613
>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@g
>> em_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613
>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>
>>    *
>>
>>      igt@gem_mmap_gtt@fault-concurrent-x:
>>
>>        o shard-snb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-x.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html> (i915#5161 <https://gitlab.freedesktop.org/drm/intel/issues/5161>)
>>    *
>>
>>      igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@g
>> em_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html>
>> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@g
>> em_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html>
>> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1
>> similar issue
>>
>>    *
>>
>>      igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html> (i915#768 <https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue
>>    *
>>
>>      igt@gem_userptr_blits@input-checking:
>>
>>        o shard-apl: NOTRUN -> DMESG-WARN
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gem_userptr_blits@input-checking.html> (i915#4991 <https://gitlab.freedesktop.org/drm/intel/issues/4991>)
>>    *
>>
>>      igt@gen7_exec_parse@basic-allowed:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@gen7_exec_parse@basic-allowed.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
>>    *
>>
>>      igt@gen9_exec_parse@allowed-all:
>>
>>        o shard-glk: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk6/igt@gen9_exec_parse@allowed-all.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk6/igt@gen9_exec_parse@allowed-all.html> (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>)
>>    *
>>
>>      igt@i915_pm_dc@dc6-psr:
>>
>>        o shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@i915_pm_dc@dc6-psr.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_dc@dc6-psr.html> (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>>    *
>>
>>      igt@i915_pm_dc@dc9-dpms:
>>
>>        o
>>
>>          shard-apl: PASS
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@
>> i915_pm_dc@dc9-dpms.html> -> SKIP
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i9
>> 15_pm_dc@dc9-dpms.html> (fdo#109271
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@i
>> 915_pm_dc@dc9-dpms.html> (i915#4281
>> <https://gitlab.freedesktop.org/drm/intel/issues/4281>)
>>
>>    *
>>
>>      igt@i915_selftest@live@gt_heartbeat:
>>
>>        o shard-apl: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@i915_selftest@live@gt_heartbeat.html> -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> (i915#5334 <https://gitlab.freedesktop.org/drm/intel/issues/5334>)
>>    *
>>
>>      igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue
>>    *
>>
>>      igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@k
>> ms_big_fb@x-tiled-8bpp-rotate-270.html> (fdo#110725
>> <https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614
>> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@k
>> ms_big_fb@x-tiled-8bpp-rotate-270.html> (fdo#111614
>> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
>>
>>    *
>>
>>      igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@k
>> ms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (fdo#109278
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +3 similar
>> issues
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@k
>> ms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html> (i915#6095
>> <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>>
>>    *
>>
>>      igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
>>
>>        o shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +181 similar issues
>>    *
>>
>>      igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue
>>    *
>>
>>      igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
>>
>>        o
>>
>>          shard-glk: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@km
>> s_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html>
>> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>> i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@k
>> ms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html>
>> (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
>> i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>>
>>    *
>>
>>      igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>>    *
>>
>>      igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +2 similar issues
>>    *
>>
>>      igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
>>
>>        o shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl7/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5 similar issues
>>    *
>>
>>      igt@kms_chamelium@vga-frame-dump:
>>
>>        o shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_chamelium@vga-frame-dump.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +9 similar issues
>>    *
>>
>>      igt@kms_chamelium@vga-hpd:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_chamelium@vga-hpd.html> (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues
>>    *
>>
>>      igt@kms_chamelium@vga-hpd-without-ddc:
>>
>>        o
>>
>>          shard-snb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@km
>> s_chamelium@vga-hpd-without-ddc.html> (fdo#109271
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827
>> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar
>> issues
>>
>>        o
>>
>>          shard-glk: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@km
>> s_chamelium@vga-hpd-without-ddc.html> (fdo#109271
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827
>> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar
>> issues
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@k
>> ms_chamelium@vga-hpd-without-ddc.html> (fdo#109284
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827
>> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar
>> issues
>>
>>    *
>>
>>      igt@kms_content_protection@atomic:
>>
>>        o shard-apl: NOTRUN -> TIMEOUT
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_content_protection@atomic.html> (i915#1319 <https://gitlab.freedesktop.org/drm/intel/issues/1319>)
>>    *
>>
>>      igt@kms_cursor_crc@cursor-offscreen-512x170:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
>>    *
>>
>>      igt@kms_cursor_crc@cursor-onscreen-512x512:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
>>    *
>>
>>      igt@kms_cursor_legacy@cursor-vs-flip@varying-size:
>>
>>        o shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html> (i915#5072 <https://gitlab.freedesktop.org/drm/intel/issues/5072>) +1 similar issue
>>    *
>>
>>      igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
>>
>>        o shard-glk: NOTRUN -> FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
>>    *
>>
>>      igt@kms_cursor_legacy@short-busy-flip-before-cursor:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html> (i915#4103 <https://gitlab.freedesktop.org/drm/intel/issues/4103>)
>>    *
>>
>>      igt@kms_flip@2x-absolute-wf_vblank-interruptible:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>)
>>    *
>>
>>      igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
>>
>>        o shard-glk: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>    *
>>
>>      igt@kms_flip@2x-flip-vs-panning-vs-hang:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1 similar issue
>>    *
>>
>>      igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
>>
>>        o shard-apl: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>    *
>>
>>      igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues
>>    *
>>
>>      igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue
>>    *
>>
>>      igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +4 similar issues
>>    *
>>
>>      igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +11 similar issues
>>    *
>>
>>      igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html> (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>)
>>    *
>>
>>      igt@kms_hdmi_inject@inject-audio:
>>
>>        o shard-tglb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html> (i915#433 <https://gitlab.freedesktop.org/drm/intel/issues/433>)
>>    *
>>
>>      igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
>>
>>        o
>>
>>          shard-glk: NOTRUN -> FAIL
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@km
>> s_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> (i915#265
>> <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>
>>        o
>>
>>          shard-apl: NOTRUN -> FAIL
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@km
>> s_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> (i915#265
>> <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>
>>    *
>>
>>      igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1:
>>
>>        o shard-glk: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk7/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk5/igt@kms_plane_multiple@tiling-y@pipe-c-hdmi-a-1.html> (i915#1888 <https://gitlab.freedesktop.org/drm/intel/issues/1888>)
>>    *
>>
>>      igt@kms_prime@d3hot:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@kms_prime@d3hot.html> (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524>)
>>    *
>>
>>      igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
>>
>>        o shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>    *
>>
>>      igt@kms_psr2_su@page_flip-nv12:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb8/igt@kms_psr2_su@page_flip-nv12.html> (i915#1911 <https://gitlab.freedesktop.org/drm/intel/issues/1911>)
>>    *
>>
>>      igt@kms_psr@psr2_sprite_blt:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@k
>> ms_psr@psr2_sprite_blt.html> (fdo#109441
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> FAIL
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb2/igt@k
>> ms_psr@psr2_sprite_blt.html> (i915#132
>> <https://gitlab.freedesktop.org/drm/intel/issues/132> / i915#3467
>> <https://gitlab.freedesktop.org/drm/intel/issues/3467>)
>>
>>    *
>>
>>      igt@kms_psr@psr2_sprite_mmap_gtt:
>>
>>        o shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue
>>    *
>>
>>      igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>>
>>        o shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>>    *
>>
>>      igt@kms_setmode@basic@pipe-a-vga-1:
>>
>>        o shard-snb: NOTRUN -> FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 similar issue
>>    *
>>
>>      igt@kms_setmode@invalid-clone-single-crtc:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@k
>> ms_setmode@invalid-clone-single-crtc.html> (i915#3555
>> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2 similar
>> issues
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@k
>> ms_setmode@invalid-clone-single-crtc.html> (i915#3555
>> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar
>> issue
>>
>>    *
>>
>>      igt@nouveau_crc@pipe-d-ctx-flip-detection:
>>
>>        o shard-glk: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk9/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +66 similar issues
>>    *
>>
>>      igt@perf_pmu@rc6-suspend:
>>
>>        o shard-apl: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@perf_pmu@rc6-suspend.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@perf_pmu@rc6-suspend.html> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>>    *
>>
>>      igt@prime_nv_pcopy@test3_5:
>>
>>        o shard-snb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-snb4/igt@prime_nv_pcopy@test3_5.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +85 similar issues
>>    *
>>
>>      igt@sysfs_clients@busy:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb1/igt@sysfs_clients@busy.html> (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +2 similar issues
>>    *
>>
>>      igt@sysfs_clients@split-25:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb8/igt@s
>> ysfs_clients@split-25.html> (i915#2994
>> <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar
>> issue
>>
>>        o
>>
>>          shard-apl: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@sy
>> sfs_clients@split-25.html> (fdo#109271
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994
>> <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar
>> issue
>>
>>        o
>>
>>          shard-glk: NOTRUN -> SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk1/igt@sy
>> sfs_clients@split-25.html> (fdo#109271
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994
>> <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>>
>>
>>          Possible fixes
>>
>>    *
>>
>>      igt@gem_exec_balancer@parallel-keep-in-fence:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html>
>>    *
>>
>>      igt@gem_exec_fair@basic-flow@rcs0:
>>
>>        o shard-tglb: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html>
>>    *
>>
>>      igt@gem_exec_fair@basic-pace-solo@rcs0:
>>
>>        o shard-apl: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl8/igt@gem_exec_fair@basic-pace-solo@rcs0.html>
>>    *
>>
>>      igt@gem_exec_fair@basic-pace@vecs0:
>>
>>        o
>>
>>          shard-iclb: FAIL
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt
>> @gem_exec_fair@basic-pace@vecs0.html> (i915#2842
>> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb7/igt@g
>> em_exec_fair@basic-pace@vecs0.html>
>>
>>        o
>>
>>          shard-glk: FAIL
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@
>> gem_exec_fair@basic-pace@vecs0.html> (i915#2842
>> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk2/igt@ge
>> m_exec_fair@basic-pace@vecs0.html>
>>
>>    *
>>
>>      igt@gen9_exec_parse@allowed-single:
>>
>>        o shard-apl: DMESG-WARN
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@gen9_exec_parse@allowed-single.html> (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@gen9_exec_parse@allowed-single.html>
>>    *
>>
>>      igt@i915_suspend@debugfs-reader:
>>
>>        o shard-apl: DMESG-WARN
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@i915_suspend@debugfs-reader.html> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl6/igt@i915_suspend@debugfs-reader.html> +3 similar issues
>>    *
>>
>>      igt@kms_cursor_legacy@forked-bo@pipe-b:
>>
>>        o shard-glk: DMESG-WARN
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html> (i915#118 <https://gitlab.freedesktop.org/drm/intel/issues/118>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-glk3/igt@kms_cursor_legacy@forked-bo@pipe-b.html>
>>    *
>>
>>      igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> +2 similar issues
>>    *
>>
>>      igt@kms_psr@psr2_no_drrs:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr@psr2_no_drrs.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr@psr2_no_drrs.html> +1 similar issue
>>    *
>>
>>      igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>>
>>        o shard-iclb: SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt
>> @kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519
>> <https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@k
>> ms_psr_stress_test@flip-primary-invalidate-overlay.html>
>>
>>
>>          Warnings
>>
>>    *
>>
>>      igt@i915_pm_rc6_residency@rc6-idle@vcs0:
>>
>>        o shard-iclb: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>)
>>    *
>>
>>      igt@kms_content_protection@mei_interface:
>>
>>        o
>>
>>          shard-tglb: SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-tglb3/igt
>> @kms_content_protection@mei_interface.html> (fdo#109300
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) -> SKIP
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-tglb3/igt@k
>> ms_content_protection@mei_interface.html> (i915#1063
>> <https://gitlab.freedesktop.org/drm/intel/issues/1063>)
>>
>>        o
>>
>>          shard-iclb: SKIP
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb7/igt
>> @kms_content_protection@mei_interface.html> (fdo#109300
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) -> SKIP
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb3/igt@k
>> ms_content_protection@mei_interface.html> (fdo#109300
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109300> / fdo#111066
>> <https://bugs.freedesktop.org/show_bug.cgi?id=111066>)
>>
>>    *
>>
>>      igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>>    *
>>
>>      igt@kms_psr2_sf@cursor-plane-update-sf:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb1/igt@kms_psr2_sf@cursor-plane-update-sf.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>>    *
>>
>>      igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>    *
>>
>>      igt@runner@aborted:
>>
>>        o shard-apl: (FAIL
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl6/igt@
>> runner@aborted.html>, FAIL
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl7/igt@
>> runner@aborted.html>, FAIL
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl8/igt@
>> runner@aborted.html>, FAIL
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@
>> runner@aborted.html>, FAIL
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl1/igt@
>> runner@aborted.html>, FAIL
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12192/shard-apl2/igt@
>> runner@aborted.html>) (fdo#109271
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180
>> <https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002
>> <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312
>> <https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@ru
>> nner@aborted.html>, FAIL
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl2/igt@ru
>> nner@aborted.html>, FAIL
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/shard-apl1/igt@ru
>> nner@aborted.html>) (i915#3002
>> <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312
>> <https://gitlab.freedesktop.org/drm/intel/issues/4312>)
>>
>>
>>      Build changes
>>
>>    * CI: CI-20190529 -> None
>>    * IGT: IGT_6666 -> IGTPW_7852
>>    * Piglit: piglit_4509 -> None
>>
>> CI-20190529: 20190529
>> CI_DRM_12192: 83f5b1665fc067c78ed2d46c585d8c49e57e6b06 @
>> git://anongit.freedesktop.org/gfx-ci/linux
>> IGTPW_7852:
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7852/index.html
>> IGT_6666: 1e3ecbaa3c56f4c52c62047707eb4942d3a39c44 @
>> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>> git://anongit.freedesktop.org/piglit
>>
> 

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

* Re: [igt-dev] [PATCH i-g-t 1/4] tests/kms_cursor_crc: wait for cursor only when needed
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 1/4] tests/kms_cursor_crc: wait for cursor only when needed Juha-Pekka Heikkila
@ 2022-09-28 22:29   ` Jessica Zhang
  0 siblings, 0 replies; 17+ messages in thread
From: Jessica Zhang @ 2022-09-28 22:29 UTC (permalink / raw)
  To: Juha-Pekka Heikkila, igt-dev



On 9/27/2022 12:11 PM, Juha-Pekka Heikkila wrote:
> moved cursor vblank waits out from sw tests and wait only when
> disabling cursor. With this need to wait few frames less than
> currently, this seems to shave off around 1s per subtest.
> 
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>

Reviewed-by: Jessica Zhang <quic_jesszhan@quicinc.com>

> ---
>   tests/kms_cursor_crc.c | 19 +++++++++++--------
>   1 file changed, 11 insertions(+), 8 deletions(-)
> 
> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
> index 7c1f74be5..f9a1f8689 100644
> --- a/tests/kms_cursor_crc.c
> +++ b/tests/kms_cursor_crc.c
> @@ -72,6 +72,7 @@ typedef struct {
>   	cairo_surface_t *surface;
>   	uint32_t devid;
>   	double alpha;
> +	int vblank_wait_count; /* because of msm */
>   } data_t;
>   
>   #define TEST_DPMS (1<<0)
> @@ -124,6 +125,12 @@ static void cursor_disable(data_t *data)
>   {
>   	igt_plane_set_fb(data->cursor, NULL);
>   	igt_plane_set_position(data->cursor, 0, 0);
> +	igt_display_commit(&data->display);
> +
> +	/* do this wait here so it will not need to be added everywhere */
> +	igt_wait_for_vblank_count(data->drm_fd,
> +				  data->display.pipes[data->pipe].crtc_offset,
> +				  data->vblank_wait_count);
>   }
>   
>   static bool chv_cursor_broken(data_t *data, int x)
> @@ -185,7 +192,6 @@ static void do_single_test(data_t *data, int x, int y, bool hw_test,
>   	igt_pipe_crc_t *pipe_crc = data->pipe_crc;
>   	igt_crc_t crc;
>   	int ret = 0, swbufidx;
> -	int vblank_wait_count = is_msm_device(data->drm_fd) ? 2 : 1;
>   
>   	igt_print_activity();
>   
> @@ -204,7 +210,8 @@ static void do_single_test(data_t *data, int x, int y, bool hw_test,
>   
>   		/* Extra vblank wait is because nonblocking cursor ioctl */
>   		igt_wait_for_vblank_count(data->drm_fd,
> -				display->pipes[data->pipe].crtc_offset, vblank_wait_count);
> +					  display->pipes[data->pipe].crtc_offset,
> +					  data->vblank_wait_count);
>   
>   		igt_pipe_crc_get_current(data->drm_fd, pipe_crc, hwcrc);
>   
> @@ -242,11 +249,7 @@ static void do_single_test(data_t *data, int x, int y, bool hw_test,
>   
>   		restore_image(data, swbufidx, &((cursorarea){x, y, data->curw, data->curh}));
>   		igt_plane_set_fb(data->primary, &data->primary_fb[swbufidx]);
> -
>   		igt_display_commit(display);
> -		igt_wait_for_vblank_count(data->drm_fd,
> -				display->pipes[data->pipe].crtc_offset, vblank_wait_count);
> -
>   		igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc);
>   		igt_assert_crc_equal(&crc, hwcrc);
>   	}
> @@ -264,9 +267,7 @@ static void do_fail_test(data_t *data, int x, int y, int expect)
>   	igt_plane_set_position(data->cursor, x, y);
>   	ret = igt_display_try_commit2(display, COMMIT_LEGACY);
>   
> -	igt_plane_set_position(data->cursor, 0, 0);
>   	cursor_disable(data);
> -	igt_display_commit(display);
>   
>   	igt_assert_eq(ret, expect);
>   }
> @@ -895,6 +896,8 @@ igt_main
>   		kmstest_set_vt_graphics_mode();
>   
>   		igt_require_pipe_crc(data.drm_fd);
> +
> +		data.vblank_wait_count = is_msm_device(data.drm_fd) ? 2 : 1;
>   	}
>   
>   	data.cursor_max_w = cursor_width;
> -- 
> 2.37.3
> 

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

* Re: [igt-dev] [PATCH i-g-t 2/4] tests/kms_rotation_crc: add I915_FORMAT_MOD_4_TILED to multiplane rotation tests
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 2/4] tests/kms_rotation_crc: add I915_FORMAT_MOD_4_TILED to multiplane rotation tests Juha-Pekka Heikkila
@ 2022-10-04  9:18   ` Kahola, Mika
  0 siblings, 0 replies; 17+ messages in thread
From: Kahola, Mika @ 2022-10-04  9:18 UTC (permalink / raw)
  To: Juha-Pekka Heikkila, igt-dev

> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Juha-
> Pekka Heikkila
> Sent: Tuesday, September 27, 2022 10:12 PM
> To: igt-dev@lists.freedesktop.org
> Subject: [igt-dev] [PATCH i-g-t 2/4] tests/kms_rotation_crc: add
> I915_FORMAT_MOD_4_TILED to multiplane rotation tests
> 
> Add I915_FORMAT_MOD_4_TILED to list for multiplane rotation tests so they
> will be tested on dg2.
> 

Reviewed-by: Mika Kahola <mika.kahola@intel.com>

> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
>  tests/kms_rotation_crc.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index
> 50869a08a..53f1f6ec1 100644
> --- a/tests/kms_rotation_crc.c
> +++ b/tests/kms_rotation_crc.c
> @@ -696,12 +696,14 @@ static void test_multi_plane_rotation(data_t *data,
> enum pipe pipe)
>  	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
>  	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>  	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> +	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
>  	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>  	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>  	{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
>  	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
>  	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>  	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> +	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
>  	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>  	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>  	};
> --
> 2.37.3


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

* Re: [igt-dev] [PATCH i-g-t 3/4] lib/rendercopy: separate intel clear color functions
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 3/4] lib/rendercopy: separate intel clear color functions Juha-Pekka Heikkila
@ 2022-10-04  9:20   ` Kahola, Mika
  0 siblings, 0 replies; 17+ messages in thread
From: Kahola, Mika @ 2022-10-04  9:20 UTC (permalink / raw)
  To: Juha-Pekka Heikkila, igt-dev

> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Juha-
> Pekka Heikkila
> Sent: Tuesday, September 27, 2022 10:12 PM
> To: igt-dev@lists.freedesktop.org
> Subject: [igt-dev] [PATCH i-g-t 3/4] lib/rendercopy: separate intel clear color
> functions
> 
> separate dg2 style ccs clear color from generic gen12 clear color same way as
> how they're separate on rendercopy.
> 

Reviewed-by: Mika Kahola <mika.kahola@intel.com>

> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
>  lib/intel_batchbuffer.c |  8 +++++++-
>  lib/rendercopy.h        |  4 ++++
>  lib/rendercopy_gen9.c   | 45 +++++++++++++++++++++++------------------
>  3 files changed, 36 insertions(+), 21 deletions(-)
> 
> diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index
> ef1b59477..bb2503bbd 100644
> --- a/lib/intel_batchbuffer.c
> +++ b/lib/intel_batchbuffer.c
> @@ -1166,7 +1166,13 @@ igt_vebox_copyfunc_t igt_get_vebox_copyfunc(int
> devid)
> 
>  igt_render_clearfunc_t igt_get_render_clearfunc(int devid)  {
> -	return IS_GEN12(devid) ? gen12_render_clearfunc : NULL;
> +	if (IS_DG2(devid)) {
> +		return gen12p71_render_clearfunc;
> +	} else if (IS_GEN12(devid)) {
> +		return gen12_render_clearfunc;
> +	} else {
> +		return NULL;
> +	}
>  }
> 
>  /**
> diff --git a/lib/rendercopy.h b/lib/rendercopy.h index 3e984a141..480fdee8d
> 100644
> --- a/lib/rendercopy.h
> +++ b/lib/rendercopy.h
> @@ -23,6 +23,10 @@ static inline void emit_vertex_normalized(struct intel_bb
> *ibb,
>  	intel_bb_out(ibb, u.ui);
>  }
> 
> +void gen12p71_render_clearfunc(struct intel_bb *ibb,
> +			       struct intel_buf *dst, unsigned int dst_x, unsigned
> int dst_y,
> +			       unsigned int width, unsigned int height,
> +			       const float clear_color[4]);
>  void gen12_render_clearfunc(struct intel_bb *ibb,
>  			    struct intel_buf *dst, unsigned int dst_x, unsigned int
> dst_y,
>  			    unsigned int width, unsigned int height, diff --git
> a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c index ae0f775ac..d74f1c999
> 100644
> --- a/lib/rendercopy_gen9.c
> +++ b/lib/rendercopy_gen9.c
> @@ -1254,24 +1254,29 @@ void gen12_render_clearfunc(struct intel_bb *ibb,
>  			    unsigned int width, unsigned int height,
>  			    const float clear_color[4])
>  {
> -	if (!HAS_4TILE(ibb->devid)) {
> -		struct aux_pgtable_info pgtable_info = { };
> -
> -		gen12_aux_pgtable_init(&pgtable_info, ibb, NULL, dst);
> -
> -		_gen9_render_op(ibb, NULL, 0, 0,
> -				width, height, dst, dst_x, dst_y,
> -				pgtable_info.pgtable_buf,
> -				clear_color,
> -				gen12_render_copy,
> -				sizeof(gen12_render_copy));
> -		gen12_aux_pgtable_cleanup(ibb, &pgtable_info);
> -	} else {
> -			_gen9_render_op(ibb, NULL, 0, 0,
> -					width, height, dst, dst_x, dst_y,
> -					NULL,
> -					clear_color,
> -					gen12p71_render_copy,
> -					sizeof(gen12p71_render_copy));
> -	}
> +	struct aux_pgtable_info pgtable_info = { };
> +
> +	gen12_aux_pgtable_init(&pgtable_info, ibb, NULL, dst);
> +
> +	_gen9_render_op(ibb, NULL, 0, 0,
> +			width, height, dst, dst_x, dst_y,
> +			pgtable_info.pgtable_buf,
> +			clear_color,
> +			gen12_render_copy,
> +			sizeof(gen12_render_copy));
> +	gen12_aux_pgtable_cleanup(ibb, &pgtable_info); }
> +
> +void gen12p71_render_clearfunc(struct intel_bb *ibb,
> +			       struct intel_buf *dst,
> +			       unsigned int dst_x, unsigned int dst_y,
> +			       unsigned int width, unsigned int height,
> +			       const float clear_color[4])
> +{
> +	_gen9_render_op(ibb, NULL, 0, 0,
> +			width, height, dst, dst_x, dst_y,
> +			NULL,
> +			clear_color,
> +			gen12p71_render_copy,
> +			sizeof(gen12p71_render_copy));
>  }
> --
> 2.37.3


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

* Re: [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify multiplane rotation tests
  2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify multiplane rotation tests Juha-Pekka Heikkila
@ 2022-10-04 12:56   ` Kahola, Mika
  2022-10-04 18:30     ` Juha-Pekka Heikkila
  0 siblings, 1 reply; 17+ messages in thread
From: Kahola, Mika @ 2022-10-04 12:56 UTC (permalink / raw)
  To: Juha-Pekka Heikkila, igt-dev

> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Juha-
> Pekka Heikkila
> Sent: Tuesday, September 27, 2022 10:12 PM
> To: igt-dev@lists.freedesktop.org
> Subject: [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify
> multiplane rotation tests
> 
> As is multiplane rotation tests are far from readable, here attempt to break it to
> bit more readable form. No functional change on test itself.
> 

Seems that there are no functional changes.

Reviewed-by: Mika Kahola <mika.kahola@intel.com>

> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
>  tests/kms_rotation_crc.c | 297 +++++++++++++++++++++++----------------
>  1 file changed, 178 insertions(+), 119 deletions(-)
> 
> diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index
> 53f1f6ec1..755da20e7 100644
> --- a/tests/kms_rotation_crc.c
> +++ b/tests/kms_rotation_crc.c
> @@ -60,6 +60,24 @@ enum rectangle_type {
>  	num_rectangle_types /* must be last */  };
> 
> +/*
> + * These are those modes which are tested on multiplane test.
> + * For testing feel interesting case with modifier are 2BPP, 4BPP, NV12
> +and
> + * one P0xx format.
> + */
> +const uint32_t multiplaneformatlist[] = { DRM_FORMAT_RGB565,
> +					  DRM_FORMAT_XRGB8888,
> +					  DRM_FORMAT_NV12,
> +					  DRM_FORMAT_P010 };
> +
> +typedef struct {
> +	igt_rotation_t rotation;
> +	float_t width;
> +	float_t height;
> +	uint64_t modifier;
> +	struct igt_fb fbs[ARRAY_SIZE(multiplaneformatlist)][2];
> +} planeconfigs_t;
> +
>  typedef struct {
>  	int gfx_fd;
>  	igt_display_t display;
> @@ -76,7 +94,6 @@ typedef struct {
>  	uint64_t override_modifier;
>  	int devid;
> 
> -	struct p_struct *multiplaneoldview;
>  	struct p_point planepos[MAXMULTIPLANESAMOUNT];
> 
>  	bool use_native_resolution;
> @@ -571,33 +588,46 @@ static void test_plane_rotation(data_t *data, int
> plane_type, bool test_bad_form  }
> 
>  typedef struct {
> -	int32_t x1, y1;
> -	uint64_t width, height, modifier, format;
> +	int32_t x1, y1, formatindex;
>  	igt_plane_t *plane;
>  	igt_rotation_t rotation_sw, rotation_hw;
> +	planeconfigs_t *fbinfo;
>  } planeinfos;
> 
> -static bool setup_multiplane(data_t *data, planeinfos *planeinfo,
> -			     struct igt_fb *fbleft,  struct igt_fb *fbright)
> +static bool setup_multiplane(data_t *data, planeinfos planeinfo[2],
> drmModeModeInfo *mode,
> +			     int hwround)
>  {
>  	uint32_t w, h;
> -	struct igt_fb *planes[2] = {fbleft, fbright};
> +	struct igt_fb *planes[2] = {&planeinfo[0].fbinfo-
> >fbs[planeinfo[0].formatindex][hwround],
> +				    &planeinfo[1].fbinfo-
> >fbs[planeinfo[1].formatindex][hwround]};
>  	int c;
> 
> +	if (hwround == MULTIPLANE_REFERENCE) {
> +		planeinfo[0].rotation_sw = planeinfo[0].fbinfo->rotation;
> +		planeinfo[1].rotation_sw = planeinfo[1].fbinfo->rotation;
> +		planeinfo[0].rotation_hw = IGT_ROTATION_0;
> +		planeinfo[1].rotation_hw = IGT_ROTATION_0;
> +	} else {
> +		planeinfo[0].rotation_sw = IGT_ROTATION_0;
> +		planeinfo[1].rotation_sw = IGT_ROTATION_0;
> +		planeinfo[0].rotation_hw = planeinfo[0].fbinfo->rotation;
> +		planeinfo[1].rotation_hw = planeinfo[1].fbinfo->rotation;
> +	}
> +
>  	for (c = 0; c < ARRAY_SIZE(planes); c++) {
>  		/*
>  		 * make plane and fb width and height always divisible by 4
>  		 * due to NV12 support and Intel hw workarounds.
>  		 */
> -		w = planeinfo[c].width & ~3;
> -		h = planeinfo[c].height & ~3;
> +		w = (uint64_t)(planeinfo[c].fbinfo->width *
> TEST_WIDTH(mode)) & ~3;
> +		h = (uint64_t)(planeinfo[c].fbinfo->height *
> TEST_HEIGHT(mode)) & ~3;
> 
>  		if (igt_rotation_90_or_270(planeinfo[c].rotation_sw))
>  			igt_swap(w, h);
> 
>  		if (!igt_plane_has_format_mod(planeinfo[c].plane,
> -					      planeinfo[c].format,
> -					      planeinfo[c].modifier))
> +
> multiplaneformatlist[planeinfo[c].formatindex],
> +					      planeinfo[c].fbinfo->modifier))
>  			return false;
> 
>  		/*
> @@ -605,8 +635,9 @@ static bool setup_multiplane(data_t *data, planeinfos
> *planeinfo,
>  		 * new fb?
>  		 */
>  		if (planes[c]->fb_id == 0) {
> -			igt_create_fb(data->gfx_fd, w, h, planeinfo[c].format,
> -				      planeinfo[c].modifier, planes[c]);
> +			igt_create_fb(data->gfx_fd, w, h,
> +
> multiplaneformatlist[planeinfo[c].formatindex],
> +				      planeinfo[c].fbinfo->modifier, planes[c]);
> 
>  			paint_squares(data, planeinfo[c].rotation_sw,
>  				      planes[c], 1.0f);
> @@ -625,7 +656,7 @@ static bool setup_multiplane(data_t *data, planeinfos
> *planeinfo,
>  	return true;
>  }
> 
> -static void pointlocation(data_t *data, planeinfos *p, drmModeModeInfo
> *mode,
> +static void pointlocation(data_t *data, planeinfos p[2],
> +drmModeModeInfo *mode,
>  			  int c)
>  {
>  	if (data->planepos[c].origo & p_right) { @@ -655,11 +686,88 @@ static
> void pointlocation(data_t *data, planeinfos *p, drmModeModeInfo *mode,
>  	}
>  }
> 
> +static bool multiplaneskiproundcheck(data_t *data, planeinfos p[2]) {
> +	/*
> +	 * RGB565 90/270 degrees rotation is supported
> +	 * from gen11 onwards.
> +	 */
> +	if (multiplaneformatlist[p[0].formatindex] == DRM_FORMAT_RGB565
> &&
> +	    igt_rotation_90_or_270(p[0].fbinfo->rotation)
> +	    && intel_display_ver(data->devid) < 11)
> +		return false;
> +
> +	if (multiplaneformatlist[p[1].formatindex] == DRM_FORMAT_RGB565
> &&
> +	    igt_rotation_90_or_270(p[1].fbinfo->rotation)
> +	    && intel_display_ver(data->devid) < 11)
> +		return false;
> +
> +	if (!igt_plane_has_rotation(p[0].plane, p[0].fbinfo->rotation))
> +		return false;
> +
> +	if (!igt_plane_has_rotation(p[1].plane, p[1].fbinfo->rotation))
> +		return false;
> +
> +	return true;
> +}
> +
>  /*
>   * count trailing zeroes
>   */
>  #define ctz __builtin_ctz
> 
> +/*
> + * this is to make below inner loops more readable.
> + * 1 = left plane has palar format
> + * 2 = right plane has planar format
> + * 3 = both planes has planar formats
> + */
> +#define planarcheck
> (igt_format_is_yuv_semiplanar(multiplaneformatlist[p[0].formatindex]) | \
> +
> +(igt_format_is_yuv_semiplanar(multiplaneformatlist[p[1].formatindex])
> +<< 1))
> +
> +/*
> + * used formats are packed formats and these rotation were already seen
> +on
> + * screen so crc was already logged?
> + */
> +static bool havepackedcrc(planeinfos p[2], igt_crc_t crclog[16]) {
> +	int logindex;
> +
> +	if (planarcheck != 0)
> +		return false;
> +
> +	logindex = ctz(p[0].fbinfo->rotation);
> +	logindex |= ctz(p[1].fbinfo->rotation) << 2;
> +
> +	if (crclog[logindex].frame == 0)
> +		return false;
> +
> +	return true;
> +}
> +
> +/*
> + * check left plane has planar format, right plane doesn't have planar
> +format
> + * and rotations stay the same, if all these are true crc can be
> +re-used from
> + * previous round.
> + */
> +static bool reusecrcfromlastround(planeinfos p[2], int lastroundp1format,
> +				  int lastroundp0rotation,
> +				  int lastroundp1rotation)
> +{
> +	if (planarcheck != 1)
> +		return false;
> +
> +	if (igt_format_is_yuv_semiplanar(lastroundp1format))
> +		return false;
> +
> +	if (p[0].fbinfo->rotation != lastroundp0rotation)
> +		return false;
> +
> +	if (p[1].fbinfo->rotation != lastroundp1rotation)
> +		return false;
> +
> +	return true;
> +}
>  /*
>   * Here is pipe parameter which is now used only for first pipe.
>   * It is left here if this test ever was wanted to be run on @@ -671,41 +779,29
> @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
>  	igt_output_t *output;
>  	igt_crc_t retcrc_sw, retcrc_hw;
>  	planeinfos p[2];
> -	int used_w, used_h, lastroundirotation = 0, lastroundjrotation = 0,
> +	int lastroundirotation = 0, lastroundjrotation = 0,
>  	    lastroundjformat = 0, c, d;
>  	drmModeModeInfo *mode;
>  	bool have_crc; // flag if can use previously logged crc for comparison
>  	igt_crc_t crclog[16] = {}; //4 * 4 rotation crc storage for packed formats
>  	char *str1, *str2; // for debug printouts
> -
> -	/*
> -	 * These are those modes which are tested. For testing feel interesting
> -	 * case with modifier are 2 bpp, 4 bpp and NV12.
> -	 */
> -	static const uint32_t formatlist[] = {DRM_FORMAT_RGB565,
> -		DRM_FORMAT_XRGB8888, DRM_FORMAT_NV12,
> DRM_FORMAT_P010};
> -
> -	static struct {
> -		igt_rotation_t rotation;
> -		float_t width;
> -		float_t height;
> -		uint64_t modifier;
> -		struct igt_fb fbs[ARRAY_SIZE(formatlist)][2];
> -	} planeconfigs[] = {
> -	{IGT_ROTATION_0, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
> -	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
> -	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
> -	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> -	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
> -	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
> -	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> -	{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
> -	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
> -	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
> -	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> -	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
> -	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
> -	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> +	int logindex;
> +
> +	static planeconfigs_t planeconfigs[] = {
> +		{IGT_ROTATION_0, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
> +		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
> +		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
> +		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> +		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
> +		{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
> +		{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> +		{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
> +		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
> +		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
> +		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
> +		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
> +		{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
> +		{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>  	};
> 
>  	for_each_valid_output_on_pipe(display, pipe, output) { @@ -715,9
> +811,6 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
>  		igt_display_require_output(display);
>  		igt_display_commit2(display, COMMIT_ATOMIC);
> 
> -		used_w = TEST_WIDTH(mode);
> -		used_h = TEST_HEIGHT(mode);
> -
>  		p[0].plane = igt_output_get_plane_type(output,
> DRM_PLANE_TYPE_PRIMARY);
>  		p[1].plane = igt_output_get_plane_type(output,
> DRM_PLANE_TYPE_OVERLAY);
> 
> @@ -726,88 +819,60 @@ 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++) {
> -			p[0].width = (uint64_t)(planeconfigs[i].width * used_w);
> -			p[0].height = (uint64_t)(planeconfigs[i].height *
> used_h);
> -			p[0].modifier = planeconfigs[i].modifier;
> -			pointlocation(data, (planeinfos *)&p, mode, 0);
> +			p[0].fbinfo = &planeconfigs[i];
> +			pointlocation(data, p, mode, 0);
> 
> -			for (k = 0; k < ARRAY_SIZE(formatlist); k++) {
> -				p[0].format = formatlist[k];
> +			for (k = 0; k < ARRAY_SIZE(multiplaneformatlist); k++) {
> +				p[0].formatindex = k;
> 
>  				for (j = 0; j < ARRAY_SIZE(planeconfigs); j++) {
> -					p[1].width =
> (uint64_t)(planeconfigs[j].width * used_w);
> -					p[1].height =
> (uint64_t)(planeconfigs[j].height * used_h);
> -					p[1].modifier =
> planeconfigs[j].modifier;
> -					pointlocation(data, (planeinfos *)&p,
> -						      mode, 1);
> -
> -					for (l = 0; l < ARRAY_SIZE(formatlist);
> l++) {
> -						p[1].format = formatlist[l];
> -						/*
> -						 * RGB565 90/270 degrees
> rotation is supported
> -						 * from gen11 onwards.
> -						 */
> -						if (p[0].format ==
> DRM_FORMAT_RGB565 &&
> -
> igt_rotation_90_or_270(planeconfigs[i].rotation)
> -						     && intel_display_ver(data-
> >devid) < 11)
> -							continue;
> +					p[1].fbinfo = &planeconfigs[j];
> +					pointlocation(data, p, mode, 1);
> 
> -						if (p[1].format ==
> DRM_FORMAT_RGB565 &&
> -
> igt_rotation_90_or_270(planeconfigs[j].rotation)
> -						     && intel_display_ver(data-
> >devid) < 11)
> -							continue;
> -
> -						if
> (!igt_plane_has_rotation(p[0].plane,
> -
> planeconfigs[i].rotation))
> -							continue;
> +					for (l = 0; l <
> ARRAY_SIZE(multiplaneformatlist); l++) {
> +						p[1].formatindex = l;
> 
> -						if
> (!igt_plane_has_rotation(p[1].plane,
> -
> planeconfigs[j].rotation))
> +						if
> (!multiplaneskiproundcheck(data, p))
>  							continue;
> 
>  						/*
>  						 * if using packed formats crc's
> will be
>  						 * same and can store them so
> there's
> -						 * no need to redo comparison
> image and
> +						 * no need to redo reference
> image and
>  						 * just use stored crc.
>  						 */
> -						if
> (!igt_format_is_yuv_semiplanar(p[0].format) &&
> !igt_format_is_yuv_semiplanar(p[1].format) &&
> -
> crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)].frame
> != 0) {
> -							retcrc_sw =
> crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)];
> +						if (havepackedcrc(p, crclog)) {
> +							logindex =
> ctz(p[0].fbinfo->rotation);
> +							logindex |=
> ctz(p[1].fbinfo->rotation) << 2;
> +
> +							retcrc_sw =
> crclog[logindex];
>  							have_crc = true;
> -						} else if((p[0].format ==
> DRM_FORMAT_NV12 || p[0].format == DRM_FORMAT_P010) &&
> -							   p[1].format !=
> DRM_FORMAT_NV12 && p[1].format != DRM_FORMAT_P010 &&
> -							   lastroundjformat !=
> DRM_FORMAT_NV12 && lastroundjformat != DRM_FORMAT_P010 &&
> -
> planeconfigs[i].rotation == lastroundirotation &&
> -
> planeconfigs[j].rotation == lastroundjrotation) {
> +						} else
> if(reusecrcfromlastround(p, lastroundjformat,
> +
> 	lastroundirotation,
> +
> 	lastroundjrotation)) {
>  							/*
> -							 * With NV12 can
> benefit from
> -							 * previous crc if
> rotations
> +							 * With planar formats
> can benefit
> +							 * from previous crc if
> rotations
>  							 * stay same. If both
> planes
> -							 * have NV12 in use we
> need to
> -							 * skip that case.
> +							 * have planar format
> in use we
> +							 * need to skip that
> case.
>  							 * If last round right
> plane
> -							 * had NV12 need to
> skip this.
> +							 * had planar format
> need to skip
> +							 * this.
>  							 */
>  							have_crc = true;
>  						} else {
>  							/*
>  							 * here will be created
> -							 * comparison image
> and get crc
> +							 * reference image and
> get crc
>  							 * if didn't have stored
> crc
>  							 * or planar format is
> in use.
>  							 * have_crc flag will
> control
>  							 * crc comparison part.
>  							 */
> -							p[0].rotation_sw =
> planeconfigs[i].rotation;
> -							p[0].rotation_hw =
> IGT_ROTATION_0;
> -							p[1].rotation_sw =
> planeconfigs[j].rotation;
> -							p[1].rotation_hw =
> IGT_ROTATION_0;
> -							if
> (!setup_multiplane(data,
> -
> 	(planeinfos *)&p,
> -
> 	&planeconfigs[i].fbs[k][MULTIPLANE_REFERENCE],
> -
> 	&planeconfigs[j].fbs[l][MULTIPLANE_REFERENCE]))
> +							if
> (!setup_multiplane(data, p, mode, MULTIPLANE_REFERENCE))
>  								continue;
> +
> 
> 	igt_display_commit_atomic(display,
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>  							flipsw =
> kmstest_get_vblank(data->gfx_fd, pipe, 0) + 1;
>  							have_crc = false;
> @@ -818,15 +883,7 @@ static void test_multi_plane_rotation(data_t *data,
> enum pipe pipe)
>  						 * get vblank where interesting
>  						 * crc will be at, grab crc bit
> later
>  						 */
> -						p[0].rotation_sw =
> IGT_ROTATION_0;
> -						p[0].rotation_hw =
> planeconfigs[i].rotation;
> -						p[1].rotation_sw =
> IGT_ROTATION_0;
> -						p[1].rotation_hw =
> planeconfigs[j].rotation;
> -
> -						if (!setup_multiplane(data,
> -								      (planeinfos
> *)&p,
> -
> &planeconfigs[i].fbs[k][MULTIPLANE_ROTATED],
> -
> &planeconfigs[j].fbs[l][MULTIPLANE_ROTATED]))
> +						if (!setup_multiplane(data, p,
> mode, MULTIPLANE_ROTATED))
>  							continue;
> 
> 
> 	igt_display_commit_atomic(display,
> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); @@ -838,9 +895,12 @@
> static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
> 
> 	   flipsw,
> 
> 	   &retcrc_sw);
> 
> -							if
> (!igt_format_is_yuv_semiplanar(p[0].format)
> &&!igt_format_is_yuv_semiplanar(p[1].format))
> -
> 	crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)]
> -								= retcrc_sw;
> +							if (planarcheck == 0) {
> +								logindex =
> ctz(p[0].fbinfo->rotation);
> +								logindex |=
> ctz(p[1].fbinfo->rotation) << 2;
> +
> +
> 	crclog[logindex] = retcrc_sw;
> +							}
>  						}
> 
> 	igt_pipe_crc_get_for_frame(data->gfx_fd, data->pipe_crc, fliphw,
> &retcrc_hw);
> 
> @@ -849,18 +909,18 @@ static void test_multi_plane_rotation(data_t *data,
> enum pipe pipe)
> 
>  						igt_debug("crc %.8s vs %.8s --
> %.4s - %.4s crc buffered:%s rot1 %d rot2 %d\n",
>  							str1, str2,
> -							(char *) &p[0].format,
> (char *) &p[1].format,
> -							have_crc?"yes":" no",
> +							(char *)
> &multiplaneformatlist[p[0].formatindex],
> +							(char *)
> &multiplaneformatlist[p[1].formatindex],
> +							have_crc ? "yes" : "
> no",
>  							(int[]) {0, 90, 180, 270}
> [ctz(planeconfigs[i].rotation)],
>  							(int[]) {0, 90, 180, 270}
> [ctz(planeconfigs[j].rotation)]);
> 
>  						free(str1);
>  						free(str2);
> 
> -
> 
> 	igt_assert_crc_equal(&retcrc_sw, &retcrc_hw);
> 
> -						lastroundjformat =
> p[1].format;
> +						lastroundjformat =
> multiplaneformatlist[p[1].formatindex];
>  						lastroundirotation =
> planeconfigs[i].rotation;
>  						lastroundjrotation =
> planeconfigs[j].rotation;
>  					}
> @@ -881,13 +941,12 @@ static void test_multi_plane_rotation(data_t *data,
> enum pipe pipe)
>  		lastroundirotation = 0;
>  		lastroundjrotation = 0;
> 
> -
>  		igt_output_set_pipe(output, PIPE_NONE);
>  	}
>  	data->pipe_crc = NULL;
> 
>  	for (c = 0; c < ARRAY_SIZE(planeconfigs); c++) {
> -		for  (d = 0; d < ARRAY_SIZE(formatlist); d++) {
> +		for  (d = 0; d < ARRAY_SIZE(multiplaneformatlist); d++) {
>  			igt_remove_fb(data->gfx_fd,
> &planeconfigs[c].fbs[d][MULTIPLANE_REFERENCE]);
>  			igt_remove_fb(data->gfx_fd,
> &planeconfigs[c].fbs[d][MULTIPLANE_ROTATED]);
>  		}
> --
> 2.37.3


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

* Re: [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify multiplane rotation tests
  2022-10-04 12:56   ` Kahola, Mika
@ 2022-10-04 18:30     ` Juha-Pekka Heikkila
  0 siblings, 0 replies; 17+ messages in thread
From: Juha-Pekka Heikkila @ 2022-10-04 18:30 UTC (permalink / raw)
  To: Kahola, Mika, igt-dev

On 4.10.2022 15.56, Kahola, Mika wrote:
>> -----Original Message-----
>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Juha-
>> Pekka Heikkila
>> Sent: Tuesday, September 27, 2022 10:12 PM
>> To: igt-dev@lists.freedesktop.org
>> Subject: [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify
>> multiplane rotation tests
>>
>> As is multiplane rotation tests are far from readable, here attempt to break it to
>> bit more readable form. No functional change on test itself.
>>
> 
> Seems that there are no functional changes.
> 
> Reviewed-by: Mika Kahola <mika.kahola@intel.com>

thanks. changes merged.

/Juha-Pekka

> 
>> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
>> ---
>>   tests/kms_rotation_crc.c | 297 +++++++++++++++++++++++----------------
>>   1 file changed, 178 insertions(+), 119 deletions(-)
>>
>> diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index
>> 53f1f6ec1..755da20e7 100644
>> --- a/tests/kms_rotation_crc.c
>> +++ b/tests/kms_rotation_crc.c
>> @@ -60,6 +60,24 @@ enum rectangle_type {
>>   	num_rectangle_types /* must be last */  };
>>
>> +/*
>> + * These are those modes which are tested on multiplane test.
>> + * For testing feel interesting case with modifier are 2BPP, 4BPP, NV12
>> +and
>> + * one P0xx format.
>> + */
>> +const uint32_t multiplaneformatlist[] = { DRM_FORMAT_RGB565,
>> +					  DRM_FORMAT_XRGB8888,
>> +					  DRM_FORMAT_NV12,
>> +					  DRM_FORMAT_P010 };
>> +
>> +typedef struct {
>> +	igt_rotation_t rotation;
>> +	float_t width;
>> +	float_t height;
>> +	uint64_t modifier;
>> +	struct igt_fb fbs[ARRAY_SIZE(multiplaneformatlist)][2];
>> +} planeconfigs_t;
>> +
>>   typedef struct {
>>   	int gfx_fd;
>>   	igt_display_t display;
>> @@ -76,7 +94,6 @@ typedef struct {
>>   	uint64_t override_modifier;
>>   	int devid;
>>
>> -	struct p_struct *multiplaneoldview;
>>   	struct p_point planepos[MAXMULTIPLANESAMOUNT];
>>
>>   	bool use_native_resolution;
>> @@ -571,33 +588,46 @@ static void test_plane_rotation(data_t *data, int
>> plane_type, bool test_bad_form  }
>>
>>   typedef struct {
>> -	int32_t x1, y1;
>> -	uint64_t width, height, modifier, format;
>> +	int32_t x1, y1, formatindex;
>>   	igt_plane_t *plane;
>>   	igt_rotation_t rotation_sw, rotation_hw;
>> +	planeconfigs_t *fbinfo;
>>   } planeinfos;
>>
>> -static bool setup_multiplane(data_t *data, planeinfos *planeinfo,
>> -			     struct igt_fb *fbleft,  struct igt_fb *fbright)
>> +static bool setup_multiplane(data_t *data, planeinfos planeinfo[2],
>> drmModeModeInfo *mode,
>> +			     int hwround)
>>   {
>>   	uint32_t w, h;
>> -	struct igt_fb *planes[2] = {fbleft, fbright};
>> +	struct igt_fb *planes[2] = {&planeinfo[0].fbinfo-
>>> fbs[planeinfo[0].formatindex][hwround],
>> +				    &planeinfo[1].fbinfo-
>>> fbs[planeinfo[1].formatindex][hwround]};
>>   	int c;
>>
>> +	if (hwround == MULTIPLANE_REFERENCE) {
>> +		planeinfo[0].rotation_sw = planeinfo[0].fbinfo->rotation;
>> +		planeinfo[1].rotation_sw = planeinfo[1].fbinfo->rotation;
>> +		planeinfo[0].rotation_hw = IGT_ROTATION_0;
>> +		planeinfo[1].rotation_hw = IGT_ROTATION_0;
>> +	} else {
>> +		planeinfo[0].rotation_sw = IGT_ROTATION_0;
>> +		planeinfo[1].rotation_sw = IGT_ROTATION_0;
>> +		planeinfo[0].rotation_hw = planeinfo[0].fbinfo->rotation;
>> +		planeinfo[1].rotation_hw = planeinfo[1].fbinfo->rotation;
>> +	}
>> +
>>   	for (c = 0; c < ARRAY_SIZE(planes); c++) {
>>   		/*
>>   		 * make plane and fb width and height always divisible by 4
>>   		 * due to NV12 support and Intel hw workarounds.
>>   		 */
>> -		w = planeinfo[c].width & ~3;
>> -		h = planeinfo[c].height & ~3;
>> +		w = (uint64_t)(planeinfo[c].fbinfo->width *
>> TEST_WIDTH(mode)) & ~3;
>> +		h = (uint64_t)(planeinfo[c].fbinfo->height *
>> TEST_HEIGHT(mode)) & ~3;
>>
>>   		if (igt_rotation_90_or_270(planeinfo[c].rotation_sw))
>>   			igt_swap(w, h);
>>
>>   		if (!igt_plane_has_format_mod(planeinfo[c].plane,
>> -					      planeinfo[c].format,
>> -					      planeinfo[c].modifier))
>> +
>> multiplaneformatlist[planeinfo[c].formatindex],
>> +					      planeinfo[c].fbinfo->modifier))
>>   			return false;
>>
>>   		/*
>> @@ -605,8 +635,9 @@ static bool setup_multiplane(data_t *data, planeinfos
>> *planeinfo,
>>   		 * new fb?
>>   		 */
>>   		if (planes[c]->fb_id == 0) {
>> -			igt_create_fb(data->gfx_fd, w, h, planeinfo[c].format,
>> -				      planeinfo[c].modifier, planes[c]);
>> +			igt_create_fb(data->gfx_fd, w, h,
>> +
>> multiplaneformatlist[planeinfo[c].formatindex],
>> +				      planeinfo[c].fbinfo->modifier, planes[c]);
>>
>>   			paint_squares(data, planeinfo[c].rotation_sw,
>>   				      planes[c], 1.0f);
>> @@ -625,7 +656,7 @@ static bool setup_multiplane(data_t *data, planeinfos
>> *planeinfo,
>>   	return true;
>>   }
>>
>> -static void pointlocation(data_t *data, planeinfos *p, drmModeModeInfo
>> *mode,
>> +static void pointlocation(data_t *data, planeinfos p[2],
>> +drmModeModeInfo *mode,
>>   			  int c)
>>   {
>>   	if (data->planepos[c].origo & p_right) { @@ -655,11 +686,88 @@ static
>> void pointlocation(data_t *data, planeinfos *p, drmModeModeInfo *mode,
>>   	}
>>   }
>>
>> +static bool multiplaneskiproundcheck(data_t *data, planeinfos p[2]) {
>> +	/*
>> +	 * RGB565 90/270 degrees rotation is supported
>> +	 * from gen11 onwards.
>> +	 */
>> +	if (multiplaneformatlist[p[0].formatindex] == DRM_FORMAT_RGB565
>> &&
>> +	    igt_rotation_90_or_270(p[0].fbinfo->rotation)
>> +	    && intel_display_ver(data->devid) < 11)
>> +		return false;
>> +
>> +	if (multiplaneformatlist[p[1].formatindex] == DRM_FORMAT_RGB565
>> &&
>> +	    igt_rotation_90_or_270(p[1].fbinfo->rotation)
>> +	    && intel_display_ver(data->devid) < 11)
>> +		return false;
>> +
>> +	if (!igt_plane_has_rotation(p[0].plane, p[0].fbinfo->rotation))
>> +		return false;
>> +
>> +	if (!igt_plane_has_rotation(p[1].plane, p[1].fbinfo->rotation))
>> +		return false;
>> +
>> +	return true;
>> +}
>> +
>>   /*
>>    * count trailing zeroes
>>    */
>>   #define ctz __builtin_ctz
>>
>> +/*
>> + * this is to make below inner loops more readable.
>> + * 1 = left plane has palar format
>> + * 2 = right plane has planar format
>> + * 3 = both planes has planar formats
>> + */
>> +#define planarcheck
>> (igt_format_is_yuv_semiplanar(multiplaneformatlist[p[0].formatindex]) | \
>> +
>> +(igt_format_is_yuv_semiplanar(multiplaneformatlist[p[1].formatindex])
>> +<< 1))
>> +
>> +/*
>> + * used formats are packed formats and these rotation were already seen
>> +on
>> + * screen so crc was already logged?
>> + */
>> +static bool havepackedcrc(planeinfos p[2], igt_crc_t crclog[16]) {
>> +	int logindex;
>> +
>> +	if (planarcheck != 0)
>> +		return false;
>> +
>> +	logindex = ctz(p[0].fbinfo->rotation);
>> +	logindex |= ctz(p[1].fbinfo->rotation) << 2;
>> +
>> +	if (crclog[logindex].frame == 0)
>> +		return false;
>> +
>> +	return true;
>> +}
>> +
>> +/*
>> + * check left plane has planar format, right plane doesn't have planar
>> +format
>> + * and rotations stay the same, if all these are true crc can be
>> +re-used from
>> + * previous round.
>> + */
>> +static bool reusecrcfromlastround(planeinfos p[2], int lastroundp1format,
>> +				  int lastroundp0rotation,
>> +				  int lastroundp1rotation)
>> +{
>> +	if (planarcheck != 1)
>> +		return false;
>> +
>> +	if (igt_format_is_yuv_semiplanar(lastroundp1format))
>> +		return false;
>> +
>> +	if (p[0].fbinfo->rotation != lastroundp0rotation)
>> +		return false;
>> +
>> +	if (p[1].fbinfo->rotation != lastroundp1rotation)
>> +		return false;
>> +
>> +	return true;
>> +}
>>   /*
>>    * Here is pipe parameter which is now used only for first pipe.
>>    * It is left here if this test ever was wanted to be run on @@ -671,41 +779,29
>> @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
>>   	igt_output_t *output;
>>   	igt_crc_t retcrc_sw, retcrc_hw;
>>   	planeinfos p[2];
>> -	int used_w, used_h, lastroundirotation = 0, lastroundjrotation = 0,
>> +	int lastroundirotation = 0, lastroundjrotation = 0,
>>   	    lastroundjformat = 0, c, d;
>>   	drmModeModeInfo *mode;
>>   	bool have_crc; // flag if can use previously logged crc for comparison
>>   	igt_crc_t crclog[16] = {}; //4 * 4 rotation crc storage for packed formats
>>   	char *str1, *str2; // for debug printouts
>> -
>> -	/*
>> -	 * These are those modes which are tested. For testing feel interesting
>> -	 * case with modifier are 2 bpp, 4 bpp and NV12.
>> -	 */
>> -	static const uint32_t formatlist[] = {DRM_FORMAT_RGB565,
>> -		DRM_FORMAT_XRGB8888, DRM_FORMAT_NV12,
>> DRM_FORMAT_P010};
>> -
>> -	static struct {
>> -		igt_rotation_t rotation;
>> -		float_t width;
>> -		float_t height;
>> -		uint64_t modifier;
>> -		struct igt_fb fbs[ARRAY_SIZE(formatlist)][2];
>> -	} planeconfigs[] = {
>> -	{IGT_ROTATION_0, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
>> -	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
>> -	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>> -	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>> -	{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
>> -	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>> -	{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>> -	{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
>> -	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
>> -	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>> -	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>> -	{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
>> -	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>> -	{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>> +	int logindex;
>> +
>> +	static planeconfigs_t planeconfigs[] = {
>> +		{IGT_ROTATION_0, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
>> +		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_X_TILED },
>> +		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>> +		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>> +		{IGT_ROTATION_0, .2f, .4f, I915_FORMAT_MOD_4_TILED },
>> +		{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>> +		{IGT_ROTATION_90, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>> +		{IGT_ROTATION_180, .2f, .4f, DRM_FORMAT_MOD_LINEAR },
>> +		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_X_TILED },
>> +		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>> +		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>> +		{IGT_ROTATION_180, .2f, .4f, I915_FORMAT_MOD_4_TILED },
>> +		{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Y_TILED },
>> +		{IGT_ROTATION_270, .2f, .4f, I915_FORMAT_MOD_Yf_TILED },
>>   	};
>>
>>   	for_each_valid_output_on_pipe(display, pipe, output) { @@ -715,9
>> +811,6 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
>>   		igt_display_require_output(display);
>>   		igt_display_commit2(display, COMMIT_ATOMIC);
>>
>> -		used_w = TEST_WIDTH(mode);
>> -		used_h = TEST_HEIGHT(mode);
>> -
>>   		p[0].plane = igt_output_get_plane_type(output,
>> DRM_PLANE_TYPE_PRIMARY);
>>   		p[1].plane = igt_output_get_plane_type(output,
>> DRM_PLANE_TYPE_OVERLAY);
>>
>> @@ -726,88 +819,60 @@ 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++) {
>> -			p[0].width = (uint64_t)(planeconfigs[i].width * used_w);
>> -			p[0].height = (uint64_t)(planeconfigs[i].height *
>> used_h);
>> -			p[0].modifier = planeconfigs[i].modifier;
>> -			pointlocation(data, (planeinfos *)&p, mode, 0);
>> +			p[0].fbinfo = &planeconfigs[i];
>> +			pointlocation(data, p, mode, 0);
>>
>> -			for (k = 0; k < ARRAY_SIZE(formatlist); k++) {
>> -				p[0].format = formatlist[k];
>> +			for (k = 0; k < ARRAY_SIZE(multiplaneformatlist); k++) {
>> +				p[0].formatindex = k;
>>
>>   				for (j = 0; j < ARRAY_SIZE(planeconfigs); j++) {
>> -					p[1].width =
>> (uint64_t)(planeconfigs[j].width * used_w);
>> -					p[1].height =
>> (uint64_t)(planeconfigs[j].height * used_h);
>> -					p[1].modifier =
>> planeconfigs[j].modifier;
>> -					pointlocation(data, (planeinfos *)&p,
>> -						      mode, 1);
>> -
>> -					for (l = 0; l < ARRAY_SIZE(formatlist);
>> l++) {
>> -						p[1].format = formatlist[l];
>> -						/*
>> -						 * RGB565 90/270 degrees
>> rotation is supported
>> -						 * from gen11 onwards.
>> -						 */
>> -						if (p[0].format ==
>> DRM_FORMAT_RGB565 &&
>> -
>> igt_rotation_90_or_270(planeconfigs[i].rotation)
>> -						     && intel_display_ver(data-
>>> devid) < 11)
>> -							continue;
>> +					p[1].fbinfo = &planeconfigs[j];
>> +					pointlocation(data, p, mode, 1);
>>
>> -						if (p[1].format ==
>> DRM_FORMAT_RGB565 &&
>> -
>> igt_rotation_90_or_270(planeconfigs[j].rotation)
>> -						     && intel_display_ver(data-
>>> devid) < 11)
>> -							continue;
>> -
>> -						if
>> (!igt_plane_has_rotation(p[0].plane,
>> -
>> planeconfigs[i].rotation))
>> -							continue;
>> +					for (l = 0; l <
>> ARRAY_SIZE(multiplaneformatlist); l++) {
>> +						p[1].formatindex = l;
>>
>> -						if
>> (!igt_plane_has_rotation(p[1].plane,
>> -
>> planeconfigs[j].rotation))
>> +						if
>> (!multiplaneskiproundcheck(data, p))
>>   							continue;
>>
>>   						/*
>>   						 * if using packed formats crc's
>> will be
>>   						 * same and can store them so
>> there's
>> -						 * no need to redo comparison
>> image and
>> +						 * no need to redo reference
>> image and
>>   						 * just use stored crc.
>>   						 */
>> -						if
>> (!igt_format_is_yuv_semiplanar(p[0].format) &&
>> !igt_format_is_yuv_semiplanar(p[1].format) &&
>> -
>> crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)].frame
>> != 0) {
>> -							retcrc_sw =
>> crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)];
>> +						if (havepackedcrc(p, crclog)) {
>> +							logindex =
>> ctz(p[0].fbinfo->rotation);
>> +							logindex |=
>> ctz(p[1].fbinfo->rotation) << 2;
>> +
>> +							retcrc_sw =
>> crclog[logindex];
>>   							have_crc = true;
>> -						} else if((p[0].format ==
>> DRM_FORMAT_NV12 || p[0].format == DRM_FORMAT_P010) &&
>> -							   p[1].format !=
>> DRM_FORMAT_NV12 && p[1].format != DRM_FORMAT_P010 &&
>> -							   lastroundjformat !=
>> DRM_FORMAT_NV12 && lastroundjformat != DRM_FORMAT_P010 &&
>> -
>> planeconfigs[i].rotation == lastroundirotation &&
>> -
>> planeconfigs[j].rotation == lastroundjrotation) {
>> +						} else
>> if(reusecrcfromlastround(p, lastroundjformat,
>> +
>> 	lastroundirotation,
>> +
>> 	lastroundjrotation)) {
>>   							/*
>> -							 * With NV12 can
>> benefit from
>> -							 * previous crc if
>> rotations
>> +							 * With planar formats
>> can benefit
>> +							 * from previous crc if
>> rotations
>>   							 * stay same. If both
>> planes
>> -							 * have NV12 in use we
>> need to
>> -							 * skip that case.
>> +							 * have planar format
>> in use we
>> +							 * need to skip that
>> case.
>>   							 * If last round right
>> plane
>> -							 * had NV12 need to
>> skip this.
>> +							 * had planar format
>> need to skip
>> +							 * this.
>>   							 */
>>   							have_crc = true;
>>   						} else {
>>   							/*
>>   							 * here will be created
>> -							 * comparison image
>> and get crc
>> +							 * reference image and
>> get crc
>>   							 * if didn't have stored
>> crc
>>   							 * or planar format is
>> in use.
>>   							 * have_crc flag will
>> control
>>   							 * crc comparison part.
>>   							 */
>> -							p[0].rotation_sw =
>> planeconfigs[i].rotation;
>> -							p[0].rotation_hw =
>> IGT_ROTATION_0;
>> -							p[1].rotation_sw =
>> planeconfigs[j].rotation;
>> -							p[1].rotation_hw =
>> IGT_ROTATION_0;
>> -							if
>> (!setup_multiplane(data,
>> -
>> 	(planeinfos *)&p,
>> -
>> 	&planeconfigs[i].fbs[k][MULTIPLANE_REFERENCE],
>> -
>> 	&planeconfigs[j].fbs[l][MULTIPLANE_REFERENCE]))
>> +							if
>> (!setup_multiplane(data, p, mode, MULTIPLANE_REFERENCE))
>>   								continue;
>> +
>>
>> 	igt_display_commit_atomic(display,
>> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>>   							flipsw =
>> kmstest_get_vblank(data->gfx_fd, pipe, 0) + 1;
>>   							have_crc = false;
>> @@ -818,15 +883,7 @@ static void test_multi_plane_rotation(data_t *data,
>> enum pipe pipe)
>>   						 * get vblank where interesting
>>   						 * crc will be at, grab crc bit
>> later
>>   						 */
>> -						p[0].rotation_sw =
>> IGT_ROTATION_0;
>> -						p[0].rotation_hw =
>> planeconfigs[i].rotation;
>> -						p[1].rotation_sw =
>> IGT_ROTATION_0;
>> -						p[1].rotation_hw =
>> planeconfigs[j].rotation;
>> -
>> -						if (!setup_multiplane(data,
>> -								      (planeinfos
>> *)&p,
>> -
>> &planeconfigs[i].fbs[k][MULTIPLANE_ROTATED],
>> -
>> &planeconfigs[j].fbs[l][MULTIPLANE_ROTATED]))
>> +						if (!setup_multiplane(data, p,
>> mode, MULTIPLANE_ROTATED))
>>   							continue;
>>
>>
>> 	igt_display_commit_atomic(display,
>> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); @@ -838,9 +895,12 @@
>> static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
>>
>> 	   flipsw,
>>
>> 	   &retcrc_sw);
>>
>> -							if
>> (!igt_format_is_yuv_semiplanar(p[0].format)
>> &&!igt_format_is_yuv_semiplanar(p[1].format))
>> -
>> 	crclog[ctz(planeconfigs[i].rotation) | (ctz(planeconfigs[j].rotation) << 2)]
>> -								= retcrc_sw;
>> +							if (planarcheck == 0) {
>> +								logindex =
>> ctz(p[0].fbinfo->rotation);
>> +								logindex |=
>> ctz(p[1].fbinfo->rotation) << 2;
>> +
>> +
>> 	crclog[logindex] = retcrc_sw;
>> +							}
>>   						}
>>
>> 	igt_pipe_crc_get_for_frame(data->gfx_fd, data->pipe_crc, fliphw,
>> &retcrc_hw);
>>
>> @@ -849,18 +909,18 @@ static void test_multi_plane_rotation(data_t *data,
>> enum pipe pipe)
>>
>>   						igt_debug("crc %.8s vs %.8s --
>> %.4s - %.4s crc buffered:%s rot1 %d rot2 %d\n",
>>   							str1, str2,
>> -							(char *) &p[0].format,
>> (char *) &p[1].format,
>> -							have_crc?"yes":" no",
>> +							(char *)
>> &multiplaneformatlist[p[0].formatindex],
>> +							(char *)
>> &multiplaneformatlist[p[1].formatindex],
>> +							have_crc ? "yes" : "
>> no",
>>   							(int[]) {0, 90, 180, 270}
>> [ctz(planeconfigs[i].rotation)],
>>   							(int[]) {0, 90, 180, 270}
>> [ctz(planeconfigs[j].rotation)]);
>>
>>   						free(str1);
>>   						free(str2);
>>
>> -
>>
>> 	igt_assert_crc_equal(&retcrc_sw, &retcrc_hw);
>>
>> -						lastroundjformat =
>> p[1].format;
>> +						lastroundjformat =
>> multiplaneformatlist[p[1].formatindex];
>>   						lastroundirotation =
>> planeconfigs[i].rotation;
>>   						lastroundjrotation =
>> planeconfigs[j].rotation;
>>   					}
>> @@ -881,13 +941,12 @@ static void test_multi_plane_rotation(data_t *data,
>> enum pipe pipe)
>>   		lastroundirotation = 0;
>>   		lastroundjrotation = 0;
>>
>> -
>>   		igt_output_set_pipe(output, PIPE_NONE);
>>   	}
>>   	data->pipe_crc = NULL;
>>
>>   	for (c = 0; c < ARRAY_SIZE(planeconfigs); c++) {
>> -		for  (d = 0; d < ARRAY_SIZE(formatlist); d++) {
>> +		for  (d = 0; d < ARRAY_SIZE(multiplaneformatlist); d++) {
>>   			igt_remove_fb(data->gfx_fd,
>> &planeconfigs[c].fbs[d][MULTIPLANE_REFERENCE]);
>>   			igt_remove_fb(data->gfx_fd,
>> &planeconfigs[c].fbs[d][MULTIPLANE_ROTATED]);
>>   		}
>> --
>> 2.37.3
> 

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

end of thread, other threads:[~2022-10-04 18:30 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27 19:11 [igt-dev] [PATCH i-g-t 0/4] misc fixes Juha-Pekka Heikkila
2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 1/4] tests/kms_cursor_crc: wait for cursor only when needed Juha-Pekka Heikkila
2022-09-28 22:29   ` Jessica Zhang
2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 2/4] tests/kms_rotation_crc: add I915_FORMAT_MOD_4_TILED to multiplane rotation tests Juha-Pekka Heikkila
2022-10-04  9:18   ` Kahola, Mika
2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 3/4] lib/rendercopy: separate intel clear color functions Juha-Pekka Heikkila
2022-10-04  9:20   ` Kahola, Mika
2022-09-27 19:11 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_rotation_crc: try to simplify multiplane rotation tests Juha-Pekka Heikkila
2022-10-04 12:56   ` Kahola, Mika
2022-10-04 18:30     ` Juha-Pekka Heikkila
2022-09-27 20:23 ` [igt-dev] ✓ Fi.CI.BAT: success for misc fixes Patchwork
2022-09-28 11:23 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-09-28 11:47   ` Juha-Pekka Heikkila
2022-09-28 17:21     ` Vudum, Lakshminarayana
2022-09-28 19:25       ` Juha-Pekka Heikkila
2022-09-28 16:14 ` Patchwork
2022-09-28 16:58 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork

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