intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v11 00/13] AuxCCS handling and render compression modifiers
@ 2025-08-21 14:14 Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 01/13] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
                   ` (16 more replies)
  0 siblings, 17 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

A series to fix and add xe support for AuxCSS framebuffers via DPT.

Currently the auxiliary buffer data isn't mapped into the page tables at all so
cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if built for Xe")
had to disable the support.

On top of that there are missing flushes, invalidations and similar.

Tested with KDE Wayland, on Lenovo Carbon X1 ADL-P:

  [PLANE:32:plane 1A]: type=PRI
          uapi: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=visible, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)
          hw: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=yes, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)

Display working fine - no artefacts, no DMAR/PIPE faults.

All IGTs pass for me locally.

v2:
 * More patches added to fix kms_flip_tiling.

v3:
 * Rebased after some cleanup patches from v2 were merged.
 * Added people to Cc as suggested by Rodrigo.
 * Adjusted last patch title. (Rodrigo)
 * Apply GGTT flushing only to iomapped system memory buffers.

v4:
 * Added patch for potentially misplaced Wa_14016712196.
 * Fixed (hopefully) MAX_JOB_SIZE_DW on Meteorlake.

v5:
 * Split out ring emission changes to smaller patches.
 * Fixed MAX_JOB_SIZE_DW even more.
 * Don't emit MI_FLUSH_DW_CCS on !BCS. This should fix Meteorlake.

 v6:
 * Added AuxCCS invalidation to indirect context workarounds.
 * Also added the indirect context handling and some other workarounds. They are
   unrelated but the series depends on it.
 * Dropped DPT pin alignment reduction since BMG appears not to be liking it for
   some reason.

v7:
 * Rebased on top of recent xe_fb_pin.c refactoring and also the indirect
   context workarounds series.

v8:
 * Rebased for bo->size removal.
 * Corrected PIPE_CONTROL_FLUSH_L3 to bit 30. (Jose)

v9:
 * Fixed fb remapping changes.
 * Dropped two not required patches from the series.
 * Fixed criteria for GGTT flushing.
 * Limit clflush to the compression metadata area.
 * Rebased for indirect context workarounds landing upstream.

v10:
 * Rebase for XE_GT_WA().

v11:
 * Do not use stolen for DPT on IGFX + AuxCCS.

Tvrtko Ursulin (13):
  drm/xe/xelpg: Flush CCS when flushing caches
  drm/xe/xelp: Quiesce memory traffic before invalidating auxccs
  drm/xe/xelp: Support auxccs invalidation on blitter
  drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
  drm/xe/xelp: Wait for AuxCCS invalidation to complete
  drm/xe: Export xe_emit_aux_table_inv
  drm/xe/xelp: Add AuxCCS invalidation to the indirect context
    workarounds
  drm/xe: Flush GGTT writes after populating DPT
  drm/xe: Handle DPT in system memory
  drm/xe/display: Add support for AuxCCS
  drm/xe: Force flush system memory AuxCCS framebuffers before scan out
  drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS
  drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe

 .../drm/i915/display/skl_universal_plane.c    |   6 -
 drivers/gpu/drm/xe/display/xe_fb_pin.c        | 187 +++++++++++++++---
 .../gpu/drm/xe/instructions/xe_gpu_commands.h |   1 +
 .../gpu/drm/xe/instructions/xe_mi_commands.h  |   6 +
 drivers/gpu/drm/xe/regs/xe_gt_regs.h          |   1 +
 drivers/gpu/drm/xe/xe_bo_types.h              |  14 +-
 drivers/gpu/drm/xe/xe_lrc.c                   |  47 +++++
 drivers/gpu/drm/xe/xe_ring_ops.c              | 161 ++++++++-------
 drivers/gpu/drm/xe/xe_ring_ops.h              |   3 +
 drivers/gpu/drm/xe/xe_ring_ops_types.h        |   2 +-
 10 files changed, 309 insertions(+), 119 deletions(-)

-- 
2.48.0


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

* [PATCH v11 01/13] drm/xe/xelpg: Flush CCS when flushing caches
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-27 14:10   ` Rodrigo Vivi
  2025-08-21 14:14 ` [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs Tvrtko Ursulin
                   ` (15 subsequent siblings)
  16 siblings, 1 reply; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

According to i915 PIPE_CONTROL0_CCS_FLUSH needs to be set when flushing
render caches on gfx ip 12.70+.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/instructions/xe_gpu_commands.h | 1 +
 drivers/gpu/drm/xe/xe_ring_ops.c                  | 7 ++++++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h b/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
index 8cfcd3360896..78c0e87dbd37 100644
--- a/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
+++ b/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
@@ -43,6 +43,7 @@
 
 #define	  PIPE_CONTROL0_L3_READ_ONLY_CACHE_INVALIDATE	BIT(10)	/* gen12 */
 #define	  PIPE_CONTROL0_HDC_PIPELINE_FLUSH		BIT(9)	/* gen12 */
