Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/4] Core Xe changes preparing for VF migration
@ 2025-09-04  2:47 Matthew Brost
  2025-09-04  2:47 ` [PATCH v6 1/4] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Matthew Brost @ 2025-09-04  2:47 UTC (permalink / raw)
  To: intel-xe

Fixup a few known issues in Xe core code ahead of VF migration feature.

Small behavior changes in LR jobs, these now can be resubmitted. LR
queue's now have DRM scheduler flow control too which renders
xe_exec_compute_mode.non-blocking invalid.

Test-with: 20250818165742.2648473-1-matthew.brost@intel.com

v2:
 - Fixup CI failures by ensuring DRM sched TDR never fires for LR jobs
v3:
 - Don't adjust ring head on GT resets, this could break kernel queues
 - Resend for CI with test with tag
v4:
 - Clarify commit messages
v5:
 - Include VLK-74448 fix as this popped in CI runs
v6:
 - Minor tweak to VLK-74448 fix

Matt

Matthew Brost (4):
  drm/xe: Save off position in ring in which a job was programmed
  drm/xe/guc: Track pending-enable source in submission state
  drm/xe: Track LR jobs in DRM scheduler pending list
  drm/xe: Don't change LRC ring head on job resubmission

 drivers/gpu/drm/xe/xe_exec.c            | 12 +---
 drivers/gpu/drm/xe/xe_exec_queue.c      | 19 ------
 drivers/gpu/drm/xe/xe_exec_queue.h      |  2 -
 drivers/gpu/drm/xe/xe_guc_submit.c      | 89 ++++++++++++++++++++-----
 drivers/gpu/drm/xe/xe_ring_ops.c        | 23 +++++--
 drivers/gpu/drm/xe/xe_sched_job_types.h |  5 ++
 6 files changed, 99 insertions(+), 51 deletions(-)

-- 
2.34.1


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

* [PATCH v6 1/4] drm/xe: Save off position in ring in which a job was programmed
  2025-09-04  2:47 [PATCH v6 0/4] Core Xe changes preparing for VF migration Matthew Brost
@ 2025-09-04  2:47 ` Matthew Brost
  2025-09-04  2:47 ` [PATCH v6 2/4] drm/xe/guc: Track pending-enable source in submission state Matthew Brost
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Matthew Brost @ 2025-09-04  2:47 UTC (permalink / raw)
  To: intel-xe

VF post-migration recovery needs to modify the ring with updated GGTT
addresses for pending jobs. Save off position in ring in which a job was
programmed to facilitate.

v4:
 - s/VF resume/VF post-migration recovery (Tomasz)

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Tomasz Lis <tomasz.lis@intel.com>
---
 drivers/gpu/drm/xe/xe_ring_ops.c        | 23 +++++++++++++++++++----
 drivers/gpu/drm/xe/xe_sched_job_types.h |  5 +++++
 2 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index d71837773d6c..ac0c6dcffe15 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct xe_lrc *lrc, u32 *dw, int i)
 
 /* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
 static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
-				    u64 batch_addr, u32 seqno)
+				    u64 batch_addr, u32 *head, u32 seqno)
 {
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 	u32 ppgtt_flag = get_ppgtt_flag(job);
 	struct xe_gt *gt = job->q->gt;
 
+	*head = lrc->ring.tail;
+
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	if (job->ring_ops_flush_tlb) {
@@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
 }
 
 static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
-				   u64 batch_addr, u32 seqno)
+				   u64 batch_addr, u32 *head, u32 seqno)
 {
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 	u32 ppgtt_flag = get_ppgtt_flag(job);
@@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
 	struct xe_device *xe = gt_to_xe(gt);
 	bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
 
+	*head = lrc->ring.tail;
+
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	dw[i++] = preparser_disable(true);
@@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
 
 static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 					    struct xe_lrc *lrc,
-					    u64 batch_addr, u32 seqno)
+					    u64 batch_addr, u32 *head,
+					    u32 seqno)
 {
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 	u32 ppgtt_flag = get_ppgtt_flag(job);
@@ -355,6 +360,8 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
 	u32 mask_flags = 0;
 
+	*head = lrc->ring.tail;
+
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	dw[i++] = preparser_disable(true);
@@ -396,11 +403,14 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 }
 
 static void emit_migration_job_gen12(struct xe_sched_job *job,
-				     struct xe_lrc *lrc, u32 seqno)
+				     struct xe_lrc *lrc, u32 *head,
+				     u32 seqno)
 {
 	u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 
+	*head = lrc->ring.tail;
+
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	i = emit_store_imm_ggtt(saddr, seqno, dw, i);
@@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct xe_sched_job *job)
 
 	__emit_job_gen12_simple(job, job->q->lrc[0],
 				job->ptrs[0].batch_addr,
+				&job->ptrs[0].head,
 				xe_sched_job_lrc_seqno(job));
 }
 
@@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
 
 	if (xe_sched_job_is_migration(job->q)) {
 		emit_migration_job_gen12(job, job->q->lrc[0],
+					 &job->ptrs[0].head,
 					 xe_sched_job_lrc_seqno(job));
 		return;
 	}
@@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
 	for (i = 0; i < job->q->width; ++i)
 		__emit_job_gen12_simple(job, job->q->lrc[i],
 					job->ptrs[i].batch_addr,
+					&job->ptrs[i].head,
 					xe_sched_job_lrc_seqno(job));
 }
 
@@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct xe_sched_job *job)
 	for (i = 0; i < job->q->width; ++i)
 		__emit_job_gen12_video(job, job->q->lrc[i],
 				       job->ptrs[i].batch_addr,
+				       &job->ptrs[i].head,
 				       xe_sched_job_lrc_seqno(job));
 }
 
@@ -471,6 +485,7 @@ static void emit_job_gen12_render_compute(struct xe_sched_job *job)
 	for (i = 0; i < job->q->width; ++i)
 		__emit_job_gen12_render_compute(job, job->q->lrc[i],
 						job->ptrs[i].batch_addr,
+						&job->ptrs[i].head,
 						xe_sched_job_lrc_seqno(job));
 }
 
diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
index dbf260dded8d..7ce58765a34a 100644
--- a/drivers/gpu/drm/xe/xe_sched_job_types.h
+++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
@@ -24,6 +24,11 @@ struct xe_job_ptrs {
 	struct dma_fence_chain *chain_fence;
 	/** @batch_addr: Batch buffer address. */
 	u64 batch_addr;
+	/**
+	 * @head: The tail pointer of the LRC (so head pointer of job) when the
+	 * job was submitted
+	 */
+	u32 head;
 };
 
 /**
-- 
2.34.1


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

* [PATCH v6 2/4] drm/xe/guc: Track pending-enable source in submission state
  2025-09-04  2:47 [PATCH v6 0/4] Core Xe changes preparing for VF migration Matthew Brost
  2025-09-04  2:47 ` [PATCH v6 1/4] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
@ 2025-09-04  2:47 ` Matthew Brost
  2025-09-04  2:47 ` [PATCH v6 3/4] drm/xe: Track LR jobs in DRM scheduler pending list Matthew Brost
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Matthew Brost @ 2025-09-04  2:47 UTC (permalink / raw)
  To: intel-xe

Add explicit tracking in the GuC submission state to record the source
of a pending enable (TDR vs. queue resume path vs. submission).
Disambiguating the origin lets the GuC submission state machine apply
the correct recovery/replay behavior.

This helps VF restore: when the device comes back, the state machine knows
whether the pending enable stems from timeout recovery, from a queue resume
sequence, or submission and can gate sequencing and fixups accordingly.

