Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional
@ 2025-06-20 15:24 Matthew Auld
  2025-06-20 15:31 ` ✓ CI.KUnit: success for " Patchwork
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Matthew Auld @ 2025-06-20 15:24 UTC (permalink / raw)
  To: intel-xe; +Cc: Himal Prasad Ghimiray, Thomas Hellström, Matthew Brost

When clearing VRAM we should be able to skip invalidating the TLBs if we
are only using the identity map to access VRAM (which is the common
case), since no modifications are made to PTEs on the fly. Also since we
use huge 1G entries within the identity map, there should be a pretty
decent chance that the next packet(s) (if also clears) can avoid a tree
walk if we don't shoot down the TLBs, like if we have to process a long
stream of clears.

Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_migrate.c  | 18 +++++++++++-------
 drivers/gpu/drm/xe/xe_ring_ops.c | 10 +++++-----
 2 files changed, 16 insertions(+), 12 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index 8f8e9fdfb2a8..a76363740a12 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -896,7 +896,7 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
 			goto err;
 		}
 
-		xe_sched_job_add_migrate_flush(job, flush_flags);
+		xe_sched_job_add_migrate_flush(job, flush_flags | MI_INVALIDATE_TLB);
 		if (!fence) {
 			err = xe_sched_job_add_deps(job, src_bo->ttm.base.resv,
 						    DMA_RESV_USAGE_BOOKKEEP);
@@ -1119,11 +1119,13 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
 
 		size -= clear_L0;
 		/* Preemption is enabled again by the ring ops. */
-		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it))
+		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it)) {
 			xe_res_next(&src_it, clear_L0);
-		else
-			emit_pte(m, bb, clear_L0_pt, clear_vram, clear_only_system_ccs,
-				 &src_it, clear_L0, dst);
+		} else {
+			emit_pte(m, bb, clear_L0_pt, clear_vram,
+				 clear_only_system_ccs, &src_it, clear_L0, dst);
+			flush_flags |= MI_INVALIDATE_TLB;
+		}
 
 		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
 		update_idx = bb->len;
@@ -1134,7 +1136,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
 		if (xe_migrate_needs_ccs_emit(xe)) {
 			emit_copy_ccs(gt, bb, clear_L0_ofs, true,
 				      m->cleared_mem_ofs, false, clear_L0);
-			flush_flags = MI_FLUSH_DW_CCS;
+			flush_flags |= MI_FLUSH_DW_CCS;
 		}
 
 		job = xe_bb_create_migration_job(m->q, bb,
@@ -1469,6 +1471,8 @@ __xe_migrate_update_pgtables(struct xe_migrate *m,
 		goto err_sa;
 	}
 
+	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
+
 	if (ops->pre_commit) {
 		pt_update->job = job;
 		err = ops->pre_commit(pt_update);
@@ -1667,7 +1671,7 @@ static struct dma_fence *xe_migrate_vram(struct xe_migrate *m,
 		goto err;
 	}
 
-	xe_sched_job_add_migrate_flush(job, 0);
+	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
 
 	mutex_lock(&m->job_mutex);
 	xe_sched_job_arm(job);
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index bc1689db4cd7..b5548e0769f4 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -110,10 +110,10 @@ static int emit_bb_start(u64 batch_addr, u32 ppgtt_flag, u32 *dw, int i)
 	return i;
 }
 
-static int emit_flush_invalidate(u32 *dw, int i)
+static int emit_flush_invalidate(u32 *dw, int i, u32 flush_flags)
 {
-	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | MI_FLUSH_DW_OP_STOREDW |
-		  MI_FLUSH_IMM_DW | MI_FLUSH_DW_STORE_INDEX;
+	dw[i++] = MI_FLUSH_DW |  MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW |
+		MI_FLUSH_DW_STORE_INDEX | (flush_flags & MI_INVALIDATE_TLB) ?: 0;
 	dw[i++] = LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR;
 	dw[i++] = 0;
 	dw[i++] = 0;
@@ -411,13 +411,13 @@ static void emit_migration_job_gen12(struct xe_sched_job *job,
 	if (!IS_SRIOV_VF(gt_to_xe(job->q->gt))) {
 		/* XXX: Do we need this? Leaving for now. */
 		dw[i++] = preparser_disable(true);
-		i = emit_flush_invalidate(dw, i);
+		i = emit_flush_invalidate(dw, i, job->migrate_flush_flags);
 		dw[i++] = preparser_disable(false);
 	}
 
 	i = emit_bb_start(job->ptrs[1].batch_addr, BIT(8), dw, i);
 
-	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | job->migrate_flush_flags |
+	dw[i++] = MI_FLUSH_DW | job->migrate_flush_flags |
 		MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW;
 	dw[i++] = xe_lrc_seqno_ggtt_addr(lrc) | MI_FLUSH_DW_USE_GTT;
 	dw[i++] = 0;
-- 
2.49.0


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

* ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
@ 2025-06-20 15:31 ` Patchwork
  2025-06-20 16:11 ` [PATCH] " Matthew Brost
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-20 15:31 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe

== Series Details ==

Series: drm/xe/migrate: make MI_TLB_INVALIDATE conditional
URL   : https://patchwork.freedesktop.org/series/150574/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:30:44] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:30:48] 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
[15:31:15] Starting KUnit Kernel (1/1)...
[15:31:15] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:31:15] ================== guc_buf (11 subtests) ===================
[15:31:15] [PASSED] test_smallest
[15:31:15] [PASSED] test_largest
[15:31:15] [PASSED] test_granular
[15:31:15] [PASSED] test_unique
[15:31:15] [PASSED] test_overlap
[15:31:15] [PASSED] test_reusable
[15:31:15] [PASSED] test_too_big
[15:31:15] [PASSED] test_flush
[15:31:15] [PASSED] test_lookup
[15:31:15] [PASSED] test_data
[15:31:15] [PASSED] test_class
[15:31:15] ===================== [PASSED] guc_buf =====================
[15:31:15] =================== guc_dbm (7 subtests) ===================
[15:31:15] [PASSED] test_empty
[15:31:15] [PASSED] test_default
[15:31:15] ======================== test_size  ========================
[15:31:15] [PASSED] 4
[15:31:15] [PASSED] 8
[15:31:15] [PASSED] 32
[15:31:15] [PASSED] 256
[15:31:15] ==================== [PASSED] test_size ====================
[15:31:15] ======================= test_reuse  ========================
[15:31:15] [PASSED] 4
[15:31:15] [PASSED] 8
[15:31:15] [PASSED] 32
[15:31:15] [PASSED] 256
[15:31:15] =================== [PASSED] test_reuse ====================
[15:31:15] =================== test_range_overlap  ====================
[15:31:15] [PASSED] 4
[15:31:15] [PASSED] 8
[15:31:15] [PASSED] 32
[15:31:15] [PASSED] 256
[15:31:15] =============== [PASSED] test_range_overlap ================
[15:31:15] =================== test_range_compact  ====================
[15:31:15] [PASSED] 4
[15:31:15] [PASSED] 8
[15:31:15] [PASSED] 32
[15:31:15] [PASSED] 256
[15:31:15] =============== [PASSED] test_range_compact ================
[15:31:15] ==================== test_range_spare  =====================
[15:31:15] [PASSED] 4
[15:31:15] [PASSED] 8
[15:31:15] [PASSED] 32
[15:31:15] [PASSED] 256
[15:31:15] ================ [PASSED] test_range_spare =================
[15:31:15] ===================== [PASSED] guc_dbm =====================
[15:31:15] =================== guc_idm (6 subtests) ===================
[15:31:15] [PASSED] bad_init
[15:31:15] [PASSED] no_init
[15:31:15] [PASSED] init_fini
[15:31:15] [PASSED] check_used
[15:31:15] [PASSED] check_quota
[15:31:15] [PASSED] check_all
[15:31:15] ===================== [PASSED] guc_idm =====================
[15:31:15] ================== no_relay (3 subtests) ===================
[15:31:15] [PASSED] xe_drops_guc2pf_if_not_ready
[15:31:15] [PASSED] xe_drops_guc2vf_if_not_ready
[15:31:15] [PASSED] xe_rejects_send_if_not_ready
[15:31:15] ==================== [PASSED] no_relay =====================
[15:31:15] ================== pf_relay (14 subtests) ==================
[15:31:15] [PASSED] pf_rejects_guc2pf_too_short
[15:31:15] [PASSED] pf_rejects_guc2pf_too_long
[15:31:15] [PASSED] pf_rejects_guc2pf_no_payload
[15:31:15] [PASSED] pf_fails_no_payload
[15:31:15] [PASSED] pf_fails_bad_origin
[15:31:15] [PASSED] pf_fails_bad_type
[15:31:15] [PASSED] pf_txn_reports_error
[15:31:15] [PASSED] pf_txn_sends_pf2guc
[15:31:15] [PASSED] pf_sends_pf2guc
[15:31:15] [SKIPPED] pf_loopback_nop
[15:31:15] [SKIPPED] pf_loopback_echo
[15:31:15] [SKIPPED] pf_loopback_fail
[15:31:15] [SKIPPED] pf_loopback_busy
[15:31:15] [SKIPPED] pf_loopback_retry
[15:31:15] ==================== [PASSED] pf_relay =====================
[15:31:15] ================== vf_relay (3 subtests) ===================
[15:31:15] [PASSED] vf_rejects_guc2vf_too_short
[15:31:15] [PASSED] vf_rejects_guc2vf_too_long
[15:31:15] [PASSED] vf_rejects_guc2vf_no_payload
[15:31:15] ==================== [PASSED] vf_relay =====================
[15:31:15] ================= pf_service (11 subtests) =================
[15:31:15] [PASSED] pf_negotiate_any
[15:31:15] [PASSED] pf_negotiate_base_match
[15:31:15] [PASSED] pf_negotiate_base_newer
[15:31:15] [PASSED] pf_negotiate_base_next
[15:31:15] [SKIPPED] pf_negotiate_base_older
[15:31:15] [PASSED] pf_negotiate_base_prev
[15:31:15] [PASSED] pf_negotiate_latest_match
[15:31:15] [PASSED] pf_negotiate_latest_newer
[15:31:15] [PASSED] pf_negotiate_latest_next
[15:31:15] [SKIPPED] pf_negotiate_latest_older
[15:31:15] [SKIPPED] pf_negotiate_latest_prev
[15:31:15] =================== [PASSED] pf_service ====================
[15:31:15] ===================== lmtt (1 subtest) =====================
[15:31:15] ======================== test_ops  =========================
[15:31:15] [PASSED] 2-level
[15:31:15] [PASSED] multi-level
[15:31:15] ==================== [PASSED] test_ops =====================
[15:31:15] ====================== [PASSED] lmtt =======================
[15:31:15] =================== xe_mocs (2 subtests) ===================
[15:31:15] ================ xe_live_mocs_kernel_kunit  ================
[15:31:15] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:31:15] ================ xe_live_mocs_reset_kunit  =================
[15:31:15] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:31:15] ==================== [SKIPPED] xe_mocs =====================
[15:31:15] ================= xe_migrate (2 subtests) ==================
[15:31:15] ================= xe_migrate_sanity_kunit  =================
[15:31:15] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:31:15] ================== xe_validate_ccs_kunit  ==================
[15:31:15] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:31:15] =================== [SKIPPED] xe_migrate ===================
[15:31:15] ================== xe_dma_buf (1 subtest) ==================
[15:31:15] ==================== xe_dma_buf_kunit  =====================
[15:31:15] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:31:15] =================== [SKIPPED] xe_dma_buf ===================
[15:31:15] ================= xe_bo_shrink (1 subtest) =================
[15:31:15] =================== xe_bo_shrink_kunit  ====================
[15:31:15] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:31:15] ================== [SKIPPED] xe_bo_shrink ==================
[15:31:15] ==================== xe_bo (2 subtests) ====================
[15:31:15] ================== xe_ccs_migrate_kunit  ===================
[15:31:15] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:31:15] ==================== xe_bo_evict_kunit  ====================
[15:31:15] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:31:15] ===================== [SKIPPED] xe_bo ======================
[15:31:15] ==================== args (11 subtests) ====================
[15:31:15] [PASSED] count_args_test
[15:31:15] [PASSED] call_args_example
[15:31:15] [PASSED] call_args_test
[15:31:15] [PASSED] drop_first_arg_example
[15:31:15] [PASSED] drop_first_arg_test
[15:31:15] [PASSED] first_arg_example
[15:31:15] [PASSED] first_arg_test
[15:31:15] [PASSED] last_arg_example
[15:31:15] [PASSED] last_arg_test
[15:31:15] [PASSED] pick_arg_example
[15:31:15] [PASSED] sep_comma_example
[15:31:15] ====================== [PASSED] args =======================
[15:31:15] =================== xe_pci (2 subtests) ====================
[15:31:15] ==================== check_graphics_ip  ====================
[15:31:15] [PASSED] 12.70 Xe_LPG
[15:31:15] [PASSED] 12.71 Xe_LPG
[15:31:15] [PASSED] 12.74 Xe_LPG+
[15:31:15] [PASSED] 20.01 Xe2_HPG
[15:31:15] [PASSED] 20.02 Xe2_HPG
[15:31:15] [PASSED] 20.04 Xe2_LPG
[15:31:15] [PASSED] 30.00 Xe3_LPG
[15:31:15] [PASSED] 30.01 Xe3_LPG
[15:31:15] [PASSED] 30.03 Xe3_LPG
[15:31:15] ================ [PASSED] check_graphics_ip ================
[15:31:15] ===================== check_media_ip  ======================
[15:31:15] [PASSED] 13.00 Xe_LPM+
[15:31:15] [PASSED] 13.01 Xe2_HPM
[15:31:15] [PASSED] 20.00 Xe2_LPM
[15:31:15] [PASSED] 30.00 Xe3_LPM
[15:31:15] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[15:31:15] ================= [PASSED] check_media_ip ==================
[15:31:15] ===================== [PASSED] xe_pci ======================
[15:31:15] =================== xe_rtp (2 subtests) ====================
[15:31:15] =============== xe_rtp_process_to_sr_tests  ================
[15:31:15] [PASSED] coalesce-same-reg
[15:31:15] [PASSED] no-match-no-add
[15:31:15] [PASSED] match-or
[15:31:15] [PASSED] match-or-xfail
[15:31:15] [PASSED] no-match-no-add-multiple-rules
[15:31:15] [PASSED] two-regs-two-entries
[15:31:15] [PASSED] clr-one-set-other
[15:31:15] [PASSED] set-field
[15:31:15] [PASSED] conflict-duplicate
[15:31:15] [PASSED] conflict-not-disjoint
[15:31:15] [PASSED] conflict-reg-type
[15:31:15] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:31:15] ================== xe_rtp_process_tests  ===================
[15:31:15] [PASSED] active1
[15:31:15] [PASSED] active2
[15:31:15] [PASSED] active-inactive
[15:31:15] [PASSED] inactive-active
[15:31:15] [PASSED] inactive-1st_or_active-inactive
[15:31:15] [PASSED] inactive-2nd_or_active-inactive
[15:31:15] [PASSED] inactive-last_or_active-inactive
[15:31:15] [PASSED] inactive-no_or_active-inactive
[15:31:15] ============== [PASSED] xe_rtp_process_tests ===============
[15:31:15] ===================== [PASSED] xe_rtp ======================
[15:31:15] ==================== xe_wa (1 subtest) =====================
[15:31:15] ======================== xe_wa_gt  =========================
[15:31:15] [PASSED] TIGERLAKE (B0)
[15:31:15] [PASSED] DG1 (A0)
[15:31:15] [PASSED] DG1 (B0)
[15:31:15] [PASSED] ALDERLAKE_S (A0)
[15:31:15] [PASSED] ALDERLAKE_S (B0)
[15:31:15] [PASSED] ALDERLAKE_S (C0)
[15:31:15] [PASSED] ALDERLAKE_S (D0)
[15:31:15] [PASSED] ALDERLAKE_P (A0)
[15:31:15] [PASSED] ALDERLAKE_P (B0)
[15:31:15] [PASSED] ALDERLAKE_P (C0)
[15:31:15] [PASSED] ALDERLAKE_S_RPLS (D0)
[15:31:15] [PASSED] ALDERLAKE_P_RPLU (E0)
[15:31:15] [PASSED] DG2_G10 (C0)
[15:31:15] [PASSED] DG2_G11 (B1)
[15:31:15] [PASSED] DG2_G12 (A1)
[15:31:15] [PASSED] METEORLAKE (g:A0, m:A0)
[15:31:15] [PASSED] METEORLAKE (g:A0, m:A0)
[15:31:15] [PASSED] METEORLAKE (g:A0, m:A0)
[15:31:15] [PASSED] LUNARLAKE (g:A0, m:A0)
[15:31:15] [PASSED] LUNARLAKE (g:B0, m:A0)
[15:31:15] [PASSED] BATTLEMAGE (g:A0, m:A1)
[15:31:15] ==================== [PASSED] xe_wa_gt =====================
[15:31:15] ====================== [PASSED] xe_wa ======================
[15:31:15] ============================================================
[15:31:15] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[15:31:15] Elapsed time: 31.401s total, 4.238s configuring, 26.847s building, 0.296s running

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

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

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



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

* Re: [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
  2025-06-20 15:31 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-06-20 16:11 ` Matthew Brost
  2025-06-23  9:33   ` Matthew Auld
  2025-06-21  1:48 ` ✓ Xe.CI.Full: success for " Patchwork
                   ` (6 subsequent siblings)
  8 siblings, 1 reply; 14+ messages in thread
From: Matthew Brost @ 2025-06-20 16:11 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe, Himal Prasad Ghimiray, Thomas Hellström

On Fri, Jun 20, 2025 at 04:24:47PM +0100, Matthew Auld wrote:
> When clearing VRAM we should be able to skip invalidating the TLBs if we

For copies, we always program SRAM PTEs, and need a invalidate?
Maybe mention this in the commit message.

> are only using the identity map to access VRAM (which is the common
> case), since no modifications are made to PTEs on the fly. Also since we
> use huge 1G entries within the identity map, there should be a pretty
> decent chance that the next packet(s) (if also clears) can avoid a tree
> walk if we don't shoot down the TLBs, like if we have to process a long
> stream of clears.
> 
> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_migrate.c  | 18 +++++++++++-------
>  drivers/gpu/drm/xe/xe_ring_ops.c | 10 +++++-----
>  2 files changed, 16 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> index 8f8e9fdfb2a8..a76363740a12 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -896,7 +896,7 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>  			goto err;
>  		}
>  
> -		xe_sched_job_add_migrate_flush(job, flush_flags);
> +		xe_sched_job_add_migrate_flush(job, flush_flags | MI_INVALIDATE_TLB);
>  		if (!fence) {
>  			err = xe_sched_job_add_deps(job, src_bo->ttm.base.resv,
>  						    DMA_RESV_USAGE_BOOKKEEP);
> @@ -1119,11 +1119,13 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
>  
>  		size -= clear_L0;
>  		/* Preemption is enabled again by the ring ops. */
> -		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it))
> +		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it)) {
>  			xe_res_next(&src_it, clear_L0);
> -		else
> -			emit_pte(m, bb, clear_L0_pt, clear_vram, clear_only_system_ccs,
> -				 &src_it, clear_L0, dst);
> +		} else {
> +			emit_pte(m, bb, clear_L0_pt, clear_vram,
> +				 clear_only_system_ccs, &src_it, clear_L0, dst);
> +			flush_flags |= MI_INVALIDATE_TLB;
> +		}

What about the if statements for dst_it / copy_system_ccs? Do we not
need to set MI_INVALIDATE_TLB there?

Matt

>  
>  		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
>  		update_idx = bb->len;
> @@ -1134,7 +1136,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
>  		if (xe_migrate_needs_ccs_emit(xe)) {
>  			emit_copy_ccs(gt, bb, clear_L0_ofs, true,
>  				      m->cleared_mem_ofs, false, clear_L0);
> -			flush_flags = MI_FLUSH_DW_CCS;
> +			flush_flags |= MI_FLUSH_DW_CCS;
>  		}
>  
>  		job = xe_bb_create_migration_job(m->q, bb,
> @@ -1469,6 +1471,8 @@ __xe_migrate_update_pgtables(struct xe_migrate *m,
>  		goto err_sa;
>  	}
>  
> +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
> +
>  	if (ops->pre_commit) {
>  		pt_update->job = job;
>  		err = ops->pre_commit(pt_update);
> @@ -1667,7 +1671,7 @@ static struct dma_fence *xe_migrate_vram(struct xe_migrate *m,
>  		goto err;
>  	}
>  
> -	xe_sched_job_add_migrate_flush(job, 0);
> +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
>  
>  	mutex_lock(&m->job_mutex);
>  	xe_sched_job_arm(job);
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> index bc1689db4cd7..b5548e0769f4 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> @@ -110,10 +110,10 @@ static int emit_bb_start(u64 batch_addr, u32 ppgtt_flag, u32 *dw, int i)
>  	return i;
>  }
>  
> -static int emit_flush_invalidate(u32 *dw, int i)
> +static int emit_flush_invalidate(u32 *dw, int i, u32 flush_flags)
>  {
> -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | MI_FLUSH_DW_OP_STOREDW |
> -		  MI_FLUSH_IMM_DW | MI_FLUSH_DW_STORE_INDEX;
> +	dw[i++] = MI_FLUSH_DW |  MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW |
> +		MI_FLUSH_DW_STORE_INDEX | (flush_flags & MI_INVALIDATE_TLB) ?: 0;
>  	dw[i++] = LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR;
>  	dw[i++] = 0;
>  	dw[i++] = 0;
> @@ -411,13 +411,13 @@ static void emit_migration_job_gen12(struct xe_sched_job *job,
>  	if (!IS_SRIOV_VF(gt_to_xe(job->q->gt))) {
>  		/* XXX: Do we need this? Leaving for now. */
>  		dw[i++] = preparser_disable(true);
> -		i = emit_flush_invalidate(dw, i);
> +		i = emit_flush_invalidate(dw, i, job->migrate_flush_flags);
>  		dw[i++] = preparser_disable(false);
>  	}
>  
>  	i = emit_bb_start(job->ptrs[1].batch_addr, BIT(8), dw, i);
>  
> -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | job->migrate_flush_flags |
> +	dw[i++] = MI_FLUSH_DW | job->migrate_flush_flags |
>  		MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW;
>  	dw[i++] = xe_lrc_seqno_ggtt_addr(lrc) | MI_FLUSH_DW_USE_GTT;
>  	dw[i++] = 0;
> -- 
> 2.49.0
> 

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

* ✓ Xe.CI.Full: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
  2025-06-20 15:31 ` ✓ CI.KUnit: success for " Patchwork
  2025-06-20 16:11 ` [PATCH] " Matthew Brost
@ 2025-06-21  1:48 ` Patchwork
  2025-06-24  7:48 ` ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2) Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-21  1:48 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/migrate: make MI_TLB_INVALIDATE conditional
URL   : https://patchwork.freedesktop.org/series/150574/
State : success

== Summary ==

CI Bug Log - changes from xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968_FULL -> xe-pw-150574v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@unused-pitches:
    - shard-bmg:          [PASS][1] -> [ABORT][2] ([Intel XE#3970])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_addfb_basic@unused-pitches.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-5/igt@kms_addfb_basic@unused-pitches.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][3] ([Intel XE#3767]) +15 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc.html

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

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][5] ([Intel XE#316]) +5 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         [PASS][6] -> [DMESG-FAIL][7] ([Intel XE#4543]) +2 other tests dmesg-fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#1124])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][9] ([Intel XE#1124]) +15 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#2191])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#367]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#787]) +90 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2887]) +3 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3862]) +1 other test incomplete
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][18] -> [INCOMPLETE][19] ([Intel XE#3862])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#2907]) +3 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2325])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#306]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#373]) +11 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2252]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#307])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html

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

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

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

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#308]) +2 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#1424])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@kms_cursor_crc@cursor-random-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2320])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-64x21.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +4 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#4494] / [i915#3804])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#4354])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-bmg:          [PASS][40] -> [SKIP][41] ([Intel XE#4354])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-sst.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#4354])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#4422]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     NOTRUN -> [SKIP][44] ([Intel XE#701])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_feature_discovery@chamelium.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][45] -> [SKIP][46] ([Intel XE#2316]) +6 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_flip@2x-plain-flip.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-5/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1:
    - shard-adlp:         [PASS][47] -> [FAIL][48] ([Intel XE#886]) +2 other tests fail
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-9/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-adlp-3/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#455]) +21 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#651])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2311]) +5 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#4141]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][53] ([Intel XE#651]) +37 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#653]) +38 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#656]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2313]) +4 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#1470] / [Intel XE#2853])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#4298])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][59] -> [SKIP][60] ([Intel XE#3012]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#2925])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#356])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#4359])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][64] ([Intel XE#616]) +3 other tests fail
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#5020])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [PASS][66] -> [SKIP][67] ([Intel XE#2571])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#3307])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1129])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#908])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#1489])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#1489]) +12 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-cursor-render:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2234] / [Intel XE#2850])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_psr@fbc-psr-cursor-render.html

  * igt@kms_psr@fbc-psr-sprite-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-blt:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1406])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-blt.html

  * igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#4609])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#3414]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#2330])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#1091] / [Intel XE#2849])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-set-linear-0x369:
    - shard-dg2-set2:     NOTRUN -> [SKIP][81] ([Intel XE#1126])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x369.html

  * igt@xe_create@create-big-vram:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#1062])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@xe_create@create-big-vram.html

  * igt@xe_eu_stall@invalid-gt-id:
    - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#5308]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_eu_stall@invalid-gt-id.html

  * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
    - shard-dg2-set2:     NOTRUN -> [SKIP][84] ([Intel XE#4837]) +17 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html

  * igt@xe_eudebug_online@set-breakpoint-faultable:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#4837]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint-faultable.html

  * igt@xe_exec_basic@multigpu-once-basic:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#2322])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@xe_exec_basic@multigpu-once-basic.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][87] ([Intel XE#288]) +32 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

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

  * igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][89] ([Intel XE#4915]) +330 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     NOTRUN -> [SKIP][90] ([Intel XE#512])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_mmap@small-bar.html

  * igt@xe_module_load@force-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#378])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_module_load@force-load.html

  * igt@xe_oa@missing-sample-flags:
    - shard-dg2-set2:     NOTRUN -> [SKIP][92] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_oa@missing-sample-flags.html

  * igt@xe_oa@syncs-syncobj-cfg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][93] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_oa@syncs-syncobj-cfg.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][94] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#584])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pxp@pxp-termination-key-update-post-rpm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][96] ([Intel XE#4733]) +2 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_pxp@pxp-termination-key-update-post-rpm.html

  * igt@xe_query@multigpu-query-config:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#944])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@xe_query@multigpu-query-config.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#944]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#944])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@xe_query@multigpu-query-pxp-status.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][100] ([Intel XE#4814]) +1 other test skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_render_copy@render-stress-0-copies.html

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

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         [FAIL][102] ([Intel XE#3908]) -> [PASS][103] +1 other test pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-adlp-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][104] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][106] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][108] ([Intel XE#3124]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][110] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][112] ([Intel XE#2291]) -> [PASS][113] +8 other tests pass
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][114] ([Intel XE#4302]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [SKIP][116] ([Intel XE#2316]) -> [PASS][117] +13 other tests pass
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][118] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][119] +14 other tests pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html

  * igt@kms_flip@plain-flip-ts-check@a-hdmi-a3:
    - shard-bmg:          [FAIL][120] ([Intel XE#2882]) -> [PASS][121] +2 other tests pass
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-3/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html

  * igt@kms_flip@plain-flip-ts-check@c-edp1:
    - shard-lnl:          [FAIL][122] ([Intel XE#886]) -> [PASS][123] +3 other tests pass
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-5/igt@kms_flip@plain-flip-ts-check@c-edp1.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-3/igt@kms_flip@plain-flip-ts-check@c-edp1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
    - shard-adlp:         [DMESG-FAIL][124] ([Intel XE#4543]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y:
    - shard-adlp:         [FAIL][126] ([Intel XE#1874]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][128] ([Intel XE#1503]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-3/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][130] ([Intel XE#4596]) -> [PASS][131] +1 other test pass
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [DMESG-WARN][132] ([Intel XE#3876]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][134] ([Intel XE#5018]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     ([PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [SKIP][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154]) ([Intel XE#378]) -> ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-466/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-466/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-466/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-466/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-436/igt@xe_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-434/igt@xe_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-434/igt@xe_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-434/igt@xe_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-435/igt@xe_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-dg2-466/igt@xe_module_load@load.html

  * igt@xe_module_load@many-reload:
    - shard-adlp:         [DMESG-WARN][170] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5244]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-3/igt@xe_module_load@many-reload.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-adlp-2/igt@xe_module_load@many-reload.html

  * igt@xe_oa@oa-exponents:
    - shard-lnl:          [TIMEOUT][172] -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-6/igt@xe_oa@oa-exponents.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-4/igt@xe_oa@oa-exponents.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [FAIL][174] ([Intel XE#1178]) -> [SKIP][175] ([Intel XE#2341])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [SKIP][176] ([Intel XE#2341]) -> [FAIL][177] ([Intel XE#1188])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_content_protection@uevent.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_content_protection@uevent.html

  * igt@kms_flip@plain-flip-ts-check:
    - shard-lnl:          [FAIL][178] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][179] ([Intel XE#886])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-5/igt@kms_flip@plain-flip-ts-check.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-lnl-3/igt@kms_flip@plain-flip-ts-check.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][180] ([Intel XE#2311]) -> [SKIP][181] ([Intel XE#2312]) +10 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][182] ([Intel XE#2312]) -> [SKIP][183] ([Intel XE#2311]) +31 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][184] ([Intel XE#4141]) -> [SKIP][185] ([Intel XE#2312]) +8 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][186] ([Intel XE#2312]) -> [SKIP][187] ([Intel XE#4141]) +15 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][188] ([Intel XE#2312]) -> [SKIP][189] ([Intel XE#2313]) +28 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][190] ([Intel XE#2313]) -> [SKIP][191] ([Intel XE#2312]) +11 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][192] ([Intel XE#2426]) -> [SKIP][193] ([Intel XE#2509])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

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

  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
  [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804


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

  * Linux: xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968 -> xe-pw-150574v1

  IGT_8418: 8418
  xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968: 1b4be188ae14a43b901f3005075fab3a22f77968
  xe-pw-150574v1: 150574v1

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional
  2025-06-20 16:11 ` [PATCH] " Matthew Brost