+#define   PIPE_CONTROL0_CCS_FLUSH                       BIT(13) /* MTL+ */
 
 #define   PIPE_CONTROL_COMMAND_CACHE_INVALIDATE		(1<<29)
 #define   PIPE_CONTROL_TILE_CACHE_FLUSH			(1<<28)
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 5f15360d14bf..761740d7769f 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -176,13 +176,18 @@ static int emit_store_imm_ppgtt_posted(u64 addr, u64 value,
 static int emit_render_cache_flush(struct xe_sched_job *job, u32 *dw, int i)
 {
 	struct xe_gt *gt = job->q->gt;
+	struct xe_device *xe = gt_to_xe(gt);
 	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
+	u32 bit_group_0 = PIPE_CONTROL0_HDC_PIPELINE_FLUSH;
 	u32 flags;
 
 	if (XE_GT_WA(gt, 14016712196))
 		i = emit_pipe_control(dw, i, 0, PIPE_CONTROL_DEPTH_CACHE_FLUSH,
 				      LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR, 0);
 
+	if (GRAPHICS_VERx100(xe) >= 1270)
+		bit_group_0 |= PIPE_CONTROL0_CCS_FLUSH;
+
 	flags = (PIPE_CONTROL_CS_STALL |
 		 PIPE_CONTROL_TILE_CACHE_FLUSH |
 		 PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH |
@@ -198,7 +203,7 @@ static int emit_render_cache_flush(struct xe_sched_job *job, u32 *dw, int i)
 	else if (job->q->class == XE_ENGINE_CLASS_COMPUTE)
 		flags &= ~PIPE_CONTROL_3D_ENGINE_FLAGS;
 
-	return emit_pipe_control(dw, i, PIPE_CONTROL0_HDC_PIPELINE_FLUSH, flags, 0, 0);
+	return emit_pipe_control(dw, i, bit_group_0, flags, 0, 0);
 }
 
 static int emit_pipe_control_to_ring_end(struct xe_hw_engine *hwe, u32 *dw, int i)
-- 
2.48.0


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

* [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 01/13] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-27 14:39   ` Rodrigo Vivi
  2025-08-21 14:14 ` [PATCH v11 03/13] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
                   ` (14 subsequent siblings)
  16 siblings, 1 reply; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

According to i915 before invalidating auxccs we must quiesce the memory
traffic by an extra flush.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/xe_ring_ops.c       | 7 ++++++-
 drivers/gpu/drm/xe/xe_ring_ops_types.h | 2 +-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 761740d7769f..f56506ebbeca 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -358,10 +358,15 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 	struct xe_gt *gt = job->q->gt;
 	struct xe_device *xe = gt_to_xe(gt);
 	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
+	const bool aux_ccs = has_aux_ccs(xe);
 	u32 mask_flags = 0;
 
 	i = emit_copy_timestamp(lrc, dw, i);
 
+	/* hsdes: 1809175790 */
+	if (aux_ccs)
+		i = emit_render_cache_flush(job, dw, i);
+
 	dw[i++] = preparser_disable(true);
 	if (lacks_render)
 		mask_flags = PIPE_CONTROL_3D_ARCH_FLAGS;
@@ -372,7 +377,7 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 	i = emit_pipe_invalidate(mask_flags, job->ring_ops_flush_tlb, dw, i);
 
 	/* hsdes: 1809175790 */
-	if (has_aux_ccs(xe))
+	if (aux_ccs)
 		i = emit_aux_table_inv(gt, CCS_AUX_INV, dw, i);
 
 	dw[i++] = preparser_disable(false);
diff --git a/drivers/gpu/drm/xe/xe_ring_ops_types.h b/drivers/gpu/drm/xe/xe_ring_ops_types.h
index d7e3e150a9a5..477dc7defd72 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops_types.h
+++ b/drivers/gpu/drm/xe/xe_ring_ops_types.h
@@ -8,7 +8,7 @@
 
 struct xe_sched_job;
 
-#define MAX_JOB_SIZE_DW 58
+#define MAX_JOB_SIZE_DW 70
 #define MAX_JOB_SIZE_BYTES (MAX_JOB_SIZE_DW * 4)
 
 /**
-- 
2.48.0


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

* [PATCH v11 03/13] drm/xe/xelp: Support auxccs invalidation on blitter
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 01/13] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 04/13] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

Auxccs platforms need to be able to invalidate auxccs on the blitter
engine.

Add the relevant mmio register and enable this by refactoring the ring
emission a bit to consolidate all non-render engines.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/regs/xe_gt_regs.h |   1 +
 drivers/gpu/drm/xe/xe_ring_ops.c     | 104 +++++++++++----------------
 2 files changed, 41 insertions(+), 64 deletions(-)

diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index f96b2e2b3064..f8b1060c76c1 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -88,6 +88,7 @@
 #define CCS_AUX_INV				XE_REG(0x4208)
 
 #define VD0_AUX_INV				XE_REG(0x4218)
+#define BCS_AUX_INV				XE_REG(0x4248)
 #define VE0_AUX_INV				XE_REG(0x4238)
 
 #define VE1_AUX_INV				XE_REG(0x42b8)
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index f56506ebbeca..e7c23fd04011 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -248,44 +248,6 @@ static int emit_copy_timestamp(struct xe_lrc *lrc, u32 *dw, int i)
 	return 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)
-{
-	u32 dw[MAX_JOB_SIZE_DW], i = 0;
-	u32 ppgtt_flag = get_ppgtt_flag(job);
-	struct xe_gt *gt = job->q->gt;
-
-	i = emit_copy_timestamp(lrc, dw, i);
-
-	if (job->ring_ops_flush_tlb) {
-		dw[i++] = preparser_disable(true);
-		i = emit_flush_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
-					seqno, MI_INVALIDATE_TLB, dw, i);
-		dw[i++] = preparser_disable(false);
-	} else {
-		i = emit_store_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
-					seqno, dw, i);
-	}
-
-	i = emit_bb_start(batch_addr, ppgtt_flag, dw, i);
-
-	if (job->user_fence.used) {
-		i = emit_flush_dw(dw, i);
-		i = emit_store_imm_ppgtt_posted(job->user_fence.addr,
-						job->user_fence.value,
-						dw, i);
-	}
-
-	i = emit_flush_imm_ggtt(xe_lrc_seqno_ggtt_addr(lrc), seqno, 0, dw, i);
-
-	i = emit_user_interrupt(dw, i);
-
-	xe_gt_assert(gt, i <= MAX_JOB_SIZE_DW);
-
-	xe_lrc_write_ring(lrc, dw, i * sizeof(*dw));
-}
-
 static bool has_aux_ccs(struct xe_device *xe)
 {
 	/*
@@ -300,36 +262,50 @@ static bool has_aux_ccs(struct xe_device *xe)
 	return !xe->info.has_flat_ccs;
 }
 
-static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
-				   u64 batch_addr, u32 seqno)
+static void __emit_job_gen12_xcs(struct xe_sched_job *job, struct xe_lrc *lrc,
+				 u64 batch_addr, u32 seqno)
 {
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 	u32 ppgtt_flag = get_ppgtt_flag(job);
 	struct xe_gt *gt = job->q->gt;
 	struct xe_device *xe = gt_to_xe(gt);
-	bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
+	const unsigned int class = job->q->class;
+	const bool aux_ccs = has_aux_ccs(xe) &&
+			     (class == XE_ENGINE_CLASS_COPY ||
+			      class == XE_ENGINE_CLASS_VIDEO_DECODE ||
+			      class == XE_ENGINE_CLASS_VIDEO_ENHANCE);
+	const bool invalidate_tlb = aux_ccs || job->ring_ops_flush_tlb;
 
 	i = emit_copy_timestamp(lrc, dw, i);
 
-	dw[i++] = preparser_disable(true);
-
-	/* hsdes: 1809175790 */
-	if (has_aux_ccs(xe)) {
-		if (decode)
-			i = emit_aux_table_inv(gt, VD0_AUX_INV, dw, i);
-		else
-			i = emit_aux_table_inv(gt, VE0_AUX_INV, dw, i);
-	}
-
-	if (job->ring_ops_flush_tlb)
+	if (invalidate_tlb) {
+		dw[i++] = preparser_disable(true);
 		i = emit_flush_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
-					seqno, MI_INVALIDATE_TLB, dw, i);
+					seqno,
+					MI_INVALIDATE_TLB,
+					dw, i);
+		/* hsdes: 1809175790 */
+		if (aux_ccs) {
+			struct xe_reg reg;
 
-	dw[i++] = preparser_disable(false);
+			switch (job->q->class) {
+			case XE_ENGINE_CLASS_COPY:
+				reg = BCS_AUX_INV;
+				break;
+			case XE_ENGINE_CLASS_VIDEO_DECODE:
+				reg = VD0_AUX_INV;
+				break;
+			default:
+				reg = VE0_AUX_INV;
+			};
 
-	if (!job->ring_ops_flush_tlb)
+			i = emit_aux_table_inv(gt, reg, dw, i);
+		}
+		dw[i++] = preparser_disable(false);
+	} else {
 		i = emit_store_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
 					seqno, dw, i);
+	}
 
 	i = emit_bb_start(batch_addr, ppgtt_flag, dw, i);
 
@@ -442,9 +418,9 @@ static void emit_job_gen12_gsc(struct xe_sched_job *job)
 
 	xe_gt_assert(gt, job->q->width <= 1); /* no parallel submission for GSCCS */
 
-	__emit_job_gen12_simple(job, job->q->lrc[0],
-				job->ptrs[0].batch_addr,
-				xe_sched_job_lrc_seqno(job));
+	__emit_job_gen12_xcs(job, job->q->lrc[0],
+			     job->ptrs[0].batch_addr,
+			     xe_sched_job_lrc_seqno(job));
 }
 
 static void emit_job_gen12_copy(struct xe_sched_job *job)
@@ -458,9 +434,9 @@ 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,
-					xe_sched_job_lrc_seqno(job));
+		__emit_job_gen12_xcs(job, job->q->lrc[i],
+				     job->ptrs[i].batch_addr,
+				     xe_sched_job_lrc_seqno(job));
 }
 
 static void emit_job_gen12_video(struct xe_sched_job *job)
@@ -469,9 +445,9 @@ static void emit_job_gen12_video(struct xe_sched_job *job)
 
 	/* FIXME: Not doing parallel handshake for now */
 	for (i = 0; i < job->q->width; ++i)
-		__emit_job_gen12_video(job, job->q->lrc[i],
-				       job->ptrs[i].batch_addr,
-				       xe_sched_job_lrc_seqno(job));
+		__emit_job_gen12_xcs(job, job->q->lrc[i],
+				     job->ptrs[i].batch_addr,
+				     xe_sched_job_lrc_seqno(job));
 }
 
 static void emit_job_gen12_render_compute(struct xe_sched_job *job)
-- 
2.48.0


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

* [PATCH v11 04/13] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (2 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 03/13] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 05/13] drm/xe/xelp: Wait for AuxCCS invalidation to complete Tvrtko Ursulin
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

Emit MI_FLUSH_DW_CCS when invalidating on auxccs platforms.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/xe_ring_ops.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index e7c23fd04011..752dea0a9234 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -275,15 +275,16 @@ static void __emit_job_gen12_xcs(struct xe_sched_job *job, struct xe_lrc *lrc,
 			      class == XE_ENGINE_CLASS_VIDEO_DECODE ||
 			      class == XE_ENGINE_CLASS_VIDEO_ENHANCE);
 	const bool invalidate_tlb = aux_ccs || job->ring_ops_flush_tlb;
+	const u32 flags = aux_ccs && class == XE_ENGINE_CLASS_COPY ?
+			  MI_FLUSH_DW_CCS : 0;
 
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	if (invalidate_tlb) {
 		dw[i++] = preparser_disable(true);
 		i = emit_flush_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
-					seqno,
-					MI_INVALIDATE_TLB,
-					dw, i);
+					seqno, MI_INVALIDATE_TLB | flags, dw,
+					i);
 		/* hsdes: 1809175790 */
 		if (aux_ccs) {
 			struct xe_reg reg;
-- 
2.48.0


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

* [PATCH v11 05/13] drm/xe/xelp: Wait for AuxCCS invalidation to complete
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (3 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 04/13] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 06/13] drm/xe: Export xe_emit_aux_table_inv Tvrtko Ursulin
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

On AuxCCS platforms we need to wait for AuxCCS invalidations to complete.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/instructions/xe_mi_commands.h | 6 ++++++
 drivers/gpu/drm/xe/xe_ring_ops.c                 | 9 ++++++++-
 drivers/gpu/drm/xe/xe_ring_ops_types.h           | 2 +-
 3 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/instructions/xe_mi_commands.h b/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
index c47b290e0e9f..49d8ffd026d5 100644
--- a/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
+++ b/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
@@ -81,4 +81,10 @@
 #define MI_SET_APPID_SESSION_ID_MASK	REG_GENMASK(6, 0)
 #define MI_SET_APPID_SESSION_ID(x)	REG_FIELD_PREP(MI_SET_APPID_SESSION_ID_MASK, x)
 
+#define MI_SEMAPHORE_WAIT_TOKEN		(__MI_INSTR(0x1c) | XE_INSTR_NUM_DW(5)) /* XeLP+ */
+#define   MI_SEMAPHORE_REGISTER_POLL	REG_BIT(16)
+#define   MI_SEMAPHORE_POLL		REG_BIT(15)
+#define   MI_SEMAPHORE_CMP_OP_MASK	REG_GENMASK(14, 12)
+#define   MI_SEMAPHORE_SAD_EQ_SDD	REG_FIELD_PREP(MI_SEMAPHORE_CMP_OP_MASK, 4)
+
 #endif
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 752dea0a9234..78d8120c4a0e 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -56,7 +56,14 @@ static int emit_aux_table_inv(struct xe_gt *gt, struct xe_reg reg,
 	dw[i++] = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1) | MI_LRI_MMIO_REMAP_EN;
 	dw[i++] = reg.addr + gt->mmio.adj_offset;
 	dw[i++] = AUX_INV;
-	dw[i++] = MI_NOOP;
+	dw[i++] = MI_SEMAPHORE_WAIT_TOKEN |
+		  MI_SEMAPHORE_REGISTER_POLL |
+		  MI_SEMAPHORE_POLL |
+		  MI_SEMAPHORE_SAD_EQ_SDD;
+	dw[i++] = 0;
+	dw[i++] = reg.addr + gt->mmio.adj_offset;
+	dw[i++] = 0;
+	dw[i++] = 0;
 
 	return i;
 }
diff --git a/drivers/gpu/drm/xe/xe_ring_ops_types.h b/drivers/gpu/drm/xe/xe_ring_ops_types.h
index 477dc7defd72..1197fc0bf2af 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops_types.h
+++ b/drivers/gpu/drm/xe/xe_ring_ops_types.h
@@ -8,7 +8,7 @@
 
 struct xe_sched_job;
 
-#define MAX_JOB_SIZE_DW 70
+#define MAX_JOB_SIZE_DW 74
 #define MAX_JOB_SIZE_BYTES (MAX_JOB_SIZE_DW * 4)
 
 /**
-- 
2.48.0


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

* [PATCH v11 06/13] drm/xe: Export xe_emit_aux_table_inv
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (4 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 05/13] drm/xe/xelp: Wait for AuxCCS invalidation to complete Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 07/13] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

Export the existing AuxCCS invalidation ring buffer programming helper
which we will need to use to setup the indirect context workaround in the
next patch.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/xe_ring_ops.c | 77 +++++++++++++++++++-------------
 drivers/gpu/drm/xe/xe_ring_ops.h |  3 ++
 2 files changed, 49 insertions(+), 31 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 78d8120c4a0e..8a339d17cf46 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -50,22 +50,51 @@ static u32 preparser_disable(bool state)
 	return MI_ARB_CHECK | BIT(8) | state;
 }
 
-static int emit_aux_table_inv(struct xe_gt *gt, struct xe_reg reg,
-			      u32 *dw, int i)
+u32 *xe_emit_aux_table_inv(struct xe_hw_engine *hwe, u32 *cmd)
 {
-	dw[i++] = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1) | MI_LRI_MMIO_REMAP_EN;
-	dw[i++] = reg.addr + gt->mmio.adj_offset;
-	dw[i++] = AUX_INV;
-	dw[i++] = MI_SEMAPHORE_WAIT_TOKEN |
-		  MI_SEMAPHORE_REGISTER_POLL |
-		  MI_SEMAPHORE_POLL |
-		  MI_SEMAPHORE_SAD_EQ_SDD;
-	dw[i++] = 0;
-	dw[i++] = reg.addr + gt->mmio.adj_offset;
-	dw[i++] = 0;
-	dw[i++] = 0;
+	struct xe_gt *gt = hwe->gt;
+	struct xe_reg reg;
 
-	return i;
+	switch (hwe->class) {
+	case XE_ENGINE_CLASS_RENDER:
+	case XE_ENGINE_CLASS_COMPUTE:
+		reg = CCS_AUX_INV;
+		break;
+	case XE_ENGINE_CLASS_COPY:
+		reg = BCS_AUX_INV;
+		break;
+	case XE_ENGINE_CLASS_VIDEO_DECODE:
+		reg = VD0_AUX_INV;
+		break;
+	case XE_ENGINE_CLASS_VIDEO_ENHANCE:
+		reg = VE0_AUX_INV;
+		break;
+	default:
+		return cmd;
+	};
+
+	*cmd++ = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1) |
+		 MI_LRI_MMIO_REMAP_EN;
+	*cmd++ = reg.addr + gt->mmio.adj_offset;
+	*cmd++ = AUX_INV;
+	*cmd++ = MI_SEMAPHORE_WAIT_TOKEN | MI_SEMAPHORE_REGISTER_POLL |
+		 MI_SEMAPHORE_POLL | MI_SEMAPHORE_SAD_EQ_SDD;
+	*cmd++ = 0;
+	*cmd++ = reg.addr + gt->mmio.adj_offset;
+	*cmd++ = 0;
+	*cmd++ = 0;
+
+	return cmd;
+}
+
+static int emit_aux_table_inv(struct xe_hw_engine *hwe, u32 *dw, int i)
+{
+	u32 *start, *end;
+
+	start = dw + i;
+	end = xe_emit_aux_table_inv(hwe, start);
+
+	return i + (end - start);
 }
 
 static int emit_user_interrupt(u32 *dw, int i)
@@ -293,22 +322,8 @@ static void __emit_job_gen12_xcs(struct xe_sched_job *job, struct xe_lrc *lrc,
 					seqno, MI_INVALIDATE_TLB | flags, dw,
 					i);
 		/* hsdes: 1809175790 */
-		if (aux_ccs) {
-			struct xe_reg reg;
-
-			switch (job->q->class) {
-			case XE_ENGINE_CLASS_COPY:
-				reg = BCS_AUX_INV;
-				break;
-			case XE_ENGINE_CLASS_VIDEO_DECODE:
-				reg = VD0_AUX_INV;
-				break;
-			default:
-				reg = VE0_AUX_INV;
-			};
-
-			i = emit_aux_table_inv(gt, reg, dw, i);
-		}
+		if (aux_ccs)
+			i = emit_aux_table_inv(job->q->hwe, dw, i);
 		dw[i++] = preparser_disable(false);
 	} else {
 		i = emit_store_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
@@ -362,7 +377,7 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 
 	/* hsdes: 1809175790 */
 	if (aux_ccs)
-		i = emit_aux_table_inv(gt, CCS_AUX_INV, dw, i);
+		i = emit_aux_table_inv(job->q->hwe, dw, i);
 
 	dw[i++] = preparser_disable(false);
 
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.h b/drivers/gpu/drm/xe/xe_ring_ops.h
index e942735d76a6..5a2d32f9bb25 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.h
+++ b/drivers/gpu/drm/xe/xe_ring_ops.h
@@ -10,8 +10,11 @@
 #include "xe_ring_ops_types.h"
 
 struct xe_gt;
+struct xe_hw_engine;
 
 const struct xe_ring_ops *
 xe_ring_ops_get(struct xe_gt *gt, enum xe_engine_class class);
 
+u32 *xe_emit_aux_table_inv(struct xe_hw_engine *hwe, u32 *cmd);
+
 #endif
-- 
2.48.0


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

* [PATCH v11 07/13] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (5 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 06/13] drm/xe: Export xe_emit_aux_table_inv Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 08/13] drm/xe: Flush GGTT writes after populating DPT Tvrtko Ursulin
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

Following from the i915 reference implementation, we add the AuxCCS
invalidation to the indirect context workarounds page.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/xe_lrc.c | 47 +++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 8f6c3ba47882..0b0ecdf09f9f 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -25,6 +25,7 @@
 #include "xe_map.h"
 #include "xe_memirq.h"
 #include "xe_mmio.h"
+#include "xe_ring_ops.h"
 #include "xe_sriov.h"
 #include "xe_trace_lrc.h"
 #include "xe_vm.h"
@@ -75,11 +76,23 @@ lrc_to_xe(struct xe_lrc *lrc)
 static bool
 gt_engine_needs_indirect_ctx(struct xe_gt *gt, enum xe_engine_class class)
 {
+	struct xe_device *xe = gt_to_xe(gt);
+
 	if (XE_GT_WA(gt, 16010904313) &&
 	    (class == XE_ENGINE_CLASS_RENDER ||
 	     class == XE_ENGINE_CLASS_COMPUTE))
 		return true;
 
+	/* AuxCCS invalidation */
+	if (GRAPHICS_VERx100(xe) >= 1200 &&
+	    GRAPHICS_VERx100(xe) <= 1210 &&
+	    (class == XE_ENGINE_CLASS_RENDER ||
+	     class == XE_ENGINE_CLASS_COMPUTE ||
+	     class == XE_ENGINE_CLASS_COPY ||
+	     class == XE_ENGINE_CLASS_VIDEO_DECODE ||
+	     class == XE_ENGINE_CLASS_VIDEO_ENHANCE))
+		return true;
+
 	return false;
 }
 
@@ -1122,6 +1135,31 @@ static ssize_t setup_invalidate_state_cache_wa(struct xe_lrc *lrc,
 	return cmd - batch;
 }
 
+static ssize_t setup_invalidate_auxccs_wa(struct xe_lrc *lrc,
+					  struct xe_hw_engine *hwe,
+					  u32 *batch, size_t max_len)
+{
+	struct xe_gt *gt = lrc->gt;
+	struct xe_device *xe = gt_to_xe(gt);
+	const unsigned int class = hwe->class;
+	u32 *cmd;
+
+	if (GRAPHICS_VERx100(xe) < 1200 || GRAPHICS_VERx100(xe) > 1210 ||
+	    !(class == XE_ENGINE_CLASS_RENDER ||
+	      class == XE_ENGINE_CLASS_COMPUTE ||
+	      class == XE_ENGINE_CLASS_COPY ||
+	      class == XE_ENGINE_CLASS_VIDEO_DECODE ||
+	      class == XE_ENGINE_CLASS_VIDEO_ENHANCE))
+		return 0;
+
+	if (xe_gt_WARN_ON(gt, max_len < 8))
+		return -ENOSPC;
+
+	cmd = xe_emit_aux_table_inv(hwe, batch);
+
+	return cmd - batch;
+}
+
 struct bo_setup {
 	ssize_t (*setup)(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
 			 u32 *batch, size_t max_size);
@@ -1251,6 +1289,10 @@ setup_indirect_ctx(struct xe_lrc *lrc, struct xe_hw_engine *hwe)
 {
 	static struct bo_setup rcs_funcs[] = {
 		{ .setup = setup_timestamp_wa },
+		{ .setup = setup_invalidate_auxccs_wa },
+	};
+	static struct bo_setup xcs_funcs[] = {
+		{ .setup = setup_invalidate_auxccs_wa },
 	};
 	struct bo_setup_state state = {
 		.lrc = lrc,
@@ -1268,6 +1310,11 @@ setup_indirect_ctx(struct xe_lrc *lrc, struct xe_hw_engine *hwe)
 	    hwe->class == XE_ENGINE_CLASS_COMPUTE) {
 		state.funcs = rcs_funcs;
 		state.num_funcs = ARRAY_SIZE(rcs_funcs);
+	} else if (hwe->class == XE_ENGINE_CLASS_COPY ||
+		   hwe->class == XE_ENGINE_CLASS_VIDEO_DECODE ||
+		   hwe->class == XE_ENGINE_CLASS_VIDEO_ENHANCE) {
+		state.funcs = xcs_funcs;
+		state.num_funcs = ARRAY_SIZE(xcs_funcs);
 	}
 
 	if (xe_gt_WARN_ON(lrc->gt, !state.funcs))
-- 
2.48.0


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

* [PATCH v11 08/13] drm/xe: Flush GGTT writes after populating DPT
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (6 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 07/13] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 09/13] drm/xe: Handle DPT in system memory Tvrtko Ursulin
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin, Ville Syrjälä

When DPT is placed in stolen it is populated using ioremap_wc() via GGTT.

I915 has established that on modern platforms a small flush and delay is
required for those writes to reliably land so lets add the same logic
(simplified by removing impossible platforms) to xe as well.

v2:
 * Do it only for system memory buffers.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/xe/display/xe_fb_pin.c | 45 ++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index f1f8b5ab53ef..460e330676b3 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -12,9 +12,11 @@
 #include "intel_fb.h"
 #include "intel_fb_pin.h"
 #include "intel_fbdev.h"
+#include "regs/xe_engine_regs.h"
 #include "xe_bo.h"
 #include "xe_device.h"
 #include "xe_ggtt.h"
+#include "xe_mmio.h"
 #include "xe_pm.h"
 #include "xe_vram_types.h"
 
@@ -79,6 +81,46 @@ write_dpt_remapped(struct xe_bo *bo, struct iosys_map *map, u32 *dpt_ofs,
 	*dpt_ofs = ALIGN(*dpt_ofs, 4096);
 }
 
+static void gt_flush_ggtt_writes(struct xe_gt *gt)
+{
+	if (!gt)
+		return;
+
+	xe_mmio_read32(&gt->mmio, RING_TAIL(RENDER_RING_BASE));
+}
+
+static void ggtt_flush_writes(struct xe_ggtt *ggtt)
+{
+	struct xe_device *xe = tile_to_xe(ggtt->tile);
+
+	/*
+	 * No actual flushing is required for the GTT write domain for reads
+	 * from the GTT domain. Writes to it "immediately" go to main memory
+	 * as far as we know, so there's no chipset flush. It also doesn't
+	 * land in the GPU render cache.
+	 *
+	 * However, we do have to enforce the order so that all writes through
+	 * the GTT land before any writes to the device, such as updates to
+	 * the GATT itself.
+	 *
+	 * We also have to wait a bit for the writes to land from the GTT.
+	 * An uncached read (i.e. mmio) seems to be ideal for the round-trip
+	 * timing. This issue has only been observed when switching quickly
+	 * between GTT writes and CPU reads from inside the kernel on recent hw,
+	 * and it appears to only affect discrete GTT blocks (i.e. on LLC
+	 * system agents we cannot reproduce this behaviour, until Cannonlake
+	 * that was!).
+	 */
+
+	wmb();
+
+	if (xe_pm_runtime_get_if_active(xe)) {
+		gt_flush_ggtt_writes(ggtt->tile->primary_gt);
+		gt_flush_ggtt_writes(ggtt->tile->media_gt);
+		xe_pm_runtime_put(xe);
+	}
+}
+
 static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
 			       const struct i915_gtt_view *view,
 			       struct i915_vma *vma,
@@ -162,6 +204,9 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
 					  rot_info->plane[i].dst_stride);
 	}
 
+	if (dpt->vmap.is_iomem && !xe_bo_is_vram(dpt))
+		ggtt_flush_writes(tile0->mem.ggtt);
+
 	vma->dpt = dpt;
 	vma->node = dpt->ggtt_node[tile0->id];
 
-- 
2.48.0


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

* [PATCH v11 09/13] drm/xe: Handle DPT in system memory
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (7 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 08/13] drm/xe: Flush GGTT writes after populating DPT Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 10/13] drm/xe/display: Add support for AuxCCS Tvrtko Ursulin
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

If DPT is allocated from system memory it will be created in the default
write-back cached mode. This means we need to flush it after populating
otherwise nothing works.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/display/xe_fb_pin.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 460e330676b3..5819895f5a48 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -3,6 +3,7 @@
  * Copyright © 2021 Intel Corporation
  */
 
+#include <drm/drm_cache.h>
 #include <drm/ttm/ttm_bo.h>
 
 #include "i915_vma.h"
@@ -206,6 +207,8 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
 
 	if (dpt->vmap.is_iomem && !xe_bo_is_vram(dpt))
 		ggtt_flush_writes(tile0->mem.ggtt);
+	else if (!xe_bo_is_vram(dpt) && !xe_bo_is_stolen(dpt))
+		drm_clflush_virt_range(dpt->vmap.vaddr, dpt_size);
 
 	vma->dpt = dpt;
 	vma->node = dpt->ggtt_node[tile0->id];
-- 
2.48.0


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

* [PATCH v11 10/13] drm/xe/display: Add support for AuxCCS
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (8 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 09/13] drm/xe: Handle DPT in system memory Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 11/13] drm/xe: Force flush system memory AuxCCS framebuffers before scan out Tvrtko Ursulin
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin, Juha-Pekka Heikkila, Michael J. Ruhl

Add support for mapping the auxiliary CCS buffer into the DPT page tables.

This will allow for more power efficiency by enabling the render
compression frame buffer modifiers such as
I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS in a following patch.

We do this by refactoring the code a bit so handling for the linear
auxiliary frame buffer can be added in a tidy way. Also replace some
hardcoded constants.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
 drivers/gpu/drm/xe/display/xe_fb_pin.c | 111 ++++++++++++++++++-------
 1 file changed, 81 insertions(+), 30 deletions(-)

diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 5819895f5a48..658541422f44 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -53,33 +53,94 @@ write_dpt_rotated(struct xe_bo *bo, struct iosys_map *map, u32 *dpt_ofs, u32 bo_
 	*dpt_ofs = ALIGN(*dpt_ofs, 4096);
 }
 
+static unsigned int
+write_dpt_padding(struct iosys_map *map, unsigned int dest, unsigned int pad)
+{
+	/* The DE ignores the PTEs for the padding tiles */
+	return dest + pad * sizeof(u64);
+}
+
+static unsigned int
+write_dpt_remapped_linear(struct xe_bo *bo, struct iosys_map *map,
+			  unsigned int dest,
+			  const struct intel_remapped_plane_info *plane)
+{
+	struct xe_device *xe = xe_bo_device(bo);
+	struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
+	const u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo,
+						 xe->pat.idx[XE_CACHE_NONE]);
+	unsigned int offset = plane->offset * XE_PAGE_SIZE;
+	unsigned int size = plane->size;
+
+	while (size--) {
+		u64 addr = xe_bo_addr(bo, offset, XE_PAGE_SIZE);
+
+		iosys_map_wr(map, dest, u64, addr | pte);
+		dest += sizeof(u64);
+		offset += XE_PAGE_SIZE;
+	}
+
+	return dest;
+}
+
+static unsigned int
+write_dpt_remapped_tiled(struct xe_bo *bo, struct iosys_map *map,
+			 unsigned int dest,
+			 const struct intel_remapped_plane_info *plane)
+{
+	struct xe_device *xe = xe_bo_device(bo);
+	struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
+	const u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo,
+						 xe->pat.idx[XE_CACHE_NONE]);
+	unsigned int offset, column, row;
+
+	for (row = 0; row < plane->height; row++) {
+		offset = (plane->offset + plane->src_stride * row) *
+			 XE_PAGE_SIZE;
+
+		for (column = 0; column < plane->width; column++) {
+			u64 addr = xe_bo_addr(bo, offset, XE_PAGE_SIZE);
+
+			iosys_map_wr(map, dest, u64, addr | pte);
+			dest += sizeof(u64);
+			offset += XE_PAGE_SIZE;
+		}
+
+		dest = write_dpt_padding(map, dest,
+					 plane->dst_stride - plane->width);
+	}
+
+	return dest;
+}
+
 static void
-write_dpt_remapped(struct xe_bo *bo, struct iosys_map *map, u32 *dpt_ofs,
-		   u32 bo_ofs, u32 width, u32 height, u32 src_stride,
-		   u32 dst_stride)
+write_dpt_remapped(struct xe_bo *bo,
+		   const struct intel_remapped_info *remap_info,
+		   struct iosys_map *map)
 {
-	struct xe_device *xe = xe_bo_device(bo);
-	struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
-	u32 column, row;
-	u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo, xe->pat.idx[XE_CACHE_NONE]);
+	unsigned int i, dest = 0;
 
-	for (row = 0; row < height; row++) {
-		u32 src_idx = src_stride * row + bo_ofs;
+	for (i = 0; i < ARRAY_SIZE(remap_info->plane); i++) {
+		const struct intel_remapped_plane_info *plane =
+						&remap_info->plane[i];
 
-		for (column = 0; column < width; column++) {
-			u64 addr = xe_bo_addr(bo, src_idx * XE_PAGE_SIZE, XE_PAGE_SIZE);
-			iosys_map_wr(map, *dpt_ofs, u64, pte | addr);
+		if (!plane->width && !plane->height && !plane->linear)
+			continue;
 
-			*dpt_ofs += 8;
-			src_idx++;
+		if (remap_info->plane_alignment) {
+			const unsigned int index = dest / sizeof(u64);
+			const unsigned int pad =
+				ALIGN(index, remap_info->plane_alignment) -
+				index;
+
+			dest = write_dpt_padding(map, dest, pad);
 		}
 
-		/* The DE ignores the PTEs for the padding tiles */
-		*dpt_ofs += (dst_stride - width) * 8;
+		if (plane->linear)
+			dest = write_dpt_remapped_linear(bo, map, dest, plane);
+		else
+			dest = write_dpt_remapped_tiled(bo, map, dest, plane);
 	}
-
-	/* Align to next page */
-	*dpt_ofs = ALIGN(*dpt_ofs, 4096);
 }
 
 static void gt_flush_ggtt_writes(struct xe_gt *gt)
@@ -181,17 +242,7 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
 			iosys_map_wr(&dpt->vmap, x * 8, u64, pte | addr);
 		}
 	} else if (view->type == I915_GTT_VIEW_REMAPPED) {
-		const struct intel_remapped_info *remap_info = &view->remapped;
-		u32 i, dpt_ofs = 0;
-
-		for (i = 0; i < ARRAY_SIZE(remap_info->plane); i++)
-			write_dpt_remapped(bo, &dpt->vmap, &dpt_ofs,
-					   remap_info->plane[i].offset,
-					   remap_info->plane[i].width,
-					   remap_info->plane[i].height,
-					   remap_info->plane[i].src_stride,
-					   remap_info->plane[i].dst_stride);
-
+		write_dpt_remapped(bo, &view->remapped, &dpt->vmap);
 	} else {
 		const struct intel_rotation_info *rot_info = &view->rotated;
 		u32 i, dpt_ofs = 0;
-- 
2.48.0


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

* [PATCH v11 11/13] drm/xe: Force flush system memory AuxCCS framebuffers before scan out
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (9 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 10/13] drm/xe/display: Add support for AuxCCS Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 12/13] drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS Tvrtko Ursulin
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

Even though frame buffer objects are created as write-combined, in
practice, on top of all the ring buffer flushing, an additional clflush
seems to be needed before display engine can coherently scan out the
AuxCCS compressed data without transient artifacts.

If for comparison we look at how i915 handles things (where AuxCCS works
fine), as it happens it has this same clflush before a frame buffer is
pinned for display for the first time, courtesy the dynamic tracking of
the buffer cache mode and setting the latter to uncached before handing
to display.

Since xe considers the buffer object caching mode as static we can
implement the same approach by adding a flag telling us if the buffer
was ever pinned for display and flush on the first pin. Subsequent re-pins
will not repeat the clflush but so far I have not observed any glitching
after the first pin.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/display/xe_fb_pin.c | 12 ++++++++++++
 drivers/gpu/drm/xe/xe_bo_types.h       | 14 +++++++++-----
 2 files changed, 21 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 658541422f44..dc912864407e 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -380,6 +380,7 @@ static struct i915_vma *__xe_pin_fb_vma(const struct intel_framebuffer *fb,
 	struct i915_vma *vma = kzalloc(sizeof(*vma), GFP_KERNEL);
 	struct drm_gem_object *obj = intel_fb_bo(&fb->base);
 	struct xe_bo *bo = gem_to_xe_bo(obj);
+	bool first_pin;
 	int ret;
 
 	if (!vma)
@@ -411,6 +412,9 @@ static struct i915_vma *__xe_pin_fb_vma(const struct intel_framebuffer *fb,
 	if (ret)
 		goto err;
 
+	first_pin = !bo->display_pin;
+	bo->display_pin = true;
+
 	if (IS_DGFX(xe))
 		ret = xe_bo_migrate(bo, XE_PL_VRAM0);
 	else
@@ -429,6 +433,14 @@ static struct i915_vma *__xe_pin_fb_vma(const struct intel_framebuffer *fb,
 	if (ret)
 		goto err_unpin;
 
+	/*
+	 * Force flush frame buffer data for non-coherent display access when
+	 * AuxCCS formats are used.
+	 */
+	if (first_pin && !xe_bo_is_vram(bo) && !xe_bo_is_stolen(bo) &&
+	    intel_fb_is_ccs_modifier(fb->base.modifier))
+		drm_clflush_sg(xe_bo_sg(bo));
+
 	return vma;
 
 err_unpin:
diff --git a/drivers/gpu/drm/xe/xe_bo_types.h b/drivers/gpu/drm/xe/xe_bo_types.h
index cf604adc13a3..d5096f7f6f9a 100644
--- a/drivers/gpu/drm/xe/xe_bo_types.h
+++ b/drivers/gpu/drm/xe/xe_bo_types.h
@@ -71,11 +71,6 @@ struct xe_bo {
 	struct llist_node freed;
 	/** @update_index: Update index if PT BO */
 	int update_index;
-	/** @created: Whether the bo has passed initial creation */
-	bool created;
-
-	/** @ccs_cleared */
-	bool ccs_cleared;
 
 	/** @bb_ccs_rw: BB instructions of CCS read/write. Valid only for VF */
 	struct xe_bb *bb_ccs[XE_SRIOV_VF_CCS_CTX_COUNT];
@@ -90,6 +85,15 @@ struct xe_bo {
 	/** @devmem_allocation: SVM device memory allocation */
 	struct drm_pagemap_devmem devmem_allocation;
 
+	/** @created: Whether the bo has passed initial creation */
+	bool created : 1;
+
+	/** @ccs_cleared */
+	bool ccs_cleared : 1;
+
+	/** @display_pin: Was it ever pinned to display */
+	bool display_pin : 1;
+
 	/** @vram_userfault_link: Link into @mem_access.vram_userfault.list */
 		struct list_head vram_userfault_link;
 
-- 
2.48.0


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

* [PATCH v11 12/13] drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (10 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 11/13] drm/xe: Force flush system memory AuxCCS framebuffers before scan out Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:14 ` [PATCH v11 13/13] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe Tvrtko Ursulin
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin

With DPT in stolen memory there are occasional pipe crc IGT failures in
tests such as kms_flip_tiling. Allocate a normal system memory object
instead.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
 drivers/gpu/drm/xe/display/xe_fb_pin.c | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index dc912864407e..f605c06f3e51 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -183,6 +183,20 @@ static void ggtt_flush_writes(struct xe_ggtt *ggtt)
 	}
 }
 
