All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v2 0/3] GEN12 render decompression
@ 2019-11-04 12:37 Mika Kahola
  2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 1/3] Format modifier for Intel Gen-12 render compression Mika Kahola
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Mika Kahola @ 2019-11-04 12:37 UTC (permalink / raw)
  To: igt-dev

Gen-12 render decompression is supported with Y-tiled main surface.
The patch series introduces CCS support for IGT tests.

This patch series requires Imre's series

https://patchwork.freedesktop.org/series/68890/

Mika Kahola (3):
  Format modifier for Intel Gen-12 render compression
  lib/igt_fb.c: Update tile sizes for GEN12 CCS
  tests/kms_ccs: Add GEN12 CCS render compression format modifiers

 include/drm-uapi/drm_fourcc.h |   1 +
 lib/igt_fb.c                  |  34 +++++++++-
 lib/ioctl_wrappers.h          |   1 +
 tests/kms_ccs.c               | 114 ++++++++++++++++++++--------------
 4 files changed, 103 insertions(+), 47 deletions(-)

-- 
2.17.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] [PATCH i-g-t v2 1/3] Format modifier for Intel Gen-12 render compression
  2019-11-04 12:37 [igt-dev] [PATCH i-g-t v2 0/3] GEN12 render decompression Mika Kahola
@ 2019-11-04 12:37 ` Mika Kahola
  2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/igt_fb.c: Update tile sizes for GEN12 CCS Mika Kahola
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Mika Kahola @ 2019-11-04 12:37 UTC (permalink / raw)
  To: igt-dev

Gen-12 has a new compression format for render compression.
For this, a new modifier is needed to indicate that.

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
Reviewed-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 include/drm-uapi/drm_fourcc.h | 1 +
 lib/ioctl_wrappers.h          | 1 +
 2 files changed, 2 insertions(+)

diff --git a/include/drm-uapi/drm_fourcc.h b/include/drm-uapi/drm_fourcc.h
index 3feeaa3f..b93eb2d4 100644
--- a/include/drm-uapi/drm_fourcc.h
+++ b/include/drm-uapi/drm_fourcc.h
@@ -409,6 +409,7 @@ extern "C" {
  */
 #define I915_FORMAT_MOD_Y_TILED_CCS	fourcc_mod_code(INTEL, 4)
 #define I915_FORMAT_MOD_Yf_TILED_CCS	fourcc_mod_code(INTEL, 5)
+#define I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS fourcc_mod_code(INTEL, 6)
 
 /*
  * Tiled, NV12MT, grouped in 64 (pixels) x 32 (lines) -sized macroblocks
diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h
index 03211c97..f2412d78 100644
--- a/lib/ioctl_wrappers.h
+++ b/lib/ioctl_wrappers.h
@@ -200,6 +200,7 @@ struct local_drm_mode_fb_cmd2 {
 #define LOCAL_I915_FORMAT_MOD_Yf_TILED	local_fourcc_mod_code(INTEL, 3)
 #define LOCAL_I915_FORMAT_MOD_Y_TILED_CCS	local_fourcc_mod_code(INTEL, 4)
 #define LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS	local_fourcc_mod_code(INTEL, 5)
+#define LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS fourcc_mod_code(INTEL, 6)
 
 #define LOCAL_DRM_IOCTL_MODE_ADDFB2	DRM_IOWR(0xB8, \
 						 struct local_drm_mode_fb_cmd2)
-- 
2.17.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] [PATCH i-g-t v2 2/3] lib/igt_fb.c: Update tile sizes for GEN12 CCS
  2019-11-04 12:37 [igt-dev] [PATCH i-g-t v2 0/3] GEN12 render decompression Mika Kahola
  2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 1/3] Format modifier for Intel Gen-12 render compression Mika Kahola
@ 2019-11-04 12:37 ` Mika Kahola
  2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/kms_ccs: Add GEN12 CCS render compression format modifiers Mika Kahola
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Mika Kahola @ 2019-11-04 12:37 UTC (permalink / raw)
  To: igt-dev

Update tile sizes for GEN12 CCS.

BSpec: 47709

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
Reviewed-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
---
 lib/igt_fb.c | 34 ++++++++++++++++++++++++++++++++--
 1 file changed, 32 insertions(+), 2 deletions(-)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 4adca967..77030d49 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -413,6 +413,33 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
 			*height_ret = 32;
 		}
 		break;
