All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [RFC PATCH i-g-t v2 0/2] tests/kms_ccs: CCS Clear Color test
@ 2020-06-11 12:30 Mika Kahola
  2020-06-11 12:31 ` [igt-dev] [RFC PATCH i-g-t v2 1/2] tests/kms_ccs: Add debug information on format modifier Mika Kahola
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Mika Kahola @ 2020-06-11 12:30 UTC (permalink / raw)
  To: igt-dev

This is a RFC patch that proposes to test CCS clear color
capability. This is actually a third edition of the clear color
tests. The first two required tweaking and all received comments
have been helpful. Therefore, any comments/proposals to improve
the test are warmly welcomed

The test paints a solid color on primary fb and a small sprite fb.
These are cleared with fast clear feature. A crc is captured and
compared against the reference.

Logically it may be an odd plae to define color clear function in
intel_batchbuffer.c but I decided to do so as we have rendercopy and
veboxcopy functions defined there as well.

v2: Modify _gen9_render_copyfunc to support fast clear (Matt)
    Enable fast clear bit on 3D sequence (Matt)
    Add helper function to figure out clear color modifier (Matt)

Mika Kahola (2):
  tests/kms_ccs: Add debug information on format modifier
  tests/kms_ccs: CCS Clear Color test

 lib/gen8_render.h       |  1 +
 lib/intel_batchbuffer.c | 10 +++++
 lib/intel_batchbuffer.h |  6 +++
 lib/rendercopy.h        |  5 +++
 lib/rendercopy_gen9.c   | 56 ++++++++++++++++++++-----
 tests/kms_ccs.c         | 91 ++++++++++++++++++++++++++++++++++-------
 6 files changed, 145 insertions(+), 24 deletions(-)

-- 
2.20.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] [RFC PATCH i-g-t v2 1/2] tests/kms_ccs: Add debug information on format modifier
  2020-06-11 12:30 [igt-dev] [RFC PATCH i-g-t v2 0/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
@ 2020-06-11 12:31 ` Mika Kahola
  2020-06-11 12:31 ` [igt-dev] [RFC PATCH i-g-t v2 2/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Mika Kahola @ 2020-06-11 12:31 UTC (permalink / raw)
  To: igt-dev

We could benefit on information on what format modifier is in use
when running the test. This in mind, let's add informative string along
with the list of ccs modifiers.

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
---
 tests/kms_ccs.c | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
index bc34aec5..c23b4e44 100644
--- a/tests/kms_ccs.c
+++ b/tests/kms_ccs.c
@@ -81,12 +81,15 @@ static const uint32_t formats[] = {
 	DRM_FORMAT_P016,
 };
 
-static const uint64_t ccs_modifiers[] = {
-	LOCAL_I915_FORMAT_MOD_Y_TILED_CCS,
-	LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS,
-	LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS,
-	LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC,
-	LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS,
+static const struct {
+	uint64_t modifier;
+	const char *str;
+} ccs_modifiers[5] = {
+	{LOCAL_I915_FORMAT_MOD_Y_TILED_CCS, "LOCAL_I915_FORMAT_MOD_Y_TILED_CCS"},
+	{LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS, "LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS"},
+	{LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS, "LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS"},
+	{LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC, "LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC"},
+	{LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS, "LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS"},
 };
 
 static bool check_ccs_planes;
@@ -422,7 +425,8 @@ static int __test_output(data_t *data)
 	for (i = 0; i < ARRAY_SIZE(ccs_modifiers); i++) {
 		int j;
 
-		data->ccs_modifier = ccs_modifiers[i];
+		data->ccs_modifier = ccs_modifiers[i].modifier;
+		igt_debug("Modifier in use: %s\n", ccs_modifiers[i].str);
 		for (j = 0; j < ARRAY_SIZE(formats); j++) {
 			data->format = formats[j];
 			valid_tests += test_ccs(data);
-- 
2.20.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] [RFC PATCH i-g-t v2 2/2] tests/kms_ccs: CCS Clear Color test
  2020-06-11 12:30 [igt-dev] [RFC PATCH i-g-t v2 0/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
  2020-06-11 12:31 ` [igt-dev] [RFC PATCH i-g-t v2 1/2] tests/kms_ccs: Add debug information on format modifier Mika Kahola