+static bool try_dpt_stolen(const struct intel_framebuffer *fb, struct xe_bo *bo)
+{
+	/*
+	 * XXX: DPT in stolen memory on IGFX platforms (at least Alderlake)
+	 * suffers from occasional pipe crc IGT failures in tests such as
+	 * kms_flip_tiling.
+	 */
+	if (intel_fb_is_ccs_modifier(fb->base.modifier) &&
+	    !xe_bo_is_vram(bo) && !xe_bo_is_stolen(bo))
+		return false;
+
+	return true;
+}
+
 static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
 			       const struct i915_gtt_view *view,
 			       struct i915_vma *vma,
@@ -192,7 +206,7 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
 	struct xe_tile *tile0 = xe_device_get_root_tile(xe);
 	struct xe_ggtt *ggtt = tile0->mem.ggtt;
 	struct drm_gem_object *obj = intel_fb_bo(&fb->base);
-	struct xe_bo *bo = gem_to_xe_bo(obj), *dpt;
+	struct xe_bo *bo = gem_to_xe_bo(obj), *dpt = ERR_PTR(-EINVAL);
 	u32 dpt_size, size = bo->ttm.base.size;
 
 	if (view->type == I915_GTT_VIEW_NORMAL)
@@ -213,7 +227,7 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
 						      XE_BO_FLAG_GGTT |
 						      XE_BO_FLAG_PAGETABLE,
 						      alignment);
