Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/2] drm/xe/vf: New approach for post-migration LRC fixups
@ 2026-04-29 20:39 Tomasz Lis
  2026-04-29 20:39 ` [PATCH v1 1/2] drm/xe/vf: Late fixups of LRCs after VF migration Tomasz Lis
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Tomasz Lis @ 2026-04-29 20:39 UTC (permalink / raw)
  To: intel-xe
  Cc: Michał Winiarski, Michał Wajdeczko,
	Piotr Piórkowski, Matthew Brost

The current approach to LRC recovery requires caution from developers
when modifying any LRC-related code. More flexible solution may allow
to avoid future troubles.

The current code also includes LRC creation repeat which looks a bit
suspicious - it was developed without detailed knowledge of which
part of LRC creation requires a repeat. Now after extensive debug we
know that the repeat is only required for BO mapping, and actually
all BOs should be protected, not only the ones storing LRCs.

This fixes a very rare bug where BO would be incorrectly created
during migration resulting in CAT error generated by GPU. Chances
of triggering this error were well below 0.1%.

Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>

Tomasz Lis (2):
  drm/xe/vf: Late fixups of LRCs after VF migration
  drm/xe: After VF migration, repeat BO mapping in progress

 drivers/gpu/drm/xe/xe_exec_queue.c        | 55 +++++++++++++----------
 drivers/gpu/drm/xe/xe_exec_queue.h        |  2 +-
 drivers/gpu/drm/xe/xe_ggtt.c              | 17 +++++++
 drivers/gpu/drm/xe/xe_gt_sriov_vf.c       |  6 +--
 drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h |  2 +
 drivers/gpu/drm/xe/xe_guc_submit.c        | 35 +++------------
 drivers/gpu/drm/xe/xe_guc_submit.h        |  2 -
 drivers/gpu/drm/xe/xe_memirq.c            |  8 +++-
 8 files changed, 67 insertions(+), 60 deletions(-)

-- 
2.25.1


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

* [PATCH v1 1/2] drm/xe/vf: Late fixups of LRCs after VF migration
  2026-04-29 20:39 [PATCH v1 0/2] drm/xe/vf: New approach for post-migration LRC fixups Tomasz Lis
@ 2026-04-29 20:39 ` Tomasz Lis
  2026-04-29 20:39 ` [PATCH v1 2/2] drm/xe: After VF migration, repeat BO mapping in progress Tomasz Lis
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Tomasz Lis @ 2026-04-29 20:39 UTC (permalink / raw)
  To: intel-xe
  Cc: Michał Winiarski, Michał Wajdeczko,
	Piotr Piórkowski, Matthew Brost, Adam Miszczak

Do not fix LRCs of existing contexts during VF post-migration
recovery. Instead, perform fixups before every exec queue
registration.

This introduces a minor extra work during context registration,
but also decreases the amount of work required to be finished
during post-migration recovery.

To mitigate issues with concurrent registrations, the scratch buffer
required for LRC fixups is now protected by a mutex.

Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
Tested-by: Adam Miszczak <adam.miszczak@linux.intel.com>
---
 drivers/gpu/drm/xe/xe_exec_queue.c        | 28 +++++++++++++++---
 drivers/gpu/drm/xe/xe_exec_queue.h        |  2 +-
 drivers/gpu/drm/xe/xe_gt_sriov_vf.c       |  6 ++--
 drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h |  2 ++
 drivers/gpu/drm/xe/xe_guc_submit.c        | 35 ++++-------------------
 drivers/gpu/drm/xe/xe_guc_submit.h        |  2 --
 6 files changed, 35 insertions(+), 40 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 071b8c41df43..04a48c2cf963 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -1829,15 +1829,14 @@ void xe_exec_queue_tlb_inval_last_fence_set(struct xe_exec_queue *q,
 	q->tlb_inval[type].last_fence = dma_fence_get(fence);
 }
 
-/**
- * xe_exec_queue_contexts_hwsp_rebase - Re-compute GGTT references
- * within all LRCs of a queue.
+/*
+ * Re-compute GGTT references within all LRCs of a queue.
  * @q: the &xe_exec_queue struct instance containing target LRCs
  * @scratch: scratch buffer to be used as temporary storage
  *
  * Returns: zero on success, negative error code on failure
  */
-int xe_exec_queue_contexts_hwsp_rebase(struct xe_exec_queue *q, void *scratch)
+static int xe_exec_queue_lrcs_hwsp_rebase_with_scratch(struct xe_exec_queue *q, void *scratch)
 {
 	int i;
 	int err = 0;
@@ -1859,3 +1858,24 @@ int xe_exec_queue_contexts_hwsp_rebase(struct xe_exec_queue *q, void *scratch)
 
 	return err;
 }
+
+/**
+ * xe_exec_queue_lrcs_hwsp_rebase - Re-compute GGTT references
+ * within all LRCs of a queue, using migration scratch.
+ * @q: the &xe_exec_queue struct instance containing target LRCs
+ *
+ * Returns: zero on success, negative error code on failure
+ */
+int xe_exec_queue_lrcs_hwsp_rebase(struct xe_exec_queue *q)
+{
+	struct xe_gt *gt = q->gt;
+	int err;
+
+	xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
+
+	mutex_lock(&gt->sriov.vf.migration.scratch_lock);
+	err = xe_exec_queue_lrcs_hwsp_rebase_with_scratch(q, gt->sriov.vf.migration.scratch);
+	mutex_unlock(&gt->sriov.vf.migration.scratch_lock);
+
+	return err;
+}
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.h b/drivers/gpu/drm/xe/xe_exec_queue.h
index a82d99bd77bc..d2b1c0aac6f0 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue.h
@@ -157,7 +157,7 @@ void xe_exec_queue_tlb_inval_last_fence_set(struct xe_exec_queue *q,
 
 void xe_exec_queue_update_run_ticks(struct xe_exec_queue *q);
 
-int xe_exec_queue_contexts_hwsp_rebase(struct xe_exec_queue *q, void *scratch);
+int xe_exec_queue_lrcs_hwsp_rebase(struct xe_exec_queue *q);
 
 struct xe_lrc *xe_exec_queue_lrc(struct xe_exec_queue *q);
 struct xe_lrc *xe_exec_queue_get_lrc(struct xe_exec_queue *q, u16 idx);
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 8989c8e1be95..16d2c2db290b 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -1259,7 +1259,6 @@ static size_t post_migration_scratch_size(struct xe_device *xe)
 
 static int vf_post_migration_fixups(struct xe_gt *gt)
 {
-	void *buf = gt->sriov.vf.migration.scratch;
 	int err;
 
 	VF_MIGRATION_INJECT_WAIT(gt, FIXUPS);
@@ -1273,9 +1272,6 @@ static int vf_post_migration_fixups(struct xe_gt *gt)
 		xe_sriov_vf_ccs_rebase(gt_to_xe(gt));
 
 	xe_gt_sriov_vf_default_lrcs_hwsp_rebase(gt);
-	err = xe_guc_contexts_hwsp_rebase(&gt->uc.guc, buf);
-	if (err)
-		return err;
 
 	atomic_inc(&gt->sriov.vf.migration.fixups_complete_count);
 
@@ -1428,6 +1424,7 @@ static void vf_migration_fini(void *arg)
 	spin_unlock_irq(&gt->sriov.vf.migration.lock);
 
 	cancel_work_sync(&gt->sriov.vf.migration.worker);
+	mutex_destroy(&gt->sriov.vf.migration.scratch_lock);
 }
 
 /**
@@ -1449,6 +1446,7 @@ int xe_gt_sriov_vf_init_early(struct xe_gt *gt)
 	if (!buf)
 		return -ENOMEM;
 
+	mutex_init(&gt->sriov.vf.migration.scratch_lock);
 	gt->sriov.vf.migration.scratch = buf;
 	spin_lock_init(&gt->sriov.vf.migration.lock);
 	INIT_WORK(&gt->sriov.vf.migration.worker, migration_worker_func);
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
index 80562ffadb16..d4462987b60a 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
@@ -52,6 +52,8 @@ struct xe_gt_sriov_vf_migration {
 	spinlock_t lock;
 	/** @wq: wait queue for migration fixes */
 	wait_queue_head_t wq;
+	/** @scratch_lock: Mutex lock to serilize scratch buffer use */
+	struct mutex scratch_lock;
 	/** @scratch: Scratch memory for VF recovery */
 	void *scratch;
 	/** @fixups_complete_count: Counts completed fixups stages */
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index b1222b42174c..4f1e03f84610 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -41,6 +41,7 @@
 #include "xe_ring_ops_types.h"
 #include "xe_sched_job.h"
 #include "xe_sleep.h"
+#include "xe_sriov_vf.h"
 #include "xe_trace.h"
 #include "xe_uc_fw.h"
 #include "xe_vm.h"
@@ -989,6 +990,9 @@ static void register_exec_queue(struct xe_exec_queue *q, int ctx_type)
 	xe_gt_assert(guc_to_gt(guc), !exec_queue_registered(q));
 	xe_gt_assert(guc_to_gt(guc), ctx_type < GUC_CONTEXT_COUNT);
 
+	if (IS_SRIOV_VF(xe) && xe_sriov_vf_migration_supported(xe))
+		xe_exec_queue_lrcs_hwsp_rebase(q);
+
 	memset(&info, 0, sizeof(info));
 	info.context_idx = q->guc->id;
 	info.engine_class = xe_engine_class_to_guc_class(q->class);
@@ -2635,6 +2639,8 @@ static void guc_exec_queue_unpause_prepare(struct xe_guc *guc,
 	struct drm_sched_job *s_job;
 	bool restore_replay = false;
 
+	if (exec_queue_registered(q))
+		xe_exec_queue_lrcs_hwsp_rebase(q);
 	drm_sched_for_each_pending_job(s_job, &sched->base, NULL) {
 		job = to_xe_sched_job(s_job);
 		restore_replay |= job->restore_replay;
@@ -3424,32 +3430,3 @@ bool xe_guc_has_registered_mlrc_queues(struct xe_guc *guc)
 
 	return false;
 }
-
-/**
- * xe_guc_contexts_hwsp_rebase - Re-compute GGTT references within all
- * exec queues registered to given GuC.
- * @guc: the &xe_guc struct instance
- * @scratch: scratch buffer to be used as temporary storage
- *
- * Returns: zero on success, negative error code on failure.
- */
-int xe_guc_contexts_hwsp_rebase(struct xe_guc *guc, void *scratch)
-{
-	struct xe_exec_queue *q;
-	unsigned long index;
-	int err = 0;
-
-	mutex_lock(&guc->submission_state.lock);
-	xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) {
-		/* Prevent redundant attempts to stop parallel queues */
-		if (q->guc->id != index)
-			continue;
-
-		err = xe_exec_queue_contexts_hwsp_rebase(q, scratch);
-		if (err)
-			break;
-	}
-	mutex_unlock(&guc->submission_state.lock);
-
-	return err;
-}
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.h b/drivers/gpu/drm/xe/xe_guc_submit.h
index b3839a90c142..69f651ceff52 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.h
+++ b/drivers/gpu/drm/xe/xe_guc_submit.h
@@ -54,6 +54,4 @@ void xe_guc_register_vf_exec_queue(struct xe_exec_queue *q, int ctx_type);
 
 bool xe_guc_has_registered_mlrc_queues(struct xe_guc *guc);
 
-int xe_guc_contexts_hwsp_rebase(struct xe_guc *guc, void *scratch);
-
 #endif
-- 
2.25.1


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

* [PATCH v1 2/2] drm/xe: After VF migration, repeat BO mapping in progress
  2026-04-29 20:39 [PATCH v1 0/2] drm/xe/vf: New approach for post-migration LRC fixups Tomasz Lis
  2026-04-29 20:39 ` [PATCH v1 1/2] drm/xe/vf: Late fixups of LRCs after VF migration Tomasz Lis