v4:
 - Clarify commit message (Tomasz)

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Tomasz Lis <tomasz.lis@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_submit.c | 36 ++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 1185b23b1384..9e4118126ef9 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -68,6 +68,8 @@ exec_queue_to_guc(struct xe_exec_queue *q)
 #define EXEC_QUEUE_STATE_BANNED			(1 << 9)
 #define EXEC_QUEUE_STATE_CHECK_TIMEOUT		(1 << 10)
 #define EXEC_QUEUE_STATE_EXTRA_REF		(1 << 11)
+#define EXEC_QUEUE_STATE_PENDING_RESUME		(1 << 12)
+#define EXEC_QUEUE_STATE_PENDING_TDR_EXIT	(1 << 13)
 
 static bool exec_queue_registered(struct xe_exec_queue *q)
 {
@@ -219,6 +221,36 @@ static void set_exec_queue_extra_ref(struct xe_exec_queue *q)
 	atomic_or(EXEC_QUEUE_STATE_EXTRA_REF, &q->guc->state);
 }
 
+static bool __maybe_unused exec_queue_pending_resume(struct xe_exec_queue *q)
+{
+	return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_PENDING_RESUME;
+}
+
+static void set_exec_queue_pending_resume(struct xe_exec_queue *q)
+{
+	atomic_or(EXEC_QUEUE_STATE_PENDING_RESUME, &q->guc->state);
+}
+
+static void clear_exec_queue_pending_resume(struct xe_exec_queue *q)
+{
+	atomic_and(~EXEC_QUEUE_STATE_PENDING_RESUME, &q->guc->state);
+}
+
+static bool __maybe_unused exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
+{
+	return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_PENDING_TDR_EXIT;
+}
+
+static void set_exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
+{
+	atomic_or(EXEC_QUEUE_STATE_PENDING_TDR_EXIT, &q->guc->state);
+}
+
+static void clear_exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
+{
+	atomic_and(~EXEC_QUEUE_STATE_PENDING_TDR_EXIT, &q->guc->state);
+}
+
 static bool exec_queue_killed_or_banned_or_wedged(struct xe_exec_queue *q)
 {
 	return (atomic_read(&q->guc->state) &
@@ -1344,6 +1376,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
 	return DRM_GPU_SCHED_STAT_RESET;
 
 sched_enable:
+	set_exec_queue_pending_tdr_exit(q);
 	enable_scheduling(q);
 rearm:
 	/*
@@ -1494,6 +1527,7 @@ static void __guc_exec_queue_process_msg_resume(struct xe_sched_msg *msg)
 		clear_exec_queue_suspended(q);
 		if (!exec_queue_enabled(q)) {
 			q->guc->resume_time = RESUME_PENDING;
+			set_exec_queue_pending_resume(q);
 			enable_scheduling(q);
 		}
 	} else {
@@ -2065,6 +2099,8 @@ static void handle_sched_done(struct xe_guc *guc, struct xe_exec_queue *q,
 		xe_gt_assert(guc_to_gt(guc), exec_queue_pending_enable(q));
 
 		q->guc->resume_time = ktime_get();
+		clear_exec_queue_pending_resume(q);
+		clear_exec_queue_pending_tdr_exit(q);
 		clear_exec_queue_pending_enable(q);
 		smp_wmb();
 		wake_up_all(&guc->ct.wq);
-- 
2.34.1


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

* [PATCH v6 3/4] drm/xe: Track LR jobs in DRM scheduler pending list
  2025-09-04  2:47 [PATCH v6 0/4] Core Xe changes preparing for VF migration Matthew Brost
  2025-09-04  2:47 ` [PATCH v6 1/4] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
  2025-09-04  2:47 ` [PATCH v6 2/4] drm/xe/guc: Track pending-enable source in submission state Matthew Brost
@ 2025-09-04  2:47 ` Matthew Brost
  2025-09-04  2:47 ` [PATCH v6 4/4] drm/xe: Don't change LRC ring head on job resubmission Matthew Brost
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Matthew Brost @ 2025-09-04  2:47 UTC (permalink / raw)
  To: intel-xe

VF migration requires jobs to remain pending so they can be replayed
after the VF comes back. Previously, LR job fences were intentionally
signaled immediately after submission to avoid the risk of exporting
them, as these fences do not naturally signal in a timely manner and
could break dma-fence contracts. A side effect of this approach was that
LR jobs were never added to the DRM scheduler’s pending list, preventing
them from being tracked for later resubmission.

We now avoid signaling LR job fences and ensure they are never exported;
Xe already guards against exporting these internal fences. With that
guarantee in place, we can safely track LR jobs in the scheduler’s
pending list so they are eligible for resubmission during VF
post-migration recovery (and similar recovery paths).

An added benefit is that LR queues now gain the DRM scheduler’s built-in
flow control over ring usage rather than rejecting new jobs in the exec
IOCTL if the ring is full.

v2:
 - Ensure DRM scheduler TDR doesn't run for LR jobs
 - Stack variable for killed_or_banned_or_wedged
v4:
 - Clarify commit message (Tomasz)

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Tomasz Lis <tomasz.lis@intel.com>
---
 drivers/gpu/drm/xe/xe_exec.c       | 12 ++-------
 drivers/gpu/drm/xe/xe_exec_queue.c | 19 -------------
 drivers/gpu/drm/xe/xe_exec_queue.h |  2 --
 drivers/gpu/drm/xe/xe_guc_submit.c | 43 ++++++++++++++++++++----------
 4 files changed, 31 insertions(+), 45 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index 44364c042ad7..b29b6edd59e0 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -117,7 +117,7 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 	u32 i, num_syncs, num_ufence = 0;
 	struct xe_sched_job *job;
 	struct xe_vm *vm;
-	bool write_locked, skip_retry = false;
+	bool write_locked;
 	ktime_t end = 0;
 	int err = 0;
 	struct xe_hw_engine_group *group;
@@ -256,12 +256,6 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 		goto err_exec;
 	}
 
-	if (xe_exec_queue_is_lr(q) && xe_exec_queue_ring_full(q)) {
-		err = -EWOULDBLOCK;	/* Aliased to -EAGAIN */
-		skip_retry = true;
-		goto err_exec;
-	}
-
 	if (xe_exec_queue_uses_pxp(q)) {
 		err = xe_vm_validate_protected(q->vm);
 		if (err)
@@ -318,8 +312,6 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 		xe_sched_job_init_user_fence(job, &syncs[i]);
 	}
 
-	if (xe_exec_queue_is_lr(q))
-		q->ring_ops->emit_job(job);
 	if (!xe_vm_in_lr_mode(vm))
 		xe_exec_queue_last_fence_set(q, vm, &job->drm.s_fence->finished);
 	xe_sched_job_push(job);
@@ -344,7 +336,7 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 	drm_exec_fini(exec);
 err_unlock_list:
 	up_read(&vm->lock);
-	if (err == -EAGAIN && !skip_retry)
+	if (err == -EAGAIN)
 		goto retry;
 err_hw_exec_mode:
 	if (mode == EXEC_MODE_DMA_FENCE)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 063c89d981e5..a419f4bd3ab8 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -816,25 +816,6 @@ bool xe_exec_queue_is_lr(struct xe_exec_queue *q)
 		!(q->flags & EXEC_QUEUE_FLAG_VM);
 }
 