+	case LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS:
+		igt_require_intel(fd);
+		switch (fb_bpp) {
+		case 8:
+			*width_ret = 512;
+			*height_ret = 32;
+			break;
+		case 16:
+			*width_ret = 256;
+			*height_ret = 32;
+			break;
+		case 32:
+			*width_ret = 128;
+			*height_ret = 32;
+			break;
+		case 64:
+			*width_ret = 64;
+			*height_ret = 32;
+			break;
+		case 128:
+			*width_ret = 32;
+			*height_ret = 32;
+			break;
+		default:
+			igt_assert(false);
+		}
+		break;
 	case LOCAL_I915_FORMAT_MOD_Yf_TILED:
 	case LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS:
 		igt_require_intel(fd);
@@ -467,8 +494,10 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
 
 static bool is_ccs_modifier(uint64_t modifier)
 {
-	return modifier == LOCAL_I915_FORMAT_MOD_Y_TILED_CCS ||
-		modifier == LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS;
+
+	return modifier == I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS ||
+		modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
+		modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
 }
 
 static unsigned fb_plane_width(const struct igt_fb *fb, int plane)
@@ -687,6 +716,7 @@ uint64_t igt_fb_mod_to_tiling(uint64_t modifier)
 		return I915_TILING_X;
 	case LOCAL_I915_FORMAT_MOD_Y_TILED:
 	case LOCAL_I915_FORMAT_MOD_Y_TILED_CCS:
+	case LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS:
 		return I915_TILING_Y;
 	case LOCAL_I915_FORMAT_MOD_Yf_TILED:
 	case LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS:
-- 
2.17.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] [PATCH i-g-t v2 3/3] tests/kms_ccs: Add GEN12 CCS render compression format modifiers
  2019-11-04 12:37 [igt-dev] [PATCH i-g-t v2 0/3] GEN12 render decompression Mika Kahola
  2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 1/3] Format modifier for Intel Gen-12 render compression Mika Kahola
  2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/igt_fb.c: Update tile sizes for GEN12 CCS Mika Kahola
@ 2019-11-04 12:37 ` Mika Kahola
  2019-11-04 15:03 ` [igt-dev] ✓ Fi.CI.BAT: success for GEN12 render decompression Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Mika Kahola @ 2019-11-04 12:37 UTC (permalink / raw)
  To: igt-dev

Add GEN12 CCS format modifiers for render compression. Render
compression is not supported for 90/270 rotation.

v2: Added new subtests for each format modifier.

Bspec: 49252

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
 tests/kms_ccs.c | 114 +++++++++++++++++++++++++++++-------------------
 1 file changed, 69 insertions(+), 45 deletions(-)

diff --git a/tests/kms_ccs.c b/tests/kms_ccs.c
index 1ce66cde..4d6db543 100644
--- a/tests/kms_ccs.c
+++ b/tests/kms_ccs.c
@@ -70,10 +70,14 @@ static const struct {
 	{0.0, 1.0, 0.0}
 };
 
-static const uint64_t ccs_modifiers[] = {
-	LOCAL_I915_FORMAT_MOD_Y_TILED_CCS,
-	LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS,
-};
+static const struct {
+	uint64_t modifier;
+	char name[8];
+} ccs_modifiers[3] = {
+	{LOCAL_I915_FORMAT_MOD_Y_TILED_CCS, "Y"},
+	{LOCAL_I915_FORMAT_MOD_Yf_TILED_CCS, "Yf"},
+	{LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS, "Y-rc"},
+ };
 
 /*
  * Limit maximum used sprite plane width so this test will not mistakenly
@@ -84,6 +88,15 @@ static const uint64_t ccs_modifiers[] = {
  */
 #define MAX_SPRITE_PLANE_WIDTH 2000
 