@ 2025-06-23  9:33   ` Matthew Auld
  2025-06-23 11:24     ` Matthew Brost
  0 siblings, 1 reply; 14+ messages in thread
From: Matthew Auld @ 2025-06-23  9:33 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe, Himal Prasad Ghimiray, Thomas Hellström

On 20/06/2025 17:11, Matthew Brost wrote:
> On Fri, Jun 20, 2025 at 04:24:47PM +0100, Matthew Auld wrote:
>> When clearing VRAM we should be able to skip invalidating the TLBs if we
> 
> For copies, we always program SRAM PTEs, and need a invalidate?
> Maybe mention this in the commit message.

Yup exactly that. I don't think we currently do vram -> vram in 
practice so I didn't bother with the copy path. Will tweak the commit 
message.

> 
>> are only using the identity map to access VRAM (which is the common
>> case), since no modifications are made to PTEs on the fly. Also since we
>> use huge 1G entries within the identity map, there should be a pretty
>> decent chance that the next packet(s) (if also clears) can avoid a tree
>> walk if we don't shoot down the TLBs, like if we have to process a long
>> stream of clears.
>>
>> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
>> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>> Cc: Matthew Brost <matthew.brost@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_migrate.c  | 18 +++++++++++-------
>>   drivers/gpu/drm/xe/xe_ring_ops.c | 10 +++++-----
>>   2 files changed, 16 insertions(+), 12 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
>> index 8f8e9fdfb2a8..a76363740a12 100644
>> --- a/drivers/gpu/drm/xe/xe_migrate.c
>> +++ b/drivers/gpu/drm/xe/xe_migrate.c
>> @@ -896,7 +896,7 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>>   			goto err;
>>   		}
>>   
>> -		xe_sched_job_add_migrate_flush(job, flush_flags);
>> +		xe_sched_job_add_migrate_flush(job, flush_flags | MI_INVALIDATE_TLB);
>>   		if (!fence) {
>>   			err = xe_sched_job_add_deps(job, src_bo->ttm.base.resv,
>>   						    DMA_RESV_USAGE_BOOKKEEP);
>> @@ -1119,11 +1119,13 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
>>   
>>   		size -= clear_L0;
>>   		/* Preemption is enabled again by the ring ops. */
>> -		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it))
>> +		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it)) {
>>   			xe_res_next(&src_it, clear_L0);
>> -		else
>> -			emit_pte(m, bb, clear_L0_pt, clear_vram, clear_only_system_ccs,
>> -				 &src_it, clear_L0, dst);
>> +		} else {
>> +			emit_pte(m, bb, clear_L0_pt, clear_vram,
>> +				 clear_only_system_ccs, &src_it, clear_L0, dst);
>> +			flush_flags |= MI_INVALIDATE_TLB;
>> +		}
> 
> What about the if statements for dst_it / copy_system_ccs? Do we not
> need to set MI_INVALIDATE_TLB there?

