Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices
@ 2026-04-24  9:09 Ankit Nautiyal
  2026-04-24  9:09 ` [PATCH 1/3] drm/i915/vrr: Avoid vrr for PCON with HDMI2.1 sink Ankit Nautiyal
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:09 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal

This is a subset of patches separated from the series at
https://patchwork.freedesktop.org/series/164512/ for merging.

Currently VRR is not supported for DP branch devices, but AS SDP
handling don't fully reflect that. This small series fixes that.

Ankit Nautiyal (3):
  drm/i915/vrr: Avoid vrr for PCON with HDMI2.1 sink
  drm/i915/dp: Add a helper to decide if AS SDP can be used
  drm/i915/dp: Skip AS SDP for DP branch devices

 drivers/gpu/drm/i915/display/intel_dp.c  | 22 +++++++++++++++++++++-
 drivers/gpu/drm/i915/display/intel_vrr.c | 10 ++++++++++
 2 files changed, 31 insertions(+), 1 deletion(-)

-- 
2.45.2


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

* [PATCH 1/3] drm/i915/vrr: Avoid vrr for PCON with HDMI2.1 sink
  2026-04-24  9:09 [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices Ankit Nautiyal
@ 2026-04-24  9:09 ` Ankit Nautiyal
  2026-04-24  9:09 ` [PATCH 2/3] drm/i915/dp: Add a helper to decide if AS SDP can be used Ankit Nautiyal
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:09 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal

Currently we do not support VRR with HDMI so skip vrr compute
config step for all DP branch devices.

v2: Restrict VRR on all DP branch devices instead for checking only for
    HDMI. (Ville)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_vrr.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index fae1186a90b2..1b09992ce9fd 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -55,6 +55,16 @@ bool intel_vrr_is_capable(struct intel_connector *connector)
 		if (connector->mst.dp)
 			return false;
 		intel_dp = intel_attached_dp(connector);
+		/*
+		 * Among non-MST DP branch devices, only an HDMI 2.1 sink connected
+		 * via a PCON could support VRR. However, supporting VRR through a
+		 * PCON requires non-trivial changes that are not implemented yet.
+		 * Until that support exists, avoid VRR on all DP branch devices.
+		 *
+		 * TODO: Add support for VRR for DP->HDMI 2.1 PCON.
+		 */
+		if (drm_dp_is_branch(intel_dp->dpcd))
+			return false;
 
 		if (!drm_dp_sink_can_do_video_without_timing_msa(intel_dp->dpcd))
 			return false;
-- 
2.45.2


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

* [PATCH 2/3] drm/i915/dp: Add a helper to decide if AS SDP can be used
  2026-04-24  9:09 [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices Ankit Nautiyal
  2026-04-24  9:09 ` [PATCH 1/3] drm/i915/vrr: Avoid vrr for PCON with HDMI2.1 sink Ankit Nautiyal
@ 2026-04-24  9:09 ` Ankit Nautiyal
  2026-04-24  9:09 ` [PATCH 3/3] drm/i915/dp: Skip AS SDP for DP branch devices Ankit Nautiyal
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:09 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal

Add a helper that determines whether AS SDP can be used for the
current DP configuration. For now this is true only when the sink
supports AS SDP and VRR is enabled, but more conditions may be added
later.

v2:
 - Rename to intel_dp_needs_as_sdp(). (Ville)
 - Add a #FIXME documenting non-atomic of DP SDP updates. (Ville)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 35b8fb5740aa..a08e32c912a0 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3168,6 +3168,15 @@ static void intel_dp_compute_vsc_colorimetry(const struct intel_crtc_state *crtc
 	vsc->content_type = DP_CONTENT_TYPE_NOT_DEFINED;
 }
 
+static bool intel_dp_needs_as_sdp(struct intel_dp *intel_dp,
+				  struct intel_crtc_state *crtc_state)
+{
+	if (!intel_dp->as_sdp_supported)
+		return false;
+
+	return crtc_state->vrr.enable;
+}
+
 static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
 				    struct intel_crtc_state *crtc_state)
 {
@@ -3175,7 +3184,12 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
 	const struct drm_display_mode *adjusted_mode =
 		&crtc_state->hw.adjusted_mode;
 
-	if (!crtc_state->vrr.enable || !intel_dp->as_sdp_supported)
+	/*
+	 * #FIXME: SDP/infoframe updates aren’t truly atomic, and with the new
+	 * cdclk->tc clock crossing we may transiently send a corrupted packet
+	 * if the update lands mid‑transmission.
+	 */
+	if (!intel_dp_needs_as_sdp(intel_dp, crtc_state))
 		return;
 
 	crtc_state->infoframes.enable |= intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC);
-- 
2.45.2


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