@ 2026-04-29 20:39 ` Tomasz Lis
  2026-04-29 20:57 ` ✓ CI.KUnit: success for drm/xe/vf: New approach for post-migration LRC fixups Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Tomasz Lis @ 2026-04-29 20:39 UTC (permalink / raw)
  To: intel-xe
  Cc: Michał Winiarski, Michał Wajdeczko,
	Piotr Piórkowski, Matthew Brost, Adam Miszczak

If VF migration happens during BO mapping, it is possible
that some PTE values were not written at the correct place.
This can happen because GGTT range, and therefore range of
assigned PTEs, have changed during the migration.
Restoring VF state on PF side will ensure that any PTEs
already set within the previous VM are moved to correct
positions, but if VM was paused and migrated while setting
PTEs, it will continue the loop at the old position. The
GGTT base address is used to select which PTEs to write,
so setting them again needs to wait until the post-migration
recovery procedure updates the GGTT base.

Previously, LRC creation was repeated. This means only BOs
that were part of exec queues were properly protected from
VF migration. With this change, as the redo is moved to BO
creation, all BOs are protected.

Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
Tested-by: Adam Miszczak <adam.miszczak@linux.intel.com>
---
 drivers/gpu/drm/xe/xe_exec_queue.c | 27 ++++++++-------------------
 drivers/gpu/drm/xe/xe_ggtt.c       | 17 +++++++++++++++++
 drivers/gpu/drm/xe/xe_memirq.c     |  8 +++++++-
 3 files changed, 32 insertions(+), 20 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 04a48c2cf963..fba85e0f8bc4 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -371,28 +371,17 @@ static int __xe_exec_queue_init(struct xe_exec_queue *q, u32 exec_queue_flags)
 	 * from the moment vCPU resumes execution.
 	 */
 	for (i = 0; i < q->width; ++i) {
-		struct xe_lrc *__lrc = NULL;
-		int marker;
 
-		do {
-			struct xe_lrc *lrc;
-
-			marker = xe_gt_sriov_vf_wait_valid_ggtt(q->gt);
-
-			lrc = xe_lrc_create(q->hwe, q->vm, q->replay_state,
-					    xe_lrc_ring_size(), q->msix_vec, flags);
-			if (IS_ERR(lrc)) {
-				err = PTR_ERR(lrc);
-				goto err_lrc;
-			}
-
-			xe_exec_queue_set_lrc(q, lrc, i);
+		struct xe_lrc *lrc;
 
-			if (__lrc)
-				xe_lrc_put(__lrc);
-			__lrc = lrc;
+		lrc = xe_lrc_create(q->hwe, q->vm, q->replay_state,
+				    xe_lrc_ring_size(), q->msix_vec, flags);
+		if (IS_ERR(lrc)) {
+			err = PTR_ERR(lrc);
+			goto err_lrc;
+		}
 
-		} while (marker != xe_vf_migration_fixups_complete_count(q->gt));
+		xe_exec_queue_set_lrc(q, lrc, i);
 	}
 
 	return 0;
diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c
index a351c578b170..8f4002c1afa6 100644
--- a/drivers/gpu/drm/xe/xe_ggtt.c
+++ b/drivers/gpu/drm/xe/xe_ggtt.c
@@ -21,6 +21,7 @@
 #include "xe_assert.h"
 #include "xe_bo.h"
 #include "xe_gt_printk.h"
+#include "xe_gt_sriov_vf.h"
 #include "xe_gt_types.h"
 #include "xe_map.h"
 #include "xe_mmio.h"
@@ -789,6 +790,7 @@ static int __xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo,
 {
 	u64 alignment = bo->min_align > 0 ? bo->min_align : XE_PAGE_SIZE;
 	u8 tile_id = ggtt->tile->id;
+	int marker;
 	int err;
 
 	if (xe_bo_is_vram(bo) && ggtt->flags & XE_GGTT_FLAGS_64K)
@@ -813,6 +815,9 @@ static int __xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo,
 		goto out;
 	}
 
+retry:
+	marker = xe_gt_sriov_vf_wait_valid_ggtt(ggtt->tile->primary_gt);
+
 	mutex_lock(&ggtt->lock);
 	/*
 	 * When inheriting the initial framebuffer, the framebuffer is
@@ -845,6 +850,18 @@ static int __xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo,
 		u64 pte = ggtt->pt_ops->pte_encode_flags(bo, pat_index);
 
 		xe_ggtt_map_bo(ggtt, bo->ggtt_node[tile_id], bo, pte);
+
+		/*
+		 * If VF migration happens during BO mapping, some PTE value writes may
+		 * be ignored by HW. This can happen in case GGTT range changes; already
+		 * set PTEs are moved by the VF restore, but xe_ggtt_map_bo() within VM
+		 * may still loop at old position. To be sure, redo all PTE writes.
+		 */
+		if (marker != xe_vf_migration_fixups_complete_count(ggtt->tile->primary_gt)) {
+			drm_mm_remove_node(&bo->ggtt_node[tile_id]->base);
+			mutex_unlock(&ggtt->lock);
+			goto retry;
+		}
 	}
 	mutex_unlock(&ggtt->lock);
 