You mean for the copy path? We unconditionally apply MI_INVALIDATE_TLB 
when doing any copy.

> 
> Matt
> 
>>   
>>   		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
>>   		update_idx = bb->len;
>> @@ -1134,7 +1136,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
>>   		if (xe_migrate_needs_ccs_emit(xe)) {
>>   			emit_copy_ccs(gt, bb, clear_L0_ofs, true,
>>   				      m->cleared_mem_ofs, false, clear_L0);
>> -			flush_flags = MI_FLUSH_DW_CCS;
>> +			flush_flags |= MI_FLUSH_DW_CCS;
>>   		}
>>   
>>   		job = xe_bb_create_migration_job(m->q, bb,
>> @@ -1469,6 +1471,8 @@ __xe_migrate_update_pgtables(struct xe_migrate *m,
>>   		goto err_sa;
>>   	}
>>   
>> +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
>> +
>>   	if (ops->pre_commit) {
>>   		pt_update->job = job;
>>   		err = ops->pre_commit(pt_update);
>> @@ -1667,7 +1671,7 @@ static struct dma_fence *xe_migrate_vram(struct xe_migrate *m,
>>   		goto err;
>>   	}
>>   
>> -	xe_sched_job_add_migrate_flush(job, 0);
>> +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
>>   
>>   	mutex_lock(&m->job_mutex);
>>   	xe_sched_job_arm(job);
>> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
>> index bc1689db4cd7..b5548e0769f4 100644
>> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
>> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
>> @@ -110,10 +110,10 @@ static int emit_bb_start(u64 batch_addr, u32 ppgtt_flag, u32 *dw, int i)
>>   	return i;
>>   }
>>   
>> -static int emit_flush_invalidate(u32 *dw, int i)
>> +static int emit_flush_invalidate(u32 *dw, int i, u32 flush_flags)
>>   {
>> -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | MI_FLUSH_DW_OP_STOREDW |
>> -		  MI_FLUSH_IMM_DW | MI_FLUSH_DW_STORE_INDEX;
>> +	dw[i++] = MI_FLUSH_DW |  MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW |
>> +		MI_FLUSH_DW_STORE_INDEX | (flush_flags & MI_INVALIDATE_TLB) ?: 0;
>>   	dw[i++] = LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR;
>>   	dw[i++] = 0;
>>   	dw[i++] = 0;
>> @@ -411,13 +411,13 @@ static void emit_migration_job_gen12(struct xe_sched_job *job,
>>   	if (!IS_SRIOV_VF(gt_to_xe(job->q->gt))) {
>>   		/* XXX: Do we need this? Leaving for now. */
>>   		dw[i++] = preparser_disable(true);
>> -		i = emit_flush_invalidate(dw, i);
>> +		i = emit_flush_invalidate(dw, i, job->migrate_flush_flags);
>>   		dw[i++] = preparser_disable(false);
>>   	}
>>   
>>   	i = emit_bb_start(job->ptrs[1].batch_addr, BIT(8), dw, i);
>>   
>> -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | job->migrate_flush_flags |
>> +	dw[i++] = MI_FLUSH_DW | job->migrate_flush_flags |
>>   		MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW;
>>   	dw[i++] = xe_lrc_seqno_ggtt_addr(lrc) | MI_FLUSH_DW_USE_GTT;
>>   	dw[i++] = 0;
>> -- 
>> 2.49.0
>>


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

* Re: [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional
  2025-06-23  9:33   ` Matthew Auld
@ 2025-06-23 11:24     ` Matthew Brost
  2025-06-23 21:48       ` Matthew Brost
  0 siblings, 1 reply; 14+ messages in thread
From: Matthew Brost @ 2025-06-23 11:24 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe, Himal Prasad Ghimiray, Thomas Hellström

On Mon, Jun 23, 2025 at 10:33:13AM +0100, Matthew Auld wrote:
> On 20/06/2025 17:11, Matthew Brost wrote:
> > On Fri, Jun 20, 2025 at 04:24:47PM +0100, Matthew Auld wrote:
> > > When clearing VRAM we should be able to skip invalidating the TLBs if we
> > 
> > For copies, we always program SRAM PTEs, and need a invalidate?
> > Maybe mention this in the commit message.
> 
> Yup exactly that. I don't think we currently do vram -> vram in practice so
> I didn't bother with the copy path. Will tweak the commit message.
> 
> > 
> > > are only using the identity map to access VRAM (which is the common
> > > case), since no modifications are made to PTEs on the fly. Also since we
> > > use huge 1G entries within the identity map, there should be a pretty
> > > decent chance that the next packet(s) (if also clears) can avoid a tree
> > > walk if we don't shoot down the TLBs, like if we have to process a long
> > > stream of clears.
> > > 
> > > Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> > > Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > > Cc: Matthew Brost <matthew.brost@intel.com>
> > > ---
> > >   drivers/gpu/drm/xe/xe_migrate.c  | 18 +++++++++++-------
> > >   drivers/gpu/drm/xe/xe_ring_ops.c | 10 +++++-----
> > >   2 files changed, 16 insertions(+), 12 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> > > index 8f8e9fdfb2a8..a76363740a12 100644
> > > --- a/drivers/gpu/drm/xe/xe_migrate.c
> > > +++ b/drivers/gpu/drm/xe/xe_migrate.c
> > > @@ -896,7 +896,7 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
> > >   			goto err;
> > >   		}
> > > -		xe_sched_job_add_migrate_flush(job, flush_flags);
> > > +		xe_sched_job_add_migrate_flush(job, flush_flags | MI_INVALIDATE_TLB);
> > >   		if (!fence) {
> > >   			err = xe_sched_job_add_deps(job, src_bo->ttm.base.resv,
> > >   						    DMA_RESV_USAGE_BOOKKEEP);
> > > @@ -1119,11 +1119,13 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
> > >   		size -= clear_L0;
> > >   		/* Preemption is enabled again by the ring ops. */
> > > -		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it))
> > > +		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it)) {
> > >   			xe_res_next(&src_it, clear_L0);
> > > -		else
> > > -			emit_pte(m, bb, clear_L0_pt, clear_vram, clear_only_system_ccs,
> > > -				 &src_it, clear_L0, dst);
> > > +		} else {
> > > +			emit_pte(m, bb, clear_L0_pt, clear_vram,
> > > +				 clear_only_system_ccs, &src_it, clear_L0, dst);
> > > +			flush_flags |= MI_INVALIDATE_TLB;
> > > +		}
> > 
> > What about the if statements for dst_it / copy_system_ccs? Do we not
> > need to set MI_INVALIDATE_TLB there?
> 
> You mean for the copy path? We unconditionally apply MI_INVALIDATE_TLB when
> doing any copy.
> 

I was looking at wrong function (xe_migrate_copy) - I thought there were 
a couple more calls to emit_pte here but on 2nd look, nope.

So patch the LGTM:
Reviewed-by: Matthew Brost <matthew.brost@intel.com>

> > 
> > Matt
> > 
> > >   		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
> > >   		update_idx = bb->len;
> > > @@ -1134,7 +1136,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
> > >   		if (xe_migrate_needs_ccs_emit(xe)) {
> > >   			emit_copy_ccs(gt, bb, clear_L0_ofs, true,
> > >   				      m->cleared_mem_ofs, false, clear_L0);
> > > -			flush_flags = MI_FLUSH_DW_CCS;
> > > +			flush_flags |= MI_FLUSH_DW_CCS;
> > >   		}
> > >   		job = xe_bb_create_migration_job(m->q, bb,
> > > @@ -1469,6 +1471,8 @@ __xe_migrate_update_pgtables(struct xe_migrate *m,
> > >   		goto err_sa;
> > >   	}
> > > +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
> > > +
> > >   	if (ops->pre_commit) {
> > >   		pt_update->job = job;
> > >   		err = ops->pre_commit(pt_update);
> > > @@ -1667,7 +1671,7 @@ static struct dma_fence *xe_migrate_vram(struct xe_migrate *m,
> > >   		goto err;
> > >   	}
> > > -	xe_sched_job_add_migrate_flush(job, 0);
> > > +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
> > >   	mutex_lock(&m->job_mutex);
> > >   	xe_sched_job_arm(job);
> > > diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > index bc1689db4cd7..b5548e0769f4 100644
> > > --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> > > +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > @@ -110,10 +110,10 @@ static int emit_bb_start(u64 batch_addr, u32 ppgtt_flag, u32 *dw, int i)
> > >   	return i;
> > >   }
> > > -static int emit_flush_invalidate(u32 *dw, int i)
> > > +static int emit_flush_invalidate(u32 *dw, int i, u32 flush_flags)
> > >   {
> > > -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | MI_FLUSH_DW_OP_STOREDW |
> > > -		  MI_FLUSH_IMM_DW | MI_FLUSH_DW_STORE_INDEX;
> > > +	dw[i++] = MI_FLUSH_DW |  MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW |
> > > +		MI_FLUSH_DW_STORE_INDEX | (flush_flags & MI_INVALIDATE_TLB) ?: 0;
> > >   	dw[i++] = LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR;
> > >   	dw[i++] = 0;
> > >   	dw[i++] = 0;
> > > @@ -411,13 +411,13 @@ static void emit_migration_job_gen12(struct xe_sched_job *job,
> > >   	if (!IS_SRIOV_VF(gt_to_xe(job->q->gt))) {
> > >   		/* XXX: Do we need this? Leaving for now. */
> > >   		dw[i++] = preparser_disable(true);
> > > -		i = emit_flush_invalidate(dw, i);
> > > +		i = emit_flush_invalidate(dw, i, job->migrate_flush_flags);
> > >   		dw[i++] = preparser_disable(false);
> > >   	}
> > >   	i = emit_bb_start(job->ptrs[1].batch_addr, BIT(8), dw, i);
> > > -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | job->migrate_flush_flags |
> > > +	dw[i++] = MI_FLUSH_DW | job->migrate_flush_flags |
> > >   		MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW;
> > >   	dw[i++] = xe_lrc_seqno_ggtt_addr(lrc) | MI_FLUSH_DW_USE_GTT;
> > >   	dw[i++] = 0;
> > > -- 
> > > 2.49.0
> > > 
> 

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

* Re: [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional
  2025-06-23 11:24     ` Matthew Brost
@ 2025-06-23 21:48       ` Matthew Brost
  2025-06-24  9:11         ` Matthew Auld
  0 siblings, 1 reply; 14+ messages in thread
From: Matthew Brost @ 2025-06-23 21:48 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe, Himal Prasad Ghimiray, Thomas Hellström

On Mon, Jun 23, 2025 at 04:24:37AM -0700, Matthew Brost wrote:
> On Mon, Jun 23, 2025 at 10:33:13AM +0100, Matthew Auld wrote:
> > On 20/06/2025 17:11, Matthew Brost wrote:
> > > On Fri, Jun 20, 2025 at 04:24:47PM +0100, Matthew Auld wrote:
> > > > When clearing VRAM we should be able to skip invalidating the TLBs if we
> > > 
> > > For copies, we always program SRAM PTEs, and need a invalidate?
> > > Maybe mention this in the commit message.
> > 
> > Yup exactly that. I don't think we currently do vram -> vram in practice so
> > I didn't bother with the copy path. Will tweak the commit message.
> > 
> > > 
> > > > are only using the identity map to access VRAM (which is the common
> > > > case), since no modifications are made to PTEs on the fly. Also since we
> > > > use huge 1G entries within the identity map, there should be a pretty
> > > > decent chance that the next packet(s) (if also clears) can avoid a tree
> > > > walk if we don't shoot down the TLBs, like if we have to process a long
> > > > stream of clears.
> > > > 
> > > > Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> > > > Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > > > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > > > Cc: Matthew Brost <matthew.brost@intel.com>
> > > > ---
> > > >   drivers/gpu/drm/xe/xe_migrate.c  | 18 +++++++++++-------
> > > >   drivers/gpu/drm/xe/xe_ring_ops.c | 10 +++++-----
> > > >   2 files changed, 16 insertions(+), 12 deletions(-)
> > > > 
> > > > diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> > > > index 8f8e9fdfb2a8..a76363740a12 100644
> > > > --- a/drivers/gpu/drm/xe/xe_migrate.c
> > > > +++ b/drivers/gpu/drm/xe/xe_migrate.c
> > > > @@ -896,7 +896,7 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
> > > >   			goto err;
> > > >   		}
> > > > -		xe_sched_job_add_migrate_flush(job, flush_flags);
> > > > +		xe_sched_job_add_migrate_flush(job, flush_flags | MI_INVALIDATE_TLB);
> > > >   		if (!fence) {
> > > >   			err = xe_sched_job_add_deps(job, src_bo->ttm.base.resv,
> > > >   						    DMA_RESV_USAGE_BOOKKEEP);
> > > > @@ -1119,11 +1119,13 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
> > > >   		size -= clear_L0;
> > > >   		/* Preemption is enabled again by the ring ops. */
> > > > -		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it))
> > > > +		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it)) {
> > > >   			xe_res_next(&src_it, clear_L0);
> > > > -		else
> > > > -			emit_pte(m, bb, clear_L0_pt, clear_vram, clear_only_system_ccs,
> > > > -				 &src_it, clear_L0, dst);
> > > > +		} else {
> > > > +			emit_pte(m, bb, clear_L0_pt, clear_vram,
> > > > +				 clear_only_system_ccs, &src_it, clear_L0, dst);
> > > > +			flush_flags |= MI_INVALIDATE_TLB;
> > > > +		}
> > > 
> > > What about the if statements for dst_it / copy_system_ccs? Do we not
> > > need to set MI_INVALIDATE_TLB there?
> > 
> > You mean for the copy path? We unconditionally apply MI_INVALIDATE_TLB when
> > doing any copy.
> > 
> 
> I was looking at wrong function (xe_migrate_copy) - I thought there were 
> a couple more calls to emit_pte here but on 2nd look, nope.
> 
> So patch the LGTM:
> Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> 

