Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/3] Selective Fetch and async flip
@ 2025-12-04  7:07 Jouni Högander
  2025-12-04  7:07 ` [PATCH v4 1/3] drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes for PSR Jouni Högander
                   ` (7 more replies)
  0 siblings, 8 replies; 17+ messages in thread
From: Jouni Högander @ 2025-12-04  7:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander

This patch set contains fixes for Selective Fetch async flip
sequences. On async flip selective fetch is choosing full frame
update. Also subsequent flip/update is still using full frame update
to ensure plane with pending async flip is not taken in to selective
fetch/update.

v4:
  - rework if-else if to if-if
  - added comment updated
  - check crtc_state->async_flip_planes in
    psr2_sel_fetch_pipe_state_supported
v3:
  - rebase
  - fix old_crtc_state->pipe_srcsz_early_tpt
  - fix using intel_atomic_get_new_crtc_state
v2:
  - check also crtc_state->async_flip_planes in
    psr2_sel_fetch_plane_state_supported

Jouni Högander (3):
  drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes for
    PSR
  drm/i915/psr: Perform full frame update on async flip
  drm/i915/psr: Allow async flip when Selective Fetch enabled

 drivers/gpu/drm/i915/display/intel_display.c |  8 --------
 drivers/gpu/drm/i915/display/intel_plane.c   | 10 ++++++----
 drivers/gpu/drm/i915/display/intel_psr.c     |  3 ++-
 3 files changed, 8 insertions(+), 13 deletions(-)

-- 
2.43.0


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

* [PATCH v4 1/3] drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes for PSR
  2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
@ 2025-12-04  7:07 ` Jouni Högander
  2025-12-04  7:07 ` [PATCH v4 2/3] drm/i915/psr: Perform full frame update on async flip Jouni Högander
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Jouni Högander @ 2025-12-04  7:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander

Currently plane id bit is set in crtc_state->async_flip_planes only when
async flip toggle workaround is needed. We want to utilize
crtc_state->async_flip_planes further in Selective Fetch calculation.

v2:
  - rework if-else if to if-if
  - added comment updated

Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
 drivers/gpu/drm/i915/display/intel_plane.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_plane.c b/drivers/gpu/drm/i915/display/intel_plane.c
index 7b7619d59251..ccc8d6af5d72 100644
--- a/drivers/gpu/drm/i915/display/intel_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_plane.c
@@ -600,11 +600,10 @@ static int intel_plane_atomic_calc_changes(const struct intel_crtc_state *old_cr
 	    ilk_must_disable_cxsr(new_crtc_state, old_plane_state, new_plane_state))
 		new_crtc_state->disable_cxsr = true;
 