diff --git a/drivers/gpu/drm/xe/xe_memirq.c b/drivers/gpu/drm/xe/xe_memirq.c
index 811e07136efb..389a41a07ff9 100644
--- a/drivers/gpu/drm/xe/xe_memirq.c
+++ b/drivers/gpu/drm/xe/xe_memirq.c
@@ -491,7 +491,13 @@ bool xe_memirq_guc_sw_int_0_irq_pending(struct xe_memirq *memirq, struct xe_guc
 {
 	struct xe_gt *gt = guc_to_gt(guc);
 	u32 offset = xe_gt_is_media_type(gt) ? ilog2(INTR_MGUC) : ilog2(INTR_GUC);
-	struct iosys_map map = IOSYS_MAP_INIT_OFFSET(&memirq->status, offset * SZ_16);
+	struct iosys_map map;
+
+	/* protect for a call during driver probe */
+	if (!iosys_map_is_set(&memirq->status))
+		return false;
+
+	map = IOSYS_MAP_INIT_OFFSET(&memirq->status, offset * SZ_16);
 
 	return memirq_received_noclear(memirq, &map, ilog2(GUC_INTR_SW_INT_0),
 				       guc_name(guc));
-- 
2.25.1


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

* ✓ CI.KUnit: success for drm/xe/vf: New approach for post-migration LRC fixups
  2026-04-29 20:39 [PATCH v1 0/2] drm/xe/vf: New approach for post-migration LRC fixups Tomasz Lis
  2026-04-29 20:39 ` [PATCH v1 1/2] drm/xe/vf: Late fixups of LRCs after VF migration Tomasz Lis
  2026-04-29 20:39 ` [PATCH v1 2/2] drm/xe: After VF migration, repeat BO mapping in progress Tomasz Lis
@ 2026-04-29 20:57 ` Patchwork
  2026-04-29 21:52 ` ✓ Xe.CI.BAT: " Patchwork
  2026-04-30 10:13 ` ✓ Xe.CI.FULL: " Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-29 20:57 UTC (permalink / raw)
  To: Tomasz Lis; +Cc: intel-xe

== Series Details ==

Series: drm/xe/vf: New approach for post-migration LRC fixups
URL   : https://patchwork.freedesktop.org/series/165741/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/vf: New approach for post-migration LRC fixups
  2026-04-29 20:39 [PATCH v1 0/2] drm/xe/vf: New approach for post-migration LRC fixups Tomasz Lis
                   ` (2 preceding siblings ...)
  2026-04-29 20:57 ` ✓ CI.KUnit: success for drm/xe/vf: New approach for post-migration LRC fixups Patchwork
@ 2026-04-29 21:52 ` Patchwork
  2026-04-30 10:13 ` ✓ Xe.CI.FULL: " Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-29 21:52 UTC (permalink / raw)
  To: Tomasz Lis; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/vf: New approach for post-migration LRC fixups
URL   : https://patchwork.freedesktop.org/series/165741/
State : success

== Summary ==

CI Bug Log - changes from xe-4953-f3b0eacc6be937779388c8412909b66717926980_BAT -> xe-pw-165741v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-bmg-1 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html

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


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

  * Linux: xe-4953-f3b0eacc6be937779388c8412909b66717926980 -> xe-pw-165741v1

  IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4953-f3b0eacc6be937779388c8412909b66717926980: f3b0eacc6be937779388c8412909b66717926980
  xe-pw-165741v1: 165741v1

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/xe/vf: New approach for post-migration LRC fixups
  2026-04-29 20:39 [PATCH v1 0/2] drm/xe/vf: New approach for post-migration LRC fixups Tomasz Lis
                   ` (3 preceding siblings ...)
  2026-04-29 21:52 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-30 10:13 ` Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-30 10:13 UTC (permalink / raw)
  To: Tomasz Lis; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/vf: New approach for post-migration LRC fixups
URL   : https://patchwork.freedesktop.org/series/165741/
State : success

== Summary ==

CI Bug Log - changes from xe-4953-f3b0eacc6be937779388c8412909b66717926980_FULL -> xe-pw-165741v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-lnl:          [PASS][1] -> [FAIL][2] ([Intel XE#3718] / [Intel XE#7265]) +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-lnl-8/igt@kms_async_flips@alternate-sync-async-flip.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-8/igt@kms_async_flips@alternate-sync-async-flip.html

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

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#1407]) +2 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

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

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#607] / [Intel XE#7361])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#7679]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#7679])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#367]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#2887]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#3432])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

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

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#306] / [Intel XE#7358])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#373]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_chamelium_frames@dp-crc-fast.html

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

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

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#6974])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@mei-interface:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#7642]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#7642])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@srm@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][24] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          NOTRUN -> [FAIL][25] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#1424])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2320]) +4 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

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

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2286] / [Intel XE#6035])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#6126] / [Intel XE#776])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#1421])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [PASS][33] -> [FAIL][34] ([Intel XE#5408] / [Intel XE#6266]) +1 other test fail
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#7179])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#7178] / [Intel XE#7351])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#4141]) +11 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#5812] / [Intel XE#656]) +10 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2311]) +29 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2313]) +28 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#6901])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_joiner@basic-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#6901])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html

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

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#7283]) +4 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#7283]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#5020] / [Intel XE#7348])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#7794])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1489]) +8 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

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

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#7345])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@fbc-psr2-primary-render@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#4609])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-render@edp-1.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#3904] / [Intel XE#7342])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_rotation_crc@bad-tiling.html

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

  * igt@kms_sharpness_filter@filter-basic:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#6503]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_sharpness_filter@filter-basic.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2426] / [Intel XE#5848])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#1499]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-10/igt@kms_vrr@flip-suspend.html

  * igt@xe_ccs@vm-bind-decompress:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#7644])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_ccs@vm-bind-decompress.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#6599])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_eudebug@basic-vm-bind-vm-destroy:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#7636]) +9 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-vm-destroy.html

  * igt@xe_eudebug_online@interrupt-all:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#7636]) +2 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_eudebug_online@interrupt-all.html

  * igt@xe_evict@evict-beng-large-external-cm:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_evict@evict-beng-large-external-cm.html

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

  * igt@xe_exec_balancer@no-exec-cm-parallel-basic:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#7482]) +4 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_exec_balancer@no-exec-cm-parallel-basic.html

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

  * igt@xe_exec_basic@multigpu-no-exec-null-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#1392]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#7136]) +10 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#7136]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd-smem:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#6874]) +7 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd-smem.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#6874]) +22 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html

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

  * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#7138]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate-race.html

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

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

  * igt@xe_mmap@small-bar:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@xe_mmap@small-bar.html

  * igt@xe_multigpu_svm@mgpu-coherency-conflict:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#6964]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_multigpu_svm@mgpu-coherency-conflict.html
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#6964]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@xe_multigpu_svm@mgpu-coherency-conflict.html

  * igt@xe_page_reclaim@binds-full-pd:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#7793])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_page_reclaim@binds-full-pd.html
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#7793])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@xe_page_reclaim@binds-full-pd.html

  * igt@xe_peer2peer@read:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_pm@d3cold-mmap-vram.html
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#2284] / [Intel XE#7370])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-8/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#1948])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_pm@s3-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#584] / [Intel XE#7369])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#944])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_sriov_vfio@region-info:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#7724])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-6/igt@xe_sriov_vfio@region-info.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][93] ([Intel XE#5545])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][94] ([Intel XE#7571]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic:
    - shard-bmg:          [INCOMPLETE][96] -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-bmg-3/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-4/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [FAIL][98] ([Intel XE#301]) -> [PASS][99] +1 other test pass
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_plane_cursor@primary:
    - shard-bmg:          [FAIL][100] ([Intel XE#7769]) -> [PASS][101] +1 other test pass
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-bmg-2/igt@kms_plane_cursor@primary.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_plane_cursor@primary.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [ABORT][102] -> [PASS][103] +1 other test pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@2x-tiling-none@pipe-a-hdmi-a-3-pipe-c-dp-2:
    - shard-bmg:          [DMESG-WARN][104] -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none@pipe-a-hdmi-a-3-pipe-c-dp-2.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-none@pipe-a-hdmi-a-3-pipe-c-dp-2.html

  
#### Warnings ####

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][106] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][107] ([Intel XE#2426] / [Intel XE#5848])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4953-f3b0eacc6be937779388c8412909b66717926980/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165741v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [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#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5812
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#7769]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7769
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4953-f3b0eacc6be937779388c8412909b66717926980 -> xe-pw-165741v1

  IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4953-f3b0eacc6be937779388c8412909b66717926980: f3b0eacc6be937779388c8412909b66717926980
  xe-pw-165741v1: 165741v1

== Logs ==

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

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

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

end of thread, other threads:[~2026-04-30 10:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-29 20:39 [PATCH v1 0/2] drm/xe/vf: New approach for post-migration LRC fixups Tomasz Lis
2026-04-29 20:39 ` [PATCH v1 1/2] drm/xe/vf: Late fixups of LRCs after VF migration Tomasz Lis
2026-04-29 20:39 ` [PATCH v1 2/2] drm/xe: After VF migration, repeat BO mapping in progress Tomasz Lis
2026-04-29 20:57 ` ✓ CI.KUnit: success for drm/xe/vf: New approach for post-migration LRC fixups Patchwork
2026-04-29 21:52 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-30 10:13 ` ✓ Xe.CI.FULL: " Patchwork

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