@ 2020-06-11 12:31 ` Mika Kahola
  2020-06-11 13:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: CCS Clear Color test (rev3) Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Mika Kahola @ 2020-06-11 12:31 UTC (permalink / raw)
  To: igt-dev

This is a RFC patch that proposes to test CCS clear color
capability.

The test paints a solid color on primary fb and a small sprite fb.
These are cleared with fast clear feature. A crc is captured and
compared against the reference.

Clear Color testing is performed with Clear Color DRM format modifier
and with YUV format only.

Any comments/proposals to improve the test are warmly welcomed.

v2: Modify _gen9_render_copyfunc to support fast clear (Matt)
    Enable fast clear bit on 3D sequence (Matt)
    Add helper function to figure out clear color modifier (Matt)

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
 lib/gen8_render.h       |  1 +
 lib/intel_batchbuffer.c | 10 ++++++
 lib/intel_batchbuffer.h |  6 ++++
 lib/rendercopy.h        |  5 +++
 lib/rendercopy_gen9.c   | 56 +++++++++++++++++++++++++------
 tests/kms_ccs.c         | 73 +++++++++++++++++++++++++++++++++++++----
 6 files changed, 134 insertions(+), 17 deletions(-)

diff --git a/lib/gen8_render.h b/lib/gen8_render.h
index 31dc01bc..1b0f527e 100644
--- a/lib/gen8_render.h
+++ b/lib/gen8_render.h
@@ -26,6 +26,7 @@
 
 # define GEN8_VS_FLOATING_POINT_MODE_ALTERNATE          (1 << 16)
 
+#define GEN8_3DSTATE_FAST_CLEAR_ENABLE		(1 << 8)
 #define GEN8_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP	\
 						GEN4_3D(3, 0, 0x21)
 #define GEN8_3DSTATE_PS_BLEND			GEN4_3D(3, 0, 0x4d)
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index f1a45b47..fb5b49a4 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -1090,6 +1090,16 @@ igt_vebox_copyfunc_t igt_get_vebox_copyfunc(int devid)
 	return copy;
 }
 
+igt_render_clearfunc_t igt_get_render_clearfunc(int devid)
+{
+	igt_render_clearfunc_t clear = NULL;
+
+	if (IS_GEN12(devid))
+		clear = gen12_render_clearfunc;
+
+	return clear;
+}
+
 /**
  * igt_get_media_fillfunc:
  * @devid: pci device id
diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h
index 442f3a18..9f00d9ae 100644
--- a/lib/intel_batchbuffer.h
+++ b/lib/intel_batchbuffer.h
@@ -367,6 +367,12 @@ typedef void (*igt_vebox_copyfunc_t)(struct intel_batchbuffer *batch,
 
 igt_vebox_copyfunc_t igt_get_vebox_copyfunc(int devid);
 
+typedef void (*igt_render_clearfunc_t)(struct intel_batchbuffer *batch,
+				       drm_intel_context *context,
+				       const struct igt_buf *dst, unsigned int dst_x, unsigned int dst_y,
+				       unsigned int width, unsigned int height);
+igt_render_clearfunc_t igt_get_render_clearfunc(int devid);
+
 /**
  * igt_fillfunc_t:
  * @batch: batchbuffer object
diff --git a/lib/rendercopy.h b/lib/rendercopy.h
index e0577cac..b0eb66de 100644
--- a/lib/rendercopy.h
+++ b/lib/rendercopy.h
@@ -23,6 +23,11 @@ static inline void emit_vertex_normalized(struct intel_batchbuffer *batch,
 	OUT_BATCH(u.ui);
 }
 
+void gen12_render_clearfunc(struct intel_batchbuffer *batch,
+                            drm_intel_context *context,
+                            const struct igt_buf *dst, unsigned int dst_x, unsigned int dst_y,
+                            unsigned int width, unsigned int height);
+
 void gen12_render_copyfunc(struct intel_batchbuffer *batch,
 			   drm_intel_context *context,
 			   const struct igt_buf *src, unsigned src_x, unsigned src_y,
diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
index 85ae4cab..215fc020 100644
--- a/lib/rendercopy_gen9.c
+++ b/lib/rendercopy_gen9.c
@@ -303,7 +303,9 @@ gen8_bind_surfaces(struct intel_batchbuffer *batch,
 			     offset, 8);
 
 	binding_table[0] = gen8_bind_buf(batch, dst, 1);
-	binding_table[1] = gen8_bind_buf(batch, src, 0);
+
+	if (src != NULL)
+		binding_table[1] = gen8_bind_buf(batch, src, 0);
 
 	return offset;
 }
@@ -370,16 +372,25 @@ gen7_fill_vertex_buffer_data(struct intel_batchbuffer *batch,
 	start = batch->ptr;
 
 	emit_vertex_2s(batch, dst_x + width, dst_y + height);
-	emit_vertex_normalized(batch, src_x + width, igt_buf_width(src));
-	emit_vertex_normalized(batch, src_y + height, igt_buf_height(src));
+
+	if (src != NULL) {
+		emit_vertex_normalized(batch, src_x + width, igt_buf_width(src));
+		emit_vertex_normalized(batch, src_y + height, igt_buf_height(src));
+	}
 
 	emit_vertex_2s(batch, dst_x, dst_y + height);
-	emit_vertex_normalized(batch, src_x, igt_buf_width(src));
-	emit_vertex_normalized(batch, src_y + height, igt_buf_height(src));
+
+	if (src != NULL) {
+		emit_vertex_normalized(batch, src_x, igt_buf_width(src));
+		emit_vertex_normalized(batch, src_y + height, igt_buf_height(src));
+	}
 
 	emit_vertex_2s(batch, dst_x, dst_y);
-	emit_vertex_normalized(batch, src_x, igt_buf_width(src));
-	emit_vertex_normalized(batch, src_y, igt_buf_height(src));
+
+	if (src != NULL) {
+		emit_vertex_normalized(batch, src_x, igt_buf_width(src));
+		emit_vertex_normalized(batch, src_y, igt_buf_height(src));
+	}
 
 	offset = intel_batchbuffer_subdata_offset(batch, start);
 	annotation_add_state(&aub_annotations, AUB_TRACE_VERTEX_BUFFER,
@@ -843,7 +854,7 @@ gen8_emit_sf(struct intel_batchbuffer *batch)
 }
 
 static void
-gen8_emit_ps(struct intel_batchbuffer *batch, uint32_t kernel) {
+gen8_emit_ps(struct intel_batchbuffer *batch, uint32_t kernel, bool fast_clear) {
 	const int max_threads = 63;
 
 	OUT_BATCH(GEN6_3DSTATE_WM | (2 - 2));
@@ -871,6 +882,10 @@ gen8_emit_ps(struct intel_batchbuffer *batch, uint32_t kernel) {
 		  2 << GEN6_3DSTATE_WM_BINDING_TABLE_ENTRY_COUNT_SHIFT);
 	OUT_BATCH(0); /* scratch space stuff */
 	OUT_BATCH(0); /* scratch hi */
+
+	if (fast_clear)
+		OUT_BATCH(GEN8_3DSTATE_FAST_CLEAR_ENABLE);
+
 	OUT_BATCH((max_threads - 1) << GEN8_3DSTATE_PS_MAX_THREADS_SHIFT |
 		  GEN6_3DSTATE_WM_16_DISPATCH_ENABLE);
 	OUT_BATCH(6 << GEN6_3DSTATE_WM_DISPATCH_START_GRF_0_SHIFT);
@@ -1005,8 +1020,11 @@ void _gen9_render_copyfunc(struct intel_batchbuffer *batch,
 	uint32_t vertex_buffer;
 	uint32_t batch_end;
 	uint32_t aux_pgtable_state;
+	bool fast_clear = src != NULL ? false : true;
+
+	if (src != NULL)
+		igt_assert(src->bpp == dst->bpp);
 
-	igt_assert(src->bpp == dst->bpp);
 	intel_batchbuffer_flush_with_context(batch, context);
 
 	intel_batchbuffer_align(batch, 8);
@@ -1073,7 +1091,7 @@ void _gen9_render_copyfunc(struct intel_batchbuffer *batch,
 
 	gen8_emit_sf(batch);
 
-	gen8_emit_ps(batch, ps_kernel_off);
+	gen8_emit_ps(batch, ps_kernel_off, fast_clear);
 
 	OUT_BATCH(GEN7_3DSTATE_BINDING_TABLE_POINTERS_PS);
 	OUT_BATCH(ps_binding_table);
@@ -1153,3 +1171,21 @@ void gen12_render_copyfunc(struct intel_batchbuffer *batch,
 
 	gen12_aux_pgtable_cleanup(&pgtable_info);
 }
+
+void gen12_render_clearfunc(struct intel_batchbuffer *batch,
+			    drm_intel_context *context,
+			    const struct igt_buf *dst, unsigned int dst_x, unsigned int dst_y,
+			    unsigned int width, unsigned int height)
+{
+	struct aux_pgtable_info pgtable_info = { };
+
+	gen12_aux_pgtable_init(&pgtable_info, batch->bufmgr, NULL, dst);
+
+	_gen9_render_copyfunc(batch, context, NULL, 0, 0,
+			  width, height, dst, dst_x, dst_y,
+			  pgtable_info.pgtable_bo,
+			  gen12_render_copy,
+			  sizeof(gen12_render_copy));
+
+	gen12_aux_pgtable_cleanup(&pgtable_info);
+}
diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
index c23b4e44..f7fc871e 100644
--- a/tests/kms_ccs.c
+++ b/tests/kms_ccs.c
@@ -50,10 +50,12 @@ enum test_fb_flags {
 	FB_MISALIGN_AUX_STRIDE		= 1 << 2,
 	FB_SMALL_AUX_STRIDE		= 1 << 3,
 	FB_ZERO_AUX_STRIDE		= 1 << 4,
+	FB_CLEAR_COLOR			= 1 << 5,
 };
 
 typedef struct {
 	int drm_fd;
+	int devid;
 	igt_display_t display;
 	igt_output_t *output;
 	enum pipe pipe;
@@ -62,6 +64,9 @@ typedef struct {
 	igt_pipe_crc_t *pipe_crc;
 	uint32_t format;
 	uint64_t ccs_modifier;
+	struct igt_fb primary_fb;
+	igt_plane_t *primary;
+	igt_render_clearfunc_t fast_clear;
 } data_t;
 
 static const struct {
@@ -120,6 +125,16 @@ static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
 	}
 }
 
+static bool is_ccs_cc_modifier(uint64_t modifier)
+{
+	switch (modifier) {
+	case LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC:
+		return true;
+	default:
+		return false;
+	}
+}
+
 /*
  * The CCS planes of compressed framebuffers contain non-zero bytes if the
  * engine compressed effectively the framebuffer. The actual encoding of these
@@ -290,6 +305,17 @@ static igt_plane_t *compatible_main_plane(data_t *data)
 	return igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY);
 }
 
+static void scratch_buf_init(data_t *data, drm_intel_bo *drmibo,
+			     struct igt_buf *igtbo)
+{
+	igtbo->bo = drmibo;
+	igtbo->surface[0].stride = data->primary_fb.strides[0];
+	igtbo->tiling = data->primary_fb.modifier;
+	igtbo->surface[0].size = data->primary_fb.size;
+	igtbo->bpp = data->primary_fb.plane_bpp[0];
+}
+
+
 static bool try_config(data_t *data, enum test_fb_flags fb_flags,
 		       igt_crc_t *crc)
 {
@@ -299,6 +325,11 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
 	int fb_width = drm_mode->hdisplay;
 	enum igt_commit_style commit;
 	struct igt_fb fb, fb_sprite;
+	drm_intel_bufmgr *bufmgr = NULL;
+	drm_intel_bo *drmibo;
+	struct intel_batchbuffer *batch;
+	struct igt_buf igtbo;
+	drm_intel_context *ctx;
 	int ret;
 
 	if (data->display.is_atomic)
@@ -333,7 +364,6 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
 
 	if (data->flags & TEST_FAIL_ON_ADDFB2)
 		return true;
-
 	igt_plane_set_position(primary, 0, 0);
 	igt_plane_set_size(primary, drm_mode->hdisplay, drm_mode->vdisplay);
 	igt_plane_set_fb(primary, &fb);
@@ -349,6 +379,25 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
 	if (data->flags & TEST_BAD_ROTATION_90)
 		igt_plane_set_rotation(primary, IGT_ROTATION_90);
 
+	if (fb_flags & FB_CLEAR_COLOR) {
+		drmibo = gem_handle_to_libdrm_bo(bufmgr, data->drm_fd, "",
+						 data->primary_fb.gem_handle);
+		igt_assert(drmibo);
+
+		scratch_buf_init(data, drmibo, &igtbo);
+
+		batch = intel_batchbuffer_alloc(bufmgr, data->devid);
+		igt_assert(batch);
+
+                ctx = drm_intel_gem_context_create(bufmgr);
+                igt_assert(ctx);
+
+		/* use fast clear */
+		data->fast_clear(batch, ctx, &igtbo, 0, 0,
+				 data->primary_fb.width,
+				 data->primary_fb.height);
+	}
+
 	ret = igt_display_try_commit2(display, commit);
 	if (data->flags & TEST_BAD_ROTATION_90) {
 		igt_assert_eq(ret, -EINVAL);
@@ -370,6 +419,7 @@ static bool try_config(data_t *data, enum test_fb_flags fb_flags,
 
 	igt_plane_set_fb(primary, NULL);
 	igt_plane_set_rotation(primary, IGT_ROTATION_0);
+
 	igt_display_commit2(display, commit);
 
 	if (data->flags & TEST_CRC)
@@ -386,12 +436,19 @@ static int test_ccs(data_t *data)
 	if (data->flags & TEST_CRC) {
 		data->pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, INTEL_PIPE_CRC_SOURCE_AUTO);
 
-		if (try_config(data, fb_flags | FB_COMPRESSED, &ref_crc) &&
-		    try_config(data, fb_flags, &crc)) {
-			igt_assert_crc_equal(&crc, &ref_crc);
-			valid_tests++;
+		if (is_ccs_cc_modifier(data->ccs_modifier)) {
+			if (try_config(data, fb_flags | FB_COMPRESSED, &ref_crc) &&
+			    try_config(data, fb_flags | FB_COMPRESSED | FB_CLEAR_COLOR, &crc)) {
+				igt_assert_crc_equal(&crc, &ref_crc);
+				valid_tests++;
+			}
+		} else {
+			if (try_config(data, fb_flags | FB_COMPRESSED, &ref_crc) &&
+			    try_config(data, fb_flags, &crc)) {
+				igt_assert_crc_equal(&crc, &ref_crc);
+				valid_tests++;
+			}
 		}
-
 		igt_pipe_crc_free(data->pipe_crc);
 		data->pipe_crc = NULL;
 	}
@@ -471,11 +528,13 @@ igt_main_args("c", NULL, help_str, opt_handler, NULL)
 	igt_fixture {
 		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
 
-		igt_require(intel_gen(intel_get_drm_devid(data.drm_fd)) >= 9);
+		data.devid = intel_gen(intel_get_drm_devid(data.drm_fd));
+		igt_require(data.devid >= 9);
 		kmstest_set_vt_graphics_mode();
 		igt_require_pipe_crc(data.drm_fd);
 
 		igt_display_require(&data.display, data.drm_fd);
+		data.fast_clear = igt_get_render_clearfunc(data.devid);
 	}
 
 	for_each_pipe_static(pipe) {
-- 
2.20.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: CCS Clear Color test (rev3)
  2020-06-11 12:30 [igt-dev] [RFC PATCH i-g-t v2 0/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
  2020-06-11 12:31 ` [igt-dev] [RFC PATCH i-g-t v2 1/2] tests/kms_ccs: Add debug information on format modifier Mika Kahola
  2020-06-11 12:31 ` [igt-dev] [RFC PATCH i-g-t v2 2/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
@ 2020-06-11 13:34 ` Patchwork
  2020-06-11 17:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2020-06-12  7:11 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-06-11 13:34 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev

== Series Details ==

Series: tests/kms_ccs: CCS Clear Color test (rev3)
URL   : https://patchwork.freedesktop.org/series/76536/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8617 -> IGTPW_4668
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@runner@aborted:
    - {fi-kbl-7560u}:     [FAIL][1] ([i915#1569] / [i915#192] / [i915#193] / [i915#194]) -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-kbl-7560u/igt@runner@aborted.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-kbl-7560u/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@reload:
    - fi-byt-n2820:       [PASS][3] -> [DMESG-WARN][4] ([i915#1982])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-byt-n2820/igt@i915_module_load@reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-byt-n2820/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-whl-u:           [PASS][5] -> [DMESG-WARN][6] ([i915#95])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-whl-u/igt@i915_pm_rpm@basic-pci-d3-state.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-whl-u/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@kms_busy@basic@flip:
    - fi-kbl-x1275:       [PASS][7] -> [DMESG-WARN][8] ([i915#62] / [i915#92] / [i915#95])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-kbl-x1275/igt@kms_busy@basic@flip.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-kbl-x1275/igt@kms_busy@basic@flip.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-u2:          [FAIL][9] ([i915#1888]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_pm_rpm@module-reload:
    - fi-byt-j1900:       [DMESG-WARN][11] ([i915#1982]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html
    - fi-glk-dsi:         [DMESG-WARN][13] ([i915#1982]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-glk-dsi/igt@i915_pm_rpm@module-reload.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-glk-dsi/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gem_contexts:
    - fi-tgl-u2:          [INCOMPLETE][15] ([i915#1932]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-tgl-u2/igt@i915_selftest@live@gem_contexts.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-tgl-u2/igt@i915_selftest@live@gem_contexts.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-bsw-kefka:       [DMESG-WARN][17] ([i915#1982]) -> [PASS][18] +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
    - fi-icl-u2:          [DMESG-WARN][19] ([i915#1982]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-icl-u2/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-icl-u2/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-cml-s:           [DMESG-WARN][21] ([i915#1982]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-cml-s/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-cml-s/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  
#### Warnings ####

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - fi-kbl-x1275:       [DMESG-WARN][23] ([i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][24] ([i915#62] / [i915#92]) +3 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html

  * igt@kms_flip@basic-flip-vs-modeset@a-dp1:
    - fi-kbl-x1275:       [DMESG-WARN][25] ([i915#62] / [i915#92]) -> [DMESG-WARN][26] ([i915#62] / [i915#92] / [i915#95]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html

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

  [i915#1569]: https://gitlab.freedesktop.org/drm/intel/issues/1569
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#192]: https://gitlab.freedesktop.org/drm/intel/issues/192
  [i915#193]: https://gitlab.freedesktop.org/drm/intel/issues/193
  [i915#1932]: https://gitlab.freedesktop.org/drm/intel/issues/1932
  [i915#194]: https://gitlab.freedesktop.org/drm/intel/issues/194
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95


Participating hosts (50 -> 43)
------------------------------

  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5702 -> IGTPW_4668

  CI-20190529: 20190529
  CI_DRM_8617: 2100025f87587a1dcf07985174c79a68c4a550eb @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4668: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/index.html
  IGT_5702: d16ad07e7f2a028e14d61f570931c87fa5ce404c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_ccs: CCS Clear Color test (rev3)
  2020-06-11 12:30 [igt-dev] [RFC PATCH i-g-t v2 0/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
                   ` (2 preceding siblings ...)
  2020-06-11 13:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: CCS Clear Color test (rev3) Patchwork
@ 2020-06-11 17:55 ` Patchwork
  2020-06-12  5:40   ` Kahola, Mika
  2020-06-12  7:11 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  4 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2020-06-11 17:55 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev

== Series Details ==

Series: tests/kms_ccs: CCS Clear Color test (rev3)
URL   : https://patchwork.freedesktop.org/series/76536/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_8617_full -> IGTPW_4668_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@perf_pmu@init-busy@vcs0:
    - shard-snb:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-snb5/igt@perf_pmu@init-busy@vcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-snb6/igt@perf_pmu@init-busy@vcs0.html

  * igt@perf_pmu@init-busy@vecs0:
    - shard-hsw:          [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-hsw4/igt@perf_pmu@init-busy@vecs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-hsw2/igt@perf_pmu@init-busy@vecs0.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_reloc@basic-gtt-read-active:
    - shard-kbl:          [PASS][5] -> [DMESG-WARN][6] ([i915#93] / [i915#95]) +49 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl6/igt@gem_exec_reloc@basic-gtt-read-active.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl7/igt@gem_exec_reloc@basic-gtt-read-active.html

  * igt@gem_exec_whisper@basic-fds-priority:
    - shard-glk:          [PASS][7] -> [DMESG-WARN][8] ([i915#118] / [i915#95]) +1 similar issue
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-glk9/igt@gem_exec_whisper@basic-fds-priority.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-glk6/igt@gem_exec_whisper@basic-fds-priority.html

  * igt@i915_module_load@reload:
    - shard-tglb:         [PASS][9] -> [DMESG-WARN][10] ([i915#402])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-tglb6/igt@i915_module_load@reload.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-tglb3/igt@i915_module_load@reload.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
    - shard-kbl:          [PASS][11] -> [DMESG-WARN][12] ([i915#1982])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-180:
    - shard-apl:          [PASS][13] -> [DMESG-WARN][14] ([i915#1982]) +2 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl2/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-glk:          [PASS][15] -> [DMESG-FAIL][16] ([i915#118] / [i915#95]) +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-glk4/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-glk8/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_color@pipe-b-ctm-max:
    - shard-apl:          [PASS][17] -> [FAIL][18] ([i915#168])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl8/igt@kms_color@pipe-b-ctm-max.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl1/igt@kms_color@pipe-b-ctm-max.html
    - shard-kbl:          [PASS][19] -> [FAIL][20] ([i915#168])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl3/igt@kms_color@pipe-b-ctm-max.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl3/igt@kms_color@pipe-b-ctm-max.html
    - shard-glk:          [PASS][21] -> [FAIL][22] ([i915#168])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-glk4/igt@kms_color@pipe-b-ctm-max.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-glk5/igt@kms_color@pipe-b-ctm-max.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding:
    - shard-apl:          [PASS][23] -> [DMESG-WARN][24] ([i915#95]) +39 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html

  * igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen:
    - shard-kbl:          [PASS][25] -> [FAIL][26] ([i915#54])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
    - shard-glk:          [PASS][27] -> [FAIL][28] ([i915#54])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-glk2/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-glk1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
    - shard-apl:          [PASS][29] -> [FAIL][30] ([i915#54])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-256x256-offscreen:
    - shard-hsw:          [PASS][31] -> [INCOMPLETE][32] ([i915#61]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-hsw2/igt@kms_cursor_crc@pipe-b-cursor-256x256-offscreen.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-hsw6/igt@kms_cursor_crc@pipe-b-cursor-256x256-offscreen.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#1525])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-glk:          [PASS][35] -> [DMESG-WARN][36] ([i915#1982]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-glk7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          [PASS][37] -> [DMESG-WARN][38] ([i915#180]) +5 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          [PASS][39] -> [DMESG-WARN][40] ([i915#180]) +3 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [PASS][41] -> [SKIP][42] ([fdo#109441])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-iclb7/igt@kms_psr@psr2_cursor_render.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@legacy-engines-mixed-process@blt:
    - shard-apl:          [FAIL][43] ([i915#1528]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl6/igt@gem_ctx_persistence@legacy-engines-mixed-process@blt.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl7/igt@gem_ctx_persistence@legacy-engines-mixed-process@blt.html

  * igt@gem_ctx_shared@disjoint-timelines:
    - shard-kbl:          [DMESG-WARN][45] ([i915#93] / [i915#95]) -> [PASS][46] +48 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl6/igt@gem_ctx_shared@disjoint-timelines.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl7/igt@gem_ctx_shared@disjoint-timelines.html

  * igt@gem_exec_reloc@basic-concurrent0:
    - shard-glk:          [FAIL][47] ([i915#1930]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-glk2/igt@gem_exec_reloc@basic-concurrent0.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-glk7/igt@gem_exec_reloc@basic-concurrent0.html

  * igt@gem_mmap_gtt@ptrace:
    - shard-hsw:          [INCOMPLETE][49] ([i915#61]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-hsw4/igt@gem_mmap_gtt@ptrace.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-hsw4/igt@gem_mmap_gtt@ptrace.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-tglb:         [DMESG-WARN][51] ([i915#402]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-tglb3/igt@i915_module_load@reload-with-fault-injection.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-tglb8/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][53] ([i915#1899]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-iclb4/igt@i915_pm_dc@dc6-psr.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-iclb1/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_addfb_basic@bad-pitch-32:
    - shard-hsw:          [TIMEOUT][55] ([i915#1958]) -> [PASS][56] +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-hsw8/igt@kms_addfb_basic@bad-pitch-32.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-hsw4/igt@kms_addfb_basic@bad-pitch-32.html
    - shard-snb:          [TIMEOUT][57] ([i915#1958]) -> [PASS][58] +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-snb6/igt@kms_addfb_basic@bad-pitch-32.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-snb4/igt@kms_addfb_basic@bad-pitch-32.html

  * igt@kms_big_fb@linear-32bpp-rotate-180:
    - shard-apl:          [DMESG-WARN][59] ([i915#1982]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl2/igt@kms_big_fb@linear-32bpp-rotate-180.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl2/igt@kms_big_fb@linear-32bpp-rotate-180.html

  * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
    - shard-kbl:          [DMESG-FAIL][61] ([i915#54] / [i915#95]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html

  * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic:
    - shard-apl:          [DMESG-WARN][63] ([i915#95]) -> [PASS][64] +37 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl4/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl2/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_draw_crc@draw-method-xrgb8888-render-xtiled:
    - shard-apl:          [DMESG-FAIL][65] ([i915#54] / [i915#95]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl1/igt@kms_draw_crc@draw-method-xrgb8888-render-xtiled.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl1/igt@kms_draw_crc@draw-method-xrgb8888-render-xtiled.html

  * igt@kms_flip@dpms-off-confusion@a-hdmi-a1:
    - shard-glk:          [DMESG-WARN][67] ([i915#1982]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-glk9/igt@kms_flip@dpms-off-confusion@a-hdmi-a1.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-glk5/igt@kms_flip@dpms-off-confusion@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-kbl:          [DMESG-WARN][69] ([i915#180]) -> [PASS][70] +7 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          [DMESG-WARN][71] ([i915#180]) -> [PASS][72] +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl4/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl3/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip@plain-flip-ts-check@a-dp1:
    - shard-kbl:          [DMESG-WARN][73] ([i915#1982]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl6/igt@kms_flip@plain-flip-ts-check@a-dp1.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl6/igt@kms_flip@plain-flip-ts-check@a-dp1.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-tglb:         [DMESG-WARN][75] ([i915#1982]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-tglb1/igt@kms_frontbuffer_tracking@psr-slowdraw.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-tglb3/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [SKIP][77] ([i915#433]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_cursor@pipe-a-viewport-size-64:
    - shard-kbl:          [DMESG-FAIL][79] ([i915#95]) -> [PASS][80]
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
    - shard-apl:          [DMESG-FAIL][81] ([i915#95]) -> [PASS][82] +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl3/igt@kms_plane_cursor@pipe-a-viewport-size-64.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-tglb:         [SKIP][83] ([i915#1911]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-tglb5/igt@kms_psr2_su@frontbuffer.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-tglb2/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [SKIP][85] ([fdo#109441]) -> [PASS][86] +2 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-iclb5/igt@kms_psr@psr2_sprite_blt.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_setmode@basic:
    - shard-apl:          [FAIL][87] ([i915#31]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl3/igt@kms_setmode@basic.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl2/igt@kms_setmode@basic.html

  * igt@perf@blocking-parameterized:
    - shard-hsw:          [FAIL][89] ([i915#1542]) -> [PASS][90] +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-hsw1/igt@perf@blocking-parameterized.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-hsw1/igt@perf@blocking-parameterized.html

  
#### Warnings ####

  * igt@gem_render_copy@yf-tiled-ccs-to-linear:
    - shard-snb:          [SKIP][91] ([fdo#109271]) -> [TIMEOUT][92] ([i915#1958]) +3 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-snb5/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-snb6/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
    - shard-hsw:          [SKIP][93] ([fdo#109271]) -> [TIMEOUT][94] ([i915#1958]) +3 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-hsw1/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-hsw2/igt@gem_render_copy@yf-tiled-ccs-to-linear.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][95] ([i915#658]) -> [SKIP][96] ([i915#588])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-iclb5/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         [FAIL][97] ([i915#1899]) -> [FAIL][98] ([i915#454])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-tglb3/igt@i915_pm_dc@dc6-psr.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-tglb1/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [DMESG-WARN][99] ([i915#93] / [i915#95]) -> [INCOMPLETE][100] ([i915#155])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl2/igt@i915_suspend@forcewake.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl3/igt@i915_suspend@forcewake.html

  * igt@kms_busy@basic-flip-pipe-d:
    - shard-hsw:          [TIMEOUT][101] ([i915#1958]) -> [SKIP][102] ([fdo#109271]) +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-hsw8/igt@kms_busy@basic-flip-pipe-d.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-hsw4/igt@kms_busy@basic-flip-pipe-d.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          [TIMEOUT][103] ([i915#1319]) -> [FAIL][104] ([fdo#110321] / [fdo#110336])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl1/igt@kms_content_protection@atomic-dpms.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl1/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@legacy:
    - shard-apl:          [FAIL][105] ([fdo#110321] / [fdo#110336]) -> [TIMEOUT][106] ([i915#1319])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl7/igt@kms_content_protection@legacy.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl7/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic:
    - shard-apl:          [TIMEOUT][107] ([i915#1319]) -> [TIMEOUT][108] ([i915#1319] / [i915#1635])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-apl6/igt@kms_content_protection@lic.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-apl8/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@srm:
    - shard-kbl:          [DMESG-FAIL][109] ([fdo#110321] / [i915#95]) -> [TIMEOUT][110] ([i915#1319])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl2/igt@kms_content_protection@srm.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl7/igt@kms_content_protection@srm.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [DMESG-WARN][111] ([i915#180]) -> [FAIL][112] ([i915#64])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          [FAIL][113] ([fdo#108145] / [i915#265]) -> [DMESG-FAIL][114] ([fdo#108145] / [i915#95])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb:
    - shard-snb:          [TIMEOUT][115] ([i915#1958]) -> [SKIP][116] ([fdo#109271]) +3 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-snb6/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-snb5/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][117] ([i915#1911]) -> [SKIP][118] ([fdo#109642] / [fdo#111068])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-iclb5/igt@kms_psr2_su@frontbuffer.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
  [fdo#110336]: https://bugs.freedesktop.org/show_bug.cgi?id=110336
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#1525]: https://gitlab.freedesktop.org/drm/intel/issues/1525
  [i915#1528]: https://gitlab.freedesktop.org/drm/intel/issues/1528
  [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
  [i915#168]: https://gitlab.freedesktop.org/drm/intel/issues/168
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1899]: https://gitlab.freedesktop.org/drm/intel/issues/1899
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#1930]: https://gitlab.freedesktop.org/drm/intel/issues/1930
  [i915#1958]: https://gitlab.freedesktop.org/drm/intel/issues/1958
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
  [i915#64]: https://gitlab.freedesktop.org/drm/intel/issues/64
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95


Participating hosts (11 -> 8)
------------------------------

  Missing    (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5702 -> IGTPW_4668
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_8617: 2100025f87587a1dcf07985174c79a68c4a550eb @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4668: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/index.html
  IGT_5702: d16ad07e7f2a028e14d61f570931c87fa5ce404c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_ccs: CCS Clear Color test (rev3)
  2020-06-11 17:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-06-12  5:40   ` Kahola, Mika
  0 siblings, 0 replies; 7+ messages in thread
From: Kahola, Mika @ 2020-06-12  5:40 UTC (permalink / raw)
  To: igt-dev



> -----Original Message-----
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Thursday, June 11, 2020 8:55 PM
> To: Kahola, Mika <mika.kahola@intel.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: ✗ Fi.CI.IGT: failure for tests/kms_ccs: CCS Clear Color test (rev3)
> 
> == Series Details ==
> 
> Series: tests/kms_ccs: CCS Clear Color test (rev3)
> URL   : https://patchwork.freedesktop.org/series/76536/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_8617_full -> IGTPW_4668_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_4668_full absolutely need to
> be
>   verified manually.
> 
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_4668_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_4668/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in
> IGTPW_4668_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@perf_pmu@init-busy@vcs0:
>     - shard-snb:          [PASS][1] -> [DMESG-WARN][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> snb5/igt@perf_pmu@init-busy@vcs0.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> snb6/igt@perf_pmu@init-busy@vcs0.html
> 
>   * igt@perf_pmu@init-busy@vecs0:
>     - shard-hsw:          [PASS][3] -> [DMESG-WARN][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> hsw4/igt@perf_pmu@init-busy@vecs0.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> hsw2/igt@perf_pmu@init-busy@vecs0.html

The patch series was all about kms_ccs. These regressions are unrelated to the changes made on kms_ccs.

> 
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_4668_full that come from known
> issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_exec_reloc@basic-gtt-read-active:
>     - shard-kbl:          [PASS][5] -> [DMESG-WARN][6] ([i915#93] / [i915#95]) +49
> similar issues
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl6/igt@gem_exec_reloc@basic-gtt-read-active.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl7/igt@gem_exec_reloc@basic-gtt-read-active.html
> 
>   * igt@gem_exec_whisper@basic-fds-priority:
>     - shard-glk:          [PASS][7] -> [DMESG-WARN][8] ([i915#118] / [i915#95]) +1
> similar issue
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> glk9/igt@gem_exec_whisper@basic-fds-priority.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> glk6/igt@gem_exec_whisper@basic-fds-priority.html
> 
>   * igt@i915_module_load@reload:
>     - shard-tglb:         [PASS][9] -> [DMESG-WARN][10] ([i915#402])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> tglb6/igt@i915_module_load@reload.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> tglb3/igt@i915_module_load@reload.html
> 
>   * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
>     - shard-kbl:          [PASS][11] -> [DMESG-WARN][12] ([i915#1982])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
> 
>   * igt@kms_big_fb@x-tiled-8bpp-rotate-180:
>     - shard-apl:          [PASS][13] -> [DMESG-WARN][14] ([i915#1982]) +2 similar
> issues
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl2/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
>     - shard-glk:          [PASS][15] -> [DMESG-FAIL][16] ([i915#118] / [i915#95]) +1
> similar issue
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> glk4/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> glk8/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
> 
>   * igt@kms_color@pipe-b-ctm-max:
>     - shard-apl:          [PASS][17] -> [FAIL][18] ([i915#168])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl8/igt@kms_color@pipe-b-ctm-max.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl1/igt@kms_color@pipe-b-ctm-max.html
>     - shard-kbl:          [PASS][19] -> [FAIL][20] ([i915#168])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl3/igt@kms_color@pipe-b-ctm-max.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl3/igt@kms_color@pipe-b-ctm-max.html
>     - shard-glk:          [PASS][21] -> [FAIL][22] ([i915#168])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> glk4/igt@kms_color@pipe-b-ctm-max.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> glk5/igt@kms_color@pipe-b-ctm-max.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding:
>     - shard-apl:          [PASS][23] -> [DMESG-WARN][24] ([i915#95]) +39 similar
> issues
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl4/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen:
>     - shard-kbl:          [PASS][25] -> [FAIL][26] ([i915#54])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl7/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
>     - shard-glk:          [PASS][27] -> [FAIL][28] ([i915#54])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> glk2/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> glk1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
>     - shard-apl:          [PASS][29] -> [FAIL][30] ([i915#54])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-256x256-offscreen:
>     - shard-hsw:          [PASS][31] -> [INCOMPLETE][32] ([i915#61]) +1 similar
> issue
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> hsw2/igt@kms_cursor_crc@pipe-b-cursor-256x256-offscreen.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> hsw6/igt@kms_cursor_crc@pipe-b-cursor-256x256-offscreen.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-apl:          [PASS][33] -> [FAIL][34] ([i915#1525])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl7/igt@kms_fbcon_fbt@fbc-suspend.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl8/igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
>     - shard-glk:          [PASS][35] -> [DMESG-WARN][36] ([i915#1982]) +2 similar
> issues
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> glk7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
>     - shard-apl:          [PASS][37] -> [DMESG-WARN][38] ([i915#180]) +5 similar
> issues
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
> 
>   * igt@kms_flip@flip-vs-suspend@c-dp1:
>     - shard-kbl:          [PASS][39] -> [DMESG-WARN][40] ([i915#180]) +3 similar
> issues
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl4/igt@kms_flip@flip-vs-suspend@c-dp1.html
> 
>   * igt@kms_psr@psr2_cursor_render:
>     - shard-iclb:         [PASS][41] -> [SKIP][42] ([fdo#109441])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> iclb2/igt@kms_psr@psr2_cursor_render.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> iclb7/igt@kms_psr@psr2_cursor_render.html
> 
> 
> #### Possible fixes ####
> 
>   * igt@gem_ctx_persistence@legacy-engines-mixed-process@blt:
>     - shard-apl:          [FAIL][43] ([i915#1528]) -> [PASS][44]
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl6/igt@gem_ctx_persistence@legacy-engines-mixed-process@blt.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl7/igt@gem_ctx_persistence@legacy-engines-mixed-process@blt.html
> 
>   * igt@gem_ctx_shared@disjoint-timelines:
>     - shard-kbl:          [DMESG-WARN][45] ([i915#93] / [i915#95]) -> [PASS][46]
> +48 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl6/igt@gem_ctx_shared@disjoint-timelines.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl7/igt@gem_ctx_shared@disjoint-timelines.html
> 
>   * igt@gem_exec_reloc@basic-concurrent0:
>     - shard-glk:          [FAIL][47] ([i915#1930]) -> [PASS][48]
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> glk2/igt@gem_exec_reloc@basic-concurrent0.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> glk7/igt@gem_exec_reloc@basic-concurrent0.html
> 
>   * igt@gem_mmap_gtt@ptrace:
>     - shard-hsw:          [INCOMPLETE][49] ([i915#61]) -> [PASS][50]
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> hsw4/igt@gem_mmap_gtt@ptrace.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> hsw4/igt@gem_mmap_gtt@ptrace.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-tglb:         [DMESG-WARN][51] ([i915#402]) -> [PASS][52]
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> tglb3/igt@i915_module_load@reload-with-fault-injection.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> tglb8/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-iclb:         [FAIL][53] ([i915#1899]) -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> iclb4/igt@i915_pm_dc@dc6-psr.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> iclb1/igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@kms_addfb_basic@bad-pitch-32:
>     - shard-hsw:          [TIMEOUT][55] ([i915#1958]) -> [PASS][56] +1 similar
> issue
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> hsw8/igt@kms_addfb_basic@bad-pitch-32.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> hsw4/igt@kms_addfb_basic@bad-pitch-32.html
>     - shard-snb:          [TIMEOUT][57] ([i915#1958]) -> [PASS][58] +1 similar
> issue
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> snb6/igt@kms_addfb_basic@bad-pitch-32.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> snb4/igt@kms_addfb_basic@bad-pitch-32.html
> 
>   * igt@kms_big_fb@linear-32bpp-rotate-180:
>     - shard-apl:          [DMESG-WARN][59] ([i915#1982]) -> [PASS][60]
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl2/igt@kms_big_fb@linear-32bpp-rotate-180.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl2/igt@kms_big_fb@linear-32bpp-rotate-180.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen:
>     - shard-kbl:          [DMESG-FAIL][61] ([i915#54] / [i915#95]) -> [PASS][62]
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl6/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl7/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html
> 
>   * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic:
>     - shard-apl:          [DMESG-WARN][63] ([i915#95]) -> [PASS][64] +37 similar
> issues
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl4/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-
> atomic.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl2/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-
> atomic.html
> 
>   * igt@kms_draw_crc@draw-method-xrgb8888-render-xtiled:
>     - shard-apl:          [DMESG-FAIL][65] ([i915#54] / [i915#95]) -> [PASS][66]
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl1/igt@kms_draw_crc@draw-method-xrgb8888-render-xtiled.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl1/igt@kms_draw_crc@draw-method-xrgb8888-render-xtiled.html
> 
>   * igt@kms_flip@dpms-off-confusion@a-hdmi-a1:
>     - shard-glk:          [DMESG-WARN][67] ([i915#1982]) -> [PASS][68]
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> glk9/igt@kms_flip@dpms-off-confusion@a-hdmi-a1.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> glk5/igt@kms_flip@dpms-off-confusion@a-hdmi-a1.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
>     - shard-kbl:          [DMESG-WARN][69] ([i915#180]) -> [PASS][70] +7 similar
> issues
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
> 
>   * igt@kms_flip@flip-vs-suspend@a-dp1:
>     - shard-apl:          [DMESG-WARN][71] ([i915#180]) -> [PASS][72] +1 similar
> issue
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl4/igt@kms_flip@flip-vs-suspend@a-dp1.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl3/igt@kms_flip@flip-vs-suspend@a-dp1.html
> 
>   * igt@kms_flip@plain-flip-ts-check@a-dp1:
>     - shard-kbl:          [DMESG-WARN][73] ([i915#1982]) -> [PASS][74]
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl6/igt@kms_flip@plain-flip-ts-check@a-dp1.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl6/igt@kms_flip@plain-flip-ts-check@a-dp1.html
> 
>   * igt@kms_frontbuffer_tracking@psr-slowdraw:
>     - shard-tglb:         [DMESG-WARN][75] ([i915#1982]) -> [PASS][76]
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> tglb1/igt@kms_frontbuffer_tracking@psr-slowdraw.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> tglb3/igt@kms_frontbuffer_tracking@psr-slowdraw.html
> 
>   * igt@kms_hdmi_inject@inject-audio:
>     - shard-tglb:         [SKIP][77] ([i915#433]) -> [PASS][78]
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> tglb3/igt@kms_hdmi_inject@inject-audio.html
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> tglb7/igt@kms_hdmi_inject@inject-audio.html
> 
>   * igt@kms_plane_cursor@pipe-a-viewport-size-64:
>     - shard-kbl:          [DMESG-FAIL][79] ([i915#95]) -> [PASS][80]
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
>     - shard-apl:          [DMESG-FAIL][81] ([i915#95]) -> [PASS][82] +1 similar
> issue
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl3/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
> 
>   * igt@kms_psr2_su@frontbuffer:
>     - shard-tglb:         [SKIP][83] ([i915#1911]) -> [PASS][84]
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> tglb5/igt@kms_psr2_su@frontbuffer.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> tglb2/igt@kms_psr2_su@frontbuffer.html
> 
>   * igt@kms_psr@psr2_sprite_blt:
>     - shard-iclb:         [SKIP][85] ([fdo#109441]) -> [PASS][86] +2 similar issues
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> iclb5/igt@kms_psr@psr2_sprite_blt.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> iclb2/igt@kms_psr@psr2_sprite_blt.html
> 
>   * igt@kms_setmode@basic:
>     - shard-apl:          [FAIL][87] ([i915#31]) -> [PASS][88]
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl3/igt@kms_setmode@basic.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl2/igt@kms_setmode@basic.html
> 
>   * igt@perf@blocking-parameterized:
>     - shard-hsw:          [FAIL][89] ([i915#1542]) -> [PASS][90] +1 similar issue
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> hsw1/igt@perf@blocking-parameterized.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> hsw1/igt@perf@blocking-parameterized.html
> 
> 
> #### Warnings ####
> 
>   * igt@gem_render_copy@yf-tiled-ccs-to-linear:
>     - shard-snb:          [SKIP][91] ([fdo#109271]) -> [TIMEOUT][92] ([i915#1958])
> +3 similar issues
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> snb5/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> snb6/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
>     - shard-hsw:          [SKIP][93] ([fdo#109271]) -> [TIMEOUT][94] ([i915#1958])
> +3 similar issues
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> hsw1/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> hsw2/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
>     - shard-iclb:         [SKIP][95] ([i915#658]) -> [SKIP][96] ([i915#588])
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> iclb5/igt@i915_pm_dc@dc3co-vpb-simulation.html
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         [FAIL][97] ([i915#1899]) -> [FAIL][98] ([i915#454])
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> tglb3/igt@i915_pm_dc@dc6-psr.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> tglb1/igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_suspend@forcewake:
>     - shard-kbl:          [DMESG-WARN][99] ([i915#93] / [i915#95]) ->
> [INCOMPLETE][100] ([i915#155])
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl2/igt@i915_suspend@forcewake.html
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl3/igt@i915_suspend@forcewake.html
> 
>   * igt@kms_busy@basic-flip-pipe-d:
>     - shard-hsw:          [TIMEOUT][101] ([i915#1958]) -> [SKIP][102]
> ([fdo#109271]) +1 similar issue
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> hsw8/igt@kms_busy@basic-flip-pipe-d.html
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> hsw4/igt@kms_busy@basic-flip-pipe-d.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-apl:          [TIMEOUT][103] ([i915#1319]) -> [FAIL][104]
> ([fdo#110321] / [fdo#110336])
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl1/igt@kms_content_protection@atomic-dpms.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl1/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-apl:          [FAIL][105] ([fdo#110321] / [fdo#110336]) ->
> [TIMEOUT][106] ([i915#1319])
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl7/igt@kms_content_protection@legacy.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl7/igt@kms_content_protection@legacy.html
> 
>   * igt@kms_content_protection@lic:
>     - shard-apl:          [TIMEOUT][107] ([i915#1319]) -> [TIMEOUT][108]
> ([i915#1319] / [i915#1635])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> apl6/igt@kms_content_protection@lic.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> apl8/igt@kms_content_protection@lic.html
> 
>   * igt@kms_content_protection@srm:
>     - shard-kbl:          [DMESG-FAIL][109] ([fdo#110321] / [i915#95]) ->
> [TIMEOUT][110] ([i915#1319])
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl2/igt@kms_content_protection@srm.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl7/igt@kms_content_protection@srm.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-kbl:          [DMESG-WARN][111] ([i915#180]) -> [FAIL][112]
> ([i915#64])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl3/igt@kms_fbcon_fbt@fbc-suspend.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>     - shard-kbl:          [FAIL][113] ([fdo#108145] / [i915#265]) -> [DMESG-
> FAIL][114] ([fdo#108145] / [i915#95])
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb:
>     - shard-snb:          [TIMEOUT][115] ([i915#1958]) -> [SKIP][116]
> ([fdo#109271]) +3 similar issues
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> snb6/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> snb5/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html
> 
>   * igt@kms_psr2_su@frontbuffer:
>     - shard-iclb:         [SKIP][117] ([i915#1911]) -> [SKIP][118] ([fdo#109642] /
> [fdo#111068])
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8617/shard-
> iclb2/igt@kms_psr2_su@frontbuffer.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/shard-
> iclb5/igt@kms_psr2_su@frontbuffer.html
> 
> 
>   [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
>   [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
>   [fdo#110336]: https://bugs.freedesktop.org/show_bug.cgi?id=110336
>   [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>   [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
>   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>   [i915#1525]: https://gitlab.freedesktop.org/drm/intel/issues/1525
>   [i915#1528]: https://gitlab.freedesktop.org/drm/intel/issues/1528
>   [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
>   [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
>   [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
>   [i915#168]: https://gitlab.freedesktop.org/drm/intel/issues/168
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#1899]: https://gitlab.freedesktop.org/drm/intel/issues/1899
>   [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
>   [i915#1930]: https://gitlab.freedesktop.org/drm/intel/issues/1930
>   [i915#1958]: https://gitlab.freedesktop.org/drm/intel/issues/1958
>   [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
>   [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
>   [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
>   [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
>   [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
>   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>   [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
>   [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
>   [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
>   [i915#64]: https://gitlab.freedesktop.org/drm/intel/issues/64
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93
>   [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
> 
> 
> Participating hosts (11 -> 8)
> ------------------------------
> 
>   Missing    (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5702 -> IGTPW_4668
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_8617: 2100025f87587a1dcf07985174c79a68c4a550eb @
> git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_4668: https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_4668/index.html
>   IGT_5702: d16ad07e7f2a028e14d61f570931c87fa5ce404c @
> git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_4668/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_ccs: CCS Clear Color test (rev3)
  2020-06-11 12:30 [igt-dev] [RFC PATCH i-g-t v2 0/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
                   ` (3 preceding siblings ...)
  2020-06-11 17:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-06-12  7:11 ` Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-06-12  7:11 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev

== Series Details ==

Series: tests/kms_ccs: CCS Clear Color test (rev3)
URL   : https://patchwork.freedesktop.org/series/76536/
State : success

== Summary ==

CI Bug Log - changes from IGTPW_4668_full -> IGTPW_4668_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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


Changes
-------

  No changes found


Participating hosts (8 -> 8)
------------------------------

  No changes in participating hosts


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

  No differences in builds

  CI_DRM_8617: 2100025f87587a1dcf07985174c79a68c4a550eb @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4668: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/index.html

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4668/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2020-06-12  7:11 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-11 12:30 [igt-dev] [RFC PATCH i-g-t v2 0/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
2020-06-11 12:31 ` [igt-dev] [RFC PATCH i-g-t v2 1/2] tests/kms_ccs: Add debug information on format modifier Mika Kahola
2020-06-11 12:31 ` [igt-dev] [RFC PATCH i-g-t v2 2/2] tests/kms_ccs: CCS Clear Color test Mika Kahola
2020-06-11 13:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_ccs: CCS Clear Color test (rev3) Patchwork
2020-06-11 17:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-06-12  5:40   ` Kahola, Mika
2020-06-12  7:11 ` [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.