All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_panel_fitting: Convert test to dynamic
@ 2022-06-15  9:46 Swati Sharma
  2022-06-15 10:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Swati Sharma @ 2022-06-15  9:46 UTC (permalink / raw)
  To: igt-dev

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 tests/kms_panel_fitting.c | 209 +++++++++++++++++++-------------------
 1 file changed, 104 insertions(+), 105 deletions(-)

diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
index 9f607376..a75aa629 100644
--- a/tests/kms_panel_fitting.c
+++ b/tests/kms_panel_fitting.c
@@ -28,6 +28,11 @@
 
 IGT_TEST_DESCRIPTION("Test display panel fitting");
 
+enum test_type {
+	TEST_LEGACY,
+	TEST_ATOMIC,
+};
+
 typedef struct {
 	int drm_fd;
 	igt_display_t display;
@@ -80,109 +85,96 @@ static void prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe,
 	igt_display_commit2(display, s);
 }
 
-static void test_panel_fitting(data_t *d)
+static void
+test_panel_fitting_legacy(data_t *d, igt_display_t *display,
+			  const enum pipe pipe, igt_output_t *output)
 {
-	igt_display_t *display = &d->display;
-	igt_output_t *output;
-	enum pipe pipe;
-	int valid_tests = 0;
+	drmModeModeInfo *mode, native_mode;
+	bool is_plane_scaling_active = true;
 
-	for_each_pipe_with_valid_output(display, pipe, output) {
-		drmModeModeInfo *mode, native_mode;
-		bool is_plane_scaling_active = true;
-
-		/* Check that the "scaling mode" property has been set. */
-		if (!igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE))
-			continue;
-
-		cleanup_crtc(d);
-		igt_output_set_pipe(output, pipe);
-
-		mode = igt_output_get_mode(output);
-		native_mode = *mode;
-
-		/* allocate fb2 with image */
-		igt_create_pattern_fb(d->drm_fd, mode->hdisplay / 2, mode->vdisplay / 2,
-				      DRM_FORMAT_XRGB8888,
-				      DRM_FORMAT_MOD_LINEAR, &d->fb2);
+	igt_output_set_pipe(output, pipe);
 
-		/* Set up display to enable panel fitting */
-		if (is_amdgpu_device(display->drm_fd)) {
-			mode->hdisplay = 800;
-			mode->vdisplay = 600;
-		} else {
-			mode->hdisplay = 640;
-			mode->vdisplay = 480;
-		}
-		d->plane1 = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
-		prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
+	mode = igt_output_get_mode(output);
+	native_mode = *mode;
 
-		/* disable panel fitting */
-		prepare_crtc(d, output, pipe, d->plane1, &native_mode, COMMIT_LEGACY);
+	/* allocate fb2 with image */
+	igt_create_pattern_fb(d->drm_fd, mode->hdisplay / 2, mode->vdisplay / 2,
+			      DRM_FORMAT_XRGB8888,
+			      DRM_FORMAT_MOD_LINEAR, &d->fb2);
 
-		/* enable panel fitting */
+	/* set up display to enable panel fitting */
+	if (is_amdgpu_device(display->drm_fd)) {
 		mode->hdisplay = 800;
 		mode->vdisplay = 600;
-		prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
-
-		/* disable panel fitting */
-		prepare_crtc(d, output, pipe, d->plane1, &native_mode, COMMIT_LEGACY);
+	} else {
+		mode->hdisplay = 640;
+		mode->vdisplay = 480;
+	}
+	d->plane1 = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+	prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
 
-		/* Set up fb2->plane2 mapping. */
-		d->plane2 = igt_output_get_plane_type(output, DRM_PLANE_TYPE_OVERLAY);
-		igt_plane_set_fb(d->plane2, &d->fb2);
+	/* disable panel fitting */
+	prepare_crtc(d, output, pipe, d->plane1, &native_mode, COMMIT_LEGACY);
 
-		/* enable sprite plane */
-		igt_fb_set_position(&d->fb2, d->plane2, 100, 100);
-		igt_fb_set_size(&d->fb2, d->plane2, d->fb2.width-200, d->fb2.height-200);
-		igt_plane_set_position(d->plane2, 100, 100);
+	/* enable panel fitting */
+	mode->hdisplay = 800;
+	mode->vdisplay = 600;
+	prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
 
-		if (is_i915_device(display->drm_fd)) {
-			uint32_t devid = intel_get_drm_devid(display->drm_fd);
-			/*
-			 * Most of gen7 and all of gen8 doesn't support plane scaling
-			 * at all.
-			 *
-			 * gen9 pipe C has only 1 scaler shared with the crtc, which
-			 * means pipe scaling can't work simultaneously with panel
-			 * fitting.
-			 *
-			 * Since this is the legacy path, userspace has to know about
-			 * the HW limitations, whereas atomic can ask.
-			 */
-			if (IS_GEN8(devid) ||
-				(IS_GEN7(devid) && !IS_IVYBRIDGE(devid)) ||
-				(IS_GEN9(devid) && pipe == PIPE_C)) {
-				is_plane_scaling_active = false;
-			}
-		}
-		if (is_plane_scaling_active) {
-			/*
-			 * different than visible area of fb => plane scaling
-			 * active
-			 */
-			igt_plane_set_size(d->plane2,
-					   mode->hdisplay-200,
-					   mode->vdisplay-200);
-		}
-		else {
-			/* same as visible area of fb => no scaling */
-			igt_plane_set_size(d->plane2,
-				d->fb2.width - 200,
-				d->fb2.height - 200);
-		}
+	/* disable panel fitting */
+	prepare_crtc(d, output, pipe, d->plane1, &native_mode, COMMIT_LEGACY);
 
-		/* Plane scaling active (if possible), pfit off */
-		igt_display_commit2(display, COMMIT_UNIVERSAL);
+	/* set up fb2->plane2 mapping. */
+	d->plane2 = igt_output_get_plane_type(output, DRM_PLANE_TYPE_OVERLAY);
+	igt_plane_set_fb(d->plane2, &d->fb2);
 
-		/* enable panel fitting along with sprite scaling */
-		mode->hdisplay = 1024;
-		mode->vdisplay = 768;
-		prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
+	/* enable sprite plane */
+	igt_fb_set_position(&d->fb2, d->plane2, 100, 100);
+	igt_fb_set_size(&d->fb2, d->plane2, d->fb2.width-200, d->fb2.height-200);
+	igt_plane_set_position(d->plane2, 100, 100);
 
-		valid_tests++;
+	if (is_i915_device(display->drm_fd)) {
+		uint32_t devid = intel_get_drm_devid(display->drm_fd);
+		/*
+		 * Most of gen7 and all of gen8 doesn't support plane scaling
+		 * at all.
+		 *
+		 * gen9 pipe C has only 1 scaler shared with the crtc, which
+		 * means pipe scaling can't work simultaneously with panel
+		 * fitting.
+		 *
+		 * Since this is the legacy path, userspace has to know about
+		 * the HW limitations, whereas atomic can ask.
+		 */
+		if (IS_GEN8(devid) ||
+			(IS_GEN7(devid) && !IS_IVYBRIDGE(devid)) ||
+			(IS_GEN9(devid) && pipe == PIPE_C)) {
+			is_plane_scaling_active = false;
+		}
+	}
+	if (is_plane_scaling_active) {
+		/*
+		 * different than visible area of fb => plane scaling
+		 * active
+		 */
+		igt_plane_set_size(d->plane2,
+				   mode->hdisplay-200,
+				   mode->vdisplay-200);
 	}
-	igt_require_f(valid_tests, "no valid crtc/connector combinations found\n");
+	else {
+		/* same as visible area of fb => no scaling */
+		igt_plane_set_size(d->plane2,
+			d->fb2.width - 200,
+			d->fb2.height - 200);
+	}
+
+	/* Plane scaling active (if possible), pfit off */
+	igt_display_commit2(display, COMMIT_UNIVERSAL);
+
+	/* enable panel fitting along with sprite scaling */
+	mode->hdisplay = 1024;
+	mode->vdisplay = 768;
+	prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
 }
 
 static void