+static bool is_gen12_modifier(uint64_t modifier)
+{
+
+	if (modifier == LOCAL_I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS)
+		return true;
+
+	return false;
+}
+
 static void addfb_init(struct igt_fb *fb, struct drm_mode_fb_cmd2 *f)
 {
 	int i;
@@ -300,17 +313,14 @@ static int test_ccs(data_t *data)
 static int __test_output(data_t *data)
 {
 	igt_display_t *display = &data->display;
-	int i, valid_tests = 0;
+	int valid_tests = 0;
 
 	data->output = igt_get_single_output_for_pipe(display, data->pipe);
 	igt_require(data->output);
 
 	igt_output_set_pipe(data->output, data->pipe);
 
-	for (i = 0; i < ARRAY_SIZE(ccs_modifiers); i++) {
-		data->ccs_modifier = ccs_modifiers[i];
-		valid_tests += test_ccs(data);
-	}
+	valid_tests += test_ccs(data);
 
 	igt_output_set_pipe(data->output, PIPE_NONE);
 	igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
@@ -328,13 +338,15 @@ static data_t data;
 
 igt_main
 {
+	int i, gen;
 	enum pipe pipe;
 
 	igt_fixture {
 		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
 
-		igt_require(intel_gen(intel_get_drm_devid(data.drm_fd)) >= 9);
-		kmstest_set_vt_graphics_mode();
+		gen = intel_gen(intel_get_drm_devid(data.drm_fd));
+		igt_require(gen >= 9);
+ 		kmstest_set_vt_graphics_mode();
 		igt_require_pipe_crc(data.drm_fd);
 
 		igt_display_require(&data.display, data.drm_fd);
@@ -345,51 +357,63 @@ igt_main
 
 		data.pipe = pipe;
 
-		data.flags = TEST_BAD_PIXEL_FORMAT;
-		igt_subtest_f("pipe-%s-bad-pixel-format", pipe_name)
-			test_output(&data);
+		for (i = 0; i < ARRAY_SIZE(ccs_modifiers); i++) {
+			if (gen >= 12 && is_gen12_modifier(ccs_modifiers[i].modifier)) {
+				data.ccs_modifier = ccs_modifiers[i].modifier;
+			} else if (gen < 12 && !is_gen12_modifier(ccs_modifiers[i].modifier)) {
+				data.ccs_modifier = ccs_modifiers[i].modifier;
+			} else {
+				continue;
+			}
 
-		data.flags = TEST_BAD_ROTATION_90;
-		igt_subtest_f("pipe-%s-bad-rotation-90", pipe_name)
-			test_output(&data);
+			data.flags = TEST_BAD_PIXEL_FORMAT;
+			igt_subtest_f("pipe-%s-tiling-%s-bad-pixel-format", pipe_name, ccs_modifiers[i].name)
+				test_output(&data);
 
-		data.flags = TEST_CRC;
-		igt_subtest_f("pipe-%s-crc-primary-basic", pipe_name)
-			test_output(&data);
+			if (gen < 12) {
+				data.flags = TEST_BAD_ROTATION_90;
+				igt_subtest_f("pipe-%s-tiling-%s-bad-rotation-90", pipe_name, ccs_modifiers[i].name)
+					test_output(&data);
+			}
 
-		data.flags = TEST_CRC | TEST_ROTATE_180;
-		igt_subtest_f("pipe-%s-crc-primary-rotation-180", pipe_name)
-			test_output(&data);
+			data.flags = TEST_CRC;
+			igt_subtest_f("pipe-%s-tiling-%s-crc-primary-basic", pipe_name, ccs_modifiers[i].name)
+				test_output(&data);
 
-		data.flags = TEST_CRC;
-		igt_subtest_f("pipe-%s-crc-sprite-planes-basic", pipe_name) {
-			int valid_tests = 0;
+			data.flags = TEST_CRC | TEST_ROTATE_180;
+			igt_subtest_f("pipe-%s-tiling-%s-crc-primary-rotation-180", pipe_name, ccs_modifiers[i].name)
+				test_output(&data);
 
-			igt_display_require_output_on_pipe(&data.display, data.pipe);
+			data.flags = TEST_CRC;
+			igt_subtest_f("pipe-%s-tiling-%s-crc-sprite-planes-basic", pipe_name, ccs_modifiers[i].name) {
+				int valid_tests = 0;
 
-			for_each_plane_on_pipe(&data.display, data.pipe, data.plane) {
-				if (data.plane->type == DRM_PLANE_TYPE_PRIMARY)
-					continue;
-				valid_tests += __test_output(&data);
-			}
+				igt_display_require_output_on_pipe(&data.display, data.pipe);
 
-			igt_require_f(valid_tests > 0,
-				      "CCS not supported, skipping\n");
-		}
+				for_each_plane_on_pipe(&data.display, data.pipe, data.plane) {
+					if (data.plane->type == DRM_PLANE_TYPE_PRIMARY)
+						continue;
+					valid_tests += __test_output(&data);
+				}
+
+				igt_require_f(valid_tests > 0,
+					      "CCS not supported, skipping\n");
+			}
 
-		data.plane = NULL;
+			data.plane = NULL;
 
-		data.flags = TEST_NO_AUX_BUFFER;
-		igt_subtest_f("pipe-%s-missing-ccs-buffer", pipe_name)
-			test_output(&data);
+			data.flags = TEST_NO_AUX_BUFFER;
+			igt_subtest_f("pipe-%s-tiling-%s-missing-ccs-buffer", pipe_name, ccs_modifiers[i].name)
+				test_output(&data);
 
-		data.flags = TEST_BAD_CCS_HANDLE;
-		igt_subtest_f("pipe-%s-ccs-on-another-bo", pipe_name)
-			test_output(&data);
+			data.flags = TEST_BAD_CCS_HANDLE;
+			igt_subtest_f("pipe-%s-tiling-%s-ccs-on-another-bo", pipe_name, ccs_modifiers[i].name)
+				test_output(&data);
 
-		data.flags = TEST_BAD_AUX_STRIDE;
-		igt_subtest_f("pipe-%s-bad-aux-stride", pipe_name)
-			test_output(&data);
+			data.flags = TEST_BAD_AUX_STRIDE;
+			igt_subtest_f("pipe-%s-tiling-%s-bad-aux-stride", pipe_name, ccs_modifiers[i].name)
+				test_output(&data);
+		}
 	}
 
 	igt_fixture
-- 
2.17.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 GEN12 render decompression
  2019-11-04 12:37 [igt-dev] [PATCH i-g-t v2 0/3] GEN12 render decompression Mika Kahola
                   ` (2 preceding siblings ...)
  2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/kms_ccs: Add GEN12 CCS render compression format modifiers Mika Kahola
@ 2019-11-04 15:03 ` Patchwork
  2019-11-04 19:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2019-11-05 10:50 ` [igt-dev] ✗ GitLab.Pipeline: failure " Patchwork
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-11-04 15:03 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev

== Series Details ==

Series: GEN12 render decompression
URL   : https://patchwork.freedesktop.org/series/68937/
State : success

== Summary ==

CI Bug Log - changes from IGT_5260 -> IGTPW_3645
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_tiled_pread_basic:
    - fi-icl-u3:          [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/fi-icl-u3/igt@gem_tiled_pread_basic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/fi-icl-u3/igt@gem_tiled_pread_basic.html

  
#### Possible fixes ####

  * igt@gem_ctx_param@basic:
    - fi-icl-u3:          [DMESG-WARN][3] ([fdo#107724]) -> [PASS][4] +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/fi-icl-u3/igt@gem_ctx_param@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/fi-icl-u3/igt@gem_ctx_param@basic.html

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [FAIL][5] ([fdo#108511]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live_execlists:
    - fi-bxt-dsi:         [TIMEOUT][7] -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/fi-bxt-dsi/igt@i915_selftest@live_execlists.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/fi-bxt-dsi/igt@i915_selftest@live_execlists.html

  * igt@kms_prop_blob@basic:
    - {fi-icl-u4}:        [DMESG-WARN][9] ([fdo#105602]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/fi-icl-u4/igt@kms_prop_blob@basic.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/fi-icl-u4/igt@kms_prop_blob@basic.html

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

  [fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505
  [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#106350]: https://bugs.freedesktop.org/show_bug.cgi?id=106350
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111154]: https://bugs.freedesktop.org/show_bug.cgi?id=111154


Participating hosts (52 -> 43)
------------------------------

  Additional (1): fi-kbl-7500u 
  Missing    (10): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-bwr-2160 fi-ctg-p8600 fi-gdg-551 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5260 -> IGTPW_3645

  CI-20190529: 20190529
  CI_DRM_7252: 1971e2dbb8626482b7ed182d6e96a6810020b95e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3645: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/index.html
  IGT_5260: 8d82fbc2d97c8c35f6ed0b1ddc094fbe1dd2cb73 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+++ 96 lines
--- 48 lines

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/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 GEN12 render decompression
  2019-11-04 12:37 [igt-dev] [PATCH i-g-t v2 0/3] GEN12 render decompression Mika Kahola
                   ` (3 preceding siblings ...)
  2019-11-04 15:03 ` [igt-dev] ✓ Fi.CI.BAT: success for GEN12 render decompression Patchwork
@ 2019-11-04 19:08 ` Patchwork
  2019-11-05 10:50 ` [igt-dev] ✗ GitLab.Pipeline: failure " Patchwork
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-11-04 19:08 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev

== Series Details ==

Series: GEN12 render decompression
URL   : https://patchwork.freedesktop.org/series/68937/
State : success

== Summary ==

CI Bug Log - changes from IGT_5260_full -> IGTPW_3645_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_ccs@pipe-d-tiling-yf-crc-primary-rotation-180} (NEW):
    - {shard-tglb}:       NOTRUN -> [SKIP][1] +40 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb5/igt@kms_ccs@pipe-d-tiling-yf-crc-primary-rotation-180.html

  
#### Suppressed ####

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

  * igt@gem_exec_schedule@deep-bsd1:
    - {shard-tglb}:       [FAIL][2] ([fdo#111646]) -> [FAIL][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-tglb1/igt@gem_exec_schedule@deep-bsd1.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb5/igt@gem_exec_schedule@deep-bsd1.html

  
New tests
---------

  New tests have been introduced between IGT_5260_full and IGTPW_3645_full:

### New IGT tests (64) ###

  * igt@kms_ccs@pipe-a-tiling-y-bad-aux-stride:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.42] s

  * igt@kms_ccs@pipe-a-tiling-y-bad-pixel-format:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.29] s

  * igt@kms_ccs@pipe-a-tiling-y-bad-rotation-90:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.35] s

  * igt@kms_ccs@pipe-a-tiling-y-ccs-on-another-bo:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.31] s

  * igt@kms_ccs@pipe-a-tiling-y-crc-primary-basic:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.62] s

  * igt@kms_ccs@pipe-a-tiling-y-crc-primary-rotation-180:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.62] s

  * igt@kms_ccs@pipe-a-tiling-y-crc-sprite-planes-basic:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 7.60] s

  * igt@kms_ccs@pipe-a-tiling-y-missing-ccs-buffer:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.34] s

  * igt@kms_ccs@pipe-a-tiling-yf-bad-aux-stride:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.42] s

  * igt@kms_ccs@pipe-a-tiling-yf-bad-pixel-format:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.28] s

  * igt@kms_ccs@pipe-a-tiling-yf-bad-rotation-90:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.34] s

  * igt@kms_ccs@pipe-a-tiling-yf-ccs-on-another-bo:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.32] s

  * igt@kms_ccs@pipe-a-tiling-yf-crc-primary-basic:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.60] s

  * igt@kms_ccs@pipe-a-tiling-yf-crc-primary-rotation-180:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.59] s

  * igt@kms_ccs@pipe-a-tiling-yf-crc-sprite-planes-basic:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 7.58] s

  * igt@kms_ccs@pipe-a-tiling-yf-missing-ccs-buffer:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.33] s

  * igt@kms_ccs@pipe-b-tiling-y-bad-aux-stride:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.42] s

  * igt@kms_ccs@pipe-b-tiling-y-bad-pixel-format:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.30] s

  * igt@kms_ccs@pipe-b-tiling-y-bad-rotation-90:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 1.47] s

  * igt@kms_ccs@pipe-b-tiling-y-ccs-on-another-bo:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.30] s

  * igt@kms_ccs@pipe-b-tiling-y-crc-primary-basic:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 1.65] s

  * igt@kms_ccs@pipe-b-tiling-y-crc-primary-rotation-180:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 1.71] s

  * igt@kms_ccs@pipe-b-tiling-y-crc-sprite-planes-basic:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 8.73] s

  * igt@kms_ccs@pipe-b-tiling-y-missing-ccs-buffer:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.33] s

  * igt@kms_ccs@pipe-b-tiling-yf-bad-aux-stride:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.43] s

  * igt@kms_ccs@pipe-b-tiling-yf-bad-pixel-format:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.29] s

  * igt@kms_ccs@pipe-b-tiling-yf-bad-rotation-90:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 1.73] s

  * igt@kms_ccs@pipe-b-tiling-yf-ccs-on-another-bo:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.32] s

  * igt@kms_ccs@pipe-b-tiling-yf-crc-primary-basic:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 1.61] s

  * igt@kms_ccs@pipe-b-tiling-yf-crc-primary-rotation-180:
    - Statuses : 4 pass(s) 3 skip(s)
    - Exec time: [0.0, 1.62] s

  * igt@kms_ccs@pipe-b-tiling-yf-crc-sprite-planes-basic:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 8.76] s

  * igt@kms_ccs@pipe-b-tiling-yf-missing-ccs-buffer:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.30] s

  * igt@kms_ccs@pipe-c-tiling-y-bad-aux-stride:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 0.33] s

  * igt@kms_ccs@pipe-c-tiling-y-bad-pixel-format:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 0.28] s

  * igt@kms_ccs@pipe-c-tiling-y-bad-rotation-90:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 1.42] s

  * igt@kms_ccs@pipe-c-tiling-y-ccs-on-another-bo:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 0.32] s

  * igt@kms_ccs@pipe-c-tiling-y-crc-primary-basic:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 1.89] s

  * igt@kms_ccs@pipe-c-tiling-y-crc-primary-rotation-180:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 1.67] s

  * igt@kms_ccs@pipe-c-tiling-y-crc-sprite-planes-basic:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 8.72] s

  * igt@kms_ccs@pipe-c-tiling-y-missing-ccs-buffer:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 0.31] s

  * igt@kms_ccs@pipe-c-tiling-yf-bad-aux-stride:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 0.36] s

  * igt@kms_ccs@pipe-c-tiling-yf-bad-pixel-format:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 0.29] s

  * igt@kms_ccs@pipe-c-tiling-yf-bad-rotation-90:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 1.43] s

  * igt@kms_ccs@pipe-c-tiling-yf-ccs-on-another-bo:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 0.30] s

  * igt@kms_ccs@pipe-c-tiling-yf-crc-primary-basic:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 1.66] s

  * igt@kms_ccs@pipe-c-tiling-yf-crc-primary-rotation-180:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 1.66] s

  * igt@kms_ccs@pipe-c-tiling-yf-crc-sprite-planes-basic:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 8.76] s

  * igt@kms_ccs@pipe-c-tiling-yf-missing-ccs-buffer:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 0.30] s

  * igt@kms_ccs@pipe-d-tiling-y-bad-aux-stride:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-y-bad-pixel-format:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-y-bad-rotation-90:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-y-ccs-on-another-bo:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-y-crc-primary-basic:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-y-crc-primary-rotation-180:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-y-crc-sprite-planes-basic:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-y-missing-ccs-buffer:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-yf-bad-aux-stride:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-yf-bad-pixel-format:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-yf-bad-rotation-90:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-yf-ccs-on-another-bo:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-yf-crc-primary-basic:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-yf-crc-primary-rotation-180:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-yf-crc-sprite-planes-basic:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_ccs@pipe-d-tiling-yf-missing-ccs-buffer:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@vcs1-none:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#109276] / [fdo#112080]) +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb2/igt@gem_ctx_isolation@vcs1-none.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb6/igt@gem_ctx_isolation@vcs1-none.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#110841])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb6/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_exec_schedule@preempt-other-chain-bsd:
    - shard-iclb:         [PASS][8] -> [SKIP][9] ([fdo#112146]) +7 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html

  * igt@gem_exec_store@pages-vcs1:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([fdo#112080]) +10 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb4/igt@gem_exec_store@pages-vcs1.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb5/igt@gem_exec_store@pages-vcs1.html

  * igt@gem_softpin@noreloc-s3:
    - shard-apl:          [PASS][12] -> [DMESG-WARN][13] ([fdo#108566]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-apl3/igt@gem_softpin@noreloc-s3.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-apl4/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-snb:          [PASS][14] -> [DMESG-WARN][15] ([fdo#111870]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-snb5/igt@gem_userptr_blits@dmabuf-sync.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-snb2/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-hsw:          [PASS][16] -> [DMESG-WARN][17] ([fdo#111870])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-hsw1/igt@gem_userptr_blits@dmabuf-sync.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-hsw4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@i915_selftest@live_hangcheck:
    - shard-hsw:          [PASS][18] -> [DMESG-FAIL][19] ([fdo#111991])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-hsw4/igt@i915_selftest@live_hangcheck.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-hsw1/igt@i915_selftest@live_hangcheck.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          [PASS][20] -> [DMESG-WARN][21] ([fdo#108566]) +2 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-kbl3/igt@i915_suspend@sysfs-reader.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-kbl7/igt@i915_suspend@sysfs-reader.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         [PASS][22] -> [FAIL][23] ([fdo#103167]) +6 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [PASS][24] -> [SKIP][25] ([fdo#109441]) +2 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb3/igt@kms_psr@psr2_cursor_render.html

  * igt@perf@short-reads:
    - shard-apl:          [PASS][26] -> [TIMEOUT][27] ([fdo#103183])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-apl2/igt@perf@short-reads.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-apl3/igt@perf@short-reads.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [PASS][28] -> [SKIP][29] ([fdo#109276]) +17 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb6/igt@prime_vgem@fence-wait-bsd2.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs0-s3:
    - {shard-tglb}:       [INCOMPLETE][30] ([fdo#111832]) -> [PASS][31] +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-tglb4/igt@gem_ctx_isolation@vcs0-s3.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb2/igt@gem_ctx_isolation@vcs0-s3.html

  * {igt@gem_ctx_persistence@vcs1-queued}:
    - shard-iclb:         [SKIP][32] ([fdo#109276] / [fdo#112080]) -> [PASS][33] +3 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb8/igt@gem_ctx_persistence@vcs1-queued.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb4/igt@gem_ctx_persistence@vcs1-queued.html

  * igt@gem_ctx_switch@all-light:
    - {shard-tglb}:       [INCOMPLETE][34] ([fdo#111672]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-tglb6/igt@gem_ctx_switch@all-light.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb5/igt@gem_ctx_switch@all-light.html

  * igt@gem_eio@in-flight-suspend:
    - {shard-tglb}:       [INCOMPLETE][36] ([fdo#111832] / [fdo#111850] / [fdo#112081]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-tglb5/igt@gem_eio@in-flight-suspend.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb5/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@suspend:
    - {shard-tglb}:       [INCOMPLETE][38] ([fdo#111850]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-tglb1/igt@gem_eio@suspend.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb7/igt@gem_eio@suspend.html

  * igt@gem_exec_nop@basic-series:
    - {shard-tglb}:       [INCOMPLETE][40] ([fdo#111747]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-tglb6/igt@gem_exec_nop@basic-series.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb8/igt@gem_exec_nop@basic-series.html

  * igt@gem_exec_parallel@vcs1-fds:
    - shard-iclb:         [SKIP][42] ([fdo#112080]) -> [PASS][43] +11 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb3/igt@gem_exec_parallel@vcs1-fds.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html

  * igt@gem_exec_schedule@independent-bsd2:
    - shard-iclb:         [SKIP][44] ([fdo#109276]) -> [PASS][45] +14 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb7/igt@gem_exec_schedule@independent-bsd2.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb4/igt@gem_exec_schedule@independent-bsd2.html

  * igt@gem_exec_schedule@preempt-other-bsd:
    - shard-iclb:         [SKIP][46] ([fdo#112146]) -> [PASS][47] +4 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb2/igt@gem_exec_schedule@preempt-other-bsd.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb3/igt@gem_exec_schedule@preempt-other-bsd.html

  * igt@gem_exec_schedule@preempt-queue-contexts-bsd1:
    - {shard-tglb}:       [INCOMPLETE][48] ([fdo#111606] / [fdo#111677]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-bsd1.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-bsd1.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [DMESG-WARN][50] ([fdo#111870]) -> [PASS][51] +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
    - shard-hsw:          [DMESG-WARN][52] ([fdo#111870]) -> [PASS][53] +3 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-hsw5/igt@gem_userptr_blits@sync-unmap-cycles.html

  * {igt@i915_pm_dc@dc6-dpms}:
    - shard-iclb:         [FAIL][54] ([fdo#110548]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-kbl:          [DMESG-WARN][56] ([fdo#103313]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-kbl1/igt@i915_pm_rpm@system-suspend-execbuf.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@kms_flip@flip-vs-modeset-interruptible:
    - shard-hsw:          [DMESG-WARN][58] ([fdo#102614]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-hsw5/igt@kms_flip@flip-vs-modeset-interruptible.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-hsw7/igt@kms_flip@flip-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [DMESG-WARN][60] ([fdo#108566]) -> [PASS][61] +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-iclb:         [FAIL][62] ([fdo#103167]) -> [PASS][63] +5 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - {shard-tglb}:       [FAIL][64] ([fdo#103167]) -> [PASS][65] +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_plane@pixel-format-pipe-b-planes:
    - shard-iclb:         [FAIL][66] -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5260/shard-iclb8/igt@kms_plane

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3645/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] ✗ GitLab.Pipeline: failure for GEN12 render decompression
  2019-11-04 12:37 [igt-dev] [PATCH i-g-t v2 0/3] GEN12 render decompression Mika Kahola
                   ` (4 preceding siblings ...)
  2019-11-04 19:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2019-11-05 10:50 ` Patchwork
  5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-11-05 10:50 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev

== Series Details ==

Series: GEN12 render decompression
URL   : https://patchwork.freedesktop.org/series/68937/
State : failure

== Summary ==

ERROR! This series introduces new undocumented tests:

kms_ccs@pipe-A-tiling-Y-rc-bad-aux-stride
kms_ccs@pipe-A-tiling-Y-rc-bad-pixel-format
kms_ccs@pipe-A-tiling-Y-rc-ccs-on-another-bo
kms_ccs@pipe-A-tiling-Y-rc-crc-primary-basic
kms_ccs@pipe-A-tiling-Y-rc-crc-primary-rotation-180
kms_ccs@pipe-A-tiling-Y-rc-crc-sprite-planes-basic
kms_ccs@pipe-A-tiling-Y-rc-missing-ccs-buffer
kms_ccs@pipe-B-tiling-Y-rc-bad-aux-stride
kms_ccs@pipe-B-tiling-Y-rc-bad-pixel-format
kms_ccs@pipe-B-tiling-Y-rc-ccs-on-another-bo
kms_ccs@pipe-B-tiling-Y-rc-crc-primary-basic
kms_ccs@pipe-B-tiling-Y-rc-crc-primary-rotation-180
kms_ccs@pipe-B-tiling-Y-rc-crc-sprite-planes-basic
kms_ccs@pipe-B-tiling-Y-rc-missing-ccs-buffer
kms_ccs@pipe-C-tiling-Y-rc-bad-aux-stride
kms_ccs@pipe-C-tiling-Y-rc-bad-pixel-format
kms_ccs@pipe-C-tiling-Y-rc-ccs-on-another-bo
kms_ccs@pipe-C-tiling-Y-rc-crc-primary-basic
kms_ccs@pipe-C-tiling-Y-rc-crc-primary-rotation-180
kms_ccs@pipe-C-tiling-Y-rc-crc-sprite-planes-basic
kms_ccs@pipe-C-tiling-Y-rc-missing-ccs-buffer
kms_ccs@pipe-D-tiling-Y-rc-bad-aux-stride
kms_ccs@pipe-D-tiling-Y-rc-bad-pixel-format
kms_ccs@pipe-D-tiling-Y-rc-ccs-on-another-bo
kms_ccs@pipe-D-tiling-Y-rc-crc-primary-basic
kms_ccs@pipe-D-tiling-Y-rc-crc-primary-rotation-180
kms_ccs@pipe-D-tiling-Y-rc-crc-sprite-planes-basic
kms_ccs@pipe-D-tiling-Y-rc-missing-ccs-buffer
kms_ccs@pipe-E-tiling-Y-rc-bad-aux-stride
kms_ccs@pipe-E-tiling-Y-rc-bad-pixel-format
kms_ccs@pipe-E-tiling-Y-rc-ccs-on-another-bo
kms_ccs@pipe-E-tiling-Y-rc-crc-primary-basic
kms_ccs@pipe-E-tiling-Y-rc-crc-primary-rotation-180
kms_ccs@pipe-E-tiling-Y-rc-crc-sprite-planes-basic
kms_ccs@pipe-E-tiling-Y-rc-missing-ccs-buffer
kms_ccs@pipe-F-tiling-Y-rc-bad-aux-stride
kms_ccs@pipe-F-tiling-Y-rc-bad-pixel-format
kms_ccs@pipe-F-tiling-Y-rc-ccs-on-another-bo
kms_ccs@pipe-F-tiling-Y-rc-crc-primary-basic
kms_ccs@pipe-F-tiling-Y-rc-crc-primary-rotation-180
kms_ccs@pipe-F-tiling-Y-rc-crc-sprite-planes-basic
kms_ccs@pipe-F-tiling-Y-rc-missing-ccs-buffer

Can you document them as per the requirement in the [CONTRIBUTING.md]?

[Documentation] has more details on how to do this.

Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d

Thanks in advance!

[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe

Other than that, pipeline status: SUCCESS.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/75988 for more details

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/75988
_______________________________________________
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:[~2019-11-05 10:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-04 12:37 [igt-dev] [PATCH i-g-t v2 0/3] GEN12 render decompression Mika Kahola
2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 1/3] Format modifier for Intel Gen-12 render compression Mika Kahola
2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/igt_fb.c: Update tile sizes for GEN12 CCS Mika Kahola
2019-11-04 12:37 ` [igt-dev] [PATCH i-g-t v2 3/3] tests/kms_ccs: Add GEN12 CCS render compression format modifiers Mika Kahola
2019-11-04 15:03 ` [igt-dev] ✓ Fi.CI.BAT: success for GEN12 render decompression Patchwork
2019-11-04 19:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-11-05 10:50 ` [igt-dev] ✗ GitLab.Pipeline: failure " 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.