Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/2] tests/kms_vrr: Update LOBF test to resuse the existing logic
@ 2024-09-20  9:45 Jeevan B
  2024-09-20  9:45 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for aux-less ALPM status Jeevan B
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Jeevan B @ 2024-09-20  9:45 UTC (permalink / raw)
  To: igt-dev; +Cc: ramanaidu.naladala, santhosh.reddy.guddati, Jeevan B

Removed the test_lobf function and used test_basic instead to simplify
the code. Improved validation and error messages to make LOBF testing
more reliable.

v2: Added new patch to check alpm status and check before exeucting the
    LOBF test.

Jeevan B (2):
  lib/igt_kms: Added library functions for aux-less ALPM status
  tests/kms_vrr: Update LOBF test to reuse the existing logic

 lib/igt_kms.c   | 23 ++++++++++++++++++++++
 lib/igt_kms.h   |  1 +
 tests/kms_vrr.c | 52 +++++++++++++++++++------------------------------
 3 files changed, 44 insertions(+), 32 deletions(-)

-- 
2.25.1


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

* [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for aux-less ALPM status
  2024-09-20  9:45 [PATCH i-g-t 0/2] tests/kms_vrr: Update LOBF test to resuse the existing logic Jeevan B
@ 2024-09-20  9:45 ` Jeevan B
  2024-10-21  5:58   ` B, Jeevan
  2024-09-20  9:45 ` [PATCH i-g-t 2/2] tests/kms_vrr: Update LOBF test to reuse the existing logic Jeevan B
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 7+ messages in thread
From: Jeevan B @ 2024-09-20  9:45 UTC (permalink / raw)
  To: igt-dev; +Cc: ramanaidu.naladala, santhosh.reddy.guddati, Jeevan B

Added helper functions to check aux-less alpm status to check
weather it is enabled or disabled.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
 lib/igt_kms.c | 23 +++++++++++++++++++++++
 lib/igt_kms.h |  1 +
 2 files changed, 24 insertions(+)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index b40470c02..be6d6536a 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6094,6 +6094,29 @@ bool igt_get_i915_edp_lobf_status(int drmfd, char *connector_name)
 	return strstr(buf, "LOBF status: enabled");
 }
 
+/**
+ * igt_get_aux_less_alpm_status
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Return: True if its enabled.
+ */
+bool igt_get_aux_less_alpm_status(int drmfd, char *connector_name)
+{
+	char buf[24];
+	int fd, res;
+
+	fd = igt_debugfs_connector_dir(drmfd, connector_name, O_RDONLY);
+	igt_assert(fd >= 0);
+
+	res = igt_debugfs_simple_read(fd, "i915_edp_lobf_info", buf, sizeof(buf));
+	igt_require(res > 0);
+
+	close(fd);
+
+	return strstr(buf, "Aux-less alpm status: enabled");
+}
+
 /**
  * igt_get_output_max_bpc:
  * @drmfd: A drm file descriptor
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 25ba50916..8bbb6225b 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1196,6 +1196,7 @@ void igt_dump_connectors_fd(int drmfd);
 void igt_dump_crtcs_fd(int drmfd);
 bool igt_override_all_active_output_modes_to_fit_bw(igt_display_t *display);
 bool igt_get_i915_edp_lobf_status(int drmfd, char *connector_name);
+bool igt_get_aux_less_alpm_status(int drmfd, char *connector_name);
 unsigned int igt_get_output_max_bpc(int drmfd, char *connector_name);
 unsigned int igt_get_pipe_current_bpc(int drmfd, enum pipe pipe);
 void igt_assert_output_bpc_equal(int drmfd, enum pipe pipe,
-- 
2.25.1


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

* [PATCH i-g-t 2/2] tests/kms_vrr: Update LOBF test to reuse the existing logic
  2024-09-20  9:45 [PATCH i-g-t 0/2] tests/kms_vrr: Update LOBF test to resuse the existing logic Jeevan B
  2024-09-20  9:45 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for aux-less ALPM status Jeevan B
@ 2024-09-20  9:45 ` Jeevan B
  2024-09-20 10:10 ` ✓ CI.xeBAT: success for tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2) Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Jeevan B @ 2024-09-20  9:45 UTC (permalink / raw)
  To: igt-dev; +Cc: ramanaidu.naladala, santhosh.reddy.guddati, Jeevan B

Removed the test_lobf function and used test_basic instead to simplify
the code. Improved validation and error messages to make LOBF testing
more reliable.

v2: Fix typo and add aux-less alpm check.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
---
 tests/kms_vrr.c | 52 +++++++++++++++++++------------------------------
 1 file changed, 20 insertions(+), 32 deletions(-)

diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 36a22eebe..d5a6304c3 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -640,7 +640,7 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
 			     (range.max + 5), rate[0], result);
 	}
 
-	if (flags & ~(TEST_NEGATIVE | TEST_MAXMIN)) {
+	if (flags & ~(TEST_NEGATIVE | TEST_MAXMIN | TEST_LINK_OFF)) {
 		rate[0] = vtest_ns.rate_ns;
 		result = flip_and_measure(data, output, pipe, rate, 1, data->duration_ns);
 		igt_assert_f(result > 75,
@@ -656,16 +656,24 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
 			     (range.min - 10), rate[0], result);
 	}
 
-	if (flags & TEST_MAXMIN) {
+	if (flags & (TEST_MAXMIN | TEST_LINK_OFF)) {
 		unsigned int range_min =
 			/* For Intel h/w tweak the min rate, as h/w will terminate the vblank at Vmax. */
 			is_intel_device(data->drm_fd) ? (range.min + 2) : range.min;
 		uint64_t maxmin_rates[] = {vtest_ns.max, rate_from_refresh(range_min)};
 
 		result = flip_and_measure(data, output, pipe, maxmin_rates, 2, data->duration_ns);
-		igt_assert_f(result > 75,
-			     "Refresh rates (%u/%u Hz) %"PRIu64"ns/%"PRIu64"ns: Target VRR on threshold not reached, result was %u%%\n",
-			     range.max, range_min, maxmin_rates[0], maxmin_rates[1], result);
+
+		if (flags & TEST_LINK_OFF)
+			igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name),
+				     "LOBF not enabled\n");
+		else
+			igt_assert_f(result > 75,
+				     "Refresh rates (%u/%u Hz) %"PRIu64"ns/%"PRIu64"ns: Target "
+				     "VRR on threshold not reached, result was %u%%\n",
+				     range.max, range_min, maxmin_rates[0], maxmin_rates[1],
+				     result);
+
 		return;
 	}
 
@@ -792,31 +800,6 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu
 	}
 }
 
-/* FIXME: test_lobf : Lobf can be enabled when
- * (Set Context Latency + Guardband) > (First SDP Position + Wake Time)
- * one the depends patches are merged please fix this function.
- */
-
-static void
-test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
-{
-	uint64_t rate[] = {0};
-
-	rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh);
-	prepare_test(data, output, pipe);
-
-	igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n",
-		 output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max);
-
-	igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]);
-	flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS);
-	igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]);
-	rate[0] = rate_from_refresh(data->switch_modes[LOW_RR_MODE].vrefresh);
-	flip_and_measure(data, output, pipe, rate, 1, NSECS_PER_SEC);
-	igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name),
-		     "LOBF not enabled\n");
-}
-
 static void
 test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
 {
@@ -895,7 +878,8 @@ static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags
 		    psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE, NULL))
 			psr_disable(data->drm_fd, data->debugfs_fd, NULL);
 
-		if (igt_get_i915_edp_lobf_status(data->drm_fd, output->name)) {
+		if (igt_get_i915_edp_lobf_status(data->drm_fd, output->name) &&
+		    igt_get_aux_less_alpm_status(data->drm_fd, output->name)) {
 			igt_info("%s: LOBF not supported.\n", igt_output_name(output));
 			return false;
 		}
@@ -1098,12 +1082,16 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
 			run_vrr_test(&data, test_cmrr, TEST_CMRR);
 		}
 
+		/* FIXME: test_lobf : Lobf can be enabled when
+		 * (Set Context Latency + Guardband) > (First SDP Position + Wake Time)
+		 * one the depends patches are merged please fix this function.
+		 */
 		igt_describe("Test to validate the link-off between active frames in "
 			     "non-PSR operation.");
 		igt_subtest_with_dynamic("lobf") {
 			igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20);
 
-			run_vrr_test(&data, test_lobf, TEST_LINK_OFF);
+			run_vrr_test(&data, test_basic, TEST_LINK_OFF);
 		}
 	}
 
-- 
2.25.1


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

* ✓ CI.xeBAT: success for tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2)
  2024-09-20  9:45 [PATCH i-g-t 0/2] tests/kms_vrr: Update LOBF test to resuse the existing logic Jeevan B
  2024-09-20  9:45 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for aux-less ALPM status Jeevan B
  2024-09-20  9:45 ` [PATCH i-g-t 2/2] tests/kms_vrr: Update LOBF test to reuse the existing logic Jeevan B
@ 2024-09-20 10:10 ` Patchwork
  2024-09-20 10:22 ` ✗ Fi.CI.BAT: failure " Patchwork
  2024-09-20 14:52 ` ✗ CI.xeFULL: " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-20 10:10 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2)
URL   : https://patchwork.freedesktop.org/series/138625/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8029_BAT -> XEIGTPW_11775_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_8029 -> IGTPW_11775
  * Linux: xe-1972-d4340c1de6d417c7b3edac187c3af011b146701a -> xe-1973-128ccc5f71d7b9d84ce8f0651aa713ae490f4990

  IGTPW_11775: 11775
  IGT_8029: d22cd438e6356bd7c2ee55436553cdcadd55193a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1972-d4340c1de6d417c7b3edac187c3af011b146701a: d4340c1de6d417c7b3edac187c3af011b146701a
  xe-1973-128ccc5f71d7b9d84ce8f0651aa713ae490f4990: 128ccc5f71d7b9d84ce8f0651aa713ae490f4990

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/index.html

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

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

* ✗ Fi.CI.BAT: failure for tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2)
  2024-09-20  9:45 [PATCH i-g-t 0/2] tests/kms_vrr: Update LOBF test to resuse the existing logic Jeevan B
                   ` (2 preceding siblings ...)
  2024-09-20 10:10 ` ✓ CI.xeBAT: success for tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2) Patchwork
@ 2024-09-20 10:22 ` Patchwork
  2024-09-20 14:52 ` ✗ CI.xeFULL: " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-20 10:22 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2)
URL   : https://patchwork.freedesktop.org/series/138625/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15441 -> IGTPW_11775
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_11775 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_11775, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_11775/index.html

Participating hosts (38 -> 38)
------------------------------

  Additional (1): fi-bsw-n3050 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@slpc:
    - bat-mtlp-6:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-mtlp-6/igt@i915_selftest@live@slpc.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-mtlp-6/igt@i915_selftest@live@slpc.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@read:
    - bat-arls-1:         [PASS][3] -> [DMESG-FAIL][4] ([i915#12102])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-arls-1/igt@fbdev@read.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-arls-1/igt@fbdev@read.html

  * igt@i915_selftest@live:
    - bat-arls-1:         [PASS][5] -> [DMESG-WARN][6] ([i915#10341] / [i915#12133])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-arls-1/igt@i915_selftest@live.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-arls-1/igt@i915_selftest@live.html
    - bat-adlp-6:         [PASS][7] -> [INCOMPLETE][8] ([i915#9413])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-adlp-6/igt@i915_selftest@live.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-adlp-6/igt@i915_selftest@live.html
    - bat-mtlp-6:         [PASS][9] -> [INCOMPLETE][10] ([i915#10341])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-mtlp-6/igt@i915_selftest@live.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-mtlp-6/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gt_lrc:
    - bat-adlp-6:         [PASS][11] -> [INCOMPLETE][12] ([i915#10886] / [i915#9413])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-adlp-6/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@hangcheck:
    - bat-arls-1:         [PASS][13] -> [DMESG-WARN][14] ([i915#11349])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-arls-1/igt@i915_selftest@live@hangcheck.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-arls-1/igt@i915_selftest@live@hangcheck.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][15] +20 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/fi-bsw-n3050/igt@kms_psr@psr-primary-mmap-gtt.html

  
#### Possible fixes ####

  * igt@fbdev@info:
    - bat-arls-1:         [DMESG-WARN][16] ([i915#12102]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-arls-1/igt@fbdev@info.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-arls-1/igt@fbdev@info.html

  * igt@i915_selftest@live:
    - bat-jsl-1:          [DMESG-FAIL][18] ([i915#11984] / [i915#12010]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-jsl-1/igt@i915_selftest@live.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-jsl-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gt_pm:
    - bat-jsl-1:          [DMESG-FAIL][20] ([i915#11984]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15441/bat-jsl-1/igt@i915_selftest@live@gt_pm.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11775/bat-jsl-1/igt@i915_selftest@live@gt_pm.html

  
  [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
  [i915#10886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10886
  [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
  [i915#11984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11984
  [i915#12010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12010
  [i915#12102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12102
  [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
  [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8029 -> IGTPW_11775

  CI-20190529: 20190529
  CI_DRM_15441: 128ccc5f71d7b9d84ce8f0651aa713ae490f4990 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11775: 11775
  IGT_8029: d22cd438e6356bd7c2ee55436553cdcadd55193a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✗ CI.xeFULL: failure for tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2)
  2024-09-20  9:45 [PATCH i-g-t 0/2] tests/kms_vrr: Update LOBF test to resuse the existing logic Jeevan B
                   ` (3 preceding siblings ...)
  2024-09-20 10:22 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-09-20 14:52 ` Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-20 14:52 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2)
URL   : https://patchwork.freedesktop.org/series/138625/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8029_full -> XEIGTPW_11775_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_11775_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_11775_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_atomic_transition@plane-all-transition-fencing:
    - shard-dg2-set2:     [PASS][1] -> [FAIL][2] +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_atomic_transition@plane-all-transition-fencing.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_atomic_transition@plane-all-transition-fencing.html

  * igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-dg2-set2:     [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-466/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

  * igt@xe_pm@d3hot-multiple-execs:
    - shard-lnl:          [PASS][5] -> [DMESG-WARN][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-8/igt@xe_pm@d3hot-multiple-execs.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-8/igt@xe_pm@d3hot-multiple-execs.html

  
#### Suppressed ####

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

  * igt@kms_async_flips@async-flip-with-page-flip-events:
    - {shard-bmg}:        [DMESG-WARN][7] ([Intel XE#1033]) -> [INCOMPLETE][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-bmg-3/igt@kms_async_flips@async-flip-with-page-flip-events.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-x:
    - {shard-bmg}:        [PASS][9] -> [INCOMPLETE][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-x.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-bmg-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-x.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#664])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-5/igt@kms_async_flips@test-cursor.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [PASS][12] -> [FAIL][13] ([Intel XE#1659]) +2 other tests fail
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1407]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#1477])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#1124])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#1512])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#787]) +6 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#1399])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#1252])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_chamelium_audio@hdmi-audio:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#373]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-5/igt@kms_chamelium_audio@hdmi-audio.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#308])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#1421])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
    - shard-dg2-set2:     [PASS][25] -> [DMESG-WARN][26] ([Intel XE#1551]) +3 other tests dmesg-warn
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-435/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-466/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html

  * igt@kms_flip@wf_vblank-ts-check@b-edp1:
    - shard-lnl:          [PASS][27] -> [FAIL][28] ([Intel XE#886]) +4 other tests fail
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@b-edp1.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#651]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#651])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#656]) +6 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#653])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_plane@plane-position-covered:
    - shard-lnl:          [PASS][34] -> [DMESG-WARN][35] ([Intel XE#324]) +2 other tests dmesg-warn
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-7/igt@kms_plane@plane-position-covered.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-3/igt@kms_plane@plane-position-covered.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#2763]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#929])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@kms_psr@psr-dpms.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
    - shard-lnl:          [PASS][38] -> [FAIL][39] ([Intel XE#899])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html

  * igt@kms_vrr@max-min:
    - shard-lnl:          NOTRUN -> [FAIL][40] ([Intel XE#2443]) +1 other test fail
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-1/igt@kms_vrr@max-min.html

  * igt@xe_evict@evict-beng-large-multi-vm-cm:
    - shard-dg2-set2:     [PASS][41] -> [FAIL][42] ([Intel XE#1600])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html

  * igt@xe_evict@evict-beng-mixed-many-threads-large:
    - shard-dg2-set2:     [PASS][43] -> [TIMEOUT][44] ([Intel XE#1473])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-dg2-set2:     [PASS][45] -> [TIMEOUT][46] ([Intel XE#1473] / [Intel XE#402])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#688])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-5/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#1392]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-3/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html

  * igt@xe_module_load@reload:
    - shard-dg2-set2:     [PASS][50] -> [FAIL][51] ([Intel XE#2136])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-433/igt@xe_module_load@reload.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@xe_module_load@reload.html

  * igt@xe_noexec_ping_pong:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#379])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-1/igt@xe_noexec_ping_pong.html

  * igt@xe_oa@enable-disable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][53] ([Intel XE#2541])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@xe_oa@enable-disable.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [PASS][54] -> [ABORT][55] ([Intel XE#1794])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-7/igt@xe_pm@s4-vm-bind-unbind-all.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#944])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-dg2-set2:     NOTRUN -> [FAIL][57] ([Intel XE#2780])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@xe_wedged@wedged-at-any-timeout.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
    - shard-lnl:          [FAIL][58] ([Intel XE#1426]) -> [PASS][59] +1 other test pass
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][60] ([Intel XE#1195]) -> [PASS][61] +1 other test pass
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-6.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-6.html

  * igt@kms_cursor_legacy@single-bo@pipe-b:
    - shard-dg2-set2:     [DMESG-WARN][62] ([Intel XE#877]) -> [PASS][63] +1 other test pass
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-435/igt@kms_cursor_legacy@single-bo@pipe-b.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_cursor_legacy@single-bo@pipe-b.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - {shard-bmg}:        [INCOMPLETE][64] ([Intel XE#2635]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3:
    - {shard-bmg}:        [DMESG-WARN][66] ([Intel XE#877]) -> [PASS][67] +4 other tests pass
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a3:
    - {shard-bmg}:        [INCOMPLETE][68] -> [PASS][69] +4 other tests pass
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-bmg-3/igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a3.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-bmg-7/igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a3.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a6:
    - shard-dg2-set2:     [DMESG-WARN][70] -> [PASS][71] +1 other test pass
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-436/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a6.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a6.html

  * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2:
    - shard-lnl:          [DMESG-WARN][72] ([Intel XE#324]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
    - shard-dg2-set2:     [FAIL][74] ([Intel XE#361]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [FAIL][76] ([Intel XE#899]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@kms_vrr@flip-basic:
    - shard-lnl:          [FAIL][78] ([Intel XE#2443]) -> [PASS][79] +3 other tests pass
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-4/igt@kms_vrr@flip-basic.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-8/igt@kms_vrr@flip-basic.html

  * igt@xe_evict@evict-beng-threads-large:
    - shard-dg2-set2:     [FAIL][80] ([Intel XE#1000]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - {shard-bmg}:        [TIMEOUT][82] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-bmg-5/igt@xe_evict@evict-threads-large.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-bmg-4/igt@xe_evict@evict-threads-large.html

  * igt@xe_oa@mmio-triggered-reports:
    - {shard-bmg}:        [FAIL][84] ([Intel XE#2249]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html
    - shard-lnl:          [FAIL][86] ([Intel XE#2249]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_oa@oa-exponents:
    - shard-lnl:          [FAIL][88] ([Intel XE#2723]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-7/igt@xe_oa@oa-exponents.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-3/igt@xe_oa@oa-exponents.html

  * igt@xe_oa@oa-regs-whitelisted@ccs-0:
    - {shard-bmg}:        [FAIL][90] ([Intel XE#2514]) -> [PASS][91] +1 other test pass
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-bmg-7/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-bmg-4/igt@xe_oa@oa-regs-whitelisted@ccs-0.html

  * igt@xe_oa@oa-regs-whitelisted@rcs-0:
    - shard-lnl:          [FAIL][92] ([Intel XE#2514]) -> [PASS][93] +1 other test pass
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted@rcs-0.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-lnl:          [ABORT][94] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-lnl-5/igt@xe_pm@s4-vm-bind-prefetch.html

  
#### Warnings ####

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][96] ([Intel XE#316]) -> [SKIP][97] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][98] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][99] ([Intel XE#316])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-463/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][100] ([Intel XE#1124]) -> [SKIP][101] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][102] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][103] ([Intel XE#1124]) +8 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_joiner@basic:
    - shard-dg2-set2:     [SKIP][104] ([Intel XE#346]) -> [SKIP][105] ([Intel XE#1201] / [Intel XE#346])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_big_joiner@basic.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@kms_big_joiner@basic.html

  * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][106] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][107] ([Intel XE#367]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][108] ([Intel XE#367]) -> [SKIP][109] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][110] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][111] ([Intel XE#2191]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][112] ([Intel XE#1252]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#1252])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][114] ([Intel XE#787]) -> [SKIP][115] ([Intel XE#1201] / [Intel XE#787]) +90 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][116] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][117] ([Intel XE#787]) +83 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][118] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][119] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][120] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][121] ([Intel XE#1252])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][122] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +25 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][124] ([Intel XE#314]) -> [SKIP][125] ([Intel XE#1201] / [Intel XE#314])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-dg2-set2:     [SKIP][126] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][127] ([Intel XE#306])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-434/igt@kms_chamelium_color@ctm-0-25.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-dg2-set2:     [SKIP][128] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][129] ([Intel XE#373]) +6 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-435/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][130] ([Intel XE#373]) -> [SKIP][131] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     [SKIP][132] ([Intel XE#307]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#307])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][134] ([Intel XE#308]) -> [SKIP][135] ([Intel XE#1201] / [Intel XE#308]) +2 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2-set2:     [SKIP][136] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][137] ([Intel XE#308]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-dg2-set2:     [SKIP][138] ([Intel XE#455]) -> [SKIP][139] ([Intel XE#1201] / [Intel XE#455]) +8 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_cursor_crc@cursor-random-max-size.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     [SKIP][140] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][141] ([Intel XE#323])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-dg2-set2:     [SKIP][142] ([Intel XE#323]) -> [SKIP][143] ([Intel XE#1201] / [Intel XE#323])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2-set2:     [SKIP][144] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][145] ([Intel XE#307]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-433/igt@kms_display_modes@mst-extended-mode-negative.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][146] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][147] ([Intel XE#776])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_fbcon_fbt@psr.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][148] ([Intel XE#651]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#651]) +26 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][150] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][151] ([Intel XE#651]) +24 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#653]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#653]) +23 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     [SKIP][154] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][155] ([Intel XE#653]) +21 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) -> [SKIP][157] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
    - shard-dg2-set2:     [SKIP][158] ([Intel XE#1201] / [Intel XE#2763]) -> [SKIP][159] ([Intel XE#2763]) +2 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][160] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][161] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +3 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
    - shard-dg2-set2:     [SKIP][162] ([Intel XE#2763]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#2763]) +5 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-dg2-set2:     [SKIP][164] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][165] ([Intel XE#870])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@kms_pm_backlight@basic-brightness.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][167] ([Intel XE#1122]) +1 other test skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][168] ([Intel XE#1129]) -> [SKIP][169] ([Intel XE#1129] / [Intel XE#1201])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf:
    - shard-dg2-set2:     [SKIP][170] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][171] ([Intel XE#1489]) +2 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-463/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][172] ([Intel XE#1489]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#1122]) -> [SKIP][175] ([Intel XE#1122] / [Intel XE#1201])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][177] ([Intel XE#929]) +10 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-dg2-set2:     [SKIP][178] ([Intel XE#929]) -> [SKIP][179] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][181] ([Intel XE#1127])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#327]) -> [SKIP][183] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][184] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][185] ([Intel XE#455]) +22 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-436/igt@kms_vrr@flipline.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     [SKIP][186] ([Intel XE#1201] / [Intel XE#2168]) -> [SKIP][187] ([Intel XE#2168])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-436/igt@kms_vrr@lobf.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@kms_vrr@lobf.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-dg2-set2:     [SKIP][188] ([Intel XE#756]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#756])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#1091]) -> [SKIP][191] ([Intel XE#1091] / [Intel XE#1201])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     [SKIP][192] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +3 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#1123]) -> [SKIP][195] ([Intel XE#1123] / [Intel XE#1201])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_exec_fault_mode@twice-invalid-fault:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#288]) -> [SKIP][197] ([Intel XE#1201] / [Intel XE#288]) +17 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@xe_exec_fault_mode@twice-invalid-fault.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][198] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][199] ([Intel XE#288]) +17 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_huc_copy@huc_copy:
    - shard-dg2-set2:     [SKIP][200] ([Intel XE#255]) -> [SKIP][201] ([Intel XE#1201] / [Intel XE#255])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_huc_copy@huc_copy.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@xe_huc_copy@huc_copy.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][203] ([Intel XE#2541]) +3 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-435/igt@xe_oa@closed-fd-and-unmapped-access.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_oa@invalid-oa-format-id:
    - shard-dg2-set2:     [SKIP][204] ([Intel XE#2541]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#2541]) +3 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_oa@invalid-oa-format-id.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@xe_oa@invalid-oa-format-id.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     [SKIP][206] ([Intel XE#979]) -> [SKIP][207] ([Intel XE#1201] / [Intel XE#979])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][208] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][209] ([Intel XE#2284] / [Intel XE#366])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-434/igt@xe_pm@d3cold-basic-exec.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@d3cold-mocs:
    - shard-dg2-set2:     [SKIP][210] ([Intel XE#2284]) -> [SKIP][211] ([Intel XE#1201] / [Intel XE#2284])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_pm@d3cold-mocs.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][212] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][213] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     [SKIP][214] ([Intel XE#579]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#579])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_pm@vram-d3cold-threshold.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     [SKIP][216] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][217] ([Intel XE#944]) +2 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-435/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-dg2-set2:     [SKIP][218] ([Intel XE#944]) -> [SKIP][219] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8029/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/shard-dg2-435/igt@xe_query@multigpu-query-oa-units.html

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

  [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
  [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026
  [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
  [Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
  [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
  [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2780
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * IGT: IGT_8029 -> IGTPW_11775
  * Linux: xe-1972-d4340c1de6d417c7b3edac187c3af011b146701a -> xe-1973-128ccc5f71d7b9d84ce8f0651aa713ae490f4990

  IGTPW_11775: 11775
  IGT_8029: d22cd438e6356bd7c2ee55436553cdcadd55193a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1972-d4340c1de6d417c7b3edac187c3af011b146701a: d4340c1de6d417c7b3edac187c3af011b146701a
  xe-1973-128ccc5f71d7b9d84ce8f0651aa713ae490f4990: 128ccc5f71d7b9d84ce8f0651aa713ae490f4990

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11775/index.html

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

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

* RE: [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for aux-less ALPM status
  2024-09-20  9:45 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for aux-less ALPM status Jeevan B
@ 2024-10-21  5:58   ` B, Jeevan
  0 siblings, 0 replies; 7+ messages in thread
From: B, Jeevan @ 2024-10-21  5:58 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org, Golani,  Mitulkumar Ajitkumar
  Cc: Naladala, Ramanaidu, Reddy Guddati, Santhosh

++Mitul	

> -----Original Message-----
> From: B, Jeevan <jeevan.b@intel.com>
> Sent: Friday, September 20, 2024 3:15 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>; Reddy Guddati,
> Santhosh <santhosh.reddy.guddati@intel.com>; B, Jeevan <jeevan.b@intel.com>
> Subject: [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for aux-less ALPM
> status
> 
> Added helper functions to check aux-less alpm status to check weather it is
> enabled or disabled.
> 
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
>  lib/igt_kms.c | 23 +++++++++++++++++++++++  lib/igt_kms.h |  1 +
>  2 files changed, 24 insertions(+)
> 
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c index b40470c02..be6d6536a 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6094,6 +6094,29 @@ bool igt_get_i915_edp_lobf_status(int drmfd, char
> *connector_name)
>  	return strstr(buf, "LOBF status: enabled");  }
> 
> +/**
> + * igt_get_aux_less_alpm_status
> + * @drmfd: A drm file descriptor
> + * @connector_name: Name of the libdrm connector we're going to use
> + *
> + * Return: True if its enabled.
> + */
> +bool igt_get_aux_less_alpm_status(int drmfd, char *connector_name) {
> +	char buf[24];
> +	int fd, res;
> +
> +	fd = igt_debugfs_connector_dir(drmfd, connector_name, O_RDONLY);
> +	igt_assert(fd >= 0);
> +
> +	res = igt_debugfs_simple_read(fd, "i915_edp_lobf_info", buf, sizeof(buf));
> +	igt_require(res > 0);
> +
> +	close(fd);
> +
> +	return strstr(buf, "Aux-less alpm status: enabled"); }
> +
>  /**
>   * igt_get_output_max_bpc:
>   * @drmfd: A drm file descriptor
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 25ba50916..8bbb6225b 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1196,6 +1196,7 @@ void igt_dump_connectors_fd(int drmfd);  void
> igt_dump_crtcs_fd(int drmfd);  bool
> igt_override_all_active_output_modes_to_fit_bw(igt_display_t *display);  bool
> igt_get_i915_edp_lobf_status(int drmfd, char *connector_name);
> +bool igt_get_aux_less_alpm_status(int drmfd, char *connector_name);
>  unsigned int igt_get_output_max_bpc(int drmfd, char *connector_name);
> unsigned int igt_get_pipe_current_bpc(int drmfd, enum pipe pipe);  void
> igt_assert_output_bpc_equal(int drmfd, enum pipe pipe,
> --
> 2.25.1


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

end of thread, other threads:[~2024-10-21  5:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-20  9:45 [PATCH i-g-t 0/2] tests/kms_vrr: Update LOBF test to resuse the existing logic Jeevan B
2024-09-20  9:45 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for aux-less ALPM status Jeevan B
2024-10-21  5:58   ` B, Jeevan
2024-09-20  9:45 ` [PATCH i-g-t 2/2] tests/kms_vrr: Update LOBF test to reuse the existing logic Jeevan B
2024-09-20 10:10 ` ✓ CI.xeBAT: success for tests/kms_vrr: Update LOBF test to resuse the existing logic (rev2) Patchwork
2024-09-20 10:22 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-09-20 14:52 ` ✗ CI.xeFULL: " Patchwork

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