-	if (intel_plane_do_async_flip(plane, old_crtc_state, new_crtc_state)) {
+	if (intel_plane_do_async_flip(plane, old_crtc_state, new_crtc_state))
 		new_crtc_state->do_async_flip = true;
-		new_crtc_state->async_flip_planes |= BIT(plane->id);
-	} else if (plane->need_async_flip_toggle_wa &&
-		   new_crtc_state->uapi.async_flip) {
+
+	if (new_crtc_state->uapi.async_flip) {
 		/*
 		 * On platforms with double buffered async flip bit we
 		 * set the bit already one frame early during the sync
@@ -612,6 +611,9 @@ static int intel_plane_atomic_calc_changes(const struct intel_crtc_state *old_cr
 		 * hardware will therefore be ready to perform a real
 		 * async flip during the next commit, without having
 		 * to wait yet another frame for the bit to latch.
+		 *
+		 * async_flip_planes bitmask is also used by selective
+		 * fetch calculation to choose full frame update.
 		 */
 		new_crtc_state->async_flip_planes |= BIT(plane->id);
 	}
-- 
2.43.0


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

* [PATCH v4 2/3] drm/i915/psr: Perform full frame update on async flip
  2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
  2025-12-04  7:07 ` [PATCH v4 1/3] drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes for PSR Jouni Högander
@ 2025-12-04  7:07 ` Jouni Högander
  2025-12-04  7:07 ` [PATCH v4 3/3] drm/i915/psr: Allow async flip when Selective Fetch enabled Jouni Högander
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Jouni Högander @ 2025-12-04  7:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander

According to bspec selective fetch is not supported with async flips and
instructing full frame update on async flip.

v4:
  - check crtc_state->async_flip_planes in
    psr2_sel_fetch_pipe_state_supported
v3:
  - rebase
  - fix old_crtc_state->pipe_srcsz_early_tpt
  - fix using intel_atomic_get_new_crtc_state
v2:
  - check also crtc_state->async_flip_planes in
    psr2_sel_fetch_plane_state_supported

Bspec: 55229
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
 drivers/gpu/drm/i915/display/intel_psr.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 15ef3b6caad6..4ef422d1f35e 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2749,7 +2749,8 @@ static bool psr2_sel_fetch_plane_state_supported(const struct intel_plane_state
  */
 static bool psr2_sel_fetch_pipe_state_supported(const struct intel_crtc_state *crtc_state)
 {
-	if (crtc_state->scaler_state.scaler_id >= 0)
+	if (crtc_state->scaler_state.scaler_id >= 0 ||
+	    crtc_state->async_flip_planes)
 		return false;
 
 	return true;
-- 
2.43.0


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

* [PATCH v4 3/3] drm/i915/psr: Allow async flip when Selective Fetch enabled
  2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
  2025-12-04  7:07 ` [PATCH v4 1/3] drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes for PSR Jouni Högander
  2025-12-04  7:07 ` [PATCH v4 2/3] drm/i915/psr: Perform full frame update on async flip Jouni Högander
@ 2025-12-04  7:07 ` Jouni Högander
  2025-12-04  7:58 ` ✓ CI.KUnit: success for Selective Fetch and async flip (rev4) Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Jouni Högander @ 2025-12-04  7:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander

Now as Selective Fetch is performing full frame update on async flip and
vblank evasion is done as needed we can allow async flip even when
Selective Fetch is enabled.

Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index de8ae14e06cd..43bf0600913b 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -6026,14 +6026,6 @@ static int intel_async_flip_check_uapi(struct intel_atomic_state *state,
 		return -EINVAL;
 	}
 
-	/* FIXME: selective fetch should be disabled for async flips */
-	if (new_crtc_state->enable_psr2_sel_fetch) {
-		drm_dbg_kms(display->drm,
-			    "[CRTC:%d:%s] async flip disallowed with PSR2 selective fetch\n",
-			    crtc->base.base.id, crtc->base.name);
-		return -EINVAL;
-	}
-
 	for_each_oldnew_intel_plane_in_state(state, plane, old_plane_state,
 					     new_plane_state, i) {
 		if (plane->pipe != crtc->pipe)
-- 
2.43.0


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

* ✓ CI.KUnit: success for Selective Fetch and async flip (rev4)
  2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
                   ` (2 preceding siblings ...)
  2025-12-04  7:07 ` [PATCH v4 3/3] drm/i915/psr: Allow async flip when Selective Fetch enabled Jouni Högander
@ 2025-12-04  7:58 ` Patchwork
  2025-12-04  8:13 ` ✗ CI.checksparse: warning " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-12-04  7:58 UTC (permalink / raw)
  To: Hogander, Jouni; +Cc: intel-xe

== Series Details ==

Series: Selective Fetch and async flip (rev4)
URL   : https://patchwork.freedesktop.org/series/158002/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:57:14] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:57:18] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:57:49] Starting KUnit Kernel (1/1)...
[07:57:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:57:49] ================== guc_buf (11 subtests) ===================
[07:57:49] [PASSED] test_smallest
[07:57:49] [PASSED] test_largest
[07:57:49] [PASSED] test_granular
[07:57:49] [PASSED] test_unique
[07:57:49] [PASSED] test_overlap
[07:57:49] [PASSED] test_reusable
[07:57:49] [PASSED] test_too_big
[07:57:49] [PASSED] test_flush
[07:57:49] [PASSED] test_lookup
[07:57:49] [PASSED] test_data
[07:57:49] [PASSED] test_class
[07:57:49] ===================== [PASSED] guc_buf =====================
[07:57:49] =================== guc_dbm (7 subtests) ===================
[07:57:49] [PASSED] test_empty
[07:57:49] [PASSED] test_default
[07:57:49] ======================== test_size  ========================
[07:57:49] [PASSED] 4
[07:57:49] [PASSED] 8
[07:57:49] [PASSED] 32
[07:57:49] [PASSED] 256
[07:57:49] ==================== [PASSED] test_size ====================
[07:57:49] ======================= test_reuse  ========================
[07:57:49] [PASSED] 4
[07:57:49] [PASSED] 8
[07:57:49] [PASSED] 32
[07:57:49] [PASSED] 256
[07:57:49] =================== [PASSED] test_reuse ====================
[07:57:49] =================== test_range_overlap  ====================
[07:57:49] [PASSED] 4
[07:57:49] [PASSED] 8
[07:57:49] [PASSED] 32
[07:57:49] [PASSED] 256
[07:57:49] =============== [PASSED] test_range_overlap ================
[07:57:49] =================== test_range_compact  ====================
[07:57:49] [PASSED] 4
[07:57:49] [PASSED] 8
[07:57:49] [PASSED] 32
[07:57:49] [PASSED] 256
[07:57:49] =============== [PASSED] test_range_compact ================
[07:57:49] ==================== test_range_spare  =====================
[07:57:49] [PASSED] 4
[07:57:49] [PASSED] 8
[07:57:49] [PASSED] 32
[07:57:49] [PASSED] 256
[07:57:49] ================ [PASSED] test_range_spare =================
[07:57:49] ===================== [PASSED] guc_dbm =====================
[07:57:49] =================== guc_idm (6 subtests) ===================
[07:57:49] [PASSED] bad_init
[07:57:49] [PASSED] no_init
[07:57:49] [PASSED] init_fini
[07:57:49] [PASSED] check_used
[07:57:49] [PASSED] check_quota
[07:57:49] [PASSED] check_all
[07:57:49] ===================== [PASSED] guc_idm =====================
[07:57:49] ================== no_relay (3 subtests) ===================
[07:57:49] [PASSED] xe_drops_guc2pf_if_not_ready
[07:57:49] [PASSED] xe_drops_guc2vf_if_not_ready
[07:57:49] [PASSED] xe_rejects_send_if_not_ready
[07:57:49] ==================== [PASSED] no_relay =====================
[07:57:49] ================== pf_relay (14 subtests) ==================
[07:57:49] [PASSED] pf_rejects_guc2pf_too_short
[07:57:49] [PASSED] pf_rejects_guc2pf_too_long
[07:57:49] [PASSED] pf_rejects_guc2pf_no_payload
[07:57:49] [PASSED] pf_fails_no_payload
[07:57:49] [PASSED] pf_fails_bad_origin
[07:57:49] [PASSED] pf_fails_bad_type
[07:57:49] [PASSED] pf_txn_reports_error
[07:57:49] [PASSED] pf_txn_sends_pf2guc
[07:57:49] [PASSED] pf_sends_pf2guc
[07:57:49] [SKIPPED] pf_loopback_nop
[07:57:49] [SKIPPED] pf_loopback_echo
[07:57:49] [SKIPPED] pf_loopback_fail
[07:57:49] [SKIPPED] pf_loopback_busy
[07:57:49] [SKIPPED] pf_loopback_retry
[07:57:49] ==================== [PASSED] pf_relay =====================
[07:57:49] ================== vf_relay (3 subtests) ===================
[07:57:49] [PASSED] vf_rejects_guc2vf_too_short
[07:57:49] [PASSED] vf_rejects_guc2vf_too_long
[07:57:49] [PASSED] vf_rejects_guc2vf_no_payload
[07:57:49] ==================== [PASSED] vf_relay =====================
[07:57:49] ================ pf_gt_config (6 subtests) =================
[07:57:49] [PASSED] fair_contexts_1vf
[07:57:49] [PASSED] fair_doorbells_1vf
[07:57:49] [PASSED] fair_ggtt_1vf
[07:57:49] ====================== fair_contexts  ======================
[07:57:49] [PASSED] 1 VF
[07:57:49] [PASSED] 2 VFs
[07:57:49] [PASSED] 3 VFs
[07:57:49] [PASSED] 4 VFs
[07:57:49] [PASSED] 5 VFs
[07:57:49] [PASSED] 6 VFs
[07:57:49] [PASSED] 7 VFs
[07:57:49] [PASSED] 8 VFs
[07:57:49] [PASSED] 9 VFs
[07:57:49] [PASSED] 10 VFs
[07:57:49] [PASSED] 11 VFs
[07:57:49] [PASSED] 12 VFs
[07:57:49] [PASSED] 13 VFs
[07:57:49] [PASSED] 14 VFs
[07:57:49] [PASSED] 15 VFs
[07:57:49] [PASSED] 16 VFs
[07:57:49] [PASSED] 17 VFs
[07:57:49] [PASSED] 18 VFs
[07:57:49] [PASSED] 19 VFs
[07:57:49] [PASSED] 20 VFs
[07:57:49] [PASSED] 21 VFs
[07:57:49] [PASSED] 22 VFs
[07:57:49] [PASSED] 23 VFs
[07:57:49] [PASSED] 24 VFs
[07:57:49] [PASSED] 25 VFs
[07:57:49] [PASSED] 26 VFs
[07:57:49] [PASSED] 27 VFs
[07:57:49] [PASSED] 28 VFs
[07:57:49] [PASSED] 29 VFs
[07:57:49] [PASSED] 30 VFs
[07:57:49] [PASSED] 31 VFs
[07:57:49] [PASSED] 32 VFs
[07:57:49] [PASSED] 33 VFs
[07:57:49] [PASSED] 34 VFs
[07:57:49] [PASSED] 35 VFs
[07:57:49] [PASSED] 36 VFs
[07:57:49] [PASSED] 37 VFs
[07:57:49] [PASSED] 38 VFs
[07:57:49] [PASSED] 39 VFs
[07:57:49] [PASSED] 40 VFs
[07:57:49] [PASSED] 41 VFs
[07:57:49] [PASSED] 42 VFs
[07:57:49] [PASSED] 43 VFs
[07:57:49] [PASSED] 44 VFs
[07:57:49] [PASSED] 45 VFs
[07:57:49] [PASSED] 46 VFs
[07:57:49] [PASSED] 47 VFs
[07:57:49] [PASSED] 48 VFs
[07:57:49] [PASSED] 49 VFs
[07:57:49] [PASSED] 50 VFs
[07:57:49] [PASSED] 51 VFs
[07:57:49] [PASSED] 52 VFs
[07:57:49] [PASSED] 53 VFs
[07:57:49] [PASSED] 54 VFs
[07:57:49] [PASSED] 55 VFs
[07:57:49] [PASSED] 56 VFs
[07:57:49] [PASSED] 57 VFs
[07:57:49] [PASSED] 58 VFs
[07:57:49] [PASSED] 59 VFs
[07:57:49] [PASSED] 60 VFs
[07:57:49] [PASSED] 61 VFs
[07:57:49] [PASSED] 62 VFs
[07:57:49] [PASSED] 63 VFs
[07:57:49] ================== [PASSED] fair_contexts ==================
[07:57:49] ===================== fair_doorbells  ======================
[07:57:49] [PASSED] 1 VF
[07:57:49] [PASSED] 2 VFs
[07:57:49] [PASSED] 3 VFs
[07:57:49] [PASSED] 4 VFs
[07:57:49] [PASSED] 5 VFs
[07:57:49] [PASSED] 6 VFs
[07:57:49] [PASSED] 7 VFs
[07:57:49] [PASSED] 8 VFs
[07:57:49] [PASSED] 9 VFs
[07:57:49] [PASSED] 10 VFs
[07:57:49] [PASSED] 11 VFs
[07:57:49] [PASSED] 12 VFs
[07:57:49] [PASSED] 13 VFs
[07:57:49] [PASSED] 14 VFs
[07:57:49] [PASSED] 15 VFs
[07:57:49] [PASSED] 16 VFs
[07:57:49] [PASSED] 17 VFs
[07:57:49] [PASSED] 18 VFs
[07:57:49] [PASSED] 19 VFs
[07:57:49] [PASSED] 20 VFs
[07:57:49] [PASSED] 21 VFs
[07:57:49] [PASSED] 22 VFs
[07:57:49] [PASSED] 23 VFs
[07:57:49] [PASSED] 24 VFs
[07:57:49] [PASSED] 25 VFs
[07:57:49] [PASSED] 26 VFs
[07:57:49] [PASSED] 27 VFs
[07:57:49] [PASSED] 28 VFs
[07:57:49] [PASSED] 29 VFs
[07:57:49] [PASSED] 30 VFs
[07:57:49] [PASSED] 31 VFs
[07:57:49] [PASSED] 32 VFs
[07:57:49] [PASSED] 33 VFs
[07:57:49] [PASSED] 34 VFs
[07:57:49] [PASSED] 35 VFs
[07:57:49] [PASSED] 36 VFs
[07:57:49] [PASSED] 37 VFs
[07:57:49] [PASSED] 38 VFs
[07:57:49] [PASSED] 39 VFs
[07:57:49] [PASSED] 40 VFs
[07:57:49] [PASSED] 41 VFs
[07:57:49] [PASSED] 42 VFs
[07:57:49] [PASSED] 43 VFs
[07:57:49] [PASSED] 44 VFs
[07:57:49] [PASSED] 45 VFs
[07:57:49] [PASSED] 46 VFs
[07:57:49] [PASSED] 47 VFs
[07:57:49] [PASSED] 48 VFs
[07:57:49] [PASSED] 49 VFs
[07:57:49] [PASSED] 50 VFs
[07:57:49] [PASSED] 51 VFs
[07:57:49] [PASSED] 52 VFs
[07:57:49] [PASSED] 53 VFs
[07:57:49] [PASSED] 54 VFs
[07:57:49] [PASSED] 55 VFs
[07:57:49] [PASSED] 56 VFs
[07:57:49] [PASSED] 57 VFs
[07:57:49] [PASSED] 58 VFs
[07:57:49] [PASSED] 59 VFs
[07:57:49] [PASSED] 60 VFs
[07:57:49] [PASSED] 61 VFs
[07:57:49] [PASSED] 62 VFs
[07:57:49] [PASSED] 63 VFs
[07:57:49] ================= [PASSED] fair_doorbells ==================
[07:57:49] ======================== fair_ggtt  ========================
[07:57:49] [PASSED] 1 VF
[07:57:49] [PASSED] 2 VFs
[07:57:49] [PASSED] 3 VFs
[07:57:49] [PASSED] 4 VFs
[07:57:49] [PASSED] 5 VFs
[07:57:49] [PASSED] 6 VFs
[07:57:49] [PASSED] 7 VFs
[07:57:49] [PASSED] 8 VFs
[07:57:49] [PASSED] 9 VFs
[07:57:49] [PASSED] 10 VFs
[07:57:49] [PASSED] 11 VFs
[07:57:49] [PASSED] 12 VFs
[07:57:49] [PASSED] 13 VFs
[07:57:49] [PASSED] 14 VFs
[07:57:49] [PASSED] 15 VFs
[07:57:49] [PASSED] 16 VFs
[07:57:49] [PASSED] 17 VFs
[07:57:49] [PASSED] 18 VFs
[07:57:49] [PASSED] 19 VFs
[07:57:49] [PASSED] 20 VFs
[07:57:49] [PASSED] 21 VFs
[07:57:49] [PASSED] 22 VFs
[07:57:49] [PASSED] 23 VFs
[07:57:49] [PASSED] 24 VFs
[07:57:49] [PASSED] 25 VFs
[07:57:49] [PASSED] 26 VFs
[07:57:49] [PASSED] 27 VFs
[07:57:49] [PASSED] 28 VFs
[07:57:49] [PASSED] 29 VFs
[07:57:49] [PASSED] 30 VFs
[07:57:49] [PASSED] 31 VFs
[07:57:49] [PASSED] 32 VFs
[07:57:49] [PASSED] 33 VFs
[07:57:49] [PASSED] 34 VFs
[07:57:49] [PASSED] 35 VFs
[07:57:49] [PASSED] 36 VFs
[07:57:49] [PASSED] 37 VFs
[07:57:49] [PASSED] 38 VFs
[07:57:49] [PASSED] 39 VFs
[07:57:49] [PASSED] 40 VFs
[07:57:49] [PASSED] 41 VFs
[07:57:49] [PASSED] 42 VFs
[07:57:49] [PASSED] 43 VFs
[07:57:49] [PASSED] 44 VFs
[07:57:49] [PASSED] 45 VFs
[07:57:49] [PASSED] 46 VFs
[07:57:49] [PASSED] 47 VFs
[07:57:49] [PASSED] 48 VFs
[07:57:49] [PASSED] 49 VFs
[07:57:49] [PASSED] 50 VFs
[07:57:49] [PASSED] 51 VFs
[07:57:49] [PASSED] 52 VFs
[07:57:49] [PASSED] 53 VFs
[07:57:49] [PASSED] 54 VFs
[07:57:49] [PASSED] 55 VFs
[07:57:49] [PASSED] 56 VFs
[07:57:49] [PASSED] 57 VFs
[07:57:49] [PASSED] 58 VFs
[07:57:49] [PASSED] 59 VFs
[07:57:49] [PASSED] 60 VFs
[07:57:49] [PASSED] 61 VFs
[07:57:49] [PASSED] 62 VFs
[07:57:49] [PASSED] 63 VFs
[07:57:49] ==================== [PASSED] fair_ggtt ====================
[07:57:49] ================== [PASSED] pf_gt_config ===================
[07:57:49] ===================== lmtt (1 subtest) =====================
[07:57:49] ======================== test_ops  =========================
[07:57:49] [PASSED] 2-level
[07:57:49] [PASSED] multi-level
[07:57:49] ==================== [PASSED] test_ops =====================
[07:57:49] ====================== [PASSED] lmtt =======================
[07:57:49] ================= pf_service (11 subtests) =================
[07:57:49] [PASSED] pf_negotiate_any
[07:57:49] [PASSED] pf_negotiate_base_match
[07:57:49] [PASSED] pf_negotiate_base_newer
[07:57:49] [PASSED] pf_negotiate_base_next
[07:57:49] [SKIPPED] pf_negotiate_base_older
[07:57:49] [PASSED] pf_negotiate_base_prev
[07:57:49] [PASSED] pf_negotiate_latest_match
[07:57:49] [PASSED] pf_negotiate_latest_newer
[07:57:49] [PASSED] pf_negotiate_latest_next
[07:57:49] [SKIPPED] pf_negotiate_latest_older
[07:57:49] [SKIPPED] pf_negotiate_latest_prev
[07:57:49] =================== [PASSED] pf_service ====================
[07:57:49] ================= xe_guc_g2g (2 subtests) ==================
[07:57:49] ============== xe_live_guc_g2g_kunit_default  ==============
[07:57:49] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[07:57:49] ============== xe_live_guc_g2g_kunit_allmem  ===============
[07:57:49] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[07:57:49] =================== [SKIPPED] xe_guc_g2g ===================
[07:57:49] =================== xe_mocs (2 subtests) ===================
[07:57:49] ================ xe_live_mocs_kernel_kunit  ================
[07:57:49] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:57:49] ================ xe_live_mocs_reset_kunit  =================
[07:57:49] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:57:49] ==================== [SKIPPED] xe_mocs =====================
[07:57:49] ================= xe_migrate (2 subtests) ==================
[07:57:49] ================= xe_migrate_sanity_kunit  =================
[07:57:49] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:57:49] ================== xe_validate_ccs_kunit  ==================
[07:57:49] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:57:49] =================== [SKIPPED] xe_migrate ===================
[07:57:49] ================== xe_dma_buf (1 subtest) ==================
[07:57:49] ==================== xe_dma_buf_kunit  =====================
[07:57:49] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:57:49] =================== [SKIPPED] xe_dma_buf ===================
[07:57:49] ================= xe_bo_shrink (1 subtest) =================
[07:57:49] =================== xe_bo_shrink_kunit  ====================
[07:57:49] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:57:49] ================== [SKIPPED] xe_bo_shrink ==================
[07:57:49] ==================== xe_bo (2 subtests) ====================
[07:57:49] ================== xe_ccs_migrate_kunit  ===================
[07:57:49] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:57:49] ==================== xe_bo_evict_kunit  ====================
[07:57:49] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:57:49] ===================== [SKIPPED] xe_bo ======================
[07:57:49] ==================== args (11 subtests) ====================
[07:57:49] [PASSED] count_args_test
[07:57:49] [PASSED] call_args_example
[07:57:49] [PASSED] call_args_test
[07:57:49] [PASSED] drop_first_arg_example
[07:57:49] [PASSED] drop_first_arg_test
[07:57:49] [PASSED] first_arg_example
[07:57:49] [PASSED] first_arg_test
[07:57:49] [PASSED] last_arg_example
[07:57:49] [PASSED] last_arg_test
[07:57:49] [PASSED] pick_arg_example
[07:57:49] [PASSED] sep_comma_example
[07:57:49] ====================== [PASSED] args =======================
[07:57:49] =================== xe_pci (3 subtests) ====================
[07:57:49] ==================== check_graphics_ip  ====================
[07:57:49] [PASSED] 12.00 Xe_LP
[07:57:49] [PASSED] 12.10 Xe_LP+
[07:57:49] [PASSED] 12.55 Xe_HPG
[07:57:49] [PASSED] 12.60 Xe_HPC
[07:57:49] [PASSED] 12.70 Xe_LPG
[07:57:49] [PASSED] 12.71 Xe_LPG
[07:57:49] [PASSED] 12.74 Xe_LPG+
[07:57:49] [PASSED] 20.01 Xe2_HPG
[07:57:49] [PASSED] 20.02 Xe2_HPG
[07:57:49] [PASSED] 20.04 Xe2_LPG
[07:57:49] [PASSED] 30.00 Xe3_LPG
[07:57:49] [PASSED] 30.01 Xe3_LPG
[07:57:49] [PASSED] 30.03 Xe3_LPG
[07:57:49] [PASSED] 30.04 Xe3_LPG
[07:57:49] [PASSED] 30.05 Xe3_LPG
[07:57:49] [PASSED] 35.11 Xe3p_XPC
[07:57:49] ================ [PASSED] check_graphics_ip ================
[07:57:49] ===================== check_media_ip  ======================
[07:57:49] [PASSED] 12.00 Xe_M
[07:57:49] [PASSED] 12.55 Xe_HPM
[07:57:49] [PASSED] 13.00 Xe_LPM+
[07:57:49] [PASSED] 13.01 Xe2_HPM
[07:57:49] [PASSED] 20.00 Xe2_LPM
[07:57:49] [PASSED] 30.00 Xe3_LPM
[07:57:49] [PASSED] 30.02 Xe3_LPM
[07:57:49] [PASSED] 35.00 Xe3p_LPM
[07:57:49] [PASSED] 35.03 Xe3p_HPM
[07:57:49] ================= [PASSED] check_media_ip ==================
[07:57:49] =================== check_platform_desc  ===================
[07:57:49] [PASSED] 0x9A60 (TIGERLAKE)
[07:57:49] [PASSED] 0x9A68 (TIGERLAKE)
[07:57:49] [PASSED] 0x9A70 (TIGERLAKE)
[07:57:49] [PASSED] 0x9A40 (TIGERLAKE)
[07:57:49] [PASSED] 0x9A49 (TIGERLAKE)
[07:57:49] [PASSED] 0x9A59 (TIGERLAKE)
[07:57:49] [PASSED] 0x9A78 (TIGERLAKE)
[07:57:49] [PASSED] 0x9AC0 (TIGERLAKE)
[07:57:49] [PASSED] 0x9AC9 (TIGERLAKE)
[07:57:49] [PASSED] 0x9AD9 (TIGERLAKE)
[07:57:49] [PASSED] 0x9AF8 (TIGERLAKE)
[07:57:49] [PASSED] 0x4C80 (ROCKETLAKE)
[07:57:49] [PASSED] 0x4C8A (ROCKETLAKE)
[07:57:49] [PASSED] 0x4C8B (ROCKETLAKE)
[07:57:49] [PASSED] 0x4C8C (ROCKETLAKE)
[07:57:49] [PASSED] 0x4C90 (ROCKETLAKE)
[07:57:49] [PASSED] 0x4C9A (ROCKETLAKE)
[07:57:49] [PASSED] 0x4680 (ALDERLAKE_S)
[07:57:49] [PASSED] 0x4682 (ALDERLAKE_S)
[07:57:49] [PASSED] 0x4688 (ALDERLAKE_S)
[07:57:49] [PASSED] 0x468A (ALDERLAKE_S)
[07:57:49] [PASSED] 0x468B (ALDERLAKE_S)
[07:57:49] [PASSED] 0x4690 (ALDERLAKE_S)
[07:57:49] [PASSED] 0x4692 (ALDERLAKE_S)
[07:57:49] [PASSED] 0x4693 (ALDERLAKE_S)
[07:57:49] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46AA (ALDERLAKE_P)
[07:57:49] [PASSED] 0x462A (ALDERLAKE_P)
[07:57:49] [PASSED] 0x4626 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x4628 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[07:57:49] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:57:49] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:57:49] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:57:49] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:57:49] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:57:49] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:57:49] [PASSED] 0xA721 (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA720 (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:57:49] [PASSED] 0xA780 (ALDERLAKE_S)
[07:57:49] [PASSED] 0xA781 (ALDERLAKE_S)
[07:57:49] [PASSED] 0xA782 (ALDERLAKE_S)
[07:57:49] [PASSED] 0xA783 (ALDERLAKE_S)
[07:57:49] [PASSED] 0xA788 (ALDERLAKE_S)
[07:57:49] [PASSED] 0xA789 (ALDERLAKE_S)
[07:57:49] [PASSED] 0xA78A (ALDERLAKE_S)
[07:57:49] [PASSED] 0xA78B (ALDERLAKE_S)
[07:57:49] [PASSED] 0x4905 (DG1)
[07:57:49] [PASSED] 0x4906 (DG1)
[07:57:49] [PASSED] 0x4907 (DG1)
[07:57:49] [PASSED] 0x4908 (DG1)
[07:57:49] [PASSED] 0x4909 (DG1)
[07:57:49] [PASSED] 0x56C0 (DG2)
[07:57:49] [PASSED] 0x56C2 (DG2)
[07:57:49] [PASSED] 0x56C1 (DG2)
[07:57:49] [PASSED] 0x7D51 (METEORLAKE)
[07:57:49] [PASSED] 0x7DD1 (METEORLAKE)
[07:57:49] [PASSED] 0x7D41 (METEORLAKE)
[07:57:49] [PASSED] 0x7D67 (METEORLAKE)
[07:57:49] [PASSED] 0xB640 (METEORLAKE)
[07:57:49] [PASSED] 0x56A0 (DG2)
[07:57:49] [PASSED] 0x56A1 (DG2)
[07:57:49] [PASSED] 0x56A2 (DG2)
[07:57:49] [PASSED] 0x56BE (DG2)
[07:57:49] [PASSED] 0x56BF (DG2)
[07:57:49] [PASSED] 0x5690 (DG2)
[07:57:49] [PASSED] 0x5691 (DG2)
[07:57:49] [PASSED] 0x5692 (DG2)
[07:57:49] [PASSED] 0x56A5 (DG2)
[07:57:49] [PASSED] 0x56A6 (DG2)
[07:57:49] [PASSED] 0x56B0 (DG2)
[07:57:49] [PASSED] 0x56B1 (DG2)
[07:57:49] [PASSED] 0x56BA (DG2)
[07:57:49] [PASSED] 0x56BB (DG2)
[07:57:49] [PASSED] 0x56BC (DG2)
[07:57:49] [PASSED] 0x56BD (DG2)
[07:57:49] [PASSED] 0x5693 (DG2)
[07:57:49] [PASSED] 0x5694 (DG2)
[07:57:49] [PASSED] 0x5695 (DG2)
[07:57:49] [PASSED] 0x56A3 (DG2)
[07:57:49] [PASSED] 0x56A4 (DG2)
[07:57:49] [PASSED] 0x56B2 (DG2)
[07:57:49] [PASSED] 0x56B3 (DG2)
[07:57:49] [PASSED] 0x5696 (DG2)
[07:57:49] [PASSED] 0x5697 (DG2)
[07:57:49] [PASSED] 0xB69 (PVC)
[07:57:49] [PASSED] 0xB6E (PVC)
[07:57:49] [PASSED] 0xBD4 (PVC)
[07:57:49] [PASSED] 0xBD5 (PVC)
[07:57:49] [PASSED] 0xBD6 (PVC)
[07:57:49] [PASSED] 0xBD7 (PVC)
[07:57:49] [PASSED] 0xBD8 (PVC)
[07:57:49] [PASSED] 0xBD9 (PVC)
[07:57:49] [PASSED] 0xBDA (PVC)
[07:57:49] [PASSED] 0xBDB (PVC)
[07:57:49] [PASSED] 0xBE0 (PVC)
[07:57:49] [PASSED] 0xBE1 (PVC)
[07:57:49] [PASSED] 0xBE5 (PVC)
[07:57:49] [PASSED] 0x7D40 (METEORLAKE)
[07:57:49] [PASSED] 0x7D45 (METEORLAKE)
[07:57:49] [PASSED] 0x7D55 (METEORLAKE)
[07:57:49] [PASSED] 0x7D60 (METEORLAKE)
[07:57:49] [PASSED] 0x7DD5 (METEORLAKE)
[07:57:49] [PASSED] 0x6420 (LUNARLAKE)
[07:57:49] [PASSED] 0x64A0 (LUNARLAKE)
[07:57:49] [PASSED] 0x64B0 (LUNARLAKE)
[07:57:49] [PASSED] 0xE202 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE209 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE20B (BATTLEMAGE)
[07:57:49] [PASSED] 0xE20C (BATTLEMAGE)
[07:57:49] [PASSED] 0xE20D (BATTLEMAGE)
[07:57:49] [PASSED] 0xE210 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE211 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE212 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE216 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE220 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE221 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE222 (BATTLEMAGE)
[07:57:49] [PASSED] 0xE223 (BATTLEMAGE)
[07:57:49] [PASSED] 0xB080 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB081 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB082 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB083 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB084 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB085 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB086 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB087 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB08F (PANTHERLAKE)
[07:57:49] [PASSED] 0xB090 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:57:49] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:57:49] [PASSED] 0xD740 (NOVALAKE_S)
[07:57:49] [PASSED] 0xD741 (NOVALAKE_S)
[07:57:49] [PASSED] 0xD742 (NOVALAKE_S)
[07:57:49] [PASSED] 0xD743 (NOVALAKE_S)
[07:57:49] [PASSED] 0xD744 (NOVALAKE_S)
[07:57:49] [PASSED] 0xD745 (NOVALAKE_S)
[07:57:49] [PASSED] 0x674C (CRESCENTISLAND)
[07:57:49] [PASSED] 0xFD80 (PANTHERLAKE)
[07:57:49] [PASSED] 0xFD81 (PANTHERLAKE)
[07:57:49] =============== [PASSED] check_platform_desc ===============
[07:57:49] ===================== [PASSED] xe_pci ======================
[07:57:49] =================== xe_rtp (2 subtests) ====================
[07:57:49] =============== xe_rtp_process_to_sr_tests  ================
[07:57:49] [PASSED] coalesce-same-reg
[07:57:49] [PASSED] no-match-no-add
[07:57:49] [PASSED] match-or
[07:57:49] [PASSED] match-or-xfail
[07:57:49] [PASSED] no-match-no-add-multiple-rules
[07:57:49] [PASSED] two-regs-two-entries
[07:57:49] [PASSED] clr-one-set-other
[07:57:49] [PASSED] set-field
[07:57:49] [PASSED] conflict-duplicate
[07:57:49] [PASSED] conflict-not-disjoint
[07:57:49] [PASSED] conflict-reg-type
[07:57:49] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:57:49] ================== xe_rtp_process_tests  ===================
[07:57:49] [PASSED] active1
[07:57:49] [PASSED] active2
[07:57:49] [PASSED] active-inactive
[07:57:49] [PASSED] inactive-active
[07:57:49] [PASSED] inactive-1st_or_active-inactive
[07:57:49] [PASSED] inactive-2nd_or_active-inactive
[07:57:49] [PASSED] inactive-last_or_active-inactive
[07:57:49] [PASSED] inactive-no_or_active-inactive
[07:57:49] ============== [PASSED] xe_rtp_process_tests ===============
[07:57:49] ===================== [PASSED] xe_rtp ======================
[07:57:49] ==================== xe_wa (1 subtest) =====================
[07:57:49] ======================== xe_wa_gt  =========================
[07:57:49] [PASSED] TIGERLAKE B0
[07:57:49] [PASSED] DG1 A0
[07:57:49] [PASSED] DG1 B0
[07:57:49] [PASSED] ALDERLAKE_S A0
[07:57:49] [PASSED] ALDERLAKE_S B0
[07:57:49] [PASSED] ALDERLAKE_S C0
[07:57:49] [PASSED] ALDERLAKE_S D0
[07:57:49] [PASSED] ALDERLAKE_P A0
[07:57:49] [PASSED] ALDERLAKE_P B0
[07:57:49] [PASSED] ALDERLAKE_P C0
[07:57:49] [PASSED] ALDERLAKE_S RPLS D0
[07:57:49] [PASSED] ALDERLAKE_P RPLU E0
[07:57:49] [PASSED] DG2 G10 C0
[07:57:49] [PASSED] DG2 G11 B1
[07:57:49] [PASSED] DG2 G12 A1
[07:57:49] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:57:49] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:57:49] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[07:57:49] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[07:57:49] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[07:57:49] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[07:57:49] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[07:57:49] ==================== [PASSED] xe_wa_gt =====================
[07:57:49] ====================== [PASSED] xe_wa ======================
[07:57:49] ============================================================
[07:57:49] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[07:57:49] Elapsed time: 35.519s total, 4.238s configuring, 30.815s building, 0.443s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:57:49] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:57:51] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:58:16] Starting KUnit Kernel (1/1)...
[07:58:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:58:16] ============ drm_test_pick_cmdline (2 subtests) ============
[07:58:16] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[07:58:16] =============== drm_test_pick_cmdline_named  ===============
[07:58:16] [PASSED] NTSC
[07:58:16] [PASSED] NTSC-J
[07:58:16] [PASSED] PAL
[07:58:16] [PASSED] PAL-M
[07:58:16] =========== [PASSED] drm_test_pick_cmdline_named ===========
[07:58:16] ============== [PASSED] drm_test_pick_cmdline ==============
[07:58:16] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[07:58:16] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[07:58:16] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[07:58:16] =========== drm_validate_clone_mode (2 subtests) ===========
[07:58:16] ============== drm_test_check_in_clone_mode  ===============
[07:58:16] [PASSED] in_clone_mode
[07:58:16] [PASSED] not_in_clone_mode
[07:58:16] ========== [PASSED] drm_test_check_in_clone_mode ===========
[07:58:16] =============== drm_test_check_valid_clones  ===============
[07:58:16] [PASSED] not_in_clone_mode
[07:58:16] [PASSED] valid_clone
[07:58:16] [PASSED] invalid_clone
[07:58:16] =========== [PASSED] drm_test_check_valid_clones ===========
[07:58:16] ============= [PASSED] drm_validate_clone_mode =============
[07:58:16] ============= drm_validate_modeset (1 subtest) =============
[07:58:16] [PASSED] drm_test_check_connector_changed_modeset
[07:58:16] ============== [PASSED] drm_validate_modeset ===============
[07:58:16] ====== drm_test_bridge_get_current_state (2 subtests) ======
[07:58:16] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[07:58:16] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[07:58:16] ======== [PASSED] drm_test_bridge_get_current_state ========
[07:58:16] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[07:58:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[07:58:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[07:58:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[07:58:16] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[07:58:16] ============== drm_bridge_alloc (2 subtests) ===============
[07:58:16] [PASSED] drm_test_drm_bridge_alloc_basic
[07:58:16] [PASSED] drm_test_drm_bridge_alloc_get_put
[07:58:16] ================ [PASSED] drm_bridge_alloc =================
[07:58:16] ================== drm_buddy (8 subtests) ==================
[07:58:16] [PASSED] drm_test_buddy_alloc_limit
[07:58:16] [PASSED] drm_test_buddy_alloc_optimistic
[07:58:16] [PASSED] drm_test_buddy_alloc_pessimistic
[07:58:16] [PASSED] drm_test_buddy_alloc_pathological
[07:58:16] [PASSED] drm_test_buddy_alloc_contiguous
[07:58:16] [PASSED] drm_test_buddy_alloc_clear
[07:58:16] [PASSED] drm_test_buddy_alloc_range_bias
[07:58:16] [PASSED] drm_test_buddy_fragmentation_performance
[07:58:16] ==================== [PASSED] drm_buddy ====================
[07:58:16] ============= drm_cmdline_parser (40 subtests) =============
[07:58:16] [PASSED] drm_test_cmdline_force_d_only
[07:58:16] [PASSED] drm_test_cmdline_force_D_only_dvi
[07:58:16] [PASSED] drm_test_cmdline_force_D_only_hdmi
[07:58:16] [PASSED] drm_test_cmdline_force_D_only_not_digital
[07:58:16] [PASSED] drm_test_cmdline_force_e_only
[07:58:16] [PASSED] drm_test_cmdline_res
[07:58:16] [PASSED] drm_test_cmdline_res_vesa
[07:58:16] [PASSED] drm_test_cmdline_res_vesa_rblank
[07:58:16] [PASSED] drm_test_cmdline_res_rblank
[07:58:16] [PASSED] drm_test_cmdline_res_bpp
[07:58:16] [PASSED] drm_test_cmdline_res_refresh
[07:58:16] [PASSED] drm_test_cmdline_res_bpp_refresh
[07:58:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[07:58:16] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[07:58:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[07:58:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[07:58:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[07:58:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[07:58:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[07:58:16] [PASSED] drm_test_cmdline_res_margins_force_on
[07:58:16] [PASSED] drm_test_cmdline_res_vesa_margins
[07:58:16] [PASSED] drm_test_cmdline_name
[07:58:16] [PASSED] drm_test_cmdline_name_bpp
[07:58:16] [PASSED] drm_test_cmdline_name_option
[07:58:16] [PASSED] drm_test_cmdline_name_bpp_option
[07:58:16] [PASSED] drm_test_cmdline_rotate_0
[07:58:16] [PASSED] drm_test_cmdline_rotate_90
[07:58:16] [PASSED] drm_test_cmdline_rotate_180
[07:58:16] [PASSED] drm_test_cmdline_rotate_270
[07:58:16] [PASSED] drm_test_cmdline_hmirror
[07:58:16] [PASSED] drm_test_cmdline_vmirror
[07:58:16] [PASSED] drm_test_cmdline_margin_options
[07:58:16] [PASSED] drm_test_cmdline_multiple_options
[07:58:16] [PASSED] drm_test_cmdline_bpp_extra_and_option
[07:58:16] [PASSED] drm_test_cmdline_extra_and_option
[07:58:16] [PASSED] drm_test_cmdline_freestanding_options
[07:58:16] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[07:58:16] [PASSED] drm_test_cmdline_panel_orientation
[07:58:16] ================ drm_test_cmdline_invalid  =================
[07:58:16] [PASSED] margin_only
[07:58:16] [PASSED] interlace_only
[07:58:16] [PASSED] res_missing_x
[07:58:16] [PASSED] res_missing_y
[07:58:16] [PASSED] res_bad_y
[07:58:16] [PASSED] res_missing_y_bpp
[07:58:16] [PASSED] res_bad_bpp
[07:58:16] [PASSED] res_bad_refresh
[07:58:16] [PASSED] res_bpp_refresh_force_on_off
[07:58:16] [PASSED] res_invalid_mode
[07:58:16] [PASSED] res_bpp_wrong_place_mode
[07:58:16] [PASSED] name_bpp_refresh
[07:58:16] [PASSED] name_refresh
[07:58:16] [PASSED] name_refresh_wrong_mode
[07:58:16] [PASSED] name_refresh_invalid_mode
[07:58:16] [PASSED] rotate_multiple
[07:58:16] [PASSED] rotate_invalid_val
[07:58:16] [PASSED] rotate_truncated
[07:58:16] [PASSED] invalid_option
[07:58:16] [PASSED] invalid_tv_option
[07:58:16] [PASSED] truncated_tv_option
[07:58:16] ============ [PASSED] drm_test_cmdline_invalid =============
[07:58:16] =============== drm_test_cmdline_tv_options  ===============
[07:58:16] [PASSED] NTSC
[07:58:16] [PASSED] NTSC_443
[07:58:16] [PASSED] NTSC_J
[07:58:16] [PASSED] PAL
[07:58:16] [PASSED] PAL_M
[07:58:16] [PASSED] PAL_N
[07:58:16] [PASSED] SECAM
[07:58:16] [PASSED] MONO_525
[07:58:16] [PASSED] MONO_625
[07:58:16] =========== [PASSED] drm_test_cmdline_tv_options ===========
[07:58:16] =============== [PASSED] drm_cmdline_parser ================
[07:58:16] ========== drmm_connector_hdmi_init (20 subtests) ==========
[07:58:16] [PASSED] drm_test_connector_hdmi_init_valid
[07:58:16] [PASSED] drm_test_connector_hdmi_init_bpc_8
[07:58:16] [PASSED] drm_test_connector_hdmi_init_bpc_10
[07:58:16] [PASSED] drm_test_connector_hdmi_init_bpc_12
[07:58:16] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[07:58:16] [PASSED] drm_test_connector_hdmi_init_bpc_null
[07:58:16] [PASSED] drm_test_connector_hdmi_init_formats_empty
[07:58:16] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[07:58:16] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[07:58:16] [PASSED] supported_formats=0x9 yuv420_allowed=1
[07:58:16] [PASSED] supported_formats=0x9 yuv420_allowed=0
[07:58:16] [PASSED] supported_formats=0x3 yuv420_allowed=1
[07:58:16] [PASSED] supported_formats=0x3 yuv420_allowed=0
[07:58:16] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:58:16] [PASSED] drm_test_connector_hdmi_init_null_ddc
[07:58:16] [PASSED] drm_test_connector_hdmi_init_null_product
[07:58:16] [PASSED] drm_test_connector_hdmi_init_null_vendor
[07:58:16] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[07:58:16] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[07:58:16] [PASSED] drm_test_connector_hdmi_init_product_valid
[07:58:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[07:58:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[07:58:16] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[07:58:16] ========= drm_test_connector_hdmi_init_type_valid  =========
[07:58:16] [PASSED] HDMI-A
[07:58:16] [PASSED] HDMI-B
[07:58:16] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[07:58:16] ======== drm_test_connector_hdmi_init_type_invalid  ========
[07:58:16] [PASSED] Unknown
[07:58:16] [PASSED] VGA
[07:58:16] [PASSED] DVI-I
[07:58:16] [PASSED] DVI-D
[07:58:16] [PASSED] DVI-A
[07:58:16] [PASSED] Composite
[07:58:16] [PASSED] SVIDEO
[07:58:16] [PASSED] LVDS
[07:58:16] [PASSED] Component
[07:58:16] [PASSED] DIN
[07:58:16] [PASSED] DP
[07:58:16] [PASSED] TV
[07:58:16] [PASSED] eDP
[07:58:16] [PASSED] Virtual
[07:58:16] [PASSED] DSI
[07:58:16] [PASSED] DPI
[07:58:16] [PASSED] Writeback
[07:58:16] [PASSED] SPI
[07:58:16] [PASSED] USB
[07:58:16] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[07:58:16] ============ [PASSED] drmm_connector_hdmi_init =============
[07:58:16] ============= drmm_connector_init (3 subtests) =============
[07:58:16] [PASSED] drm_test_drmm_connector_init
[07:58:16] [PASSED] drm_test_drmm_connector_init_null_ddc
[07:58:16] ========= drm_test_drmm_connector_init_type_valid  =========
[07:58:16] [PASSED] Unknown
[07:58:16] [PASSED] VGA
[07:58:16] [PASSED] DVI-I
[07:58:16] [PASSED] DVI-D
[07:58:16] [PASSED] DVI-A
[07:58:16] [PASSED] Composite
[07:58:16] [PASSED] SVIDEO
[07:58:16] [PASSED] LVDS
[07:58:16] [PASSED] Component
[07:58:16] [PASSED] DIN
[07:58:16] [PASSED] DP
[07:58:16] [PASSED] HDMI-A
[07:58:16] [PASSED] HDMI-B
[07:58:16] [PASSED] TV
[07:58:16] [PASSED] eDP
[07:58:16] [PASSED] Virtual
[07:58:16] [PASSED] DSI
[07:58:16] [PASSED] DPI
[07:58:16] [PASSED] Writeback
[07:58:16] [PASSED] SPI
[07:58:16] [PASSED] USB
[07:58:16] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[07:58:16] =============== [PASSED] drmm_connector_init ===============
[07:58:16] ========= drm_connector_dynamic_init (6 subtests) ==========
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_init
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_init_properties
[07:58:16] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[07:58:16] [PASSED] Unknown
[07:58:16] [PASSED] VGA
[07:58:16] [PASSED] DVI-I
[07:58:16] [PASSED] DVI-D
[07:58:16] [PASSED] DVI-A
[07:58:16] [PASSED] Composite
[07:58:16] [PASSED] SVIDEO
[07:58:16] [PASSED] LVDS
[07:58:16] [PASSED] Component
[07:58:16] [PASSED] DIN
[07:58:16] [PASSED] DP
[07:58:16] [PASSED] HDMI-A
[07:58:16] [PASSED] HDMI-B
[07:58:16] [PASSED] TV
[07:58:16] [PASSED] eDP
[07:58:16] [PASSED] Virtual
[07:58:16] [PASSED] DSI
[07:58:16] [PASSED] DPI
[07:58:16] [PASSED] Writeback
[07:58:16] [PASSED] SPI
[07:58:16] [PASSED] USB
[07:58:16] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[07:58:16] ======== drm_test_drm_connector_dynamic_init_name  =========
[07:58:16] [PASSED] Unknown
[07:58:16] [PASSED] VGA
[07:58:16] [PASSED] DVI-I
[07:58:16] [PASSED] DVI-D
[07:58:16] [PASSED] DVI-A
[07:58:16] [PASSED] Composite
[07:58:16] [PASSED] SVIDEO
[07:58:16] [PASSED] LVDS
[07:58:16] [PASSED] Component
[07:58:16] [PASSED] DIN
[07:58:16] [PASSED] DP
[07:58:16] [PASSED] HDMI-A
[07:58:16] [PASSED] HDMI-B
[07:58:16] [PASSED] TV
[07:58:16] [PASSED] eDP
[07:58:16] [PASSED] Virtual
[07:58:16] [PASSED] DSI
[07:58:16] [PASSED] DPI
[07:58:16] [PASSED] Writeback
[07:58:16] [PASSED] SPI
[07:58:16] [PASSED] USB
[07:58:16] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[07:58:16] =========== [PASSED] drm_connector_dynamic_init ============
[07:58:16] ==== drm_connector_dynamic_register_early (4 subtests) =====
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[07:58:16] ====== [PASSED] drm_connector_dynamic_register_early =======
[07:58:16] ======= drm_connector_dynamic_register (7 subtests) ========
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[07:58:16] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[07:58:16] ========= [PASSED] drm_connector_dynamic_register ==========
[07:58:16] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[07:58:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[07:58:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[07:58:16] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[07:58:16] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[07:58:16] ========== drm_test_get_tv_mode_from_name_valid  ===========
[07:58:16] [PASSED] NTSC
[07:58:16] [PASSED] NTSC-443
[07:58:16] [PASSED] NTSC-J
[07:58:16] [PASSED] PAL
[07:58:16] [PASSED] PAL-M
[07:58:16] [PASSED] PAL-N
[07:58:16] [PASSED] SECAM
[07:58:16] [PASSED] Mono
[07:58:16] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[07:58:16] [PASSED] drm_test_get_tv_mode_from_name_truncated
[07:58:16] ============ [PASSED] drm_get_tv_mode_from_name ============
[07:58:16] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[07:58:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[07:58:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[07:58:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[07:58:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[07:58:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[07:58:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[07:58:16] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[07:58:16] [PASSED] VIC 96
[07:58:16] [PASSED] VIC 97
[07:58:16] [PASSED] VIC 101
[07:58:16] [PASSED] VIC 102
[07:58:16] [PASSED] VIC 106
[07:58:16] [PASSED] VIC 107
[07:58:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[07:58:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[07:58:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[07:58:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[07:58:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[07:58:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[07:58:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[07:58:16] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[07:58:16] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[07:58:16] [PASSED] Automatic
[07:58:16] [PASSED] Full
[07:58:16] [PASSED] Limited 16:235
[07:58:16] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[07:58:16] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[07:58:16] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[07:58:16] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[07:58:16] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[07:58:16] [PASSED] RGB
[07:58:16] [PASSED] YUV 4:2:0
[07:58:16] [PASSED] YUV 4:2:2
[07:58:16] [PASSED] YUV 4:4:4
[07:58:16] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[07:58:16] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[07:58:16] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[07:58:16] ============= drm_damage_helper (21 subtests) ==============
[07:58:16] [PASSED] drm_test_damage_iter_no_damage
[07:58:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[07:58:16] [PASSED] drm_test_damage_iter_no_damage_src_moved
[07:58:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[07:58:16] [PASSED] drm_test_damage_iter_no_damage_not_visible
[07:58:16] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[07:58:16] [PASSED] drm_test_damage_iter_no_damage_no_fb
[07:58:16] [PASSED] drm_test_damage_iter_simple_damage
[07:58:16] [PASSED] drm_test_damage_iter_single_damage
[07:58:16] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[07:58:16] [PASSED] drm_test_damage_iter_single_damage_outside_src
[07:58:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[07:58:16] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[07:58:16] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[07:58:16] [PASSED] drm_test_damage_iter_single_damage_src_moved
[07:58:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[07:58:16] [PASSED] drm_test_damage_iter_damage
[07:58:16] [PASSED] drm_test_damage_iter_damage_one_intersect
[07:58:16] [PASSED] drm_test_damage_iter_damage_one_outside
[07:58:16] [PASSED] drm_test_damage_iter_damage_src_moved
[07:58:16] [PASSED] drm_test_damage_iter_damage_not_visible
[07:58:16] ================ [PASSED] drm_damage_helper ================
[07:58:16] ============== drm_dp_mst_helper (3 subtests) ==============
[07:58:16] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[07:58:16] [PASSED] Clock 154000 BPP 30 DSC disabled
[07:58:16] [PASSED] Clock 234000 BPP 30 DSC disabled
[07:58:16] [PASSED] Clock 297000 BPP 24 DSC disabled
[07:58:16] [PASSED] Clock 332880 BPP 24 DSC enabled
[07:58:16] [PASSED] Clock 324540 BPP 24 DSC enabled
[07:58:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[07:58:16] ============== drm_test_dp_mst_calc_pbn_div  ===============
[07:58:16] [PASSED] Link rate 2000000 lane count 4
[07:58:16] [PASSED] Link rate 2000000 lane count 2
[07:58:16] [PASSED] Link rate 2000000 lane count 1
[07:58:16] [PASSED] Link rate 1350000 lane count 4
[07:58:16] [PASSED] Link rate 1350000 lane count 2
[07:58:16] [PASSED] Link rate 1350000 lane count 1
[07:58:16] [PASSED] Link rate 1000000 lane count 4
[07:58:16] [PASSED] Link rate 1000000 lane count 2
[07:58:16] [PASSED] Link rate 1000000 lane count 1
[07:58:16] [PASSED] Link rate 810000 lane count 4
[07:58:16] [PASSED] Link rate 810000 lane count 2
[07:58:16] [PASSED] Link rate 810000 lane count 1
[07:58:16] [PASSED] Link rate 540000 lane count 4
[07:58:16] [PASSED] Link rate 540000 lane count 2
[07:58:16] [PASSED] Link rate 540000 lane count 1
[07:58:16] [PASSED] Link rate 270000 lane count 4
[07:58:16] [PASSED] Link rate 270000 lane count 2
[07:58:16] [PASSED] Link rate 270000 lane count 1
[07:58:16] [PASSED] Link rate 162000 lane count 4
[07:58:16] [PASSED] Link rate 162000 lane count 2
[07:58:16] [PASSED] Link rate 162000 lane count 1
[07:58:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[07:58:16] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[07:58:16] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[07:58:16] [PASSED] DP_POWER_UP_PHY with port number
[07:58:16] [PASSED] DP_POWER_DOWN_PHY with port number
[07:58:16] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[07:58:16] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[07:58:16] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[07:58:16] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[07:58:16] [PASSED] DP_QUERY_PAYLOAD with port number
[07:58:16] [PASSED] DP_QUERY_PAYLOAD with VCPI
[07:58:16] [PASSED] DP_REMOTE_DPCD_READ with port number
[07:58:16] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[07:58:16] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[07:58:16] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[07:58:16] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[07:58:16] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[07:58:16] [PASSED] DP_REMOTE_I2C_READ with port number
[07:58:16] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[07:58:16] [PASSED] DP_REMOTE_I2C_READ with transactions array
[07:58:16] [PASSED] DP_REMOTE_I2C_WRITE with port number
[07:58:16] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[07:58:16] [PASSED] DP_REMOTE_I2C_WRITE with data array
[07:58:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[07:58:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[07:58:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[07:58:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[07:58:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[07:58:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[07:58:16] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[07:58:16] ================ [PASSED] drm_dp_mst_helper ================
[07:58:16] ================== drm_exec (7 subtests) ===================
[07:58:16] [PASSED] sanitycheck
[07:58:16] [PASSED] test_lock
[07:58:16] [PASSED] test_lock_unlock
[07:58:16] [PASSED] test_duplicates
[07:58:16] [PASSED] test_prepare
[07:58:16] [PASSED] test_prepare_array
[07:58:16] [PASSED] test_multiple_loops
[07:58:16] ==================== [PASSED] drm_exec =====================
[07:58:16] =========== drm_format_helper_test (17 subtests) ===========
[07:58:16] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[07:58:16] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[07:58:16] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[07:58:16] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[07:58:16] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[07:58:16] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[07:58:16] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[07:58:16] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[07:58:16] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[07:58:16] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[07:58:16] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[07:58:16] ============== drm_test_fb_xrgb8888_to_mono  ===============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[07:58:16] ==================== drm_test_fb_swab  =====================
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ================ [PASSED] drm_test_fb_swab =================
[07:58:16] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[07:58:16] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[07:58:16] [PASSED] single_pixel_source_buffer
[07:58:16] [PASSED] single_pixel_clip_rectangle
[07:58:16] [PASSED] well_known_colors
[07:58:16] [PASSED] destination_pitch
[07:58:16] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[07:58:16] ================= drm_test_fb_clip_offset  =================
[07:58:16] [PASSED] pass through
[07:58:16] [PASSED] horizontal offset
[07:58:16] [PASSED] vertical offset
[07:58:16] [PASSED] horizontal and vertical offset
[07:58:16] [PASSED] horizontal offset (custom pitch)
[07:58:16] [PASSED] vertical offset (custom pitch)
[07:58:16] [PASSED] horizontal and vertical offset (custom pitch)
[07:58:16] ============= [PASSED] drm_test_fb_clip_offset =============
[07:58:16] =================== drm_test_fb_memcpy  ====================
[07:58:16] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[07:58:16] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[07:58:16] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[07:58:16] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[07:58:16] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[07:58:16] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[07:58:16] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[07:58:16] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[07:58:16] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[07:58:16] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[07:58:16] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[07:58:16] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[07:58:16] =============== [PASSED] drm_test_fb_memcpy ================
[07:58:16] ============= [PASSED] drm_format_helper_test ==============
[07:58:16] ================= drm_format (18 subtests) =================
[07:58:16] [PASSED] drm_test_format_block_width_invalid
[07:58:16] [PASSED] drm_test_format_block_width_one_plane
[07:58:16] [PASSED] drm_test_format_block_width_two_plane
[07:58:16] [PASSED] drm_test_format_block_width_three_plane
[07:58:16] [PASSED] drm_test_format_block_width_tiled
[07:58:16] [PASSED] drm_test_format_block_height_invalid
[07:58:16] [PASSED] drm_test_format_block_height_one_plane
[07:58:16] [PASSED] drm_test_format_block_height_two_plane
[07:58:16] [PASSED] drm_test_format_block_height_three_plane
[07:58:16] [PASSED] drm_test_format_block_height_tiled
[07:58:16] [PASSED] drm_test_format_min_pitch_invalid
[07:58:16] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[07:58:16] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[07:58:16] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[07:58:16] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[07:58:16] [PASSED] drm_test_format_min_pitch_two_plane
[07:58:16] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[07:58:16] [PASSED] drm_test_format_min_pitch_tiled
[07:58:16] =================== [PASSED] drm_format ====================
[07:58:16] ============== drm_framebuffer (10 subtests) ===============
[07:58:16] ========== drm_test_framebuffer_check_src_coords  ==========
[07:58:16] [PASSED] Success: source fits into fb
[07:58:16] [PASSED] Fail: overflowing fb with x-axis coordinate
[07:58:16] [PASSED] Fail: overflowing fb with y-axis coordinate
[07:58:16] [PASSED] Fail: overflowing fb with source width
[07:58:16] [PASSED] Fail: overflowing fb with source height
[07:58:16] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[07:58:16] [PASSED] drm_test_framebuffer_cleanup
[07:58:16] =============== drm_test_framebuffer_create  ===============
[07:58:16] [PASSED] ABGR8888 normal sizes
[07:58:16] [PASSED] ABGR8888 max sizes
[07:58:16] [PASSED] ABGR8888 pitch greater than min required
[07:58:16] [PASSED] ABGR8888 pitch less than min required
[07:58:16] [PASSED] ABGR8888 Invalid width
[07:58:16] [PASSED] ABGR8888 Invalid buffer handle
[07:58:16] [PASSED] No pixel format
[07:58:16] [PASSED] ABGR8888 Width 0
[07:58:16] [PASSED] ABGR8888 Height 0
[07:58:16] [PASSED] ABGR8888 Out of bound height * pitch combination
[07:58:16] [PASSED] ABGR8888 Large buffer offset
[07:58:16] [PASSED] ABGR8888 Buffer offset for inexistent plane
[07:58:16] [PASSED] ABGR8888 Invalid flag
[07:58:16] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[07:58:16] [PASSED] ABGR8888 Valid buffer modifier
[07:58:16] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[07:58:16] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[07:58:16] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[07:58:16] [PASSED] NV12 Normal sizes
[07:58:16] [PASSED] NV12 Max sizes
[07:58:16] [PASSED] NV12 Invalid pitch
[07:58:16] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[07:58:16] [PASSED] NV12 different  modifier per-plane
[07:58:16] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[07:58:16] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[07:58:16] [PASSED] NV12 Modifier for inexistent plane
[07:58:16] [PASSED] NV12 Handle for inexistent plane
[07:58:16] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[07:58:16] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[07:58:16] [PASSED] YVU420 Normal sizes
[07:58:16] [PASSED] YVU420 Max sizes
[07:58:16] [PASSED] YVU420 Invalid pitch
[07:58:16] [PASSED] YVU420 Different pitches
[07:58:16] [PASSED] YVU420 Different buffer offsets/pitches
[07:58:16] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[07:58:16] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[07:58:16] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[07:58:16] [PASSED] YVU420 Valid modifier
[07:58:16] [PASSED] YVU420 Different modifiers per plane
[07:58:16] [PASSED] YVU420 Modifier for inexistent plane
[07:58:16] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[07:58:16] [PASSED] X0L2 Normal sizes
[07:58:16] [PASSED] X0L2 Max sizes
[07:58:16] [PASSED] X0L2 Invalid pitch
[07:58:16] [PASSED] X0L2 Pitch greater than minimum required
[07:58:16] [PASSED] X0L2 Handle for inexistent plane
[07:58:16] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[07:58:16] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[07:58:16] [PASSED] X0L2 Valid modifier
[07:58:16] [PASSED] X0L2 Modifier for inexistent plane
[07:58:16] =========== [PASSED] drm_test_framebuffer_create ===========
[07:58:16] [PASSED] drm_test_framebuffer_free
[07:58:16] [PASSED] drm_test_framebuffer_init
[07:58:16] [PASSED] drm_test_framebuffer_init_bad_format
[07:58:16] [PASSED] drm_test_framebuffer_init_dev_mismatch
[07:58:16] [PASSED] drm_test_framebuffer_lookup
[07:58:16] [PASSED] drm_test_framebuffer_lookup_inexistent
[07:58:16] [PASSED] drm_test_framebuffer_modifiers_not_supported
[07:58:16] ================= [PASSED] drm_framebuffer =================
[07:58:16] ================ drm_gem_shmem (8 subtests) ================
[07:58:16] [PASSED] drm_gem_shmem_test_obj_create
[07:58:16] [PASSED] drm_gem_shmem_test_obj_create_private
[07:58:16] [PASSED] drm_gem_shmem_test_pin_pages
[07:58:16] [PASSED] drm_gem_shmem_test_vmap
[07:58:16] [PASSED] drm_gem_shmem_test_get_pages_sgt
[07:58:16] [PASSED] drm_gem_shmem_test_get_sg_table
[07:58:16] [PASSED] drm_gem_shmem_test_madvise
[07:58:16] [PASSED] drm_gem_shmem_test_purge
[07:58:16] ================== [PASSED] drm_gem_shmem ==================
[07:58:16] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[07:58:16] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[07:58:16] [PASSED] Automatic
[07:58:16] [PASSED] Full
[07:58:16] [PASSED] Limited 16:235
[07:58:16] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[07:58:16] [PASSED] drm_test_check_disable_connector
[07:58:16] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[07:58:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[07:58:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[07:58:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[07:58:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[07:58:16] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[07:58:16] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[07:58:16] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[07:58:16] [PASSED] drm_test_check_output_bpc_dvi
[07:58:16] [PASSED] drm_test_check_output_bpc_format_vic_1
[07:58:16] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[07:58:16] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[07:58:16] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[07:58:16] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[07:58:16] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[07:58:16] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[07:58:16] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[07:58:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[07:58:16] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[07:58:16] [PASSED] drm_test_check_broadcast_rgb_value
[07:58:16] [PASSED] drm_test_check_bpc_8_value
[07:58:16] [PASSED] drm_test_check_bpc_10_value
[07:58:16] [PASSED] drm_test_check_bpc_12_value
[07:58:16] [PASSED] drm_test_check_format_value
[07:58:16] [PASSED] drm_test_check_tmds_char_value
[07:58:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[07:58:16] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[07:58:16] [PASSED] drm_test_check_mode_valid
[07:58:16] [PASSED] drm_test_check_mode_valid_reject
[07:58:16] [PASSED] drm_test_check_mode_valid_reject_rate
[07:58:16] [PASSED] drm_test_check_mode_valid_reject_max_clock
[07:58:16] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[07:58:16] ================= drm_managed (2 subtests) =================
[07:58:16] [PASSED] drm_test_managed_release_action
[07:58:16] [PASSED] drm_test_managed_run_action
[07:58:16] =================== [PASSED] drm_managed ===================
[07:58:16] =================== drm_mm (6 subtests) ====================
[07:58:16] [PASSED] drm_test_mm_init
[07:58:16] [PASSED] drm_test_mm_debug
[07:58:16] [PASSED] drm_test_mm_align32
[07:58:16] [PASSED] drm_test_mm_align64
[07:58:16] [PASSED] drm_test_mm_lowest
[07:58:16] [PASSED] drm_test_mm_highest
[07:58:16] ===================== [PASSED] drm_mm ======================
[07:58:16] ============= drm_modes_analog_tv (5 subtests) =============
[07:58:16] [PASSED] drm_test_modes_analog_tv_mono_576i
[07:58:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[07:58:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[07:58:16] [PASSED] drm_test_modes_analog_tv_pal_576i
[07:58:16] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[07:58:16] =============== [PASSED] drm_modes_analog_tv ===============
[07:58:16] ============== drm_plane_helper (2 subtests) ===============
[07:58:16] =============== drm_test_check_plane_state  ================
[07:58:16] [PASSED] clipping_simple
[07:58:16] [PASSED] clipping_rotate_reflect
[07:58:16] [PASSED] positioning_simple
[07:58:16] [PASSED] upscaling
[07:58:16] [PASSED] downscaling
[07:58:16] [PASSED] rounding1
[07:58:16] [PASSED] rounding2
[07:58:16] [PASSED] rounding3
[07:58:16] [PASSED] rounding4
[07:58:16] =========== [PASSED] drm_test_check_plane_state ============
[07:58:16] =========== drm_test_check_invalid_plane_state  ============
[07:58:16] [PASSED] positioning_invalid
[07:58:16] [PASSED] upscaling_invalid
[07:58:16] [PASSED] downscaling_invalid
[07:58:16] ======= [PASSED] drm_test_check_invalid_plane_state ========
[07:58:16] ================ [PASSED] drm_plane_helper =================
[07:58:16] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[07:58:16] ====== drm_test_connector_helper_tv_get_modes_check  =======
[07:58:16] [PASSED] None
[07:58:16] [PASSED] PAL
[07:58:16] [PASSED] NTSC
[07:58:16] [PASSED] Both, NTSC Default
[07:58:16] [PASSED] Both, PAL Default
[07:58:16] [PASSED] Both, NTSC Default, with PAL on command-line
[07:58:16] [PASSED] Both, PAL Default, with NTSC on command-line
[07:58:16] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[07:58:16] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[07:58:16] ================== drm_rect (9 subtests) ===================
[07:58:16] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[07:58:16] [PASSED] drm_test_rect_clip_scaled_not_clipped
[07:58:16] [PASSED] drm_test_rect_clip_scaled_clipped
[07:58:16] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[07:58:16] ================= drm_test_rect_intersect  =================
[07:58:16] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[07:58:16] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[07:58:16] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[07:58:16] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[07:58:16] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[07:58:16] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[07:58:16] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[07:58:16] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[07:58:16] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[07:58:16] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[07:58:16] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[07:58:16] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[07:58:16] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[07:58:16] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[07:58:16] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[07:58:16] ============= [PASSED] drm_test_rect_intersect =============
[07:58:16] ================ drm_test_rect_calc_hscale  ================
[07:58:16] [PASSED] normal use
[07:58:16] [PASSED] out of max range
[07:58:16] [PASSED] out of min range
[07:58:16] [PASSED] zero dst
[07:58:16] [PASSED] negative src
[07:58:16] [PASSED] negative dst
[07:58:16] ============ [PASSED] drm_test_rect_calc_hscale ============
[07:58:16] ================ drm_test_rect_calc_vscale  ================
[07:58:16] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[07:58:16] [PASSED] out of max range
[07:58:16] [PASSED] out of min range
[07:58:16] [PASSED] zero dst
[07:58:16] [PASSED] negative src
[07:58:16] [PASSED] negative dst
[07:58:16] ============ [PASSED] drm_test_rect_calc_vscale ============
[07:58:16] ================== drm_test_rect_rotate  ===================
[07:58:16] [PASSED] reflect-x
[07:58:16] [PASSED] reflect-y
[07:58:16] [PASSED] rotate-0
[07:58:16] [PASSED] rotate-90
[07:58:16] [PASSED] rotate-180
[07:58:16] [PASSED] rotate-270
[07:58:16] ============== [PASSED] drm_test_rect_rotate ===============
[07:58:16] ================ drm_test_rect_rotate_inv  =================
[07:58:16] [PASSED] reflect-x
[07:58:16] [PASSED] reflect-y
[07:58:16] [PASSED] rotate-0
[07:58:16] [PASSED] rotate-90
[07:58:16] [PASSED] rotate-180
[07:58:16] [PASSED] rotate-270
[07:58:16] ============ [PASSED] drm_test_rect_rotate_inv =============
[07:58:16] ==================== [PASSED] drm_rect =====================
[07:58:16] ============ drm_sysfb_modeset_test (1 subtest) ============
[07:58:16] ============ drm_test_sysfb_build_fourcc_list  =============
[07:58:16] [PASSED] no native formats
[07:58:16] [PASSED] XRGB8888 as native format
[07:58:16] [PASSED] remove duplicates
[07:58:16] [PASSED] convert alpha formats
[07:58:16] [PASSED] random formats
[07:58:16] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[07:58:16] ============= [PASSED] drm_sysfb_modeset_test ==============
[07:58:16] ================== drm_fixp (2 subtests) ===================
[07:58:16] [PASSED] drm_test_int2fixp
[07:58:16] [PASSED] drm_test_sm2fixp
[07:58:16] ==================== [PASSED] drm_fixp =====================
[07:58:16] ============================================================
[07:58:16] Testing complete. Ran 624 tests: passed: 624
[07:58:16] Elapsed time: 27.028s total, 1.662s configuring, 24.950s building, 0.379s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[07:58:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:58:18] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:58:28] Starting KUnit Kernel (1/1)...
[07:58:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:58:28] ================= ttm_device (5 subtests) ==================
[07:58:28] [PASSED] ttm_device_init_basic
[07:58:28] [PASSED] ttm_device_init_multiple
[07:58:28] [PASSED] ttm_device_fini_basic
[07:58:28] [PASSED] ttm_device_init_no_vma_man
[07:58:28] ================== ttm_device_init_pools  ==================
[07:58:28] [PASSED] No DMA allocations, no DMA32 required
[07:58:28] [PASSED] DMA allocations, DMA32 required
[07:58:28] [PASSED] No DMA allocations, DMA32 required
[07:58:28] [PASSED] DMA allocations, no DMA32 required
[07:58:28] ============== [PASSED] ttm_device_init_pools ==============
[07:58:28] =================== [PASSED] ttm_device ====================
[07:58:28] ================== ttm_pool (8 subtests) ===================
[07:58:28] ================== ttm_pool_alloc_basic  ===================
[07:58:28] [PASSED] One page
[07:58:28] [PASSED] More than one page
[07:58:28] [PASSED] Above the allocation limit
[07:58:28] [PASSED] One page, with coherent DMA mappings enabled
[07:58:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:58:28] ============== [PASSED] ttm_pool_alloc_basic ===============
[07:58:28] ============== ttm_pool_alloc_basic_dma_addr  ==============
[07:58:28] [PASSED] One page
[07:58:28] [PASSED] More than one page
[07:58:28] [PASSED] Above the allocation limit
[07:58:28] [PASSED] One page, with coherent DMA mappings enabled
[07:58:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:58:28] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[07:58:28] [PASSED] ttm_pool_alloc_order_caching_match
[07:58:28] [PASSED] ttm_pool_alloc_caching_mismatch
[07:58:28] [PASSED] ttm_pool_alloc_order_mismatch
[07:58:28] [PASSED] ttm_pool_free_dma_alloc
[07:58:28] [PASSED] ttm_pool_free_no_dma_alloc
[07:58:28] [PASSED] ttm_pool_fini_basic
[07:58:28] ==================== [PASSED] ttm_pool =====================
[07:58:28] ================ ttm_resource (8 subtests) =================
[07:58:28] ================= ttm_resource_init_basic  =================
[07:58:28] [PASSED] Init resource in TTM_PL_SYSTEM
[07:58:28] [PASSED] Init resource in TTM_PL_VRAM
[07:58:28] [PASSED] Init resource in a private placement
[07:58:28] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[07:58:28] ============= [PASSED] ttm_resource_init_basic =============
[07:58:28] [PASSED] ttm_resource_init_pinned
[07:58:28] [PASSED] ttm_resource_fini_basic
[07:58:28] [PASSED] ttm_resource_manager_init_basic
[07:58:28] [PASSED] ttm_resource_manager_usage_basic
[07:58:28] [PASSED] ttm_resource_manager_set_used_basic
[07:58:28] [PASSED] ttm_sys_man_alloc_basic
[07:58:28] [PASSED] ttm_sys_man_free_basic
[07:58:28] ================== [PASSED] ttm_resource ===================
[07:58:28] =================== ttm_tt (15 subtests) ===================
[07:58:28] ==================== ttm_tt_init_basic  ====================
[07:58:28] [PASSED] Page-aligned size
[07:58:28] [PASSED] Extra pages requested
[07:58:28] ================ [PASSED] ttm_tt_init_basic ================
[07:58:28] [PASSED] ttm_tt_init_misaligned
[07:58:28] [PASSED] ttm_tt_fini_basic
[07:58:28] [PASSED] ttm_tt_fini_sg
[07:58:28] [PASSED] ttm_tt_fini_shmem
[07:58:28] [PASSED] ttm_tt_create_basic
[07:58:28] [PASSED] ttm_tt_create_invalid_bo_type
[07:58:28] [PASSED] ttm_tt_create_ttm_exists
[07:58:28] [PASSED] ttm_tt_create_failed
[07:58:28] [PASSED] ttm_tt_destroy_basic
[07:58:28] [PASSED] ttm_tt_populate_null_ttm
[07:58:28] [PASSED] ttm_tt_populate_populated_ttm
[07:58:28] [PASSED] ttm_tt_unpopulate_basic
[07:58:28] [PASSED] ttm_tt_unpopulate_empty_ttm
[07:58:28] [PASSED] ttm_tt_swapin_basic
[07:58:28] ===================== [PASSED] ttm_tt ======================
[07:58:28] =================== ttm_bo (14 subtests) ===================
[07:58:28] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[07:58:28] [PASSED] Cannot be interrupted and sleeps
[07:58:28] [PASSED] Cannot be interrupted, locks straight away
[07:58:28] [PASSED] Can be interrupted, sleeps
[07:58:28] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[07:58:28] [PASSED] ttm_bo_reserve_locked_no_sleep
[07:58:28] [PASSED] ttm_bo_reserve_no_wait_ticket
[07:58:28] [PASSED] ttm_bo_reserve_double_resv
[07:58:28] [PASSED] ttm_bo_reserve_interrupted
[07:58:28] [PASSED] ttm_bo_reserve_deadlock
[07:58:28] [PASSED] ttm_bo_unreserve_basic
[07:58:28] [PASSED] ttm_bo_unreserve_pinned
[07:58:28] [PASSED] ttm_bo_unreserve_bulk
[07:58:28] [PASSED] ttm_bo_fini_basic
[07:58:28] [PASSED] ttm_bo_fini_shared_resv
[07:58:28] [PASSED] ttm_bo_pin_basic
[07:58:28] [PASSED] ttm_bo_pin_unpin_resource
[07:58:28] [PASSED] ttm_bo_multiple_pin_one_unpin
[07:58:28] ===================== [PASSED] ttm_bo ======================
[07:58:28] ============== ttm_bo_validate (21 subtests) ===============
[07:58:28] ============== ttm_bo_init_reserved_sys_man  ===============
[07:58:28] [PASSED] Buffer object for userspace
[07:58:28] [PASSED] Kernel buffer object
[07:58:28] [PASSED] Shared buffer object
[07:58:28] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[07:58:28] ============== ttm_bo_init_reserved_mock_man  ==============
[07:58:28] [PASSED] Buffer object for userspace
[07:58:28] [PASSED] Kernel buffer object
[07:58:28] [PASSED] Shared buffer object
[07:58:28] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[07:58:28] [PASSED] ttm_bo_init_reserved_resv
[07:58:28] ================== ttm_bo_validate_basic  ==================
[07:58:28] [PASSED] Buffer object for userspace
[07:58:28] [PASSED] Kernel buffer object
[07:58:28] [PASSED] Shared buffer object
[07:58:28] ============== [PASSED] ttm_bo_validate_basic ==============
[07:58:28] [PASSED] ttm_bo_validate_invalid_placement
[07:58:28] ============= ttm_bo_validate_same_placement  ==============
[07:58:28] [PASSED] System manager
[07:58:28] [PASSED] VRAM manager
[07:58:28] ========= [PASSED] ttm_bo_validate_same_placement ==========
[07:58:28] [PASSED] ttm_bo_validate_failed_alloc
[07:58:28] [PASSED] ttm_bo_validate_pinned
[07:58:28] [PASSED] ttm_bo_validate_busy_placement
[07:58:28] ================ ttm_bo_validate_multihop  =================
[07:58:28] [PASSED] Buffer object for userspace
[07:58:28] [PASSED] Kernel buffer object
[07:58:28] [PASSED] Shared buffer object
[07:58:28] ============ [PASSED] ttm_bo_validate_multihop =============
[07:58:28] ========== ttm_bo_validate_no_placement_signaled  ==========
[07:58:28] [PASSED] Buffer object in system domain, no page vector
[07:58:28] [PASSED] Buffer object in system domain with an existing page vector
[07:58:28] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[07:58:28] ======== ttm_bo_validate_no_placement_not_signaled  ========
[07:58:28] [PASSED] Buffer object for userspace
[07:58:28] [PASSED] Kernel buffer object
[07:58:28] [PASSED] Shared buffer object
[07:58:28] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[07:58:28] [PASSED] ttm_bo_validate_move_fence_signaled
[07:58:28] ========= ttm_bo_validate_move_fence_not_signaled  =========
[07:58:28] [PASSED] Waits for GPU
[07:58:28] [PASSED] Tries to lock straight away
[07:58:28] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[07:58:28] [PASSED] ttm_bo_validate_happy_evict
[07:58:28] [PASSED] ttm_bo_validate_all_pinned_evict
[07:58:28] [PASSED] ttm_bo_validate_allowed_only_evict
[07:58:28] [PASSED] ttm_bo_validate_deleted_evict
[07:58:28] [PASSED] ttm_bo_validate_busy_domain_evict
[07:58:28] [PASSED] ttm_bo_validate_evict_gutting
[07:58:28] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[07:58:28] ================= [PASSED] ttm_bo_validate =================
[07:58:28] ============================================================
[07:58:28] Testing complete. Ran 101 tests: passed: 101
[07:58:28] Elapsed time: 11.305s total, 1.681s configuring, 9.358s building, 0.225s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* ✗ CI.checksparse: warning for Selective Fetch and async flip (rev4)
  2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
                   ` (3 preceding siblings ...)
  2025-12-04  7:58 ` ✓ CI.KUnit: success for Selective Fetch and async flip (rev4) Patchwork
@ 2025-12-04  8:13 ` Patchwork
  2025-12-04  9:00 ` ✓ Xe.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-12-04  8:13 UTC (permalink / raw)
  To: Hogander, Jouni; +Cc: intel-xe

== Series Details ==

Series: Selective Fetch and async flip (rev4)
URL   : https://patchwork.freedesktop.org/series/158002/
State : warning

== Summary ==

+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 2d16d4e1aef3cb501fcd37c8558dafeb579be813
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2073:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file:

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* ✓ Xe.CI.BAT: success for Selective Fetch and async flip (rev4)
  2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
                   ` (4 preceding siblings ...)
  2025-12-04  8:13 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-12-04  9:00 ` Patchwork
  2025-12-04 10:32 ` ✓ Xe.CI.Full: " Patchwork
  2025-12-09 18:26 ` [PATCH v4 0/3] Selective Fetch and async flip Ville Syrjälä
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-12-04  9:00 UTC (permalink / raw)
  To: Hogander, Jouni; +Cc: intel-xe

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

== Series Details ==

Series: Selective Fetch and async flip (rev4)
URL   : https://patchwork.freedesktop.org/series/158002/
State : success

== Summary ==

CI Bug Log - changes from xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813_BAT -> xe-pw-158002v4_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-158002v4_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@abstime:
    - bat-dg2-oem2:       [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/bat-dg2-oem2/igt@xe_waitfence@abstime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/bat-dg2-oem2/igt@xe_waitfence@abstime.html

  * igt@xe_waitfence@engine:
    - bat-dg2-oem2:       [PASS][3] -> [FAIL][4] ([Intel XE#6519])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/bat-dg2-oem2/igt@xe_waitfence@engine.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/bat-dg2-oem2/igt@xe_waitfence@engine.html

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][5] -> [FAIL][6] ([Intel XE#6520])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/bat-dg2-oem2/igt@xe_waitfence@reltime.html

  
  [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
  [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
  [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520


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

  * IGT: IGT_8653 -> IGT_8654
  * Linux: xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813 -> xe-pw-158002v4

  IGT_8653: c13e142a52b1654cbfb42b80985d6da656033ff4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8654: 38d9fde0432aa6f2bf6add062f1d4334ad467fbc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813: 2d16d4e1aef3cb501fcd37c8558dafeb579be813
  xe-pw-158002v4: 158002v4

== Logs ==

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

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

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

* ✓ Xe.CI.Full: success for Selective Fetch and async flip (rev4)
  2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
                   ` (5 preceding siblings ...)
  2025-12-04  9:00 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-12-04 10:32 ` Patchwork
  2025-12-09 18:26 ` [PATCH v4 0/3] Selective Fetch and async flip Ville Syrjälä
  7 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-12-04 10:32 UTC (permalink / raw)
  To: Hogander, Jouni; +Cc: intel-xe

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

== Series Details ==

Series: Selective Fetch and async flip (rev4)
URL   : https://patchwork.freedesktop.org/series/158002/
State : success

== Summary ==

CI Bug Log - changes from xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813_FULL -> xe-pw-158002v4_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-158002v4_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-lnl:          NOTRUN -> [SKIP][1] ([Intel XE#1125])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@intel_hwmon@hwmon-write.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][2] ([Intel XE#664])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/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:          NOTRUN -> [SKIP][3] ([Intel XE#1407]) +7 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][4] ([Intel XE#3658]) +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][5] ([Intel XE#316]) +6 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2327]) +4 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-adlp:         NOTRUN -> [FAIL][7] ([Intel XE#1874]) +2 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][8] ([Intel XE#316]) +3 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [FAIL][9] ([Intel XE#1231] / [Intel XE#6699])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#1124]) +15 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2328])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#619])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-adlp:         [PASS][13] -> [FAIL][14] ([Intel XE#1231] / [Intel XE#6699])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-adlp:         NOTRUN -> [SKIP][15] ([Intel XE#1124]) +15 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#1124]) +12 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#1467]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-adlp:         NOTRUN -> [SKIP][18] ([Intel XE#607])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#607])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#607])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#1477])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/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-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#1124]) +11 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][23] ([Intel XE#2191]) +2 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#2191]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#2191])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#1512]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#367]) +6 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][29] ([Intel XE#367]) +7 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#367]) +5 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#367]) +3 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +53 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#2907]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#2907])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#2669]) +7 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#787]) +80 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#2887]) +20 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#3432])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#3432]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2887]) +20 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#787]) +90 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/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-y-tiled-gen12-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][43] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345]) +1 other test incomplete
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][44] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][45] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_cdclk@mode-transition:
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#4417] / [Intel XE#455])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-adlp:         NOTRUN -> [SKIP][47] ([Intel XE#4418])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2724]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#4418])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#4418])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][51] ([Intel XE#4417]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#4417]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#306]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2325]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_chamelium_color@degamma.html
    - shard-adlp:         NOTRUN -> [SKIP][55] ([Intel XE#306]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@kms_chamelium_color@degamma.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#306]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-adlp:         NOTRUN -> [SKIP][57] ([Intel XE#373]) +16 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2252]) +15 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#373]) +13 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#373]) +19 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_colorop@plane-xr24-xr24-bt2020_oetf:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#6704]) +14 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_colorop@plane-xr24-xr24-bt2020_oetf.html

  * igt@kms_colorop@plane-xr24-xr24-multiply_125:
    - shard-adlp:         NOTRUN -> [SKIP][62] ([Intel XE#6704]) +22 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@kms_colorop@plane-xr24-xr24-multiply_125.html

  * igt@kms_colorop@plane-xr24-xr24-pq_125_eotf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#6704]) +13 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@kms_colorop@plane-xr24-xr24-pq_125_eotf.html

  * igt@kms_colorop@plane-xr30-xr30-pq_eotf:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#6704]) +13 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@kms_colorop@plane-xr30-xr30-pq_eotf.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2390])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html
    - shard-adlp:         NOTRUN -> [SKIP][66] ([Intel XE#307])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@kms_content_protection@dp-mst-type-1.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#307])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#307])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [FAIL][69] ([Intel XE#1178]) +7 other tests fail
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][70] ([Intel XE#3304])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html

  * igt@kms_content_protection@lic-type-1:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#3278]) +4 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][72] ([Intel XE#1178]) +4 other tests fail
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2320]) +7 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#2321]) +4 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-adlp:         NOTRUN -> [SKIP][75] ([Intel XE#308])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2321])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1424]) +8 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-adlp:         NOTRUN -> [SKIP][78] ([Intel XE#309]) +4 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#309]) +3 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#1508])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#1508])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dp_aux_dev:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#3009])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@kms_dp_aux_dev.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#4354])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#4354])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#4354]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_dp_link_training@uhbr-mst.html
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#4354])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][87] ([Intel XE#4356])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#4356]) +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#4294])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_feature_discovery@display-2x:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#702])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#703])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_feature_discovery@display-3x.html
    - shard-adlp:         NOTRUN -> [SKIP][92] ([Intel XE#703])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_feature_discovery@display-3x.html
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2373])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-6/igt@kms_feature_discovery@display-3x.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][94] ([Intel XE#703])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#1138])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#1137])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_feature_discovery@dp-mst.html
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2375])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@kms_feature_discovery@dp-mst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#1137])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#1137])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#1421]) +11 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-plain-flip:
    - shard-adlp:         NOTRUN -> [SKIP][101] ([Intel XE#310]) +8 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2380]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#1397]) +2 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#2293] / [Intel XE#2380]) +9 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][106] ([Intel XE#1401] / [Intel XE#1745]) +8 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#1401]) +8 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][108] ([Intel XE#2293]) +9 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_force_connector_basic@force-edid:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#352])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_force_connector_basic@force-edid.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][110] ([Intel XE#6312]) +7 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#651]) +19 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
    - shard-adlp:         NOTRUN -> [SKIP][112] ([Intel XE#651]) +20 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][113] ([Intel XE#656]) +75 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#2311]) +37 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [FAIL][115] ([Intel XE#5671]) +1 other test fail
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#656]) +71 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#4141]) +21 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#1469])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#6312]) +5 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][120] ([Intel XE#651]) +36 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][121] ([Intel XE#653]) +35 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
    - shard-adlp:         NOTRUN -> [SKIP][122] ([Intel XE#1151])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][123] ([Intel XE#6312]) +4 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][124] ([Intel XE#653]) +20 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#2313]) +39 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-lnl:          NOTRUN -> [SKIP][126] ([Intel XE#1470])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#3374] / [Intel XE#3544])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html
    - shard-bmg:          NOTRUN -> [SKIP][128] ([Intel XE#3374] / [Intel XE#3544])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          NOTRUN -> [SKIP][129] ([Intel XE#1503])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][130] ([Intel XE#1503]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#1450]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html

  * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][133] ([Intel XE#2925] / [Intel XE#3012])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][134] ([Intel XE#2925] / [Intel XE#2927])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][135] ([Intel XE#2925])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#2934] / [Intel XE#6590])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#2925])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][138] ([Intel XE#2925])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-adlp:         NOTRUN -> [SKIP][139] ([Intel XE#356])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-bmg:          NOTRUN -> [SKIP][140] ([Intel XE#2501])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][141] ([Intel XE#356])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#356])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#2486])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
    - shard-lnl:          NOTRUN -> [FAIL][144] ([Intel XE#5195]) +2 other tests fail
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
    - shard-adlp:         NOTRUN -> [FAIL][145] ([Intel XE#5195]) +4 other tests fail
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html

  * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][146] ([Intel XE#599]) +4 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#2393])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-adlp:         NOTRUN -> [SKIP][148] ([Intel XE#4596])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-adlp:         NOTRUN -> [SKIP][149] ([Intel XE#5020]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@kms_plane_multiple@tiling-yf.html
    - shard-bmg:          NOTRUN -> [SKIP][150] ([Intel XE#5020])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][151] ([Intel XE#5020])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@kms_plane_multiple@tiling-yf.html
    - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#5020])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
    - shard-bmg:          NOTRUN -> [SKIP][153] ([Intel XE#5825]) +4 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][154] ([Intel XE#5825]) +7 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][155] ([Intel XE#870])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@kms_pm_backlight@bad-brightness.html
    - shard-adlp:         NOTRUN -> [SKIP][156] ([Intel XE#870])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@kms_pm_backlight@bad-brightness.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][157] ([Intel XE#870])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-lnl:          [PASS][158] -> [ABORT][159] ([Intel XE#6675]) +1 other test abort
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@kms_pm_backlight@fade-with-suspend.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          NOTRUN -> [FAIL][160] ([Intel XE#718])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-adlp:         NOTRUN -> [SKIP][161] ([Intel XE#1129])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-adlp:         NOTRUN -> [SKIP][162] ([Intel XE#2007])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_pm_dc@deep-pkgc.html
    - shard-bmg:          NOTRUN -> [SKIP][163] ([Intel XE#2505])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@kms_pm_dc@deep-pkgc.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][164] ([Intel XE#908])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html
    - shard-lnl:          NOTRUN -> [FAIL][165] ([Intel XE#2029])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][166] ([Intel XE#836])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html
    - shard-lnl:          NOTRUN -> [SKIP][167] ([Intel XE#1439] / [Intel XE#3141])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-bmg:          NOTRUN -> [SKIP][168] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][169] ([Intel XE#1406] / [Intel XE#1489]) +11 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
    - shard-lnl:          NOTRUN -> [SKIP][170] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +4 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][171] ([Intel XE#1406] / [Intel XE#4608]) +9 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][172] ([Intel XE#1406] / [Intel XE#2893]) +5 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][173] ([Intel XE#1406] / [Intel XE#1489]) +16 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
    - shard-bmg:          NOTRUN -> [SKIP][174] ([Intel XE#1406] / [Intel XE#1489]) +13 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-adlp:         NOTRUN -> [SKIP][175] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +20 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][176] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +17 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][177] ([Intel XE#1406]) +7 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_psr@fbc-psr2-dpms.html

  * igt@kms_psr@fbc-psr2-dpms@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][178] ([Intel XE#1406] / [Intel XE#4609])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_psr@fbc-psr2-dpms@edp-1.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][179] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +18 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_psr@psr2-suspend@edp-1:
    - shard-lnl:          NOTRUN -> [ABORT][180] ([Intel XE#2625] / [Intel XE#6675]) +5 other tests abort
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_psr@psr2-suspend@edp-1.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][181] ([Intel XE#1406] / [Intel XE#2414])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-adlp:         NOTRUN -> [SKIP][182] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#1406] / [Intel XE#2939])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          NOTRUN -> [SKIP][184] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][185] ([Intel XE#3414] / [Intel XE#3904])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [FAIL][186] ([Intel XE#4689])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][187] ([Intel XE#1127])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][188] ([Intel XE#1127])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-lnl:          NOTRUN -> [SKIP][189] ([Intel XE#1127])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-adlp:         NOTRUN -> [SKIP][190] ([Intel XE#3414])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][191] ([Intel XE#3414])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          NOTRUN -> [SKIP][192] ([Intel XE#2413])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][193] ([Intel XE#1435])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_sharpness_filter@filter-strength:
    - shard-adlp:         NOTRUN -> [SKIP][194] ([Intel XE#455]) +48 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@kms_sharpness_filter@filter-strength.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          NOTRUN -> [SKIP][195] ([Intel XE#6503]) +2 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][196] ([Intel XE#330])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
    - shard-lnl:          NOTRUN -> [SKIP][197] ([Intel XE#330])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html
    - shard-adlp:         NOTRUN -> [SKIP][198] ([Intel XE#330])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_tv_load_detect@load-detect.html
    - shard-bmg:          NOTRUN -> [SKIP][199] ([Intel XE#2450])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@cmrr:
    - shard-adlp:         NOTRUN -> [SKIP][200] ([Intel XE#2168])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_vrr@cmrr.html
    - shard-bmg:          NOTRUN -> [SKIP][201] ([Intel XE#2168])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@kms_vrr@cmrr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][202] ([Intel XE#2168])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][203] ([Intel XE#4459]) +1 other test fail
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     NOTRUN -> [SKIP][204] ([Intel XE#455]) +24 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@kms_vrr@flipline.html
    - shard-bmg:          NOTRUN -> [SKIP][205] ([Intel XE#1499])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@kms_vrr@flipline.html

  * igt@kms_vrr@negative-basic:
    - shard-lnl:          NOTRUN -> [SKIP][206] ([Intel XE#1499]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@kms_vrr@negative-basic.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     NOTRUN -> [SKIP][207] ([Intel XE#1091] / [Intel XE#2849])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
    - shard-lnl:          NOTRUN -> [SKIP][208] ([Intel XE#1091] / [Intel XE#2849])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@testdisplay:
    - shard-bmg:          NOTRUN -> [ABORT][209] ([Intel XE#6740]) +2 other tests abort
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@testdisplay.html

  * igt@xe_ccs@block-multicopy-compressed:
    - shard-adlp:         NOTRUN -> [SKIP][210] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_ccs@block-multicopy-compressed.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-adlp:         NOTRUN -> [SKIP][211] ([Intel XE#6599])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-adlp:         NOTRUN -> [SKIP][212] ([Intel XE#6360]) +2 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_compute_preempt@compute-preempt-many.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][213] ([Intel XE#6360]) +3 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_compute_preempt@compute-preempt-many-vram:
    - shard-adlp:         NOTRUN -> [SKIP][214] ([Intel XE#5191]) +1 other test skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_compute_preempt@compute-preempt-many-vram.html
    - shard-lnl:          NOTRUN -> [SKIP][215] ([Intel XE#5191])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@xe_compute_preempt@compute-preempt-many-vram.html

  * igt@xe_configfs@survivability-mode:
    - shard-lnl:          NOTRUN -> [SKIP][216] ([Intel XE#6010])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@xe_configfs@survivability-mode.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-adlp:         NOTRUN -> [SKIP][217] ([Intel XE#1123])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-adlp:         NOTRUN -> [SKIP][218] ([Intel XE#1126])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_create@create-big-vram:
    - shard-adlp:         NOTRUN -> [SKIP][219] ([Intel XE#1062])
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@xe_create@create-big-vram.html
    - shard-lnl:          NOTRUN -> [SKIP][220] ([Intel XE#1062])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_create@create-big-vram.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][221] ([Intel XE#2504])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eu_stall@blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][222] ([Intel XE#5626])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@xe_eu_stall@blocking-re-enable.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][223] ([Intel XE#5626])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_eu_stall@blocking-re-enable.html

  * igt@xe_eudebug@basic-client:
    - shard-lnl:          NOTRUN -> [SKIP][224] ([Intel XE#4837]) +12 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_eudebug@basic-client.html

  * igt@xe_eudebug@basic-vm-access-parameters:
    - shard-dg2-set2:     NOTRUN -> [SKIP][225] ([Intel XE#4837]) +10 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_eudebug@basic-vm-access-parameters.html

  * igt@xe_eudebug@discovery-empty:
    - shard-adlp:         NOTRUN -> [SKIP][226] ([Intel XE#4837] / [Intel XE#5565]) +14 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@xe_eudebug@discovery-empty.html
    - shard-bmg:          NOTRUN -> [SKIP][227] ([Intel XE#4837]) +11 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@xe_eudebug@discovery-empty.html

  * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
    - shard-dg2-set2:     NOTRUN -> [SKIP][228] ([Intel XE#4837] / [Intel XE#6665]) +6 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
    - shard-lnl:          NOTRUN -> [SKIP][229] ([Intel XE#4837] / [Intel XE#6665]) +7 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html

  * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
    - shard-bmg:          NOTRUN -> [SKIP][230] ([Intel XE#4837] / [Intel XE#6665]) +6 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html

  * igt@xe_eudebug_online@single-step-one:
    - shard-adlp:         NOTRUN -> [SKIP][231] ([Intel XE#4837] / [Intel XE#5565] / [Intel XE#6665]) +8 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@xe_eudebug_online@single-step-one.html

  * igt@xe_evict@evict-beng-large-cm:
    - shard-adlp:         NOTRUN -> [SKIP][232] ([Intel XE#261] / [Intel XE#5564]) +2 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_evict@evict-beng-large-cm.html

  * igt@xe_evict@evict-beng-mixed-threads-large:
    - shard-adlp:         NOTRUN -> [SKIP][233] ([Intel XE#261]) +9 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_evict@evict-beng-mixed-threads-large.html

  * igt@xe_evict@evict-beng-threads-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][234] ([Intel XE#688]) +15 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@xe_evict@evict-beng-threads-large-multi-vm.html

  * igt@xe_evict@evict-small-external-cm:
    - shard-adlp:         NOTRUN -> [SKIP][235] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +4 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@xe_evict@evict-small-external-cm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
    - shard-adlp:         NOTRUN -> [SKIP][236] ([Intel XE#688]) +4 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-adlp:         NOTRUN -> [SKIP][237] ([Intel XE#1392] / [Intel XE#5575]) +15 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][238] ([Intel XE#1392]) +9 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][239] ([Intel XE#2322]) +12 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
    - shard-adlp:         NOTRUN -> [SKIP][240] ([Intel XE#288] / [Intel XE#5561]) +39 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html

  * igt@xe_exec_fault_mode@once-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][241] ([Intel XE#288]) +28 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_exec_fault_mode@once-rebind-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-adlp:         NOTRUN -> [SKIP][242] ([Intel XE#2360]) +1 other test skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][243] ([Intel XE#2360])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html

  * igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][244] ([Intel XE#5007]) +3 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][245] ([Intel XE#5007]) +2 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge:
    - shard-dg2-set2:     NOTRUN -> [SKIP][246] ([Intel XE#4915]) +384 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html

  * igt@xe_exec_system_allocator@many-large-mmap-free-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][247] ([Intel XE#4943]) +27 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@xe_exec_system_allocator@many-large-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-malloc-prefetch-madvise:
    - shard-lnl:          NOTRUN -> [WARN][248] ([Intel XE#5786]) +8 other tests warn
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_exec_system_allocator@many-malloc-prefetch-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge:
    - shard-lnl:          NOTRUN -> [SKIP][249] ([Intel XE#4943]) +47 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html

  * igt@xe_exec_system_allocator@twice-large-new-race:
    - shard-adlp:         NOTRUN -> [SKIP][250] ([Intel XE#4915]) +533 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@xe_exec_system_allocator@twice-large-new-race.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     NOTRUN -> [ABORT][251] ([Intel XE#5466])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-lnl:          NOTRUN -> [ABORT][252] ([Intel XE#5466])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-adlp:         NOTRUN -> [ABORT][253] ([Intel XE#5466] / [Intel XE#5530])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-bmg:          NOTRUN -> [ABORT][254] ([Intel XE#5466] / [Intel XE#5530])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-lnl:          NOTRUN -> [ABORT][255] ([Intel XE#4757])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][256] ([Intel XE#2229])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_mmap@pci-membarrier:
    - shard-lnl:          NOTRUN -> [SKIP][257] ([Intel XE#5100]) +1 other test skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@xe_mmap@pci-membarrier.html

  * igt@xe_mmap@pci-membarrier-bad-object:
    - shard-adlp:         NOTRUN -> [SKIP][258] ([Intel XE#5100]) +2 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_mmap@pci-membarrier-bad-object.html

  * igt@xe_oa@buffer-fill:
    - shard-adlp:         NOTRUN -> [SKIP][259] ([Intel XE#3573]) +11 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@xe_oa@buffer-fill.html

  * igt@xe_oa@non-zero-reason-all:
    - shard-dg2-set2:     NOTRUN -> [SKIP][260] ([Intel XE#6377])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_oa@non-zero-reason-all.html

  * igt@xe_oa@whitelisted-registers-userspace-config:
    - shard-dg2-set2:     NOTRUN -> [SKIP][261] ([Intel XE#3573]) +7 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@xe_oa@whitelisted-registers-userspace-config.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][262] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@xe_pm@d3cold-basic-exec.html
    - shard-lnl:          NOTRUN -> [SKIP][263] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@d3cold-mocs:
    - shard-adlp:         NOTRUN -> [SKIP][264] ([Intel XE#2284])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_pm@d3cold-mocs.html
    - shard-bmg:          NOTRUN -> [SKIP][265] ([Intel XE#2284]) +2 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][266] ([Intel XE#5742])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_pm@d3hot-i2c.html
    - shard-lnl:          NOTRUN -> [SKIP][267] ([Intel XE#5742])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@xe_pm@d3hot-i2c.html
    - shard-adlp:         NOTRUN -> [SKIP][268] ([Intel XE#5742])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_pm@d3hot-i2c.html
    - shard-bmg:          NOTRUN -> [SKIP][269] ([Intel XE#5742])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-adlp:         [PASS][270] -> [ABORT][271] ([Intel XE#6675]) +1 other test abort
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-prefetch.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-adlp:         NOTRUN -> [SKIP][272] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@s3-d3hot-basic-exec:
    - shard-adlp:         NOTRUN -> [ABORT][273] ([Intel XE#6675]) +9 other tests abort
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@xe_pm@s3-d3hot-basic-exec.html

  * igt@xe_pm@s3-mocs:
    - shard-lnl:          NOTRUN -> [SKIP][274] ([Intel XE#584]) +3 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@xe_pm@s3-mocs.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-dg2-set2:     [PASS][275] -> [ABORT][276] ([Intel XE#6675]) +1 other test abort
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-dg2-set2:     NOTRUN -> [ABORT][277] ([Intel XE#6675]) +8 other tests abort
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-lnl:          NOTRUN -> [ABORT][278] ([Intel XE#6675]) +7 other tests abort
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html

  * igt@xe_pmu@all-fn-engine-activity-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][279] ([Intel XE#4650]) +1 other test skip
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_pmu@all-fn-engine-activity-load.html

  * igt@xe_pmu@engine-activity-suspend:
    - shard-bmg:          NOTRUN -> [ABORT][280] ([Intel XE#6675]) +9 other tests abort
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@xe_pmu@engine-activity-suspend.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-lnl:          NOTRUN -> [SKIP][281] ([Intel XE#4650]) +1 other test skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_pmu@gt-c6-idle:
    - shard-dg2-set2:     NOTRUN -> [FAIL][282] ([Intel XE#6366])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@xe_pmu@gt-c6-idle.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][283] ([Intel XE#4733]) +3 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][284] ([Intel XE#4733] / [Intel XE#5594]) +1 other test skip
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][285] ([Intel XE#4733])
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-bmg:          NOTRUN -> [SKIP][286] ([Intel XE#944]) +4 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
    - shard-adlp:         NOTRUN -> [SKIP][287] ([Intel XE#944]) +5 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-lnl:          NOTRUN -> [SKIP][288] ([Intel XE#944]) +4 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][289] ([Intel XE#944]) +4 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-adlp:         NOTRUN -> [SKIP][290] ([Intel XE#4814] / [Intel XE#5614])
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_render_copy@render-stress-0-copies.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][291] ([Intel XE#4814])
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@xe_render_copy@render-stress-0-copies.html

  * igt@xe_spin_batch@spin-mem-copy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][292] ([Intel XE#4821])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_spin_batch@spin-mem-copy.html
    - shard-adlp:         NOTRUN -> [SKIP][293] ([Intel XE#4821])
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@xe_spin_batch@spin-mem-copy.html

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-lnl:          NOTRUN -> [SKIP][294] ([Intel XE#4130]) +3 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_sriov_auto_provisioning@fair-allocation.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][295] ([Intel XE#4130]) +1 other test skip
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-dg2-set2:     NOTRUN -> [SKIP][296] ([Intel XE#3342])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_sriov_flr@flr-each-isolation.html
    - shard-lnl:          NOTRUN -> [SKIP][297] ([Intel XE#3342])
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-dg2-set2:     NOTRUN -> [SKIP][298] ([Intel XE#4273])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@xe_sriov_flr@flr-twice.html
    - shard-lnl:          NOTRUN -> [SKIP][299] ([Intel XE#4273])
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_sriov_vram@vf-access-beyond:
    - shard-adlp:         NOTRUN -> [SKIP][300] ([Intel XE#6376])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_sriov_vram@vf-access-beyond.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
    - shard-lnl:          [FAIL][301] ([Intel XE#6054] / [Intel XE#6676]) -> [PASS][302]
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][303] ([Intel XE#6054]) -> [PASS][304]
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x:
    - shard-lnl:          [FAIL][305] ([Intel XE#6676]) -> [PASS][306] +8 other tests pass
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [FAIL][307] ([Intel XE#3884]) -> [PASS][308] +3 other tests pass
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         [FAIL][309] ([Intel XE#1231] / [Intel XE#6699]) -> [PASS][310] +1 other test pass
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-0:
    - shard-adlp:         [FAIL][311] ([Intel XE#1874]) -> [PASS][312]
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][313] -> [PASS][314] +1 other test pass
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [FAIL][315] ([Intel XE#5099]) -> [PASS][316]
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-6/igt@kms_pm_rpm@i2c.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@kms_pm_rpm@i2c.html

  * igt@kms_setmode@basic:
    - shard-adlp:         [FAIL][317] ([Intel XE#6361]) -> [PASS][318] +2 other tests pass
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@kms_setmode@basic.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][319] ([Intel XE#6361]) -> [PASS][320] +3 other tests pass
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][321], [SKIP][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346]) ([Intel XE#378]) -> ([PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371])
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@xe_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-3/igt@xe_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-5/igt@xe_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-5/igt@xe_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-3/igt@xe_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_module_load@load.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-3/igt@xe_module_load@load.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-3/igt@xe_module_load@load.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@xe_module_load@load.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@xe_module_load@load.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-5/igt@xe_module_load@load.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-5/igt@xe_module_load@load.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_module_load@load.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@xe_module_load@load.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@xe_module_load@load.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@xe_module_load@load.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@xe_module_load@load.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@xe_module_load@load.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@xe_module_load@load.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@xe_module_load@load.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@xe_module_load@load.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_module_load@load.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-4/igt@xe_module_load@load.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@xe_module_load@load.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@xe_module_load@load.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-3/igt@xe_module_load@load.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_module_load@load.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_module_load@load.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_module_load@load.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_module_load@load.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@xe_module_load@load.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@xe_module_load@load.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@xe_module_load@load.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@xe_module_load@load.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@xe_module_load@load.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_module_load@load.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-5/igt@xe_module_load@load.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-1/igt@xe_module_load@load.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-8/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [SKIP][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397]) ([Intel XE#2457]) -> ([PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422])
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-5/igt@xe_module_load@load.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-7/igt@xe_module_load@load.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-5/igt@xe_module_load@load.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-7/igt@xe_module_load@load.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-2/igt@xe_module_load@load.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-3/igt@xe_module_load@load.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-3/igt@xe_module_load@load.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-3/igt@xe_module_load@load.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-3/igt@xe_module_load@load.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-6/igt@xe_module_load@load.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-6/igt@xe_module_load@load.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-4/igt@xe_module_load@load.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-4/igt@xe_module_load@load.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-5/igt@xe_module_load@load.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-6/igt@xe_module_load@load.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-4/igt@xe_module_load@load.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_module_load@load.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_module_load@load.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-4/igt@xe_module_load@load.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_module_load@load.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_module_load@load.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-8/igt@xe_module_load@load.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-8/igt@xe_module_load@load.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-8/igt@xe_module_load@load.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-2/igt@xe_module_load@load.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-5/igt@xe_module_load@load.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@xe_module_load@load.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@xe_module_load@load.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-6/igt@xe_module_load@load.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@xe_module_load@load.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@xe_module_load@load.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@xe_module_load@load.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@xe_module_load@load.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@xe_module_load@load.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@xe_module_load@load.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@xe_module_load@load.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-3/igt@xe_module_load@load.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@xe_module_load@load.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@xe_module_load@load.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-1/igt@xe_module_load@load.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@xe_module_load@load.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@xe_module_load@load.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@xe_module_load@load.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@xe_module_load@load.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@xe_module_load@load.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-4/igt@xe_module_load@load.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-6/igt@xe_module_load@load.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@xe_module_load@load.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-7/igt@xe_module_load@load.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-8/igt@xe_module_load@load.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-6/igt@xe_module_load@load.html
    - shard-adlp:         ([PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [SKIP][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [PASS][448]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [PASS][472], [PASS][473])
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_module_load@load.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_module_load@load.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-1/igt@xe_module_load@load.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-1/igt@xe_module_load@load.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-1/igt@xe_module_load@load.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@xe_module_load@load.html
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@xe_module_load@load.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@xe_module_load@load.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@xe_module_load@load.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-6/igt@xe_module_load@load.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@xe_module_load@load.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_module_load@load.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_module_load@load.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_module_load@load.html
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_module_load@load.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@xe_module_load@load.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_module_load@load.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@xe_module_load@load.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-6/igt@xe_module_load@load.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-6/igt@xe_module_load@load.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-6/igt@xe_module_load@load.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@xe_module_load@load.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_module_load@load.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_module_load@load.html
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_module_load@load.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_module_load@load.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_module_load@load.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@xe_module_load@load.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@xe_module_load@load.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@xe_module_load@load.html
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@xe_module_load@load.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_module_load@load.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@xe_module_load@load.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@xe_module_load@load.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@xe_module_load@load.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_module_load@load.html
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@xe_module_load@load.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_module_load@load.html
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@xe_module_load@load.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@xe_module_load@load.html
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@xe_module_load@load.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-8/igt@xe_module_load@load.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_module_load@load.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_module_load@load.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_module_load@load.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-1/igt@xe_module_load@load.html
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-2/igt@xe_module_load@load.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-9/igt@xe_module_load@load.html
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_module_load@load.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_module_load@load.html
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-3/igt@xe_module_load@load.html
    - shard-dg2-set2:     ([PASS][474], [PASS][475], [PASS][476], [PASS][477], [PASS][478], [PASS][479], [PASS][480], [PASS][481], [PASS][482], [PASS][483], [PASS][484], [PASS][485], [PASS][486], [PASS][487], [PASS][488], [PASS][489], [PASS][490], [PASS][491], [PASS][492], [PASS][493], [PASS][494], [PASS][495], [SKIP][496], [PASS][497], [PASS][498], [PASS][499]) ([Intel XE#378]) -> ([PASS][500], [PASS][501], [PASS][502], [PASS][503], [PASS][504], [PASS][505], [PASS][506], [PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511], [PASS][512], [PASS][513], [PASS][514], [PASS][515], [PASS][516], [PASS][517], [PASS][518], [PASS][519], [PASS][520], [PASS][521], [PASS][522], [PASS][523], [PASS][524])
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_module_load@load.html
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_module_load@load.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-434/igt@xe_module_load@load.html
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_module_load@load.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_module_load@load.html
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_module_load@load.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@xe_module_load@load.html
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@xe_module_load@load.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@xe_module_load@load.html
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-435/igt@xe_module_load@load.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-435/igt@xe_module_load@load.html
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-434/igt@xe_module_load@load.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-435/igt@xe_module_load@load.html
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-434/igt@xe_module_load@load.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-433/igt@xe_module_load@load.html
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-434/igt@xe_module_load@load.html
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-463/igt@xe_module_load@load.html
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-463/igt@xe_module_load@load.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-463/igt@xe_module_load@load.html
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-433/igt@xe_module_load@load.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_module_load@load.html
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-433/igt@xe_module_load@load.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@xe_module_load@load.html
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-433/igt@xe_module_load@load.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-435/igt@xe_module_load@load.html
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_module_load@load.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_module_load@load.html
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_module_load@load.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@xe_module_load@load.html
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@xe_module_load@load.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@xe_module_load@load.html
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@xe_module_load@load.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@xe_module_load@load.html
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@xe_module_load@load.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@xe_module_load@load.html
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_module_load@load.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@xe_module_load@load.html
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-463/igt@xe_module_load@load.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_module_load@load.html
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_module_load@load.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-432/igt@xe_module_load@load.html
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@xe_module_load@load.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@xe_module_load@load.html
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@xe_module_load@load.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@xe_module_load@load.html
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@xe_module_load@load.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-436/igt@xe_module_load@load.html
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-434/igt@xe_module_load@load.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@xe_module_load@load.html
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-435/igt@xe_module_load@load.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-464/igt@xe_module_load@load.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-adlp:         [ABORT][525] ([Intel XE#6675]) -> [PASS][526] +2 other tests pass
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  
#### Warnings ####

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-edp-1:
    - shard-lnl:          [FAIL][527] ([Intel XE#6676]) -> [ABORT][528] ([Intel XE#6675])
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-edp-1.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-edp-1.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][529] ([Intel XE#2426]) -> [SKIP][530] ([Intel XE#2509])
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable:
    - shard-bmg:          [SKIP][531] ([Intel XE#4837]) -> [SKIP][532] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-8/igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-bmg-5/igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-lnl:          [SKIP][533] ([Intel XE#4837]) -> [SKIP][534] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_eudebug_online@set-breakpoint.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-lnl-2/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
    - shard-adlp:         [SKIP][535] ([Intel XE#4837] / [Intel XE#5565]) -> [SKIP][536] ([Intel XE#4837] / [Intel XE#5565] / [Intel XE#6665]) +6 other tests skip
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-adlp-4/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
    - shard-dg2-set2:     [SKIP][537] ([Intel XE#4837]) -> [SKIP][538] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158002v4/shard-dg2-433/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html

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

  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5099
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
  [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
  [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
  [Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5825
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
  [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
  [Intel XE#6366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6366
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#6377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6377
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [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#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
  [Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
  [Intel XE#6699]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6699
  [Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6775
  [Intel XE#6778]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6778
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8653 -> IGT_8654
  * Linux: xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813 -> xe-pw-158002v4

  IGT_8653: c13e142a52b1654cbfb42b80985d6da656033ff4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8654: 38d9fde0432aa6f2bf6add062f1d4334ad467fbc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813: 2d16d4e1aef3cb501fcd37c8558dafeb579be813
  xe-pw-158002v4: 158002v4

== Logs ==

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

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

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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
                   ` (6 preceding siblings ...)
  2025-12-04 10:32 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-12-09 18:26 ` Ville Syrjälä
  2025-12-10  6:23   ` Hogander, Jouni
  2025-12-10 13:41   ` Hogander, Jouni
  7 siblings, 2 replies; 17+ messages in thread
From: Ville Syrjälä @ 2025-12-09 18:26 UTC (permalink / raw)
  To: Jouni Högander; +Cc: intel-gfx, intel-xe

On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> This patch set contains fixes for Selective Fetch async flip
> sequences. On async flip selective fetch is choosing full frame
> update. Also subsequent flip/update is still using full frame update
> to ensure plane with pending async flip is not taken in to selective
> fetch/update.
> 
> v4:
>   - rework if-else if to if-if
>   - added comment updated
>   - check crtc_state->async_flip_planes in
>     psr2_sel_fetch_pipe_state_supported
> v3:
>   - rebase
>   - fix old_crtc_state->pipe_srcsz_early_tpt
>   - fix using intel_atomic_get_new_crtc_state
> v2:
>   - check also crtc_state->async_flip_planes in
>     psr2_sel_fetch_plane_state_supported
> 
> Jouni Högander (3):
>   drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes for
>     PSR
>   drm/i915/psr: Perform full frame update on async flip
>   drm/i915/psr: Allow async flip when Selective Fetch enabled

Series is
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

When testing this I saw that we get stuck into full frame mode
all the time. But that seems to be a pre-existing issues caused
by the broken selective fetch area calculation code. I suppose
now that I have a laptop with a PSR2 panel I might have to dig out
that branch of mine where I attempted to rewrite the whoile thing
and figure out what was wrong with it...

> 
>  drivers/gpu/drm/i915/display/intel_display.c |  8 --------
>  drivers/gpu/drm/i915/display/intel_plane.c   | 10 ++++++----
>  drivers/gpu/drm/i915/display/intel_psr.c     |  3 ++-
>  3 files changed, 8 insertions(+), 13 deletions(-)
> 
> -- 
> 2.43.0

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-09 18:26 ` [PATCH v4 0/3] Selective Fetch and async flip Ville Syrjälä
@ 2025-12-10  6:23   ` Hogander, Jouni
  2025-12-10  6:31     ` Hogander, Jouni
  2025-12-10  6:42     ` Ville Syrjälä
  2025-12-10 13:41   ` Hogander, Jouni
  1 sibling, 2 replies; 17+ messages in thread
From: Hogander, Jouni @ 2025-12-10  6:23 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Tue, 2025-12-09 at 20:26 +0200, Ville Syrjälä wrote:
> On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> > This patch set contains fixes for Selective Fetch async flip
> > sequences. On async flip selective fetch is choosing full frame
> > update. Also subsequent flip/update is still using full frame
> > update
> > to ensure plane with pending async flip is not taken in to
> > selective
> > fetch/update.
> > 
> > v4:
> >   - rework if-else if to if-if
> >   - added comment updated
> >   - check crtc_state->async_flip_planes in
> >     psr2_sel_fetch_pipe_state_supported
> > v3:
> >   - rebase
> >   - fix old_crtc_state->pipe_srcsz_early_tpt
> >   - fix using intel_atomic_get_new_crtc_state
> > v2:
> >   - check also crtc_state->async_flip_planes in
> >     psr2_sel_fetch_plane_state_supported
> > 
> > Jouni Högander (3):
> >   drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes
> > for
> >     PSR
> >   drm/i915/psr: Perform full frame update on async flip
> >   drm/i915/psr: Allow async flip when Selective Fetch enabled
> 
> Series is
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> When testing this I saw that we get stuck into full frame mode
> all the time. But that seems to be a pre-existing issues caused
> by the broken selective fetch area calculation code. I suppose
> now that I have a laptop with a PSR2 panel I might have to dig out
> that branch of mine where I attempted to rewrite the whoile thing
> and figure out what was wrong with it...
> 

What is the SW setup you are using and what kind of testing you are
doing? Could it be related to frontbuffer tracking?

BR,

Jouni Högander


> > 
> >  drivers/gpu/drm/i915/display/intel_display.c |  8 --------
> >  drivers/gpu/drm/i915/display/intel_plane.c   | 10 ++++++----
> >  drivers/gpu/drm/i915/display/intel_psr.c     |  3 ++-
> >  3 files changed, 8 insertions(+), 13 deletions(-)
> > 
> > -- 
> > 2.43.0
> 


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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-10  6:23   ` Hogander, Jouni
@ 2025-12-10  6:31     ` Hogander, Jouni
  2025-12-10  6:46       ` Ville Syrjälä
  2025-12-10  6:42     ` Ville Syrjälä
  1 sibling, 1 reply; 17+ messages in thread
From: Hogander, Jouni @ 2025-12-10  6:31 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Wed, 2025-12-10 at 08:23 +0200, Hogander, Jouni wrote:
> On Tue, 2025-12-09 at 20:26 +0200, Ville Syrjälä wrote:
> > On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> > > This patch set contains fixes for Selective Fetch async flip
> > > sequences. On async flip selective fetch is choosing full frame
> > > update. Also subsequent flip/update is still using full frame
> > > update
> > > to ensure plane with pending async flip is not taken in to
> > > selective
> > > fetch/update.
> > > 
> > > v4:
> > >   - rework if-else if to if-if
> > >   - added comment updated
> > >   - check crtc_state->async_flip_planes in
> > >     psr2_sel_fetch_pipe_state_supported
> > > v3:
> > >   - rebase
> > >   - fix old_crtc_state->pipe_srcsz_early_tpt
> > >   - fix using intel_atomic_get_new_crtc_state
> > > v2:
> > >   - check also crtc_state->async_flip_planes in
> > >     psr2_sel_fetch_plane_state_supported
> > > 
> > > Jouni Högander (3):
> > >   drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes
> > > for
> > >     PSR
> > >   drm/i915/psr: Perform full frame update on async flip
> > >   drm/i915/psr: Allow async flip when Selective Fetch enabled
> > 
> > Series is
> > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > 
> > When testing this I saw that we get stuck into full frame mode
> > all the time. But that seems to be a pre-existing issues caused
> > by the broken selective fetch area calculation code. I suppose
> > now that I have a laptop with a PSR2 panel I might have to dig out
> > that branch of mine where I attempted to rewrite the whoile thing
> > and figure out what was wrong with it...
> > 
> 
> What is the SW setup you are using and what kind of testing you are
> doing? Could it be related to frontbuffer tracking?

Also what is the HW/platform you are using?

BR,

Jouni Högander

> BR,
> 
> Jouni Högander
> 
> 
> > > 
> > >  drivers/gpu/drm/i915/display/intel_display.c |  8 --------
> > >  drivers/gpu/drm/i915/display/intel_plane.c   | 10 ++++++----
> > >  drivers/gpu/drm/i915/display/intel_psr.c     |  3 ++-
> > >  3 files changed, 8 insertions(+), 13 deletions(-)
> > > 
> > > -- 
> > > 2.43.0
> > 
> 


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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-10  6:23   ` Hogander, Jouni
  2025-12-10  6:31     ` Hogander, Jouni
@ 2025-12-10  6:42     ` Ville Syrjälä
  2025-12-10  6:57       ` Hogander, Jouni
  2025-12-16 10:22       ` Hogander, Jouni
  1 sibling, 2 replies; 17+ messages in thread
From: Ville Syrjälä @ 2025-12-10  6:42 UTC (permalink / raw)
  To: Hogander, Jouni
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Wed, Dec 10, 2025 at 06:23:34AM +0000, Hogander, Jouni wrote:
> On Tue, 2025-12-09 at 20:26 +0200, Ville Syrjälä wrote:
> > On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> > > This patch set contains fixes for Selective Fetch async flip
> > > sequences. On async flip selective fetch is choosing full frame
> > > update. Also subsequent flip/update is still using full frame
> > > update
> > > to ensure plane with pending async flip is not taken in to
> > > selective
> > > fetch/update.
> > > 
> > > v4:
> > >   - rework if-else if to if-if
> > >   - added comment updated
> > >   - check crtc_state->async_flip_planes in
> > >     psr2_sel_fetch_pipe_state_supported
> > > v3:
> > >   - rebase
> > >   - fix old_crtc_state->pipe_srcsz_early_tpt
> > >   - fix using intel_atomic_get_new_crtc_state
> > > v2:
> > >   - check also crtc_state->async_flip_planes in
> > >     psr2_sel_fetch_plane_state_supported
> > > 
> > > Jouni Högander (3):
> > >   drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes
> > > for
> > >     PSR
> > >   drm/i915/psr: Perform full frame update on async flip
> > >   drm/i915/psr: Allow async flip when Selective Fetch enabled
> > 
> > Series is
> > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > 
> > When testing this I saw that we get stuck into full frame mode
> > all the time. But that seems to be a pre-existing issues caused
> > by the broken selective fetch area calculation code. I suppose
> > now that I have a laptop with a PSR2 panel I might have to dig out
> > that branch of mine where I attempted to rewrite the whoile thing
> > and figure out what was wrong with it...
> > 
> 
> What is the SW setup you are using and what kind of testing you are
> doing? Could it be related to frontbuffer tracking?

I just have Xorg running w/o a compositor and then running
'vblank_mode=0 glxgears -fullscreen'. The last tests were done
using mate/marco as the window manager, but I suppose it might be
reproducible w/o any window manager as well.

I was monitoring the full vs. partial update state by just polling
the PSR_MAN_TRACK_CTL (or whatever it's called) register. Might
actually be a decent idea to add something into the debufs status
file for that, given that the register layout is rather platform
specific.

I sprinkled a few debugs in the driver and it generally seemed to end
up in the 'if (crtc_state->psr2_su_area.y1 == -1) -> full_update'
case, which doesn't really surprise given that the code is very
confused about coordinate spaces.

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-10  6:31     ` Hogander, Jouni
@ 2025-12-10  6:46       ` Ville Syrjälä
  0 siblings, 0 replies; 17+ messages in thread
From: Ville Syrjälä @ 2025-12-10  6:46 UTC (permalink / raw)
  To: Hogander, Jouni
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Wed, Dec 10, 2025 at 06:31:02AM +0000, Hogander, Jouni wrote:
> On Wed, 2025-12-10 at 08:23 +0200, Hogander, Jouni wrote:
> > On Tue, 2025-12-09 at 20:26 +0200, Ville Syrjälä wrote:
> > > On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> > > > This patch set contains fixes for Selective Fetch async flip
> > > > sequences. On async flip selective fetch is choosing full frame
> > > > update. Also subsequent flip/update is still using full frame
> > > > update
> > > > to ensure plane with pending async flip is not taken in to
> > > > selective
> > > > fetch/update.
> > > > 
> > > > v4:
> > > >   - rework if-else if to if-if
> > > >   - added comment updated
> > > >   - check crtc_state->async_flip_planes in
> > > >     psr2_sel_fetch_pipe_state_supported
> > > > v3:
> > > >   - rebase
> > > >   - fix old_crtc_state->pipe_srcsz_early_tpt
> > > >   - fix using intel_atomic_get_new_crtc_state
> > > > v2:
> > > >   - check also crtc_state->async_flip_planes in
> > > >     psr2_sel_fetch_plane_state_supported
> > > > 
> > > > Jouni Högander (3):
> > > >   drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes
> > > > for
> > > >     PSR
> > > >   drm/i915/psr: Perform full frame update on async flip
> > > >   drm/i915/psr: Allow async flip when Selective Fetch enabled
> > > 
> > > Series is
> > > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > 
> > > When testing this I saw that we get stuck into full frame mode
> > > all the time. But that seems to be a pre-existing issues caused
> > > by the broken selective fetch area calculation code. I suppose
> > > now that I have a laptop with a PSR2 panel I might have to dig out
> > > that branch of mine where I attempted to rewrite the whoile thing
> > > and figure out what was wrong with it...
> > > 
> > 
> > What is the SW setup you are using and what kind of testing you are
> > doing? Could it be related to frontbuffer tracking?
> 
> Also what is the HW/platform you are using?

This was a LNL.

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-10  6:42     ` Ville Syrjälä
@ 2025-12-10  6:57       ` Hogander, Jouni
  2025-12-10  7:06         ` Ville Syrjälä
  2025-12-16 10:22       ` Hogander, Jouni
  1 sibling, 1 reply; 17+ messages in thread
From: Hogander, Jouni @ 2025-12-10  6:57 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Wed, 2025-12-10 at 08:42 +0200, Ville Syrjälä wrote:
> On Wed, Dec 10, 2025 at 06:23:34AM +0000, Hogander, Jouni wrote:
> > On Tue, 2025-12-09 at 20:26 +0200, Ville Syrjälä wrote:
> > > On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> > > > This patch set contains fixes for Selective Fetch async flip
> > > > sequences. On async flip selective fetch is choosing full frame
> > > > update. Also subsequent flip/update is still using full frame
> > > > update
> > > > to ensure plane with pending async flip is not taken in to
> > > > selective
> > > > fetch/update.
> > > > 
> > > > v4:
> > > >   - rework if-else if to if-if
> > > >   - added comment updated
> > > >   - check crtc_state->async_flip_planes in
> > > >     psr2_sel_fetch_pipe_state_supported
> > > > v3:
> > > >   - rebase
> > > >   - fix old_crtc_state->pipe_srcsz_early_tpt
> > > >   - fix using intel_atomic_get_new_crtc_state
> > > > v2:
> > > >   - check also crtc_state->async_flip_planes in
> > > >     psr2_sel_fetch_plane_state_supported
> > > > 
> > > > Jouni Högander (3):
> > > >   drm/i915/psr: Set plane id bit in crtc_state-
> > > > >async_flip_planes
> > > > for
> > > >     PSR
> > > >   drm/i915/psr: Perform full frame update on async flip
> > > >   drm/i915/psr: Allow async flip when Selective Fetch enabled
> > > 
> > > Series is
> > > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > 
> > > When testing this I saw that we get stuck into full frame mode
> > > all the time. But that seems to be a pre-existing issues caused
> > > by the broken selective fetch area calculation code. I suppose
> > > now that I have a laptop with a PSR2 panel I might have to dig
> > > out
> > > that branch of mine where I attempted to rewrite the whoile thing
> > > and figure out what was wrong with it...
> > > 
> > 
> > What is the SW setup you are using and what kind of testing you are
> > doing? Could it be related to frontbuffer tracking?
> 
> I just have Xorg running w/o a compositor and then running
> 'vblank_mode=0 glxgears -fullscreen'. The last tests were done
> using mate/marco as the window manager, but I suppose it might be
> reproducible w/o any window manager as well.
> 
> I was monitoring the full vs. partial update state by just polling
> the PSR_MAN_TRACK_CTL (or whatever it's called) register. Might
> actually be a decent idea to add something into the debufs status
> file for that, given that the register layout is rather platform
> specific.
> 
> I sprinkled a few debugs in the driver and it generally seemed to end
> up in the 'if (crtc_state->psr2_su_area.y1 == -1) -> full_update'
> case, which doesn't really surprise given that the code is very
> confused about coordinate spaces.

Thank you for the description. I will try to reproduce. What does that
vblank_mode=0?

BR,

Jouni Högander


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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-10  6:57       ` Hogander, Jouni
@ 2025-12-10  7:06         ` Ville Syrjälä
  0 siblings, 0 replies; 17+ messages in thread
From: Ville Syrjälä @ 2025-12-10  7:06 UTC (permalink / raw)
  To: Hogander, Jouni
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Wed, Dec 10, 2025 at 06:57:41AM +0000, Hogander, Jouni wrote:
> On Wed, 2025-12-10 at 08:42 +0200, Ville Syrjälä wrote:
> > On Wed, Dec 10, 2025 at 06:23:34AM +0000, Hogander, Jouni wrote:
> > > On Tue, 2025-12-09 at 20:26 +0200, Ville Syrjälä wrote:
> > > > On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> > > > > This patch set contains fixes for Selective Fetch async flip
> > > > > sequences. On async flip selective fetch is choosing full frame
> > > > > update. Also subsequent flip/update is still using full frame
> > > > > update
> > > > > to ensure plane with pending async flip is not taken in to
> > > > > selective
> > > > > fetch/update.
> > > > > 
> > > > > v4:
> > > > >   - rework if-else if to if-if
> > > > >   - added comment updated
> > > > >   - check crtc_state->async_flip_planes in
> > > > >     psr2_sel_fetch_pipe_state_supported
> > > > > v3:
> > > > >   - rebase
> > > > >   - fix old_crtc_state->pipe_srcsz_early_tpt
> > > > >   - fix using intel_atomic_get_new_crtc_state
> > > > > v2:
> > > > >   - check also crtc_state->async_flip_planes in
> > > > >     psr2_sel_fetch_plane_state_supported
> > > > > 
> > > > > Jouni Högander (3):
> > > > >   drm/i915/psr: Set plane id bit in crtc_state-
> > > > > >async_flip_planes
> > > > > for
> > > > >     PSR
> > > > >   drm/i915/psr: Perform full frame update on async flip
> > > > >   drm/i915/psr: Allow async flip when Selective Fetch enabled
> > > > 
> > > > Series is
> > > > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > > 
> > > > When testing this I saw that we get stuck into full frame mode
> > > > all the time. But that seems to be a pre-existing issues caused
> > > > by the broken selective fetch area calculation code. I suppose
> > > > now that I have a laptop with a PSR2 panel I might have to dig
> > > > out
> > > > that branch of mine where I attempted to rewrite the whoile thing
> > > > and figure out what was wrong with it...
> > > > 
> > > 
> > > What is the SW setup you are using and what kind of testing you are
> > > doing? Could it be related to frontbuffer tracking?
> > 
> > I just have Xorg running w/o a compositor and then running
> > 'vblank_mode=0 glxgears -fullscreen'. The last tests were done
> > using mate/marco as the window manager, but I suppose it might be
> > reproducible w/o any window manager as well.
> > 
> > I was monitoring the full vs. partial update state by just polling
> > the PSR_MAN_TRACK_CTL (or whatever it's called) register. Might
> > actually be a decent idea to add something into the debufs status
> > file for that, given that the register layout is rather platform
> > specific.
> > 
> > I sprinkled a few debugs in the driver and it generally seemed to end
> > up in the 'if (crtc_state->psr2_su_area.y1 == -1) -> full_update'
> > case, which doesn't really surprise given that the code is very
> > confused about coordinate spaces.
> 
> Thank you for the description. I will try to reproduce. What does that
> vblank_mode=0?

It forces vsync off regardless of what the application asks for.

I was going to point you at the Mesa environment variable docs, but
surprisingly vblank_mode doesn't appear to be documented there.

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-09 18:26 ` [PATCH v4 0/3] Selective Fetch and async flip Ville Syrjälä
  2025-12-10  6:23   ` Hogander, Jouni
@ 2025-12-10 13:41   ` Hogander, Jouni
  1 sibling, 0 replies; 17+ messages in thread
From: Hogander, Jouni @ 2025-12-10 13:41 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Tue, 2025-12-09 at 20:26 +0200, Ville Syrjälä wrote:
> On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> > This patch set contains fixes for Selective Fetch async flip
> > sequences. On async flip selective fetch is choosing full frame
> > update. Also subsequent flip/update is still using full frame
> > update
> > to ensure plane with pending async flip is not taken in to
> > selective
> > fetch/update.
> > 
> > v4:
> >   - rework if-else if to if-if
> >   - added comment updated
> >   - check crtc_state->async_flip_planes in
> >     psr2_sel_fetch_pipe_state_supported
> > v3:
> >   - rebase
> >   - fix old_crtc_state->pipe_srcsz_early_tpt
> >   - fix using intel_atomic_get_new_crtc_state
> > v2:
> >   - check also crtc_state->async_flip_planes in
> >     psr2_sel_fetch_plane_state_supported
> > 
> > Jouni Högander (3):
> >   drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes
> > for
> >     PSR
> >   drm/i915/psr: Perform full frame update on async flip
> >   drm/i915/psr: Allow async flip when Selective Fetch enabled
> 
> Series is
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Thank you Ville for your review. This set is now pushed to drm-intel-
next.

BR,

Jouni Högander

> 
> When testing this I saw that we get stuck into full frame mode
> all the time. But that seems to be a pre-existing issues caused
> by the broken selective fetch area calculation code. I suppose
> now that I have a laptop with a PSR2 panel I might have to dig out
> that branch of mine where I attempted to rewrite the whoile thing
> and figure out what was wrong with it...
> 
> > 
> >  drivers/gpu/drm/i915/display/intel_display.c |  8 --------
> >  drivers/gpu/drm/i915/display/intel_plane.c   | 10 ++++++----
> >  drivers/gpu/drm/i915/display/intel_psr.c     |  3 ++-
> >  3 files changed, 8 insertions(+), 13 deletions(-)
> > 
> > -- 
> > 2.43.0
> 


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

* Re: [PATCH v4 0/3] Selective Fetch and async flip
  2025-12-10  6:42     ` Ville Syrjälä
  2025-12-10  6:57       ` Hogander, Jouni
@ 2025-12-16 10:22       ` Hogander, Jouni
  1 sibling, 0 replies; 17+ messages in thread
From: Hogander, Jouni @ 2025-12-16 10:22 UTC (permalink / raw)
  To: ville.syrjala@linux.intel.com
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Wed, 2025-12-10 at 08:42 +0200, Ville Syrjälä wrote:
> On Wed, Dec 10, 2025 at 06:23:34AM +0000, Hogander, Jouni wrote:
> > On Tue, 2025-12-09 at 20:26 +0200, Ville Syrjälä wrote:
> > > On Thu, Dec 04, 2025 at 09:07:15AM +0200, Jouni Högander wrote:
> > > > This patch set contains fixes for Selective Fetch async flip
> > > > sequences. On async flip selective fetch is choosing full frame
> > > > update. Also subsequent flip/update is still using full frame
> > > > update
> > > > to ensure plane with pending async flip is not taken in to
> > > > selective
> > > > fetch/update.
> > > > 
> > > > v4:
> > > >   - rework if-else if to if-if
> > > >   - added comment updated
> > > >   - check crtc_state->async_flip_planes in
> > > >     psr2_sel_fetch_pipe_state_supported
> > > > v3:
> > > >   - rebase
> > > >   - fix old_crtc_state->pipe_srcsz_early_tpt
> > > >   - fix using intel_atomic_get_new_crtc_state
> > > > v2:
> > > >   - check also crtc_state->async_flip_planes in
> > > >     psr2_sel_fetch_plane_state_supported
> > > > 
> > > > Jouni Högander (3):
> > > >   drm/i915/psr: Set plane id bit in crtc_state-
> > > > >async_flip_planes
> > > > for
> > > >     PSR
> > > >   drm/i915/psr: Perform full frame update on async flip
> > > >   drm/i915/psr: Allow async flip when Selective Fetch enabled
> > > 
> > > Series is
> > > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > 
> > > When testing this I saw that we get stuck into full frame mode
> > > all the time. But that seems to be a pre-existing issues caused
> > > by the broken selective fetch area calculation code. I suppose
> > > now that I have a laptop with a PSR2 panel I might have to dig
> > > out
> > > that branch of mine where I attempted to rewrite the whoile thing
> > > and figure out what was wrong with it...
> > > 
> > 
> > What is the SW setup you are using and what kind of testing you are
> > doing? Could it be related to frontbuffer tracking?
> 
> I just have Xorg running w/o a compositor and then running
> 'vblank_mode=0 glxgears -fullscreen'. The last tests were done
> using mate/marco as the window manager, but I suppose it might be
> reproducible w/o any window manager as well.
> 
> I was monitoring the full vs. partial update state by just polling
> the PSR_MAN_TRACK_CTL (or whatever it's called) register. Might
> actually be a decent idea to add something into the debufs status
> file for that, given that the register layout is rather platform
> specific.

I instrumented psr2_man_trk_ctl_calc to dump out if it ends up to full
frame update or selective update. I couldn't see it being stucked to
full update. "vblank_mode=0 glxgears -fullscreen" is continuously
triggering full frame updates. When it exits there is one selective
update.

Please note that PSR2_MAN_TRK_CTL is left as it is until next
psr2_man_trk_ctl_calc/intel_psr2_program_trans_man_trk_ctl. I.e. if
selection logic is once ending up to full frame update and after that
there are only frontbuffer flushes -> PSR2_MAN_TRK_CTL will stick into
"full frame update". Frontbuffer flushes are just
deactivating/activating PSR2 without touching PSR2_MAN_TRK_CTL.

BR,
Jouni Högander

> 
> I sprinkled a few debugs in the driver and it generally seemed to end
> up in the 'if (crtc_state->psr2_su_area.y1 == -1) -> full_update'
> case, which doesn't really surprise given that the code is very
> confused about coordinate spaces.
> 


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

end of thread, other threads:[~2025-12-16 10:22 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-04  7:07 [PATCH v4 0/3] Selective Fetch and async flip Jouni Högander
2025-12-04  7:07 ` [PATCH v4 1/3] drm/i915/psr: Set plane id bit in crtc_state->async_flip_planes for PSR Jouni Högander
2025-12-04  7:07 ` [PATCH v4 2/3] drm/i915/psr: Perform full frame update on async flip Jouni Högander
2025-12-04  7:07 ` [PATCH v4 3/3] drm/i915/psr: Allow async flip when Selective Fetch enabled Jouni Högander
2025-12-04  7:58 ` ✓ CI.KUnit: success for Selective Fetch and async flip (rev4) Patchwork
2025-12-04  8:13 ` ✗ CI.checksparse: warning " Patchwork
2025-12-04  9:00 ` ✓ Xe.CI.BAT: success " Patchwork
2025-12-04 10:32 ` ✓ Xe.CI.Full: " Patchwork
2025-12-09 18:26 ` [PATCH v4 0/3] Selective Fetch and async flip Ville Syrjälä
2025-12-10  6:23   ` Hogander, Jouni
2025-12-10  6:31     ` Hogander, Jouni
2025-12-10  6:46       ` Ville Syrjälä
2025-12-10  6:42     ` Ville Syrjälä
2025-12-10  6:57       ` Hogander, Jouni
2025-12-10  7:06         ` Ville Syrjälä
2025-12-16 10:22       ` Hogander, Jouni
2025-12-10 13:41   ` Hogander, Jouni

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