@@ -234,34 +226,41 @@ test_panel_fitting_fastset(igt_display_t *display, const enum pipe pipe, igt_out
 	igt_display_commit_atomic(display, 0, NULL);
 }
 
-static void test_atomic_fastset(data_t *data)
+static void test_panel_fitting(data_t *data, enum test_type type)
 {
 	igt_display_t *display = &data->display;
 	igt_output_t *output;
 	enum pipe pipe;
-	int valid_tests = 0;
 	struct stat sb;
 
-	igt_require_f(is_i915_device(display->drm_fd), "not valid for non-i915 devices\n");
+	if (type == TEST_ATOMIC) {
+		igt_require_f(is_i915_device(display->drm_fd), "not valid for non-i915 devices\n");
 
-	if (is_i915_device(display->drm_fd)) {
-		/* Until this is force enabled, force modeset evasion. */
-		if (stat("/sys/module/i915/parameters/fastboot", &sb) == 0)
-			igt_set_module_param_int(data->drm_fd, "fastboot", 1);
+		if (is_i915_device(display->drm_fd)) {
+			/* Until this is force enabled, force modeset evasion. */
+			if (stat("/sys/module/i915/parameters/fastboot", &sb) == 0)
+				igt_set_module_param_int(data->drm_fd, "fastboot", 1);
+
+			igt_require(intel_display_ver(intel_get_drm_devid(display->drm_fd)) >= 5);
+		}
 
-		igt_require(intel_display_ver(intel_get_drm_devid(display->drm_fd)) >= 5);
+		igt_require(display->is_atomic);
 	}
 
-	igt_require(display->is_atomic);
 	for_each_pipe_with_valid_output(display, pipe, output) {
+		/* Check that the "scaling mode" property has been set. */
 		if (!igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE))
 			continue;
 
 		cleanup_crtc(data);
-		test_panel_fitting_fastset(display, pipe, output);
-		valid_tests++;
+
+		igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+			if (type == TEST_ATOMIC)
+				test_panel_fitting_fastset(display, pipe, output);
+			if (type == TEST_LEGACY)
+				test_panel_fitting_legacy(data, display, pipe, output);
+		}
 	}
-	igt_require_f(valid_tests, "no valid crtc/connector combinations found\n");
 }
 
 igt_main
@@ -275,12 +274,12 @@ igt_main
 	}
 
 	igt_describe("Tests panel fitting usages with legacy style commit.");
-	igt_subtest("legacy")
-		test_panel_fitting(&data);
+	igt_subtest_with_dynamic("legacy")
+		test_panel_fitting(&data, TEST_LEGACY);
 
 	igt_describe("Tests panel fitting usages with atomic fastset.");
-	igt_subtest("atomic-fastset")
-		test_atomic_fastset(&data);
+	igt_subtest_with_dynamic("atomic-fastset")
+		test_panel_fitting(&data, TEST_ATOMIC);
 
 	igt_fixture
 		igt_display_fini(&data.display);
-- 
2.25.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_panel_fitting: Convert test to dynamic
  2022-06-15  9:46 [igt-dev] [PATCH i-g-t] tests/kms_panel_fitting: Convert test to dynamic Swati Sharma
@ 2022-06-15 10:48 ` Patchwork
  2022-06-15 15:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2022-06-17  9:14 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2022-06-15 10:48 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_panel_fitting: Convert test to dynamic
URL   : https://patchwork.freedesktop.org/series/105147/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11759 -> IGTPW_7316
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (44 -> 42)
------------------------------

  Additional (1): bat-dg2-8 
  Missing    (3): fi-kbl-soraka fi-bdw-samus bat-dg1-5 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@gem:
    - fi-blb-e6850:       NOTRUN -> [DMESG-FAIL][1] ([i915#4528])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/fi-blb-e6850/igt@i915_selftest@live@gem.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-6:          [PASS][2] -> [DMESG-FAIL][3] ([i915#4494] / [i915#4957])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/bat-dg1-6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_busy@basic@flip:
    - bat-adlp-4:         [PASS][4] -> [DMESG-WARN][5] ([i915#3576]) +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/bat-adlp-4/igt@kms_busy@basic@flip.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/bat-adlp-4/igt@kms_busy@basic@flip.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s0@smem:
    - {fi-ehl-2}:         [DMESG-WARN][6] ([i915#5122]) -> [PASS][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/fi-ehl-2/igt@gem_exec_suspend@basic-s0@smem.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/fi-ehl-2/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@i915_pm_rpm@module-reload:
    - bat-adlp-4:         [DMESG-WARN][8] ([i915#3576]) -> [PASS][9] +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/bat-adlp-4/igt@i915_pm_rpm@module-reload.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/bat-adlp-4/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-cfl-guc:         [DMESG-FAIL][10] ([i915#5334]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/fi-cfl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/fi-cfl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@requests:
    - fi-blb-e6850:       [DMESG-FAIL][12] ([i915#4528]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/fi-blb-e6850/igt@i915_selftest@live@requests.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/fi-blb-e6850/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@slpc:
    - {bat-dg2-9}:        [DMESG-WARN][14] ([i915#5763]) -> [PASS][15] +6 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/bat-dg2-9/igt@i915_selftest@live@slpc.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/bat-dg2-9/igt@i915_selftest@live@slpc.html

  * igt@kms_busy@basic@flip:
    - fi-tgl-u2:          [DMESG-WARN][16] ([i915#402]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/fi-tgl-u2/igt@kms_busy@basic@flip.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/fi-tgl-u2/igt@kms_busy@basic@flip.html
    - {bat-adlp-6}:       [DMESG-WARN][18] ([i915#3576]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/bat-adlp-6/igt@kms_busy@basic@flip.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/bat-adlp-6/igt@kms_busy@basic@flip.html

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

  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763
  [i915#5885]: https://gitlab.freedesktop.org/drm/intel/issues/5885
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
  [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6529 -> IGTPW_7316

  CI-20190529: 20190529
  CI_DRM_11759: fa66b647ce886c01bbe1e9f3017a141e90d87539 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7316: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/index.html
  IGT_6529: b96bf5a0307fc0bdbf6c8e86872817306e102883 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_panel_fitting: Convert test to dynamic
  2022-06-15  9:46 [igt-dev] [PATCH i-g-t] tests/kms_panel_fitting: Convert test to dynamic Swati Sharma
  2022-06-15 10:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2022-06-15 15:55 ` Patchwork
  2022-06-17  9:14 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2022-06-15 15:55 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_panel_fitting: Convert test to dynamic