-static s32 xe_exec_queue_num_job_inflight(struct xe_exec_queue *q)
-{
-	return q->lrc[0]->fence_ctx.next_seqno - xe_lrc_seqno(q->lrc[0]) - 1;
-}
-
-/**
- * xe_exec_queue_ring_full() - Whether an exec_queue's ring is full
- * @q: The exec_queue
- *
- * Return: True if the exec_queue's ring is full, false otherwise.
- */
-bool xe_exec_queue_ring_full(struct xe_exec_queue *q)
-{
-	struct xe_lrc *lrc = q->lrc[0];
-	s32 max_job = lrc->ring.size / MAX_JOB_SIZE_BYTES;
-
-	return xe_exec_queue_num_job_inflight(q) >= max_job;
-}
-
 /**
  * xe_exec_queue_is_idle() - Whether an exec_queue is idle.
  * @q: The exec_queue
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.h b/drivers/gpu/drm/xe/xe_exec_queue.h
index 15ec852e7f7e..6ae11a1c7404 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue.h
@@ -64,8 +64,6 @@ static inline bool xe_exec_queue_uses_pxp(struct xe_exec_queue *q)
 
 bool xe_exec_queue_is_lr(struct xe_exec_queue *q);
 
-bool xe_exec_queue_ring_full(struct xe_exec_queue *q);
-
 bool xe_exec_queue_is_idle(struct xe_exec_queue *q);
 
 void xe_exec_queue_kill(struct xe_exec_queue *q);
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 9e4118126ef9..69ed3c159d10 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -837,30 +837,31 @@ guc_exec_queue_run_job(struct drm_sched_job *drm_job)
 	struct xe_sched_job *job = to_xe_sched_job(drm_job);
 	struct xe_exec_queue *q = job->q;
 	struct xe_guc *guc = exec_queue_to_guc(q);
-	struct dma_fence *fence = NULL;
-	bool lr = xe_exec_queue_is_lr(q);
+	bool lr = xe_exec_queue_is_lr(q), killed_or_banned_or_wedged =
+		exec_queue_killed_or_banned_or_wedged(q);
 
 	xe_gt_assert(guc_to_gt(guc), !(exec_queue_destroyed(q) || exec_queue_pending_disable(q)) ||
 		     exec_queue_banned(q) || exec_queue_suspended(q));
 
 	trace_xe_sched_job_run(job);
 
-	if (!exec_queue_killed_or_banned_or_wedged(q) && !xe_sched_job_is_error(job)) {
+	if (!killed_or_banned_or_wedged && !xe_sched_job_is_error(job)) {
 		if (!exec_queue_registered(q))
 			register_exec_queue(q, GUC_CONTEXT_NORMAL);
-		if (!lr)	/* LR jobs are emitted in the exec IOCTL */
-			q->ring_ops->emit_job(job);
+		q->ring_ops->emit_job(job);
 		submit_exec_queue(q);
 	}
 
-	if (lr) {
-		xe_sched_job_set_error(job, -EOPNOTSUPP);
-		dma_fence_put(job->fence);	/* Drop ref from xe_sched_job_arm */
-	} else {
-		fence = job->fence;
-	}
+	/*
+	 * We don't care about job-fence ordering in LR VMs because these fences
+	 * are never exported; they are used solely to keep jobs on the pending
+	 * list. Once a queue enters an error state, there's no need to track
+	 * them.
+	 */
+	if (killed_or_banned_or_wedged && lr)
+		xe_sched_job_set_error(job, -ECANCELED);
 