-	else
+	else if (try_dpt_stolen(fb, bo))
 		dpt = xe_bo_create_pin_map_at_aligned(xe, tile0, NULL,
 						      dpt_size,  ~0ull,
 						      ttm_bo_type_kernel,
-- 
2.48.0


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

* [PATCH v11 13/13] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (11 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 12/13] drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS Tvrtko Ursulin
@ 2025-08-21 14:14 ` Tvrtko Ursulin
  2025-08-21 14:55 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev13) Patchwork
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-21 14:14 UTC (permalink / raw)
  To: intel-xe
  Cc: kernel-dev, Tvrtko Ursulin, José Roberto de Souza,
	Juha-Pekka Heikkila, Rodrigo Vivi

Now that we have fixed the DPT handling we can undo the nerf which was
done in cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if
built for Xe").

Tested with KDE Wayland, on Lenovo Carbon X1 ADL-P:

	[PLANE:32:plane 1A]: type=PRI
		uapi: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=visible, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)
		hw: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=yes, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)

Display working fine - no artefacts, no DMAR/PIPE faults.

v2:
 * Adjust patch title. (Rodrigo)

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
References: cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if built for Xe")
Cc: José Roberto de Souza <jose.souza@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 drivers/gpu/drm/i915/display/skl_universal_plane.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 950dc79dbdd4..a26a42464791 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -2928,12 +2928,6 @@ skl_universal_plane_create(struct intel_display *display,
 	else
 		caps = skl_plane_caps(display, pipe, plane_id);
 
-	/* FIXME: xe has problems with AUX */
-	if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
-		caps &= ~(INTEL_PLANE_CAP_CCS_RC |
-			  INTEL_PLANE_CAP_CCS_RC_CC |
-			  INTEL_PLANE_CAP_CCS_MC);
-
 	modifiers = intel_fb_plane_get_modifiers(display, caps);
 
 	ret = drm_universal_plane_init(display->drm, &plane->base,
-- 
2.48.0


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

* ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev13)
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (12 preceding siblings ...)
  2025-08-21 14:14 ` [PATCH v11 13/13] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe Tvrtko Ursulin
@ 2025-08-21 14:55 ` Patchwork
  2025-08-21 14:57 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-08-21 14:55 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: intel-xe

== Series Details ==

Series: AuxCCS handling and render compression modifiers (rev13)
URL   : https://patchwork.freedesktop.org/series/144186/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
553439844b6500767ce8aef522cfe9fbb7ece541
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 81a142918bb2242e4db29619e0547c2443aa439b
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date:   Thu Aug 21 15:14:55 2025 +0100

    drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe
    
    Now that we have fixed the DPT handling we can undo the nerf which was
    done in cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if
    built for Xe").
    
    Tested with KDE Wayland, on Lenovo Carbon X1 ADL-P:
    
            [PLANE:32:plane 1A]: type=PRI
                    uapi: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=visible, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)
                    hw: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=yes, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)
    
    Display working fine - no artefacts, no DMAR/PIPE faults.
    
    v2:
     * Adjust patch title. (Rodrigo)
    
    Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
    References: cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if built for Xe")
    Cc: José Roberto de Souza <jose.souza@intel.com>
    Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
    Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
    Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
+ /mt/dim checkpatch 59788a4fb686ec6435b932e2286d0313423e5f59 drm-intel
2a7a4f33ffc7 drm/xe/xelpg: Flush CCS when flushing caches
46c0e72ece27 drm/xe/xelp: Quiesce memory traffic before invalidating auxccs
596f6e7bc36a drm/xe/xelp: Support auxccs invalidation on blitter
f1cfa06f0c18 drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
522f35a24fcc drm/xe/xelp: Wait for AuxCCS invalidation to complete
b4342e520271 drm/xe: Export xe_emit_aux_table_inv
f7cb2f63559c drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
c8a2db7d0819 drm/xe: Flush GGTT writes after populating DPT
-:72: WARNING:MEMORY_BARRIER: memory barrier without comment
#72: FILE: drivers/gpu/drm/xe/display/xe_fb_pin.c:115:
+	wmb();

total: 0 errors, 1 warnings, 0 checks, 66 lines checked
06fbbb43bc88 drm/xe: Handle DPT in system memory
02d441e42475 drm/xe/display: Add support for AuxCCS
b180b3769c09 drm/xe: Force flush system memory AuxCCS framebuffers before scan out
a57470628f1d drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS
81a142918bb2 drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe
-:10: ERROR:GIT_COMMIT_ID: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'commit cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if built for Xe")'
#10: 
done in cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if

-:16: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#16: 
		uapi: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=visible, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)

total: 1 errors, 1 warnings, 0 checks, 12 lines checked



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

* ✓ CI.KUnit: success for AuxCCS handling and render compression modifiers (rev13)
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (13 preceding siblings ...)
  2025-08-21 14:55 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev13) Patchwork
@ 2025-08-21 14:57 ` Patchwork
  2025-08-21 16:08 ` ✓ Xe.CI.BAT: " Patchwork
  2025-08-22 14:30 ` ✗ Xe.CI.Full: failure " Patchwork
  16 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-08-21 14:57 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: intel-xe

== Series Details ==

Series: AuxCCS handling and render compression modifiers (rev13)
URL   : https://patchwork.freedesktop.org/series/144186/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for AuxCCS handling and render compression modifiers (rev13)
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (14 preceding siblings ...)
  2025-08-21 14:57 ` ✓ CI.KUnit: success " Patchwork
@ 2025-08-21 16:08 ` Patchwork
  2025-08-22 14:30 ` ✗ Xe.CI.Full: failure " Patchwork
  16 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-08-21 16:08 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: intel-xe

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

== Series Details ==

Series: AuxCCS handling and render compression modifiers (rev13)
URL   : https://patchwork.freedesktop.org/series/144186/
State : success

== Summary ==

CI Bug Log - changes from xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408_BAT -> xe-pw-144186v13_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-144186v13_BAT that come from known issues:

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-adlp-7:         [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +3 other tests pass
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.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
-------------

  * IGT: IGT_8501 -> IGT_8503
  * Linux: xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408 -> xe-pw-144186v13

  IGT_8501: 87027eb34ac38b8217351eeaa021aeae847b6b61 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8503: 8503
  xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408: 16e133c7e6922a9f224b272a48ac172cf06e3408
  xe-pw-144186v13: 144186v13

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for AuxCCS handling and render compression modifiers (rev13)
  2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
                   ` (15 preceding siblings ...)
  2025-08-21 16:08 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-22 14:30 ` Patchwork
  2025-08-23  9:16   ` Tvrtko Ursulin
  16 siblings, 1 reply; 24+ messages in thread
From: Patchwork @ 2025-08-22 14:30 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: intel-xe

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

== Series Details ==

Series: AuxCCS handling and render compression modifiers (rev13)
URL   : https://patchwork.freedesktop.org/series/144186/
State : failure

== Summary ==

CI Bug Log - changes from xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408_FULL -> xe-pw-144186v13_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-144186v13_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-144186v13_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-144186v13_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm:
    - shard-lnl:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html

  
New tests
---------

  New tests have been introduced between xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408_FULL and xe-pw-144186v13_FULL:

### New IGT tests (44) ###

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-linear-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-x-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-linear:
    - Statuses : 1 pass(s)
    - Exec time: [0.16] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-x:
    - Statuses : 1 pass(s)
    - Exec time: [0.19] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-y:
    - Statuses : 1 pass(s)
    - Exec time: [0.16] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.20] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-y-rc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-y-rc-ccs-cc:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-rc-ccs-cc-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.18] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-rc-ccs-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-linear-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-linear:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-x:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-y:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.23] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-y-rc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.14] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-y-rc-ccs-cc:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-rc-ccs-cc-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-rc-ccs-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.13] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-linear-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-linear:
    - Statuses : 1 pass(s)
    - Exec time: [0.11] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-x:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-y:
    - Statuses : 1 pass(s)
    - Exec time: [0.13] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.22] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-y-rc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-y-rc-ccs-cc:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-cc-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-linear-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-linear:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-x:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-y:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.21] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-y-rc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-y-rc-ccs-cc:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-rc-ccs-cc-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-rc-ccs-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y-mc-ccs:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  

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

  Here are the changes found in xe-pw-144186v13_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
    - shard-adlp:         [PASS][3] -> [DMESG-WARN][4] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [PASS][5] -> [FAIL][6] ([Intel XE#911]) +3 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [PASS][7] -> [FAIL][8] ([Intel XE#3884]) +1 other test fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1407])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

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

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-adlp:         [PASS][11] -> [DMESG-FAIL][12] ([Intel XE#4543]) +18 other tests dmesg-fail
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

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

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#2191])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2887]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html

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

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][18] -> [INCOMPLETE][19] ([Intel XE#3862]) +1 other test incomplete
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#3432])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#787]) +104 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
    - shard-bmg:          [PASS][22] -> [FAIL][23] ([Intel XE#5376]) +1 other test fail
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-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-144186v13/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#373]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@legacy@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][27] ([Intel XE#1178])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-435/igt@kms_content_protection@legacy@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#2321])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][29] -> [SKIP][30] ([Intel XE#2291]) +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

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

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [PASS][32] -> [SKIP][33] ([Intel XE#4294])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html

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

  * igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3:
    - shard-bmg:          NOTRUN -> [FAIL][35] ([Intel XE#3321])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#2316]) +5 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-4/igt@kms_flip@2x-plain-flip.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@bo-too-big-interruptible@a-edp1:
    - shard-lnl:          NOTRUN -> [TIMEOUT][38] ([Intel XE#1504] / [Intel XE#5737]) +1 other test timeout
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-2/igt@kms_flip@bo-too-big-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][39] -> [FAIL][40] ([Intel XE#301] / [Intel XE#3149])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [PASS][41] -> [FAIL][42] ([Intel XE#301])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
    - shard-adlp:         [PASS][43] -> [DMESG-WARN][44] ([Intel XE#4543]) +6 other tests dmesg-warn
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-9/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-adlp:         [PASS][45] -> [DMESG-WARN][46] ([Intel XE#4543] / [Intel XE#5208])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2311])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#651]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#656]) +7 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#651])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#5390])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2313])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][53] ([Intel XE#653]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [PASS][54] -> [SKIP][55] ([Intel XE#1503])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-1/igt@kms_hdr@static-toggle-suspend.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
    - shard-dg2-set2:     [PASS][56] -> [FAIL][57] ([Intel XE#616]) +1 other test fail
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [PASS][58] -> [SKIP][59] ([Intel XE#4596])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][60] -> [FAIL][61] ([Intel XE#718])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#4608] / [Intel XE#5899]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#5899]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

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

  * igt@kms_psr@pr-sprite-render:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#1406] / [Intel XE#5899]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-1/igt@kms_psr@pr-sprite-render.html

  * igt@kms_psr@psr2-cursor-blt:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2234] / [Intel XE#2850] / [Intel XE#5899]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-4/igt@kms_psr@psr2-cursor-blt.html
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#5784] / [Intel XE#5899]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_psr@psr2-cursor-blt.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#3414] / [Intel XE#3904])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-8/igt@kms_rotation_crc@bad-tiling.html
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#3414] / [Intel XE#3904])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-8/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][70] -> [SKIP][71] ([Intel XE#1435])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-lnl:          NOTRUN -> [SKIP][72] ([Intel XE#1091] / [Intel XE#2849])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_eudebug@basic-client:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#4837])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-466/igt@xe_eudebug@basic-client.html

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

  * igt@xe_evict@evict-small-cm:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#688]) +2 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-7/igt@xe_evict@evict-small-cm.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1392])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
    - shard-dg2-set2:     [PASS][78] -> [SKIP][79] ([Intel XE#1392]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-464/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault:
    - shard-adlp:         NOTRUN -> [SKIP][80] ([Intel XE#288] / [Intel XE#5561])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-8/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][81] ([Intel XE#288]) +3 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [PASS][82] -> [DMESG-WARN][83] ([Intel XE#3876])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html

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

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

  * igt@xe_exec_system_allocator@threads-many-large-mmap-remap-eocheck:
    - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#4915]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-4/igt@xe_exec_system_allocator@threads-many-large-mmap-remap-eocheck.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-race-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][87] ([Intel XE#4915]) +12 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-432/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-race-nomemset.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#2229])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-4/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-bmg:          [PASS][89] -> [DMESG-WARN][90] ([Intel XE#3876])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  
#### Possible fixes ####

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         [DMESG-FAIL][91] ([Intel XE#4543]) -> [PASS][92] +7 other tests pass
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-bmg:          [SKIP][93] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-adlp:         [SKIP][95] ([Intel XE#787]) -> [PASS][96] +89 other tests pass
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
    - shard-adlp:         [SKIP][97] ([Intel XE#455] / [Intel XE#787]) -> [PASS][98] +59 other tests pass
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
    - shard-bmg:          [SKIP][99] ([Intel XE#2291]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html

  * igt@kms_flip@2x-busy-flip:
    - shard-bmg:          [SKIP][101] ([Intel XE#2316]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_flip@2x-busy-flip.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-1/igt@kms_flip@2x-busy-flip.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [DMESG-WARN][103] ([Intel XE#4543]) -> [PASS][104] +21 other tests pass
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-adlp:         [DMESG-FAIL][105] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][106] +1 other test pass
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-adlp:         [SKIP][107] ([Intel XE#455]) -> [PASS][108] +7 other tests pass
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [SKIP][109] ([Intel XE#1503]) -> [PASS][110] +1 other test pass
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_hdr@static-swap.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-4/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-bmg:          [SKIP][111] ([Intel XE#3012]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_mmap_write_crc@main:
    - shard-lnl:          [ABORT][113] ([Intel XE#5902]) -> [PASS][114] +1 other test pass
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/igt@kms_mmap_write_crc@main.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-2/igt@kms_mmap_write_crc@main.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][115] ([Intel XE#4596]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [FAIL][117] ([Intel XE#718]) -> [PASS][118] +1 other test pass
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-adlp:         [DMESG-WARN][119] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][120] +3 other tests pass
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][121] ([Intel XE#4459]) -> [PASS][122] +1 other test pass
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-dg2-set2:     [SKIP][123] ([Intel XE#1392]) -> [PASS][124] +9 other tests pass
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
    - shard-lnl:          [FAIL][125] -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html

  * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm:
    - shard-bmg:          [FAIL][127] -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-adlp:         [DMESG-WARN][129] ([Intel XE#3876]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@xe_exec_reset@parallel-gt-reset.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_threads@threads-hang-userptr-rebind:
    - shard-dg2-set2:     [DMESG-WARN][131] ([Intel XE#3876]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-434/igt@xe_exec_threads@threads-hang-userptr-rebind.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-dg2-436/igt@xe_exec_threads@threads-hang-userptr-rebind.html

  * igt@xe_exec_threads@threads-mixed-fd-rebind:
    - shard-adlp:         [DMESG-FAIL][133] ([Intel XE#3876]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@xe_exec_threads@threads-mixed-fd-rebind.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-2/igt@xe_exec_threads@threads-mixed-fd-rebind.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          [FAIL][135] ([Intel XE#5937]) -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-8/igt@xe_sriov_flr@flr-each-isolation.html

  
#### Warnings ####

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-adlp:         [DMESG-WARN][137] ([Intel XE#4543]) -> [DMESG-WARN][138] ([Intel XE#2953] / [Intel XE#4173])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/igt@kms_async_flips@async-flip-suspend-resume.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [SKIP][139] ([Intel XE#2316]) -> [FAIL][140] ([Intel XE#3321])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][141] ([Intel XE#2312]) -> [SKIP][142] ([Intel XE#2311]) +5 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][143] ([Intel XE#2311]) -> [SKIP][144] ([Intel XE#2312]) +12 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][145] ([Intel XE#2312]) -> [SKIP][146] ([Intel XE#5390]) +3 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][147] ([Intel XE#5390]) -> [SKIP][148] ([Intel XE#2312]) +9 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][149] ([Intel XE#2313]) -> [SKIP][150] ([Intel XE#2312]) +11 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][151] ([Intel XE#2312]) -> [SKIP][152] ([Intel XE#2313]) +6 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][153] ([Intel XE#5021]) -> [SKIP][154] ([Intel XE#4596])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [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#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5737]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5737
  [Intel XE#5784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5784
  [Intel XE#5899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5899
  [Intel XE#5902]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5902
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911


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

  * IGT: IGT_8501 -> IGT_8503
  * Linux: xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408 -> xe-pw-144186v13

  IGT_8501: 87027eb34ac38b8217351eeaa021aeae847b6b61 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8503: 8503
  xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408: 16e133c7e6922a9f224b272a48ac172cf06e3408
  xe-pw-144186v13: 144186v13

== Logs ==

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

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

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

* Re: ✗ Xe.CI.Full: failure for AuxCCS handling and render compression modifiers (rev13)
  2025-08-22 14:30 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-08-23  9:16   ` Tvrtko Ursulin
  0 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-08-23  9:16 UTC (permalink / raw)
  To: intel-xe


On 22/08/2025 15:30, Patchwork wrote:
> *Patch Details*
> *Series:*	AuxCCS handling and render compression modifiers (rev13)
> *URL:*	https://patchwork.freedesktop.org/series/144186/ <https:// 
> patchwork.freedesktop.org/series/144186/>
> *State:*	failure
> *Details:*	https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/ 
> index.html <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/ 
> index.html>
> 
> 
>   CI Bug Log - changes from
>   xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408_FULL -> xe-
>   pw-144186v13_FULL
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with xe-pw-144186v13_FULL absolutely need 
> to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-144186v13_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-144186v13_FULL:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm:
>       o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-8/
>         igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html>
>         -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/xe-
>         pw-144186v13/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-
>         userptr-rebind-imm.html>

Unrelated fail.

AuxCCS bits are all green.

Regards,

Tvrtko

> 
> 
>     New tests
> 
> New tests have been introduced between 
> xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408_FULL and xe- 
> pw-144186v13_FULL:
> 
> 
>       New IGT tests (44)
> 
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-linear-to-y-
>     mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.17] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-x-to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.17] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-
>     linear:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.16] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-x:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.19] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-y:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.16] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-
>     y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.20] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-
>     y-rc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.17] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-
>     y-rc-ccs-cc:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.17] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-rc-ccs-cc-
>     to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.18] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-rc-ccs-to-
>     y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.17] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.17] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-linear-to-y-
>     mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-
>     linear:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-x:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-y:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-
>     y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.23] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-
>     y-rc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.14] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-
>     y-rc-ccs-cc:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-rc-ccs-cc-
>     to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-rc-ccs-to-
>     y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.13] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-linear-to-y-
>     mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-
>     linear:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.11] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-x:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-y:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.13] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-
>     y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.22] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-
>     y-rc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-
>     y-rc-ccs-cc:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-cc-
>     to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-to-
>     y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-linear-to-y-
>     mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-
>     linear:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-x:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-y:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-
>     y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.21] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-
>     y-rc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-
>     y-rc-ccs-cc:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-rc-ccs-cc-
>     to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-rc-ccs-to-
>     y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
>   *
> 
>     igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y-mc-ccs:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.12] s
> 
> 
>     Known issues
> 
> Here are the changes found in xe-pw-144186v13_FULL that come from known 
> issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
> 
>       o shard-adlp: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/
>         igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-
>         a-1.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-pw-144186v13/shard-adlp-6/igt@kms_async_flips@async-flip-
>         suspend-resume@pipe-c-hdmi-a-1.html> (Intel XE#2953 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2953> / Intel
>         XE#4173 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4173>) +4 other tests dmesg-warn
>   *
> 
>     igt@kms_async_flips@async-flip-with-page-flip-events-linear-
>     atomic@pipe-c-edp-1:
> 
>       o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/
>         igt@kms_async_flips@async-flip-with-page-flip-events-linear-
>         atomic@pipe-c-edp-1.html> -> FAIL <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-lnl-4/
>         igt@kms_async_flips@async-flip-with-page-flip-events-linear-
>         atomic@pipe-c-edp-1.html> (Intel XE#911 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3 other tests
>         fail
>   *
> 
>     igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
> 
>       o shard-adlp: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-2/
>         igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html> -> FAIL
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-
>         a-1.html> (Intel XE#3884 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/3884>) +1 other test fail
>   *
> 
>     igt@kms_big_fb@4-tiled-64bpp-rotate-270:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_big_fb@4-
>         tiled-64bpp-rotate-270.html> (Intel XE#1407 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1407>)
>   *
> 
>     igt@kms_big_fb@y-tiled-16bpp-rotate-180:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-4/igt@kms_big_fb@y-
>         tiled-16bpp-rotate-180.html> (Intel XE#1124 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +2 other
>         tests skip
>   *
> 
>     igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>       o shard-adlp: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/
>         igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-
>         hflip.html> -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-adlp-4/igt@kms_big_fb@y-tiled-
>         max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#4543
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543>) +18
>         other tests dmesg-fail
>   *
> 
>     igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-7/igt@kms_big_fb@yf-tiled-
>         max-hw-stride-64bpp-rotate-0-async-flip.html> (Intel XE#1124
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +4
>         other tests skip
>   *
> 
>     igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-1/igt@kms_bw@connected-
>         linear-tiling-2-displays-2560x1440p.html> (Intel XE#2191
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
>   *
> 
>     igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-4/igt@kms_ccs@bad-aux-
>         stride-4-tiled-mtl-rc-ccs.html> (Intel XE#2887 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +1 other test
>         skip
>   *
> 
>     igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-2/igt@kms_ccs@bad-
>         rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#2669
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +3
>         other tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_ccs@crc-primary-
>         rotation-180-4-tiled-mtl-mc-ccs.html> (Intel XE#2887 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +5 other
>         tests skip
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-1/
>         igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> ->
>         INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/xe-
>         pw-144186v13/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-
>         tiled-bmg-ccs.html> (Intel XE#3862 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3862>) +1 other test
>         incomplete
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_ccs@crc-primary-
>         suspend-4-tiled-dg2-mc-ccs.html> (Intel XE#3432 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
> 
>       o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-466/igt@kms_ccs@crc-
>         primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html> (Intel
>         XE#787 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/787>) +104 other tests skip
>   *
> 
>     igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-5/
>         igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-
>         dp-2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-pw-144186v13/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-
>         basic-4-tiled-bmg-ccs@pipe-a-dp-2.html> (Intel XE#5376 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/5376>) +1 other test
>         fail
>   *
> 
>     igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
> 
>       o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-436/igt@kms_ccs@crc-
>         sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html> (Intel
>         XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/455> / Intel XE#787 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/787>) +15 other tests skip
>   *
> 
>     igt@kms_cdclk@mode-transition@pipe-d-dp-4:
> 
>       o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-435/igt@kms_cdclk@mode-
>         transition@pipe-d-dp-4.html> (Intel XE#4417 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/4417>) +3 other
>         tests skip
>   *
> 
>     igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-
>         hpd-with-enabled-mode.html> (Intel XE#373 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +1 other test skip
>   *
> 
>     igt@kms_content_protection@legacy@pipe-a-dp-4:
> 
>       o shard-dg2-set2: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-435/
>         igt@kms_content_protection@legacy@pipe-a-dp-4.html> (Intel
>         XE#1178 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)
>   *
> 
>     igt@kms_cursor_crc@cursor-rapid-movement-512x512:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_cursor_crc@cursor-
>         rapid-movement-512x512.html> (Intel XE#2321 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2321>)
>   *
> 
>     igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-1/
>         igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html>
>         (Intel XE#2291 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2291>) +3 other tests skip
>   *
> 
>     igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-4/igt@kms_cursor_legacy@2x-
>         flip-vs-cursor-legacy.html> (Intel XE#309 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +2 other tests
>         skip
>   *
> 
>     igt@kms_dp_linktrain_fallback@dp-fallback:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-3/
>         igt@kms_dp_linktrain_fallback@dp-fallback.html> -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html>
>         (Intel XE#4294 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4294>)
>   *
> 
>     igt@kms_flip@2x-dpms-vs-vblank-race:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_flip@2x-dpms-vs-
>         vblank-race.html> (Intel XE#1421 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +2 other
>         tests skip
>   *
> 
>     igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3:
> 
>       o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-2/igt@kms_flip@2x-flip-vs-
>         expired-vblank@bd-dp2-hdmi-a3.html> (Intel XE#3321 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
>   *
> 
>     igt@kms_flip@2x-plain-flip:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-4/
>         igt@kms_flip@2x-plain-flip.html> -> SKIP <https://intel-gfx-
>         ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/
>         igt@kms_flip@2x-plain-flip.html> (Intel XE#2316 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +5 other
>         tests skip
>   *
> 
>     igt@kms_flip@bo-too-big-interruptible@a-edp1:
> 
>       o shard-lnl: NOTRUN -> TIMEOUT <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-2/igt@kms_flip@bo-too-big-
>         interruptible@a-edp1.html> (Intel XE#1504 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1504> / Intel
>         XE#5737 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/5737>) +1 other test timeout
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank-interruptible:
> 
>       o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/
>         igt@kms_flip@flip-vs-expired-vblank-interruptible.html> -> FAIL
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-
>         interruptible.html> (Intel XE#301 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3149
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149>)
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
> 
>       o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/
>         igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html> -
>          > FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/xe-
>         pw-144186v13/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-
>         interruptible@c-edp1.html> (Intel XE#301 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/301>)
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
> 
>       o shard-adlp: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-4/
>         igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html> -> DMESG-
>         WARN <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-adlp-9/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html>
>         (Intel XE#4543 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4543>) +6 other tests dmesg-warn
>   *
> 
>     igt@kms_flip@flip-vs-rmfb-interruptible:
> 
>       o shard-adlp: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-8/
>         igt@kms_flip@flip-vs-rmfb-interruptible.html> -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-adlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html>
>         (Intel XE#4543 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4543> / Intel XE#5208 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/5208>)
>   *
> 
>     igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-4/
>         igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-
>         blt.html> (Intel XE#2311 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/2311>)
>   *
> 
>     igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-1/
>         igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-
>         onoff.html> (Intel XE#651 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/651>) +3 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-2/
>         igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-
>         render.html> (Intel XE#656 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/656>) +7 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
> 
>       o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-466/
>         igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html>
>         (Intel XE#651 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/651>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-1/
>         igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-
>         blt.html> (Intel XE#5390 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/5390>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-2/
>         igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-
>         blt.html> (Intel XE#2313 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/2313>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
> 
>       o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-433/
>         igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html> (Intel XE#653
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +1
>         other test skip
>   *
> 
>     igt@kms_hdr@static-toggle-suspend:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-1/
>         igt@kms_hdr@static-toggle-suspend.html> -> SKIP <https://intel-
>         gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/
>         igt@kms_hdr@static-toggle-suspend.html> (Intel XE#1503 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
>   *
> 
>     igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
> 
>       o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-463/
>         igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html> ->
>         FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-
>         size-64.html> (Intel XE#616 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/616>) +1 other test fail
>   *
> 
>     igt@kms_plane_multiple@2x-tiling-none:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-4/
>         igt@kms_plane_multiple@2x-tiling-none.html> -> SKIP <https://
>         intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/
>         igt@kms_plane_multiple@2x-tiling-none.html> (Intel XE#4596
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596>)
>   *
> 
>     igt@kms_pm_dc@dc5-psr:
> 
>       o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-1/
>         igt@kms_pm_dc@dc5-psr.html> -> FAIL <https://intel-gfx-
>         ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-lnl-3/
>         igt@kms_pm_dc@dc5-psr.html> (Intel XE#718 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
>   *
> 
>     igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-
>     sf@pipe-b-edp-1:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-
>         cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html> (Intel
>         XE#4608 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4608> / Intel XE#5899 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/5899>) +3 other tests skip
>   *
> 
>     igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-
>         overlay-plane-update-sf-dmg-area.html> (Intel XE#2893 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2893> / Intel
>         XE#4608 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4608> / Intel XE#5899 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/5899>) +1 other test skip
>   *
> 
>     igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-7/igt@kms_psr@fbc-psr2-
>         sprite-blt@edp-1.html> (Intel XE#4609 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/4609> / Intel
>         XE#5899 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5899>)
>   *
> 
>     igt@kms_psr@pr-sprite-render:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-1/igt@kms_psr@pr-sprite-
>         render.html> (Intel XE#1406 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/1406> / Intel XE#5899 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/5899>) +1 other test
>         skip
>   *
> 
>     igt@kms_psr@psr2-cursor-blt:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-4/igt@kms_psr@psr2-cursor-
>         blt.html> (Intel XE#2234 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/2234> / Intel XE#2850 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel
>         XE#5899 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/5899>) +1 other test skip
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-3/igt@kms_psr@psr2-cursor-
>         blt.html> (Intel XE#5784 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/5784> / Intel XE#5899 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/5899>) +2 other
>         tests skip
>   *
> 
>     igt@kms_rotation_crc@bad-tiling:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-8/igt@kms_rotation_crc@bad-
>         tiling.html> (Intel XE#3414 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/3414> / Intel XE#3904 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3904>)
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-8/igt@kms_rotation_crc@bad-
>         tiling.html> (Intel XE#3414 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/3414> / Intel XE#3904 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/3904>)
>   *
> 
>     igt@kms_setmode@invalid-clone-single-crtc-stealing:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-7/
>         igt@kms_setmode@invalid-clone-single-crtc-stealing.html> -> SKIP
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-
>         stealing.html> (Intel XE#1435 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/1435>)
>   *
> 
>     igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-5/igt@sriov_basic@enable-vfs-
>         bind-unbind-each-numvfs-all.html> (Intel XE#1091 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel
>         XE#2849 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
>   *
> 
>     igt@xe_eudebug@basic-client:
> 
>       o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-466/
>         igt@xe_eudebug@basic-client.html> (Intel XE#4837 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/4837>)
>   *
> 
>     igt@xe_eudebug@basic-connect:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-1/igt@xe_eudebug@basic-
>         connect.html> (Intel XE#4837 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/4837>) +4 other tests skip
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-3/igt@xe_eudebug@basic-
>         connect.html> (Intel XE#4837 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/4837>)
>   *
> 
>     igt@xe_evict@evict-small-cm:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-7/igt@xe_evict@evict-small-
>         cm.html> (Intel XE#688 <https://gitlab.freedesktop.org/drm/xe/
>         kernel/issues/688>) +2 other tests skip
>   *
> 
>     igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-1/igt@xe_exec_basic@multigpu-
>         no-exec-userptr-invalidate-race.html> (Intel XE#1392 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1392>)
>   *
> 
>     igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
> 
>       o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-464/
>         igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-
>         invalidate-race.html> -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-dg2-432/
>         igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-
>         invalidate-race.html> (Intel XE#1392 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +3 other
>         tests skip
>   *
> 
>     igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault:
> 
>       o shard-adlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-adlp-8/
>         igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-
>         fault.html> (Intel XE#288 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/288> / Intel XE#5561 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/5561>)
>       o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-463/
>         igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-
>         fault.html> (Intel XE#288 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/288>) +3 other tests skip
>   *
> 
>     igt@xe_exec_reset@parallel-gt-reset:
> 
>       o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-433/
>         igt@xe_exec_reset@parallel-gt-reset.html> -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html> (Intel
>         XE#3876 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876>)
>   *
> 
>     igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset:
> 
>       o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-bmg-8/
>         igt@xe_exec_system_allocator@once-large-mmap-free-huge-
>         nomemset.html> (Intel XE#4943 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/4943>) +1 other test skip
>   *
> 
>     igt@xe_exec_system_allocator@process-many-mmap-huge-nomemset:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-8/
>         igt@xe_exec_system_allocator@process-many-mmap-huge-
>         nomemset.html> (Intel XE#4943 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/4943>) +4 other tests skip
>   *
> 
>     igt@xe_exec_system_allocator@threads-many-large-mmap-remap-eocheck:
> 
>       o shard-adlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-adlp-4/
>         igt@xe_exec_system_allocator@threads-many-large-mmap-remap-
>         eocheck.html> (Intel XE#4915 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/4915>) +1 other test skip
>   *
> 
>     igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-
>     race-nomemset:
> 
>       o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-dg2-432/
>         igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-
>         new-race-nomemset.html> (Intel XE#4915 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/4915>) +12 other
>         tests skip
>   *
> 
>     igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
> 
>       o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-lnl-4/
>         igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel
>         XE#2229 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
>   *
> 
>     igt@xe_pmu@fn-engine-activity-sched-if-idle:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@xe_pmu@fn-engine-activity-sched-if-idle.html> -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html>
>         (Intel XE#3876 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3876>)
> 
> 
>         Possible fixes
> 
>   *
> 
>     igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
> 
>       o shard-adlp: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-
>         adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-
>         async-flip.html> (Intel XE#4543 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/4543>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-6/
>         igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-
>         flip.html> +7 other tests pass
>   *
> 
>     igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html>
>         (Intel XE#2314 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2314> / Intel XE#2894 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2894>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-5/
>         igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html>
>   *
> 
>     igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
> 
>       o shard-adlp: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-3/
>         igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-
>         hdmi-a-1.html> (Intel XE#787 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/787>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-adlp-8/igt@kms_ccs@crc-
>         primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html>
>         +89 other tests pass
>   *
> 
>     igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
> 
>       o shard-adlp: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-8/
>         igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html>
>         (Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/455> / Intel XE#787 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/787>) -> PASS <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-adlp-6/igt@kms_ccs@crc-
>         sprite-planes-basic-y-tiled-gen12-mc-ccs.html> +59 other tests pass
>   *
> 
>     igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> (Intel
>         XE#2291 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2291>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-pw-144186v13/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-
>         flipb-toggle.html>
>   *
> 
>     igt@kms_flip@2x-busy-flip:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_flip@2x-busy-flip.html> (Intel XE#2316 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-1/igt@kms_flip@2x-busy-flip.html>
>   *
> 
>     igt@kms_flip@flip-vs-suspend-interruptible:
> 
>       o shard-adlp: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-
>         adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel
>         XE#4543 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4543>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-pw-144186v13/shard-adlp-9/igt@kms_flip@flip-vs-suspend-
>         interruptible.html> +21 other tests pass
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
> 
>       o shard-adlp: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-
>         adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-
>         downscaling.html> (Intel XE#4543 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/4543> / Intel
>         XE#4921 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4921>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-pw-144186v13/shard-adlp-8/
>         igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-
>         downscaling.html> +1 other test pass
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-
>     upscaling@pipe-a-valid-mode:
> 
>       o shard-adlp: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-adlp-9/
>         igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-
>         ytilegen12rcccs-upscaling@pipe-a-valid-mode.html> (Intel XE#455
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) ->
>         PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-
>         ytilegen12rcccs-upscaling@pipe-a-valid-mode.html> +7 other tests
>         pass
>   *
> 
>     igt@kms_hdr@static-swap:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_hdr@static-swap.html> (Intel XE#1503 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-4/igt@kms_hdr@static-swap.html> +1 other test pass
>   *
> 
>     igt@kms_joiner@basic-force-big-joiner:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_joiner@basic-force-big-joiner.html> (Intel XE#3012
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) ->
>         PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html>
>   *
> 
>     igt@kms_mmap_write_crc@main:
> 
>       o shard-lnl: ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/
>         igt@kms_mmap_write_crc@main.html> (Intel XE#5902 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/5902>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-lnl-2/igt@kms_mmap_write_crc@main.html> +1 other test pass
>   *
> 
>     igt@kms_plane_multiple@2x-tiling-4:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_plane_multiple@2x-tiling-4.html> (Intel XE#4596
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596>) ->
>         PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-4/igt@kms_plane_multiple@2x-tiling-4.html>
>   *
> 
>     igt@kms_pm_dc@dc6-dpms:
> 
>       o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-5/
>         igt@kms_pm_dc@dc6-dpms.html> (Intel XE#718 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/718>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html> +1 other test pass
>   *
> 
>     igt@kms_vblank@ts-continuation-dpms-suspend:
> 
>       o shard-adlp: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-
>         adlp-9/igt@kms_vblank@ts-continuation-dpms-suspend.html> (Intel
>         XE#2953 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/2953> / Intel XE#4173 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/4173>) -> PASS <https://intel-gfx-
>         ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-adlp-1/
>         igt@kms_vblank@ts-continuation-dpms-suspend.html> +3 other tests
>         pass
>   *
> 
>     igt@kms_vrr@cmrr@pipe-a-edp-1:
> 
>       o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-7/
>         igt@kms_vrr@cmrr@pipe-a-edp-1.html> (Intel XE#4459 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/4459>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html> +1 other test pass
>   *
> 
>     igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-
>     userptr:
> 
>       o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-dg2-432/
>         igt@xe_exec_basic@multigpu-many-execqueues-many-vm-
>         bindexecqueue-userptr.html> (Intel XE#1392 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-
>         vm-bindexecqueue-userptr.html> +9 other tests pass
>   *
> 
>     igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
> 
>       o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-lnl-2/
>         igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-
>         imm.html> -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-
>         pw-144186v13/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-
>         bindexecqueue-rebind-imm.html>
>   *
> 
>     igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm:
> 
>       o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/
>         igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html>
>         -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-
>         pw-144186v13/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-
>         userptr-rebind-imm.html>
>   *
> 
>     igt@xe_exec_reset@parallel-gt-reset:
> 
>       o shard-adlp: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-
>         adlp-9/igt@xe_exec_reset@parallel-gt-reset.html> (Intel XE#3876
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876>) ->
>         PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html>
>   *
> 
>     igt@xe_exec_threads@threads-hang-userptr-rebind:
> 
>       o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-
>         dg2-434/igt@xe_exec_threads@threads-hang-userptr-rebind.html>
>         (Intel XE#3876 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3876>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-pw-144186v13/shard-dg2-436/igt@xe_exec_threads@threads-
>         hang-userptr-rebind.html>
>   *
> 
>     igt@xe_exec_threads@threads-mixed-fd-rebind:
> 
>       o shard-adlp: DMESG-FAIL <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-
>         adlp-9/igt@xe_exec_threads@threads-mixed-fd-rebind.html> (Intel
>         XE#3876 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/3876>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-pw-144186v13/shard-adlp-2/igt@xe_exec_threads@threads-
>         mixed-fd-rebind.html>
>   *
> 
>     igt@xe_sriov_flr@flr-each-isolation:
> 
>       o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-3/
>         igt@xe_sriov_flr@flr-each-isolation.html> (Intel XE#5937
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937>) ->
>         PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-8/igt@xe_sriov_flr@flr-each-isolation.html>
> 
> 
>         Warnings
> 
>   *
> 
>     igt@kms_async_flips@async-flip-suspend-resume:
> 
>       o shard-adlp: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
>         xe/xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-
>         adlp-9/igt@kms_async_flips@async-flip-suspend-resume.html>
>         (Intel XE#4543 <https://gitlab.freedesktop.org/drm/xe/kernel/
>         issues/4543>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
>         intel-xe/xe-pw-144186v13/shard-adlp-6/igt@kms_async_flips@async-
>         flip-suspend-resume.html> (Intel XE#2953 <https://
>         gitlab.freedesktop.org/drm/xe/kernel/issues/2953> / Intel
>         XE#4173 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173>)
>   *
> 
>     igt@kms_flip@2x-flip-vs-expired-vblank:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#2316
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) ->
>         FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel
>         XE#3321 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
>   *
> 
>     igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-
>         render.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2312>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-bmg-2/
>         igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-
>         render.html> (Intel XE#2311 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2311>) +5 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/
>         igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-
>         mmap-wc.html> (Intel XE#2311 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2311>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/
>         igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-
>         mmap-wc.html> (Intel XE#2312 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2312>) +12 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-
>         render.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2312>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-bmg-1/
>         igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-
>         render.html> (Intel XE#5390 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/5390>) +3 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-7/
>         igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-
>         onoff.html> (Intel XE#5390 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/5390>) -> SKIP <https://intel-gfx-ci.01.org/
>         tree/intel-xe/xe-pw-144186v13/shard-bmg-6/
>         igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-
>         onoff.html> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/
>         xe/kernel/issues/2312>) +9 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-5/
>         igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-
>         fullscreen.html> (Intel XE#2313 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2313>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-6/
>         igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-
>         fullscreen.html> (Intel XE#2312 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2312>) +11 other tests skip
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-6/
>         igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-
>         mmap-wc.html> (Intel XE#2312 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2312>) -> SKIP <https://intel-gfx-
>         ci.01.org/tree/intel-xe/xe-pw-144186v13/shard-bmg-1/
>         igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-
>         mmap-wc.html> (Intel XE#2313 <https://gitlab.freedesktop.org/
>         drm/xe/kernel/issues/2313>) +6 other tests skip
>   *
> 
>     igt@kms_plane_multiple@2x-tiling-yf:
> 
>       o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
>         xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408/shard-bmg-2/
>         igt@kms_plane_multiple@2x-tiling-yf.html> (Intel XE#5021
>         <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021>) ->
>         SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-144186v13/
>         shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html> (Intel
>         XE#4596 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596>)
> 
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
>     Build changes
> 
>   * IGT: IGT_8501 -> IGT_8503
>   * Linux: xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408 -> xe-
>     pw-144186v13
> 
> IGT_8501: 87027eb34ac38b8217351eeaa021aeae847b6b61 @ https:// 
> gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8503: 8503
> xe-3591-16e133c7e6922a9f224b272a48ac172cf06e3408: 
> 16e133c7e6922a9f224b272a48ac172cf06e3408
> xe-pw-144186v13: 144186v13
> 


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

* Re: [PATCH v11 01/13] drm/xe/xelpg: Flush CCS when flushing caches
  2025-08-21 14:14 ` [PATCH v11 01/13] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
@ 2025-08-27 14:10   ` Rodrigo Vivi
  0 siblings, 0 replies; 24+ messages in thread
From: Rodrigo Vivi @ 2025-08-27 14:10 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev

On Thu, Aug 21, 2025 at 03:14:43PM +0100, Tvrtko Ursulin wrote:
> According to i915 PIPE_CONTROL0_CCS_FLUSH needs to be set when flushing
> render caches on gfx ip 12.70+.
> 
> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> ---
>  drivers/gpu/drm/xe/instructions/xe_gpu_commands.h | 1 +
>  drivers/gpu/drm/xe/xe_ring_ops.c                  | 7 ++++++-
>  2 files changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h b/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
> index 8cfcd3360896..78c0e87dbd37 100644
> --- a/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
> +++ b/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
> @@ -43,6 +43,7 @@
>  
>  #define	  PIPE_CONTROL0_L3_READ_ONLY_CACHE_INVALIDATE	BIT(10)	/* gen12 */
>  #define	  PIPE_CONTROL0_HDC_PIPELINE_FLUSH		BIT(9)	/* gen12 */
> +#define   PIPE_CONTROL0_CCS_FLUSH                       BIT(13) /* MTL+ */
>  
>  #define   PIPE_CONTROL_COMMAND_CACHE_INVALIDATE		(1<<29)
>  #define   PIPE_CONTROL_TILE_CACHE_FLUSH			(1<<28)
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> index 5f15360d14bf..761740d7769f 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> @@ -176,13 +176,18 @@ static int emit_store_imm_ppgtt_posted(u64 addr, u64 value,
>  static int emit_render_cache_flush(struct xe_sched_job *job, u32 *dw, int i)
>  {
>  	struct xe_gt *gt = job->q->gt;
> +	struct xe_device *xe = gt_to_xe(gt);
>  	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
> +	u32 bit_group_0 = PIPE_CONTROL0_HDC_PIPELINE_FLUSH;
>  	u32 flags;
>  
>  	if (XE_GT_WA(gt, 14016712196))
>  		i = emit_pipe_control(dw, i, 0, PIPE_CONTROL_DEPTH_CACHE_FLUSH,
>  				      LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR, 0);
>  
> +	if (GRAPHICS_VERx100(xe) >= 1270)
> +		bit_group_0 |= PIPE_CONTROL0_CCS_FLUSH;
> +
>  	flags = (PIPE_CONTROL_CS_STALL |
>  		 PIPE_CONTROL_TILE_CACHE_FLUSH |
>  		 PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH |
> @@ -198,7 +203,7 @@ static int emit_render_cache_flush(struct xe_sched_job *job, u32 *dw, int i)
>  	else if (job->q->class == XE_ENGINE_CLASS_COMPUTE)
>  		flags &= ~PIPE_CONTROL_3D_ENGINE_FLAGS;
>  
> -	return emit_pipe_control(dw, i, PIPE_CONTROL0_HDC_PIPELINE_FLUSH, flags, 0, 0);
> +	return emit_pipe_control(dw, i, bit_group_0, flags, 0, 0);
>  }
>  
>  static int emit_pipe_control_to_ring_end(struct xe_hw_engine *hwe, u32 *dw, int i)
> -- 
> 2.48.0
> 

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

* Re: [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs
  2025-08-21 14:14 ` [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs Tvrtko Ursulin
@ 2025-08-27 14:39   ` Rodrigo Vivi
  2025-09-01 10:37     ` Tvrtko Ursulin
  0 siblings, 1 reply; 24+ messages in thread
From: Rodrigo Vivi @ 2025-08-27 14:39 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev

On Thu, Aug 21, 2025 at 03:14:44PM +0100, Tvrtko Ursulin wrote:
> According to i915 before invalidating auxccs we must quiesce the memory
> traffic by an extra flush.

Perhaps we should be more specific about what commits exactly are mentioning this?

> 
> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
> ---
>  drivers/gpu/drm/xe/xe_ring_ops.c       | 7 ++++++-
>  drivers/gpu/drm/xe/xe_ring_ops_types.h | 2 +-
>  2 files changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> index 761740d7769f..f56506ebbeca 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> @@ -358,10 +358,15 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>  	struct xe_gt *gt = job->q->gt;
>  	struct xe_device *xe = gt_to_xe(gt);
>  	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
> +	const bool aux_ccs = has_aux_ccs(xe);
>  	u32 mask_flags = 0;
>  
>  	i = emit_copy_timestamp(lrc, dw, i);
>  
> +	/* hsdes: 1809175790 */

in i915 I just see a mention to this HSD which is the
972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all engines")

but that is not about emitting the flush, but about fixing the aux
table invalidation itself. And that is in sync what written on this
HSD, but I don't believe this patch is about that.

So, although this patch itself kind of makes sense, I believe it
deserves a better message.

> +	if (aux_ccs)
> +		i = emit_render_cache_flush(job, dw, i);
> +
>  	dw[i++] = preparser_disable(true);
>  	if (lacks_render)
>  		mask_flags = PIPE_CONTROL_3D_ARCH_FLAGS;
> @@ -372,7 +377,7 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>  	i = emit_pipe_invalidate(mask_flags, job->ring_ops_flush_tlb, dw, i);
>  
>  	/* hsdes: 1809175790 */
> -	if (has_aux_ccs(xe))
> +	if (aux_ccs)
>  		i = emit_aux_table_inv(gt, CCS_AUX_INV, dw, i);
>  
>  	dw[i++] = preparser_disable(false);
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops_types.h b/drivers/gpu/drm/xe/xe_ring_ops_types.h
> index d7e3e150a9a5..477dc7defd72 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops_types.h
> +++ b/drivers/gpu/drm/xe/xe_ring_ops_types.h
> @@ -8,7 +8,7 @@
>  
>  struct xe_sched_job;
>  
> -#define MAX_JOB_SIZE_DW 58
> +#define MAX_JOB_SIZE_DW 70
>  #define MAX_JOB_SIZE_BYTES (MAX_JOB_SIZE_DW * 4)
>  
>  /**
> -- 
> 2.48.0
> 

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

* Re: [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs
  2025-08-27 14:39   ` Rodrigo Vivi
@ 2025-09-01 10:37     ` Tvrtko Ursulin
  2025-09-02 17:33       ` Rodrigo Vivi
  0 siblings, 1 reply; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-09-01 10:37 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-xe, kernel-dev


On 27/08/2025 15:39, Rodrigo Vivi wrote:
> On Thu, Aug 21, 2025 at 03:14:44PM +0100, Tvrtko Ursulin wrote:
>> According to i915 before invalidating auxccs we must quiesce the memory
>> traffic by an extra flush.
> 
> Perhaps we should be more specific about what commits exactly are mentioning this?
> 
>>
>> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
>> ---
>>   drivers/gpu/drm/xe/xe_ring_ops.c       | 7 ++++++-
>>   drivers/gpu/drm/xe/xe_ring_ops_types.h | 2 +-
>>   2 files changed, 7 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
>> index 761740d7769f..f56506ebbeca 100644
>> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
>> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
>> @@ -358,10 +358,15 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>>   	struct xe_gt *gt = job->q->gt;
>>   	struct xe_device *xe = gt_to_xe(gt);
>>   	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
>> +	const bool aux_ccs = has_aux_ccs(xe);
>>   	u32 mask_flags = 0;
>>   
>>   	i = emit_copy_timestamp(lrc, dw, i);
>>   
>> +	/* hsdes: 1809175790 */
> 
> in i915 I just see a mention to this HSD which is the
> 972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all engines")
> 
> but that is not about emitting the flush, but about fixing the aux
> table invalidation itself. And that is in sync what written on this
> HSD, but I don't believe this patch is about that.
> 
> So, although this patch itself kind of makes sense, I believe it
> deserves a better message.

My logic was this:

d0d829e56674c (Daniele Ceraolo Spurio 2020-12-09 23:36:18 +0000 244) int 
gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
d0d829e56674c (Daniele Ceraolo Spurio 2020-12-09 23:36:18 +0000 245) {
803efd297e315 (Daniele Ceraolo Spurio 2022-03-01 15:15:40 -0800 246) 
struct intel_engine_cs *engine = rq->engine;
803efd297e315 (Daniele Ceraolo Spurio 2022-03-01 15:15:40 -0800 247)
ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 248)    /*
ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 249) 
* On Aux CCS platforms the invalidation of the Aux
ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 250) 
* table requires quiescing memory traffic beforehand
ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 251)     */
ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 252) 
if (mode & EMIT_FLUSH || gen12_needs_ccs_aux_inv(engine)) {

So commit ad8ebf12217e4 added the flush before invalidate:

commit ad8ebf12217e451cd19804b1c3e97ad56491c74a
Author: Jonathan Cavitt <jonathan.cavitt@intel.com>
Date:   Tue Jul 25 02:19:46 2023 +0200

     drm/i915/gt: Ensure memory quiesced before invalidation

     All memory traffic must be quiesced before requesting
     an aux invalidation on platforms that use Aux CCS.

     Fixes: 972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for 
all engines")
     Requires: a2a4aa0eef3b ("drm/i915: Add the gen12_needs_ccs_aux_inv 
helper")
     Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
     Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
     Cc: <stable@vger.kernel.org> # v5.8+
     Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
     Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
     Link: 
https://patchwork.freedesktop.org/patch/msgid/20230725001950.1014671-4-andi.shyti@linux.intel.com

diff --git a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c 
b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
index 46744f966077..58b448708e75 100644
--- a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
+++ b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
@@ -214,7 +214,11 @@ int gen12_emit_flush_rcs(struct i915_request *rq, 
u32 mode)
  {
         struct intel_engine_cs *engine = rq->engine;

-       if (mode & EMIT_FLUSH) {
+       /*
+        * On Aux CCS platforms the invalidation of the Aux
+        * table requires quiescing memory traffic beforehand
+        */
+       if (mode & EMIT_FLUSH || gen12_needs_ccs_aux_inv(engine)) {

And ad8ebf12217e4 referenced 972282c4cf24 as the commit it was fixing, 
while 972282c4cf24 is the one which references hsdes#1809175790. So I 
decided to tag this patch with it as a transitive property.

If I remove the HSD reference, replace it with a comment as the one in 
i915, and put the above commit chain reasoning to the commit message 
will that be good enough?

Regards,

Tvrtko

>> +	if (aux_ccs)
>> +		i = emit_render_cache_flush(job, dw, i);
>> +
>>   	dw[i++] = preparser_disable(true);
>>   	if (lacks_render)
>>   		mask_flags = PIPE_CONTROL_3D_ARCH_FLAGS;
>> @@ -372,7 +377,7 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>>   	i = emit_pipe_invalidate(mask_flags, job->ring_ops_flush_tlb, dw, i);
>>   
>>   	/* hsdes: 1809175790 */
>> -	if (has_aux_ccs(xe))
>> +	if (aux_ccs)
>>   		i = emit_aux_table_inv(gt, CCS_AUX_INV, dw, i);
>>   
>>   	dw[i++] = preparser_disable(false);
>> diff --git a/drivers/gpu/drm/xe/xe_ring_ops_types.h b/drivers/gpu/drm/xe/xe_ring_ops_types.h
>> index d7e3e150a9a5..477dc7defd72 100644
>> --- a/drivers/gpu/drm/xe/xe_ring_ops_types.h
>> +++ b/drivers/gpu/drm/xe/xe_ring_ops_types.h
>> @@ -8,7 +8,7 @@
>>   
>>   struct xe_sched_job;
>>   
>> -#define MAX_JOB_SIZE_DW 58
>> +#define MAX_JOB_SIZE_DW 70
>>   #define MAX_JOB_SIZE_BYTES (MAX_JOB_SIZE_DW * 4)
>>   
>>   /**
>> -- 
>> 2.48.0
>>


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

* Re: [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs
  2025-09-01 10:37     ` Tvrtko Ursulin
@ 2025-09-02 17:33       ` Rodrigo Vivi
  2025-09-03  7:50         ` Tvrtko Ursulin
  0 siblings, 1 reply; 24+ messages in thread
From: Rodrigo Vivi @ 2025-09-02 17:33 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev

On Mon, Sep 01, 2025 at 11:37:33AM +0100, Tvrtko Ursulin wrote:
> 
> On 27/08/2025 15:39, Rodrigo Vivi wrote:
> > On Thu, Aug 21, 2025 at 03:14:44PM +0100, Tvrtko Ursulin wrote:
> > > According to i915 before invalidating auxccs we must quiesce the memory
> > > traffic by an extra flush.
> > 
> > Perhaps we should be more specific about what commits exactly are mentioning this?
> > 
> > > 
> > > Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
> > > ---
> > >   drivers/gpu/drm/xe/xe_ring_ops.c       | 7 ++++++-
> > >   drivers/gpu/drm/xe/xe_ring_ops_types.h | 2 +-
> > >   2 files changed, 7 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > index 761740d7769f..f56506ebbeca 100644
> > > --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> > > +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > @@ -358,10 +358,15 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > >   	struct xe_gt *gt = job->q->gt;
> > >   	struct xe_device *xe = gt_to_xe(gt);
> > >   	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
> > > +	const bool aux_ccs = has_aux_ccs(xe);
> > >   	u32 mask_flags = 0;
> > >   	i = emit_copy_timestamp(lrc, dw, i);
> > > +	/* hsdes: 1809175790 */
> > 
> > in i915 I just see a mention to this HSD which is the
> > 972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all engines")
> > 
> > but that is not about emitting the flush, but about fixing the aux
> > table invalidation itself. And that is in sync what written on this
> > HSD, but I don't believe this patch is about that.
> > 
> > So, although this patch itself kind of makes sense, I believe it
> > deserves a better message.
> 
> My logic was this:
> 
> d0d829e56674c (Daniele Ceraolo Spurio 2020-12-09 23:36:18 +0000 244) int
> gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
> d0d829e56674c (Daniele Ceraolo Spurio 2020-12-09 23:36:18 +0000 245) {
> 803efd297e315 (Daniele Ceraolo Spurio 2022-03-01 15:15:40 -0800 246) struct
> intel_engine_cs *engine = rq->engine;
> 803efd297e315 (Daniele Ceraolo Spurio 2022-03-01 15:15:40 -0800 247)
> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 248)    /*
> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 249) * On
> Aux CCS platforms the invalidation of the Aux
> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 250) * table
> requires quiescing memory traffic beforehand
> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 251)     */
> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 252) if
> (mode & EMIT_FLUSH || gen12_needs_ccs_aux_inv(engine)) {
> 
> So commit ad8ebf12217e4 added the flush before invalidate:
> 
> commit ad8ebf12217e451cd19804b1c3e97ad56491c74a
> Author: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Date:   Tue Jul 25 02:19:46 2023 +0200
> 
>     drm/i915/gt: Ensure memory quiesced before invalidation
> 
>     All memory traffic must be quiesced before requesting
>     an aux invalidation on platforms that use Aux CCS.
> 
>     Fixes: 972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all
> engines")
>     Requires: a2a4aa0eef3b ("drm/i915: Add the gen12_needs_ccs_aux_inv
> helper")
>     Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
>     Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
>     Cc: <stable@vger.kernel.org> # v5.8+
>     Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
>     Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
>     Link: https://patchwork.freedesktop.org/patch/msgid/20230725001950.1014671-4-andi.shyti@linux.intel.com
> 
> diff --git a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
> b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
> index 46744f966077..58b448708e75 100644
> --- a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
> +++ b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
> @@ -214,7 +214,11 @@ int gen12_emit_flush_rcs(struct i915_request *rq, u32
> mode)
>  {
>         struct intel_engine_cs *engine = rq->engine;
> 
> -       if (mode & EMIT_FLUSH) {
> +       /*
> +        * On Aux CCS platforms the invalidation of the Aux
> +        * table requires quiescing memory traffic beforehand
> +        */
> +       if (mode & EMIT_FLUSH || gen12_needs_ccs_aux_inv(engine)) {
> 
> And ad8ebf12217e4 referenced 972282c4cf24 as the commit it was fixing, while
> 972282c4cf24 is the one which references hsdes#1809175790. So I decided to
> tag this patch with it as a transitive property.
> 
> If I remove the HSD reference, replace it with a comment as the one in i915,
> and put the above commit chain reasoning to the commit message will that be
> good enough?

Yeap, I believe it makes more sense.

> 
> Regards,
> 
> Tvrtko
> 
> > > +	if (aux_ccs)
> > > +		i = emit_render_cache_flush(job, dw, i);
> > > +
> > >   	dw[i++] = preparser_disable(true);
> > >   	if (lacks_render)
> > >   		mask_flags = PIPE_CONTROL_3D_ARCH_FLAGS;
> > > @@ -372,7 +377,7 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > >   	i = emit_pipe_invalidate(mask_flags, job->ring_ops_flush_tlb, dw, i);
> > >   	/* hsdes: 1809175790 */
> > > -	if (has_aux_ccs(xe))
> > > +	if (aux_ccs)
> > >   		i = emit_aux_table_inv(gt, CCS_AUX_INV, dw, i);
> > >   	dw[i++] = preparser_disable(false);
> > > diff --git a/drivers/gpu/drm/xe/xe_ring_ops_types.h b/drivers/gpu/drm/xe/xe_ring_ops_types.h
> > > index d7e3e150a9a5..477dc7defd72 100644
> > > --- a/drivers/gpu/drm/xe/xe_ring_ops_types.h
> > > +++ b/drivers/gpu/drm/xe/xe_ring_ops_types.h
> > > @@ -8,7 +8,7 @@
> > >   struct xe_sched_job;
> > > -#define MAX_JOB_SIZE_DW 58
> > > +#define MAX_JOB_SIZE_DW 70
> > >   #define MAX_JOB_SIZE_BYTES (MAX_JOB_SIZE_DW * 4)
> > >   /**
> > > -- 
> > > 2.48.0
> > > 
> 

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

* Re: [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs
  2025-09-02 17:33       ` Rodrigo Vivi
@ 2025-09-03  7:50         ` Tvrtko Ursulin
  0 siblings, 0 replies; 24+ messages in thread
From: Tvrtko Ursulin @ 2025-09-03  7:50 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-xe, kernel-dev


On 02/09/2025 18:33, Rodrigo Vivi wrote:
> On Mon, Sep 01, 2025 at 11:37:33AM +0100, Tvrtko Ursulin wrote:
>>
>> On 27/08/2025 15:39, Rodrigo Vivi wrote:
>>> On Thu, Aug 21, 2025 at 03:14:44PM +0100, Tvrtko Ursulin wrote:
>>>> According to i915 before invalidating auxccs we must quiesce the memory
>>>> traffic by an extra flush.
>>>
>>> Perhaps we should be more specific about what commits exactly are mentioning this?
>>>
>>>>
>>>> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
>>>> ---
>>>>    drivers/gpu/drm/xe/xe_ring_ops.c       | 7 ++++++-
>>>>    drivers/gpu/drm/xe/xe_ring_ops_types.h | 2 +-
>>>>    2 files changed, 7 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
>>>> index 761740d7769f..f56506ebbeca 100644
>>>> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
>>>> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
>>>> @@ -358,10 +358,15 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>>>>    	struct xe_gt *gt = job->q->gt;
>>>>    	struct xe_device *xe = gt_to_xe(gt);
>>>>    	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
>>>> +	const bool aux_ccs = has_aux_ccs(xe);
>>>>    	u32 mask_flags = 0;
>>>>    	i = emit_copy_timestamp(lrc, dw, i);
>>>> +	/* hsdes: 1809175790 */
>>>
>>> in i915 I just see a mention to this HSD which is the
>>> 972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all engines")
>>>
>>> but that is not about emitting the flush, but about fixing the aux
>>> table invalidation itself. And that is in sync what written on this
>>> HSD, but I don't believe this patch is about that.
>>>
>>> So, although this patch itself kind of makes sense, I believe it
>>> deserves a better message.
>>
>> My logic was this:
>>
>> d0d829e56674c (Daniele Ceraolo Spurio 2020-12-09 23:36:18 +0000 244) int
>> gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
>> d0d829e56674c (Daniele Ceraolo Spurio 2020-12-09 23:36:18 +0000 245) {
>> 803efd297e315 (Daniele Ceraolo Spurio 2022-03-01 15:15:40 -0800 246) struct
>> intel_engine_cs *engine = rq->engine;
>> 803efd297e315 (Daniele Ceraolo Spurio 2022-03-01 15:15:40 -0800 247)
>> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 248)    /*
>> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 249) * On
>> Aux CCS platforms the invalidation of the Aux
>> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 250) * table
>> requires quiescing memory traffic beforehand
>> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 251)     */
>> ad8ebf12217e4 (Jonathan Cavitt        2023-07-25 02:19:46 +0200 252) if
>> (mode & EMIT_FLUSH || gen12_needs_ccs_aux_inv(engine)) {
>>
>> So commit ad8ebf12217e4 added the flush before invalidate:
>>
>> commit ad8ebf12217e451cd19804b1c3e97ad56491c74a
>> Author: Jonathan Cavitt <jonathan.cavitt@intel.com>
>> Date:   Tue Jul 25 02:19:46 2023 +0200
>>
>>      drm/i915/gt: Ensure memory quiesced before invalidation
>>
>>      All memory traffic must be quiesced before requesting
>>      an aux invalidation on platforms that use Aux CCS.
>>
>>      Fixes: 972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all
>> engines")
>>      Requires: a2a4aa0eef3b ("drm/i915: Add the gen12_needs_ccs_aux_inv
>> helper")
>>      Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
>>      Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
>>      Cc: <stable@vger.kernel.org> # v5.8+
>>      Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
>>      Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
>>      Link: https://patchwork.freedesktop.org/patch/msgid/20230725001950.1014671-4-andi.shyti@linux.intel.com
>>
>> diff --git a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
>> b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
>> index 46744f966077..58b448708e75 100644
>> --- a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
>> +++ b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
>> @@ -214,7 +214,11 @@ int gen12_emit_flush_rcs(struct i915_request *rq, u32
>> mode)
>>   {
>>          struct intel_engine_cs *engine = rq->engine;
>>
>> -       if (mode & EMIT_FLUSH) {
>> +       /*
>> +        * On Aux CCS platforms the invalidation of the Aux
>> +        * table requires quiescing memory traffic beforehand
>> +        */
>> +       if (mode & EMIT_FLUSH || gen12_needs_ccs_aux_inv(engine)) {
>>
>> And ad8ebf12217e4 referenced 972282c4cf24 as the commit it was fixing, while
>> 972282c4cf24 is the one which references hsdes#1809175790. So I decided to
>> tag this patch with it as a transitive property.
>>
>> If I remove the HSD reference, replace it with a comment as the one in i915,
>> and put the above commit chain reasoning to the commit message will that be
>> good enough?
> 
> Yeap, I believe it makes more sense.

Done - I've adjusted it locally but was thinking to not send an updated 
series out just yet. In case there will be more review comments for 
other patches.

Regards,

Tvrtko

>>>> +	if (aux_ccs)
>>>> +		i = emit_render_cache_flush(job, dw, i);
>>>> +
>>>>    	dw[i++] = preparser_disable(true);
>>>>    	if (lacks_render)
>>>>    		mask_flags = PIPE_CONTROL_3D_ARCH_FLAGS;
>>>> @@ -372,7 +377,7 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>>>>    	i = emit_pipe_invalidate(mask_flags, job->ring_ops_flush_tlb, dw, i);
>>>>    	/* hsdes: 1809175790 */
>>>> -	if (has_aux_ccs(xe))
>>>> +	if (aux_ccs)
>>>>    		i = emit_aux_table_inv(gt, CCS_AUX_INV, dw, i);
>>>>    	dw[i++] = preparser_disable(false);
>>>> diff --git a/drivers/gpu/drm/xe/xe_ring_ops_types.h b/drivers/gpu/drm/xe/xe_ring_ops_types.h
>>>> index d7e3e150a9a5..477dc7defd72 100644
>>>> --- a/drivers/gpu/drm/xe/xe_ring_ops_types.h
>>>> +++ b/drivers/gpu/drm/xe/xe_ring_ops_types.h
>>>> @@ -8,7 +8,7 @@
>>>>    struct xe_sched_job;
>>>> -#define MAX_JOB_SIZE_DW 58
>>>> +#define MAX_JOB_SIZE_DW 70
>>>>    #define MAX_JOB_SIZE_BYTES (MAX_JOB_SIZE_DW * 4)
>>>>    /**
>>>> -- 
>>>> 2.48.0
>>>>
>>


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

end of thread, other threads:[~2025-09-03  7:50 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-21 14:14 [PATCH v11 00/13] AuxCCS handling and render compression modifiers Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 01/13] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
2025-08-27 14:10   ` Rodrigo Vivi
2025-08-21 14:14 ` [PATCH v11 02/13] drm/xe/xelp: Quiesce memory traffic before invalidating auxccs Tvrtko Ursulin
2025-08-27 14:39   ` Rodrigo Vivi
2025-09-01 10:37     ` Tvrtko Ursulin
2025-09-02 17:33       ` Rodrigo Vivi
2025-09-03  7:50         ` Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 03/13] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 04/13] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 05/13] drm/xe/xelp: Wait for AuxCCS invalidation to complete Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 06/13] drm/xe: Export xe_emit_aux_table_inv Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 07/13] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 08/13] drm/xe: Flush GGTT writes after populating DPT Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 09/13] drm/xe: Handle DPT in system memory Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 10/13] drm/xe/display: Add support for AuxCCS Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 11/13] drm/xe: Force flush system memory AuxCCS framebuffers before scan out Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 12/13] drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS Tvrtko Ursulin
2025-08-21 14:14 ` [PATCH v11 13/13] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe Tvrtko Ursulin
2025-08-21 14:55 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev13) Patchwork
2025-08-21 14:57 ` ✓ CI.KUnit: success " Patchwork
2025-08-21 16:08 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-22 14:30 ` ✗ Xe.CI.Full: failure " Patchwork
2025-08-23  9:16   ` Tvrtko Ursulin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).