URL   : https://patchwork.freedesktop.org/series/105147/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11759_full -> IGTPW_7316_full
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (10 -> 10)
------------------------------

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-apl:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  
#### Suppressed ####

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

  * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
    - {shard-rkl}:        NOTRUN -> [SKIP][3] +5 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html

  * {igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1}:
    - {shard-dg1}:        NOTRUN -> [SKIP][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-dg1-13/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1.html

  * igt@testdisplay:
    - {shard-dg1}:        NOTRUN -> [DMESG-WARN][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-dg1-16/igt@testdisplay.html

  
New tests
---------

  New tests have been introduced between CI_DRM_11759_full and IGTPW_7316_full:

### New IGT tests (11) ###

  * igt@kms_cursor_edge_walk@top-edge@pipe-a-hdmi-a-3-128x128:
    - Statuses : 1 pass(s)
    - Exec time: [3.23] s

  * igt@kms_cursor_edge_walk@top-edge@pipe-a-hdmi-a-3-256x256:
    - Statuses : 1 pass(s)
    - Exec time: [3.23] s

  * igt@kms_cursor_edge_walk@top-edge@pipe-a-hdmi-a-3-64x64:
    - Statuses : 1 pass(s)
    - Exec time: [3.34] s

  * igt@kms_panel_fitting@atomic-fastset@pipe-a-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [0.07, 0.10] s

  * igt@kms_panel_fitting@atomic-fastset@pipe-b-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.21, 1.25] s

  * igt@kms_panel_fitting@atomic-fastset@pipe-c-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.21, 1.22] s

  * igt@kms_panel_fitting@atomic-fastset@pipe-d-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.17] s

  * igt@kms_panel_fitting@legacy@pipe-a-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [0.40, 0.52] s

  * igt@kms_panel_fitting@legacy@pipe-b-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.42, 1.52] s

  * igt@kms_panel_fitting@legacy@pipe-c-edp-1:
    - Statuses : 2 pass(s)
    - Exec time: [1.44, 1.52] s

  * igt@kms_panel_fitting@legacy@pipe-d-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.45] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ccs@block-copy-compressed:
    - shard-iclb:         NOTRUN -> [SKIP][6] ([i915#5327])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-kbl:          [PASS][7] -> [DMESG-WARN][8] ([i915#180]) +7 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_persistence@legacy-engines-mixed:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-snb6/igt@gem_ctx_persistence@legacy-engines-mixed.html

  * igt@gem_eio@in-flight-contexts-1us:
    - shard-apl:          [PASS][10] -> [TIMEOUT][11] ([i915#3063])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl8/igt@gem_eio@in-flight-contexts-1us.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl4/igt@gem_eio@in-flight-contexts-1us.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         NOTRUN -> [SKIP][12] ([i915#4525])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_balancer@parallel-contexts:
    - shard-iclb:         [PASS][13] -> [SKIP][14] ([i915#4525])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb2/igt@gem_exec_balancer@parallel-contexts.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb3/igt@gem_exec_balancer@parallel-contexts.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-apl:          NOTRUN -> [FAIL][15] ([i915#6141])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][16] -> [FAIL][17] ([i915#2842]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][18] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][19] ([i915#2842]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][20] -> [FAIL][21] ([i915#2842]) +6 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_params@no-blt:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([fdo#109283])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb1/igt@gem_exec_params@no-blt.html

  * igt@gem_huc_copy@huc-copy:
    - shard-kbl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2190])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl4/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#4613]) +3 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb6/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-tglb:         NOTRUN -> [SKIP][25] ([i915#4613]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
    - shard-glk:          NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4613]) +3 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613]) +4 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl1/igt@gem_lmem_swapping@parallel-random-verify.html
    - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#4613]) +4 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl8/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-kbl:          NOTRUN -> [WARN][29] ([i915#2658])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl4/igt@gem_pwrite@basic-exhaustion.html

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

  * igt@gen9_exec_parse@allowed-all:
    - shard-iclb:         NOTRUN -> [SKIP][31] ([i915#2856]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@gen9_exec_parse@allowed-all.html
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#2527] / [i915#2856])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb6/igt@gen9_exec_parse@allowed-all.html
    - shard-glk:          NOTRUN -> [DMESG-WARN][33] ([i915#5566] / [i915#716])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk1/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-kbl:          [PASS][34] -> [DMESG-WARN][35] ([i915#5566] / [i915#716])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl7/igt@gen9_exec_parse@allowed-single.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl3/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109293] / [fdo#109506])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
    - shard-tglb:         NOTRUN -> [SKIP][37] ([fdo#109506] / [i915#2411])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_selftest@live@hangcheck:
    - shard-tglb:         [PASS][38] -> [DMESG-WARN][39] ([i915#5591])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-tglb6/igt@i915_selftest@live@hangcheck.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb5/igt@i915_selftest@live@hangcheck.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#5286])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#110725] / [fdo#111614]) +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#111614]) +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb1/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#110723]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#111615])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109278] / [i915#3886]) +2 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#3689] / [i915#3886]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#3886]) +5 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#3886]) +7 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#3886]) +2 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk8/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#109278]) +18 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][51] ([fdo#109271]) +186 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl3/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_rc_ccs_cc:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#3689]) +3 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb3/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_chamelium@hdmi-crc-single:
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb5/igt@kms_chamelium@hdmi-crc-single.html

  * igt@kms_chamelium@hdmi-hpd-enable-disable-mode:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb1/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html

  * igt@kms_color@pipe-d-ctm-max:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([fdo#109278] / [i915#1149])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb1/igt@kms_color@pipe-d-ctm-max.html

  * igt@kms_color@pipe-d-deep-color:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([i915#3555])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb5/igt@kms_color@pipe-d-deep-color.html

  * igt@kms_color_chamelium@pipe-a-ctm-0-25:
    - shard-snb:          NOTRUN -> [SKIP][57] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-snb6/igt@kms_color_chamelium@pipe-a-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-a-ctm-negative:
    - shard-kbl:          NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl1/igt@kms_color_chamelium@pipe-a-ctm-negative.html

  * igt@kms_color_chamelium@pipe-c-ctm-green-to-red:
    - shard-apl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [fdo#111827]) +11 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl1/igt@kms_color_chamelium@pipe-c-ctm-green-to-red.html

  * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue:
    - shard-glk:          NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk7/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html

  * igt@kms_content_protection@atomic:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#1063])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb5/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy:
    - shard-apl:          NOTRUN -> [TIMEOUT][62] ([i915#1319]) +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl8/igt@kms_content_protection@legacy.html
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][64] ([i915#1319]) +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl3/igt@kms_content_protection@lic.html

  * igt@kms_cursor_crc@pipe-c-cursor-32x10-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([i915#3359]) +2 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-32x10-offscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109278] / [fdo#109279])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb5/igt@kms_cursor_crc@pipe-c-cursor-512x512-sliding.html

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

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109274] / [fdo#109278])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#4103]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@xrgb8888-dsc-compression:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([i915#3828])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb6/igt@kms_dsc@xrgb8888-dsc-compression.html
    - shard-iclb:         NOTRUN -> [SKIP][71] ([i915#3828])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb3/igt@kms_dsc@xrgb8888-dsc-compression.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([fdo#109274] / [fdo#111825]) +2 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb5/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109274]) +2 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb4/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling:
    - shard-iclb:         NOTRUN -> [SKIP][74] ([i915#2587]) +1 similar issue
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
    - shard-kbl:          NOTRUN -> [SKIP][75] ([fdo#109271]) +183 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109280]) +12 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#109280] / [fdo#111825]) +6 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([i915#1839])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533]) +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl3/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
    - shard-kbl:          NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#533])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl6/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
    - shard-apl:          [PASS][81] -> [DMESG-WARN][82] ([i915#180]) +4 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][83] ([fdo#108145] / [i915#265])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl4/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-edp-1:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([i915#5176]) +2 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-edp-1.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-edp-1:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#5176]) +3 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1:
    - shard-iclb:         [PASS][87] -> [SKIP][88] ([i915#5235]) +2 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-1:
    - shard-glk:          NOTRUN -> [SKIP][89] ([fdo#109271]) +69 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#2920])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
    - shard-glk:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#658])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk8/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
    - shard-iclb:         NOTRUN -> [SKIP][92] ([i915#658])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-kbl:          NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#658]) +2 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-apl:          NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#658]) +2 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [PASS][95] -> [SKIP][96] ([fdo#109441]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-iclb:         [PASS][97] -> [SKIP][98] ([i915#5519])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_vblank@pipe-c-query-busy-hang:
    - shard-snb:          NOTRUN -> [SKIP][99] ([fdo#109271]) +165 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-snb6/igt@kms_vblank@pipe-c-query-busy-hang.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#2437])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb1/igt@kms_writeback@writeback-check-output.html
    - shard-apl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#2437])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl7/igt@kms_writeback@writeback-check-output.html
    - shard-glk:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2437])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk6/igt@kms_writeback@writeback-check-output.html

  * igt@nouveau_crc@pipe-c-source-outp-complete:
    - shard-tglb:         NOTRUN -> [SKIP][103] ([i915#2530])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb2/igt@nouveau_crc@pipe-c-source-outp-complete.html

  * igt@nouveau_crc@pipe-c-source-outp-inactive:
    - shard-iclb:         NOTRUN -> [SKIP][104] ([i915#2530]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@nouveau_crc@pipe-c-source-outp-inactive.html

  * igt@sw_sync@sync_multi_timeline_wait:
    - shard-kbl:          NOTRUN -> [FAIL][105] ([i915#6140])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl4/igt@sw_sync@sync_multi_timeline_wait.html

  * igt@sysfs_clients@fair-0:
    - shard-kbl:          NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl6/igt@sysfs_clients@fair-0.html
    - shard-tglb:         NOTRUN -> [SKIP][107] ([i915#2994]) +1 similar issue
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb1/igt@sysfs_clients@fair-0.html
    - shard-glk:          NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#2994]) +1 similar issue
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk3/igt@sysfs_clients@fair-0.html
    - shard-iclb:         NOTRUN -> [SKIP][109] ([i915#2994]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb6/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@pidname:
    - shard-apl:          NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#2994]) +2 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl8/igt@sysfs_clients@pidname.html

  
#### Possible fixes ####

  * igt@device_reset@unbind-reset-rebind:
    - shard-kbl:          [DMESG-WARN][111] -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl7/igt@device_reset@unbind-reset-rebind.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl7/igt@device_reset@unbind-reset-rebind.html
    - shard-snb:          [DMESG-WARN][113] -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-snb6/igt@device_reset@unbind-reset-rebind.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-snb2/igt@device_reset@unbind-reset-rebind.html
    - shard-apl:          [DMESG-WARN][115] -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl2/igt@device_reset@unbind-reset-rebind.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl2/igt@device_reset@unbind-reset-rebind.html
    - shard-glk:          [DMESG-WARN][117] -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-glk6/igt@device_reset@unbind-reset-rebind.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk5/igt@device_reset@unbind-reset-rebind.html
    - shard-iclb:         [DMESG-WARN][119] -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb7/igt@device_reset@unbind-reset-rebind.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb1/igt@device_reset@unbind-reset-rebind.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-iclb:         [SKIP][121] ([i915#4525]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][123] ([i915#2842]) -> [PASS][124] +3 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [FAIL][125] ([i915#2842]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-tglb:         [FAIL][127] ([i915#2842]) -> [PASS][128] +2 similar issues
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-tglb2/igt@gem_exec_fair@basic-pace@vcs1.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html
    - shard-kbl:          [FAIL][129] ([i915#2842]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][131] ([i915#2849]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [DMESG-WARN][133] ([i915#5566] / [i915#716]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl4/igt@gen9_exec_parse@allowed-single.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl7/igt@gen9_exec_parse@allowed-single.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [INCOMPLETE][135] ([i915#180]) -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1:
    - shard-apl:          [FAIL][137] ([i915#79]) -> [PASS][138]
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-iclb:         [SKIP][141] ([i915#3701]) -> [PASS][142]
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-glk:          [FAIL][143] ([i915#4911]) -> [PASS][144]
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-glk4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
    - shard-kbl:          [DMESG-WARN][145] ([i915#180]) -> [PASS][146] +1 similar issue
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-iclb:         [SKIP][147] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][148]
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb3/igt@kms_psr2_su@page_flip-xrgb8888.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][149] ([fdo#109441]) -> [PASS][150] +1 similar issue
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb6/igt@kms_psr@psr2_cursor_render.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglb:         [SKIP][151] ([i915#5519]) -> [PASS][152]
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-tglb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@perf_pmu@module-unload:
    - shard-snb:          [DMESG-WARN][153] ([i915#4528] / [i915#5296]) -> [PASS][154]
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-snb4/igt@perf_pmu@module-unload.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-snb2/igt@perf_pmu@module-unload.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][155] ([i915#2852]) -> [FAIL][156] ([i915#2842])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [INCOMPLETE][157] ([i915#180]) -> [FAIL][158] ([i915#4767])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-iclb:         [SKIP][159] ([i915#658]) -> [SKIP][160] ([i915#2920]) +1 similar issue
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
    - shard-iclb:         [SKIP][161] ([i915#2920]) -> [SKIP][162] ([fdo#111068] / [i915#658]) +1 similar issue
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-iclb:         [SKIP][163] ([fdo#111068] / [i915#658]) -> [SKIP][164] ([i915#2920])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][165], [FAIL][166], [FAIL][167], [FAIL][168], [FAIL][169], [FAIL][170], [FAIL][171]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][172], [FAIL][173], [FAIL][174], [FAIL][175], [FAIL][176], [FAIL][177], [FAIL][178]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl2/igt@runner@aborted.html
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl2/igt@runner@aborted.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl4/igt@runner@aborted.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl8/igt@runner@aborted.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl8/igt@runner@aborted.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl4/igt@runner@aborted.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-apl1/igt@runner@aborted.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl6/igt@runner@aborted.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl3/igt@runner@aborted.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl8/igt@runner@aborted.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl4/igt@runner@aborted.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl1/igt@runner@aborted.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl7/igt@runner@aborted.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-apl4/igt@runner@aborted.html
    - shard-kbl:          ([FAIL][179], [FAIL][180], [FAIL][181], [FAIL][182], [FAIL][183], [FAIL][184]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#92]) -> ([FAIL][185], [FAIL][186], [FAIL][187], [FAIL][188], [FAIL][189], [FAIL][190]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#716])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl1/igt@runner@aborted.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl1/igt@runner@aborted.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl1/igt@runner@aborted.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl7/igt@runner@aborted.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl4/igt@runner@aborted.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11759/shard-kbl4/igt@runner@aborted.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl1/igt@runner@aborted.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl7/igt@runner@aborted.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl1/igt@runner@aborted.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl3/igt@runner@aborted.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl6/igt@runner@aborted.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/shard-kbl1/igt@runner@aborted.html

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

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810
  [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
  [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
  [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
  [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
  [i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
  [i915#4911]: https://gitlab.freedesktop.org/drm/intel/issues/4911
  [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
  [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5264]: https://gitlab.freedesktop.org/drm/intel/issues/5264
  [i915#5266]: https://gitlab.freedesktop.org/drm/intel/issues/5266
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5296]: https://gitlab.freedesktop.org/drm/intel/issues/5296
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
  [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140
  [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141
  [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6529 -> IGTPW_7316
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_11759: fa66b647ce886c01bbe1e9f3017a141e90d87539 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7316: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7316/index.html
  IGT_6529: b96bf5a0307fc0bdbf6c8e86872817306e102883 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/kms_panel_fitting: Convert test to dynamic
  2022-06-15  9:46 [igt-dev] [PATCH i-g-t] tests/kms_panel_fitting: Convert test to dynamic Swati Sharma
  2022-06-15 10:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2022-06-15 15:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-06-17  9:14 ` Modem, Bhanuprakash
  2022-06-20 16:02   ` Sharma, Swati2
  2 siblings, 1 reply; 5+ messages in thread
From: Modem, Bhanuprakash @ 2022-06-17  9:14 UTC (permalink / raw)
  To: Swati Sharma, igt-dev

On Wed-15-06-2022 03:16 pm, Swati Sharma wrote:
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
>   tests/kms_panel_fitting.c | 209 +++++++++++++++++++-------------------
>   1 file changed, 104 insertions(+), 105 deletions(-)
> 
> diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
> index 9f607376..a75aa629 100644
> --- a/tests/kms_panel_fitting.c
> +++ b/tests/kms_panel_fitting.c
> @@ -28,6 +28,11 @@
>   
>   IGT_TEST_DESCRIPTION("Test display panel fitting");
>   
> +enum test_type {
> +	TEST_LEGACY,
> +	TEST_ATOMIC,
> +};
> +
>   typedef struct {
>   	int drm_fd;
>   	igt_display_t display;
> @@ -80,109 +85,96 @@ static void prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe,
>   	igt_display_commit2(display, s);
>   }
>   
> -static void test_panel_fitting(data_t *d)
> +static void
> +test_panel_fitting_legacy(data_t *d, igt_display_t *display,
> +			  const enum pipe pipe, igt_output_t *output)
>   {
> -	igt_display_t *display = &d->display;
> -	igt_output_t *output;
> -	enum pipe pipe;
> -	int valid_tests = 0;
> +	drmModeModeInfo *mode, native_mode;
> +	bool is_plane_scaling_active = true;
>   
> -	for_each_pipe_with_valid_output(display, pipe, output) {
> -		drmModeModeInfo *mode, native_mode;
> -		bool is_plane_scaling_active = true;
> -
> -		/* Check that the "scaling mode" property has been set. */
> -		if (!igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE))
> -			continue;
> -
> -		cleanup_crtc(d);
> -		igt_output_set_pipe(output, pipe);
> -
> -		mode = igt_output_get_mode(output);
> -		native_mode = *mode;
> -
> -		/* allocate fb2 with image */
> -		igt_create_pattern_fb(d->drm_fd, mode->hdisplay / 2, mode->vdisplay / 2,
> -				      DRM_FORMAT_XRGB8888,
> -				      DRM_FORMAT_MOD_LINEAR, &d->fb2);
> +	igt_output_set_pipe(output, pipe);

As we are doing it here, we need to drop this from prepare_crtc().

>   
> -		/* Set up display to enable panel fitting */
> -		if (is_amdgpu_device(display->drm_fd)) {
> -			mode->hdisplay = 800;
> -			mode->vdisplay = 600;
> -		} else {
> -			mode->hdisplay = 640;
> -			mode->vdisplay = 480;
> -		}
> -		d->plane1 = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> -		prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
> +	mode = igt_output_get_mode(output);
> +	native_mode = *mode;
>   
> -		/* disable panel fitting */
> -		prepare_crtc(d, output, pipe, d->plane1, &native_mode, COMMIT_LEGACY);
> +	/* allocate fb2 with image */
> +	igt_create_pattern_fb(d->drm_fd, mode->hdisplay / 2, mode->vdisplay / 2,
> +			      DRM_FORMAT_XRGB8888,
> +			      DRM_FORMAT_MOD_LINEAR, &d->fb2);
>   
> -		/* enable panel fitting */
> +	/* set up display to enable panel fitting */
> +	if (is_amdgpu_device(display->drm_fd)) {
>   		mode->hdisplay = 800;
>   		mode->vdisplay = 600;
> -		prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
> -
> -		/* disable panel fitting */
> -		prepare_crtc(d, output, pipe, d->plane1, &native_mode, COMMIT_LEGACY);
> +	} else {
> +		mode->hdisplay = 640;
> +		mode->vdisplay = 480;
> +	}
> +	d->plane1 = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> +	prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>   
> -		/* Set up fb2->plane2 mapping. */
> -		d->plane2 = igt_output_get_plane_type(output, DRM_PLANE_TYPE_OVERLAY);
> -		igt_plane_set_fb(d->plane2, &d->fb2);
> +	/* disable panel fitting */
> +	prepare_crtc(d, output, pipe, d->plane1, &native_mode, COMMIT_LEGACY);
>   
> -		/* enable sprite plane */
> -		igt_fb_set_position(&d->fb2, d->plane2, 100, 100);
> -		igt_fb_set_size(&d->fb2, d->plane2, d->fb2.width-200, d->fb2.height-200);
> -		igt_plane_set_position(d->plane2, 100, 100);
> +	/* enable panel fitting */
> +	mode->hdisplay = 800;
> +	mode->vdisplay = 600;
> +	prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>   
> -		if (is_i915_device(display->drm_fd)) {
> -			uint32_t devid = intel_get_drm_devid(display->drm_fd);
> -			/*
> -			 * Most of gen7 and all of gen8 doesn't support plane scaling
> -			 * at all.
> -			 *
> -			 * gen9 pipe C has only 1 scaler shared with the crtc, which
> -			 * means pipe scaling can't work simultaneously with panel
> -			 * fitting.
> -			 *
> -			 * Since this is the legacy path, userspace has to know about
> -			 * the HW limitations, whereas atomic can ask.
> -			 */
> -			if (IS_GEN8(devid) ||
> -				(IS_GEN7(devid) && !IS_IVYBRIDGE(devid)) ||
> -				(IS_GEN9(devid) && pipe == PIPE_C)) {
> -				is_plane_scaling_active = false;
> -			}
> -		}
> -		if (is_plane_scaling_active) {
> -			/*
> -			 * different than visible area of fb => plane scaling
> -			 * active
> -			 */
> -			igt_plane_set_size(d->plane2,
> -					   mode->hdisplay-200,
> -					   mode->vdisplay-200);
> -		}
> -		else {
> -			/* same as visible area of fb => no scaling */
> -			igt_plane_set_size(d->plane2,
> -				d->fb2.width - 200,
> -				d->fb2.height - 200);
> -		}
> +	/* disable panel fitting */
> +	prepare_crtc(d, output, pipe, d->plane1, &native_mode, COMMIT_LEGACY);
>   
> -		/* Plane scaling active (if possible), pfit off */
> -		igt_display_commit2(display, COMMIT_UNIVERSAL);
> +	/* set up fb2->plane2 mapping. */
> +	d->plane2 = igt_output_get_plane_type(output, DRM_PLANE_TYPE_OVERLAY);
> +	igt_plane_set_fb(d->plane2, &d->fb2);
>   
> -		/* enable panel fitting along with sprite scaling */
> -		mode->hdisplay = 1024;
> -		mode->vdisplay = 768;
> -		prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
> +	/* enable sprite plane */
> +	igt_fb_set_position(&d->fb2, d->plane2, 100, 100);
> +	igt_fb_set_size(&d->fb2, d->plane2, d->fb2.width-200, d->fb2.height-200);
> +	igt_plane_set_position(d->plane2, 100, 100);
>   
> -		valid_tests++;
> +	if (is_i915_device(display->drm_fd)) {
> +		uint32_t devid = intel_get_drm_devid(display->drm_fd);
> +		/*
> +		 * Most of gen7 and all of gen8 doesn't support plane scaling
> +		 * at all.
> +		 *
> +		 * gen9 pipe C has only 1 scaler shared with the crtc, which
> +		 * means pipe scaling can't work simultaneously with panel
> +		 * fitting.
> +		 *
> +		 * Since this is the legacy path, userspace has to know about
> +		 * the HW limitations, whereas atomic can ask.
> +		 */
> +		if (IS_GEN8(devid) ||
> +			(IS_GEN7(devid) && !IS_IVYBRIDGE(devid)) ||
> +			(IS_GEN9(devid) && pipe == PIPE_C)) {
> +			is_plane_scaling_active = false;
> +		}
> +	}
> +	if (is_plane_scaling_active) {
> +		/*
> +		 * different than visible area of fb => plane scaling
> +		 * active
> +		 */
> +		igt_plane_set_size(d->plane2,
> +				   mode->hdisplay-200,
> +				   mode->vdisplay-200);
>   	}
> -	igt_require_f(valid_tests, "no valid crtc/connector combinations found\n");
> +	else {

Please fix if-else block style.

if {

} else {

}

> +		/* same as visible area of fb => no scaling */
> +		igt_plane_set_size(d->plane2,
> +			d->fb2.width - 200,
> +			d->fb2.height - 200);
> +	}
> +
> +	/* Plane scaling active (if possible), pfit off */
> +	igt_display_commit2(display, COMMIT_UNIVERSAL);
> +
> +	/* enable panel fitting along with sprite scaling */
> +	mode->hdisplay = 1024;
> +	mode->vdisplay = 768;
> +	prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>   }
>   
>   static void
> @@ -234,34 +226,41 @@ test_panel_fitting_fastset(igt_display_t *display, const enum pipe pipe, igt_out
>   	igt_display_commit_atomic(display, 0, NULL);
>   }
>   
> -static void test_atomic_fastset(data_t *data)
> +static void test_panel_fitting(data_t *data, enum test_type type)
>   {
>   	igt_display_t *display = &data->display;
>   	igt_output_t *output;
>   	enum pipe pipe;
> -	int valid_tests = 0;
>   	struct stat sb;
>   
> -	igt_require_f(is_i915_device(display->drm_fd), "not valid for non-i915 devices\n");
> +	if (type == TEST_ATOMIC) {
> +		igt_require_f(is_i915_device(display->drm_fd), "not valid for non-i915 devices\n");
>   
> -	if (is_i915_device(display->drm_fd)) {
> -		/* Until this is force enabled, force modeset evasion. */
> -		if (stat("/sys/module/i915/parameters/fastboot", &sb) == 0)
> -			igt_set_module_param_int(data->drm_fd, "fastboot", 1);
> +		if (is_i915_device(display->drm_fd)) {

This check is redundant, since we already using igt_require(i915).

> +			/* Until this is force enabled, force modeset evasion. */
> +			if (stat("/sys/module/i915/parameters/fastboot", &sb) == 0)
> +				igt_set_module_param_int(data->drm_fd, "fastboot", 1);
> +
> +			igt_require(intel_display_ver(intel_get_drm_devid(display->drm_fd)) >= 5);
> +		}
>   
> -		igt_require(intel_display_ver(intel_get_drm_devid(display->drm_fd)) >= 5);
> +		igt_require(display->is_atomic);

This should be moved to igt_fixture just before calling the 
igt_subtest_with_dynamic()

Apart from these minor changes, overall this patch LGTM.

- Bhanu

>   	}
>   
> -	igt_require(display->is_atomic);
>   	for_each_pipe_with_valid_output(display, pipe, output) {
> +		/* Check that the "scaling mode" property has been set. */
>   		if (!igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE))
>   			continue;
>   
>   		cleanup_crtc(data);
> -		test_panel_fitting_fastset(display, pipe, output);
> -		valid_tests++;
> +
> +		igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
> +			if (type == TEST_ATOMIC)
> +				test_panel_fitting_fastset(display, pipe, output);
> +			if (type == TEST_LEGACY)
> +				test_panel_fitting_legacy(data, display, pipe, output);
> +		}
>   	}
> -	igt_require_f(valid_tests, "no valid crtc/connector combinations found\n");
>   }
>   
>   igt_main
> @@ -275,12 +274,12 @@ igt_main
>   	}
>   
>   	igt_describe("Tests panel fitting usages with legacy style commit.");
> -	igt_subtest("legacy")
> -		test_panel_fitting(&data);
> +	igt_subtest_with_dynamic("legacy")
> +		test_panel_fitting(&data, TEST_LEGACY);
>   
>   	igt_describe("Tests panel fitting usages with atomic fastset.");
> -	igt_subtest("atomic-fastset")
> -		test_atomic_fastset(&data);
> +	igt_subtest_with_dynamic("atomic-fastset")
> +		test_panel_fitting(&data, TEST_ATOMIC);
>   
>   	igt_fixture
>   		igt_display_fini(&data.display);

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

* Re: [igt-dev] [PATCH i-g-t] tests/kms_panel_fitting: Convert test to dynamic
  2022-06-17  9:14 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
@ 2022-06-20 16:02   ` Sharma, Swati2
  0 siblings, 0 replies; 5+ messages in thread
From: Sharma, Swati2 @ 2022-06-20 16:02 UTC (permalink / raw)
  To: Modem, Bhanuprakash, igt-dev

Hi Bhanu,

Thanks for the review.
Addressed all your review comments in v2 except one.
Please find my comments below

On 17-Jun-22 2:44 PM, Modem, Bhanuprakash wrote:
> On Wed-15-06-2022 03:16 pm, Swati Sharma wrote:
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>>   tests/kms_panel_fitting.c | 209 +++++++++++++++++++-------------------
>>   1 file changed, 104 insertions(+), 105 deletions(-)
>>
>> diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
>> index 9f607376..a75aa629 100644
>> --- a/tests/kms_panel_fitting.c
>> +++ b/tests/kms_panel_fitting.c
>> @@ -28,6 +28,11 @@
>>   IGT_TEST_DESCRIPTION("Test display panel fitting");
>> +enum test_type {
>> +    TEST_LEGACY,
>> +    TEST_ATOMIC,
>> +};
>> +
>>   typedef struct {
>>       int drm_fd;
>>       igt_display_t display;
>> @@ -80,109 +85,96 @@ static void prepare_crtc(data_t *data, 
>> igt_output_t *output, enum pipe pipe,
>>       igt_display_commit2(display, s);
>>   }
>> -static void test_panel_fitting(data_t *d)
>> +static void
>> +test_panel_fitting_legacy(data_t *d, igt_display_t *display,
>> +              const enum pipe pipe, igt_output_t *output)
>>   {
>> -    igt_display_t *display = &d->display;
>> -    igt_output_t *output;
>> -    enum pipe pipe;
>> -    int valid_tests = 0;
>> +    drmModeModeInfo *mode, native_mode;
>> +    bool is_plane_scaling_active = true;
>> -    for_each_pipe_with_valid_output(display, pipe, output) {
>> -        drmModeModeInfo *mode, native_mode;
>> -        bool is_plane_scaling_active = true;
>> -
>> -        /* Check that the "scaling mode" property has been set. */
>> -        if (!igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE))
>> -            continue;
>> -
>> -        cleanup_crtc(d);
>> -        igt_output_set_pipe(output, pipe);
>> -
>> -        mode = igt_output_get_mode(output);
>> -        native_mode = *mode;
>> -
>> -        /* allocate fb2 with image */
>> -        igt_create_pattern_fb(d->drm_fd, mode->hdisplay / 2, 
>> mode->vdisplay / 2,
>> -                      DRM_FORMAT_XRGB8888,
>> -                      DRM_FORMAT_MOD_LINEAR, &d->fb2);
>> +    igt_output_set_pipe(output, pipe);
> 
> As we are doing it here, we need to drop this from prepare_crtc().

This can't be done, since prepare_crtc is called multiple times and we need
set_pipe every time. Else test will fail.
> 
>> -        /* Set up display to enable panel fitting */
>> -        if (is_amdgpu_device(display->drm_fd)) {
>> -            mode->hdisplay = 800;
>> -            mode->vdisplay = 600;
>> -        } else {
>> -            mode->hdisplay = 640;
>> -            mode->vdisplay = 480;
>> -        }
>> -        d->plane1 = igt_output_get_plane_type(output, 
>> DRM_PLANE_TYPE_PRIMARY);
>> -        prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>> +    mode = igt_output_get_mode(output);
>> +    native_mode = *mode;
>> -        /* disable panel fitting */
>> -        prepare_crtc(d, output, pipe, d->plane1, &native_mode, 
>> COMMIT_LEGACY);
>> +    /* allocate fb2 with image */
>> +    igt_create_pattern_fb(d->drm_fd, mode->hdisplay / 2, 
>> mode->vdisplay / 2,
>> +                  DRM_FORMAT_XRGB8888,
>> +                  DRM_FORMAT_MOD_LINEAR, &d->fb2);
>> -        /* enable panel fitting */
>> +    /* set up display to enable panel fitting */
>> +    if (is_amdgpu_device(display->drm_fd)) {
>>           mode->hdisplay = 800;
>>           mode->vdisplay = 600;
>> -        prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>> -
>> -        /* disable panel fitting */
>> -        prepare_crtc(d, output, pipe, d->plane1, &native_mode, 
>> COMMIT_LEGACY);
>> +    } else {
>> +        mode->hdisplay = 640;
>> +        mode->vdisplay = 480;
>> +    }
>> +    d->plane1 = igt_output_get_plane_type(output, 
>> DRM_PLANE_TYPE_PRIMARY);
>> +    prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>> -        /* Set up fb2->plane2 mapping. */
>> -        d->plane2 = igt_output_get_plane_type(output, 
>> DRM_PLANE_TYPE_OVERLAY);
>> -        igt_plane_set_fb(d->plane2, &d->fb2);
>> +    /* disable panel fitting */
>> +    prepare_crtc(d, output, pipe, d->plane1, &native_mode, 
>> COMMIT_LEGACY);
>> -        /* enable sprite plane */
>> -        igt_fb_set_position(&d->fb2, d->plane2, 100, 100);
>> -        igt_fb_set_size(&d->fb2, d->plane2, d->fb2.width-200, 
>> d->fb2.height-200);
>> -        igt_plane_set_position(d->plane2, 100, 100);
>> +    /* enable panel fitting */
>> +    mode->hdisplay = 800;
>> +    mode->vdisplay = 600;
>> +    prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>> -        if (is_i915_device(display->drm_fd)) {
>> -            uint32_t devid = intel_get_drm_devid(display->drm_fd);
>> -            /*
>> -             * Most of gen7 and all of gen8 doesn't support plane 
>> scaling
>> -             * at all.
>> -             *
>> -             * gen9 pipe C has only 1 scaler shared with the crtc, which
>> -             * means pipe scaling can't work simultaneously with panel
>> -             * fitting.
>> -             *
>> -             * Since this is the legacy path, userspace has to know 
>> about
>> -             * the HW limitations, whereas atomic can ask.
>> -             */
>> -            if (IS_GEN8(devid) ||
>> -                (IS_GEN7(devid) && !IS_IVYBRIDGE(devid)) ||
>> -                (IS_GEN9(devid) && pipe == PIPE_C)) {
>> -                is_plane_scaling_active = false;
>> -            }
>> -        }
>> -        if (is_plane_scaling_active) {
>> -            /*
>> -             * different than visible area of fb => plane scaling
>> -             * active
>> -             */
>> -            igt_plane_set_size(d->plane2,
>> -                       mode->hdisplay-200,
>> -                       mode->vdisplay-200);
>> -        }
>> -        else {
>> -            /* same as visible area of fb => no scaling */
>> -            igt_plane_set_size(d->plane2,
>> -                d->fb2.width - 200,
>> -                d->fb2.height - 200);
>> -        }
>> +    /* disable panel fitting */
>> +    prepare_crtc(d, output, pipe, d->plane1, &native_mode, 
>> COMMIT_LEGACY);
>> -        /* Plane scaling active (if possible), pfit off */
>> -        igt_display_commit2(display, COMMIT_UNIVERSAL);
>> +    /* set up fb2->plane2 mapping. */
>> +    d->plane2 = igt_output_get_plane_type(output, 
>> DRM_PLANE_TYPE_OVERLAY);
>> +    igt_plane_set_fb(d->plane2, &d->fb2);
>> -        /* enable panel fitting along with sprite scaling */
>> -        mode->hdisplay = 1024;
>> -        mode->vdisplay = 768;
>> -        prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>> +    /* enable sprite plane */
>> +    igt_fb_set_position(&d->fb2, d->plane2, 100, 100);
>> +    igt_fb_set_size(&d->fb2, d->plane2, d->fb2.width-200, 
>> d->fb2.height-200);
>> +    igt_plane_set_position(d->plane2, 100, 100);
>> -        valid_tests++;
>> +    if (is_i915_device(display->drm_fd)) {
>> +        uint32_t devid = intel_get_drm_devid(display->drm_fd);
>> +        /*
>> +         * Most of gen7 and all of gen8 doesn't support plane scaling
>> +         * at all.
>> +         *
>> +         * gen9 pipe C has only 1 scaler shared with the crtc, which
>> +         * means pipe scaling can't work simultaneously with panel
>> +         * fitting.
>> +         *
>> +         * Since this is the legacy path, userspace has to know about
>> +         * the HW limitations, whereas atomic can ask.
>> +         */
>> +        if (IS_GEN8(devid) ||
>> +            (IS_GEN7(devid) && !IS_IVYBRIDGE(devid)) ||
>> +            (IS_GEN9(devid) && pipe == PIPE_C)) {
>> +            is_plane_scaling_active = false;
>> +        }
>> +    }
>> +    if (is_plane_scaling_active) {
>> +        /*
>> +         * different than visible area of fb => plane scaling
>> +         * active
>> +         */
>> +        igt_plane_set_size(d->plane2,
>> +                   mode->hdisplay-200,
>> +                   mode->vdisplay-200);
>>       }
>> -    igt_require_f(valid_tests, "no valid crtc/connector combinations 
>> found\n");
>> +    else {
> 
> Please fix if-else block style.
> 
> if {
> 
> } else {
> 
> }

Done

> 
>> +        /* same as visible area of fb => no scaling */
>> +        igt_plane_set_size(d->plane2,
>> +            d->fb2.width - 200,
>> +            d->fb2.height - 200);
>> +    }
>> +
>> +    /* Plane scaling active (if possible), pfit off */
>> +    igt_display_commit2(display, COMMIT_UNIVERSAL);
>> +
>> +    /* enable panel fitting along with sprite scaling */
>> +    mode->hdisplay = 1024;
>> +    mode->vdisplay = 768;
>> +    prepare_crtc(d, output, pipe, d->plane1, mode, COMMIT_LEGACY);
>>   }
>>   static void
>> @@ -234,34 +226,41 @@ test_panel_fitting_fastset(igt_display_t 
>> *display, const enum pipe pipe, igt_out
>>       igt_display_commit_atomic(display, 0, NULL);
>>   }
>> -static void test_atomic_fastset(data_t *data)
>> +static void test_panel_fitting(data_t *data, enum test_type type)
>>   {
>>       igt_display_t *display = &data->display;
>>       igt_output_t *output;
>>       enum pipe pipe;
>> -    int valid_tests = 0;
>>       struct stat sb;
>> -    igt_require_f(is_i915_device(display->drm_fd), "not valid for 
>> non-i915 devices\n");
>> +    if (type == TEST_ATOMIC) {
>> +        igt_require_f(is_i915_device(display->drm_fd), "not valid for 
>> non-i915 devices\n");
>> -    if (is_i915_device(display->drm_fd)) {
>> -        /* Until this is force enabled, force modeset evasion. */
>> -        if (stat("/sys/module/i915/parameters/fastboot", &sb) == 0)
>> -            igt_set_module_param_int(data->drm_fd, "fastboot", 1);
>> +        if (is_i915_device(display->drm_fd)) {
> 
> This check is redundant, since we already using igt_require(i915).

Done
> 
>> +            /* Until this is force enabled, force modeset evasion. */
>> +            if (stat("/sys/module/i915/parameters/fastboot", &sb) == 0)
>> +                igt_set_module_param_int(data->drm_fd, "fastboot", 1);
>> +
>> +            
>> igt_require(intel_display_ver(intel_get_drm_devid(display->drm_fd)) >= 
>> 5);
>> +        }
>> -        
>> igt_require(intel_display_ver(intel_get_drm_devid(display->drm_fd)) >= 
>> 5);
>> +        igt_require(display->is_atomic);
> 
> This should be moved to igt_fixture just before calling the 
> igt_subtest_with_dynamic()
> 
> Apart from these minor changes, overall this patch LGTM.
> 
> - Bhanu
> 
>>       }
>> -    igt_require(display->is_atomic);
>>       for_each_pipe_with_valid_output(display, pipe, output) {
>> +        /* Check that the "scaling mode" property has been set. */
>>           if (!igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE))
>>               continue;
>>           cleanup_crtc(data);
>> -        test_panel_fitting_fastset(display, pipe, output);
>> -        valid_tests++;
>> +
>> +        igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), 
>> output->name) {
>> +            if (type == TEST_ATOMIC)
>> +                test_panel_fitting_fastset(display, pipe, output);
>> +            if (type == TEST_LEGACY)
>> +                test_panel_fitting_legacy(data, display, pipe, output);
>> +        }
>>       }
>> -    igt_require_f(valid_tests, "no valid crtc/connector combinations 
>> found\n");
>>   }
>>   igt_main
>> @@ -275,12 +274,12 @@ igt_main
>>       }
>>       igt_describe("Tests panel fitting usages with legacy style 
>> commit.");
>> -    igt_subtest("legacy")
>> -        test_panel_fitting(&data);
>> +    igt_subtest_with_dynamic("legacy")
>> +        test_panel_fitting(&data, TEST_LEGACY);
>>       igt_describe("Tests panel fitting usages with atomic fastset.");
>> -    igt_subtest("atomic-fastset")
>> -        test_atomic_fastset(&data);
>> +    igt_subtest_with_dynamic("atomic-fastset")
>> +        test_panel_fitting(&data, TEST_ATOMIC);
>>       igt_fixture
>>           igt_display_fini(&data.display);
> 

-- 
~Swati Sharma

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

end of thread, other threads:[~2022-06-20 16:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-15  9:46 [igt-dev] [PATCH i-g-t] tests/kms_panel_fitting: Convert test to dynamic Swati Sharma
2022-06-15 10:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2022-06-15 15:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-06-17  9:14 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
2022-06-20 16:02   ` Sharma, Swati2

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.