-	return fence;
+	return job->fence;
 }
 
 /**
@@ -926,7 +927,8 @@ static void disable_scheduling_deregister(struct xe_guc *guc,
 		xe_gt_warn(q->gt, "Pending enable/disable failed to respond\n");
 		xe_sched_submission_start(sched);
 		xe_gt_reset_async(q->gt);
-		xe_sched_tdr_queue_imm(sched);
+		if (!xe_exec_queue_is_lr(q))
+			xe_sched_tdr_queue_imm(sched);
 		return;
 	}
 
@@ -1018,6 +1020,7 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
 	struct xe_exec_queue *q = ge->q;
 	struct xe_guc *guc = exec_queue_to_guc(q);
 	struct xe_gpu_scheduler *sched = &ge->sched;
+	struct xe_sched_job *job;
 	bool wedged = false;
 
 	xe_gt_assert(guc_to_gt(guc), xe_exec_queue_is_lr(q));
@@ -1068,7 +1071,16 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
 	if (!exec_queue_killed(q) && !xe_lrc_ring_is_idle(q->lrc[0]))
 		xe_devcoredump(q, NULL, "LR job cleanup, guc_id=%d", q->guc->id);
 
+	xe_hw_fence_irq_stop(q->fence_irq);
+
 	xe_sched_submission_start(sched);
+
+	spin_lock(&sched->base.job_list_lock);
+	list_for_each_entry(job, &sched->base.pending_list, drm.list)
+		xe_sched_job_set_error(job, -ECANCELED);
+	spin_unlock(&sched->base.job_list_lock);
+
+	xe_hw_fence_irq_start(q->fence_irq);
 }
 
 #define ADJUST_FIVE_PERCENT(__t)	mul_u64_u32_div(__t, 105, 100)
@@ -1139,7 +1151,8 @@ static void enable_scheduling(struct xe_exec_queue *q)
 		xe_gt_warn(guc_to_gt(guc), "Schedule enable failed to respond");
 		set_exec_queue_banned(q);
 		xe_gt_reset_async(q->gt);
-		xe_sched_tdr_queue_imm(&q->guc->sched);
+		if (!xe_exec_queue_is_lr(q))
+			xe_sched_tdr_queue_imm(&q->guc->sched);
 	}
 }
 
@@ -1197,6 +1210,8 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
 	int i = 0;
 	bool wedged = false, skip_timeout_check;
 
+	xe_gt_assert(guc_to_gt(guc), !xe_exec_queue_is_lr(q));
+
 	/*
 	 * TDR has fired before free job worker. Common if exec queue
 	 * immediately closed after last fence signaled. Add back to pending
-- 
2.34.1


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

* [PATCH v6 4/4] drm/xe: Don't change LRC ring head on job resubmission
  2025-09-04  2:47 [PATCH v6 0/4] Core Xe changes preparing for VF migration Matthew Brost
                   ` (2 preceding siblings ...)
  2025-09-04  2:47 ` [PATCH v6 3/4] drm/xe: Track LR jobs in DRM scheduler pending list Matthew Brost
@ 2025-09-04  2:47 ` Matthew Brost
  2025-09-24  3:26   ` [v6,4/4] " Varun Gupta
  2025-10-06  3:09   ` Varun Gupta
  2025-09-04  2:57 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration (rev4) Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 2 replies; 10+ messages in thread
From: Matthew Brost @ 2025-09-04  2:47 UTC (permalink / raw)
  To: intel-xe

Now that we save the job's head during submission, it's no longer
necessary to adjust the LRC ring head during resubmission. Instead, a
software-based adjustment of the tail will overwrite the old jobs in
place. For some odd reason, adjusting the LRC ring head didn't work on
parallel queues, which was causing issues in our CI.

v6:
 - Also set LRC tail to head so queue is idle coming out of reset

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_submit.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 69ed3c159d10..3fb394f65c3e 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -2008,11 +2008,17 @@ static void guc_exec_queue_start(struct xe_exec_queue *q)
 	struct xe_gpu_scheduler *sched = &q->guc->sched;
 
 	if (!exec_queue_killed_or_banned_or_wedged(q)) {
+		struct xe_sched_job *job = xe_sched_first_pending_job(sched);
 		int i;
 
 		trace_xe_exec_queue_resubmit(q);
-		for (i = 0; i < q->width; ++i)
-			xe_lrc_set_ring_head(q->lrc[i], q->lrc[i]->ring.tail);
+		if (job) {
+			for (i = 0; i < q->width; ++i) {
+				q->lrc[i]->ring.tail = job->ptrs[i].head;
+				xe_lrc_set_ring_tail(q->lrc[i],
+						     xe_lrc_ring_head(q->lrc[i]));
+			}
+		}
 		xe_sched_resubmit_jobs(sched);
 	}
 
-- 
2.34.1


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

* ✓ CI.KUnit: success for Core Xe changes preparing for VF migration (rev4)
  2025-09-04  2:47 [PATCH v6 0/4] Core Xe changes preparing for VF migration Matthew Brost
                   ` (3 preceding siblings ...)
  2025-09-04  2:47 ` [PATCH v6 4/4] drm/xe: Don't change LRC ring head on job resubmission Matthew Brost
@ 2025-09-04  2:57 ` Patchwork
  2025-09-04  3:30 ` ✓ Xe.CI.BAT: " Patchwork
  2025-09-04 12:11 ` ✗ Xe.CI.Full: failure " Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-09-04  2:57 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

== Series Details ==

Series: Core Xe changes preparing for VF migration (rev4)
URL   : https://patchwork.freedesktop.org/series/153589/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[02:56:48] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[02:56:52] 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
[02:57:21] Starting KUnit Kernel (1/1)...
[02:57:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[02:57:21] ================== guc_buf (11 subtests) ===================
[02:57:21] [PASSED] test_smallest
[02:57:21] [PASSED] test_largest
[02:57:22] [PASSED] test_granular
[02:57:22] [PASSED] test_unique
[02:57:22] [PASSED] test_overlap
[02:57:22] [PASSED] test_reusable
[02:57:22] [PASSED] test_too_big
[02:57:22] [PASSED] test_flush
[02:57:22] [PASSED] test_lookup
[02:57:22] [PASSED] test_data
[02:57:22] [PASSED] test_class
[02:57:22] ===================== [PASSED] guc_buf =====================
[02:57:22] =================== guc_dbm (7 subtests) ===================
[02:57:22] [PASSED] test_empty
[02:57:22] [PASSED] test_default
[02:57:22] ======================== test_size  ========================
[02:57:22] [PASSED] 4
[02:57:22] [PASSED] 8
[02:57:22] [PASSED] 32
[02:57:22] [PASSED] 256
[02:57:22] ==================== [PASSED] test_size ====================
[02:57:22] ======================= test_reuse  ========================
[02:57:22] [PASSED] 4
[02:57:22] [PASSED] 8
[02:57:22] [PASSED] 32
[02:57:22] [PASSED] 256
[02:57:22] =================== [PASSED] test_reuse ====================
[02:57:22] =================== test_range_overlap  ====================
[02:57:22] [PASSED] 4
[02:57:22] [PASSED] 8
[02:57:22] [PASSED] 32
[02:57:22] [PASSED] 256
[02:57:22] =============== [PASSED] test_range_overlap ================
[02:57:22] =================== test_range_compact  ====================
[02:57:22] [PASSED] 4
[02:57:22] [PASSED] 8
[02:57:22] [PASSED] 32
[02:57:22] [PASSED] 256
[02:57:22] =============== [PASSED] test_range_compact ================
[02:57:22] ==================== test_range_spare  =====================
[02:57:22] [PASSED] 4
[02:57:22] [PASSED] 8
[02:57:22] [PASSED] 32
[02:57:22] [PASSED] 256
[02:57:22] ================ [PASSED] test_range_spare =================
[02:57:22] ===================== [PASSED] guc_dbm =====================
[02:57:22] =================== guc_idm (6 subtests) ===================
[02:57:22] [PASSED] bad_init
[02:57:22] [PASSED] no_init
[02:57:22] [PASSED] init_fini
[02:57:22] [PASSED] check_used
[02:57:22] [PASSED] check_quota
[02:57:22] [PASSED] check_all
[02:57:22] ===================== [PASSED] guc_idm =====================
[02:57:22] ================== no_relay (3 subtests) ===================
[02:57:22] [PASSED] xe_drops_guc2pf_if_not_ready
[02:57:22] [PASSED] xe_drops_guc2vf_if_not_ready
[02:57:22] [PASSED] xe_rejects_send_if_not_ready
[02:57:22] ==================== [PASSED] no_relay =====================
[02:57:22] ================== pf_relay (14 subtests) ==================
[02:57:22] [PASSED] pf_rejects_guc2pf_too_short
[02:57:22] [PASSED] pf_rejects_guc2pf_too_long
[02:57:22] [PASSED] pf_rejects_guc2pf_no_payload
[02:57:22] [PASSED] pf_fails_no_payload
[02:57:22] [PASSED] pf_fails_bad_origin
[02:57:22] [PASSED] pf_fails_bad_type
[02:57:22] [PASSED] pf_txn_reports_error
[02:57:22] [PASSED] pf_txn_sends_pf2guc
[02:57:22] [PASSED] pf_sends_pf2guc
[02:57:22] [SKIPPED] pf_loopback_nop
[02:57:22] [SKIPPED] pf_loopback_echo
[02:57:22] [SKIPPED] pf_loopback_fail
[02:57:22] [SKIPPED] pf_loopback_busy
[02:57:22] [SKIPPED] pf_loopback_retry
[02:57:22] ==================== [PASSED] pf_relay =====================
[02:57:22] ================== vf_relay (3 subtests) ===================
[02:57:22] [PASSED] vf_rejects_guc2vf_too_short
[02:57:22] [PASSED] vf_rejects_guc2vf_too_long
[02:57:22] [PASSED] vf_rejects_guc2vf_no_payload
[02:57:22] ==================== [PASSED] vf_relay =====================
[02:57:22] ===================== lmtt (1 subtest) =====================
[02:57:22] ======================== test_ops  =========================
[02:57:22] [PASSED] 2-level
[02:57:22] [PASSED] multi-level
[02:57:22] ==================== [PASSED] test_ops =====================
[02:57:22] ====================== [PASSED] lmtt =======================
[02:57:22] ================= pf_service (11 subtests) =================
[02:57:22] [PASSED] pf_negotiate_any
[02:57:22] [PASSED] pf_negotiate_base_match
[02:57:22] [PASSED] pf_negotiate_base_newer
[02:57:22] [PASSED] pf_negotiate_base_next
[02:57:22] [SKIPPED] pf_negotiate_base_older
[02:57:22] [PASSED] pf_negotiate_base_prev
[02:57:22] [PASSED] pf_negotiate_latest_match
[02:57:22] [PASSED] pf_negotiate_latest_newer
[02:57:22] [PASSED] pf_negotiate_latest_next
[02:57:22] [SKIPPED] pf_negotiate_latest_older
[02:57:22] [SKIPPED] pf_negotiate_latest_prev
[02:57:22] =================== [PASSED] pf_service ====================
[02:57:22] =================== xe_mocs (2 subtests) ===================
[02:57:22] ================ xe_live_mocs_kernel_kunit  ================
[02:57:22] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[02:57:22] ================ xe_live_mocs_reset_kunit  =================
[02:57:22] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[02:57:22] ==================== [SKIPPED] xe_mocs =====================
[02:57:22] ================= xe_migrate (2 subtests) ==================
[02:57:22] ================= xe_migrate_sanity_kunit  =================
[02:57:22] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[02:57:22] ================== xe_validate_ccs_kunit  ==================
[02:57:22] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[02:57:22] =================== [SKIPPED] xe_migrate ===================
[02:57:22] ================== xe_dma_buf (1 subtest) ==================
[02:57:22] ==================== xe_dma_buf_kunit  =====================
[02:57:22] ================ [SKIPPED] xe_dma_buf_kunit ================
[02:57:22] =================== [SKIPPED] xe_dma_buf ===================
[02:57:22] ================= xe_bo_shrink (1 subtest) =================
[02:57:22] =================== xe_bo_shrink_kunit  ====================
[02:57:22] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[02:57:22] ================== [SKIPPED] xe_bo_shrink ==================
[02:57:22] ==================== xe_bo (2 subtests) ====================
[02:57:22] ================== xe_ccs_migrate_kunit  ===================
[02:57:22] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[02:57:22] ==================== xe_bo_evict_kunit  ====================
[02:57:22] =============== [SKIPPED] xe_bo_evict_kunit ================
[02:57:22] ===================== [SKIPPED] xe_bo ======================
[02:57:22] ==================== args (11 subtests) ====================
[02:57:22] [PASSED] count_args_test
[02:57:22] [PASSED] call_args_example
[02:57:22] [PASSED] call_args_test
[02:57:22] [PASSED] drop_first_arg_example
[02:57:22] [PASSED] drop_first_arg_test
[02:57:22] [PASSED] first_arg_example
[02:57:22] [PASSED] first_arg_test
[02:57:22] [PASSED] last_arg_example
[02:57:22] [PASSED] last_arg_test
[02:57:22] [PASSED] pick_arg_example
[02:57:22] [PASSED] sep_comma_example
[02:57:22] ====================== [PASSED] args =======================
[02:57:22] =================== xe_pci (3 subtests) ====================
[02:57:22] ==================== check_graphics_ip  ====================
[02:57:22] [PASSED] 12.70 Xe_LPG
[02:57:22] [PASSED] 12.71 Xe_LPG
[02:57:22] [PASSED] 12.74 Xe_LPG+
[02:57:22] [PASSED] 20.01 Xe2_HPG
[02:57:22] [PASSED] 20.02 Xe2_HPG
[02:57:22] [PASSED] 20.04 Xe2_LPG
[02:57:22] [PASSED] 30.00 Xe3_LPG
[02:57:22] [PASSED] 30.01 Xe3_LPG
[02:57:22] [PASSED] 30.03 Xe3_LPG
[02:57:22] ================ [PASSED] check_graphics_ip ================
[02:57:22] ===================== check_media_ip  ======================
[02:57:22] [PASSED] 13.00 Xe_LPM+
[02:57:22] [PASSED] 13.01 Xe2_HPM
[02:57:22] [PASSED] 20.00 Xe2_LPM
[02:57:22] [PASSED] 30.00 Xe3_LPM
[02:57:22] [PASSED] 30.02 Xe3_LPM
[02:57:22] ================= [PASSED] check_media_ip ==================
[02:57:22] ================= check_platform_gt_count  =================
[02:57:22] [PASSED] 0x9A60 (TIGERLAKE)
[02:57:22] [PASSED] 0x9A68 (TIGERLAKE)
[02:57:22] [PASSED] 0x9A70 (TIGERLAKE)
[02:57:22] [PASSED] 0x9A40 (TIGERLAKE)
[02:57:22] [PASSED] 0x9A49 (TIGERLAKE)
[02:57:22] [PASSED] 0x9A59 (TIGERLAKE)
[02:57:22] [PASSED] 0x9A78 (TIGERLAKE)
[02:57:22] [PASSED] 0x9AC0 (TIGERLAKE)
[02:57:22] [PASSED] 0x9AC9 (TIGERLAKE)
[02:57:22] [PASSED] 0x9AD9 (TIGERLAKE)
[02:57:22] [PASSED] 0x9AF8 (TIGERLAKE)
[02:57:22] [PASSED] 0x4C80 (ROCKETLAKE)
[02:57:22] [PASSED] 0x4C8A (ROCKETLAKE)
[02:57:22] [PASSED] 0x4C8B (ROCKETLAKE)
[02:57:22] [PASSED] 0x4C8C (ROCKETLAKE)
[02:57:22] [PASSED] 0x4C90 (ROCKETLAKE)
[02:57:22] [PASSED] 0x4C9A (ROCKETLAKE)
[02:57:22] [PASSED] 0x4680 (ALDERLAKE_S)
[02:57:22] [PASSED] 0x4682 (ALDERLAKE_S)
[02:57:22] [PASSED] 0x4688 (ALDERLAKE_S)
[02:57:22] [PASSED] 0x468A (ALDERLAKE_S)
[02:57:22] [PASSED] 0x468B (ALDERLAKE_S)
[02:57:22] [PASSED] 0x4690 (ALDERLAKE_S)
[02:57:22] [PASSED] 0x4692 (ALDERLAKE_S)
[02:57:22] [PASSED] 0x4693 (ALDERLAKE_S)
[02:57:22] [PASSED] 0x46A0 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46A1 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46A2 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46A3 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46A6 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46A8 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46AA (ALDERLAKE_P)
[02:57:22] [PASSED] 0x462A (ALDERLAKE_P)
[02:57:22] [PASSED] 0x4626 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x4628 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46B0 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46B1 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46B2 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46B3 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46C0 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46C1 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46C2 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46C3 (ALDERLAKE_P)
[02:57:22] [PASSED] 0x46D0 (ALDERLAKE_N)
[02:57:22] [PASSED] 0x46D1 (ALDERLAKE_N)
[02:57:22] [PASSED] 0x46D2 (ALDERLAKE_N)
[02:57:22] [PASSED] 0x46D3 (ALDERLAKE_N)
[02:57:22] [PASSED] 0x46D4 (ALDERLAKE_N)
[02:57:22] [PASSED] 0xA721 (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA7A1 (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA7A9 (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA7AC (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA7AD (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA720 (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA7A0 (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA7A8 (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA7AA (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA7AB (ALDERLAKE_P)
[02:57:22] [PASSED] 0xA780 (ALDERLAKE_S)
[02:57:22] [PASSED] 0xA781 (ALDERLAKE_S)
[02:57:22] [PASSED] 0xA782 (ALDERLAKE_S)
[02:57:22] [PASSED] 0xA783 (ALDERLAKE_S)
[02:57:22] [PASSED] 0xA788 (ALDERLAKE_S)
[02:57:22] [PASSED] 0xA789 (ALDERLAKE_S)
[02:57:22] [PASSED] 0xA78A (ALDERLAKE_S)
[02:57:22] [PASSED] 0xA78B (ALDERLAKE_S)
[02:57:22] [PASSED] 0x4905 (DG1)
[02:57:22] [PASSED] 0x4906 (DG1)
[02:57:22] [PASSED] 0x4907 (DG1)
[02:57:22] [PASSED] 0x4908 (DG1)
[02:57:22] [PASSED] 0x4909 (DG1)
[02:57:22] [PASSED] 0x56C0 (DG2)
[02:57:22] [PASSED] 0x56C2 (DG2)
[02:57:22] [PASSED] 0x56C1 (DG2)
[02:57:22] [PASSED] 0x7D51 (METEORLAKE)
[02:57:22] [PASSED] 0x7DD1 (METEORLAKE)
[02:57:22] [PASSED] 0x7D41 (METEORLAKE)
[02:57:22] [PASSED] 0x7D67 (METEORLAKE)
[02:57:22] [PASSED] 0xB640 (METEORLAKE)
[02:57:22] [PASSED] 0x56A0 (DG2)
[02:57:22] [PASSED] 0x56A1 (DG2)
[02:57:22] [PASSED] 0x56A2 (DG2)
[02:57:22] [PASSED] 0x56BE (DG2)
[02:57:22] [PASSED] 0x56BF (DG2)
[02:57:22] [PASSED] 0x5690 (DG2)
[02:57:22] [PASSED] 0x5691 (DG2)
[02:57:22] [PASSED] 0x5692 (DG2)
[02:57:22] [PASSED] 0x56A5 (DG2)
[02:57:22] [PASSED] 0x56A6 (DG2)
[02:57:22] [PASSED] 0x56B0 (DG2)
[02:57:22] [PASSED] 0x56B1 (DG2)
[02:57:22] [PASSED] 0x56BA (DG2)
[02:57:22] [PASSED] 0x56BB (DG2)
[02:57:22] [PASSED] 0x56BC (DG2)
[02:57:22] [PASSED] 0x56BD (DG2)
[02:57:22] [PASSED] 0x5693 (DG2)
[02:57:22] [PASSED] 0x5694 (DG2)
[02:57:22] [PASSED] 0x5695 (DG2)
[02:57:22] [PASSED] 0x56A3 (DG2)
[02:57:22] [PASSED] 0x56A4 (DG2)
[02:57:22] [PASSED] 0x56B2 (DG2)
[02:57:22] [PASSED] 0x56B3 (DG2)
[02:57:22] [PASSED] 0x5696 (DG2)
[02:57:22] [PASSED] 0x5697 (DG2)
[02:57:22] [PASSED] 0xB69 (PVC)
[02:57:22] [PASSED] 0xB6E (PVC)
[02:57:22] [PASSED] 0xBD4 (PVC)
[02:57:22] [PASSED] 0xBD5 (PVC)
[02:57:22] [PASSED] 0xBD6 (PVC)
[02:57:22] [PASSED] 0xBD7 (PVC)
[02:57:22] [PASSED] 0xBD8 (PVC)
[02:57:22] [PASSED] 0xBD9 (PVC)
[02:57:22] [PASSED] 0xBDA (PVC)
[02:57:22] [PASSED] 0xBDB (PVC)
[02:57:22] [PASSED] 0xBE0 (PVC)
[02:57:22] [PASSED] 0xBE1 (PVC)
[02:57:22] [PASSED] 0xBE5 (PVC)
[02:57:22] [PASSED] 0x7D40 (METEORLAKE)
[02:57:22] [PASSED] 0x7D45 (METEORLAKE)
[02:57:22] [PASSED] 0x7D55 (METEORLAKE)
[02:57:22] [PASSED] 0x7D60 (METEORLAKE)
[02:57:22] [PASSED] 0x7DD5 (METEORLAKE)
[02:57:22] [PASSED] 0x6420 (LUNARLAKE)
[02:57:22] [PASSED] 0x64A0 (LUNARLAKE)
[02:57:22] [PASSED] 0x64B0 (LUNARLAKE)
[02:57:22] [PASSED] 0xE202 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE209 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE20B (BATTLEMAGE)
[02:57:22] [PASSED] 0xE20C (BATTLEMAGE)
[02:57:22] [PASSED] 0xE20D (BATTLEMAGE)
[02:57:22] [PASSED] 0xE210 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE211 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE212 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE216 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE220 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE221 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE222 (BATTLEMAGE)
[02:57:22] [PASSED] 0xE223 (BATTLEMAGE)
[02:57:22] [PASSED] 0xB080 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB081 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB082 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB083 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB084 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB085 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB086 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB087 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB08F (PANTHERLAKE)
[02:57:22] [PASSED] 0xB090 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB0A0 (PANTHERLAKE)
[02:57:22] [PASSED] 0xB0B0 (PANTHERLAKE)
[02:57:22] [PASSED] 0xFD80 (PANTHERLAKE)
[02:57:22] [PASSED] 0xFD81 (PANTHERLAKE)
[02:57:22] ============= [PASSED] check_platform_gt_count =============
[02:57:22] ===================== [PASSED] xe_pci ======================
[02:57:22] =================== xe_rtp (2 subtests) ====================
[02:57:22] =============== xe_rtp_process_to_sr_tests  ================
[02:57:22] [PASSED] coalesce-same-reg
[02:57:22] [PASSED] no-match-no-add
[02:57:22] [PASSED] match-or
[02:57:22] [PASSED] match-or-xfail
[02:57:22] [PASSED] no-match-no-add-multiple-rules
[02:57:22] [PASSED] two-regs-two-entries
[02:57:22] [PASSED] clr-one-set-other
[02:57:22] [PASSED] set-field
[02:57:22] [PASSED] conflict-duplicate
[02:57:22] [PASSED] conflict-not-disjoint
[02:57:22] [PASSED] conflict-reg-type
[02:57:22] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[02:57:22] ================== xe_rtp_process_tests  ===================
[02:57:22] [PASSED] active1
[02:57:22] [PASSED] active2
[02:57:22] [PASSED] active-inactive
[02:57:22] [PASSED] inactive-active
[02:57:22] [PASSED] inactive-1st_or_active-inactive
[02:57:22] [PASSED] inactive-2nd_or_active-inactive
[02:57:22] [PASSED] inactive-last_or_active-inactive
[02:57:22] [PASSED] inactive-no_or_active-inactive
[02:57:22] ============== [PASSED] xe_rtp_process_tests ===============
[02:57:22] ===================== [PASSED] xe_rtp ======================
[02:57:22] ==================== xe_wa (1 subtest) =====================
[02:57:22] ======================== xe_wa_gt  =========================
[02:57:22] [PASSED] TIGERLAKE (B0)
[02:57:22] [PASSED] DG1 (A0)
[02:57:22] [PASSED] DG1 (B0)
[02:57:22] [PASSED] ALDERLAKE_S (A0)
[02:57:22] [PASSED] ALDERLAKE_S (B0)
[02:57:22] [PASSED] ALDERLAKE_S (C0)
[02:57:22] [PASSED] ALDERLAKE_S (D0)
[02:57:22] [PASSED] ALDERLAKE_P (A0)
[02:57:22] [PASSED] ALDERLAKE_P (B0)
[02:57:22] [PASSED] ALDERLAKE_P (C0)
[02:57:22] [PASSED] ALDERLAKE_S_RPLS (D0)
[02:57:22] [PASSED] ALDERLAKE_P_RPLU (E0)
[02:57:22] [PASSED] DG2_G10 (C0)
[02:57:22] [PASSED] DG2_G11 (B1)
[02:57:22] [PASSED] DG2_G12 (A1)
[02:57:22] [PASSED] METEORLAKE (g:A0, m:A0)
[02:57:22] [PASSED] METEORLAKE (g:A0, m:A0)
[02:57:22] [PASSED] METEORLAKE (g:A0, m:A0)
[02:57:22] [PASSED] LUNARLAKE (g:A0, m:A0)
[02:57:22] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[02:57:22] [PASSED] BATTLEMAGE (g:A0, m:A1)
[02:57:22] [PASSED] PANTHERLAKE (g:A0, m:A0)
[02:57:22] ==================== [PASSED] xe_wa_gt =====================
[02:57:22] ====================== [PASSED] xe_wa ======================
[02:57:22] ============================================================
[02:57:22] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[02:57:22] Elapsed time: 33.532s total, 4.305s configuring, 28.861s building, 0.331s running

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

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

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



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

* ✓ Xe.CI.BAT: success for Core Xe changes preparing for VF migration (rev4)
  2025-09-04  2:47 [PATCH v6 0/4] Core Xe changes preparing for VF migration Matthew Brost
                   ` (4 preceding siblings ...)
  2025-09-04  2:57 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration (rev4) Patchwork
@ 2025-09-04  3:30 ` Patchwork
  2025-09-04 12:11 ` ✗ Xe.CI.Full: failure " Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-09-04  3:30 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Core Xe changes preparing for VF migration (rev4)
URL   : https://patchwork.freedesktop.org/series/153589/
State : success

== Summary ==

CI Bug Log - changes from xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7_BAT -> xe-pw-153589v4_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-plain-flip@a-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-plain-flip@c-edp1:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html

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

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


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

  * Linux: xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7 -> xe-pw-153589v4

  IGT_8521: 8521
  xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7: 2b95afd5f659a01a6fc8195358e62077846b97e7
  xe-pw-153589v4: 153589v4

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for Core Xe changes preparing for VF migration (rev4)
  2025-09-04  2:47 [PATCH v6 0/4] Core Xe changes preparing for VF migration Matthew Brost
                   ` (5 preceding siblings ...)
  2025-09-04  3:30 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-09-04 12:11 ` Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-09-04 12:11 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Core Xe changes preparing for VF migration (rev4)
URL   : https://patchwork.freedesktop.org/series/153589/
State : failure

== Summary ==

CI Bug Log - changes from xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7_FULL -> xe-pw-153589v4_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-153589v4_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_compute_mode@non-blocking:
    - shard-bmg:          [PASS][1] -> [TIMEOUT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-2/igt@xe_exec_compute_mode@non-blocking.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-2/igt@xe_exec_compute_mode@non-blocking.html
    - shard-dg2-set2:     [PASS][3] -> [TIMEOUT][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-463/igt@xe_exec_compute_mode@non-blocking.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-463/igt@xe_exec_compute_mode@non-blocking.html
    - shard-lnl:          [PASS][5] -> [TIMEOUT][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-lnl-2/igt@xe_exec_compute_mode@non-blocking.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-lnl-7/igt@xe_exec_compute_mode@non-blocking.html

  * igt@xe_exec_reset@cm-gt-reset:
    - shard-adlp:         [PASS][7] -> [FAIL][8] +1 other test fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-3/igt@xe_exec_reset@cm-gt-reset.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-2/igt@xe_exec_reset@cm-gt-reset.html

  * igt@xe_exec_system_allocator@evict-malloc:
    - shard-bmg:          [PASS][9] -> [FAIL][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-1/igt@xe_exec_system_allocator@evict-malloc.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-6/igt@xe_exec_system_allocator@evict-malloc.html

  
New tests
---------

  New tests have been introduced between xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7_FULL and xe-pw-153589v4_FULL:

### New IGT tests (2) ###

  * igt@kms_cursor_crc@cursor-offscreen-256x256@pipe-a-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [2.76] s

  * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [3.85] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#623])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [PASS][12] -> [FAIL][13] ([Intel XE#3908]) +1 other test fail
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-9/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#316]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [PASS][15] -> [DMESG-FAIL][16] ([Intel XE#4543])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] ([Intel XE#1124]) +5 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#787]) +174 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][20] -> [INCOMPLETE][21] ([Intel XE#3862]) +1 other test incomplete
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#3442])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html

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

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#373]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][27] ([Intel XE#1178])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

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

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#308]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-bmg:          [PASS][30] -> [SKIP][31] ([Intel XE#2291])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-bmg:          [PASS][32] -> [DMESG-WARN][33] ([Intel XE#5354])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#323])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#455]) +9 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#2373])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-5/igt@kms_feature_discovery@display-2x.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-6/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#1138])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#1135])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3:
    - shard-bmg:          [PASS][40] -> [FAIL][41] ([Intel XE#5338]) +1 other test fail
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [PASS][42] -> [SKIP][43] ([Intel XE#2316]) +5 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-lnl:          [PASS][44] -> [FAIL][45] ([Intel XE#301])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6:
    - shard-dg2-set2:     [PASS][46] -> [FAIL][47] ([Intel XE#301]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-adlp:         [PASS][48] -> [DMESG-WARN][49] ([Intel XE#5208])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-3/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-adlp:         [PASS][50] -> [DMESG-WARN][51] ([Intel XE#2953] / [Intel XE#4173]) +7 other tests dmesg-warn
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1:
    - shard-adlp:         [PASS][52] -> [DMESG-WARN][53] ([Intel XE#4543]) +3 other tests dmesg-warn
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-8/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-6/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#651]) +14 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#653]) +11 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#5021])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#1122])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +8 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][60] ([Intel XE#3414]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [PASS][61] -> [SKIP][62] ([Intel XE#1435])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html

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

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

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#4518])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-434/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#1392]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-dg2-set2:     [PASS][67] -> [SKIP][68] ([Intel XE#1392]) +3 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-466/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#288]) +9 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html

  * igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#4837]) +6 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html

  * igt@xe_exec_system_allocator@many-large-malloc-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#4915]) +121 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-464/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#3573]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-434/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_pm@d3cold-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#2284] / [Intel XE#366])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-434/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@s3-mocs:
    - shard-adlp:         [PASS][74] -> [DMESG-WARN][75] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#569])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-4/igt@xe_pm@s3-mocs.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-2/igt@xe_pm@s3-mocs.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [PASS][76] -> [FAIL][77] ([Intel XE#4819]) +1 other test fail
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-436/igt@xe_pmu@gt-frequency.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@xe_pmu@gt-frequency.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#4733]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#944]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_render_copy@render-stress-1-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#4814])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-464/igt@xe_render_copy@render-stress-1-copies.html

  
#### Possible fixes ####

  * {igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-1}:
    - shard-adlp:         [DMESG-WARN][81] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][82] +7 other tests pass
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-3/igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-1.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-8/igt@kms_async_flips@async-flip-dpms@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][83] ([Intel XE#4543]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
    - shard-bmg:          [FAIL][85] ([Intel XE#5376]) -> [PASS][86] +1 other test pass
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][87] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][89] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][91] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][93] ([Intel XE#3124]) -> [PASS][94] +1 other test pass
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][95] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][96] +1 other test pass
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
    - shard-bmg:          [DMESG-WARN][97] ([Intel XE#5354]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][99] ([Intel XE#2291]) -> [PASS][100] +1 other test pass
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-bmg:          [SKIP][101] ([Intel XE#2316]) -> [PASS][102] +4 other tests pass
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
    - shard-adlp:         [DMESG-WARN][103] ([Intel XE#4543]) -> [PASS][104] +2 other tests pass
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-2/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][105] ([Intel XE#301]) -> [PASS][106] +3 other tests pass
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp4:
    - shard-dg2-set2:     [FAIL][107] ([Intel XE#301]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp4.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp4.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [SKIP][109] ([Intel XE#1503]) -> [PASS][110] +1 other test pass
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][111] ([Intel XE#1392]) -> [PASS][112] +5 other tests pass
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-bmg:          [DMESG-WARN][113] ([Intel XE#3876]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_threads@threads-bal-fd-basic:
    - shard-dg2-set2:     [INCOMPLETE][115] -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-436/igt@xe_exec_threads@threads-bal-fd-basic.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-464/igt@xe_exec_threads@threads-bal-fd-basic.html

  * igt@xe_exec_threads@threads-hang-rebind-err:
    - shard-dg2-set2:     [DMESG-WARN][117] ([Intel XE#3876]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-435/igt@xe_exec_threads@threads-hang-rebind-err.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-433/igt@xe_exec_threads@threads-hang-rebind-err.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [DMESG-WARN][119] ([Intel XE#5893]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-466/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_pm@s2idle-d3hot-basic-exec:
    - shard-adlp:         [DMESG-WARN][121] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-2/igt@xe_pm@s2idle-d3hot-basic-exec.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-6/igt@xe_pm@s2idle-d3hot-basic-exec.html

  * igt@xe_pm@s4-exec-after:
    - shard-lnl:          [DMESG-WARN][123] -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-lnl-4/igt@xe_pm@s4-exec-after.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-lnl-1/igt@xe_pm@s4-exec-after.html

  
#### Warnings ####

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [DMESG-WARN][125] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-FAIL][126] ([Intel XE#4543])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][127] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][128] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [SKIP][129] ([Intel XE#2341]) -> [FAIL][130] ([Intel XE#1178])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][131] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][132] ([Intel XE#301])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][133] ([Intel XE#2311]) -> [SKIP][134] ([Intel XE#2312]) +12 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][135] ([Intel XE#2312]) -> [SKIP][136] ([Intel XE#2311]) +8 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][137] ([Intel XE#2312]) -> [SKIP][138] ([Intel XE#5390]) +3 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][139] ([Intel XE#5390]) -> [SKIP][140] ([Intel XE#2312]) +4 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][141] ([Intel XE#2312]) -> [SKIP][142] ([Intel XE#2313]) +8 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][143] ([Intel XE#2313]) -> [SKIP][144] ([Intel XE#2312]) +11 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][145] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][146] ([Intel XE#3544])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@xe_exec_basic@multigpu-once-userptr-invalidate:
    - shard-dg2-set2:     [INCOMPLETE][147] ([Intel XE#4842]) -> [SKIP][148] ([Intel XE#1392])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-dg2-466/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-dg2-432/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html

  * igt@xe_exec_reset@cm-cat-error:
    - shard-adlp:         [DMESG-FAIL][149] ([Intel XE#3868]) -> [DMESG-WARN][150] ([Intel XE#3868])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-adlp-2/igt@xe_exec_reset@cm-cat-error.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-adlp-9/igt@xe_exec_reset@cm-cat-error.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-lnl:          [ABORT][151] ([Intel XE#4917] / [Intel XE#5466]) -> [ABORT][152] ([Intel XE#5466])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7/shard-lnl-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v4/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

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

  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7 -> xe-pw-153589v4

  IGT_8521: 8521
  xe-3673-2b95afd5f659a01a6fc8195358e62077846b97e7: 2b95afd5f659a01a6fc8195358e62077846b97e7
  xe-pw-153589v4: 153589v4

== Logs ==

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

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

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

* Re: [v6,4/4] drm/xe: Don't change LRC ring head on job resubmission
  2025-09-04  2:47 ` [PATCH v6 4/4] drm/xe: Don't change LRC ring head on job resubmission Matthew Brost
@ 2025-09-24  3:26   ` Varun Gupta
  2025-10-06  3:09   ` Varun Gupta
  1 sibling, 0 replies; 10+ messages in thread
From: Varun Gupta @ 2025-09-24  3:26 UTC (permalink / raw)
  To: intel-xe; +Cc: Matthew Brost

>v6:
> - Also set LRC tail to head so queue is idle coming out of reset

>Signed-off-by: Matthew Brost <matthew.brost@intel.com>
>---
> drivers/gpu/drm/xe/xe_guc_submit.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
>index 69ed3c159d10..3fb394f65c3e 100644
>--- a/drivers/gpu/drm/xe/xe_guc_submit.c
>+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
>@@ -2008,11 +2008,17 @@ static void guc_exec_queue_start(struct xe_exec_queue *q)
> 	struct xe_gpu_scheduler *sched = &q->guc->sched;
> 
> 	if (!exec_queue_killed_or_banned_or_wedged(q)) {
>+		struct xe_sched_job *job = xe_sched_first_pending_job(sched);
> 		int i;
> 
> 		trace_xe_exec_queue_resubmit(q);
>-		for (i = 0; i < q->width; ++i)
>-			xe_lrc_set_ring_head(q->lrc[i], q->lrc[i]->ring.tail);
>+		if (job) {
>+			for (i = 0; i < q->width; ++i) {
>+				q->lrc[i]->ring.tail = job->ptrs[i].head;
>+				xe_lrc_set_ring_tail(q->lrc[i],
>+						     xe_lrc_ring_head(q->lrc[i]));
>+			}
>+		}
> 		xe_sched_resubmit_jobs(sched);
> 	}
LGTM

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

* Re: [v6,4/4] drm/xe: Don't change LRC ring head on job resubmission
  2025-09-04  2:47 ` [PATCH v6 4/4] drm/xe: Don't change LRC ring head on job resubmission Matthew Brost
  2025-09-24  3:26   ` [v6,4/4] " Varun Gupta
@ 2025-10-06  3:09   ` Varun Gupta
  1 sibling, 0 replies; 10+ messages in thread
From: Varun Gupta @ 2025-10-06  3:09 UTC (permalink / raw)
  To: intel-xe; +Cc: Matthew Brost

>v6:
> - Also set LRC tail to head so queue is idle coming out of reset
>
>Signed-off-by: Matthew Brost <matthew.brost@intel.com>

Reviewed-by: Varun Gupta <varun.gupta@intel.com>

>---
> drivers/gpu/drm/xe/xe_guc_submit.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
>index 69ed3c159d10..3fb394f65c3e 100644
>--- a/drivers/gpu/drm/xe/xe_guc_submit.c
>+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
>@@ -2008,11 +2008,17 @@ static void guc_exec_queue_start(struct xe_exec_queue *q)
> 	struct xe_gpu_scheduler *sched = &q->guc->sched;
> 
> 	if (!exec_queue_killed_or_banned_or_wedged(q)) {
>+		struct xe_sched_job *job = xe_sched_first_pending_job(sched);
> 		int i;
> 
> 		trace_xe_exec_queue_resubmit(q);
>-		for (i = 0; i < q->width; ++i)
>-			xe_lrc_set_ring_head(q->lrc[i], q->lrc[i]->ring.tail);
>+		if (job) {
>+			for (i = 0; i < q->width; ++i) {
>+				q->lrc[i]->ring.tail = job->ptrs[i].head;
>+				xe_lrc_set_ring_tail(q->lrc[i],
>+						     xe_lrc_ring_head(q->lrc[i]));
>+			}
>+		}
> 		xe_sched_resubmit_jobs(sched);
> 	}	

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

end of thread, other threads:[~2025-10-06  3:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-04  2:47 [PATCH v6 0/4] Core Xe changes preparing for VF migration Matthew Brost
2025-09-04  2:47 ` [PATCH v6 1/4] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
2025-09-04  2:47 ` [PATCH v6 2/4] drm/xe/guc: Track pending-enable source in submission state Matthew Brost
2025-09-04  2:47 ` [PATCH v6 3/4] drm/xe: Track LR jobs in DRM scheduler pending list Matthew Brost
2025-09-04  2:47 ` [PATCH v6 4/4] drm/xe: Don't change LRC ring head on job resubmission Matthew Brost
2025-09-24  3:26   ` [v6,4/4] " Varun Gupta
2025-10-06  3:09   ` Varun Gupta
2025-09-04  2:57 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration (rev4) Patchwork
2025-09-04  3:30 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-04 12:11 ` ✗ Xe.CI.Full: failure " Patchwork

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