* [PATCH 3/3] drm/i915/dp: Skip AS SDP for DP branch devices
  2026-04-24  9:09 [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices Ankit Nautiyal
  2026-04-24  9:09 ` [PATCH 1/3] drm/i915/vrr: Avoid vrr for PCON with HDMI2.1 sink Ankit Nautiyal
  2026-04-24  9:09 ` [PATCH 2/3] drm/i915/dp: Add a helper to decide if AS SDP can be used Ankit Nautiyal
@ 2026-04-24  9:09 ` Ankit Nautiyal
  2026-04-24  9:31 ` ✓ CI.KUnit: success for Fix AS SDP and VRR handling " Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:09 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal

Currently, VRR is not implmented for DP branch devices.
So skip sending AS SDP for them.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index a08e32c912a0..2e9db6f570c5 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3174,6 +3174,12 @@ static bool intel_dp_needs_as_sdp(struct intel_dp *intel_dp,
 	if (!intel_dp->as_sdp_supported)
 		return false;
 
+	/*
+	 * #TODO Implement AS SDP for DP branch device.
+	 */
+	if (drm_dp_is_branch(intel_dp->dpcd))
+		return false;
+
 	return crtc_state->vrr.enable;
 }
 
-- 
2.45.2


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

* ✓ CI.KUnit: success for Fix AS SDP and VRR handling for DP branch devices
  2026-04-24  9:09 [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices Ankit Nautiyal
                   ` (2 preceding siblings ...)
  2026-04-24  9:09 ` [PATCH 3/3] drm/i915/dp: Skip AS SDP for DP branch devices Ankit Nautiyal
@ 2026-04-24  9:31 ` Patchwork
  2026-04-24 10:21 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-24  9:31 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Fix AS SDP and VRR handling for DP branch devices
URL   : https://patchwork.freedesktop.org/series/165415/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for Fix AS SDP and VRR handling for DP branch devices
  2026-04-24  9:09 [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices Ankit Nautiyal
                   ` (3 preceding siblings ...)
  2026-04-24  9:31 ` ✓ CI.KUnit: success for Fix AS SDP and VRR handling " Patchwork
@ 2026-04-24 10:21 ` Patchwork
  2026-04-24 11:23 ` ✗ Xe.CI.FULL: failure " Patchwork
  2026-04-28 11:07 ` [PATCH 0/3] " Nautiyal, Ankit K
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-24 10:21 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

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

== Series Details ==

Series: Fix AS SDP and VRR handling for DP branch devices
URL   : https://patchwork.freedesktop.org/series/165415/
State : success

== Summary ==

CI Bug Log - changes from xe-4931-5419b04d9030e3c4138e51331169ef80441cc908_BAT -> xe-pw-165415v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Additional (1): bat-adlp-7 
  Missing    (1): bat-bmg-3 

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

  Here are the changes found in xe-pw-165415v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_dsc@dsc-basic:
    - bat-adlp-7:         NOTRUN -> [SKIP][1] ([Intel XE#2244] / [Intel XE#455])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-flip-vs-dpms:
    - bat-adlp-7:         NOTRUN -> [DMESG-WARN][2] ([Intel XE#7483]) +12 other tests dmesg-warn
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html

  * igt@xe_evict@evict-beng-small:
    - bat-adlp-7:         NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_evict@evict-beng-small.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - bat-adlp-7:         NOTRUN -> [SKIP][4] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_balancer@twice-virtual-userptr-invalidate:
    - bat-adlp-7:         NOTRUN -> [SKIP][5] ([Intel XE#7482]) +17 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_exec_balancer@twice-virtual-userptr-invalidate.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
    - bat-adlp-7:         NOTRUN -> [SKIP][6] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - bat-adlp-7:         NOTRUN -> [SKIP][7] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-adlp-7:         NOTRUN -> [SKIP][8] ([Intel XE#2229] / [Intel XE#5488])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@vram:
    - bat-adlp-7:         NOTRUN -> [SKIP][9] ([Intel XE#1008] / [Intel XE#5591])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xe2:
    - bat-adlp-7:         NOTRUN -> [SKIP][10] ([Intel XE#977])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-adlp-7:         NOTRUN -> [SKIP][11] ([Intel XE#2838] / [Intel XE#979])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-adlp-7:         NOTRUN -> [SKIP][12] ([Intel XE#979])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html

  
  [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * Linux: xe-4931-5419b04d9030e3c4138e51331169ef80441cc908 -> xe-pw-165415v1

  IGT_8872: e70db143b7bafe09bdea4d33188cb10d2070d0e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4931-5419b04d9030e3c4138e51331169ef80441cc908: 5419b04d9030e3c4138e51331169ef80441cc908
  xe-pw-165415v1: 165415v1

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for Fix AS SDP and VRR handling for DP branch devices
  2026-04-24  9:09 [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices Ankit Nautiyal
                   ` (4 preceding siblings ...)
  2026-04-24 10:21 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-24 11:23 ` Patchwork
  2026-04-28 11:07 ` [PATCH 0/3] " Nautiyal, Ankit K
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-24 11:23 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

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

== Series Details ==

Series: Fix AS SDP and VRR handling for DP branch devices
URL   : https://patchwork.freedesktop.org/series/165415/
State : failure

== Summary ==

CI Bug Log - changes from xe-4931-5419b04d9030e3c4138e51331169ef80441cc908_FULL -> xe-pw-165415v1_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-165415v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_compute@compute-square-userenv:
    - shard-bmg:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_compute@compute-square-userenv.html

  * igt@xe_compute@compute-square-userenv-iosvm:
    - shard-bmg:          [PASS][2] -> [FAIL][3] +2 other tests fail
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@xe_compute@compute-square-userenv-iosvm.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_compute@compute-square-userenv-iosvm.html

  * igt@xe_exec_balancer@many-execqueues-virtual-userptr:
    - shard-bmg:          [PASS][4] -> [SKIP][5] +21 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@xe_exec_balancer@many-execqueues-virtual-userptr.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_exec_balancer@many-execqueues-virtual-userptr.html

  * igt@xe_exec_balancer@once-cm-virtual-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][6] +10 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_exec_balancer@once-cm-virtual-userptr-invalidate-race.html

  
#### Warnings ####

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          [SKIP][7] ([Intel XE#2724] / [Intel XE#7449]) -> [SKIP][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_cdclk@plane-scaling.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_cdclk@plane-scaling.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          [SKIP][9] ([Intel XE#4090] / [Intel XE#7443]) -> [SKIP][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@xe_evict@evict-small-external-multi-queue-cm:
    - shard-bmg:          [SKIP][11] ([Intel XE#7140]) -> [SKIP][12] +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@xe_evict@evict-small-external-multi-queue-cm.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_evict@evict-small-external-multi-queue-cm.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-bmg:          [SKIP][13] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) -> [SKIP][14]
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_oa@oa-tlb-invalidate.html

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

  Here are the changes found in xe-pw-165415v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@read:
    - shard-bmg:          [PASS][15] -> [SKIP][16] ([Intel XE#2134])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@fbdev@read.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@fbdev@read.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2233])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_atomic@plane-invalid-params:
    - shard-bmg:          [PASS][18] -> [SKIP][19] ([Intel XE#7825]) +29 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_atomic@plane-invalid-params.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_atomic@plane-invalid-params.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2327])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#1124]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#610] / [Intel XE#7387])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#1124])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#2887])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-lnl-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2652]) +7 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#3432])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2887]) +6 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2252]) +4 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html

  * igt@kms_color@ctm-0-50:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#3297])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_color@ctm-0-50.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#6969]) +10 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#6969] / [Intel XE#7006])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2390] / [Intel XE#6974])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][34] ([Intel XE#6707] / [Intel XE#7439])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2321] / [Intel XE#7355])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2320])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [PASS][37] -> [SKIP][38] ([Intel XE#2291] / [Intel XE#7343])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#4210] / [Intel XE#7467])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2372] / [Intel XE#7359])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_feature_discovery@chamelium.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3:
    - shard-bmg:          [PASS][41] -> [FAIL][42] ([Intel XE#7705]) +3 other tests fail
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3:
    - shard-bmg:          [PASS][43] -> [FAIL][44] ([Intel XE#3149] / [Intel XE#7705]) +1 other test fail
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [PASS][45] -> [SKIP][46] ([Intel XE#2316]) +4 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2316]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@blocking-absolute-wf_vblank:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2482])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_flip@blocking-absolute-wf_vblank.html

  * igt@kms_flip@bo-too-big:
    - shard-bmg:          [PASS][49] -> [SKIP][50] ([Intel XE#2482]) +6 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_flip@bo-too-big.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_flip@bo-too-big.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#7178] / [Intel XE#7349])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-bmg:          [PASS][52] -> [SKIP][53] ([Intel XE#7178]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#7178])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +6 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#656]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#4141]) +5 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#6314]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2311]) +16 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#7061] / [Intel XE#7356])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2313]) +10 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2350] / [Intel XE#7503])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2548] / [Intel XE#6314]) +7 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#7061] / [Intel XE#7356])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html

  * igt@kms_invalid_mode@bad-vsync-end:
    - shard-bmg:          [PASS][66] -> [SKIP][67] ([Intel XE#2568])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_invalid_mode@bad-vsync-end.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_invalid_mode@bad-vsync-end.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#4298] / [Intel XE#5873])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#6911] / [Intel XE#7378])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#6901])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#7591])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
    - shard-bmg:          [PASS][73] -> [SKIP][74] ([Intel XE#7283])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#7283]) +2 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane@planar-pixel-format-settings:
    - shard-bmg:          [PASS][76] -> [SKIP][77] ([Intel XE#7780])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-2/igt@kms_plane@planar-pixel-format-settings.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_plane@planar-pixel-format-settings.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-bmg:          [PASS][78] -> [SKIP][79] ([Intel XE#7111])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#5021] / [Intel XE#7377])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#2763] / [Intel XE#6886]) +14 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
    - shard-bmg:          [PASS][82] -> [SKIP][83] ([Intel XE#2763] / [Intel XE#6886]) +14 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#7376] / [Intel XE#870])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_properties@colorop-properties-atomic:
    - shard-bmg:          [PASS][87] -> [SKIP][88] ([Intel XE#7089])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_properties@colorop-properties-atomic.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_properties@colorop-properties-atomic.html

  * igt@kms_properties@crtc-properties-atomic:
    - shard-bmg:          [PASS][89] -> [SKIP][90] ([Intel XE#7112])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-2/igt@kms_properties@crtc-properties-atomic.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_properties@crtc-properties-atomic.html

  * igt@kms_properties@plane-properties-atomic:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#7112])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_properties@plane-properties-atomic.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#1489]) +6 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2387] / [Intel XE#7429])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_psr@fbc-psr2-primary-page-flip.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#3904] / [Intel XE#7342])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#1435])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][97] -> [SKIP][98] ([Intel XE#1435])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sharpness_filter@filter-formats:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#6503]) +3 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_sharpness_filter@filter-formats.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#7825]) +20 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#1499]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@xe_debugfs@check-gt-reg-sr@gt0:
    - shard-bmg:          NOTRUN -> [FAIL][102] ([Intel XE#7706]) +1 other test fail
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_debugfs@check-gt-reg-sr@gt0.html

  * igt@xe_eudebug@read-metadata:
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#7636]) +2 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-lnl-4/igt@xe_eudebug@read-metadata.html

  * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#7636]) +11 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html

  * igt@xe_evict@evict-beng-mixed-threads-small:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-lnl-4/igt@xe_evict@evict-beng-mixed-threads-small.html

  * igt@xe_evict@evict-cm-threads-small-multi-queue:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#7140])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_evict@evict-cm-threads-small-multi-queue.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][107] -> [INCOMPLETE][108] ([Intel XE#6321])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind:
    - shard-bmg:          [PASS][110] -> [SKIP][111] ([Intel XE#7826]) +14 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#7826]) +7 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-prefetch.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#7136]) +4 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#7136]) +1 other test skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-lnl-4/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
    - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#6874]) +26 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#6874]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-lnl-4/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-file-mlock-nomemset:
    - shard-bmg:          [PASS][117] -> [SKIP][118] ([Intel XE#7824]) +166 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@xe_exec_system_allocator@many-execqueues-mmap-file-mlock-nomemset.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_exec_system_allocator@many-execqueues-mmap-file-mlock-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc-madvise:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#7824]) +66 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc-madvise.html

  * igt@xe_exec_threads@threads-multi-queue-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][120] ([Intel XE#7138]) +7 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-rebind.html

  * igt@xe_media_fill@media-fill:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@xe_media_fill@media-fill.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146]) -> ([PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [SKIP][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172]) ([Intel XE#2457] / [Intel XE#7405])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@xe_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-5/igt@xe_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-7/igt@xe_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-8/igt@xe_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@xe_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@xe_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@xe_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-5/igt@xe_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-7/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-2/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-2/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-3/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-8/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-3/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-3/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-8/igt@xe_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-5/igt@xe_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-2/igt@xe_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-8/igt@xe_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@xe_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@xe_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@xe_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-2/igt@xe_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@xe_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@xe_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-5/igt@xe_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@xe_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-5/igt@xe_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-latency-copy-basic:
    - shard-bmg:          NOTRUN -> [SKIP][173] ([Intel XE#6964]) +1 other test skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html

  * igt@xe_page_reclaim@prl-max-entries:
    - shard-bmg:          NOTRUN -> [SKIP][174] ([Intel XE#7793]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@xe_page_reclaim@prl-max-entries.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-bmg:          NOTRUN -> [SKIP][175] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][176] ([Intel XE#4733] / [Intel XE#7417])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#944])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_survivability@runtime-survivability:
    - shard-bmg:          [PASS][178] -> [DMESG-WARN][179] ([Intel XE#6627] / [Intel XE#7419])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-3/igt@xe_survivability@runtime-survivability.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-3/igt@xe_survivability@runtime-survivability.html

  
#### Possible fixes ####

  * igt@fbdev@nullptr:
    - shard-bmg:          [SKIP][180] ([Intel XE#2134]) -> [PASS][181]
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@fbdev@nullptr.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@fbdev@nullptr.html

  * igt@kms_big_fb@linear-16bpp-rotate-180:
    - shard-bmg:          [SKIP][182] ([Intel XE#7825]) -> [PASS][183] +58 other tests pass
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_big_fb@linear-16bpp-rotate-180.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html

  * igt@kms_color@ctm-blue-to-red:
    - shard-bmg:          [SKIP][184] ([Intel XE#3297]) -> [PASS][185] +2 other tests pass
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_color@ctm-blue-to-red.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_color@ctm-blue-to-red.html

  * igt@kms_color_pipeline@plane-lut1d-lut1d:
    - shard-bmg:          [SKIP][186] ([Intel XE#7006]) -> [PASS][187]
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_color_pipeline@plane-lut1d-lut1d.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_color_pipeline@plane-lut1d-lut1d.html

  * igt@kms_cursor_crc@cursor-offscreen-128x128:
    - shard-bmg:          [SKIP][188] ([Intel XE#2320]) -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x128.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-128x128.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [SKIP][190] ([Intel XE#2291]) -> [PASS][191]
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [FAIL][192] ([Intel XE#3149] / [Intel XE#5408] / [Intel XE#6266]) -> [PASS][193] +1 other test pass
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [SKIP][194] ([Intel XE#2316]) -> [PASS][195] +5 other tests pass
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_flip@2x-nonexisting-fb.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@busy-flip:
    - shard-bmg:          [SKIP][196] ([Intel XE#2482]) -> [PASS][197] +4 other tests pass
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_flip@busy-flip.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_flip@busy-flip.html

  * igt@kms_flip@dpms-vs-vblank-race:
    - shard-bmg:          [FAIL][198] ([Intel XE#6266]) -> [PASS][199] +1 other test pass
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@kms_flip@dpms-vs-vblank-race.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_flip@dpms-vs-vblank-race.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2:
    - shard-bmg:          [FAIL][200] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][201] +7 other tests pass
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2.html

  * igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][202] ([Intel XE#4882]) -> [PASS][203]
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
    - shard-bmg:          [SKIP][204] ([Intel XE#7178]) -> [PASS][205]
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-bmg:          [SKIP][206] ([Intel XE#2380]) -> [PASS][207] +1 other test pass
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt:
    - shard-bmg:          [SKIP][208] ([Intel XE#2548] / [Intel XE#6314]) -> [PASS][209]
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html

  * igt@kms_invalid_mode@bad-vsync-start:
    - shard-bmg:          [SKIP][210] ([Intel XE#2568]) -> [PASS][211]
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_invalid_mode@bad-vsync-start.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_invalid_mode@bad-vsync-start.html

  * igt@kms_plane@plane-position-covered:
    - shard-bmg:          [SKIP][212] ([Intel XE#7111]) -> [PASS][213]
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_plane@plane-position-covered.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_plane@plane-position-covered.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-bmg:          [SKIP][214] ([Intel XE#7082]) -> [PASS][215] +1 other test pass
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_plane_alpha_blend@alpha-basic.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-bmg:          [SKIP][216] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][217]
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_plane_scaling@intel-max-src-size.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
    - shard-bmg:          [SKIP][218] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][219] +14 other tests pass
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-bmg:          [SKIP][220] ([Intel XE#1131] / [Intel XE#3957]) -> [PASS][221]
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_pm_dc@dc5-dpms-negative.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_pm_dc@dc5-dpms-negative.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-bmg:          [FAIL][222] ([Intel XE#7340]) -> [PASS][223]
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_pm_dc@dc6-dpms.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-bmg:          [SKIP][224] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) -> [PASS][225]
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_pm_rpm@dpms-non-lpsp.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@legacy-planes-dpms:
    - shard-bmg:          [SKIP][226] ([Intel XE#4886]) -> [PASS][227]
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_pm_rpm@legacy-planes-dpms.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_pm_rpm@legacy-planes-dpms.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-bmg:          [INCOMPLETE][228] -> [PASS][229]
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-8/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-8/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_setmode@basic:
    - shard-bmg:          [SKIP][230] ([Intel XE#1435]) -> [PASS][231]
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_setmode@basic.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_setmode@basic.html

  * igt@xe_eu_stall@invalid-event-report-count:
    - shard-bmg:          [SKIP][232] ([Intel XE#6568]) -> [PASS][233]
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_eu_stall@invalid-event-report-count.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_eu_stall@invalid-event-report-count.html

  * igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
    - shard-bmg:          [SKIP][234] -> [PASS][235] +42 other tests pass
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html

  * igt@xe_exec_compute_mode@many-preempt-fence-early:
    - shard-bmg:          [DMESG-FAIL][236] -> [PASS][237]
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_exec_compute_mode@many-preempt-fence-early.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_exec_compute_mode@many-preempt-fence-early.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate:
    - shard-bmg:          [SKIP][238] ([Intel XE#7826]) -> [PASS][239] +24 other tests pass
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_exec_fault_mode@twice-userptr-invalidate.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@xe_exec_fault_mode@twice-userptr-invalidate.html

  * igt@xe_exec_sip@invalidinstr-walker-enabled:
    - shard-bmg:          [FAIL][240] -> [PASS][241] +4 other tests pass
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_exec_sip@invalidinstr-walker-enabled.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_exec_sip@invalidinstr-walker-enabled.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race:
    - shard-bmg:          [SKIP][242] ([Intel XE#7824]) -> [PASS][243] +309 other tests pass
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html

  * igt@xe_mmap@pci-membarrier:
    - shard-bmg:          [SKIP][244] ([Intel XE#5100]) -> [PASS][245] +2 other tests pass
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_mmap@pci-membarrier.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_mmap@pci-membarrier.html

  * igt@xe_pat@bo-comp-disable-bind:
    - shard-bmg:          [SKIP][246] ([Intel XE#6775] / [Intel XE#7590]) -> [PASS][247]
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_pat@bo-comp-disable-bind.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_pat@bo-comp-disable-bind.html

  * igt@xe_pat@false-sharing:
    - shard-bmg:          [SKIP][248] ([Intel XE#7590]) -> [PASS][249]
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_pat@false-sharing.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@xe_pat@false-sharing.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          [SKIP][250] ([Intel XE#2245] / [Intel XE#7590]) -> [PASS][251]
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_pat@pat-index-xelp.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-bmg:          [SKIP][252] ([Intel XE#2327]) -> [SKIP][253] ([Intel XE#7825]) +1 other test skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-bmg:          [SKIP][254] ([Intel XE#7825]) -> [SKIP][255] ([Intel XE#2327]) +1 other test skip
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-270:
    - shard-bmg:          [SKIP][256] ([Intel XE#7825]) -> [SKIP][257] ([Intel XE#1124]) +9 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][258] ([Intel XE#7825]) -> [SKIP][259] ([Intel XE#610] / [Intel XE#7387])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          [SKIP][260] ([Intel XE#1124]) -> [SKIP][261] ([Intel XE#7825]) +5 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          [SKIP][262] ([Intel XE#7825]) -> [SKIP][263] ([Intel XE#2887]) +10 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][264] ([Intel XE#2887]) -> [SKIP][265] ([Intel XE#7825]) +7 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          [SKIP][266] ([Intel XE#7825]) -> [SKIP][267] ([Intel XE#3432]) +2 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][268] ([Intel XE#7825]) -> [SKIP][269] ([Intel XE#2652])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][270] ([Intel XE#2652]) -> [SKIP][271] ([Intel XE#7825])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          [SKIP][272] -> [SKIP][273] ([Intel XE#2724] / [Intel XE#7449])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_cdclk@mode-transition-all-outputs.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_color_pipeline@plane-lut3d-green-only:
    - shard-bmg:          [SKIP][274] ([Intel XE#7006]) -> [SKIP][275] ([Intel XE#6969] / [Intel XE#7006])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          [SKIP][276] ([Intel XE#7825]) -> [SKIP][277] ([Intel XE#2390] / [Intel XE#6974])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-bmg:          [SKIP][278] ([Intel XE#6974]) -> [SKIP][279] ([Intel XE#7825])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@mei-interface:
    - shard-bmg:          [SKIP][280] ([Intel XE#7825]) -> [SKIP][281] ([Intel XE#7642])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_content_protection@mei-interface.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][282] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][283] ([Intel XE#7825])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_content_protection@srm.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-bmg:          [SKIP][284] ([Intel XE#7825]) -> [FAIL][285] ([Intel XE#6707] / [Intel XE#7439])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_content_protection@uevent-hdcp14.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          [SKIP][286] ([Intel XE#7825]) -> [SKIP][287] ([Intel XE#2321] / [Intel XE#7355])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85:
    - shard-bmg:          [SKIP][288] ([Intel XE#7825]) -> [SKIP][289] ([Intel XE#2320]) +6 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][290] ([Intel XE#2320]) -> [SKIP][291] ([Intel XE#7825]) +3 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][292] ([Intel XE#7571]) -> [FAIL][293] ([Intel XE#7809])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-bmg:          [SKIP][294] ([Intel XE#7825]) -> [SKIP][295] ([Intel XE#2286] / [Intel XE#6035])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          [SKIP][296] ([Intel XE#7825]) -> [SKIP][297] ([Intel XE#4331] / [Intel XE#7227])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          [SKIP][298] ([Intel XE#7825]) -> [SKIP][299] ([Intel XE#2244]) +2 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-bmg:          [SKIP][300] ([Intel XE#7825]) -> [SKIP][301] ([Intel XE#4422] / [Intel XE#7442])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_flip_event_leak@basic:
    - shard-bmg:          [INCOMPLETE][302] -> [SKIP][303] ([Intel XE#7825])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-2/igt@kms_flip_event_leak@basic.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_flip_event_leak@basic.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-bmg:          [SKIP][304] ([Intel XE#7178]) -> [SKIP][305] ([Intel XE#7178] / [Intel XE#7351])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-bmg:          [SKIP][306] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][307] ([Intel XE#2380])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][308] ([Intel XE#2311]) -> [SKIP][309] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +10 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][310] ([Intel XE#2311]) -> [SKIP][311] ([Intel XE#2312]) +1 other test skip
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          [SKIP][312] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][313] ([Intel XE#2311]) +18 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][314] ([Intel XE#4141]) -> [SKIP][315] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +6 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][316] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][317] ([Intel XE#4141]) +8 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][318] ([Intel XE#4141]) -> [SKIP][319] ([Intel XE#2312]) +1 other test skip
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
    - shard-bmg:          [SKIP][320] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][321] ([Intel XE#6314]) +1 other test skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
    - shard-bmg:          [SKIP][322] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][323] ([Intel XE#4141]) +2 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
    - shard-bmg:          [SKIP][324] ([Intel XE#4141]) -> [SKIP][325] ([Intel XE#2548] / [Intel XE#6314])
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][326] ([Intel XE#2311]) -> [SKIP][327] ([Intel XE#6314]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][328] ([Intel XE#6314]) -> [SKIP][329] ([Intel XE#2311]) +3 other tests skip
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][330] ([Intel XE#2312]) -> [SKIP][331] ([Intel XE#2311]) +1 other test skip
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][332] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][333] ([Intel XE#2311]) +7 other tests skip
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][334] ([Intel XE#2311]) -> [SKIP][335] ([Intel XE#2548] / [Intel XE#6314]) +1 other test skip
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-bmg:          [SKIP][336] ([Intel XE#2352] / [Intel XE#7399]) -> [SKIP][337] ([Intel XE#2548] / [Intel XE#6314])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][338] ([Intel XE#2313]) -> [SKIP][339] ([Intel XE#2548] / [Intel XE#6314]) +13 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][340] ([Intel XE#2313]) -> [SKIP][341] ([Intel XE#2312]) +1 other test skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
    - shard-bmg:          [SKIP][342] ([Intel XE#6314]) -> [SKIP][343] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-bmg:          [SKIP][344] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][345] ([Intel XE#2313]) +26 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][346] ([Intel XE#6314]) -> [SKIP][347] ([Intel XE#2313]) +2 other tests skip
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][348] ([Intel XE#2312]) -> [SKIP][349] ([Intel XE#2313]) +3 other tests skip
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][350] ([Intel XE#7825]) -> [SKIP][351] ([Intel XE#3374] / [Intel XE#3544])
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          [SKIP][352] ([Intel XE#2486]) -> [SKIP][353] ([Intel XE#7825])
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_panel_fitting@atomic-fastset.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          [SKIP][354] ([Intel XE#6912] / [Intel XE#7375]) -> [SKIP][355] ([Intel XE#7825])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          [SKIP][356] ([Intel XE#7825]) -> [SKIP][357] ([Intel XE#5020] / [Intel XE#7348])
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_pm_rpm@package-g7:
    - shard-bmg:          [SKIP][358] ([Intel XE#6813]) -> [SKIP][359] ([Intel XE#6814] / [Intel XE#7428])
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_pm_rpm@package-g7.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_pm_rpm@package-g7.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-bmg:          [SKIP][360] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][361] ([Intel XE#7825])
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_rotation_crc@sprite-rotation-270.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          [SKIP][362] ([Intel XE#7825]) -> [SKIP][363] ([Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          [SKIP][364] ([Intel XE#7825]) -> [SKIP][365] ([Intel XE#2413])
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_scaling_modes@scaling-mode-full.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_sharpness_filter@filter-basic:
    - shard-bmg:          [SKIP][366] ([Intel XE#6503]) -> [SKIP][367] ([Intel XE#7825])
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-10/igt@kms_sharpness_filter@filter-basic.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_sharpness_filter@filter-basic.html

  * igt@kms_sharpness_filter@invalid-plane-with-filter:
    - shard-bmg:          [SKIP][368] ([Intel XE#7825]) -> [SKIP][369] ([Intel XE#6503]) +3 other tests skip
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_sharpness_filter@invalid-plane-with-filter.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_sharpness_filter@invalid-plane-with-filter.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][370] ([Intel XE#7825]) -> [SKIP][371] ([Intel XE#1499])
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_vrr@flip-basic.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][372] ([Intel XE#1499]) -> [SKIP][373] ([Intel XE#7825])
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@kms_vrr@flip-suspend.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][374] ([Intel XE#7825]) -> [SKIP][375] ([Intel XE#2168] / [Intel XE#7444])
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@kms_vrr@lobf.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@kms_vrr@lobf.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [SKIP][376] -> [INCOMPLETE][377] ([Intel XE#6321])
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-small-multi-queue-cm:
    - shard-bmg:          [SKIP][378] -> [SKIP][379] ([Intel XE#7140]) +1 other test skip
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_evict@evict-small-multi-queue-cm.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-1/igt@xe_evict@evict-small-multi-queue-cm.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm:
    - shard-bmg:          [SKIP][380] ([Intel XE#7136]) -> [SKIP][381] ([Intel XE#7826]) +5 other tests skip
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
    - shard-bmg:          [SKIP][382] ([Intel XE#7826]) -> [SKIP][383] ([Intel XE#7136]) +11 other tests skip
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4931-5419b04d9030e3c4138e51331169ef80441cc908/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165415v1/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3957]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3957
  [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4882
  [Intel XE#4886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4886
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6568
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6775
  [Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
  [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7082]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7082
  [Intel XE#7089]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7089
  [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
  [Intel XE#7112]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7112
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
  [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
  [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
  [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
  [Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
  [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
  [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7705
  [Intel XE#7706]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7706
  [Intel XE#7780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7780
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
  [Intel XE#7824]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7824
  [Intel XE#7825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7825
  [Intel XE#7826]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7826
  [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#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4931-5419b04d9030e3c4138e51331169ef80441cc908 -> xe-pw-165415v1

  IGT_8872: e70db143b7bafe09bdea4d33188cb10d2070d0e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4931-5419b04d9030e3c4138e51331169ef80441cc908: 5419b04d9030e3c4138e51331169ef80441cc908
  xe-pw-165415v1: 165415v1

== Logs ==

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

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

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

* Re: [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices
  2026-04-24  9:09 [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices Ankit Nautiyal
                   ` (5 preceding siblings ...)
  2026-04-24 11:23 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-28 11:07 ` Nautiyal, Ankit K
  6 siblings, 0 replies; 8+ messages in thread
From: Nautiyal, Ankit K @ 2026-04-28 11:07 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala


On 4/24/2026 2:39 PM, Ankit Nautiyal wrote:
> This is a subset of patches separated from the series at
> https://patchwork.freedesktop.org/series/164512/ for merging.
>
> Currently VRR is not supported for DP branch devices, but AS SDP
> handling don't fully reflect that. This small series fixes that.
>
> Ankit Nautiyal (3):
>    drm/i915/vrr: Avoid vrr for PCON with HDMI2.1 sink
>    drm/i915/dp: Add a helper to decide if AS SDP can be used
>    drm/i915/dp: Skip AS SDP for DP branch devices
>
>   drivers/gpu/drm/i915/display/intel_dp.c  | 22 +++++++++++++++++++++-
>   drivers/gpu/drm/i915/display/intel_vrr.c | 10 ++++++++++
>   2 files changed, 31 insertions(+), 1 deletion(-)


Thanks for the reviews, pushed to drm-intel-next.

Regards,

Ankit



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

end of thread, other threads:[~2026-04-28 11:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-24  9:09 [PATCH 0/3] Fix AS SDP and VRR handling for DP branch devices Ankit Nautiyal
2026-04-24  9:09 ` [PATCH 1/3] drm/i915/vrr: Avoid vrr for PCON with HDMI2.1 sink Ankit Nautiyal
2026-04-24  9:09 ` [PATCH 2/3] drm/i915/dp: Add a helper to decide if AS SDP can be used Ankit Nautiyal
2026-04-24  9:09 ` [PATCH 3/3] drm/i915/dp: Skip AS SDP for DP branch devices Ankit Nautiyal
2026-04-24  9:31 ` ✓ CI.KUnit: success for Fix AS SDP and VRR handling " Patchwork
2026-04-24 10:21 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-24 11:23 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-28 11:07 ` [PATCH 0/3] " Nautiyal, Ankit K

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