Hey since you are here. I noticed in emit_migration_job_gen12

> > > 
> > > Matt
> > > 
> > > >   		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
> > > >   		update_idx = bb->len;
> > > > @@ -1134,7 +1136,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
> > > >   		if (xe_migrate_needs_ccs_emit(xe)) {
> > > >   			emit_copy_ccs(gt, bb, clear_L0_ofs, true,
> > > >   				      m->cleared_mem_ofs, false, clear_L0);
> > > > -			flush_flags = MI_FLUSH_DW_CCS;
> > > > +			flush_flags |= MI_FLUSH_DW_CCS;
> > > >   		}
> > > >   		job = xe_bb_create_migration_job(m->q, bb,
> > > > @@ -1469,6 +1471,8 @@ __xe_migrate_update_pgtables(struct xe_migrate *m,
> > > >   		goto err_sa;
> > > >   	}
> > > > +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
> > > > +
> > > >   	if (ops->pre_commit) {
> > > >   		pt_update->job = job;
> > > >   		err = ops->pre_commit(pt_update);
> > > > @@ -1667,7 +1671,7 @@ static struct dma_fence *xe_migrate_vram(struct xe_migrate *m,
> > > >   		goto err;
> > > >   	}
> > > > -	xe_sched_job_add_migrate_flush(job, 0);
> > > > +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
> > > >   	mutex_lock(&m->job_mutex);
> > > >   	xe_sched_job_arm(job);
> > > > diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > > index bc1689db4cd7..b5548e0769f4 100644
> > > > --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> > > > +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > > @@ -110,10 +110,10 @@ static int emit_bb_start(u64 batch_addr, u32 ppgtt_flag, u32 *dw, int i)
> > > >   	return i;
> > > >   }
> > > > -static int emit_flush_invalidate(u32 *dw, int i)
> > > > +static int emit_flush_invalidate(u32 *dw, int i, u32 flush_flags)
> > > >   {
> > > > -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | MI_FLUSH_DW_OP_STOREDW |
> > > > -		  MI_FLUSH_IMM_DW | MI_FLUSH_DW_STORE_INDEX;
> > > > +	dw[i++] = MI_FLUSH_DW |  MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW |
> > > > +		MI_FLUSH_DW_STORE_INDEX | (flush_flags & MI_INVALIDATE_TLB) ?: 0;
> > > >   	dw[i++] = LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR;
> > > >   	dw[i++] = 0;
> > > >   	dw[i++] = 0;
> > > > @@ -411,13 +411,13 @@ static void emit_migration_job_gen12(struct xe_sched_job *job,
> > > >   	if (!IS_SRIOV_VF(gt_to_xe(job->q->gt))) {
> > > >   		/* XXX: Do we need this? Leaving for now. */
> > > >   		dw[i++] = preparser_disable(true);
> > > > -		i = emit_flush_invalidate(dw, i);
> > > > +		i = emit_flush_invalidate(dw, i, job->migrate_flush_flags);
> > > >   		dw[i++] = preparser_disable(false);
> > > >   	}
> > > >   	i = emit_bb_start(job->ptrs[1].batch_addr, BIT(8), dw, i);
> > > > -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | job->migrate_flush_flags |
> > > > +	dw[i++] = MI_FLUSH_DW | job->migrate_flush_flags |

Just noticed this part. Do we need to ever invalidate the TLBs here? I'm
confused why we would. The first batch emits the PTEs, the second does a
copy. Why after a copy would we have to invalidate the PTEs? The next
job should invalidate the PTEs after emitting them.

Not blocker as this is existing code but maybe in a follow up we never
invalidate here.

Matt

> > > >   		MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW;
> > > >   	dw[i++] = xe_lrc_seqno_ggtt_addr(lrc) | MI_FLUSH_DW_USE_GTT;
> > > >   	dw[i++] = 0;
> > > > -- 
> > > > 2.49.0
> > > > 
> > 

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

* ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2)
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
                   ` (2 preceding siblings ...)
  2025-06-21  1:48 ` ✓ Xe.CI.Full: success for " Patchwork
@ 2025-06-24  7:48 ` Patchwork
  2025-06-24  8:36 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-24  7:48 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe

== Series Details ==

Series: drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2)
URL   : https://patchwork.freedesktop.org/series/150574/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:47:06] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:47:10] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:47:37] Starting KUnit Kernel (1/1)...
[07:47:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:47:37] ================== guc_buf (11 subtests) ===================
[07:47:37] [PASSED] test_smallest
[07:47:37] [PASSED] test_largest
[07:47:37] [PASSED] test_granular
[07:47:37] [PASSED] test_unique
[07:47:37] [PASSED] test_overlap
[07:47:37] [PASSED] test_reusable
[07:47:37] [PASSED] test_too_big
[07:47:37] [PASSED] test_flush
[07:47:37] [PASSED] test_lookup
[07:47:37] [PASSED] test_data
[07:47:37] [PASSED] test_class
[07:47:37] ===================== [PASSED] guc_buf =====================
[07:47:37] =================== guc_dbm (7 subtests) ===================
[07:47:37] [PASSED] test_empty
[07:47:37] [PASSED] test_default
[07:47:37] ======================== test_size  ========================
[07:47:37] [PASSED] 4
[07:47:37] [PASSED] 8
[07:47:37] [PASSED] 32
[07:47:37] [PASSED] 256
[07:47:37] ==================== [PASSED] test_size ====================
[07:47:37] ======================= test_reuse  ========================
[07:47:37] [PASSED] 4
[07:47:37] [PASSED] 8
[07:47:37] [PASSED] 32
[07:47:37] [PASSED] 256
[07:47:37] =================== [PASSED] test_reuse ====================
[07:47:37] =================== test_range_overlap  ====================
[07:47:37] [PASSED] 4
[07:47:37] [PASSED] 8
[07:47:37] [PASSED] 32
[07:47:37] [PASSED] 256
[07:47:37] =============== [PASSED] test_range_overlap ================
[07:47:37] =================== test_range_compact  ====================
[07:47:37] [PASSED] 4
[07:47:37] [PASSED] 8
[07:47:37] [PASSED] 32
[07:47:37] [PASSED] 256
[07:47:37] =============== [PASSED] test_range_compact ================
[07:47:37] ==================== test_range_spare  =====================
[07:47:37] [PASSED] 4
[07:47:37] [PASSED] 8
[07:47:37] [PASSED] 32
[07:47:37] [PASSED] 256
[07:47:37] ================ [PASSED] test_range_spare =================
[07:47:37] ===================== [PASSED] guc_dbm =====================
[07:47:37] =================== guc_idm (6 subtests) ===================
[07:47:37] [PASSED] bad_init
[07:47:37] [PASSED] no_init
[07:47:37] [PASSED] init_fini
[07:47:37] [PASSED] check_used
[07:47:37] [PASSED] check_quota
[07:47:37] [PASSED] check_all
[07:47:37] ===================== [PASSED] guc_idm =====================
[07:47:37] ================== no_relay (3 subtests) ===================
[07:47:37] [PASSED] xe_drops_guc2pf_if_not_ready
[07:47:37] [PASSED] xe_drops_guc2vf_if_not_ready
[07:47:37] [PASSED] xe_rejects_send_if_not_ready
[07:47:37] ==================== [PASSED] no_relay =====================
[07:47:37] ================== pf_relay (14 subtests) ==================
[07:47:37] [PASSED] pf_rejects_guc2pf_too_short
[07:47:37] [PASSED] pf_rejects_guc2pf_too_long
[07:47:37] [PASSED] pf_rejects_guc2pf_no_payload
[07:47:37] [PASSED] pf_fails_no_payload
[07:47:37] [PASSED] pf_fails_bad_origin
[07:47:37] [PASSED] pf_fails_bad_type
[07:47:37] [PASSED] pf_txn_reports_error
[07:47:37] [PASSED] pf_txn_sends_pf2guc
[07:47:37] [PASSED] pf_sends_pf2guc
[07:47:37] [SKIPPED] pf_loopback_nop
[07:47:37] [SKIPPED] pf_loopback_echo
[07:47:37] [SKIPPED] pf_loopback_fail
[07:47:37] [SKIPPED] pf_loopback_busy
[07:47:37] [SKIPPED] pf_loopback_retry
[07:47:37] ==================== [PASSED] pf_relay =====================
[07:47:37] ================== vf_relay (3 subtests) ===================
[07:47:37] [PASSED] vf_rejects_guc2vf_too_short
[07:47:37] [PASSED] vf_rejects_guc2vf_too_long
[07:47:37] [PASSED] vf_rejects_guc2vf_no_payload
[07:47:37] ==================== [PASSED] vf_relay =====================
[07:47:37] ================= pf_service (11 subtests) =================
[07:47:37] [PASSED] pf_negotiate_any
[07:47:37] [PASSED] pf_negotiate_base_match
[07:47:37] [PASSED] pf_negotiate_base_newer
[07:47:37] [PASSED] pf_negotiate_base_next
[07:47:37] [SKIPPED] pf_negotiate_base_older
[07:47:37] [PASSED] pf_negotiate_base_prev
[07:47:37] [PASSED] pf_negotiate_latest_match
[07:47:37] [PASSED] pf_negotiate_latest_newer
[07:47:37] [PASSED] pf_negotiate_latest_next
[07:47:37] [SKIPPED] pf_negotiate_latest_older
[07:47:37] [SKIPPED] pf_negotiate_latest_prev
[07:47:37] =================== [PASSED] pf_service ====================
[07:47:37] ===================== lmtt (1 subtest) =====================
[07:47:37] ======================== test_ops  =========================
[07:47:37] [PASSED] 2-level
[07:47:37] [PASSED] multi-level
[07:47:37] ==================== [PASSED] test_ops =====================
[07:47:37] ====================== [PASSED] lmtt =======================
[07:47:37] =================== xe_mocs (2 subtests) ===================
[07:47:37] ================ xe_live_mocs_kernel_kunit  ================
[07:47:37] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:47:37] ================ xe_live_mocs_reset_kunit  =================
[07:47:37] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:47:37] ==================== [SKIPPED] xe_mocs =====================
[07:47:37] ================= xe_migrate (2 subtests) ==================
[07:47:37] ================= xe_migrate_sanity_kunit  =================
[07:47:37] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:47:37] ================== xe_validate_ccs_kunit  ==================
[07:47:37] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:47:37] =================== [SKIPPED] xe_migrate ===================
[07:47:37] ================== xe_dma_buf (1 subtest) ==================
[07:47:37] ==================== xe_dma_buf_kunit  =====================
[07:47:37] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:47:37] =================== [SKIPPED] xe_dma_buf ===================
[07:47:37] ================= xe_bo_shrink (1 subtest) =================
[07:47:37] =================== xe_bo_shrink_kunit  ====================
[07:47:37] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:47:37] ================== [SKIPPED] xe_bo_shrink ==================
[07:47:37] ==================== xe_bo (2 subtests) ====================
[07:47:37] ================== xe_ccs_migrate_kunit  ===================
[07:47:37] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:47:37] ==================== xe_bo_evict_kunit  ====================
[07:47:37] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:47:37] ===================== [SKIPPED] xe_bo ======================
[07:47:37] ==================== args (11 subtests) ====================
[07:47:37] [PASSED] count_args_test
[07:47:37] [PASSED] call_args_example
[07:47:37] [PASSED] call_args_test
[07:47:37] [PASSED] drop_first_arg_example
[07:47:37] [PASSED] drop_first_arg_test
[07:47:37] [PASSED] first_arg_example
[07:47:37] [PASSED] first_arg_test
[07:47:37] [PASSED] last_arg_example
[07:47:37] [PASSED] last_arg_test
[07:47:37] [PASSED] pick_arg_example
[07:47:37] [PASSED] sep_comma_example
[07:47:37] ====================== [PASSED] args =======================
[07:47:37] =================== xe_pci (2 subtests) ====================
[07:47:37] ==================== check_graphics_ip  ====================
[07:47:37] [PASSED] 12.70 Xe_LPG
[07:47:37] [PASSED] 12.71 Xe_LPG
[07:47:37] [PASSED] 12.74 Xe_LPG+
[07:47:37] [PASSED] 20.01 Xe2_HPG
[07:47:37] [PASSED] 20.02 Xe2_HPG
[07:47:37] [PASSED] 20.04 Xe2_LPG
[07:47:37] [PASSED] 30.00 Xe3_LPG
[07:47:37] [PASSED] 30.01 Xe3_LPG
[07:47:37] [PASSED] 30.03 Xe3_LPG
[07:47:37] ================ [PASSED] check_graphics_ip ================
[07:47:37] ===================== check_media_ip  ======================
[07:47:37] [PASSED] 13.00 Xe_LPM+
[07:47:37] [PASSED] 13.01 Xe2_HPM
[07:47:37] [PASSED] 20.00 Xe2_LPM
[07:47:37] [PASSED] 30.00 Xe3_LPM
[07:47:37] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[07:47:37] ================= [PASSED] check_media_ip ==================
[07:47:37] ===================== [PASSED] xe_pci ======================
[07:47:37] =================== xe_rtp (2 subtests) ====================
[07:47:37] =============== xe_rtp_process_to_sr_tests  ================
[07:47:37] [PASSED] coalesce-same-reg
[07:47:37] [PASSED] no-match-no-add
[07:47:37] [PASSED] match-or
[07:47:37] [PASSED] match-or-xfail
[07:47:37] [PASSED] no-match-no-add-multiple-rules
[07:47:37] [PASSED] two-regs-two-entries
[07:47:37] [PASSED] clr-one-set-other
[07:47:37] [PASSED] set-field
[07:47:37] [PASSED] conflict-duplicate
[07:47:37] [PASSED] conflict-not-disjoint
[07:47:37] [PASSED] conflict-reg-type
[07:47:37] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:47:37] ================== xe_rtp_process_tests  ===================
[07:47:37] [PASSED] active1
[07:47:37] [PASSED] active2
[07:47:37] [PASSED] active-inactive
[07:47:37] [PASSED] inactive-active
[07:47:37] [PASSED] inactive-1st_or_active-inactive
[07:47:37] [PASSED] inactive-2nd_or_active-inactive
[07:47:37] [PASSED] inactive-last_or_active-inactive
[07:47:37] [PASSED] inactive-no_or_active-inactive
[07:47:37] ============== [PASSED] xe_rtp_process_tests ===============
[07:47:37] ===================== [PASSED] xe_rtp ======================
[07:47:37] ==================== xe_wa (1 subtest) =====================
[07:47:37] ======================== xe_wa_gt  =========================
[07:47:37] [PASSED] TIGERLAKE (B0)
[07:47:37] [PASSED] DG1 (A0)
[07:47:37] [PASSED] DG1 (B0)
[07:47:37] [PASSED] ALDERLAKE_S (A0)
[07:47:37] [PASSED] ALDERLAKE_S (B0)
[07:47:37] [PASSED] ALDERLAKE_S (C0)
[07:47:37] [PASSED] ALDERLAKE_S (D0)
[07:47:37] [PASSED] ALDERLAKE_P (A0)
[07:47:37] [PASSED] ALDERLAKE_P (B0)
[07:47:37] [PASSED] ALDERLAKE_P (C0)
[07:47:37] [PASSED] ALDERLAKE_S_RPLS (D0)
[07:47:37] [PASSED] ALDERLAKE_P_RPLU (E0)
[07:47:37] [PASSED] DG2_G10 (C0)
[07:47:37] [PASSED] DG2_G11 (B1)
[07:47:37] [PASSED] DG2_G12 (A1)
[07:47:37] [PASSED] METEORLAKE (g:A0, m:A0)
[07:47:37] [PASSED] METEORLAKE (g:A0, m:A0)
[07:47:37] [PASSED] METEORLAKE (g:A0, m:A0)
[07:47:37] [PASSED] LUNARLAKE (g:A0, m:A0)
[07:47:37] [PASSED] LUNARLAKE (g:B0, m:A0)
[07:47:37] [PASSED] BATTLEMAGE (g:A0, m:A1)
[07:47:37] ==================== [PASSED] xe_wa_gt =====================
[07:47:37] ====================== [PASSED] xe_wa ======================
[07:47:37] ============================================================
[07:47:37] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[07:47:37] Elapsed time: 31.490s total, 4.153s configuring, 27.020s building, 0.302s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2)
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
                   ` (3 preceding siblings ...)
  2025-06-24  7:48 ` ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2) Patchwork
@ 2025-06-24  8:36 ` Patchwork
  2025-06-24 13:23 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-24  8:36 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2)
URL   : https://patchwork.freedesktop.org/series/150574/
State : success

== Summary ==

CI Bug Log - changes from xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7_BAT -> xe-pw-150574v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-adlp-vm 


Changes
-------

  No changes found


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

  * Linux: xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7 -> xe-pw-150574v2

  IGT_8423: 8423
  xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7: da56936fad6f5e1d5f0cef8b50277bfb071eefe7
  xe-pw-150574v2: 150574v2

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional
  2025-06-23 21:48       ` Matthew Brost
@ 2025-06-24  9:11         ` Matthew Auld
  0 siblings, 0 replies; 14+ messages in thread
From: Matthew Auld @ 2025-06-24  9:11 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe, Himal Prasad Ghimiray, Thomas Hellström

On 23/06/2025 22:48, Matthew Brost wrote:
> On Mon, Jun 23, 2025 at 04:24:37AM -0700, Matthew Brost wrote:
>> On Mon, Jun 23, 2025 at 10:33:13AM +0100, Matthew Auld wrote:
>>> On 20/06/2025 17:11, Matthew Brost wrote:
>>>> On Fri, Jun 20, 2025 at 04:24:47PM +0100, Matthew Auld wrote:
>>>>> When clearing VRAM we should be able to skip invalidating the TLBs if we
>>>>
>>>> For copies, we always program SRAM PTEs, and need a invalidate?
>>>> Maybe mention this in the commit message.
>>>
>>> Yup exactly that. I don't think we currently do vram -> vram in practice so
>>> I didn't bother with the copy path. Will tweak the commit message.
>>>
>>>>
>>>>> are only using the identity map to access VRAM (which is the common
>>>>> case), since no modifications are made to PTEs on the fly. Also since we
>>>>> use huge 1G entries within the identity map, there should be a pretty
>>>>> decent chance that the next packet(s) (if also clears) can avoid a tree
>>>>> walk if we don't shoot down the TLBs, like if we have to process a long
>>>>> stream of clears.
>>>>>
>>>>> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
>>>>> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>>>>> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>>>>> Cc: Matthew Brost <matthew.brost@intel.com>
>>>>> ---
>>>>>    drivers/gpu/drm/xe/xe_migrate.c  | 18 +++++++++++-------
>>>>>    drivers/gpu/drm/xe/xe_ring_ops.c | 10 +++++-----
>>>>>    2 files changed, 16 insertions(+), 12 deletions(-)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
>>>>> index 8f8e9fdfb2a8..a76363740a12 100644
>>>>> --- a/drivers/gpu/drm/xe/xe_migrate.c
>>>>> +++ b/drivers/gpu/drm/xe/xe_migrate.c
>>>>> @@ -896,7 +896,7 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>>>>>    			goto err;
>>>>>    		}
>>>>> -		xe_sched_job_add_migrate_flush(job, flush_flags);
>>>>> +		xe_sched_job_add_migrate_flush(job, flush_flags | MI_INVALIDATE_TLB);
>>>>>    		if (!fence) {
>>>>>    			err = xe_sched_job_add_deps(job, src_bo->ttm.base.resv,
>>>>>    						    DMA_RESV_USAGE_BOOKKEEP);
>>>>> @@ -1119,11 +1119,13 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
>>>>>    		size -= clear_L0;
>>>>>    		/* Preemption is enabled again by the ring ops. */
>>>>> -		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it))
>>>>> +		if (clear_vram && xe_migrate_allow_identity(clear_L0, &src_it)) {
>>>>>    			xe_res_next(&src_it, clear_L0);
>>>>> -		else
>>>>> -			emit_pte(m, bb, clear_L0_pt, clear_vram, clear_only_system_ccs,
>>>>> -				 &src_it, clear_L0, dst);
>>>>> +		} else {
>>>>> +			emit_pte(m, bb, clear_L0_pt, clear_vram,
>>>>> +				 clear_only_system_ccs, &src_it, clear_L0, dst);
>>>>> +			flush_flags |= MI_INVALIDATE_TLB;
>>>>> +		}
>>>>
>>>> What about the if statements for dst_it / copy_system_ccs? Do we not
>>>> need to set MI_INVALIDATE_TLB there?
>>>
>>> You mean for the copy path? We unconditionally apply MI_INVALIDATE_TLB when
>>> doing any copy.
>>>
>>
>> I was looking at wrong function (xe_migrate_copy) - I thought there were
>> a couple more calls to emit_pte here but on 2nd look, nope.
>>
>> So patch the LGTM:
>> Reviewed-by: Matthew Brost <matthew.brost@intel.com>
>>
> 
> Hey since you are here. I noticed in emit_migration_job_gen12
> 
>>>>
>>>> Matt
>>>>
>>>>>    		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
>>>>>    		update_idx = bb->len;
>>>>> @@ -1134,7 +1136,7 @@ struct dma_fence *xe_migrate_clear(struct xe_migrate *m,
>>>>>    		if (xe_migrate_needs_ccs_emit(xe)) {
>>>>>    			emit_copy_ccs(gt, bb, clear_L0_ofs, true,
>>>>>    				      m->cleared_mem_ofs, false, clear_L0);
>>>>> -			flush_flags = MI_FLUSH_DW_CCS;
>>>>> +			flush_flags |= MI_FLUSH_DW_CCS;
>>>>>    		}
>>>>>    		job = xe_bb_create_migration_job(m->q, bb,
>>>>> @@ -1469,6 +1471,8 @@ __xe_migrate_update_pgtables(struct xe_migrate *m,
>>>>>    		goto err_sa;
>>>>>    	}
>>>>> +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
>>>>> +
>>>>>    	if (ops->pre_commit) {
>>>>>    		pt_update->job = job;
>>>>>    		err = ops->pre_commit(pt_update);
>>>>> @@ -1667,7 +1671,7 @@ static struct dma_fence *xe_migrate_vram(struct xe_migrate *m,
>>>>>    		goto err;
>>>>>    	}
>>>>> -	xe_sched_job_add_migrate_flush(job, 0);
>>>>> +	xe_sched_job_add_migrate_flush(job, MI_INVALIDATE_TLB);
>>>>>    	mutex_lock(&m->job_mutex);
>>>>>    	xe_sched_job_arm(job);
>>>>> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
>>>>> index bc1689db4cd7..b5548e0769f4 100644
>>>>> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
>>>>> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
>>>>> @@ -110,10 +110,10 @@ static int emit_bb_start(u64 batch_addr, u32 ppgtt_flag, u32 *dw, int i)
>>>>>    	return i;
>>>>>    }
>>>>> -static int emit_flush_invalidate(u32 *dw, int i)
>>>>> +static int emit_flush_invalidate(u32 *dw, int i, u32 flush_flags)
>>>>>    {
>>>>> -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | MI_FLUSH_DW_OP_STOREDW |
>>>>> -		  MI_FLUSH_IMM_DW | MI_FLUSH_DW_STORE_INDEX;
>>>>> +	dw[i++] = MI_FLUSH_DW |  MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW |
>>>>> +		MI_FLUSH_DW_STORE_INDEX | (flush_flags & MI_INVALIDATE_TLB) ?: 0;
>>>>>    	dw[i++] = LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR;
>>>>>    	dw[i++] = 0;
>>>>>    	dw[i++] = 0;
>>>>> @@ -411,13 +411,13 @@ static void emit_migration_job_gen12(struct xe_sched_job *job,
>>>>>    	if (!IS_SRIOV_VF(gt_to_xe(job->q->gt))) {
>>>>>    		/* XXX: Do we need this? Leaving for now. */
>>>>>    		dw[i++] = preparser_disable(true);
>>>>> -		i = emit_flush_invalidate(dw, i);
>>>>> +		i = emit_flush_invalidate(dw, i, job->migrate_flush_flags);
>>>>>    		dw[i++] = preparser_disable(false);
>>>>>    	}
>>>>>    	i = emit_bb_start(job->ptrs[1].batch_addr, BIT(8), dw, i);
>>>>> -	dw[i++] = MI_FLUSH_DW | MI_INVALIDATE_TLB | job->migrate_flush_flags |
>>>>> +	dw[i++] = MI_FLUSH_DW | job->migrate_flush_flags |
> 
> Just noticed this part. Do we need to ever invalidate the TLBs here? I'm
> confused why we would. The first batch emits the PTEs, the second does a
> copy. Why after a copy would we have to invalidate the PTEs? The next
> job should invalidate the PTEs after emitting them.
> 
> Not blocker as this is existing code but maybe in a follow up we never
> invalidate here.

Yeah agree, don't see why we need that.

> 
> Matt
> 
>>>>>    		MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW;
>>>>>    	dw[i++] = xe_lrc_seqno_ggtt_addr(lrc) | MI_FLUSH_DW_USE_GTT;
>>>>>    	dw[i++] = 0;
>>>>> -- 
>>>>> 2.49.0
>>>>>
>>>


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

* ✗ Xe.CI.Full: failure for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2)
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
                   ` (4 preceding siblings ...)
  2025-06-24  8:36 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-24 13:23 ` Patchwork
  2025-06-25 14:44 ` ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3) Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-24 13:23 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2)
URL   : https://patchwork.freedesktop.org/series/150574/
State : failure

== Summary ==

CI Bug Log - changes from xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7_FULL -> xe-pw-150574v2_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-150574v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_compute_mode@many-bindexecqueue-rebind:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_exec_compute_mode@many-bindexecqueue-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@xe_exec_compute_mode@many-bindexecqueue-rebind.html

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

  Here are the changes found in xe-pw-150574v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          NOTRUN -> [FAIL][3] ([Intel XE#4665])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@intel_hwmon@hwmon-write.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][4] ([Intel XE#3767]) +15 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html

  * igt@kms_async_flips@crc:
    - shard-adlp:         [PASS][5] -> [DMESG-FAIL][6] ([Intel XE#4543]) +1 other test dmesg-fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-adlp-6/igt@kms_async_flips@crc.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-2/igt@kms_async_flips@crc.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [PASS][7] -> [FAIL][8] ([Intel XE#3908]) +3 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-adlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][9] ([Intel XE#316])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

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

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2327]) +4 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-adlp:         NOTRUN -> [SKIP][12] ([Intel XE#316])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#1124]) +5 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

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

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2314] / [Intel XE#2894])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#367]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#367])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#787]) +139 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][20] -> [INCOMPLETE][21] ([Intel XE#3862])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][22] ([Intel XE#3862])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#3432])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#2907])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][26] ([Intel XE#787]) +5 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +20 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][30] ([Intel XE#3124])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][31] ([Intel XE#1727] / [Intel XE#3113])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html

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

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2724])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html

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

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#306])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2325])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-adlp:         NOTRUN -> [SKIP][37] ([Intel XE#373])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2252]) +10 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#373])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2341]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#307])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2321])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2320])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#1424])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#455]) +4 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2291])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][47] -> [SKIP][48] ([Intel XE#2291]) +3 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#309])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][50] ([Intel XE#309])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][51] -> [SKIP][52] ([Intel XE#1340])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#3009])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_dp_aux_dev.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2244])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#4422])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#776])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2372])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][58] -> [SKIP][59] ([Intel XE#2373])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-2/igt@kms_feature_discovery@display-2x.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][60] -> [FAIL][61] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][62] -> [FAIL][63] ([Intel XE#301]) +5 other tests fail
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#310])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2316]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][66] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [PASS][67] -> [SKIP][68] ([Intel XE#2316]) +6 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@2x-wf_vblank-ts-check@ac-dp2-hdmi-a3:
    - shard-bmg:          NOTRUN -> [FAIL][69] ([Intel XE#2882]) +2 other tests fail
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check@ac-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-expired-vblank@b-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][70] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][71] ([Intel XE#301]) +8 other tests fail
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [PASS][72] -> [DMESG-WARN][73] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
    - shard-bmg:          NOTRUN -> [INCOMPLETE][74] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2293] / [Intel XE#2380])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2293])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1401] / [Intel XE#1745])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1401])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-adlp:         NOTRUN -> [SKIP][79] ([Intel XE#455]) +3 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#651]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#2312]) +12 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#4141]) +5 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw:
    - shard-adlp:         NOTRUN -> [SKIP][83] ([Intel XE#656]) +3 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#2311]) +17 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#656])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#651]) +2 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][87] ([Intel XE#658])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#2352])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][89] ([Intel XE#653])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#2350])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2313]) +17 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][92] ([Intel XE#653]) +4 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [PASS][93] -> [SKIP][94] ([Intel XE#1503]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-1/igt@kms_hdr@static-swap.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2927])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#2501])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2486]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#4329])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [PASS][99] -> [SKIP][100] ([Intel XE#4596])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#4596])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#870]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#1489]) +7 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-adlp:         NOTRUN -> [SKIP][105] ([Intel XE#1489]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#1489])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-adlp:         NOTRUN -> [SKIP][107] ([Intel XE#1122])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-adlp:         NOTRUN -> [SKIP][108] ([Intel XE#2850] / [Intel XE#929])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][109] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_psr@psr2-sprite-blt:
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_psr@psr2-sprite-blt.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-adlp:         NOTRUN -> [SKIP][111] ([Intel XE#1127])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#3414] / [Intel XE#3904])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#2413]) +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#1435]) +1 other test skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-adlp:         NOTRUN -> [SKIP][115] ([Intel XE#362])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][116] -> [FAIL][117] ([Intel XE#4459]) +1 other test fail
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@flipline:
    - shard-bmg:          NOTRUN -> [SKIP][118] ([Intel XE#1499])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@kms_vrr@flipline.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][119] ([Intel XE#1126])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_eudebug@basic-vm-access-parameters-faultable:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#4837])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@xe_eudebug@basic-vm-access-parameters-faultable.html

  * igt@xe_eudebug@basic-vm-access-parameters-userptr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][121] ([Intel XE#4837]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@xe_eudebug@basic-vm-access-parameters-userptr.html

  * igt@xe_eudebug_online@reset-with-attention:
    - shard-adlp:         NOTRUN -> [SKIP][122] ([Intel XE#4837])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@xe_eudebug_online@reset-with-attention.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-bmg:          NOTRUN -> [SKIP][123] ([Intel XE#4837]) +12 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][124] ([Intel XE#1392])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
    - shard-dg2-set2:     [PASS][125] -> [SKIP][126] ([Intel XE#1392]) +4 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#2322]) +7 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue:
    - shard-adlp:         NOTRUN -> [SKIP][128] ([Intel XE#288]) +4 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][129] ([Intel XE#288]) +3 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html

  * igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#4943]) +22 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#4943]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-1/igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@once-mmap-new-race:
    - shard-adlp:         NOTRUN -> [SKIP][132] ([Intel XE#4915]) +34 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@xe_exec_system_allocator@once-mmap-new-race.html

  * igt@xe_exec_system_allocator@partial-middle-remap-no-cpu-fault:
    - shard-bmg:          [PASS][133] -> [FAIL][134] ([Intel XE#4937])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-2/igt@xe_exec_system_allocator@partial-middle-remap-no-cpu-fault.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-1/igt@xe_exec_system_allocator@partial-middle-remap-no-cpu-fault.html

  * igt@xe_exec_system_allocator@threads-many-execqueues-malloc-busy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][135] ([Intel XE#4915]) +35 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-execqueues-malloc-busy.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [PASS][136] -> [FAIL][137] ([Intel XE#5018]) +1 other test fail
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_mmap@pci-membarrier-bad-pagesize:
    - shard-adlp:         NOTRUN -> [SKIP][138] ([Intel XE#5100])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@xe_mmap@pci-membarrier-bad-pagesize.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([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], [PASS][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], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [SKIP][185]) ([Intel XE#2457])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-5/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-5/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-2/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-8/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-8/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-2/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-2/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-8/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-2/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-1/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-1/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-5/igt@xe_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@xe_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@xe_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@xe_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-1/igt@xe_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-1/igt@xe_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-1/igt@xe_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-1/igt@xe_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@xe_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@xe_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-3/igt@xe_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-3/igt@xe_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@xe_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_module_load@load.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_module_load@load.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_module_load@load.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@xe_module_load@load.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@xe_module_load@load.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-3/igt@xe_module_load@load.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@xe_module_load@load.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@xe_module_load@load.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@xe_module_load@load.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_module_load@load.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@xe_module_load@load.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@xe_module_load@load.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_module_load@load.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@xe_module_load@load.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     NOTRUN -> [SKIP][186] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_oa@short-reads:
    - shard-adlp:         NOTRUN -> [SKIP][187] ([Intel XE#2541] / [Intel XE#3573])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-1/igt@xe_oa@short-reads.html

  * igt@xe_oa@syncs-ufence-wait:
    - shard-dg2-set2:     NOTRUN -> [SKIP][188] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@xe_oa@syncs-ufence-wait.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          NOTRUN -> [SKIP][189] ([Intel XE#2236])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][190] ([Intel XE#2284])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [PASS][191] -> [FAIL][192] ([Intel XE#5166]) +1 other test fail
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-432/igt@xe_pmu@gt-frequency.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-432/igt@xe_pmu@gt-frequency.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][193] ([Intel XE#4733]) +2 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][194] ([Intel XE#4733])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html

  * igt@xe_query@multigpu-query-config:
    - shard-bmg:          NOTRUN -> [SKIP][195] ([Intel XE#944])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-2/igt@xe_query@multigpu-query-config.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-dg2-set2:     NOTRUN -> [SKIP][196] ([Intel XE#944])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-436/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-bmg:          NOTRUN -> [SKIP][197] ([Intel XE#4130]) +1 other test skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  
#### Possible fixes ####

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][198] ([Intel XE#4543]) -> [PASS][199] +1 other test pass
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][200] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][201] +1 other test pass
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [SKIP][202] ([Intel XE#2316]) -> [PASS][203] +3 other tests pass
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_flip@2x-plain-flip.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][204] ([Intel XE#4596]) -> [PASS][205]
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-adlp:         [DMESG-WARN][206] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][207] +7 other tests pass
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-adlp-6/igt@kms_vblank@ts-continuation-suspend.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-adlp-4/igt@kms_vblank@ts-continuation-suspend.html

  * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
    - shard-dg2-set2:     [SKIP][208] ([Intel XE#1392]) -> [PASS][209] +6 other tests pass
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [DMESG-WARN][210] ([Intel XE#3876]) -> [PASS][211]
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_pm@s3-basic:
    - shard-bmg:          [INCOMPLETE][212] ([Intel XE#569]) -> [PASS][213]
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_pm@s3-basic.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@xe_pm@s3-basic.html

  * igt@xe_pm@s4-basic-exec:
    - shard-bmg:          [ABORT][214] ([Intel XE#5255]) -> [PASS][215] +1 other test pass
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@xe_pm@s4-basic-exec.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm_residency@cpg-basic:
    - shard-dg2-set2:     [INCOMPLETE][216] ([Intel XE#3088]) -> [PASS][217]
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-435/igt@xe_pm_residency@cpg-basic.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@xe_pm_residency@cpg-basic.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][218] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [INCOMPLETE][219] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [FAIL][220] ([Intel XE#1178]) -> [SKIP][221] ([Intel XE#2341])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [SKIP][222] ([Intel XE#2316]) -> [FAIL][223] ([Intel XE#2882])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][224] ([Intel XE#2312]) -> [SKIP][225] ([Intel XE#2311]) +8 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][226] ([Intel XE#2311]) -> [SKIP][227] ([Intel XE#2312]) +12 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][228] ([Intel XE#4141]) -> [SKIP][229] ([Intel XE#2312]) +8 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][230] ([Intel XE#2312]) -> [SKIP][231] ([Intel XE#4141]) +3 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][232] ([Intel XE#2312]) -> [SKIP][233] ([Intel XE#2313]) +10 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][234] ([Intel XE#2313]) -> [SKIP][235] ([Intel XE#2312]) +15 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     [SKIP][236] ([Intel XE#1500]) -> [SKIP][237] ([Intel XE#362])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_peer2peer@read:
    - shard-dg2-set2:     [FAIL][238] ([Intel XE#1173]) -> [SKIP][239] ([Intel XE#1061])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7/shard-dg2-436/igt@xe_peer2peer@read.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v2/shard-dg2-432/igt@xe_peer2peer@read.html

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

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5255
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7 -> xe-pw-150574v2

  IGT_8423: 8423
  xe-3296-da56936fad6f5e1d5f0cef8b50277bfb071eefe7: da56936fad6f5e1d5f0cef8b50277bfb071eefe7
  xe-pw-150574v2: 150574v2

== Logs ==

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

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

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

* ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3)
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
                   ` (5 preceding siblings ...)
  2025-06-24 13:23 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-06-25 14:44 ` Patchwork
  2025-06-25 15:23 ` ✓ Xe.CI.BAT: " Patchwork
  2025-06-26 13:50 ` ✗ Xe.CI.Full: failure " Patchwork
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-25 14:44 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe

== Series Details ==

Series: drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3)
URL   : https://patchwork.freedesktop.org/series/150574/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:43:40] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:43:44] 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
[14:44:11] Starting KUnit Kernel (1/1)...
[14:44:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:44:12] ================== guc_buf (11 subtests) ===================
[14:44:12] [PASSED] test_smallest
[14:44:12] [PASSED] test_largest
[14:44:12] [PASSED] test_granular
[14:44:12] [PASSED] test_unique
[14:44:12] [PASSED] test_overlap
[14:44:12] [PASSED] test_reusable
[14:44:12] [PASSED] test_too_big
[14:44:12] [PASSED] test_flush
[14:44:12] [PASSED] test_lookup
[14:44:12] [PASSED] test_data
[14:44:12] [PASSED] test_class
[14:44:12] ===================== [PASSED] guc_buf =====================
[14:44:12] =================== guc_dbm (7 subtests) ===================
[14:44:12] [PASSED] test_empty
[14:44:12] [PASSED] test_default
[14:44:12] ======================== test_size  ========================
[14:44:12] [PASSED] 4
[14:44:12] [PASSED] 8
[14:44:12] [PASSED] 32
[14:44:12] [PASSED] 256
[14:44:12] ==================== [PASSED] test_size ====================
[14:44:12] ======================= test_reuse  ========================
[14:44:12] [PASSED] 4
[14:44:12] [PASSED] 8
[14:44:12] [PASSED] 32
[14:44:12] [PASSED] 256
[14:44:12] =================== [PASSED] test_reuse ====================
[14:44:12] =================== test_range_overlap  ====================
[14:44:12] [PASSED] 4
[14:44:12] [PASSED] 8
[14:44:12] [PASSED] 32
[14:44:12] [PASSED] 256
[14:44:12] =============== [PASSED] test_range_overlap ================
[14:44:12] =================== test_range_compact  ====================
[14:44:12] [PASSED] 4
[14:44:12] [PASSED] 8
[14:44:12] [PASSED] 32
[14:44:12] [PASSED] 256
[14:44:12] =============== [PASSED] test_range_compact ================
[14:44:12] ==================== test_range_spare  =====================
[14:44:12] [PASSED] 4
[14:44:12] [PASSED] 8
[14:44:12] [PASSED] 32
[14:44:12] [PASSED] 256
[14:44:12] ================ [PASSED] test_range_spare =================
[14:44:12] ===================== [PASSED] guc_dbm =====================
[14:44:12] =================== guc_idm (6 subtests) ===================
[14:44:12] [PASSED] bad_init
[14:44:12] [PASSED] no_init
[14:44:12] [PASSED] init_fini
[14:44:12] [PASSED] check_used
[14:44:12] [PASSED] check_quota
[14:44:12] [PASSED] check_all
[14:44:12] ===================== [PASSED] guc_idm =====================
[14:44:12] ================== no_relay (3 subtests) ===================
[14:44:12] [PASSED] xe_drops_guc2pf_if_not_ready
[14:44:12] [PASSED] xe_drops_guc2vf_if_not_ready
[14:44:12] [PASSED] xe_rejects_send_if_not_ready
[14:44:12] ==================== [PASSED] no_relay =====================
[14:44:12] ================== pf_relay (14 subtests) ==================
[14:44:12] [PASSED] pf_rejects_guc2pf_too_short
[14:44:12] [PASSED] pf_rejects_guc2pf_too_long
[14:44:12] [PASSED] pf_rejects_guc2pf_no_payload
[14:44:12] [PASSED] pf_fails_no_payload
[14:44:12] [PASSED] pf_fails_bad_origin
[14:44:12] [PASSED] pf_fails_bad_type
[14:44:12] [PASSED] pf_txn_reports_error
[14:44:12] [PASSED] pf_txn_sends_pf2guc
[14:44:12] [PASSED] pf_sends_pf2guc
[14:44:12] [SKIPPED] pf_loopback_nop
[14:44:12] [SKIPPED] pf_loopback_echo
[14:44:12] [SKIPPED] pf_loopback_fail
[14:44:12] [SKIPPED] pf_loopback_busy
[14:44:12] [SKIPPED] pf_loopback_retry
[14:44:12] ==================== [PASSED] pf_relay =====================
[14:44:12] ================== vf_relay (3 subtests) ===================
[14:44:12] [PASSED] vf_rejects_guc2vf_too_short
[14:44:12] [PASSED] vf_rejects_guc2vf_too_long
[14:44:12] [PASSED] vf_rejects_guc2vf_no_payload
[14:44:12] ==================== [PASSED] vf_relay =====================
[14:44:12] ================= pf_service (11 subtests) =================
[14:44:12] [PASSED] pf_negotiate_any
[14:44:12] [PASSED] pf_negotiate_base_match
[14:44:12] [PASSED] pf_negotiate_base_newer
[14:44:12] [PASSED] pf_negotiate_base_next
[14:44:12] [SKIPPED] pf_negotiate_base_older
[14:44:12] [PASSED] pf_negotiate_base_prev
[14:44:12] [PASSED] pf_negotiate_latest_match
[14:44:12] [PASSED] pf_negotiate_latest_newer
[14:44:12] [PASSED] pf_negotiate_latest_next
[14:44:12] [SKIPPED] pf_negotiate_latest_older
[14:44:12] [SKIPPED] pf_negotiate_latest_prev
[14:44:12] =================== [PASSED] pf_service ====================
[14:44:12] ===================== lmtt (1 subtest) =====================
[14:44:12] ======================== test_ops  =========================
[14:44:12] [PASSED] 2-level
[14:44:12] [PASSED] multi-level
[14:44:12] ==================== [PASSED] test_ops =====================
[14:44:12] ====================== [PASSED] lmtt =======================
[14:44:12] =================== xe_mocs (2 subtests) ===================
[14:44:12] ================ xe_live_mocs_kernel_kunit  ================
[14:44:12] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:44:12] ================ xe_live_mocs_reset_kunit  =================
[14:44:12] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:44:12] ==================== [SKIPPED] xe_mocs =====================
[14:44:12] ================= xe_migrate (2 subtests) ==================
[14:44:12] ================= xe_migrate_sanity_kunit  =================
[14:44:12] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:44:12] ================== xe_validate_ccs_kunit  ==================
[14:44:12] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:44:12] =================== [SKIPPED] xe_migrate ===================
[14:44:12] ================== xe_dma_buf (1 subtest) ==================
[14:44:12] ==================== xe_dma_buf_kunit  =====================
[14:44:12] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:44:12] =================== [SKIPPED] xe_dma_buf ===================
[14:44:12] ================= xe_bo_shrink (1 subtest) =================
[14:44:12] =================== xe_bo_shrink_kunit  ====================
[14:44:12] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:44:12] ================== [SKIPPED] xe_bo_shrink ==================
[14:44:12] ==================== xe_bo (2 subtests) ====================
[14:44:12] ================== xe_ccs_migrate_kunit  ===================
[14:44:12] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:44:12] ==================== xe_bo_evict_kunit  ====================
[14:44:12] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:44:12] ===================== [SKIPPED] xe_bo ======================
[14:44:12] ==================== args (11 subtests) ====================
[14:44:12] [PASSED] count_args_test
[14:44:12] [PASSED] call_args_example
[14:44:12] [PASSED] call_args_test
[14:44:12] [PASSED] drop_first_arg_example
[14:44:12] [PASSED] drop_first_arg_test
[14:44:12] [PASSED] first_arg_example
[14:44:12] [PASSED] first_arg_test
[14:44:12] [PASSED] last_arg_example
[14:44:12] [PASSED] last_arg_test
[14:44:12] [PASSED] pick_arg_example
[14:44:12] [PASSED] sep_comma_example
[14:44:12] ====================== [PASSED] args =======================
[14:44:12] =================== xe_pci (2 subtests) ====================
[14:44:12] ==================== check_graphics_ip  ====================
[14:44:12] [PASSED] 12.70 Xe_LPG
[14:44:12] [PASSED] 12.71 Xe_LPG
[14:44:12] [PASSED] 12.74 Xe_LPG+
[14:44:12] [PASSED] 20.01 Xe2_HPG
[14:44:12] [PASSED] 20.02 Xe2_HPG
[14:44:12] [PASSED] 20.04 Xe2_LPG
[14:44:12] [PASSED] 30.00 Xe3_LPG
[14:44:12] [PASSED] 30.01 Xe3_LPG
[14:44:12] [PASSED] 30.03 Xe3_LPG
[14:44:12] ================ [PASSED] check_graphics_ip ================
[14:44:12] ===================== check_media_ip  ======================
[14:44:12] [PASSED] 13.00 Xe_LPM+
[14:44:12] [PASSED] 13.01 Xe2_HPM
[14:44:12] [PASSED] 20.00 Xe2_LPM
[14:44:12] [PASSED] 30.00 Xe3_LPM
[14:44:12] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[14:44:12] ================= [PASSED] check_media_ip ==================
[14:44:12] ===================== [PASSED] xe_pci ======================
[14:44:12] =================== xe_rtp (2 subtests) ====================
[14:44:12] =============== xe_rtp_process_to_sr_tests  ================
[14:44:12] [PASSED] coalesce-same-reg
[14:44:12] [PASSED] no-match-no-add
[14:44:12] [PASSED] match-or
[14:44:12] [PASSED] match-or-xfail
[14:44:12] [PASSED] no-match-no-add-multiple-rules
[14:44:12] [PASSED] two-regs-two-entries
[14:44:12] [PASSED] clr-one-set-other
[14:44:12] [PASSED] set-field
[14:44:12] [PASSED] conflict-duplicate
[14:44:12] [PASSED] conflict-not-disjoint
[14:44:12] [PASSED] conflict-reg-type
[14:44:12] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:44:12] ================== xe_rtp_process_tests  ===================
[14:44:12] [PASSED] active1
[14:44:12] [PASSED] active2
[14:44:12] [PASSED] active-inactive
[14:44:12] [PASSED] inactive-active
[14:44:12] [PASSED] inactive-1st_or_active-inactive
[14:44:12] [PASSED] inactive-2nd_or_active-inactive
[14:44:12] [PASSED] inactive-last_or_active-inactive
[14:44:12] [PASSED] inactive-no_or_active-inactive
[14:44:12] ============== [PASSED] xe_rtp_process_tests ===============
[14:44:12] ===================== [PASSED] xe_rtp ======================
[14:44:12] ==================== xe_wa (1 subtest) =====================
[14:44:12] ======================== xe_wa_gt  =========================
[14:44:12] [PASSED] TIGERLAKE (B0)
[14:44:12] [PASSED] DG1 (A0)
[14:44:12] [PASSED] DG1 (B0)
[14:44:12] [PASSED] ALDERLAKE_S (A0)
[14:44:12] [PASSED] ALDERLAKE_S (B0)
[14:44:12] [PASSED] ALDERLAKE_S (C0)
[14:44:12] [PASSED] ALDERLAKE_S (D0)
[14:44:12] [PASSED] ALDERLAKE_P (A0)
[14:44:12] [PASSED] ALDERLAKE_P (B0)
[14:44:12] [PASSED] ALDERLAKE_P (C0)
[14:44:12] [PASSED] ALDERLAKE_S_RPLS (D0)
[14:44:12] [PASSED] ALDERLAKE_P_RPLU (E0)
[14:44:12] [PASSED] DG2_G10 (C0)
[14:44:12] [PASSED] DG2_G11 (B1)
[14:44:12] [PASSED] DG2_G12 (A1)
[14:44:12] [PASSED] METEORLAKE (g:A0, m:A0)
[14:44:12] [PASSED] METEORLAKE (g:A0, m:A0)
[14:44:12] [PASSED] METEORLAKE (g:A0, m:A0)
[14:44:12] [PASSED] LUNARLAKE (g:A0, m:A0)
[14:44:12] [PASSED] LUNARLAKE (g:B0, m:A0)
[14:44:12] [PASSED] BATTLEMAGE (g:A0, m:A1)
[14:44:12] ==================== [PASSED] xe_wa_gt =====================
[14:44:12] ====================== [PASSED] xe_wa ======================
[14:44:12] ============================================================
[14:44:12] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[14:44:12] Elapsed time: 31.297s total, 4.108s configuring, 26.872s building, 0.300s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3)
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
                   ` (6 preceding siblings ...)
  2025-06-25 14:44 ` ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3) Patchwork
@ 2025-06-25 15:23 ` Patchwork
  2025-06-26 13:50 ` ✗ Xe.CI.Full: failure " Patchwork
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-25 15:23 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3)
URL   : https://patchwork.freedesktop.org/series/150574/
State : success

== Summary ==

CI Bug Log - changes from xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3_BAT -> xe-pw-150574v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-adlp-vm 


Changes
-------

  No changes found


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

  * IGT: IGT_8424 -> IGT_8425
  * Linux: xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3 -> xe-pw-150574v3

  IGT_8424: 68588b3c89a1bbe08c54d21c4d3d2e509957c795 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8425: 8425
  xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3: e4196e8184ee5a9c70c136f659dccef786c263b3
  xe-pw-150574v3: 150574v3

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3)
  2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
                   ` (7 preceding siblings ...)
  2025-06-25 15:23 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-26 13:50 ` Patchwork
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-26 13:50 UTC (permalink / raw)
  To: Matthew Auld; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3)
URL   : https://patchwork.freedesktop.org/series/150574/
State : failure

== Summary ==

CI Bug Log - changes from xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3_FULL -> xe-pw-150574v3_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-150574v3_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - shard-bmg:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-adlp:         [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-3/igt@kms_pm_rpm@universal-planes-dpms.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_pm_rpm@universal-planes-dpms.html

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

  Here are the changes found in xe-pw-150574v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [PASS][5] -> [FAIL][6] ([Intel XE#3718] / [Intel XE#827])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][7] ([Intel XE#3718] / [Intel XE#827])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][8] ([Intel XE#827])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#873])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#3658])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
    - shard-adlp:         NOTRUN -> [SKIP][11] ([Intel XE#1124])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-adlp:         NOTRUN -> [SKIP][12] ([Intel XE#316]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#316]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1407]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2327]) +4 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         [PASS][16] -> [DMESG-FAIL][17] ([Intel XE#4543]) +5 other tests dmesg-fail
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#1124]) +7 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#1124]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#607])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#607])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#1124]) +4 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#2191])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-adlp:         NOTRUN -> [SKIP][25] ([Intel XE#367])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#367])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-2/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#367]) +2 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][28] ([Intel XE#367]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#2887]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#787]) +5 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#787]) +300 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#3432]) +2 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#3432])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +52 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][37] ([Intel XE#2705] / [Intel XE#4212])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2887]) +13 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][41] ([Intel XE#1727] / [Intel XE#3113])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#2907])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2724]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#4418])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_cdclk@mode-transition-all-outputs.html

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

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#4416]) +3 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-adlp:         NOTRUN -> [SKIP][47] ([Intel XE#306])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-1/igt@kms_chamelium_color@ctm-blue-to-red.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#306])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2325]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#373]) +4 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#373]) +4 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][52] ([Intel XE#373]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2252]) +5 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg2-set2:     NOTRUN -> [FAIL][54] ([Intel XE#1178]) +2 other tests fail
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2341])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@kms_content_protection@lic-type-0.html

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

  * igt@kms_content_protection@srm:
    - shard-bmg:          NOTRUN -> [FAIL][57] ([Intel XE#1178]) +1 other test fail
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#308])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#2321])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2321])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2320]) +4 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#309]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
    - shard-adlp:         NOTRUN -> [SKIP][63] ([Intel XE#309])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][64] -> [SKIP][65] ([Intel XE#2291]) +5 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][66] ([Intel XE#323])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2286]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][68] -> [SKIP][69] ([Intel XE#1340])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#4494] / [i915#3804])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [PASS][71] -> [SKIP][72] ([Intel XE#3009])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-2/igt@kms_dp_aux_dev.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@kms_dp_aux_dev.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#4354])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@kms_dp_link_training@uhbr-mst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#4356])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [PASS][75] -> [SKIP][76] ([Intel XE#4294])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#2244]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#2244])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#2375])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#1137])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#1137])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#1421]) +2 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-bmg:          [PASS][83] -> [SKIP][84] ([Intel XE#2316]) +9 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#2316]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#310]) +2 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
    - shard-dg2-set2:     [PASS][87] -> [FAIL][88] ([Intel XE#301]) +1 other test fail
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html

  * igt@kms_flip@flip-vs-expired-vblank@b-dp4:
    - shard-dg2-set2:     [PASS][89] -> [FAIL][90] ([Intel XE#301] / [Intel XE#3321])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg2-set2:     [PASS][91] -> [INCOMPLETE][92] ([Intel XE#2049] / [Intel XE#2597])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@d-dp4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][93] ([Intel XE#2049] / [Intel XE#2597])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2:
    - shard-bmg:          [PASS][94] -> [FAIL][95] ([Intel XE#2882]) +3 other tests fail
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1:
    - shard-lnl:          [PASS][96] -> [FAIL][97] ([Intel XE#886])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
    - shard-adlp:         [PASS][98] -> [FAIL][99] ([Intel XE#2882]) +1 other test fail
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-3/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html

  * igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a1:
    - shard-adlp:         [PASS][100] -> [FAIL][101] ([Intel XE#886])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a1.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-3/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][104] ([Intel XE#455]) +11 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [FAIL][106] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-adlp:         [PASS][107] -> [DMESG-FAIL][108] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
    - shard-adlp:         NOTRUN -> [SKIP][110] ([Intel XE#455]) +5 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html

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

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#651]) +7 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#4141]) +12 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][115] ([Intel XE#651]) +2 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][116] ([Intel XE#651]) +19 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][117] ([Intel XE#653]) +2 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][118] ([Intel XE#653]) +19 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2312]) +14 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#656]) +12 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2313]) +26 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][122] ([Intel XE#656]) +7 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3:
    - shard-bmg:          [PASS][123] -> [INCOMPLETE][124] ([Intel XE#5148]) +1 other test incomplete
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#3544])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [PASS][126] -> [SKIP][127] ([Intel XE#1503]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][128] ([Intel XE#346])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#346])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#4090])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

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

  * igt@kms_plane_cursor@overlay:
    - shard-dg2-set2:     [PASS][132] -> [FAIL][133] ([Intel XE#616])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-464/igt@kms_plane_cursor@overlay.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_plane_cursor@overlay.html

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-2-size-64:
    - shard-dg2-set2:     NOTRUN -> [FAIL][134] ([Intel XE#616])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-2-size-64.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][135] ([Intel XE#599])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_plane_lowres@tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#2393])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][137] -> [SKIP][138] ([Intel XE#4596])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-bmg:          NOTRUN -> [SKIP][139] ([Intel XE#4596])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-x.html

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

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     NOTRUN -> [SKIP][141] ([Intel XE#870])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][142] ([Intel XE#2938])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][143] ([Intel XE#2938])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          NOTRUN -> [SKIP][144] ([Intel XE#2392])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_pm_dc@dc5-psr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][145] ([Intel XE#1129])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [PASS][146] -> [FAIL][147] ([Intel XE#718])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][148] ([Intel XE#2499])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          NOTRUN -> [SKIP][149] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@universal-planes-dpms@plane-83:
    - shard-adlp:         [PASS][150] -> [DMESG-WARN][151] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-3/igt@kms_pm_rpm@universal-planes-dpms@plane-83.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_pm_rpm@universal-planes-dpms@plane-83.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][152] ([Intel XE#1489]) +8 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][153] ([Intel XE#1489]) +4 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-lnl:          NOTRUN -> [SKIP][154] ([Intel XE#2893] / [Intel XE#4608])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][155] ([Intel XE#4608]) +1 other test skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][156] ([Intel XE#2893])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][157] ([Intel XE#1489])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-bmg:          NOTRUN -> [SKIP][158] ([Intel XE#2387]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-adlp:         NOTRUN -> [SKIP][159] ([Intel XE#1122])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][160] ([Intel XE#1122])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html
    - shard-lnl:          NOTRUN -> [SKIP][161] ([Intel XE#1128])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][162] ([Intel XE#4609])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][163] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-adlp:         NOTRUN -> [SKIP][164] ([Intel XE#2850] / [Intel XE#929])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-1/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_psr@pr-primary-blt:
    - shard-lnl:          NOTRUN -> [SKIP][165] ([Intel XE#1406]) +2 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-2/igt@kms_psr@pr-primary-blt.html

  * igt@kms_psr@psr2-sprite-blt:
    - shard-bmg:          NOTRUN -> [SKIP][166] ([Intel XE#2234] / [Intel XE#2850]) +18 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_psr@psr2-sprite-blt.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-adlp:         NOTRUN -> [SKIP][167] ([Intel XE#2939])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
    - shard-bmg:          NOTRUN -> [SKIP][168] ([Intel XE#2414])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][169] ([Intel XE#2939])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-x-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [FAIL][170] ([Intel XE#4689])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-6/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#1127])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][172] ([Intel XE#2330]) +2 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [SKIP][173] ([Intel XE#1127])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-bmg:          NOTRUN -> [SKIP][174] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][175] ([Intel XE#1435])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][176] ([Intel XE#330])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
    - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#2450])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-bmg:          [PASS][178] -> [INCOMPLETE][179] ([Intel XE#4488]) +1 other test incomplete
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-8/igt@kms_vblank@ts-continuation-suspend.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          NOTRUN -> [SKIP][180] ([Intel XE#2168])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-1/igt@kms_vrr@lobf.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-bmg:          NOTRUN -> [SKIP][181] ([Intel XE#1499]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-lnl:          NOTRUN -> [SKIP][182] ([Intel XE#1499]) +1 other test skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@xe_configfs@survivability-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#5249])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@xe_configfs@survivability-mode.html
    - shard-lnl:          NOTRUN -> [SKIP][184] ([Intel XE#5249])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@xe_configfs@survivability-mode.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][185] ([Intel XE#1126])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_eu_stall@unprivileged-access:
    - shard-dg2-set2:     NOTRUN -> [SKIP][186] ([Intel XE#5308])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@xe_eu_stall@unprivileged-access.html

  * igt@xe_eudebug@basic-client-th:
    - shard-adlp:         NOTRUN -> [SKIP][187] ([Intel XE#4837]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@xe_eudebug@basic-client-th.html

  * igt@xe_eudebug@basic-connect:
    - shard-lnl:          NOTRUN -> [SKIP][188] ([Intel XE#4837]) +3 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-4/igt@xe_eudebug@basic-connect.html

  * igt@xe_eudebug@basic-exec-queues:
    - shard-bmg:          NOTRUN -> [SKIP][189] ([Intel XE#4837]) +16 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@xe_eudebug@basic-exec-queues.html

  * igt@xe_eudebug@basic-vm-access-userptr-faultable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][190] ([Intel XE#4837]) +9 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@xe_eudebug@basic-vm-access-userptr-faultable.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-dg2-set2:     NOTRUN -> [SKIP][191] ([Intel XE#4518])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_evict@evict-large-cm:
    - shard-adlp:         NOTRUN -> [SKIP][192] ([Intel XE#261] / [Intel XE#688])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-3/igt@xe_evict@evict-large-cm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
    - shard-lnl:          NOTRUN -> [SKIP][193] ([Intel XE#688]) +2 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html

  * igt@xe_exec_basic@multigpu-no-exec-null-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][194] ([Intel XE#1392])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-dg2-set2:     [PASS][195] -> [SKIP][196] ([Intel XE#1392]) +7 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-null-defer-mmap:
    - shard-dg2-set2:     NOTRUN -> [SKIP][197] ([Intel XE#1392])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][198] ([Intel XE#2322]) +6 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][199] ([Intel XE#288]) +14 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html

  * igt@xe_exec_fault_mode@twice-invalid-userptr-fault:
    - shard-adlp:         NOTRUN -> [SKIP][200] ([Intel XE#288]) +3 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-2/igt@xe_exec_fault_mode@twice-invalid-userptr-fault.html

  * igt@xe_exec_reset@cat-error:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][201] ([Intel XE#3868])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-9/igt@xe_exec_reset@cat-error.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][202] ([Intel XE#4943]) +31 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@once-malloc-race:
    - shard-adlp:         NOTRUN -> [SKIP][203] ([Intel XE#4915]) +46 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@xe_exec_system_allocator@once-malloc-race.html

  * igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][204] ([Intel XE#4915]) +176 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset.html

  * igt@xe_exec_system_allocator@process-many-mmap-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][205] ([Intel XE#4943]) +6 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-2/igt@xe_exec_system_allocator@process-many-mmap-huge-nomemset.html

  * igt@xe_exec_threads@threads-hang-userptr-rebind:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][206] ([Intel XE#3876])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-435/igt@xe_exec_threads@threads-hang-userptr-rebind.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][207] ([Intel XE#2229])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          [PASS][208] -> [ABORT][209] ([Intel XE#5087])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-7/igt@xe_module_load@reload-no-display.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@mmio-triggered-reports-read:
    - shard-dg2-set2:     NOTRUN -> [SKIP][210] ([Intel XE#5103])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@xe_oa@mmio-triggered-reports-read.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][211] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@xe_oa@oa-tlb-invalidate.html
    - shard-adlp:         NOTRUN -> [SKIP][212] ([Intel XE#2541] / [Intel XE#3573])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-4/igt@xe_oa@oa-tlb-invalidate.html
    - shard-bmg:          NOTRUN -> [SKIP][213] ([Intel XE#2248])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          NOTRUN -> [SKIP][214] ([Intel XE#2236])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@xe_pat@pat-index-xelpg.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][215] ([Intel XE#979])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][216] ([Intel XE#2427])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@xe_peer2peer@write.html
    - shard-adlp:         NOTRUN -> [SKIP][217] ([Intel XE#1061])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-3/igt@xe_peer2peer@write.html
    - shard-lnl:          NOTRUN -> [SKIP][218] ([Intel XE#1061])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-8/igt@xe_peer2peer@write.html

  * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [FAIL][219] ([Intel XE#1173]) +1 other test fail
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          NOTRUN -> [SKIP][220] ([Intel XE#2284]) +1 other test skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@xe_pm@d3cold-mocs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][221] ([Intel XE#2284])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pxp@display-black-pxp-fb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][222] ([Intel XE#4733]) +1 other test skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@xe_pxp@display-black-pxp-fb.html

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

  * igt@xe_pxp@pxp-stale-queue-post-termination-irq:
    - shard-adlp:         NOTRUN -> [SKIP][224] ([Intel XE#4733])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-2/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][225] ([Intel XE#944]) +2 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     NOTRUN -> [SKIP][226] ([Intel XE#944]) +2 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@xe_query@multigpu-query-engines.html
    - shard-lnl:          NOTRUN -> [SKIP][227] ([Intel XE#944])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-8/igt@xe_query@multigpu-query-engines.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][228] ([Intel XE#4814])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-435/igt@xe_render_copy@render-stress-0-copies.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-bmg:          NOTRUN -> [SKIP][229] ([Intel XE#4130]) +1 other test skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][230] ([Intel XE#4130]) +1 other test skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
    - shard-bmg:          NOTRUN -> [SKIP][231] ([Intel XE#4351])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-adlp:         [DMESG-WARN][232] ([Intel XE#4543]) -> [PASS][233] +4 other tests pass
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-9/igt@kms_async_flips@async-flip-suspend-resume.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-9/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
    - shard-dg2-set2:     [FAIL][234] ([Intel XE#4427]) -> [PASS][235] +1 other test pass
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-434/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
    - shard-lnl:          [FAIL][236] ([Intel XE#911]) -> [PASS][237] +3 other tests pass
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [FAIL][238] ([Intel XE#3884]) -> [PASS][239] +1 other test pass
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][240] ([Intel XE#4543]) -> [PASS][241] +16 other tests pass
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][242] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][243] +1 other test pass
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][244] ([Intel XE#3862]) -> [PASS][245] +1 other test pass
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][246] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][247]
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][248] ([Intel XE#2291]) -> [PASS][249] +4 other tests pass
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
    - shard-dg2-set2:     [FAIL][250] ([Intel XE#301]) -> [PASS][251] +6 other tests pass
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [SKIP][252] ([Intel XE#2316]) -> [PASS][253] +2 other tests pass
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible:
    - shard-dg2-set2:     [FAIL][254] ([Intel XE#3149]) -> [PASS][255]
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-434/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-432/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-adlp:         [ABORT][256] ([Intel XE#2953]) -> [PASS][257] +1 other test pass
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-3/igt@kms_flip@flip-vs-suspend.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-1/igt@kms_flip@flip-vs-suspend.html
    - shard-bmg:          [INCOMPLETE][258] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][259] +1 other test pass
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [INCOMPLETE][260] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][261] +1 other test pass
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@nonexisting-fb:
    - shard-bmg:          [INCOMPLETE][262] ([Intel XE#2049]) -> [PASS][263] +1 other test pass
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-2/igt@kms_flip@nonexisting-fb.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-1/igt@kms_flip@nonexisting-fb.html

  * igt@kms_flip@plain-flip-ts-check@a-edp1:
    - shard-lnl:          [FAIL][264] ([Intel XE#886]) -> [PASS][265] +1 other test pass
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-lnl-2/igt@kms_flip@plain-flip-ts-check@a-edp1.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-5/igt@kms_flip@plain-flip-ts-check@a-edp1.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [SKIP][266] ([Intel XE#1503]) -> [PASS][267]
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][268] ([Intel XE#3012]) -> [PASS][269]
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [SKIP][270] ([Intel XE#2571]) -> [PASS][271]
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_setmode@basic:
    - shard-adlp:         [FAIL][272] ([Intel XE#2883]) -> [PASS][273] +2 other tests pass
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-6/igt@kms_setmode@basic.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-9/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-lnl:          [FAIL][274] ([Intel XE#2883]) -> [PASS][275] +2 other tests pass
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][276] ([Intel XE#1435]) -> [PASS][277]
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-dg2-set2:     [SKIP][278] ([Intel XE#1392]) -> [PASS][279] +8 other tests pass
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [DMESG-WARN][280] ([Intel XE#3876]) -> [PASS][281]
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][282] ([Intel XE#5018]) -> [PASS][283]
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][284] ([Intel XE#4937]) -> [PASS][285]
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html

  * igt@xe_pm@s2idle-multiple-execs:
    - shard-adlp:         [DMESG-WARN][286] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][287] +1 other test pass
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-8/igt@xe_pm@s2idle-multiple-execs.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-6/igt@xe_pm@s2idle-multiple-execs.html

  * igt@xe_pm@s3-basic-exec:
    - shard-adlp:         [DMESG-WARN][288] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#569]) -> [PASS][289]
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-adlp-1/igt@xe_pm@s3-basic-exec.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-adlp-4/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-bmg:          [ABORT][290] ([Intel XE#5255]) -> [PASS][291] +1 other test pass
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@xe_pm@s4-vm-bind-unbind-all.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][292] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][293] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][294] ([Intel XE#1178]) -> [SKIP][295] ([Intel XE#2341])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-7/igt@kms_content_protection@legacy.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][296] ([Intel XE#1188]) -> [SKIP][297] ([Intel XE#2341])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-8/igt@kms_content_protection@uevent.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_content_protection@uevent.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][298] ([Intel XE#2311]) -> [SKIP][299] ([Intel XE#2312]) +17 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][300] ([Intel XE#4141]) -> [SKIP][301] ([Intel XE#2312]) +5 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][302] ([Intel XE#2312]) -> [SKIP][303] ([Intel XE#4141]) +7 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][304] ([Intel XE#2312]) -> [SKIP][305] ([Intel XE#2311]) +17 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][306] ([Intel XE#2313]) -> [SKIP][307] ([Intel XE#2312]) +15 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][308] ([Intel XE#2312]) -> [SKIP][309] ([Intel XE#2313]) +13 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][310] ([Intel XE#2509]) -> [SKIP][311] ([Intel XE#2426])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150574v3/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4427
  [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
  [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
  [Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5087]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5087
  [Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
  [Intel XE#5148]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5148
  [Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
  [Intel XE#5249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5249
  [Intel XE#5255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5255
  [Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804


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

  * IGT: IGT_8424 -> IGT_8425
  * Linux: xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3 -> xe-pw-150574v3

  IGT_8424: 68588b3c89a1bbe08c54d21c4d3d2e509957c795 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8425: 8425
  xe-3303-e4196e8184ee5a9c70c136f659dccef786c263b3: e4196e8184ee5a9c70c136f659dccef786c263b3
  xe-pw-150574v3: 150574v3

== Logs ==

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

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

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

end of thread, other threads:[~2025-06-26 13:50 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-20 15:24 [PATCH] drm/xe/migrate: make MI_TLB_INVALIDATE conditional Matthew Auld
2025-06-20 15:31 ` ✓ CI.KUnit: success for " Patchwork
2025-06-20 16:11 ` [PATCH] " Matthew Brost
2025-06-23  9:33   ` Matthew Auld
2025-06-23 11:24     ` Matthew Brost
2025-06-23 21:48       ` Matthew Brost
2025-06-24  9:11         ` Matthew Auld
2025-06-21  1:48 ` ✓ Xe.CI.Full: success for " Patchwork
2025-06-24  7:48 ` ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev2) Patchwork
2025-06-24  8:36 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-24 13:23 ` ✗ Xe.CI.Full: failure " Patchwork
2025-06-25 14:44 ` ✓ CI.KUnit: success for drm/xe/migrate: make MI_TLB_INVALIDATE conditional (rev3) Patchwork
2025-06-25 15:23 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-26 13:50 ` ✗ Xe.CI.Full: failure " Patchwork

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