* [CI 01/13] drm/xe: Fix ggtt fb alignment
2025-10-02 14:24 [CI 00/13] CCS uncached mocs 0 test run Tvrtko Ursulin
@ 2025-10-02 14:24 ` Tvrtko Ursulin
0 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-02 14:24 UTC (permalink / raw)
To: intel-xe
Pass the correct alignment from intel_fb_pin_to_ggtt() down to
__xe_pin_fb_vma().
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Reported-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
drivers/gpu/drm/xe/display/xe_fb_pin.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 1fd4a815e784..b18d15cc3c53 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -378,7 +378,7 @@ intel_fb_pin_to_ggtt(const struct drm_framebuffer *fb,
{
*out_flags = 0;
- return __xe_pin_fb_vma(to_intel_framebuffer(fb), view, phys_alignment);
+ return __xe_pin_fb_vma(to_intel_framebuffer(fb), view, alignment);
}
void intel_fb_unpin_vma(struct i915_vma *vma, unsigned long flags)
--
2.48.0
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [CI 00/13] auxccs ci run no stolen
@ 2025-10-22 7:29 Tvrtko Ursulin
2025-10-22 7:29 ` [CI 01/13] drm/xe: Fix ggtt fb alignment Tvrtko Ursulin
` (24 more replies)
0 siblings, 25 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:29 UTC (permalink / raw)
To: intel-xe
...
Tvrtko Ursulin (13):
drm/xe: Fix ggtt fb alignment
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: Do not use stolen memory for DPT on IGFX and AuxCCS
drm/xe/display: Add support for 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 | 177 +++++++++++++----
.../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_lrc.c | 42 +++++
drivers/gpu/drm/xe/xe_ring_ops.c | 178 +++++++++---------
drivers/gpu/drm/xe/xe_ring_ops.h | 3 +
drivers/gpu/drm/xe/xe_ring_ops_types.h | 2 +-
9 files changed, 292 insertions(+), 124 deletions(-)
--
2.48.0
^ permalink raw reply [flat|nested] 27+ messages in thread
* [CI 01/13] drm/xe: Fix ggtt fb alignment
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
@ 2025-10-22 7:29 ` Tvrtko Ursulin
2025-10-22 7:29 ` [CI 02/13] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
` (23 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:29 UTC (permalink / raw)
To: intel-xe
Pass the correct alignment from intel_fb_pin_to_ggtt() down to
__xe_pin_fb_vma().
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Reported-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/xe/display/xe_fb_pin.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 1fd4a815e784..b18d15cc3c53 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -378,7 +378,7 @@ intel_fb_pin_to_ggtt(const struct drm_framebuffer *fb,
{
*out_flags = 0;
- return __xe_pin_fb_vma(to_intel_framebuffer(fb), view, phys_alignment);
+ return __xe_pin_fb_vma(to_intel_framebuffer(fb), view, alignment);
}
void intel_fb_unpin_vma(struct i915_vma *vma, unsigned long flags)
--
2.48.0
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [CI 02/13] drm/xe/xelpg: Flush CCS when flushing caches
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
2025-10-22 7:29 ` [CI 01/13] drm/xe: Fix ggtt fb alignment Tvrtko Ursulin
@ 2025-10-22 7:29 ` Tvrtko Ursulin
2025-10-22 7:29 ` [CI 03/13] drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS Tvrtko Ursulin
` (22 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:29 UTC (permalink / raw)
To: intel-xe
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 ac0c6dcffe15..15fc4010a710 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] 27+ messages in thread
* [CI 03/13] drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
2025-10-22 7:29 ` [CI 01/13] drm/xe: Fix ggtt fb alignment Tvrtko Ursulin
2025-10-22 7:29 ` [CI 02/13] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
@ 2025-10-22 7:29 ` Tvrtko Ursulin
2025-10-22 7:29 ` [CI 04/13] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
` (21 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:29 UTC (permalink / raw)
To: intel-xe
According to i915 commit
ad8ebf12217e ("drm/i915/gt: Ensure memory quiesced before invalidation")
quiescing of the memory traffic is required before invalidating the AuxCCS
tables.
Add an extra pipe control flush to achieve that.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_ring_ops.c | 10 +++++++++-
drivers/gpu/drm/xe/xe_ring_ops_types.h | 2 +-
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 15fc4010a710..f384c9968859 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -363,12 +363,20 @@ 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;
*head = lrc->ring.tail;
i = emit_copy_timestamp(lrc, dw, i);
+ /*
+ * On AuxCCS platforms the invalidation of the Aux table requires
+ * quiescing the memory traffic beforehand.
+ */
+ 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;
@@ -379,7 +387,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] 27+ messages in thread
* [CI 04/13] drm/xe/xelp: Support auxccs invalidation on blitter
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (2 preceding siblings ...)
2025-10-22 7:29 ` [CI 03/13] drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS Tvrtko Ursulin
@ 2025-10-22 7:29 ` Tvrtko Ursulin
2025-10-22 7:29 ` [CI 05/13] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
` (20 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:29 UTC (permalink / raw)
To: intel-xe
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 | 118 ++++++++++-----------------
2 files changed, 46 insertions(+), 73 deletions(-)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index 3545e0be06da..f3bc2abf678c 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -94,6 +94,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 f384c9968859..87e467972070 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -248,46 +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 *head, u32 seqno)
-{
- u32 dw[MAX_JOB_SIZE_DW], i = 0;
- u32 ppgtt_flag = get_ppgtt_flag(job);
- struct xe_gt *gt = job->q->gt;
-
- *head = lrc->ring.tail;
-
- i = emit_copy_timestamp(lrc, dw, i);
-
- if (job->ring_ops_flush_tlb) {
- 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)
{
/*
@@ -302,40 +262,52 @@ 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 *head, u32 seqno)
+static void __emit_job_gen12_xcs(struct xe_sched_job *job, struct xe_lrc *lrc,
+ u64 batch_addr, u32 *head, u32 seqno)
{
- u32 dw[MAX_JOB_SIZE_DW], i = 0;
- u32 ppgtt_flag = get_ppgtt_flag(job);
+ const unsigned int class = job->q->class;
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 bool aux_ccs = has_aux_ccs(gt_to_xe(gt)) &&
+ (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;
+ u32 dw[MAX_JOB_SIZE_DW], i = 0;
*head = lrc->ring.tail;
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);
+ i = emit_bb_start(batch_addr, get_ppgtt_flag(job), dw, i);
if (job->user_fence.used) {
i = emit_flush_dw(dw, i);
@@ -455,10 +427,10 @@ 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,
- &job->ptrs[0].head,
- xe_sched_job_lrc_seqno(job));
+ __emit_job_gen12_xcs(job, job->q->lrc[0],
+ job->ptrs[0].batch_addr,
+ &job->ptrs[0].head,
+ xe_sched_job_lrc_seqno(job));
}
static void emit_job_gen12_copy(struct xe_sched_job *job)
@@ -473,10 +445,10 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
}
for (i = 0; i < job->q->width; ++i)
- __emit_job_gen12_simple(job, job->q->lrc[i],
- job->ptrs[i].batch_addr,
- &job->ptrs[i].head,
- xe_sched_job_lrc_seqno(job));
+ __emit_job_gen12_xcs(job, job->q->lrc[i],
+ job->ptrs[i].batch_addr,
+ &job->ptrs[0].head,
+ xe_sched_job_lrc_seqno(job));
}
static void emit_job_gen12_video(struct xe_sched_job *job)
@@ -485,10 +457,10 @@ 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,
- &job->ptrs[i].head,
- xe_sched_job_lrc_seqno(job));
+ __emit_job_gen12_xcs(job, job->q->lrc[i],
+ job->ptrs[i].batch_addr,
+ &job->ptrs[0].head,
+ 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] 27+ messages in thread
* [CI 05/13] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (3 preceding siblings ...)
2025-10-22 7:29 ` [CI 04/13] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
@ 2025-10-22 7:29 ` Tvrtko Ursulin
2025-10-22 7:29 ` [CI 06/13] drm/xe/xelp: Wait for AuxCCS invalidation to complete Tvrtko Ursulin
` (19 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:29 UTC (permalink / raw)
To: intel-xe
Emit MI_FLUSH_DW_CCS when invalidating on auxccs platforms.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.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 87e467972070..d226d3228199 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -272,6 +272,8 @@ 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;
u32 dw[MAX_JOB_SIZE_DW], i = 0;
*head = lrc->ring.tail;
@@ -281,9 +283,8 @@ static void __emit_job_gen12_xcs(struct xe_sched_job *job, struct xe_lrc *lrc,
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] 27+ messages in thread
* [CI 06/13] drm/xe/xelp: Wait for AuxCCS invalidation to complete
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (4 preceding siblings ...)
2025-10-22 7:29 ` [CI 05/13] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
@ 2025-10-22 7:29 ` Tvrtko Ursulin
2025-10-22 7:29 ` [CI 07/13] drm/xe: Export xe_emit_aux_table_inv Tvrtko Ursulin
` (18 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:29 UTC (permalink / raw)
To: intel-xe
On AuxCCS platforms we need to wait for AuxCCS invalidations to complete.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.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 d226d3228199..071c45abda2a 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] 27+ messages in thread
* [CI 07/13] drm/xe: Export xe_emit_aux_table_inv
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (5 preceding siblings ...)
2025-10-22 7:29 ` [CI 06/13] drm/xe/xelp: Wait for AuxCCS invalidation to complete Tvrtko Ursulin
@ 2025-10-22 7:29 ` Tvrtko Ursulin
2025-10-22 7:30 ` [CI 08/13] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
` (17 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:29 UTC (permalink / raw)
To: intel-xe
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 071c45abda2a..3cbd192df0c4 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),
@@ -368,7 +383,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] 27+ messages in thread
* [CI 08/13] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (6 preceding siblings ...)
2025-10-22 7:29 ` [CI 07/13] drm/xe: Export xe_emit_aux_table_inv Tvrtko Ursulin
@ 2025-10-22 7:30 ` Tvrtko Ursulin
2025-10-22 7:30 ` [CI 09/13] drm/xe: Flush GGTT writes after populating DPT Tvrtko Ursulin
` (16 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:30 UTC (permalink / raw)
To: intel-xe
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 | 42 +++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index b5083c99dd50..7543df0160dd 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -27,6 +27,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"
@@ -74,6 +75,21 @@ lrc_to_xe(struct xe_lrc *lrc)
return gt_to_xe(lrc->fence_ctx.gt);
}
+static bool
+xe_engine_supports_auxccs(struct xe_device *xe, enum xe_engine_class class)
+{
+ 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;
+}
+
static bool
gt_engine_needs_indirect_ctx(struct xe_gt *gt, enum xe_engine_class class)
{
@@ -88,6 +104,10 @@ gt_engine_needs_indirect_ctx(struct xe_gt *gt, enum xe_engine_class class)
class, NULL))
return true;
+ /* For AuxCCS invalidation */
+ if (xe_engine_supports_auxccs(xe, class))
+ return true;
+
return false;
}
@@ -1188,6 +1208,26 @@ 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 (!xe_engine_supports_auxccs(xe, class))
+ 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);
@@ -1320,9 +1360,11 @@ setup_indirect_ctx(struct xe_lrc *lrc, struct xe_hw_engine *hwe)
{
static const struct bo_setup rcs_funcs[] = {
{ .setup = setup_timestamp_wa },
+ { .setup = setup_invalidate_auxccs_wa },
{ .setup = setup_configfs_mid_ctx_restore_bb },
};
static const struct bo_setup xcs_funcs[] = {
+ { .setup = setup_invalidate_auxccs_wa },
{ .setup = setup_configfs_mid_ctx_restore_bb },
};
struct bo_setup_state state = {
--
2.48.0
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [CI 09/13] drm/xe: Flush GGTT writes after populating DPT
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (7 preceding siblings ...)
2025-10-22 7:30 ` [CI 08/13] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
@ 2025-10-22 7:30 ` Tvrtko Ursulin
2025-10-22 7:30 ` [CI 10/13] drm/xe: Handle DPT in system memory Tvrtko Ursulin
` (15 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:30 UTC (permalink / raw)
To: intel-xe
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 b18d15cc3c53..eb21eeae9d17 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(>->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] 27+ messages in thread
* [CI 10/13] drm/xe: Handle DPT in system memory
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (8 preceding siblings ...)
2025-10-22 7:30 ` [CI 09/13] drm/xe: Flush GGTT writes after populating DPT Tvrtko Ursulin
@ 2025-10-22 7:30 ` Tvrtko Ursulin
2025-10-22 7:30 ` [CI 11/13] drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS Tvrtko Ursulin
` (14 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:30 UTC (permalink / raw)
To: intel-xe
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 eb21eeae9d17..af691eee398a 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] 27+ messages in thread
* [CI 11/13] drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (9 preceding siblings ...)
2025-10-22 7:30 ` [CI 10/13] drm/xe: Handle DPT in system memory Tvrtko Ursulin
@ 2025-10-22 7:30 ` Tvrtko Ursulin
2025-10-22 7:30 ` [CI 12/13] drm/xe/display: Add support for AuxCCS Tvrtko Ursulin
` (13 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:30 UTC (permalink / raw)
To: intel-xe
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 af691eee398a..8217abc3a20d 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -122,6 +122,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,
@@ -131,7 +145,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)
@@ -152,7 +166,7 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
XE_BO_FLAG_GGTT |
XE_BO_FLAG_PAGETABLE,
alignment, false);
- else
+ else if (try_dpt_stolen(fb, bo))
dpt = xe_bo_create_pin_map_at_novm(xe, tile0,
dpt_size, ~0ull,
ttm_bo_type_kernel,
--
2.48.0
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [CI 12/13] drm/xe/display: Add support for AuxCCS
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (10 preceding siblings ...)
2025-10-22 7:30 ` [CI 11/13] drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS Tvrtko Ursulin
@ 2025-10-22 7:30 ` Tvrtko Ursulin
2025-10-22 7:30 ` [CI 13/13] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe Tvrtko Ursulin
` (12 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:30 UTC (permalink / raw)
To: intel-xe
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 8217abc3a20d..4966a001271b 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)
@@ -195,17 +256,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] 27+ messages in thread
* [CI 13/13] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (11 preceding siblings ...)
2025-10-22 7:30 ` [CI 12/13] drm/xe/display: Add support for AuxCCS Tvrtko Ursulin
@ 2025-10-22 7:30 ` Tvrtko Ursulin
2025-10-22 7:36 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen Patchwork
` (11 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:30 UTC (permalink / raw)
To: intel-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>
---
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 0319174adf95..d3ccd3c837e1 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -2929,12 +2929,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_AUX_CCS(display))
- 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] 27+ messages in thread
* ✗ CI.checkpatch: warning for auxccs ci run no stolen
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (12 preceding siblings ...)
2025-10-22 7:30 ` [CI 13/13] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe Tvrtko Ursulin
@ 2025-10-22 7:36 ` Patchwork
2025-10-22 7:37 ` ✓ CI.KUnit: success " Patchwork
` (10 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-22 7:36 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: auxccs ci run no stolen
URL : https://patchwork.freedesktop.org/series/156302/
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
8677d3b99d5fd579c143b22605d99121e2482e8a
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit c96cebd6a04b707efc8ee0f549994dcf28a76274
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date: Wed Oct 22 08:30:05 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 fe52d75436e2fa1aa5d91d2c8de58fde54aa78d8 drm-intel
98f735587a19 drm/xe: Fix ggtt fb alignment
-:13: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report
#13:
Reported-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
bdd6b5483af2 drm/xe/xelpg: Flush CCS when flushing caches
dc48e81088b2 drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
c4618f72d6b3 drm/xe/xelp: Support auxccs invalidation on blitter
a2a117d47c36 drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
7ed5e6c70f91 drm/xe/xelp: Wait for AuxCCS invalidation to complete
870826173eb5 drm/xe: Export xe_emit_aux_table_inv
48213f017d3a drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
34b790dbaeb9 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
0a26b42c94dd drm/xe: Handle DPT in system memory
3a6b06911325 drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS
34eafff6bce7 drm/xe/display: Add support for AuxCCS
c96cebd6a04b 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] 27+ messages in thread
* ✓ CI.KUnit: success for auxccs ci run no stolen
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (13 preceding siblings ...)
2025-10-22 7:36 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen Patchwork
@ 2025-10-22 7:37 ` Patchwork
2025-10-22 8:47 ` ✓ Xe.CI.BAT: " Patchwork
` (9 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-22 7:37 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: auxccs ci run no stolen
URL : https://patchwork.freedesktop.org/series/156302/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:36:20] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:36:24] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:36:54] Starting KUnit Kernel (1/1)...
[07:36:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:36:54] ================== guc_buf (11 subtests) ===================
[07:36:54] [PASSED] test_smallest
[07:36:54] [PASSED] test_largest
[07:36:54] [PASSED] test_granular
[07:36:54] [PASSED] test_unique
[07:36:54] [PASSED] test_overlap
[07:36:54] [PASSED] test_reusable
[07:36:54] [PASSED] test_too_big
[07:36:54] [PASSED] test_flush
[07:36:54] [PASSED] test_lookup
[07:36:54] [PASSED] test_data
[07:36:54] [PASSED] test_class
[07:36:54] ===================== [PASSED] guc_buf =====================
[07:36:54] =================== guc_dbm (7 subtests) ===================
[07:36:54] [PASSED] test_empty
[07:36:54] [PASSED] test_default
[07:36:54] ======================== test_size ========================
[07:36:54] [PASSED] 4
[07:36:54] [PASSED] 8
[07:36:54] [PASSED] 32
[07:36:54] [PASSED] 256
[07:36:54] ==================== [PASSED] test_size ====================
[07:36:54] ======================= test_reuse ========================
[07:36:54] [PASSED] 4
[07:36:54] [PASSED] 8
[07:36:54] [PASSED] 32
[07:36:54] [PASSED] 256
[07:36:54] =================== [PASSED] test_reuse ====================
[07:36:54] =================== test_range_overlap ====================
[07:36:54] [PASSED] 4
[07:36:54] [PASSED] 8
[07:36:54] [PASSED] 32
[07:36:54] [PASSED] 256
[07:36:54] =============== [PASSED] test_range_overlap ================
[07:36:54] =================== test_range_compact ====================
[07:36:54] [PASSED] 4
[07:36:54] [PASSED] 8
[07:36:54] [PASSED] 32
[07:36:54] [PASSED] 256
[07:36:54] =============== [PASSED] test_range_compact ================
[07:36:54] ==================== test_range_spare =====================
[07:36:54] [PASSED] 4
[07:36:54] [PASSED] 8
[07:36:54] [PASSED] 32
[07:36:54] [PASSED] 256
[07:36:54] ================ [PASSED] test_range_spare =================
[07:36:54] ===================== [PASSED] guc_dbm =====================
[07:36:54] =================== guc_idm (6 subtests) ===================
[07:36:54] [PASSED] bad_init
[07:36:54] [PASSED] no_init
[07:36:54] [PASSED] init_fini
[07:36:54] [PASSED] check_used
[07:36:54] [PASSED] check_quota
[07:36:54] [PASSED] check_all
[07:36:54] ===================== [PASSED] guc_idm =====================
[07:36:54] ================== no_relay (3 subtests) ===================
[07:36:54] [PASSED] xe_drops_guc2pf_if_not_ready
[07:36:54] [PASSED] xe_drops_guc2vf_if_not_ready
[07:36:54] [PASSED] xe_rejects_send_if_not_ready
[07:36:54] ==================== [PASSED] no_relay =====================
[07:36:54] ================== pf_relay (14 subtests) ==================
[07:36:54] [PASSED] pf_rejects_guc2pf_too_short
[07:36:54] [PASSED] pf_rejects_guc2pf_too_long
[07:36:54] [PASSED] pf_rejects_guc2pf_no_payload
[07:36:54] [PASSED] pf_fails_no_payload
[07:36:54] [PASSED] pf_fails_bad_origin
[07:36:54] [PASSED] pf_fails_bad_type
[07:36:54] [PASSED] pf_txn_reports_error
[07:36:54] [PASSED] pf_txn_sends_pf2guc
[07:36:54] [PASSED] pf_sends_pf2guc
[07:36:54] [SKIPPED] pf_loopback_nop
[07:36:54] [SKIPPED] pf_loopback_echo
[07:36:54] [SKIPPED] pf_loopback_fail
[07:36:54] [SKIPPED] pf_loopback_busy
[07:36:54] [SKIPPED] pf_loopback_retry
[07:36:54] ==================== [PASSED] pf_relay =====================
[07:36:54] ================== vf_relay (3 subtests) ===================
[07:36:54] [PASSED] vf_rejects_guc2vf_too_short
[07:36:54] [PASSED] vf_rejects_guc2vf_too_long
[07:36:54] [PASSED] vf_rejects_guc2vf_no_payload
[07:36:54] ==================== [PASSED] vf_relay =====================
[07:36:54] ===================== lmtt (1 subtest) =====================
[07:36:54] ======================== test_ops =========================
[07:36:54] [PASSED] 2-level
[07:36:54] [PASSED] multi-level
[07:36:54] ==================== [PASSED] test_ops =====================
[07:36:54] ====================== [PASSED] lmtt =======================
[07:36:54] ================= pf_service (11 subtests) =================
[07:36:54] [PASSED] pf_negotiate_any
[07:36:54] [PASSED] pf_negotiate_base_match
[07:36:54] [PASSED] pf_negotiate_base_newer
[07:36:54] [PASSED] pf_negotiate_base_next
[07:36:54] [SKIPPED] pf_negotiate_base_older
[07:36:54] [PASSED] pf_negotiate_base_prev
[07:36:54] [PASSED] pf_negotiate_latest_match
[07:36:54] [PASSED] pf_negotiate_latest_newer
[07:36:54] [PASSED] pf_negotiate_latest_next
[07:36:54] [SKIPPED] pf_negotiate_latest_older
[07:36:54] [SKIPPED] pf_negotiate_latest_prev
[07:36:54] =================== [PASSED] pf_service ====================
[07:36:54] ================= xe_guc_g2g (2 subtests) ==================
[07:36:54] ============== xe_live_guc_g2g_kunit_default ==============
[07:36:54] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[07:36:54] ============== xe_live_guc_g2g_kunit_allmem ===============
[07:36:54] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[07:36:54] =================== [SKIPPED] xe_guc_g2g ===================
[07:36:54] =================== xe_mocs (2 subtests) ===================
[07:36:54] ================ xe_live_mocs_kernel_kunit ================
[07:36:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:36:54] ================ xe_live_mocs_reset_kunit =================
[07:36:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:36:54] ==================== [SKIPPED] xe_mocs =====================
[07:36:54] ================= xe_migrate (2 subtests) ==================
[07:36:54] ================= xe_migrate_sanity_kunit =================
[07:36:54] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:36:54] ================== xe_validate_ccs_kunit ==================
[07:36:54] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:36:54] =================== [SKIPPED] xe_migrate ===================
[07:36:54] ================== xe_dma_buf (1 subtest) ==================
[07:36:54] ==================== xe_dma_buf_kunit =====================
[07:36:54] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:36:54] =================== [SKIPPED] xe_dma_buf ===================
[07:36:54] ================= xe_bo_shrink (1 subtest) =================
[07:36:54] =================== xe_bo_shrink_kunit ====================
[07:36:54] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:36:54] ================== [SKIPPED] xe_bo_shrink ==================
[07:36:54] ==================== xe_bo (2 subtests) ====================
[07:36:54] ================== xe_ccs_migrate_kunit ===================
[07:36:54] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:36:54] ==================== xe_bo_evict_kunit ====================
[07:36:54] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:36:54] ===================== [SKIPPED] xe_bo ======================
[07:36:54] ==================== args (11 subtests) ====================
[07:36:54] [PASSED] count_args_test
[07:36:54] [PASSED] call_args_example
[07:36:54] [PASSED] call_args_test
[07:36:54] [PASSED] drop_first_arg_example
[07:36:54] [PASSED] drop_first_arg_test
[07:36:54] [PASSED] first_arg_example
[07:36:54] [PASSED] first_arg_test
[07:36:54] [PASSED] last_arg_example
[07:36:54] [PASSED] last_arg_test
[07:36:54] [PASSED] pick_arg_example
[07:36:54] [PASSED] sep_comma_example
[07:36:54] ====================== [PASSED] args =======================
[07:36:54] =================== xe_pci (3 subtests) ====================
[07:36:54] ==================== check_graphics_ip ====================
[07:36:54] [PASSED] 12.00 Xe_LP
[07:36:54] [PASSED] 12.10 Xe_LP+
[07:36:54] [PASSED] 12.55 Xe_HPG
[07:36:54] [PASSED] 12.60 Xe_HPC
[07:36:54] [PASSED] 12.70 Xe_LPG
[07:36:54] [PASSED] 12.71 Xe_LPG
[07:36:54] [PASSED] 12.74 Xe_LPG+
[07:36:54] [PASSED] 20.01 Xe2_HPG
[07:36:54] [PASSED] 20.02 Xe2_HPG
[07:36:54] [PASSED] 20.04 Xe2_LPG
[07:36:54] [PASSED] 30.00 Xe3_LPG
[07:36:54] [PASSED] 30.01 Xe3_LPG
[07:36:54] [PASSED] 30.03 Xe3_LPG
[07:36:54] [PASSED] 30.04 Xe3_LPG
[07:36:54] [PASSED] 30.05 Xe3_LPG
[07:36:54] [PASSED] 35.11 Xe3p_XPC
[07:36:54] ================ [PASSED] check_graphics_ip ================
[07:36:54] ===================== check_media_ip ======================
[07:36:54] [PASSED] 12.00 Xe_M
[07:36:54] [PASSED] 12.55 Xe_HPM
[07:36:54] [PASSED] 13.00 Xe_LPM+
[07:36:54] [PASSED] 13.01 Xe2_HPM
[07:36:54] [PASSED] 20.00 Xe2_LPM
[07:36:54] [PASSED] 30.00 Xe3_LPM
[07:36:54] [PASSED] 30.02 Xe3_LPM
[07:36:54] [PASSED] 35.00 Xe3p_LPM
[07:36:54] [PASSED] 35.03 Xe3p_HPM
[07:36:54] ================= [PASSED] check_media_ip ==================
[07:36:54] ================= check_platform_gt_count =================
[07:36:54] [PASSED] 0x9A60 (TIGERLAKE)
[07:36:54] [PASSED] 0x9A68 (TIGERLAKE)
[07:36:54] [PASSED] 0x9A70 (TIGERLAKE)
[07:36:54] [PASSED] 0x9A40 (TIGERLAKE)
[07:36:54] [PASSED] 0x9A49 (TIGERLAKE)
[07:36:54] [PASSED] 0x9A59 (TIGERLAKE)
[07:36:54] [PASSED] 0x9A78 (TIGERLAKE)
[07:36:54] [PASSED] 0x9AC0 (TIGERLAKE)
[07:36:54] [PASSED] 0x9AC9 (TIGERLAKE)
[07:36:54] [PASSED] 0x9AD9 (TIGERLAKE)
[07:36:54] [PASSED] 0x9AF8 (TIGERLAKE)
[07:36:54] [PASSED] 0x4C80 (ROCKETLAKE)
[07:36:54] [PASSED] 0x4C8A (ROCKETLAKE)
[07:36:54] [PASSED] 0x4C8B (ROCKETLAKE)
[07:36:54] [PASSED] 0x4C8C (ROCKETLAKE)
[07:36:54] [PASSED] 0x4C90 (ROCKETLAKE)
[07:36:54] [PASSED] 0x4C9A (ROCKETLAKE)
[07:36:54] [PASSED] 0x4680 (ALDERLAKE_S)
[07:36:54] [PASSED] 0x4682 (ALDERLAKE_S)
[07:36:54] [PASSED] 0x4688 (ALDERLAKE_S)
[07:36:54] [PASSED] 0x468A (ALDERLAKE_S)
[07:36:54] [PASSED] 0x468B (ALDERLAKE_S)
[07:36:54] [PASSED] 0x4690 (ALDERLAKE_S)
[07:36:54] [PASSED] 0x4692 (ALDERLAKE_S)
[07:36:54] [PASSED] 0x4693 (ALDERLAKE_S)
[07:36:54] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46AA (ALDERLAKE_P)
[07:36:54] [PASSED] 0x462A (ALDERLAKE_P)
[07:36:54] [PASSED] 0x4626 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x4628 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46B0 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:36:54] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:36:54] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:36:54] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:36:54] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:36:54] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:36:54] [PASSED] 0xA721 (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA720 (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:36:54] [PASSED] 0xA780 (ALDERLAKE_S)
[07:36:54] [PASSED] 0xA781 (ALDERLAKE_S)
[07:36:54] [PASSED] 0xA782 (ALDERLAKE_S)
[07:36:54] [PASSED] 0xA783 (ALDERLAKE_S)
[07:36:54] [PASSED] 0xA788 (ALDERLAKE_S)
[07:36:54] [PASSED] 0xA789 (ALDERLAKE_S)
[07:36:54] [PASSED] 0xA78A (ALDERLAKE_S)
[07:36:54] [PASSED] 0xA78B (ALDERLAKE_S)
[07:36:54] [PASSED] 0x4905 (DG1)
[07:36:54] [PASSED] 0x4906 (DG1)
[07:36:54] [PASSED] 0x4907 (DG1)
[07:36:54] [PASSED] 0x4908 (DG1)
[07:36:54] [PASSED] 0x4909 (DG1)
[07:36:54] [PASSED] 0x56C0 (DG2)
[07:36:54] [PASSED] 0x56C2 (DG2)
[07:36:54] [PASSED] 0x56C1 (DG2)
[07:36:54] [PASSED] 0x7D51 (METEORLAKE)
[07:36:54] [PASSED] 0x7DD1 (METEORLAKE)
[07:36:54] [PASSED] 0x7D41 (METEORLAKE)
[07:36:54] [PASSED] 0x7D67 (METEORLAKE)
[07:36:54] [PASSED] 0xB640 (METEORLAKE)
[07:36:54] [PASSED] 0x56A0 (DG2)
[07:36:54] [PASSED] 0x56A1 (DG2)
[07:36:54] [PASSED] 0x56A2 (DG2)
[07:36:54] [PASSED] 0x56BE (DG2)
[07:36:54] [PASSED] 0x56BF (DG2)
[07:36:54] [PASSED] 0x5690 (DG2)
[07:36:54] [PASSED] 0x5691 (DG2)
[07:36:54] [PASSED] 0x5692 (DG2)
[07:36:54] [PASSED] 0x56A5 (DG2)
[07:36:54] [PASSED] 0x56A6 (DG2)
[07:36:54] [PASSED] 0x56B0 (DG2)
[07:36:54] [PASSED] 0x56B1 (DG2)
[07:36:54] [PASSED] 0x56BA (DG2)
[07:36:54] [PASSED] 0x56BB (DG2)
[07:36:54] [PASSED] 0x56BC (DG2)
[07:36:54] [PASSED] 0x56BD (DG2)
[07:36:54] [PASSED] 0x5693 (DG2)
[07:36:54] [PASSED] 0x5694 (DG2)
[07:36:54] [PASSED] 0x5695 (DG2)
[07:36:54] [PASSED] 0x56A3 (DG2)
[07:36:54] [PASSED] 0x56A4 (DG2)
[07:36:54] [PASSED] 0x56B2 (DG2)
[07:36:54] [PASSED] 0x56B3 (DG2)
[07:36:54] [PASSED] 0x5696 (DG2)
[07:36:54] [PASSED] 0x5697 (DG2)
[07:36:54] [PASSED] 0xB69 (PVC)
[07:36:54] [PASSED] 0xB6E (PVC)
[07:36:54] [PASSED] 0xBD4 (PVC)
[07:36:54] [PASSED] 0xBD5 (PVC)
[07:36:54] [PASSED] 0xBD6 (PVC)
[07:36:54] [PASSED] 0xBD7 (PVC)
[07:36:54] [PASSED] 0xBD8 (PVC)
[07:36:54] [PASSED] 0xBD9 (PVC)
[07:36:54] [PASSED] 0xBDA (PVC)
[07:36:54] [PASSED] 0xBDB (PVC)
[07:36:54] [PASSED] 0xBE0 (PVC)
[07:36:54] [PASSED] 0xBE1 (PVC)
[07:36:54] [PASSED] 0xBE5 (PVC)
[07:36:54] [PASSED] 0x7D40 (METEORLAKE)
[07:36:54] [PASSED] 0x7D45 (METEORLAKE)
[07:36:54] [PASSED] 0x7D55 (METEORLAKE)
[07:36:54] [PASSED] 0x7D60 (METEORLAKE)
[07:36:54] [PASSED] 0x7DD5 (METEORLAKE)
[07:36:54] [PASSED] 0x6420 (LUNARLAKE)
[07:36:54] [PASSED] 0x64A0 (LUNARLAKE)
[07:36:54] [PASSED] 0x64B0 (LUNARLAKE)
[07:36:54] [PASSED] 0xE202 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE209 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE20B (BATTLEMAGE)
[07:36:54] [PASSED] 0xE20C (BATTLEMAGE)
[07:36:54] [PASSED] 0xE20D (BATTLEMAGE)
[07:36:54] [PASSED] 0xE210 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE211 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE212 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE216 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE220 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE221 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE222 (BATTLEMAGE)
[07:36:54] [PASSED] 0xE223 (BATTLEMAGE)
[07:36:54] [PASSED] 0xB080 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB081 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB082 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB083 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB084 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB085 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB086 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB087 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB08F (PANTHERLAKE)
[07:36:54] [PASSED] 0xB090 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:36:54] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:36:54] [PASSED] 0xFD80 (PANTHERLAKE)
[07:36:54] [PASSED] 0xFD81 (PANTHERLAKE)
[07:36:54] [PASSED] 0xD740 (NOVALAKE_S)
[07:36:54] [PASSED] 0xD741 (NOVALAKE_S)
[07:36:54] [PASSED] 0xD742 (NOVALAKE_S)
[07:36:54] [PASSED] 0xD743 (NOVALAKE_S)
[07:36:54] [PASSED] 0xD744 (NOVALAKE_S)
[07:36:54] [PASSED] 0xD745 (NOVALAKE_S)
[07:36:54] ============= [PASSED] check_platform_gt_count =============
[07:36:54] ===================== [PASSED] xe_pci ======================
[07:36:54] =================== xe_rtp (2 subtests) ====================
[07:36:54] =============== xe_rtp_process_to_sr_tests ================
[07:36:54] [PASSED] coalesce-same-reg
[07:36:54] [PASSED] no-match-no-add
[07:36:54] [PASSED] match-or
[07:36:54] [PASSED] match-or-xfail
[07:36:54] [PASSED] no-match-no-add-multiple-rules
[07:36:54] [PASSED] two-regs-two-entries
[07:36:54] [PASSED] clr-one-set-other
[07:36:54] [PASSED] set-field
[07:36:54] [PASSED] conflict-duplicate
[07:36:54] [PASSED] conflict-not-disjoint
[07:36:54] [PASSED] conflict-reg-type
[07:36:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:36:54] ================== xe_rtp_process_tests ===================
[07:36:54] [PASSED] active1
[07:36:54] [PASSED] active2
[07:36:54] [PASSED] active-inactive
[07:36:54] [PASSED] inactive-active
[07:36:54] [PASSED] inactive-1st_or_active-inactive
[07:36:54] [PASSED] inactive-2nd_or_active-inactive
[07:36:54] [PASSED] inactive-last_or_active-inactive
[07:36:54] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[07:36:54] ============== [PASSED] xe_rtp_process_tests ===============
[07:36:54] ===================== [PASSED] xe_rtp ======================
[07:36:54] ==================== xe_wa (1 subtest) =====================
[07:36:54] ======================== xe_wa_gt =========================
[07:36:54] [PASSED] TIGERLAKE B0
[07:36:54] [PASSED] DG1 A0
[07:36:54] [PASSED] DG1 B0
[07:36:54] [PASSED] ALDERLAKE_S A0
[07:36:54] [PASSED] ALDERLAKE_S B0
[07:36:54] [PASSED] ALDERLAKE_S C0
[07:36:54] [PASSED] ALDERLAKE_S D0
[07:36:54] [PASSED] ALDERLAKE_P A0
[07:36:54] [PASSED] ALDERLAKE_P B0
[07:36:54] [PASSED] ALDERLAKE_P C0
[07:36:54] [PASSED] ALDERLAKE_S RPLS D0
[07:36:54] [PASSED] ALDERLAKE_P RPLU E0
[07:36:54] [PASSED] DG2 G10 C0
[07:36:54] [PASSED] DG2 G11 B1
[07:36:54] [PASSED] DG2 G12 A1
[07:36:54] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:36:54] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:36:54] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[07:36:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[07:36:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[07:36:54] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[07:36:54] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[07:36:54] ==================== [PASSED] xe_wa_gt =====================
[07:36:54] ====================== [PASSED] xe_wa ======================
[07:36:54] ============================================================
[07:36:54] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[07:36:54] Elapsed time: 34.586s total, 4.195s configuring, 30.025s building, 0.326s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:36:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:36:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:37:21] Starting KUnit Kernel (1/1)...
[07:37:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:37:21] ============ drm_test_pick_cmdline (2 subtests) ============
[07:37:21] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[07:37:21] =============== drm_test_pick_cmdline_named ===============
[07:37:21] [PASSED] NTSC
[07:37:21] [PASSED] NTSC-J
[07:37:21] [PASSED] PAL
[07:37:21] [PASSED] PAL-M
[07:37:21] =========== [PASSED] drm_test_pick_cmdline_named ===========
[07:37:21] ============== [PASSED] drm_test_pick_cmdline ==============
[07:37:21] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[07:37:21] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[07:37:21] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[07:37:21] =========== drm_validate_clone_mode (2 subtests) ===========
[07:37:21] ============== drm_test_check_in_clone_mode ===============
[07:37:21] [PASSED] in_clone_mode
[07:37:21] [PASSED] not_in_clone_mode
[07:37:21] ========== [PASSED] drm_test_check_in_clone_mode ===========
[07:37:21] =============== drm_test_check_valid_clones ===============
[07:37:21] [PASSED] not_in_clone_mode
[07:37:21] [PASSED] valid_clone
[07:37:21] [PASSED] invalid_clone
[07:37:21] =========== [PASSED] drm_test_check_valid_clones ===========
[07:37:21] ============= [PASSED] drm_validate_clone_mode =============
[07:37:21] ============= drm_validate_modeset (1 subtest) =============
[07:37:21] [PASSED] drm_test_check_connector_changed_modeset
[07:37:21] ============== [PASSED] drm_validate_modeset ===============
[07:37:21] ====== drm_test_bridge_get_current_state (2 subtests) ======
[07:37:21] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[07:37:21] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[07:37:21] ======== [PASSED] drm_test_bridge_get_current_state ========
[07:37:21] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[07:37:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[07:37:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[07:37:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[07:37:21] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[07:37:21] ============== drm_bridge_alloc (2 subtests) ===============
[07:37:21] [PASSED] drm_test_drm_bridge_alloc_basic
[07:37:21] [PASSED] drm_test_drm_bridge_alloc_get_put
[07:37:21] ================ [PASSED] drm_bridge_alloc =================
[07:37:21] ================== drm_buddy (8 subtests) ==================
[07:37:21] [PASSED] drm_test_buddy_alloc_limit
[07:37:21] [PASSED] drm_test_buddy_alloc_optimistic
[07:37:21] [PASSED] drm_test_buddy_alloc_pessimistic
[07:37:21] [PASSED] drm_test_buddy_alloc_pathological
[07:37:21] [PASSED] drm_test_buddy_alloc_contiguous
[07:37:21] [PASSED] drm_test_buddy_alloc_clear
[07:37:21] [PASSED] drm_test_buddy_alloc_range_bias
[07:37:21] [PASSED] drm_test_buddy_fragmentation_performance
[07:37:21] ==================== [PASSED] drm_buddy ====================
[07:37:21] ============= drm_cmdline_parser (40 subtests) =============
[07:37:21] [PASSED] drm_test_cmdline_force_d_only
[07:37:21] [PASSED] drm_test_cmdline_force_D_only_dvi
[07:37:21] [PASSED] drm_test_cmdline_force_D_only_hdmi
[07:37:21] [PASSED] drm_test_cmdline_force_D_only_not_digital
[07:37:21] [PASSED] drm_test_cmdline_force_e_only
[07:37:21] [PASSED] drm_test_cmdline_res
[07:37:21] [PASSED] drm_test_cmdline_res_vesa
[07:37:21] [PASSED] drm_test_cmdline_res_vesa_rblank
[07:37:21] [PASSED] drm_test_cmdline_res_rblank
[07:37:21] [PASSED] drm_test_cmdline_res_bpp
[07:37:21] [PASSED] drm_test_cmdline_res_refresh
[07:37:21] [PASSED] drm_test_cmdline_res_bpp_refresh
[07:37:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[07:37:21] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[07:37:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[07:37:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[07:37:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[07:37:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[07:37:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[07:37:21] [PASSED] drm_test_cmdline_res_margins_force_on
[07:37:21] [PASSED] drm_test_cmdline_res_vesa_margins
[07:37:21] [PASSED] drm_test_cmdline_name
[07:37:21] [PASSED] drm_test_cmdline_name_bpp
[07:37:21] [PASSED] drm_test_cmdline_name_option
[07:37:21] [PASSED] drm_test_cmdline_name_bpp_option
[07:37:21] [PASSED] drm_test_cmdline_rotate_0
[07:37:21] [PASSED] drm_test_cmdline_rotate_90
[07:37:21] [PASSED] drm_test_cmdline_rotate_180
[07:37:21] [PASSED] drm_test_cmdline_rotate_270
[07:37:21] [PASSED] drm_test_cmdline_hmirror
[07:37:21] [PASSED] drm_test_cmdline_vmirror
[07:37:21] [PASSED] drm_test_cmdline_margin_options
[07:37:21] [PASSED] drm_test_cmdline_multiple_options
[07:37:21] [PASSED] drm_test_cmdline_bpp_extra_and_option
[07:37:21] [PASSED] drm_test_cmdline_extra_and_option
[07:37:21] [PASSED] drm_test_cmdline_freestanding_options
[07:37:21] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[07:37:21] [PASSED] drm_test_cmdline_panel_orientation
[07:37:21] ================ drm_test_cmdline_invalid =================
[07:37:21] [PASSED] margin_only
[07:37:21] [PASSED] interlace_only
[07:37:21] [PASSED] res_missing_x
[07:37:21] [PASSED] res_missing_y
[07:37:21] [PASSED] res_bad_y
[07:37:21] [PASSED] res_missing_y_bpp
[07:37:21] [PASSED] res_bad_bpp
[07:37:21] [PASSED] res_bad_refresh
[07:37:21] [PASSED] res_bpp_refresh_force_on_off
[07:37:21] [PASSED] res_invalid_mode
[07:37:21] [PASSED] res_bpp_wrong_place_mode
[07:37:21] [PASSED] name_bpp_refresh
[07:37:21] [PASSED] name_refresh
[07:37:21] [PASSED] name_refresh_wrong_mode
[07:37:21] [PASSED] name_refresh_invalid_mode
[07:37:21] [PASSED] rotate_multiple
[07:37:21] [PASSED] rotate_invalid_val
[07:37:21] [PASSED] rotate_truncated
[07:37:21] [PASSED] invalid_option
[07:37:21] [PASSED] invalid_tv_option
[07:37:21] [PASSED] truncated_tv_option
[07:37:21] ============ [PASSED] drm_test_cmdline_invalid =============
[07:37:21] =============== drm_test_cmdline_tv_options ===============
[07:37:21] [PASSED] NTSC
[07:37:21] [PASSED] NTSC_443
[07:37:21] [PASSED] NTSC_J
[07:37:21] [PASSED] PAL
[07:37:21] [PASSED] PAL_M
[07:37:21] [PASSED] PAL_N
[07:37:21] [PASSED] SECAM
[07:37:21] [PASSED] MONO_525
[07:37:21] [PASSED] MONO_625
[07:37:21] =========== [PASSED] drm_test_cmdline_tv_options ===========
[07:37:21] =============== [PASSED] drm_cmdline_parser ================
[07:37:21] ========== drmm_connector_hdmi_init (20 subtests) ==========
[07:37:21] [PASSED] drm_test_connector_hdmi_init_valid
[07:37:21] [PASSED] drm_test_connector_hdmi_init_bpc_8
[07:37:21] [PASSED] drm_test_connector_hdmi_init_bpc_10
[07:37:21] [PASSED] drm_test_connector_hdmi_init_bpc_12
[07:37:21] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[07:37:21] [PASSED] drm_test_connector_hdmi_init_bpc_null
[07:37:21] [PASSED] drm_test_connector_hdmi_init_formats_empty
[07:37:21] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[07:37:21] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:37:21] [PASSED] supported_formats=0x9 yuv420_allowed=1
[07:37:21] [PASSED] supported_formats=0x9 yuv420_allowed=0
[07:37:21] [PASSED] supported_formats=0x3 yuv420_allowed=1
[07:37:21] [PASSED] supported_formats=0x3 yuv420_allowed=0
[07:37:21] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:37:21] [PASSED] drm_test_connector_hdmi_init_null_ddc
[07:37:21] [PASSED] drm_test_connector_hdmi_init_null_product
[07:37:21] [PASSED] drm_test_connector_hdmi_init_null_vendor
[07:37:21] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[07:37:21] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[07:37:21] [PASSED] drm_test_connector_hdmi_init_product_valid
[07:37:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[07:37:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[07:37:21] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[07:37:21] ========= drm_test_connector_hdmi_init_type_valid =========
[07:37:21] [PASSED] HDMI-A
[07:37:21] [PASSED] HDMI-B
[07:37:21] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[07:37:21] ======== drm_test_connector_hdmi_init_type_invalid ========
[07:37:21] [PASSED] Unknown
[07:37:21] [PASSED] VGA
[07:37:21] [PASSED] DVI-I
[07:37:21] [PASSED] DVI-D
[07:37:21] [PASSED] DVI-A
[07:37:21] [PASSED] Composite
[07:37:21] [PASSED] SVIDEO
[07:37:21] [PASSED] LVDS
[07:37:21] [PASSED] Component
[07:37:21] [PASSED] DIN
[07:37:21] [PASSED] DP
[07:37:21] [PASSED] TV
[07:37:21] [PASSED] eDP
[07:37:21] [PASSED] Virtual
[07:37:21] [PASSED] DSI
[07:37:21] [PASSED] DPI
[07:37:21] [PASSED] Writeback
[07:37:21] [PASSED] SPI
[07:37:21] [PASSED] USB
[07:37:21] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[07:37:21] ============ [PASSED] drmm_connector_hdmi_init =============
[07:37:21] ============= drmm_connector_init (3 subtests) =============
[07:37:21] [PASSED] drm_test_drmm_connector_init
[07:37:21] [PASSED] drm_test_drmm_connector_init_null_ddc
[07:37:21] ========= drm_test_drmm_connector_init_type_valid =========
[07:37:21] [PASSED] Unknown
[07:37:21] [PASSED] VGA
[07:37:21] [PASSED] DVI-I
[07:37:21] [PASSED] DVI-D
[07:37:21] [PASSED] DVI-A
[07:37:21] [PASSED] Composite
[07:37:21] [PASSED] SVIDEO
[07:37:21] [PASSED] LVDS
[07:37:21] [PASSED] Component
[07:37:21] [PASSED] DIN
[07:37:21] [PASSED] DP
[07:37:21] [PASSED] HDMI-A
[07:37:21] [PASSED] HDMI-B
[07:37:21] [PASSED] TV
[07:37:21] [PASSED] eDP
[07:37:21] [PASSED] Virtual
[07:37:21] [PASSED] DSI
[07:37:21] [PASSED] DPI
[07:37:21] [PASSED] Writeback
[07:37:21] [PASSED] SPI
[07:37:21] [PASSED] USB
[07:37:21] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[07:37:21] =============== [PASSED] drmm_connector_init ===============
[07:37:21] ========= drm_connector_dynamic_init (6 subtests) ==========
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_init
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_init_properties
[07:37:21] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[07:37:21] [PASSED] Unknown
[07:37:21] [PASSED] VGA
[07:37:21] [PASSED] DVI-I
[07:37:21] [PASSED] DVI-D
[07:37:21] [PASSED] DVI-A
[07:37:21] [PASSED] Composite
[07:37:21] [PASSED] SVIDEO
[07:37:21] [PASSED] LVDS
[07:37:21] [PASSED] Component
[07:37:21] [PASSED] DIN
[07:37:21] [PASSED] DP
[07:37:21] [PASSED] HDMI-A
[07:37:21] [PASSED] HDMI-B
[07:37:21] [PASSED] TV
[07:37:21] [PASSED] eDP
[07:37:21] [PASSED] Virtual
[07:37:21] [PASSED] DSI
[07:37:21] [PASSED] DPI
[07:37:21] [PASSED] Writeback
[07:37:21] [PASSED] SPI
[07:37:21] [PASSED] USB
[07:37:21] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[07:37:21] ======== drm_test_drm_connector_dynamic_init_name =========
[07:37:21] [PASSED] Unknown
[07:37:21] [PASSED] VGA
[07:37:21] [PASSED] DVI-I
[07:37:21] [PASSED] DVI-D
[07:37:21] [PASSED] DVI-A
[07:37:21] [PASSED] Composite
[07:37:21] [PASSED] SVIDEO
[07:37:21] [PASSED] LVDS
[07:37:21] [PASSED] Component
[07:37:21] [PASSED] DIN
[07:37:21] [PASSED] DP
[07:37:21] [PASSED] HDMI-A
[07:37:21] [PASSED] HDMI-B
[07:37:21] [PASSED] TV
[07:37:21] [PASSED] eDP
[07:37:21] [PASSED] Virtual
[07:37:21] [PASSED] DSI
[07:37:21] [PASSED] DPI
[07:37:21] [PASSED] Writeback
[07:37:21] [PASSED] SPI
[07:37:21] [PASSED] USB
[07:37:21] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[07:37:21] =========== [PASSED] drm_connector_dynamic_init ============
[07:37:21] ==== drm_connector_dynamic_register_early (4 subtests) =====
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[07:37:21] ====== [PASSED] drm_connector_dynamic_register_early =======
[07:37:21] ======= drm_connector_dynamic_register (7 subtests) ========
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[07:37:21] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[07:37:21] ========= [PASSED] drm_connector_dynamic_register ==========
[07:37:21] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[07:37:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[07:37:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[07:37:21] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[07:37:21] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[07:37:21] ========== drm_test_get_tv_mode_from_name_valid ===========
[07:37:21] [PASSED] NTSC
[07:37:21] [PASSED] NTSC-443
[07:37:21] [PASSED] NTSC-J
[07:37:21] [PASSED] PAL
[07:37:21] [PASSED] PAL-M
[07:37:21] [PASSED] PAL-N
[07:37:21] [PASSED] SECAM
[07:37:21] [PASSED] Mono
[07:37:21] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[07:37:21] [PASSED] drm_test_get_tv_mode_from_name_truncated
[07:37:21] ============ [PASSED] drm_get_tv_mode_from_name ============
[07:37:21] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[07:37:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[07:37:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[07:37:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[07:37:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[07:37:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[07:37:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[07:37:21] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[07:37:21] [PASSED] VIC 96
[07:37:21] [PASSED] VIC 97
[07:37:21] [PASSED] VIC 101
[07:37:21] [PASSED] VIC 102
[07:37:21] [PASSED] VIC 106
[07:37:21] [PASSED] VIC 107
[07:37:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[07:37:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[07:37:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[07:37:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[07:37:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[07:37:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[07:37:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[07:37:21] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[07:37:21] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[07:37:21] [PASSED] Automatic
[07:37:21] [PASSED] Full
[07:37:21] [PASSED] Limited 16:235
[07:37:21] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[07:37:21] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[07:37:21] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[07:37:21] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[07:37:21] === drm_test_drm_hdmi_connector_get_output_format_name ====
[07:37:21] [PASSED] RGB
[07:37:21] [PASSED] YUV 4:2:0
[07:37:21] [PASSED] YUV 4:2:2
[07:37:21] [PASSED] YUV 4:4:4
[07:37:21] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[07:37:21] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[07:37:21] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[07:37:21] ============= drm_damage_helper (21 subtests) ==============
[07:37:21] [PASSED] drm_test_damage_iter_no_damage
[07:37:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[07:37:21] [PASSED] drm_test_damage_iter_no_damage_src_moved
[07:37:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[07:37:21] [PASSED] drm_test_damage_iter_no_damage_not_visible
[07:37:21] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[07:37:21] [PASSED] drm_test_damage_iter_no_damage_no_fb
[07:37:21] [PASSED] drm_test_damage_iter_simple_damage
[07:37:21] [PASSED] drm_test_damage_iter_single_damage
[07:37:21] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[07:37:21] [PASSED] drm_test_damage_iter_single_damage_outside_src
[07:37:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[07:37:21] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[07:37:21] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[07:37:21] [PASSED] drm_test_damage_iter_single_damage_src_moved
[07:37:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[07:37:21] [PASSED] drm_test_damage_iter_damage
[07:37:21] [PASSED] drm_test_damage_iter_damage_one_intersect
[07:37:21] [PASSED] drm_test_damage_iter_damage_one_outside
[07:37:21] [PASSED] drm_test_damage_iter_damage_src_moved
[07:37:21] [PASSED] drm_test_damage_iter_damage_not_visible
[07:37:21] ================ [PASSED] drm_damage_helper ================
[07:37:21] ============== drm_dp_mst_helper (3 subtests) ==============
[07:37:21] ============== drm_test_dp_mst_calc_pbn_mode ==============
[07:37:21] [PASSED] Clock 154000 BPP 30 DSC disabled
[07:37:21] [PASSED] Clock 234000 BPP 30 DSC disabled
[07:37:21] [PASSED] Clock 297000 BPP 24 DSC disabled
[07:37:21] [PASSED] Clock 332880 BPP 24 DSC enabled
[07:37:21] [PASSED] Clock 324540 BPP 24 DSC enabled
[07:37:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[07:37:21] ============== drm_test_dp_mst_calc_pbn_div ===============
[07:37:21] [PASSED] Link rate 2000000 lane count 4
[07:37:21] [PASSED] Link rate 2000000 lane count 2
[07:37:21] [PASSED] Link rate 2000000 lane count 1
[07:37:21] [PASSED] Link rate 1350000 lane count 4
[07:37:21] [PASSED] Link rate 1350000 lane count 2
[07:37:21] [PASSED] Link rate 1350000 lane count 1
[07:37:21] [PASSED] Link rate 1000000 lane count 4
[07:37:21] [PASSED] Link rate 1000000 lane count 2
[07:37:21] [PASSED] Link rate 1000000 lane count 1
[07:37:21] [PASSED] Link rate 810000 lane count 4
[07:37:21] [PASSED] Link rate 810000 lane count 2
[07:37:21] [PASSED] Link rate 810000 lane count 1
[07:37:21] [PASSED] Link rate 540000 lane count 4
[07:37:21] [PASSED] Link rate 540000 lane count 2
[07:37:21] [PASSED] Link rate 540000 lane count 1
[07:37:21] [PASSED] Link rate 270000 lane count 4
[07:37:21] [PASSED] Link rate 270000 lane count 2
[07:37:21] [PASSED] Link rate 270000 lane count 1
[07:37:21] [PASSED] Link rate 162000 lane count 4
[07:37:21] [PASSED] Link rate 162000 lane count 2
[07:37:21] [PASSED] Link rate 162000 lane count 1
[07:37:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[07:37:21] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[07:37:21] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[07:37:21] [PASSED] DP_POWER_UP_PHY with port number
[07:37:21] [PASSED] DP_POWER_DOWN_PHY with port number
[07:37:21] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[07:37:21] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[07:37:21] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[07:37:21] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[07:37:21] [PASSED] DP_QUERY_PAYLOAD with port number
[07:37:21] [PASSED] DP_QUERY_PAYLOAD with VCPI
[07:37:21] [PASSED] DP_REMOTE_DPCD_READ with port number
[07:37:21] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[07:37:21] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[07:37:21] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[07:37:21] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[07:37:21] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[07:37:21] [PASSED] DP_REMOTE_I2C_READ with port number
[07:37:21] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[07:37:21] [PASSED] DP_REMOTE_I2C_READ with transactions array
[07:37:21] [PASSED] DP_REMOTE_I2C_WRITE with port number
[07:37:21] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[07:37:21] [PASSED] DP_REMOTE_I2C_WRITE with data array
[07:37:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[07:37:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[07:37:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[07:37:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[07:37:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[07:37:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[07:37:21] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[07:37:21] ================ [PASSED] drm_dp_mst_helper ================
[07:37:21] ================== drm_exec (7 subtests) ===================
[07:37:21] [PASSED] sanitycheck
[07:37:21] [PASSED] test_lock
[07:37:21] [PASSED] test_lock_unlock
[07:37:21] [PASSED] test_duplicates
[07:37:21] [PASSED] test_prepare
[07:37:21] [PASSED] test_prepare_array
[07:37:21] [PASSED] test_multiple_loops
[07:37:21] ==================== [PASSED] drm_exec =====================
[07:37:21] =========== drm_format_helper_test (17 subtests) ===========
[07:37:21] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[07:37:21] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[07:37:21] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[07:37:21] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[07:37:21] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[07:37:21] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[07:37:21] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[07:37:21] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[07:37:21] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[07:37:21] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[07:37:21] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[07:37:21] ============== drm_test_fb_xrgb8888_to_mono ===============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[07:37:21] ==================== drm_test_fb_swab =====================
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ================ [PASSED] drm_test_fb_swab =================
[07:37:21] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[07:37:21] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[07:37:21] [PASSED] single_pixel_source_buffer
[07:37:21] [PASSED] single_pixel_clip_rectangle
[07:37:21] [PASSED] well_known_colors
[07:37:21] [PASSED] destination_pitch
[07:37:21] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[07:37:21] ================= drm_test_fb_clip_offset =================
[07:37:21] [PASSED] pass through
[07:37:21] [PASSED] horizontal offset
[07:37:21] [PASSED] vertical offset
[07:37:21] [PASSED] horizontal and vertical offset
[07:37:21] [PASSED] horizontal offset (custom pitch)
[07:37:21] [PASSED] vertical offset (custom pitch)
[07:37:21] [PASSED] horizontal and vertical offset (custom pitch)
[07:37:21] ============= [PASSED] drm_test_fb_clip_offset =============
[07:37:21] =================== drm_test_fb_memcpy ====================
[07:37:21] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[07:37:21] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[07:37:21] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[07:37:21] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[07:37:21] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[07:37:21] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[07:37:21] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[07:37:21] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[07:37:21] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[07:37:21] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[07:37:21] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[07:37:21] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[07:37:21] =============== [PASSED] drm_test_fb_memcpy ================
[07:37:21] ============= [PASSED] drm_format_helper_test ==============
[07:37:21] ================= drm_format (18 subtests) =================
[07:37:21] [PASSED] drm_test_format_block_width_invalid
[07:37:21] [PASSED] drm_test_format_block_width_one_plane
[07:37:21] [PASSED] drm_test_format_block_width_two_plane
[07:37:21] [PASSED] drm_test_format_block_width_three_plane
[07:37:21] [PASSED] drm_test_format_block_width_tiled
[07:37:21] [PASSED] drm_test_format_block_height_invalid
[07:37:21] [PASSED] drm_test_format_block_height_one_plane
[07:37:21] [PASSED] drm_test_format_block_height_two_plane
[07:37:21] [PASSED] drm_test_format_block_height_three_plane
[07:37:21] [PASSED] drm_test_format_block_height_tiled
[07:37:21] [PASSED] drm_test_format_min_pitch_invalid
[07:37:21] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[07:37:21] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[07:37:21] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[07:37:21] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[07:37:21] [PASSED] drm_test_format_min_pitch_two_plane
[07:37:21] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[07:37:21] [PASSED] drm_test_format_min_pitch_tiled
[07:37:21] =================== [PASSED] drm_format ====================
[07:37:21] ============== drm_framebuffer (10 subtests) ===============
[07:37:21] ========== drm_test_framebuffer_check_src_coords ==========
[07:37:21] [PASSED] Success: source fits into fb
[07:37:21] [PASSED] Fail: overflowing fb with x-axis coordinate
[07:37:21] [PASSED] Fail: overflowing fb with y-axis coordinate
[07:37:21] [PASSED] Fail: overflowing fb with source width
[07:37:21] [PASSED] Fail: overflowing fb with source height
[07:37:21] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[07:37:21] [PASSED] drm_test_framebuffer_cleanup
[07:37:21] =============== drm_test_framebuffer_create ===============
[07:37:21] [PASSED] ABGR8888 normal sizes
[07:37:21] [PASSED] ABGR8888 max sizes
[07:37:21] [PASSED] ABGR8888 pitch greater than min required
[07:37:21] [PASSED] ABGR8888 pitch less than min required
[07:37:21] [PASSED] ABGR8888 Invalid width
[07:37:21] [PASSED] ABGR8888 Invalid buffer handle
[07:37:21] [PASSED] No pixel format
[07:37:21] [PASSED] ABGR8888 Width 0
[07:37:21] [PASSED] ABGR8888 Height 0
[07:37:21] [PASSED] ABGR8888 Out of bound height * pitch combination
[07:37:21] [PASSED] ABGR8888 Large buffer offset
[07:37:21] [PASSED] ABGR8888 Buffer offset for inexistent plane
[07:37:21] [PASSED] ABGR8888 Invalid flag
[07:37:21] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[07:37:21] [PASSED] ABGR8888 Valid buffer modifier
[07:37:21] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[07:37:21] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[07:37:21] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[07:37:21] [PASSED] NV12 Normal sizes
[07:37:21] [PASSED] NV12 Max sizes
[07:37:21] [PASSED] NV12 Invalid pitch
[07:37:21] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[07:37:21] [PASSED] NV12 different modifier per-plane
[07:37:21] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[07:37:21] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[07:37:21] [PASSED] NV12 Modifier for inexistent plane
[07:37:21] [PASSED] NV12 Handle for inexistent plane
[07:37:21] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[07:37:21] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[07:37:21] [PASSED] YVU420 Normal sizes
[07:37:21] [PASSED] YVU420 Max sizes
[07:37:21] [PASSED] YVU420 Invalid pitch
[07:37:21] [PASSED] YVU420 Different pitches
[07:37:21] [PASSED] YVU420 Different buffer offsets/pitches
[07:37:21] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[07:37:21] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[07:37:21] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[07:37:21] [PASSED] YVU420 Valid modifier
[07:37:21] [PASSED] YVU420 Different modifiers per plane
[07:37:21] [PASSED] YVU420 Modifier for inexistent plane
[07:37:21] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[07:37:21] [PASSED] X0L2 Normal sizes
[07:37:21] [PASSED] X0L2 Max sizes
[07:37:21] [PASSED] X0L2 Invalid pitch
[07:37:21] [PASSED] X0L2 Pitch greater than minimum required
[07:37:21] [PASSED] X0L2 Handle for inexistent plane
[07:37:21] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[07:37:21] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[07:37:21] [PASSED] X0L2 Valid modifier
[07:37:21] [PASSED] X0L2 Modifier for inexistent plane
[07:37:21] =========== [PASSED] drm_test_framebuffer_create ===========
[07:37:21] [PASSED] drm_test_framebuffer_free
[07:37:21] [PASSED] drm_test_framebuffer_init
[07:37:21] [PASSED] drm_test_framebuffer_init_bad_format
[07:37:21] [PASSED] drm_test_framebuffer_init_dev_mismatch
[07:37:21] [PASSED] drm_test_framebuffer_lookup
[07:37:21] [PASSED] drm_test_framebuffer_lookup_inexistent
[07:37:21] [PASSED] drm_test_framebuffer_modifiers_not_supported
[07:37:21] ================= [PASSED] drm_framebuffer =================
[07:37:21] ================ drm_gem_shmem (8 subtests) ================
[07:37:21] [PASSED] drm_gem_shmem_test_obj_create
[07:37:21] [PASSED] drm_gem_shmem_test_obj_create_private
[07:37:21] [PASSED] drm_gem_shmem_test_pin_pages
[07:37:21] [PASSED] drm_gem_shmem_test_vmap
[07:37:21] [PASSED] drm_gem_shmem_test_get_pages_sgt
[07:37:21] [PASSED] drm_gem_shmem_test_get_sg_table
[07:37:21] [PASSED] drm_gem_shmem_test_madvise
[07:37:21] [PASSED] drm_gem_shmem_test_purge
[07:37:21] ================== [PASSED] drm_gem_shmem ==================
[07:37:21] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[07:37:21] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[07:37:21] [PASSED] Automatic
[07:37:21] [PASSED] Full
[07:37:21] [PASSED] Limited 16:235
[07:37:21] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[07:37:21] [PASSED] drm_test_check_disable_connector
[07:37:21] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[07:37:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[07:37:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[07:37:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[07:37:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[07:37:21] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[07:37:21] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[07:37:21] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[07:37:21] [PASSED] drm_test_check_output_bpc_dvi
[07:37:21] [PASSED] drm_test_check_output_bpc_format_vic_1
[07:37:21] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[07:37:21] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[07:37:21] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[07:37:21] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[07:37:21] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[07:37:21] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[07:37:21] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[07:37:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[07:37:21] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[07:37:21] [PASSED] drm_test_check_broadcast_rgb_value
[07:37:21] [PASSED] drm_test_check_bpc_8_value
[07:37:21] [PASSED] drm_test_check_bpc_10_value
[07:37:21] [PASSED] drm_test_check_bpc_12_value
[07:37:21] [PASSED] drm_test_check_format_value
[07:37:21] [PASSED] drm_test_check_tmds_char_value
[07:37:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[07:37:21] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[07:37:21] [PASSED] drm_test_check_mode_valid
[07:37:21] [PASSED] drm_test_check_mode_valid_reject
[07:37:21] [PASSED] drm_test_check_mode_valid_reject_rate
[07:37:21] [PASSED] drm_test_check_mode_valid_reject_max_clock
[07:37:21] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[07:37:21] ================= drm_managed (2 subtests) =================
[07:37:21] [PASSED] drm_test_managed_release_action
[07:37:21] [PASSED] drm_test_managed_run_action
[07:37:21] =================== [PASSED] drm_managed ===================
[07:37:21] =================== drm_mm (6 subtests) ====================
[07:37:21] [PASSED] drm_test_mm_init
[07:37:21] [PASSED] drm_test_mm_debug
[07:37:21] [PASSED] drm_test_mm_align32
[07:37:21] [PASSED] drm_test_mm_align64
[07:37:21] [PASSED] drm_test_mm_lowest
[07:37:21] [PASSED] drm_test_mm_highest
[07:37:21] ===================== [PASSED] drm_mm ======================
[07:37:21] ============= drm_modes_analog_tv (5 subtests) =============
[07:37:21] [PASSED] drm_test_modes_analog_tv_mono_576i
[07:37:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[07:37:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[07:37:21] [PASSED] drm_test_modes_analog_tv_pal_576i
[07:37:21] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[07:37:21] =============== [PASSED] drm_modes_analog_tv ===============
[07:37:21] ============== drm_plane_helper (2 subtests) ===============
[07:37:21] =============== drm_test_check_plane_state ================
[07:37:21] [PASSED] clipping_simple
[07:37:21] [PASSED] clipping_rotate_reflect
[07:37:21] [PASSED] positioning_simple
[07:37:21] [PASSED] upscaling
[07:37:21] [PASSED] downscaling
[07:37:21] [PASSED] rounding1
[07:37:21] [PASSED] rounding2
[07:37:21] [PASSED] rounding3
[07:37:21] [PASSED] rounding4
[07:37:21] =========== [PASSED] drm_test_check_plane_state ============
[07:37:21] =========== drm_test_check_invalid_plane_state ============
[07:37:21] [PASSED] positioning_invalid
[07:37:21] [PASSED] upscaling_invalid
[07:37:21] [PASSED] downscaling_invalid
[07:37:21] ======= [PASSED] drm_test_check_invalid_plane_state ========
[07:37:21] ================ [PASSED] drm_plane_helper =================
[07:37:21] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[07:37:21] ====== drm_test_connector_helper_tv_get_modes_check =======
[07:37:21] [PASSED] None
[07:37:21] [PASSED] PAL
[07:37:21] [PASSED] NTSC
[07:37:21] [PASSED] Both, NTSC Default
[07:37:21] [PASSED] Both, PAL Default
[07:37:21] [PASSED] Both, NTSC Default, with PAL on command-line
[07:37:21] [PASSED] Both, PAL Default, with NTSC on command-line
[07:37:21] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[07:37:21] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[07:37:21] ================== drm_rect (9 subtests) ===================
[07:37:21] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[07:37:21] [PASSED] drm_test_rect_clip_scaled_not_clipped
[07:37:21] [PASSED] drm_test_rect_clip_scaled_clipped
[07:37:21] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[07:37:21] ================= drm_test_rect_intersect =================
[07:37:21] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[07:37:21] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[07:37:21] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[07:37:21] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[07:37:21] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[07:37:21] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[07:37:21] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[07:37:21] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[07:37:21] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[07:37:21] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[07:37:21] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[07:37:21] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[07:37:21] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[07:37:21] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[07:37:21] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[07:37:21] ============= [PASSED] drm_test_rect_intersect =============
[07:37:21] ================ drm_test_rect_calc_hscale ================
[07:37:21] [PASSED] normal use
[07:37:21] [PASSED] out of max range
[07:37:21] [PASSED] out of min range
[07:37:21] [PASSED] zero dst
[07:37:21] [PASSED] negative src
[07:37:21] [PASSED] negative dst
[07:37:21] ============ [PASSED] drm_test_rect_calc_hscale ============
[07:37:21] ================ drm_test_rect_calc_vscale ================
[07:37:21] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[07:37:21] [PASSED] out of max range
[07:37:21] [PASSED] out of min range
[07:37:21] [PASSED] zero dst
[07:37:21] [PASSED] negative src
[07:37:21] [PASSED] negative dst
[07:37:21] ============ [PASSED] drm_test_rect_calc_vscale ============
[07:37:21] ================== drm_test_rect_rotate ===================
[07:37:21] [PASSED] reflect-x
[07:37:21] [PASSED] reflect-y
[07:37:21] [PASSED] rotate-0
[07:37:21] [PASSED] rotate-90
[07:37:21] [PASSED] rotate-180
[07:37:21] [PASSED] rotate-270
[07:37:21] ============== [PASSED] drm_test_rect_rotate ===============
[07:37:21] ================ drm_test_rect_rotate_inv =================
[07:37:21] [PASSED] reflect-x
[07:37:21] [PASSED] reflect-y
[07:37:21] [PASSED] rotate-0
[07:37:21] [PASSED] rotate-90
[07:37:21] [PASSED] rotate-180
[07:37:21] [PASSED] rotate-270
[07:37:21] ============ [PASSED] drm_test_rect_rotate_inv =============
[07:37:21] ==================== [PASSED] drm_rect =====================
[07:37:21] ============ drm_sysfb_modeset_test (1 subtest) ============
[07:37:21] ============ drm_test_sysfb_build_fourcc_list =============
[07:37:21] [PASSED] no native formats
[07:37:21] [PASSED] XRGB8888 as native format
[07:37:21] [PASSED] remove duplicates
[07:37:21] [PASSED] convert alpha formats
[07:37:21] [PASSED] random formats
[07:37:21] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[07:37:21] ============= [PASSED] drm_sysfb_modeset_test ==============
[07:37:21] ============================================================
[07:37:21] Testing complete. Ran 622 tests: passed: 622
[07:37:21] Elapsed time: 26.769s total, 1.658s configuring, 24.689s building, 0.397s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[07:37:21] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:37:23] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:37:32] Starting KUnit Kernel (1/1)...
[07:37:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:37:32] ================= ttm_device (5 subtests) ==================
[07:37:32] [PASSED] ttm_device_init_basic
[07:37:32] [PASSED] ttm_device_init_multiple
[07:37:32] [PASSED] ttm_device_fini_basic
[07:37:32] [PASSED] ttm_device_init_no_vma_man
[07:37:32] ================== ttm_device_init_pools ==================
[07:37:32] [PASSED] No DMA allocations, no DMA32 required
[07:37:32] [PASSED] DMA allocations, DMA32 required
[07:37:32] [PASSED] No DMA allocations, DMA32 required
[07:37:32] [PASSED] DMA allocations, no DMA32 required
[07:37:32] ============== [PASSED] ttm_device_init_pools ==============
[07:37:32] =================== [PASSED] ttm_device ====================
[07:37:32] ================== ttm_pool (8 subtests) ===================
[07:37:32] ================== ttm_pool_alloc_basic ===================
[07:37:32] [PASSED] One page
[07:37:32] [PASSED] More than one page
[07:37:32] [PASSED] Above the allocation limit
[07:37:32] [PASSED] One page, with coherent DMA mappings enabled
[07:37:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:37:32] ============== [PASSED] ttm_pool_alloc_basic ===============
[07:37:32] ============== ttm_pool_alloc_basic_dma_addr ==============
[07:37:32] [PASSED] One page
[07:37:32] [PASSED] More than one page
[07:37:32] [PASSED] Above the allocation limit
[07:37:32] [PASSED] One page, with coherent DMA mappings enabled
[07:37:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:37:32] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[07:37:32] [PASSED] ttm_pool_alloc_order_caching_match
[07:37:32] [PASSED] ttm_pool_alloc_caching_mismatch
[07:37:32] [PASSED] ttm_pool_alloc_order_mismatch
[07:37:32] [PASSED] ttm_pool_free_dma_alloc
[07:37:32] [PASSED] ttm_pool_free_no_dma_alloc
[07:37:32] [PASSED] ttm_pool_fini_basic
[07:37:32] ==================== [PASSED] ttm_pool =====================
[07:37:32] ================ ttm_resource (8 subtests) =================
[07:37:32] ================= ttm_resource_init_basic =================
[07:37:32] [PASSED] Init resource in TTM_PL_SYSTEM
[07:37:32] [PASSED] Init resource in TTM_PL_VRAM
[07:37:32] [PASSED] Init resource in a private placement
[07:37:32] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[07:37:32] ============= [PASSED] ttm_resource_init_basic =============
[07:37:32] [PASSED] ttm_resource_init_pinned
[07:37:32] [PASSED] ttm_resource_fini_basic
[07:37:32] [PASSED] ttm_resource_manager_init_basic
[07:37:32] [PASSED] ttm_resource_manager_usage_basic
[07:37:32] [PASSED] ttm_resource_manager_set_used_basic
[07:37:32] [PASSED] ttm_sys_man_alloc_basic
[07:37:32] [PASSED] ttm_sys_man_free_basic
[07:37:32] ================== [PASSED] ttm_resource ===================
[07:37:32] =================== ttm_tt (15 subtests) ===================
[07:37:32] ==================== ttm_tt_init_basic ====================
[07:37:32] [PASSED] Page-aligned size
[07:37:32] [PASSED] Extra pages requested
[07:37:32] ================ [PASSED] ttm_tt_init_basic ================
[07:37:32] [PASSED] ttm_tt_init_misaligned
[07:37:32] [PASSED] ttm_tt_fini_basic
[07:37:32] [PASSED] ttm_tt_fini_sg
[07:37:32] [PASSED] ttm_tt_fini_shmem
[07:37:32] [PASSED] ttm_tt_create_basic
[07:37:32] [PASSED] ttm_tt_create_invalid_bo_type
[07:37:32] [PASSED] ttm_tt_create_ttm_exists
[07:37:32] [PASSED] ttm_tt_create_failed
[07:37:32] [PASSED] ttm_tt_destroy_basic
[07:37:32] [PASSED] ttm_tt_populate_null_ttm
[07:37:32] [PASSED] ttm_tt_populate_populated_ttm
[07:37:32] [PASSED] ttm_tt_unpopulate_basic
[07:37:32] [PASSED] ttm_tt_unpopulate_empty_ttm
[07:37:32] [PASSED] ttm_tt_swapin_basic
[07:37:32] ===================== [PASSED] ttm_tt ======================
[07:37:32] =================== ttm_bo (14 subtests) ===================
[07:37:32] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[07:37:32] [PASSED] Cannot be interrupted and sleeps
[07:37:32] [PASSED] Cannot be interrupted, locks straight away
[07:37:32] [PASSED] Can be interrupted, sleeps
[07:37:32] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[07:37:32] [PASSED] ttm_bo_reserve_locked_no_sleep
[07:37:32] [PASSED] ttm_bo_reserve_no_wait_ticket
[07:37:32] [PASSED] ttm_bo_reserve_double_resv
[07:37:32] [PASSED] ttm_bo_reserve_interrupted
[07:37:32] [PASSED] ttm_bo_reserve_deadlock
[07:37:32] [PASSED] ttm_bo_unreserve_basic
[07:37:32] [PASSED] ttm_bo_unreserve_pinned
[07:37:32] [PASSED] ttm_bo_unreserve_bulk
[07:37:32] [PASSED] ttm_bo_fini_basic
[07:37:32] [PASSED] ttm_bo_fini_shared_resv
[07:37:32] [PASSED] ttm_bo_pin_basic
[07:37:32] [PASSED] ttm_bo_pin_unpin_resource
[07:37:32] [PASSED] ttm_bo_multiple_pin_one_unpin
[07:37:32] ===================== [PASSED] ttm_bo ======================
[07:37:32] ============== ttm_bo_validate (21 subtests) ===============
[07:37:32] ============== ttm_bo_init_reserved_sys_man ===============
[07:37:32] [PASSED] Buffer object for userspace
[07:37:32] [PASSED] Kernel buffer object
[07:37:32] [PASSED] Shared buffer object
[07:37:32] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[07:37:32] ============== ttm_bo_init_reserved_mock_man ==============
[07:37:32] [PASSED] Buffer object for userspace
[07:37:32] [PASSED] Kernel buffer object
[07:37:32] [PASSED] Shared buffer object
[07:37:32] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[07:37:32] [PASSED] ttm_bo_init_reserved_resv
[07:37:32] ================== ttm_bo_validate_basic ==================
[07:37:32] [PASSED] Buffer object for userspace
[07:37:32] [PASSED] Kernel buffer object
[07:37:32] [PASSED] Shared buffer object
[07:37:32] ============== [PASSED] ttm_bo_validate_basic ==============
[07:37:32] [PASSED] ttm_bo_validate_invalid_placement
[07:37:32] ============= ttm_bo_validate_same_placement ==============
[07:37:32] [PASSED] System manager
[07:37:32] [PASSED] VRAM manager
[07:37:32] ========= [PASSED] ttm_bo_validate_same_placement ==========
[07:37:32] [PASSED] ttm_bo_validate_failed_alloc
[07:37:32] [PASSED] ttm_bo_validate_pinned
[07:37:32] [PASSED] ttm_bo_validate_busy_placement
[07:37:32] ================ ttm_bo_validate_multihop =================
[07:37:32] [PASSED] Buffer object for userspace
[07:37:32] [PASSED] Kernel buffer object
[07:37:32] [PASSED] Shared buffer object
[07:37:32] ============ [PASSED] ttm_bo_validate_multihop =============
[07:37:32] ========== ttm_bo_validate_no_placement_signaled ==========
[07:37:32] [PASSED] Buffer object in system domain, no page vector
[07:37:32] [PASSED] Buffer object in system domain with an existing page vector
[07:37:32] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[07:37:32] ======== ttm_bo_validate_no_placement_not_signaled ========
[07:37:32] [PASSED] Buffer object for userspace
[07:37:32] [PASSED] Kernel buffer object
[07:37:32] [PASSED] Shared buffer object
[07:37:32] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[07:37:32] [PASSED] ttm_bo_validate_move_fence_signaled
[07:37:32] ========= ttm_bo_validate_move_fence_not_signaled =========
[07:37:32] [PASSED] Waits for GPU
[07:37:32] [PASSED] Tries to lock straight away
[07:37:32] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[07:37:32] [PASSED] ttm_bo_validate_happy_evict
[07:37:32] [PASSED] ttm_bo_validate_all_pinned_evict
[07:37:32] [PASSED] ttm_bo_validate_allowed_only_evict
[07:37:32] [PASSED] ttm_bo_validate_deleted_evict
[07:37:32] [PASSED] ttm_bo_validate_busy_domain_evict
[07:37:32] [PASSED] ttm_bo_validate_evict_gutting
[07:37:32] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[07:37:32] ================= [PASSED] ttm_bo_validate =================
[07:37:32] ============================================================
[07:37:32] Testing complete. Ran 101 tests: passed: 101
[07:37:32] Elapsed time: 11.080s total, 1.636s configuring, 9.227s building, 0.184s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✓ Xe.CI.BAT: success for auxccs ci run no stolen
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (14 preceding siblings ...)
2025-10-22 7:37 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-22 8:47 ` Patchwork
2025-10-22 10:02 ` ✗ Xe.CI.Full: failure " Patchwork
` (8 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-22 8:47 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1441 bytes --]
== Series Details ==
Series: auxccs ci run no stolen
URL : https://patchwork.freedesktop.org/series/156302/
State : success
== Summary ==
CI Bug Log - changes from xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687_BAT -> xe-pw-156302v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 11)
------------------------------
Missing (1): bat-pvc-2
Known issues
------------
Here are the changes found in xe-pw-156302v1_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@d-edp1:
- bat-adlp-7: [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* Linux: xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687 -> xe-pw-156302v1
IGT_8594: 8594
xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687: fb0f56ad8a2c9953c57c3337a72ccbf9c5050687
xe-pw-156302v1: 156302v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/index.html
[-- Attachment #2: Type: text/html, Size: 2006 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ Xe.CI.Full: failure for auxccs ci run no stolen
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (15 preceding siblings ...)
2025-10-22 8:47 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-22 10:02 ` Patchwork
2025-10-22 16:05 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen (rev2) Patchwork
` (7 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-22 10:02 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 54413 bytes --]
== Series Details ==
Series: auxccs ci run no stolen
URL : https://patchwork.freedesktop.org/series/156302/
State : failure
== Summary ==
CI Bug Log - changes from xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687_FULL -> xe-pw-156302v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156302v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156302v1_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-156302v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_reset@gt-reset-stress:
- shard-adlp: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-9/igt@xe_exec_reset@gt-reset-stress.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-6/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate:
- shard-dg2-set2: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-432/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: [DMESG-WARN][5] ([Intel XE#4543]) -> [DMESG-WARN][6] +5 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
New tests
---------
New tests have been introduced between xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687_FULL and xe-pw-156302v1_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.17] 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.17] 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.18] 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.16] 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.11] 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.22] 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.12] 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.13] 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.12] 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.11] 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.23] 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.13] 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.11] 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.10] 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.11] 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.23] 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.11] 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-156302v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#623])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-adlp: [PASS][8] -> [DMESG-WARN][9] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-4/igt@kms_async_flips@test-cursor-atomic.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-6/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#367])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3862]) +1 other test incomplete
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][18] -> [INCOMPLETE][19] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][20] ([Intel XE#1727] / [Intel XE#3113])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#6168])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][23] -> [DMESG-WARN][24] ([Intel XE#1727] / [Intel XE#3113])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +20 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#306])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2252]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#373]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178]) +2 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#308])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2291]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][35] -> [FAIL][36] ([Intel XE#1475])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#323])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#4294])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2244])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2316]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#4543]) +15 other tests dmesg-warn
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2311]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#5390]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#651]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#6312])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2313]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1158])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#653]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#1503]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2927])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#5624])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2391])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-basic:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#3414] / [Intel XE#3904])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#4459]) +1 other test fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1091] / [Intel XE#2849])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1123])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_eu_stall@blocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#5626])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@xe_eu_stall@blocking-read.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4837]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#4837]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2322]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#288]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
- shard-bmg: [PASS][73] -> [WARN][74] ([Intel XE#5786])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4943]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html
* igt@xe_exec_system_allocator@twice-malloc-fork-read:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#4915]) +79 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@xe_exec_system_allocator@twice-malloc-fork-read.html
* igt@xe_gt_freq@freq_fixed_idle:
- shard-dg2-set2: [PASS][77] -> [FAIL][78] ([Intel XE#6407])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-463/igt@xe_gt_freq@freq_fixed_idle.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-432/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2457])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_module_load@force-load.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#3573]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#579])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#4650])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#944])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#944])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#4130])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@xe_sriov_auto_provisioning@fair-allocation.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-adlp: [DMESG-WARN][86] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-9/igt@core_hotunplug@hotrebind-lateclose.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-6/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][88] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][90] ([Intel XE#3862]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: [SKIP][92] ([Intel XE#787]) -> [PASS][93] +77 other tests pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-2/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][94] ([Intel XE#455] / [Intel XE#787]) -> [PASS][95] +51 other tests pass
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][96] ([Intel XE#2291]) -> [PASS][97] +2 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][98] ([Intel XE#2316]) -> [PASS][99] +5 other tests pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][100] ([Intel XE#4543]) -> [PASS][101] +4 other tests pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][102] ([Intel XE#301]) -> [PASS][103] +3 other tests pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][104] ([Intel XE#455]) -> [PASS][105] +7 other tests pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [FAIL][106] ([Intel XE#1874]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
- shard-adlp: [DMESG-FAIL][108] ([Intel XE#4543]) -> [PASS][109] +1 other test pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [SKIP][110] ([Intel XE#1503]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][112] ([Intel XE#4596]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@xe_exec_balancer@once-parallel-userptr-invalidate:
- shard-bmg: [DMESG-FAIL][114] ([Intel XE#3876]) -> [PASS][115] +2 other tests pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
* igt@xe_exec_basic@many-null-defer-bind:
- shard-bmg: [DMESG-WARN][116] ([Intel XE#3876]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_exec_basic@many-null-defer-bind.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_exec_basic@many-null-defer-bind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm:
- shard-bmg: [FAIL][118] ([Intel XE#5625]) -> [PASS][119] +3 other tests pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm:
- shard-bmg: [FAIL][120] ([Intel XE#6050]) -> [PASS][121] +1 other test pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-bmg: [FAIL][122] ([Intel XE#6325]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_exec_reset@cm-gt-reset.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_exec_system_allocator@twice-mmap-new-race-nomemset:
- shard-bmg: [FAIL][124] ([Intel XE#4937] / [Intel XE#5625]) -> [PASS][125] +32 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_exec_system_allocator@twice-mmap-new-race-nomemset.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_exec_system_allocator@twice-mmap-new-race-nomemset.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [TIMEOUT][126] ([Intel XE#3876] / [Intel XE#6162]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_pm@s2idle-exec-after.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-bmg: [DMESG-FAIL][128] ([Intel XE#5545]) -> [PASS][129] +1 other test pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: [FAIL][130] ([Intel XE#5545]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt1.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_pm_residency@gt-c6-freeze@gt1.html
* igt@xe_vm@munmap-style-unbind-userptr-inval-front:
- shard-bmg: [INCOMPLETE][132] ([Intel XE#4842]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-4/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][134] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][135] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][136] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][137] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][138] ([Intel XE#2341]) -> [FAIL][139] ([Intel XE#1178])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_content_protection@srm.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][140] ([Intel XE#2311]) -> [SKIP][141] ([Intel XE#2312]) +14 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#2311]) +12 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][144] ([Intel XE#2312]) -> [SKIP][145] ([Intel XE#5390]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][146] ([Intel XE#5390]) -> [SKIP][147] ([Intel XE#2312]) +8 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][148] ([Intel XE#2313]) -> [SKIP][149] ([Intel XE#2312]) +13 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][150] ([Intel XE#2312]) -> [SKIP][151] ([Intel XE#2313]) +10 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][152] ([Intel XE#5021]) -> [SKIP][153] ([Intel XE#4596])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][154] ([Intel XE#362]) -> [SKIP][155] ([Intel XE#1500])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-adlp: [SKIP][156] ([Intel XE#4519]) -> [SKIP][157] ([Intel XE#6386])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-9/igt@xe_eudebug_sriov@deny-sriov.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-6/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][158] ([Intel XE#5466]) -> [ABORT][159] ([Intel XE#4917] / [Intel XE#5466])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-adlp: [ABORT][160] ([Intel XE#4917] / [Intel XE#5530]) -> [ABORT][161] ([Intel XE#5530])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1:
- shard-bmg: [DMESG-WARN][162] ([Intel XE#3876]) -> [DMESG-WARN][163] ([Intel XE#3876] / [Intel XE#3970]) +1 other test dmesg-warn
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-bmg-2/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: [DMESG-FAIL][164] ([Intel XE#3868] / [Intel XE#5213]) -> [DMESG-FAIL][165] ([Intel XE#3868] / [Intel XE#5213] / [Intel XE#5545]) +1 other test dmesg-fail
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687/shard-adlp-9/igt@xe_sriov_scheduling@equal-throughput.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[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#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#6050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6050
[Intel XE#6162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6162
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6325
[Intel XE#6386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6386
[Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687 -> xe-pw-156302v1
IGT_8594: 8594
xe-3961-fb0f56ad8a2c9953c57c3337a72ccbf9c5050687: fb0f56ad8a2c9953c57c3337a72ccbf9c5050687
xe-pw-156302v1: 156302v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v1/index.html
[-- Attachment #2: Type: text/html, Size: 64141 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ CI.checkpatch: warning for auxccs ci run no stolen (rev2)
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (16 preceding siblings ...)
2025-10-22 10:02 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-22 16:05 ` Patchwork
2025-10-22 16:07 ` ✓ CI.KUnit: success " Patchwork
` (6 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-22 16:05 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: auxccs ci run no stolen (rev2)
URL : https://patchwork.freedesktop.org/series/156302/
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
8677d3b99d5fd579c143b22605d99121e2482e8a
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 276a4d30b5635e69ff8c39a33eb403230377b79f
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date: Wed Oct 22 08:30:05 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 602d56f809ae2450a720a0fbedcfe84ff38ffb98 drm-intel
6f93ac639c16 drm/xe: Fix ggtt fb alignment
-:13: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report
#13:
Reported-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
8292a1393bfe drm/xe/xelpg: Flush CCS when flushing caches
7d42e0006ef2 drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
c6a298147998 drm/xe/xelp: Support auxccs invalidation on blitter
617ab596b529 drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
ec3cfea5f9b6 drm/xe/xelp: Wait for AuxCCS invalidation to complete
cf38dfec3e06 drm/xe: Export xe_emit_aux_table_inv
e7bcdd1f264d drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
da48b0af3dbc 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
28aa5dea315e drm/xe: Handle DPT in system memory
5eb3d31ec292 drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS
6d9d2c4af454 drm/xe/display: Add support for AuxCCS
276a4d30b563 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] 27+ messages in thread
* ✓ CI.KUnit: success for auxccs ci run no stolen (rev2)
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (17 preceding siblings ...)
2025-10-22 16:05 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen (rev2) Patchwork
@ 2025-10-22 16:07 ` Patchwork
2025-10-22 17:10 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-22 16:07 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: auxccs ci run no stolen (rev2)
URL : https://patchwork.freedesktop.org/series/156302/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:05:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:06:01] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[16:06:32] Starting KUnit Kernel (1/1)...
[16:06:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:06:32] ================== guc_buf (11 subtests) ===================
[16:06:32] [PASSED] test_smallest
[16:06:32] [PASSED] test_largest
[16:06:32] [PASSED] test_granular
[16:06:32] [PASSED] test_unique
[16:06:32] [PASSED] test_overlap
[16:06:32] [PASSED] test_reusable
[16:06:32] [PASSED] test_too_big
[16:06:32] [PASSED] test_flush
[16:06:32] [PASSED] test_lookup
[16:06:32] [PASSED] test_data
[16:06:32] [PASSED] test_class
[16:06:32] ===================== [PASSED] guc_buf =====================
[16:06:32] =================== guc_dbm (7 subtests) ===================
[16:06:32] [PASSED] test_empty
[16:06:32] [PASSED] test_default
[16:06:32] ======================== test_size ========================
[16:06:32] [PASSED] 4
[16:06:32] [PASSED] 8
[16:06:32] [PASSED] 32
[16:06:32] [PASSED] 256
[16:06:32] ==================== [PASSED] test_size ====================
[16:06:32] ======================= test_reuse ========================
[16:06:32] [PASSED] 4
[16:06:32] [PASSED] 8
[16:06:32] [PASSED] 32
[16:06:32] [PASSED] 256
[16:06:32] =================== [PASSED] test_reuse ====================
[16:06:32] =================== test_range_overlap ====================
[16:06:32] [PASSED] 4
[16:06:32] [PASSED] 8
[16:06:32] [PASSED] 32
[16:06:32] [PASSED] 256
[16:06:32] =============== [PASSED] test_range_overlap ================
[16:06:32] =================== test_range_compact ====================
[16:06:32] [PASSED] 4
[16:06:32] [PASSED] 8
[16:06:32] [PASSED] 32
[16:06:32] [PASSED] 256
[16:06:32] =============== [PASSED] test_range_compact ================
[16:06:32] ==================== test_range_spare =====================
[16:06:32] [PASSED] 4
[16:06:32] [PASSED] 8
[16:06:32] [PASSED] 32
[16:06:32] [PASSED] 256
[16:06:32] ================ [PASSED] test_range_spare =================
[16:06:32] ===================== [PASSED] guc_dbm =====================
[16:06:32] =================== guc_idm (6 subtests) ===================
[16:06:32] [PASSED] bad_init
[16:06:32] [PASSED] no_init
[16:06:32] [PASSED] init_fini
[16:06:32] [PASSED] check_used
[16:06:32] [PASSED] check_quota
[16:06:32] [PASSED] check_all
[16:06:32] ===================== [PASSED] guc_idm =====================
[16:06:32] ================== no_relay (3 subtests) ===================
[16:06:32] [PASSED] xe_drops_guc2pf_if_not_ready
[16:06:32] [PASSED] xe_drops_guc2vf_if_not_ready
[16:06:32] [PASSED] xe_rejects_send_if_not_ready
[16:06:32] ==================== [PASSED] no_relay =====================
[16:06:32] ================== pf_relay (14 subtests) ==================
[16:06:32] [PASSED] pf_rejects_guc2pf_too_short
[16:06:32] [PASSED] pf_rejects_guc2pf_too_long
[16:06:32] [PASSED] pf_rejects_guc2pf_no_payload
[16:06:32] [PASSED] pf_fails_no_payload
[16:06:32] [PASSED] pf_fails_bad_origin
[16:06:32] [PASSED] pf_fails_bad_type
[16:06:32] [PASSED] pf_txn_reports_error
[16:06:32] [PASSED] pf_txn_sends_pf2guc
[16:06:32] [PASSED] pf_sends_pf2guc
[16:06:32] [SKIPPED] pf_loopback_nop
[16:06:32] [SKIPPED] pf_loopback_echo
[16:06:32] [SKIPPED] pf_loopback_fail
[16:06:32] [SKIPPED] pf_loopback_busy
[16:06:32] [SKIPPED] pf_loopback_retry
[16:06:32] ==================== [PASSED] pf_relay =====================
[16:06:32] ================== vf_relay (3 subtests) ===================
[16:06:32] [PASSED] vf_rejects_guc2vf_too_short
[16:06:32] [PASSED] vf_rejects_guc2vf_too_long
[16:06:32] [PASSED] vf_rejects_guc2vf_no_payload
[16:06:32] ==================== [PASSED] vf_relay =====================
[16:06:32] ===================== lmtt (1 subtest) =====================
[16:06:32] ======================== test_ops =========================
[16:06:32] [PASSED] 2-level
[16:06:32] [PASSED] multi-level
[16:06:32] ==================== [PASSED] test_ops =====================
[16:06:32] ====================== [PASSED] lmtt =======================
[16:06:32] ================= pf_service (11 subtests) =================
[16:06:32] [PASSED] pf_negotiate_any
[16:06:32] [PASSED] pf_negotiate_base_match
[16:06:32] [PASSED] pf_negotiate_base_newer
[16:06:32] [PASSED] pf_negotiate_base_next
[16:06:32] [SKIPPED] pf_negotiate_base_older
[16:06:32] [PASSED] pf_negotiate_base_prev
[16:06:32] [PASSED] pf_negotiate_latest_match
[16:06:32] [PASSED] pf_negotiate_latest_newer
[16:06:32] [PASSED] pf_negotiate_latest_next
[16:06:32] [SKIPPED] pf_negotiate_latest_older
[16:06:32] [SKIPPED] pf_negotiate_latest_prev
[16:06:32] =================== [PASSED] pf_service ====================
[16:06:32] ================= xe_guc_g2g (2 subtests) ==================
[16:06:32] ============== xe_live_guc_g2g_kunit_default ==============
[16:06:32] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[16:06:32] ============== xe_live_guc_g2g_kunit_allmem ===============
[16:06:32] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[16:06:32] =================== [SKIPPED] xe_guc_g2g ===================
[16:06:32] =================== xe_mocs (2 subtests) ===================
[16:06:32] ================ xe_live_mocs_kernel_kunit ================
[16:06:32] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:06:32] ================ xe_live_mocs_reset_kunit =================
[16:06:32] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:06:32] ==================== [SKIPPED] xe_mocs =====================
[16:06:32] ================= xe_migrate (2 subtests) ==================
[16:06:32] ================= xe_migrate_sanity_kunit =================
[16:06:32] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:06:32] ================== xe_validate_ccs_kunit ==================
[16:06:32] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:06:32] =================== [SKIPPED] xe_migrate ===================
[16:06:32] ================== xe_dma_buf (1 subtest) ==================
[16:06:32] ==================== xe_dma_buf_kunit =====================
[16:06:32] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:06:32] =================== [SKIPPED] xe_dma_buf ===================
[16:06:32] ================= xe_bo_shrink (1 subtest) =================
[16:06:32] =================== xe_bo_shrink_kunit ====================
[16:06:32] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:06:32] ================== [SKIPPED] xe_bo_shrink ==================
[16:06:32] ==================== xe_bo (2 subtests) ====================
[16:06:32] ================== xe_ccs_migrate_kunit ===================
[16:06:32] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:06:32] ==================== xe_bo_evict_kunit ====================
[16:06:32] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:06:32] ===================== [SKIPPED] xe_bo ======================
[16:06:32] ==================== args (11 subtests) ====================
[16:06:32] [PASSED] count_args_test
[16:06:32] [PASSED] call_args_example
[16:06:32] [PASSED] call_args_test
[16:06:32] [PASSED] drop_first_arg_example
[16:06:32] [PASSED] drop_first_arg_test
[16:06:32] [PASSED] first_arg_example
[16:06:32] [PASSED] first_arg_test
[16:06:32] [PASSED] last_arg_example
[16:06:32] [PASSED] last_arg_test
[16:06:32] [PASSED] pick_arg_example
[16:06:32] [PASSED] sep_comma_example
[16:06:32] ====================== [PASSED] args =======================
[16:06:32] =================== xe_pci (3 subtests) ====================
[16:06:32] ==================== check_graphics_ip ====================
[16:06:32] [PASSED] 12.00 Xe_LP
[16:06:32] [PASSED] 12.10 Xe_LP+
[16:06:32] [PASSED] 12.55 Xe_HPG
[16:06:32] [PASSED] 12.60 Xe_HPC
[16:06:32] [PASSED] 12.70 Xe_LPG
[16:06:32] [PASSED] 12.71 Xe_LPG
[16:06:32] [PASSED] 12.74 Xe_LPG+
[16:06:32] [PASSED] 20.01 Xe2_HPG
[16:06:32] [PASSED] 20.02 Xe2_HPG
[16:06:32] [PASSED] 20.04 Xe2_LPG
[16:06:32] [PASSED] 30.00 Xe3_LPG
[16:06:32] [PASSED] 30.01 Xe3_LPG
[16:06:32] [PASSED] 30.03 Xe3_LPG
[16:06:32] [PASSED] 30.04 Xe3_LPG
[16:06:32] [PASSED] 30.05 Xe3_LPG
[16:06:32] [PASSED] 35.11 Xe3p_XPC
[16:06:32] ================ [PASSED] check_graphics_ip ================
[16:06:32] ===================== check_media_ip ======================
[16:06:32] [PASSED] 12.00 Xe_M
[16:06:32] [PASSED] 12.55 Xe_HPM
[16:06:32] [PASSED] 13.00 Xe_LPM+
[16:06:32] [PASSED] 13.01 Xe2_HPM
[16:06:32] [PASSED] 20.00 Xe2_LPM
[16:06:32] [PASSED] 30.00 Xe3_LPM
[16:06:32] [PASSED] 30.02 Xe3_LPM
[16:06:32] [PASSED] 35.00 Xe3p_LPM
[16:06:32] [PASSED] 35.03 Xe3p_HPM
[16:06:32] ================= [PASSED] check_media_ip ==================
[16:06:32] =================== check_platform_desc ===================
[16:06:32] [PASSED] 0x9A60 (TIGERLAKE)
[16:06:32] [PASSED] 0x9A68 (TIGERLAKE)
[16:06:32] [PASSED] 0x9A70 (TIGERLAKE)
[16:06:32] [PASSED] 0x9A40 (TIGERLAKE)
[16:06:32] [PASSED] 0x9A49 (TIGERLAKE)
[16:06:32] [PASSED] 0x9A59 (TIGERLAKE)
[16:06:32] [PASSED] 0x9A78 (TIGERLAKE)
[16:06:32] [PASSED] 0x9AC0 (TIGERLAKE)
[16:06:32] [PASSED] 0x9AC9 (TIGERLAKE)
[16:06:32] [PASSED] 0x9AD9 (TIGERLAKE)
[16:06:32] [PASSED] 0x9AF8 (TIGERLAKE)
[16:06:32] [PASSED] 0x4C80 (ROCKETLAKE)
[16:06:32] [PASSED] 0x4C8A (ROCKETLAKE)
[16:06:32] [PASSED] 0x4C8B (ROCKETLAKE)
[16:06:32] [PASSED] 0x4C8C (ROCKETLAKE)
[16:06:32] [PASSED] 0x4C90 (ROCKETLAKE)
[16:06:32] [PASSED] 0x4C9A (ROCKETLAKE)
[16:06:32] [PASSED] 0x4680 (ALDERLAKE_S)
[16:06:32] [PASSED] 0x4682 (ALDERLAKE_S)
[16:06:32] [PASSED] 0x4688 (ALDERLAKE_S)
[16:06:32] [PASSED] 0x468A (ALDERLAKE_S)
[16:06:32] [PASSED] 0x468B (ALDERLAKE_S)
[16:06:32] [PASSED] 0x4690 (ALDERLAKE_S)
[16:06:32] [PASSED] 0x4692 (ALDERLAKE_S)
[16:06:32] [PASSED] 0x4693 (ALDERLAKE_S)
[16:06:32] [PASSED] 0x46A0 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46A1 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46A2 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46A3 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46A6 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46A8 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46AA (ALDERLAKE_P)
[16:06:32] [PASSED] 0x462A (ALDERLAKE_P)
[16:06:32] [PASSED] 0x4626 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x4628 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46B0 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46B1 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46B2 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46B3 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46C0 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46C1 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46C2 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46C3 (ALDERLAKE_P)
[16:06:32] [PASSED] 0x46D0 (ALDERLAKE_N)
[16:06:32] [PASSED] 0x46D1 (ALDERLAKE_N)
[16:06:32] [PASSED] 0x46D2 (ALDERLAKE_N)
[16:06:32] [PASSED] 0x46D3 (ALDERLAKE_N)
[16:06:32] [PASSED] 0x46D4 (ALDERLAKE_N)
[16:06:32] [PASSED] 0xA721 (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA7A1 (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA7A9 (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA7AC (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA7AD (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA720 (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA7A0 (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA7A8 (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA7AA (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA7AB (ALDERLAKE_P)
[16:06:32] [PASSED] 0xA780 (ALDERLAKE_S)
[16:06:32] [PASSED] 0xA781 (ALDERLAKE_S)
[16:06:32] [PASSED] 0xA782 (ALDERLAKE_S)
[16:06:32] [PASSED] 0xA783 (ALDERLAKE_S)
[16:06:32] [PASSED] 0xA788 (ALDERLAKE_S)
[16:06:32] [PASSED] 0xA789 (ALDERLAKE_S)
[16:06:32] [PASSED] 0xA78A (ALDERLAKE_S)
[16:06:32] [PASSED] 0xA78B (ALDERLAKE_S)
[16:06:32] [PASSED] 0x4905 (DG1)
[16:06:32] [PASSED] 0x4906 (DG1)
[16:06:32] [PASSED] 0x4907 (DG1)
[16:06:32] [PASSED] 0x4908 (DG1)
[16:06:32] [PASSED] 0x4909 (DG1)
[16:06:32] [PASSED] 0x56C0 (DG2)
[16:06:32] [PASSED] 0x56C2 (DG2)
[16:06:32] [PASSED] 0x56C1 (DG2)
[16:06:32] [PASSED] 0x7D51 (METEORLAKE)
[16:06:32] [PASSED] 0x7DD1 (METEORLAKE)
[16:06:32] [PASSED] 0x7D41 (METEORLAKE)
[16:06:32] [PASSED] 0x7D67 (METEORLAKE)
[16:06:32] [PASSED] 0xB640 (METEORLAKE)
[16:06:32] [PASSED] 0x56A0 (DG2)
[16:06:32] [PASSED] 0x56A1 (DG2)
[16:06:32] [PASSED] 0x56A2 (DG2)
[16:06:32] [PASSED] 0x56BE (DG2)
[16:06:32] [PASSED] 0x56BF (DG2)
[16:06:32] [PASSED] 0x5690 (DG2)
[16:06:32] [PASSED] 0x5691 (DG2)
[16:06:32] [PASSED] 0x5692 (DG2)
[16:06:32] [PASSED] 0x56A5 (DG2)
[16:06:32] [PASSED] 0x56A6 (DG2)
[16:06:32] [PASSED] 0x56B0 (DG2)
[16:06:32] [PASSED] 0x56B1 (DG2)
[16:06:32] [PASSED] 0x56BA (DG2)
[16:06:32] [PASSED] 0x56BB (DG2)
[16:06:32] [PASSED] 0x56BC (DG2)
[16:06:32] [PASSED] 0x56BD (DG2)
[16:06:32] [PASSED] 0x5693 (DG2)
[16:06:32] [PASSED] 0x5694 (DG2)
[16:06:32] [PASSED] 0x5695 (DG2)
[16:06:32] [PASSED] 0x56A3 (DG2)
[16:06:32] [PASSED] 0x56A4 (DG2)
[16:06:32] [PASSED] 0x56B2 (DG2)
[16:06:32] [PASSED] 0x56B3 (DG2)
[16:06:32] [PASSED] 0x5696 (DG2)
[16:06:32] [PASSED] 0x5697 (DG2)
[16:06:32] [PASSED] 0xB69 (PVC)
[16:06:32] [PASSED] 0xB6E (PVC)
[16:06:32] [PASSED] 0xBD4 (PVC)
[16:06:32] [PASSED] 0xBD5 (PVC)
[16:06:32] [PASSED] 0xBD6 (PVC)
[16:06:32] [PASSED] 0xBD7 (PVC)
[16:06:32] [PASSED] 0xBD8 (PVC)
[16:06:32] [PASSED] 0xBD9 (PVC)
[16:06:32] [PASSED] 0xBDA (PVC)
[16:06:32] [PASSED] 0xBDB (PVC)
[16:06:32] [PASSED] 0xBE0 (PVC)
[16:06:32] [PASSED] 0xBE1 (PVC)
[16:06:32] [PASSED] 0xBE5 (PVC)
[16:06:32] [PASSED] 0x7D40 (METEORLAKE)
[16:06:32] [PASSED] 0x7D45 (METEORLAKE)
[16:06:32] [PASSED] 0x7D55 (METEORLAKE)
[16:06:32] [PASSED] 0x7D60 (METEORLAKE)
[16:06:32] [PASSED] 0x7DD5 (METEORLAKE)
[16:06:32] [PASSED] 0x6420 (LUNARLAKE)
[16:06:32] [PASSED] 0x64A0 (LUNARLAKE)
[16:06:32] [PASSED] 0x64B0 (LUNARLAKE)
[16:06:32] [PASSED] 0xE202 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE209 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE20B (BATTLEMAGE)
[16:06:32] [PASSED] 0xE20C (BATTLEMAGE)
[16:06:32] [PASSED] 0xE20D (BATTLEMAGE)
[16:06:32] [PASSED] 0xE210 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE211 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE212 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE216 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE220 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE221 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE222 (BATTLEMAGE)
[16:06:32] [PASSED] 0xE223 (BATTLEMAGE)
[16:06:32] [PASSED] 0xB080 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB081 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB082 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB083 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB084 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB085 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB086 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB087 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB08F (PANTHERLAKE)
[16:06:32] [PASSED] 0xB090 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB0A0 (PANTHERLAKE)
[16:06:32] [PASSED] 0xB0B0 (PANTHERLAKE)
[16:06:32] [PASSED] 0xFD80 (PANTHERLAKE)
[16:06:32] [PASSED] 0xFD81 (PANTHERLAKE)
[16:06:32] [PASSED] 0xD740 (NOVALAKE_S)
[16:06:32] [PASSED] 0xD741 (NOVALAKE_S)
[16:06:32] [PASSED] 0xD742 (NOVALAKE_S)
[16:06:32] [PASSED] 0xD743 (NOVALAKE_S)
[16:06:32] [PASSED] 0xD744 (NOVALAKE_S)
[16:06:32] [PASSED] 0xD745 (NOVALAKE_S)
[16:06:32] =============== [PASSED] check_platform_desc ===============
[16:06:32] ===================== [PASSED] xe_pci ======================
[16:06:32] =================== xe_rtp (2 subtests) ====================
[16:06:32] =============== xe_rtp_process_to_sr_tests ================
[16:06:32] [PASSED] coalesce-same-reg
[16:06:32] [PASSED] no-match-no-add
[16:06:32] [PASSED] match-or
[16:06:32] [PASSED] match-or-xfail
[16:06:32] [PASSED] no-match-no-add-multiple-rules
[16:06:32] [PASSED] two-regs-two-entries
[16:06:32] [PASSED] clr-one-set-other
[16:06:32] [PASSED] set-field
[16:06:32] [PASSED] conflict-duplicate
[16:06:32] [PASSED] conflict-not-disjoint
[16:06:32] [PASSED] conflict-reg-type
[16:06:32] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:06:32] ================== xe_rtp_process_tests ===================
[16:06:32] [PASSED] active1
[16:06:32] [PASSED] active2
[16:06:32] [PASSED] active-inactive
[16:06:32] [PASSED] inactive-active
[16:06:32] [PASSED] inactive-1st_or_active-inactive
[16:06:32] [PASSED] inactive-2nd_or_active-inactive
[16:06:32] [PASSED] inactive-last_or_active-inactive
[16:06:32] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[16:06:32] ============== [PASSED] xe_rtp_process_tests ===============
[16:06:32] ===================== [PASSED] xe_rtp ======================
[16:06:32] ==================== xe_wa (1 subtest) =====================
[16:06:32] ======================== xe_wa_gt =========================
[16:06:32] [PASSED] TIGERLAKE B0
[16:06:32] [PASSED] DG1 A0
[16:06:32] [PASSED] DG1 B0
[16:06:32] [PASSED] ALDERLAKE_S A0
[16:06:32] [PASSED] ALDERLAKE_S B0
[16:06:32] [PASSED] ALDERLAKE_S C0
[16:06:32] [PASSED] ALDERLAKE_S D0
[16:06:32] [PASSED] ALDERLAKE_P A0
[16:06:32] [PASSED] ALDERLAKE_P B0
[16:06:32] [PASSED] ALDERLAKE_P C0
[16:06:32] [PASSED] ALDERLAKE_S RPLS D0
[16:06:32] [PASSED] ALDERLAKE_P RPLU E0
[16:06:32] [PASSED] DG2 G10 C0
[16:06:32] [PASSED] DG2 G11 B1
[16:06:32] [PASSED] DG2 G12 A1
[16:06:32] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:06:32] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:06:32] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[16:06:32] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[16:06:32] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[16:06:32] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[16:06:32] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[16:06:32] ==================== [PASSED] xe_wa_gt =====================
[16:06:32] ====================== [PASSED] xe_wa ======================
[16:06:32] ============================================================
[16:06:32] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[16:06:32] Elapsed time: 35.078s total, 4.222s configuring, 30.490s building, 0.336s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:06:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:06:34] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[16:06:59] Starting KUnit Kernel (1/1)...
[16:06:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:06:59] ============ drm_test_pick_cmdline (2 subtests) ============
[16:06:59] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[16:06:59] =============== drm_test_pick_cmdline_named ===============
[16:06:59] [PASSED] NTSC
[16:06:59] [PASSED] NTSC-J
[16:06:59] [PASSED] PAL
[16:06:59] [PASSED] PAL-M
[16:06:59] =========== [PASSED] drm_test_pick_cmdline_named ===========
[16:06:59] ============== [PASSED] drm_test_pick_cmdline ==============
[16:06:59] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:06:59] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:06:59] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:06:59] =========== drm_validate_clone_mode (2 subtests) ===========
[16:06:59] ============== drm_test_check_in_clone_mode ===============
[16:06:59] [PASSED] in_clone_mode
[16:06:59] [PASSED] not_in_clone_mode
[16:06:59] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:06:59] =============== drm_test_check_valid_clones ===============
[16:06:59] [PASSED] not_in_clone_mode
[16:06:59] [PASSED] valid_clone
[16:06:59] [PASSED] invalid_clone
[16:06:59] =========== [PASSED] drm_test_check_valid_clones ===========
[16:06:59] ============= [PASSED] drm_validate_clone_mode =============
[16:06:59] ============= drm_validate_modeset (1 subtest) =============
[16:06:59] [PASSED] drm_test_check_connector_changed_modeset
[16:06:59] ============== [PASSED] drm_validate_modeset ===============
[16:06:59] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:06:59] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:06:59] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:06:59] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:06:59] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:06:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:06:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:06:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:06:59] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:06:59] ============== drm_bridge_alloc (2 subtests) ===============
[16:06:59] [PASSED] drm_test_drm_bridge_alloc_basic
[16:06:59] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:06:59] ================ [PASSED] drm_bridge_alloc =================
[16:06:59] ================== drm_buddy (8 subtests) ==================
[16:06:59] [PASSED] drm_test_buddy_alloc_limit
[16:06:59] [PASSED] drm_test_buddy_alloc_optimistic
[16:06:59] [PASSED] drm_test_buddy_alloc_pessimistic
[16:06:59] [PASSED] drm_test_buddy_alloc_pathological
[16:06:59] [PASSED] drm_test_buddy_alloc_contiguous
[16:06:59] [PASSED] drm_test_buddy_alloc_clear
[16:06:59] [PASSED] drm_test_buddy_alloc_range_bias
[16:06:59] [PASSED] drm_test_buddy_fragmentation_performance
[16:06:59] ==================== [PASSED] drm_buddy ====================
[16:06:59] ============= drm_cmdline_parser (40 subtests) =============
[16:06:59] [PASSED] drm_test_cmdline_force_d_only
[16:06:59] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:06:59] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:06:59] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:06:59] [PASSED] drm_test_cmdline_force_e_only
[16:06:59] [PASSED] drm_test_cmdline_res
[16:06:59] [PASSED] drm_test_cmdline_res_vesa
[16:06:59] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:06:59] [PASSED] drm_test_cmdline_res_rblank
[16:06:59] [PASSED] drm_test_cmdline_res_bpp
[16:06:59] [PASSED] drm_test_cmdline_res_refresh
[16:06:59] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:06:59] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:06:59] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:06:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:06:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:06:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:06:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:06:59] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:06:59] [PASSED] drm_test_cmdline_res_margins_force_on
[16:06:59] [PASSED] drm_test_cmdline_res_vesa_margins
[16:06:59] [PASSED] drm_test_cmdline_name
[16:06:59] [PASSED] drm_test_cmdline_name_bpp
[16:06:59] [PASSED] drm_test_cmdline_name_option
[16:06:59] [PASSED] drm_test_cmdline_name_bpp_option
[16:06:59] [PASSED] drm_test_cmdline_rotate_0
[16:06:59] [PASSED] drm_test_cmdline_rotate_90
[16:06:59] [PASSED] drm_test_cmdline_rotate_180
[16:06:59] [PASSED] drm_test_cmdline_rotate_270
[16:06:59] [PASSED] drm_test_cmdline_hmirror
[16:06:59] [PASSED] drm_test_cmdline_vmirror
[16:06:59] [PASSED] drm_test_cmdline_margin_options
[16:06:59] [PASSED] drm_test_cmdline_multiple_options
[16:06:59] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:06:59] [PASSED] drm_test_cmdline_extra_and_option
[16:06:59] [PASSED] drm_test_cmdline_freestanding_options
[16:06:59] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:06:59] [PASSED] drm_test_cmdline_panel_orientation
[16:06:59] ================ drm_test_cmdline_invalid =================
[16:06:59] [PASSED] margin_only
[16:06:59] [PASSED] interlace_only
[16:06:59] [PASSED] res_missing_x
[16:06:59] [PASSED] res_missing_y
[16:06:59] [PASSED] res_bad_y
[16:06:59] [PASSED] res_missing_y_bpp
[16:06:59] [PASSED] res_bad_bpp
[16:06:59] [PASSED] res_bad_refresh
[16:06:59] [PASSED] res_bpp_refresh_force_on_off
[16:06:59] [PASSED] res_invalid_mode
[16:06:59] [PASSED] res_bpp_wrong_place_mode
[16:06:59] [PASSED] name_bpp_refresh
[16:06:59] [PASSED] name_refresh
[16:06:59] [PASSED] name_refresh_wrong_mode
[16:06:59] [PASSED] name_refresh_invalid_mode
[16:06:59] [PASSED] rotate_multiple
[16:06:59] [PASSED] rotate_invalid_val
[16:06:59] [PASSED] rotate_truncated
[16:06:59] [PASSED] invalid_option
[16:06:59] [PASSED] invalid_tv_option
[16:06:59] [PASSED] truncated_tv_option
[16:06:59] ============ [PASSED] drm_test_cmdline_invalid =============
[16:06:59] =============== drm_test_cmdline_tv_options ===============
[16:06:59] [PASSED] NTSC
[16:06:59] [PASSED] NTSC_443
[16:06:59] [PASSED] NTSC_J
[16:06:59] [PASSED] PAL
[16:06:59] [PASSED] PAL_M
[16:06:59] [PASSED] PAL_N
[16:06:59] [PASSED] SECAM
[16:06:59] [PASSED] MONO_525
[16:06:59] [PASSED] MONO_625
[16:06:59] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:06:59] =============== [PASSED] drm_cmdline_parser ================
[16:06:59] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:06:59] [PASSED] drm_test_connector_hdmi_init_valid
[16:06:59] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:06:59] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:06:59] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:06:59] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:06:59] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:06:59] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:06:59] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:06:59] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:06:59] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:06:59] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:06:59] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:06:59] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:06:59] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:06:59] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:06:59] [PASSED] drm_test_connector_hdmi_init_null_product
[16:06:59] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:06:59] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:06:59] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:06:59] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:06:59] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:06:59] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:06:59] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:06:59] ========= drm_test_connector_hdmi_init_type_valid =========
[16:06:59] [PASSED] HDMI-A
[16:06:59] [PASSED] HDMI-B
[16:06:59] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:06:59] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:06:59] [PASSED] Unknown
[16:06:59] [PASSED] VGA
[16:06:59] [PASSED] DVI-I
[16:06:59] [PASSED] DVI-D
[16:06:59] [PASSED] DVI-A
[16:06:59] [PASSED] Composite
[16:06:59] [PASSED] SVIDEO
[16:06:59] [PASSED] LVDS
[16:06:59] [PASSED] Component
[16:06:59] [PASSED] DIN
[16:06:59] [PASSED] DP
[16:06:59] [PASSED] TV
[16:06:59] [PASSED] eDP
[16:06:59] [PASSED] Virtual
[16:06:59] [PASSED] DSI
[16:06:59] [PASSED] DPI
[16:06:59] [PASSED] Writeback
[16:06:59] [PASSED] SPI
[16:06:59] [PASSED] USB
[16:06:59] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:06:59] ============ [PASSED] drmm_connector_hdmi_init =============
[16:06:59] ============= drmm_connector_init (3 subtests) =============
[16:06:59] [PASSED] drm_test_drmm_connector_init
[16:06:59] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:06:59] ========= drm_test_drmm_connector_init_type_valid =========
[16:06:59] [PASSED] Unknown
[16:06:59] [PASSED] VGA
[16:06:59] [PASSED] DVI-I
[16:06:59] [PASSED] DVI-D
[16:06:59] [PASSED] DVI-A
[16:06:59] [PASSED] Composite
[16:06:59] [PASSED] SVIDEO
[16:06:59] [PASSED] LVDS
[16:06:59] [PASSED] Component
[16:06:59] [PASSED] DIN
[16:06:59] [PASSED] DP
[16:06:59] [PASSED] HDMI-A
[16:06:59] [PASSED] HDMI-B
[16:06:59] [PASSED] TV
[16:06:59] [PASSED] eDP
[16:06:59] [PASSED] Virtual
[16:06:59] [PASSED] DSI
[16:06:59] [PASSED] DPI
[16:06:59] [PASSED] Writeback
[16:06:59] [PASSED] SPI
[16:06:59] [PASSED] USB
[16:06:59] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:06:59] =============== [PASSED] drmm_connector_init ===============
[16:06:59] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_init
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:06:59] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:06:59] [PASSED] Unknown
[16:06:59] [PASSED] VGA
[16:06:59] [PASSED] DVI-I
[16:06:59] [PASSED] DVI-D
[16:06:59] [PASSED] DVI-A
[16:06:59] [PASSED] Composite
[16:06:59] [PASSED] SVIDEO
[16:06:59] [PASSED] LVDS
[16:06:59] [PASSED] Component
[16:06:59] [PASSED] DIN
[16:06:59] [PASSED] DP
[16:06:59] [PASSED] HDMI-A
[16:06:59] [PASSED] HDMI-B
[16:06:59] [PASSED] TV
[16:06:59] [PASSED] eDP
[16:06:59] [PASSED] Virtual
[16:06:59] [PASSED] DSI
[16:06:59] [PASSED] DPI
[16:06:59] [PASSED] Writeback
[16:06:59] [PASSED] SPI
[16:06:59] [PASSED] USB
[16:06:59] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:06:59] ======== drm_test_drm_connector_dynamic_init_name =========
[16:06:59] [PASSED] Unknown
[16:06:59] [PASSED] VGA
[16:06:59] [PASSED] DVI-I
[16:06:59] [PASSED] DVI-D
[16:06:59] [PASSED] DVI-A
[16:06:59] [PASSED] Composite
[16:06:59] [PASSED] SVIDEO
[16:06:59] [PASSED] LVDS
[16:06:59] [PASSED] Component
[16:06:59] [PASSED] DIN
[16:06:59] [PASSED] DP
[16:06:59] [PASSED] HDMI-A
[16:06:59] [PASSED] HDMI-B
[16:06:59] [PASSED] TV
[16:06:59] [PASSED] eDP
[16:06:59] [PASSED] Virtual
[16:06:59] [PASSED] DSI
[16:06:59] [PASSED] DPI
[16:06:59] [PASSED] Writeback
[16:06:59] [PASSED] SPI
[16:06:59] [PASSED] USB
[16:06:59] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:06:59] =========== [PASSED] drm_connector_dynamic_init ============
[16:06:59] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:06:59] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:06:59] ======= drm_connector_dynamic_register (7 subtests) ========
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:06:59] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:06:59] ========= [PASSED] drm_connector_dynamic_register ==========
[16:06:59] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:06:59] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:06:59] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:06:59] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:06:59] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:06:59] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:06:59] [PASSED] NTSC
[16:06:59] [PASSED] NTSC-443
[16:06:59] [PASSED] NTSC-J
[16:06:59] [PASSED] PAL
[16:06:59] [PASSED] PAL-M
[16:06:59] [PASSED] PAL-N
[16:06:59] [PASSED] SECAM
[16:06:59] [PASSED] Mono
[16:06:59] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:06:59] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:06:59] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:06:59] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:06:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:06:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:06:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:06:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:06:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:06:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:06:59] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:06:59] [PASSED] VIC 96
[16:06:59] [PASSED] VIC 97
[16:06:59] [PASSED] VIC 101
[16:06:59] [PASSED] VIC 102
[16:06:59] [PASSED] VIC 106
[16:06:59] [PASSED] VIC 107
[16:06:59] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:06:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:06:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:06:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:06:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:06:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:06:59] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:06:59] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:06:59] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:06:59] [PASSED] Automatic
[16:06:59] [PASSED] Full
[16:06:59] [PASSED] Limited 16:235
[16:06:59] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:06:59] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:06:59] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:06:59] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:06:59] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:06:59] [PASSED] RGB
[16:06:59] [PASSED] YUV 4:2:0
[16:06:59] [PASSED] YUV 4:2:2
[16:06:59] [PASSED] YUV 4:4:4
[16:06:59] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:06:59] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:06:59] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:06:59] ============= drm_damage_helper (21 subtests) ==============
[16:06:59] [PASSED] drm_test_damage_iter_no_damage
[16:06:59] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:06:59] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:06:59] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:06:59] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:06:59] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:06:59] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:06:59] [PASSED] drm_test_damage_iter_simple_damage
[16:06:59] [PASSED] drm_test_damage_iter_single_damage
[16:06:59] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:06:59] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:06:59] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:06:59] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:06:59] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:06:59] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:06:59] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:06:59] [PASSED] drm_test_damage_iter_damage
[16:06:59] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:06:59] [PASSED] drm_test_damage_iter_damage_one_outside
[16:06:59] [PASSED] drm_test_damage_iter_damage_src_moved
[16:06:59] [PASSED] drm_test_damage_iter_damage_not_visible
[16:06:59] ================ [PASSED] drm_damage_helper ================
[16:06:59] ============== drm_dp_mst_helper (3 subtests) ==============
[16:06:59] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:06:59] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:06:59] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:06:59] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:06:59] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:06:59] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:06:59] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:06:59] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:06:59] [PASSED] Link rate 2000000 lane count 4
[16:06:59] [PASSED] Link rate 2000000 lane count 2
[16:06:59] [PASSED] Link rate 2000000 lane count 1
[16:06:59] [PASSED] Link rate 1350000 lane count 4
[16:06:59] [PASSED] Link rate 1350000 lane count 2
[16:06:59] [PASSED] Link rate 1350000 lane count 1
[16:06:59] [PASSED] Link rate 1000000 lane count 4
[16:06:59] [PASSED] Link rate 1000000 lane count 2
[16:06:59] [PASSED] Link rate 1000000 lane count 1
[16:06:59] [PASSED] Link rate 810000 lane count 4
[16:06:59] [PASSED] Link rate 810000 lane count 2
[16:06:59] [PASSED] Link rate 810000 lane count 1
[16:06:59] [PASSED] Link rate 540000 lane count 4
[16:06:59] [PASSED] Link rate 540000 lane count 2
[16:06:59] [PASSED] Link rate 540000 lane count 1
[16:06:59] [PASSED] Link rate 270000 lane count 4
[16:06:59] [PASSED] Link rate 270000 lane count 2
[16:06:59] [PASSED] Link rate 270000 lane count 1
[16:06:59] [PASSED] Link rate 162000 lane count 4
[16:06:59] [PASSED] Link rate 162000 lane count 2
[16:06:59] [PASSED] Link rate 162000 lane count 1
[16:06:59] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:06:59] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:06:59] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:06:59] [PASSED] DP_POWER_UP_PHY with port number
[16:06:59] [PASSED] DP_POWER_DOWN_PHY with port number
[16:06:59] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:06:59] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:06:59] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:06:59] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:06:59] [PASSED] DP_QUERY_PAYLOAD with port number
[16:06:59] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:06:59] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:06:59] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:06:59] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:06:59] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:06:59] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:06:59] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:06:59] [PASSED] DP_REMOTE_I2C_READ with port number
[16:06:59] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:06:59] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:06:59] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:06:59] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:06:59] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:06:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:06:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:06:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:06:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:06:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:06:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:06:59] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:06:59] ================ [PASSED] drm_dp_mst_helper ================
[16:06:59] ================== drm_exec (7 subtests) ===================
[16:06:59] [PASSED] sanitycheck
[16:06:59] [PASSED] test_lock
[16:06:59] [PASSED] test_lock_unlock
[16:06:59] [PASSED] test_duplicates
[16:06:59] [PASSED] test_prepare
[16:06:59] [PASSED] test_prepare_array
[16:06:59] [PASSED] test_multiple_loops
[16:06:59] ==================== [PASSED] drm_exec =====================
[16:06:59] =========== drm_format_helper_test (17 subtests) ===========
[16:06:59] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:06:59] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:06:59] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:06:59] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:06:59] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:06:59] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:06:59] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:06:59] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:06:59] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:06:59] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:06:59] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:06:59] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:06:59] ==================== drm_test_fb_swab =====================
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ================ [PASSED] drm_test_fb_swab =================
[16:06:59] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:06:59] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:06:59] [PASSED] single_pixel_source_buffer
[16:06:59] [PASSED] single_pixel_clip_rectangle
[16:06:59] [PASSED] well_known_colors
[16:06:59] [PASSED] destination_pitch
[16:06:59] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:06:59] ================= drm_test_fb_clip_offset =================
[16:06:59] [PASSED] pass through
[16:06:59] [PASSED] horizontal offset
[16:06:59] [PASSED] vertical offset
[16:06:59] [PASSED] horizontal and vertical offset
[16:06:59] [PASSED] horizontal offset (custom pitch)
[16:06:59] [PASSED] vertical offset (custom pitch)
[16:06:59] [PASSED] horizontal and vertical offset (custom pitch)
[16:06:59] ============= [PASSED] drm_test_fb_clip_offset =============
[16:06:59] =================== drm_test_fb_memcpy ====================
[16:06:59] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:06:59] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:06:59] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:06:59] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:06:59] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:06:59] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:06:59] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:06:59] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:06:59] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:06:59] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:06:59] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:06:59] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:06:59] =============== [PASSED] drm_test_fb_memcpy ================
[16:06:59] ============= [PASSED] drm_format_helper_test ==============
[16:06:59] ================= drm_format (18 subtests) =================
[16:06:59] [PASSED] drm_test_format_block_width_invalid
[16:06:59] [PASSED] drm_test_format_block_width_one_plane
[16:06:59] [PASSED] drm_test_format_block_width_two_plane
[16:06:59] [PASSED] drm_test_format_block_width_three_plane
[16:06:59] [PASSED] drm_test_format_block_width_tiled
[16:06:59] [PASSED] drm_test_format_block_height_invalid
[16:06:59] [PASSED] drm_test_format_block_height_one_plane
[16:06:59] [PASSED] drm_test_format_block_height_two_plane
[16:06:59] [PASSED] drm_test_format_block_height_three_plane
[16:06:59] [PASSED] drm_test_format_block_height_tiled
[16:06:59] [PASSED] drm_test_format_min_pitch_invalid
[16:06:59] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:06:59] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:06:59] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:06:59] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:06:59] [PASSED] drm_test_format_min_pitch_two_plane
[16:06:59] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:06:59] [PASSED] drm_test_format_min_pitch_tiled
[16:06:59] =================== [PASSED] drm_format ====================
[16:06:59] ============== drm_framebuffer (10 subtests) ===============
[16:06:59] ========== drm_test_framebuffer_check_src_coords ==========
[16:06:59] [PASSED] Success: source fits into fb
[16:06:59] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:06:59] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:06:59] [PASSED] Fail: overflowing fb with source width
[16:06:59] [PASSED] Fail: overflowing fb with source height
[16:06:59] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:06:59] [PASSED] drm_test_framebuffer_cleanup
[16:06:59] =============== drm_test_framebuffer_create ===============
[16:06:59] [PASSED] ABGR8888 normal sizes
[16:06:59] [PASSED] ABGR8888 max sizes
[16:06:59] [PASSED] ABGR8888 pitch greater than min required
[16:06:59] [PASSED] ABGR8888 pitch less than min required
[16:06:59] [PASSED] ABGR8888 Invalid width
[16:06:59] [PASSED] ABGR8888 Invalid buffer handle
[16:06:59] [PASSED] No pixel format
[16:06:59] [PASSED] ABGR8888 Width 0
[16:06:59] [PASSED] ABGR8888 Height 0
[16:06:59] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:06:59] [PASSED] ABGR8888 Large buffer offset
[16:06:59] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:06:59] [PASSED] ABGR8888 Invalid flag
[16:06:59] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:06:59] [PASSED] ABGR8888 Valid buffer modifier
[16:06:59] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:06:59] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:06:59] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:06:59] [PASSED] NV12 Normal sizes
[16:06:59] [PASSED] NV12 Max sizes
[16:06:59] [PASSED] NV12 Invalid pitch
[16:06:59] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:06:59] [PASSED] NV12 different modifier per-plane
[16:06:59] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:06:59] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:06:59] [PASSED] NV12 Modifier for inexistent plane
[16:06:59] [PASSED] NV12 Handle for inexistent plane
[16:06:59] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:06:59] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:06:59] [PASSED] YVU420 Normal sizes
[16:06:59] [PASSED] YVU420 Max sizes
[16:06:59] [PASSED] YVU420 Invalid pitch
[16:06:59] [PASSED] YVU420 Different pitches
[16:06:59] [PASSED] YVU420 Different buffer offsets/pitches
[16:06:59] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:06:59] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:06:59] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:06:59] [PASSED] YVU420 Valid modifier
[16:06:59] [PASSED] YVU420 Different modifiers per plane
[16:06:59] [PASSED] YVU420 Modifier for inexistent plane
[16:06:59] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:06:59] [PASSED] X0L2 Normal sizes
[16:06:59] [PASSED] X0L2 Max sizes
[16:06:59] [PASSED] X0L2 Invalid pitch
[16:06:59] [PASSED] X0L2 Pitch greater than minimum required
[16:06:59] [PASSED] X0L2 Handle for inexistent plane
[16:06:59] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:06:59] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:06:59] [PASSED] X0L2 Valid modifier
[16:06:59] [PASSED] X0L2 Modifier for inexistent plane
[16:06:59] =========== [PASSED] drm_test_framebuffer_create ===========
[16:06:59] [PASSED] drm_test_framebuffer_free
[16:06:59] [PASSED] drm_test_framebuffer_init
[16:06:59] [PASSED] drm_test_framebuffer_init_bad_format
[16:06:59] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:06:59] [PASSED] drm_test_framebuffer_lookup
[16:06:59] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:06:59] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:06:59] ================= [PASSED] drm_framebuffer =================
[16:06:59] ================ drm_gem_shmem (8 subtests) ================
[16:06:59] [PASSED] drm_gem_shmem_test_obj_create
[16:06:59] [PASSED] drm_gem_shmem_test_obj_create_private
[16:06:59] [PASSED] drm_gem_shmem_test_pin_pages
[16:06:59] [PASSED] drm_gem_shmem_test_vmap
[16:06:59] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:06:59] [PASSED] drm_gem_shmem_test_get_sg_table
[16:06:59] [PASSED] drm_gem_shmem_test_madvise
[16:06:59] [PASSED] drm_gem_shmem_test_purge
[16:06:59] ================== [PASSED] drm_gem_shmem ==================
[16:06:59] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:06:59] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[16:06:59] [PASSED] Automatic
[16:06:59] [PASSED] Full
[16:06:59] [PASSED] Limited 16:235
[16:06:59] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:06:59] [PASSED] drm_test_check_disable_connector
[16:06:59] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:06:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:06:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:06:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:06:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:06:59] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:06:59] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:06:59] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:06:59] [PASSED] drm_test_check_output_bpc_dvi
[16:06:59] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:06:59] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:06:59] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:06:59] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:06:59] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:06:59] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:06:59] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:06:59] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:06:59] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:06:59] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:06:59] [PASSED] drm_test_check_broadcast_rgb_value
[16:06:59] [PASSED] drm_test_check_bpc_8_value
[16:06:59] [PASSED] drm_test_check_bpc_10_value
[16:06:59] [PASSED] drm_test_check_bpc_12_value
[16:06:59] [PASSED] drm_test_check_format_value
[16:06:59] [PASSED] drm_test_check_tmds_char_value
[16:06:59] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:06:59] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:06:59] [PASSED] drm_test_check_mode_valid
[16:06:59] [PASSED] drm_test_check_mode_valid_reject
[16:06:59] [PASSED] drm_test_check_mode_valid_reject_rate
[16:06:59] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:06:59] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:06:59] ================= drm_managed (2 subtests) =================
[16:06:59] [PASSED] drm_test_managed_release_action
[16:06:59] [PASSED] drm_test_managed_run_action
[16:06:59] =================== [PASSED] drm_managed ===================
[16:06:59] =================== drm_mm (6 subtests) ====================
[16:06:59] [PASSED] drm_test_mm_init
[16:06:59] [PASSED] drm_test_mm_debug
[16:06:59] [PASSED] drm_test_mm_align32
[16:06:59] [PASSED] drm_test_mm_align64
[16:06:59] [PASSED] drm_test_mm_lowest
[16:06:59] [PASSED] drm_test_mm_highest
[16:06:59] ===================== [PASSED] drm_mm ======================
[16:06:59] ============= drm_modes_analog_tv (5 subtests) =============
[16:06:59] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:06:59] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:06:59] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:06:59] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:06:59] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:06:59] =============== [PASSED] drm_modes_analog_tv ===============
[16:06:59] ============== drm_plane_helper (2 subtests) ===============
[16:06:59] =============== drm_test_check_plane_state ================
[16:06:59] [PASSED] clipping_simple
[16:06:59] [PASSED] clipping_rotate_reflect
[16:06:59] [PASSED] positioning_simple
[16:06:59] [PASSED] upscaling
[16:06:59] [PASSED] downscaling
[16:06:59] [PASSED] rounding1
[16:06:59] [PASSED] rounding2
[16:06:59] [PASSED] rounding3
[16:06:59] [PASSED] rounding4
[16:06:59] =========== [PASSED] drm_test_check_plane_state ============
[16:06:59] =========== drm_test_check_invalid_plane_state ============
[16:06:59] [PASSED] positioning_invalid
[16:06:59] [PASSED] upscaling_invalid
[16:06:59] [PASSED] downscaling_invalid
[16:06:59] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:06:59] ================ [PASSED] drm_plane_helper =================
[16:06:59] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:06:59] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:06:59] [PASSED] None
[16:06:59] [PASSED] PAL
[16:06:59] [PASSED] NTSC
[16:06:59] [PASSED] Both, NTSC Default
[16:06:59] [PASSED] Both, PAL Default
[16:06:59] [PASSED] Both, NTSC Default, with PAL on command-line
[16:06:59] [PASSED] Both, PAL Default, with NTSC on command-line
[16:06:59] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:06:59] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:06:59] ================== drm_rect (9 subtests) ===================
[16:06:59] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:06:59] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:06:59] [PASSED] drm_test_rect_clip_scaled_clipped
[16:06:59] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:06:59] ================= drm_test_rect_intersect =================
[16:06:59] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:06:59] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:06:59] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:06:59] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:06:59] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:06:59] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:06:59] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:06:59] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:06:59] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:06:59] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:06:59] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:06:59] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:06:59] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:06:59] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:06:59] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:06:59] ============= [PASSED] drm_test_rect_intersect =============
[16:06:59] ================ drm_test_rect_calc_hscale ================
[16:06:59] [PASSED] normal use
[16:06:59] [PASSED] out of max range
[16:06:59] [PASSED] out of min range
[16:06:59] [PASSED] zero dst
[16:06:59] [PASSED] negative src
[16:06:59] [PASSED] negative dst
[16:06:59] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:06:59] ================ drm_test_rect_calc_vscale ================
[16:06:59] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[16:06:59] [PASSED] out of max range
[16:06:59] [PASSED] out of min range
[16:06:59] [PASSED] zero dst
[16:06:59] [PASSED] negative src
[16:06:59] [PASSED] negative dst
[16:06:59] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:06:59] ================== drm_test_rect_rotate ===================
[16:06:59] [PASSED] reflect-x
[16:06:59] [PASSED] reflect-y
[16:06:59] [PASSED] rotate-0
[16:06:59] [PASSED] rotate-90
[16:06:59] [PASSED] rotate-180
[16:06:59] [PASSED] rotate-270
[16:06:59] ============== [PASSED] drm_test_rect_rotate ===============
[16:06:59] ================ drm_test_rect_rotate_inv =================
[16:06:59] [PASSED] reflect-x
[16:06:59] [PASSED] reflect-y
[16:06:59] [PASSED] rotate-0
[16:06:59] [PASSED] rotate-90
[16:06:59] [PASSED] rotate-180
[16:06:59] [PASSED] rotate-270
[16:06:59] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:06:59] ==================== [PASSED] drm_rect =====================
[16:06:59] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:06:59] ============ drm_test_sysfb_build_fourcc_list =============
[16:06:59] [PASSED] no native formats
[16:06:59] [PASSED] XRGB8888 as native format
[16:06:59] [PASSED] remove duplicates
[16:06:59] [PASSED] convert alpha formats
[16:06:59] [PASSED] random formats
[16:06:59] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:06:59] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:06:59] ============================================================
[16:06:59] Testing complete. Ran 622 tests: passed: 622
[16:06:59] Elapsed time: 27.087s total, 1.706s configuring, 24.964s building, 0.383s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:07:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:07:01] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[16:07:11] Starting KUnit Kernel (1/1)...
[16:07:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:07:11] ================= ttm_device (5 subtests) ==================
[16:07:11] [PASSED] ttm_device_init_basic
[16:07:11] [PASSED] ttm_device_init_multiple
[16:07:11] [PASSED] ttm_device_fini_basic
[16:07:11] [PASSED] ttm_device_init_no_vma_man
[16:07:11] ================== ttm_device_init_pools ==================
[16:07:11] [PASSED] No DMA allocations, no DMA32 required
[16:07:11] [PASSED] DMA allocations, DMA32 required
[16:07:11] [PASSED] No DMA allocations, DMA32 required
[16:07:11] [PASSED] DMA allocations, no DMA32 required
[16:07:11] ============== [PASSED] ttm_device_init_pools ==============
[16:07:11] =================== [PASSED] ttm_device ====================
[16:07:11] ================== ttm_pool (8 subtests) ===================
[16:07:11] ================== ttm_pool_alloc_basic ===================
[16:07:11] [PASSED] One page
[16:07:11] [PASSED] More than one page
[16:07:11] [PASSED] Above the allocation limit
[16:07:11] [PASSED] One page, with coherent DMA mappings enabled
[16:07:11] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:07:11] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:07:11] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:07:11] [PASSED] One page
[16:07:11] [PASSED] More than one page
[16:07:11] [PASSED] Above the allocation limit
[16:07:11] [PASSED] One page, with coherent DMA mappings enabled
[16:07:11] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:07:11] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:07:11] [PASSED] ttm_pool_alloc_order_caching_match
[16:07:11] [PASSED] ttm_pool_alloc_caching_mismatch
[16:07:11] [PASSED] ttm_pool_alloc_order_mismatch
[16:07:11] [PASSED] ttm_pool_free_dma_alloc
[16:07:11] [PASSED] ttm_pool_free_no_dma_alloc
[16:07:11] [PASSED] ttm_pool_fini_basic
[16:07:11] ==================== [PASSED] ttm_pool =====================
[16:07:11] ================ ttm_resource (8 subtests) =================
[16:07:11] ================= ttm_resource_init_basic =================
[16:07:11] [PASSED] Init resource in TTM_PL_SYSTEM
[16:07:11] [PASSED] Init resource in TTM_PL_VRAM
[16:07:11] [PASSED] Init resource in a private placement
[16:07:11] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:07:11] ============= [PASSED] ttm_resource_init_basic =============
[16:07:11] [PASSED] ttm_resource_init_pinned
[16:07:11] [PASSED] ttm_resource_fini_basic
[16:07:11] [PASSED] ttm_resource_manager_init_basic
[16:07:11] [PASSED] ttm_resource_manager_usage_basic
[16:07:11] [PASSED] ttm_resource_manager_set_used_basic
[16:07:11] [PASSED] ttm_sys_man_alloc_basic
[16:07:11] [PASSED] ttm_sys_man_free_basic
[16:07:11] ================== [PASSED] ttm_resource ===================
[16:07:11] =================== ttm_tt (15 subtests) ===================
[16:07:11] ==================== ttm_tt_init_basic ====================
[16:07:11] [PASSED] Page-aligned size
[16:07:11] [PASSED] Extra pages requested
[16:07:11] ================ [PASSED] ttm_tt_init_basic ================
[16:07:11] [PASSED] ttm_tt_init_misaligned
[16:07:11] [PASSED] ttm_tt_fini_basic
[16:07:11] [PASSED] ttm_tt_fini_sg
[16:07:11] [PASSED] ttm_tt_fini_shmem
[16:07:11] [PASSED] ttm_tt_create_basic
[16:07:11] [PASSED] ttm_tt_create_invalid_bo_type
[16:07:11] [PASSED] ttm_tt_create_ttm_exists
[16:07:11] [PASSED] ttm_tt_create_failed
[16:07:11] [PASSED] ttm_tt_destroy_basic
[16:07:11] [PASSED] ttm_tt_populate_null_ttm
[16:07:11] [PASSED] ttm_tt_populate_populated_ttm
[16:07:11] [PASSED] ttm_tt_unpopulate_basic
[16:07:11] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:07:11] [PASSED] ttm_tt_swapin_basic
[16:07:11] ===================== [PASSED] ttm_tt ======================
[16:07:11] =================== ttm_bo (14 subtests) ===================
[16:07:11] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:07:11] [PASSED] Cannot be interrupted and sleeps
[16:07:11] [PASSED] Cannot be interrupted, locks straight away
[16:07:11] [PASSED] Can be interrupted, sleeps
[16:07:11] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:07:11] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:07:11] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:07:11] [PASSED] ttm_bo_reserve_double_resv
[16:07:11] [PASSED] ttm_bo_reserve_interrupted
[16:07:11] [PASSED] ttm_bo_reserve_deadlock
[16:07:11] [PASSED] ttm_bo_unreserve_basic
[16:07:11] [PASSED] ttm_bo_unreserve_pinned
[16:07:11] [PASSED] ttm_bo_unreserve_bulk
[16:07:11] [PASSED] ttm_bo_fini_basic
[16:07:11] [PASSED] ttm_bo_fini_shared_resv
[16:07:11] [PASSED] ttm_bo_pin_basic
[16:07:11] [PASSED] ttm_bo_pin_unpin_resource
[16:07:11] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:07:11] ===================== [PASSED] ttm_bo ======================
[16:07:11] ============== ttm_bo_validate (21 subtests) ===============
[16:07:11] ============== ttm_bo_init_reserved_sys_man ===============
[16:07:11] [PASSED] Buffer object for userspace
[16:07:11] [PASSED] Kernel buffer object
[16:07:11] [PASSED] Shared buffer object
[16:07:11] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:07:11] ============== ttm_bo_init_reserved_mock_man ==============
[16:07:11] [PASSED] Buffer object for userspace
[16:07:11] [PASSED] Kernel buffer object
[16:07:11] [PASSED] Shared buffer object
[16:07:11] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:07:11] [PASSED] ttm_bo_init_reserved_resv
[16:07:11] ================== ttm_bo_validate_basic ==================
[16:07:11] [PASSED] Buffer object for userspace
[16:07:11] [PASSED] Kernel buffer object
[16:07:11] [PASSED] Shared buffer object
[16:07:11] ============== [PASSED] ttm_bo_validate_basic ==============
[16:07:11] [PASSED] ttm_bo_validate_invalid_placement
[16:07:11] ============= ttm_bo_validate_same_placement ==============
[16:07:11] [PASSED] System manager
[16:07:11] [PASSED] VRAM manager
[16:07:11] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:07:11] [PASSED] ttm_bo_validate_failed_alloc
[16:07:11] [PASSED] ttm_bo_validate_pinned
[16:07:11] [PASSED] ttm_bo_validate_busy_placement
[16:07:11] ================ ttm_bo_validate_multihop =================
[16:07:11] [PASSED] Buffer object for userspace
[16:07:11] [PASSED] Kernel buffer object
[16:07:11] [PASSED] Shared buffer object
[16:07:11] ============ [PASSED] ttm_bo_validate_multihop =============
[16:07:11] ========== ttm_bo_validate_no_placement_signaled ==========
[16:07:11] [PASSED] Buffer object in system domain, no page vector
[16:07:11] [PASSED] Buffer object in system domain with an existing page vector
[16:07:11] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:07:11] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:07:11] [PASSED] Buffer object for userspace
[16:07:11] [PASSED] Kernel buffer object
[16:07:11] [PASSED] Shared buffer object
[16:07:11] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:07:11] [PASSED] ttm_bo_validate_move_fence_signaled
[16:07:11] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:07:11] [PASSED] Waits for GPU
[16:07:11] [PASSED] Tries to lock straight away
[16:07:11] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:07:11] [PASSED] ttm_bo_validate_happy_evict
[16:07:11] [PASSED] ttm_bo_validate_all_pinned_evict
[16:07:11] [PASSED] ttm_bo_validate_allowed_only_evict
[16:07:11] [PASSED] ttm_bo_validate_deleted_evict
[16:07:11] [PASSED] ttm_bo_validate_busy_domain_evict
[16:07:11] [PASSED] ttm_bo_validate_evict_gutting
[16:07:11] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:07:11] ================= [PASSED] ttm_bo_validate =================
[16:07:11] ============================================================
[16:07:11] Testing complete. Ran 101 tests: passed: 101
[16:07:11] Elapsed time: 11.321s total, 1.665s configuring, 9.390s building, 0.225s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✓ Xe.CI.BAT: success for auxccs ci run no stolen (rev2)
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (18 preceding siblings ...)
2025-10-22 16:07 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-22 17:10 ` Patchwork
2025-10-22 20:00 ` ✗ Xe.CI.Full: failure " Patchwork
` (4 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-22 17:10 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 11502 bytes --]
== Series Details ==
Series: auxccs ci run no stolen (rev2)
URL : https://patchwork.freedesktop.org/series/156302/
State : success
== Summary ==
CI Bug Log - changes from xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde_BAT -> xe-pw-156302v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-pvc-2
Known issues
------------
Here are the changes found in xe-pw-156302v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-pvc-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@fbdev@eof.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-pvc-2: NOTRUN -> [SKIP][2] ([i915#6077]) +30 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#1024] / [Intel XE#782]) +5 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_dsc@dsc-basic:
- bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#784])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#1024] / [Intel XE#947]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#540]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@basic:
- bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#1024] / [Intel XE#783])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#829]) +6 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#780])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#1024] / [Intel XE#1406]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-pvc-2: NOTRUN -> [SKIP][11] ([Intel XE#2849]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-beng-small:
- bat-ptl-2: NOTRUN -> [SKIP][12] ([Intel XE#5764]) +11 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-2/igt@xe_evict@evict-beng-small.html
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-1: NOTRUN -> [SKIP][13] ([Intel XE#5764]) +11 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-1/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_gt_freq@freq_fixed_idle:
- bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#1021]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_huc_copy@huc_copy:
- bat-pvc-2: NOTRUN -> [SKIP][15] ([Intel XE#255])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_intel_bb@render:
- bat-pvc-2: NOTRUN -> [SKIP][16] ([Intel XE#532])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_intel_bb@render.html
* igt@xe_live_ktest@xe_bo:
- bat-ptl-1: NOTRUN -> [SKIP][17] ([Intel XE#5775]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- bat-ptl-2: NOTRUN -> [SKIP][18] ([Intel XE#5775]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-pvc-2: NOTRUN -> [SKIP][19] ([Intel XE#2229]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-1: NOTRUN -> [SKIP][20] ([Intel XE#5776])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-1/igt@xe_mmap@vram.html
- bat-ptl-2: NOTRUN -> [SKIP][21] ([Intel XE#5776])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-2/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xe2:
- bat-pvc-2: NOTRUN -> [SKIP][22] ([Intel XE#977]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-2: NOTRUN -> [SKIP][23] ([Intel XE#5777])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-2/igt@xe_pat@pat-index-xehpc.html
- bat-ptl-1: NOTRUN -> [SKIP][24] ([Intel XE#5777])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xehpc@render:
- bat-pvc-2: NOTRUN -> [SKIP][25] ([Intel XE#4578])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render.html
* igt@xe_pat@pat-index-xelp:
- bat-ptl-2: NOTRUN -> [SKIP][26] ([Intel XE#5771])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-2/igt@xe_pat@pat-index-xelp.html
- bat-ptl-1: NOTRUN -> [SKIP][27] ([Intel XE#5771])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-1: NOTRUN -> [SKIP][28] ([Intel XE#5780])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-1/igt@xe_pat@pat-index-xelpg.html
- bat-pvc-2: NOTRUN -> [SKIP][29] ([Intel XE#979])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html
- bat-ptl-2: NOTRUN -> [SKIP][30] ([Intel XE#5780])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-pvc-2: NOTRUN -> [SKIP][31] ([Intel XE#531])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-pvc-2: NOTRUN -> [SKIP][32] ([Intel XE#3342])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-pvc-2/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-ptl-1: [ABORT][33] ([Intel XE#6349]) -> [PASS][34] +1 other test pass
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- bat-ptl-2: [ABORT][35] ([Intel XE#6349]) -> [PASS][36] +1 other test pass
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
#### Warnings ####
* igt@xe_module_load@load:
- bat-ptl-vm: [ABORT][37] ([Intel XE#6349]) -> [ABORT][38] ([Intel XE#6287])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/bat-ptl-vm/igt@xe_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/bat-ptl-vm/igt@xe_module_load@load.html
[Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#4578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4578
[Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531
[Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#6287]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6287
[Intel XE#6349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6349
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* Linux: xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde -> xe-pw-156302v2
IGT_8594: 8594
xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde: 59df9bfae7b629576bba2dcf0caacc1e144a6bde
xe-pw-156302v2: 156302v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/index.html
[-- Attachment #2: Type: text/html, Size: 13605 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ Xe.CI.Full: failure for auxccs ci run no stolen (rev2)
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (19 preceding siblings ...)
2025-10-22 17:10 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-22 20:00 ` Patchwork
2025-10-23 8:37 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen (rev3) Patchwork
` (3 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-22 20:00 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 37134 bytes --]
== Series Details ==
Series: auxccs ci run no stolen (rev2)
URL : https://patchwork.freedesktop.org/series/156302/
State : failure
== Summary ==
CI Bug Log - changes from xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde_FULL -> xe-pw-156302v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156302v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156302v2_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-156302v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-463/igt@kms_hdr@bpc-switch-suspend.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: [DMESG-WARN][2] ([Intel XE#4543]) -> [DMESG-WARN][3] +5 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-9/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
New tests
---------
New tests have been introduced between xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde_FULL and xe-pw-156302v2_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.18] 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.17] 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.17] 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.18] 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.21] 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.18] 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.16] 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.12] 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.11] 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.11] 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.11] 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.13] 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.12] 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.13] 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.12] 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.10] 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.22] 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-156302v2_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][4] -> [DMESG-WARN][5] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-1/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/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][6] -> [FAIL][7] ([Intel XE#6054]) +3 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
- shard-adlp: [PASS][8] -> [DMESG-WARN][9] ([Intel XE#2953] / [Intel XE#4173]) +6 other tests dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][10] -> [INCOMPLETE][11] ([Intel XE#3862]) +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][13] -> [INCOMPLETE][14] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#373])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-463/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#4294])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2316]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-4/igt@kms_flip@2x-plain-flip.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#2049] / [Intel XE#2597]) +3 other tests incomplete
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#4543]) +11 other tests dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-dg2-434/igt@kms_flip@flip-vs-suspend@c-dp4.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-432/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#653])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#1503])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-7/igt@kms_hdr@static-toggle-dpms.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1406] / [Intel XE#1489])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@xe_eudebug@basic-vm-bind:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#4837])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-463/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2360])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-busy:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#4915]) +12 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-463/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-busy.html
* igt@xe_module_load@many-reload:
- shard-adlp: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#5244])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-4/igt@xe_module_load@many-reload.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-3/igt@xe_module_load@many-reload.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-adlp: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-userptr.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-3/igt@xe_pm@s2idle-vm-bind-userptr.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][40] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-8/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][42] ([Intel XE#787]) -> [PASS][43] +83 other tests pass
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/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][44] ([Intel XE#455] / [Intel XE#787]) -> [PASS][45] +55 other tests pass
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-adlp: [DMESG-WARN][46] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][47] +1 other test pass
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-9/igt@kms_cursor_edge_walk@128x128-top-edge.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-2/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][48] ([Intel XE#2291]) -> [PASS][49] +3 other tests pass
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][50] ([Intel XE#4302]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][52] ([Intel XE#2316]) -> [PASS][53] +7 other tests pass
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][54] ([Intel XE#301]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][56] ([Intel XE#4543]) -> [PASS][57] +4 other tests pass
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][58] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][59] +1 other test pass
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [DMESG-WARN][60] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][62] ([Intel XE#455]) -> [PASS][63] +7 other tests pass
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x:
- shard-adlp: [DMESG-FAIL][64] ([Intel XE#4543]) -> [PASS][65] +1 other test pass
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][66] ([Intel XE#3012]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][68] ([Intel XE#4596]) -> [PASS][69] +1 other test pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][70] ([Intel XE#2571]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: [FAIL][72] ([Intel XE#718]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-4/igt@kms_pm_dc@dc6-dpms.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][74] ([Intel XE#4459]) -> [PASS][75] +1 other test pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][76] ([Intel XE#4227]) -> [PASS][77] +1 other test pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-lnl-4/igt@kms_vrr@flipline.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-lnl-1/igt@kms_vrr@flipline.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][78] ([Intel XE#6321]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
- shard-bmg: [WARN][80] ([Intel XE#5786]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][82] ([Intel XE#5625]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
#### Warnings ####
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-adlp: [DMESG-WARN][84] ([Intel XE#4543]) -> [DMESG-WARN][85] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-1/igt@kms_async_flips@async-flip-suspend-resume.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-adlp: [DMESG-FAIL][86] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [DMESG-FAIL][87] ([Intel XE#4543])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][88] ([Intel XE#1178]) -> [SKIP][89] ([Intel XE#2341])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][90] ([Intel XE#2341]) -> [FAIL][91] ([Intel XE#1178]) +1 other test fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_content_protection@srm.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-8/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][92] ([Intel XE#2312]) -> [SKIP][93] ([Intel XE#5390]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][94] ([Intel XE#5390]) -> [SKIP][95] ([Intel XE#2312]) +8 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][96] ([Intel XE#2311]) -> [SKIP][97] ([Intel XE#2312]) +14 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][98] ([Intel XE#2312]) -> [SKIP][99] ([Intel XE#2311]) +14 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][100] ([Intel XE#2312]) -> [SKIP][101] ([Intel XE#2313]) +13 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][102] ([Intel XE#2313]) -> [SKIP][103] ([Intel XE#2312]) +12 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][104] ([Intel XE#5021]) -> [SKIP][105] ([Intel XE#4596]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@xe_exec_system_allocator@many-64k-mmap-free:
- shard-dg2-set2: [INCOMPLETE][106] -> [SKIP][107] ([Intel XE#4915])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-dg2-464/igt@xe_exec_system_allocator@many-64k-mmap-free.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-463/igt@xe_exec_system_allocator@many-64k-mmap-free.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-remap-ro:
- shard-dg2-set2: [SKIP][108] ([Intel XE#4915]) -> [INCOMPLETE][109] ([Intel XE#2594])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-dg2-432/igt@xe_exec_system_allocator@many-execqueues-mmap-remap-ro.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-432/igt@xe_exec_system_allocator@many-execqueues-mmap-remap-ro.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][110] ([Intel XE#5466]) -> [ABORT][111] ([Intel XE#4917] / [Intel XE#5466])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
Build changes
-------------
* Linux: xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde -> xe-pw-156302v2
IGT_8594: 8594
xe-3965-59df9bfae7b629576bba2dcf0caacc1e144a6bde: 59df9bfae7b629576bba2dcf0caacc1e144a6bde
xe-pw-156302v2: 156302v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v2/index.html
[-- Attachment #2: Type: text/html, Size: 43242 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ CI.checkpatch: warning for auxccs ci run no stolen (rev3)
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (20 preceding siblings ...)
2025-10-22 20:00 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-23 8:37 ` Patchwork
2025-10-23 8:38 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-23 8:37 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: auxccs ci run no stolen (rev3)
URL : https://patchwork.freedesktop.org/series/156302/
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
8677d3b99d5fd579c143b22605d99121e2482e8a
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 1f071f721cf76b1eb10bc8a9fd60e9cfdb8b4ec8
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date: Wed Oct 22 08:30:05 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 71929a54e8bb5da291d41a931d80c6c9160073dd drm-intel
7fc0775ef681 drm/xe: Fix ggtt fb alignment
-:13: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report
#13:
Reported-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
c1ca7d70ea70 drm/xe/xelpg: Flush CCS when flushing caches
03832fe4635d drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
ca642e2d2b5d drm/xe/xelp: Support auxccs invalidation on blitter
323490d03577 drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
49e727a4e87f drm/xe/xelp: Wait for AuxCCS invalidation to complete
7129f2ea80b6 drm/xe: Export xe_emit_aux_table_inv
82bc771f1aa9 drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
8774892521d9 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
e7e87dea05b1 drm/xe: Handle DPT in system memory
2980a678bdde drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS
bd38c3a97025 drm/xe/display: Add support for AuxCCS
1f071f721cf7 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] 27+ messages in thread
* ✓ CI.KUnit: success for auxccs ci run no stolen (rev3)
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (21 preceding siblings ...)
2025-10-23 8:37 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen (rev3) Patchwork
@ 2025-10-23 8:38 ` Patchwork
2025-10-23 9:26 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-23 15:28 ` ✗ Xe.CI.Full: failure " Patchwork
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-23 8:38 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: auxccs ci run no stolen (rev3)
URL : https://patchwork.freedesktop.org/series/156302/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[08:37:33] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:37:37] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:38:08] Starting KUnit Kernel (1/1)...
[08:38:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:38:08] ================== guc_buf (11 subtests) ===================
[08:38:08] [PASSED] test_smallest
[08:38:08] [PASSED] test_largest
[08:38:08] [PASSED] test_granular
[08:38:08] [PASSED] test_unique
[08:38:08] [PASSED] test_overlap
[08:38:08] [PASSED] test_reusable
[08:38:08] [PASSED] test_too_big
[08:38:08] [PASSED] test_flush
[08:38:08] [PASSED] test_lookup
[08:38:08] [PASSED] test_data
[08:38:08] [PASSED] test_class
[08:38:08] ===================== [PASSED] guc_buf =====================
[08:38:08] =================== guc_dbm (7 subtests) ===================
[08:38:08] [PASSED] test_empty
[08:38:08] [PASSED] test_default
[08:38:08] ======================== test_size ========================
[08:38:08] [PASSED] 4
[08:38:08] [PASSED] 8
[08:38:08] [PASSED] 32
[08:38:08] [PASSED] 256
[08:38:08] ==================== [PASSED] test_size ====================
[08:38:08] ======================= test_reuse ========================
[08:38:08] [PASSED] 4
[08:38:08] [PASSED] 8
[08:38:08] [PASSED] 32
[08:38:08] [PASSED] 256
[08:38:08] =================== [PASSED] test_reuse ====================
[08:38:08] =================== test_range_overlap ====================
[08:38:08] [PASSED] 4
[08:38:08] [PASSED] 8
[08:38:08] [PASSED] 32
[08:38:08] [PASSED] 256
[08:38:08] =============== [PASSED] test_range_overlap ================
[08:38:08] =================== test_range_compact ====================
[08:38:08] [PASSED] 4
[08:38:08] [PASSED] 8
[08:38:08] [PASSED] 32
[08:38:08] [PASSED] 256
[08:38:08] =============== [PASSED] test_range_compact ================
[08:38:08] ==================== test_range_spare =====================
[08:38:08] [PASSED] 4
[08:38:08] [PASSED] 8
[08:38:08] [PASSED] 32
[08:38:08] [PASSED] 256
[08:38:08] ================ [PASSED] test_range_spare =================
[08:38:08] ===================== [PASSED] guc_dbm =====================
[08:38:08] =================== guc_idm (6 subtests) ===================
[08:38:08] [PASSED] bad_init
[08:38:08] [PASSED] no_init
[08:38:08] [PASSED] init_fini
[08:38:08] [PASSED] check_used
[08:38:08] [PASSED] check_quota
[08:38:08] [PASSED] check_all
[08:38:08] ===================== [PASSED] guc_idm =====================
[08:38:08] ================== no_relay (3 subtests) ===================
[08:38:08] [PASSED] xe_drops_guc2pf_if_not_ready
[08:38:08] [PASSED] xe_drops_guc2vf_if_not_ready
[08:38:08] [PASSED] xe_rejects_send_if_not_ready
[08:38:08] ==================== [PASSED] no_relay =====================
[08:38:08] ================== pf_relay (14 subtests) ==================
[08:38:08] [PASSED] pf_rejects_guc2pf_too_short
[08:38:08] [PASSED] pf_rejects_guc2pf_too_long
[08:38:08] [PASSED] pf_rejects_guc2pf_no_payload
[08:38:08] [PASSED] pf_fails_no_payload
[08:38:08] [PASSED] pf_fails_bad_origin
[08:38:08] [PASSED] pf_fails_bad_type
[08:38:08] [PASSED] pf_txn_reports_error
[08:38:08] [PASSED] pf_txn_sends_pf2guc
[08:38:08] [PASSED] pf_sends_pf2guc
[08:38:08] [SKIPPED] pf_loopback_nop
[08:38:08] [SKIPPED] pf_loopback_echo
[08:38:08] [SKIPPED] pf_loopback_fail
[08:38:08] [SKIPPED] pf_loopback_busy
[08:38:08] [SKIPPED] pf_loopback_retry
[08:38:08] ==================== [PASSED] pf_relay =====================
[08:38:08] ================== vf_relay (3 subtests) ===================
[08:38:08] [PASSED] vf_rejects_guc2vf_too_short
[08:38:08] [PASSED] vf_rejects_guc2vf_too_long
[08:38:08] [PASSED] vf_rejects_guc2vf_no_payload
[08:38:08] ==================== [PASSED] vf_relay =====================
[08:38:08] ===================== lmtt (1 subtest) =====================
[08:38:08] ======================== test_ops =========================
[08:38:08] [PASSED] 2-level
[08:38:08] [PASSED] multi-level
[08:38:08] ==================== [PASSED] test_ops =====================
[08:38:08] ====================== [PASSED] lmtt =======================
[08:38:08] ================= pf_service (11 subtests) =================
[08:38:08] [PASSED] pf_negotiate_any
[08:38:08] [PASSED] pf_negotiate_base_match
[08:38:08] [PASSED] pf_negotiate_base_newer
[08:38:08] [PASSED] pf_negotiate_base_next
[08:38:08] [SKIPPED] pf_negotiate_base_older
[08:38:08] [PASSED] pf_negotiate_base_prev
[08:38:08] [PASSED] pf_negotiate_latest_match
[08:38:08] [PASSED] pf_negotiate_latest_newer
[08:38:08] [PASSED] pf_negotiate_latest_next
[08:38:08] [SKIPPED] pf_negotiate_latest_older
[08:38:08] [SKIPPED] pf_negotiate_latest_prev
[08:38:08] =================== [PASSED] pf_service ====================
[08:38:08] ================= xe_guc_g2g (2 subtests) ==================
[08:38:08] ============== xe_live_guc_g2g_kunit_default ==============
[08:38:08] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:38:08] ============== xe_live_guc_g2g_kunit_allmem ===============
[08:38:08] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:38:08] =================== [SKIPPED] xe_guc_g2g ===================
[08:38:08] =================== xe_mocs (2 subtests) ===================
[08:38:08] ================ xe_live_mocs_kernel_kunit ================
[08:38:08] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:38:08] ================ xe_live_mocs_reset_kunit =================
[08:38:08] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:38:08] ==================== [SKIPPED] xe_mocs =====================
[08:38:08] ================= xe_migrate (2 subtests) ==================
[08:38:08] ================= xe_migrate_sanity_kunit =================
[08:38:08] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:38:08] ================== xe_validate_ccs_kunit ==================
[08:38:08] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:38:08] =================== [SKIPPED] xe_migrate ===================
[08:38:08] ================== xe_dma_buf (1 subtest) ==================
[08:38:08] ==================== xe_dma_buf_kunit =====================
[08:38:08] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:38:08] =================== [SKIPPED] xe_dma_buf ===================
[08:38:08] ================= xe_bo_shrink (1 subtest) =================
[08:38:08] =================== xe_bo_shrink_kunit ====================
[08:38:08] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:38:08] ================== [SKIPPED] xe_bo_shrink ==================
[08:38:08] ==================== xe_bo (2 subtests) ====================
[08:38:08] ================== xe_ccs_migrate_kunit ===================
[08:38:08] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:38:08] ==================== xe_bo_evict_kunit ====================
[08:38:08] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:38:08] ===================== [SKIPPED] xe_bo ======================
[08:38:08] ==================== args (11 subtests) ====================
[08:38:08] [PASSED] count_args_test
[08:38:08] [PASSED] call_args_example
[08:38:08] [PASSED] call_args_test
[08:38:08] [PASSED] drop_first_arg_example
[08:38:08] [PASSED] drop_first_arg_test
[08:38:08] [PASSED] first_arg_example
[08:38:08] [PASSED] first_arg_test
[08:38:08] [PASSED] last_arg_example
[08:38:08] [PASSED] last_arg_test
[08:38:08] [PASSED] pick_arg_example
[08:38:08] [PASSED] sep_comma_example
[08:38:08] ====================== [PASSED] args =======================
[08:38:08] =================== xe_pci (3 subtests) ====================
[08:38:08] ==================== check_graphics_ip ====================
[08:38:08] [PASSED] 12.00 Xe_LP
[08:38:08] [PASSED] 12.10 Xe_LP+
[08:38:08] [PASSED] 12.55 Xe_HPG
[08:38:08] [PASSED] 12.60 Xe_HPC
[08:38:08] [PASSED] 12.70 Xe_LPG
[08:38:08] [PASSED] 12.71 Xe_LPG
[08:38:08] [PASSED] 12.74 Xe_LPG+
[08:38:08] [PASSED] 20.01 Xe2_HPG
[08:38:08] [PASSED] 20.02 Xe2_HPG
[08:38:08] [PASSED] 20.04 Xe2_LPG
[08:38:08] [PASSED] 30.00 Xe3_LPG
[08:38:08] [PASSED] 30.01 Xe3_LPG
[08:38:08] [PASSED] 30.03 Xe3_LPG
[08:38:08] [PASSED] 30.04 Xe3_LPG
[08:38:08] [PASSED] 30.05 Xe3_LPG
[08:38:08] [PASSED] 35.11 Xe3p_XPC
[08:38:08] ================ [PASSED] check_graphics_ip ================
[08:38:08] ===================== check_media_ip ======================
[08:38:08] [PASSED] 12.00 Xe_M
[08:38:08] [PASSED] 12.55 Xe_HPM
[08:38:08] [PASSED] 13.00 Xe_LPM+
[08:38:08] [PASSED] 13.01 Xe2_HPM
[08:38:08] [PASSED] 20.00 Xe2_LPM
[08:38:08] [PASSED] 30.00 Xe3_LPM
[08:38:08] [PASSED] 30.02 Xe3_LPM
[08:38:08] [PASSED] 35.00 Xe3p_LPM
[08:38:08] [PASSED] 35.03 Xe3p_HPM
[08:38:08] ================= [PASSED] check_media_ip ==================
[08:38:08] =================== check_platform_desc ===================
[08:38:08] [PASSED] 0x9A60 (TIGERLAKE)
[08:38:08] [PASSED] 0x9A68 (TIGERLAKE)
[08:38:08] [PASSED] 0x9A70 (TIGERLAKE)
[08:38:08] [PASSED] 0x9A40 (TIGERLAKE)
[08:38:08] [PASSED] 0x9A49 (TIGERLAKE)
[08:38:08] [PASSED] 0x9A59 (TIGERLAKE)
[08:38:08] [PASSED] 0x9A78 (TIGERLAKE)
[08:38:08] [PASSED] 0x9AC0 (TIGERLAKE)
[08:38:08] [PASSED] 0x9AC9 (TIGERLAKE)
[08:38:08] [PASSED] 0x9AD9 (TIGERLAKE)
[08:38:08] [PASSED] 0x9AF8 (TIGERLAKE)
[08:38:08] [PASSED] 0x4C80 (ROCKETLAKE)
[08:38:08] [PASSED] 0x4C8A (ROCKETLAKE)
[08:38:08] [PASSED] 0x4C8B (ROCKETLAKE)
[08:38:08] [PASSED] 0x4C8C (ROCKETLAKE)
[08:38:08] [PASSED] 0x4C90 (ROCKETLAKE)
[08:38:08] [PASSED] 0x4C9A (ROCKETLAKE)
[08:38:08] [PASSED] 0x4680 (ALDERLAKE_S)
[08:38:08] [PASSED] 0x4682 (ALDERLAKE_S)
[08:38:08] [PASSED] 0x4688 (ALDERLAKE_S)
[08:38:08] [PASSED] 0x468A (ALDERLAKE_S)
[08:38:08] [PASSED] 0x468B (ALDERLAKE_S)
[08:38:08] [PASSED] 0x4690 (ALDERLAKE_S)
[08:38:08] [PASSED] 0x4692 (ALDERLAKE_S)
[08:38:08] [PASSED] 0x4693 (ALDERLAKE_S)
[08:38:08] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46AA (ALDERLAKE_P)
[08:38:08] [PASSED] 0x462A (ALDERLAKE_P)
[08:38:08] [PASSED] 0x4626 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x4628 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46B0 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:38:08] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:38:08] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:38:08] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:38:08] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:38:08] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:38:08] [PASSED] 0xA721 (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA720 (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:38:08] [PASSED] 0xA780 (ALDERLAKE_S)
[08:38:08] [PASSED] 0xA781 (ALDERLAKE_S)
[08:38:08] [PASSED] 0xA782 (ALDERLAKE_S)
[08:38:08] [PASSED] 0xA783 (ALDERLAKE_S)
[08:38:08] [PASSED] 0xA788 (ALDERLAKE_S)
[08:38:08] [PASSED] 0xA789 (ALDERLAKE_S)
[08:38:08] [PASSED] 0xA78A (ALDERLAKE_S)
[08:38:08] [PASSED] 0xA78B (ALDERLAKE_S)
[08:38:08] [PASSED] 0x4905 (DG1)
[08:38:08] [PASSED] 0x4906 (DG1)
[08:38:08] [PASSED] 0x4907 (DG1)
[08:38:08] [PASSED] 0x4908 (DG1)
[08:38:08] [PASSED] 0x4909 (DG1)
[08:38:08] [PASSED] 0x56C0 (DG2)
[08:38:08] [PASSED] 0x56C2 (DG2)
[08:38:08] [PASSED] 0x56C1 (DG2)
[08:38:08] [PASSED] 0x7D51 (METEORLAKE)
[08:38:08] [PASSED] 0x7DD1 (METEORLAKE)
[08:38:08] [PASSED] 0x7D41 (METEORLAKE)
[08:38:08] [PASSED] 0x7D67 (METEORLAKE)
[08:38:08] [PASSED] 0xB640 (METEORLAKE)
[08:38:08] [PASSED] 0x56A0 (DG2)
[08:38:08] [PASSED] 0x56A1 (DG2)
[08:38:08] [PASSED] 0x56A2 (DG2)
[08:38:08] [PASSED] 0x56BE (DG2)
[08:38:08] [PASSED] 0x56BF (DG2)
[08:38:08] [PASSED] 0x5690 (DG2)
[08:38:08] [PASSED] 0x5691 (DG2)
[08:38:08] [PASSED] 0x5692 (DG2)
[08:38:08] [PASSED] 0x56A5 (DG2)
[08:38:08] [PASSED] 0x56A6 (DG2)
[08:38:08] [PASSED] 0x56B0 (DG2)
[08:38:08] [PASSED] 0x56B1 (DG2)
[08:38:08] [PASSED] 0x56BA (DG2)
[08:38:08] [PASSED] 0x56BB (DG2)
[08:38:08] [PASSED] 0x56BC (DG2)
[08:38:08] [PASSED] 0x56BD (DG2)
[08:38:08] [PASSED] 0x5693 (DG2)
[08:38:08] [PASSED] 0x5694 (DG2)
[08:38:08] [PASSED] 0x5695 (DG2)
[08:38:08] [PASSED] 0x56A3 (DG2)
[08:38:08] [PASSED] 0x56A4 (DG2)
[08:38:08] [PASSED] 0x56B2 (DG2)
[08:38:08] [PASSED] 0x56B3 (DG2)
[08:38:08] [PASSED] 0x5696 (DG2)
[08:38:08] [PASSED] 0x5697 (DG2)
[08:38:08] [PASSED] 0xB69 (PVC)
[08:38:08] [PASSED] 0xB6E (PVC)
[08:38:08] [PASSED] 0xBD4 (PVC)
[08:38:08] [PASSED] 0xBD5 (PVC)
[08:38:08] [PASSED] 0xBD6 (PVC)
[08:38:08] [PASSED] 0xBD7 (PVC)
[08:38:08] [PASSED] 0xBD8 (PVC)
[08:38:08] [PASSED] 0xBD9 (PVC)
[08:38:08] [PASSED] 0xBDA (PVC)
[08:38:08] [PASSED] 0xBDB (PVC)
[08:38:08] [PASSED] 0xBE0 (PVC)
[08:38:08] [PASSED] 0xBE1 (PVC)
[08:38:08] [PASSED] 0xBE5 (PVC)
[08:38:08] [PASSED] 0x7D40 (METEORLAKE)
[08:38:08] [PASSED] 0x7D45 (METEORLAKE)
[08:38:08] [PASSED] 0x7D55 (METEORLAKE)
[08:38:08] [PASSED] 0x7D60 (METEORLAKE)
[08:38:08] [PASSED] 0x7DD5 (METEORLAKE)
[08:38:08] [PASSED] 0x6420 (LUNARLAKE)
[08:38:08] [PASSED] 0x64A0 (LUNARLAKE)
[08:38:08] [PASSED] 0x64B0 (LUNARLAKE)
[08:38:08] [PASSED] 0xE202 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE209 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE20B (BATTLEMAGE)
[08:38:08] [PASSED] 0xE20C (BATTLEMAGE)
[08:38:08] [PASSED] 0xE20D (BATTLEMAGE)
[08:38:08] [PASSED] 0xE210 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE211 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE212 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE216 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE220 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE221 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE222 (BATTLEMAGE)
[08:38:08] [PASSED] 0xE223 (BATTLEMAGE)
[08:38:08] [PASSED] 0xB080 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB081 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB082 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB083 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB084 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB085 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB086 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB087 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB08F (PANTHERLAKE)
[08:38:08] [PASSED] 0xB090 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:38:08] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:38:08] [PASSED] 0xFD80 (PANTHERLAKE)
[08:38:08] [PASSED] 0xFD81 (PANTHERLAKE)
[08:38:08] [PASSED] 0xD740 (NOVALAKE_S)
[08:38:08] [PASSED] 0xD741 (NOVALAKE_S)
[08:38:08] [PASSED] 0xD742 (NOVALAKE_S)
[08:38:08] [PASSED] 0xD743 (NOVALAKE_S)
[08:38:08] [PASSED] 0xD744 (NOVALAKE_S)
[08:38:08] [PASSED] 0xD745 (NOVALAKE_S)
[08:38:08] =============== [PASSED] check_platform_desc ===============
[08:38:08] ===================== [PASSED] xe_pci ======================
[08:38:08] =================== xe_rtp (2 subtests) ====================
[08:38:08] =============== xe_rtp_process_to_sr_tests ================
[08:38:08] [PASSED] coalesce-same-reg
[08:38:08] [PASSED] no-match-no-add
[08:38:08] [PASSED] match-or
[08:38:08] [PASSED] match-or-xfail
[08:38:08] [PASSED] no-match-no-add-multiple-rules
[08:38:08] [PASSED] two-regs-two-entries
[08:38:08] [PASSED] clr-one-set-other
[08:38:08] [PASSED] set-field
[08:38:08] [PASSED] conflict-duplicate
[08:38:08] [PASSED] conflict-not-disjoint
[08:38:08] [PASSED] conflict-reg-type
[08:38:08] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:38:08] ================== xe_rtp_process_tests ===================
[08:38:08] [PASSED] active1
[08:38:08] [PASSED] active2
[08:38:08] [PASSED] active-inactive
[08:38:08] [PASSED] inactive-active
[08:38:08] [PASSED] inactive-1st_or_active-inactive
[08:38:08] [PASSED] inactive-2nd_or_active-inactive
[08:38:08] [PASSED] inactive-last_or_active-inactive
[08:38:08] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[08:38:08] ============== [PASSED] xe_rtp_process_tests ===============
[08:38:08] ===================== [PASSED] xe_rtp ======================
[08:38:08] ==================== xe_wa (1 subtest) =====================
[08:38:08] ======================== xe_wa_gt =========================
[08:38:08] [PASSED] TIGERLAKE B0
[08:38:08] [PASSED] DG1 A0
[08:38:08] [PASSED] DG1 B0
[08:38:08] [PASSED] ALDERLAKE_S A0
[08:38:08] [PASSED] ALDERLAKE_S B0
[08:38:08] [PASSED] ALDERLAKE_S C0
[08:38:08] [PASSED] ALDERLAKE_S D0
[08:38:08] [PASSED] ALDERLAKE_P A0
[08:38:08] [PASSED] ALDERLAKE_P B0
[08:38:08] [PASSED] ALDERLAKE_P C0
[08:38:08] [PASSED] ALDERLAKE_S RPLS D0
[08:38:08] [PASSED] ALDERLAKE_P RPLU E0
[08:38:08] [PASSED] DG2 G10 C0
[08:38:08] [PASSED] DG2 G11 B1
[08:38:08] [PASSED] DG2 G12 A1
[08:38:08] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:38:08] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:38:08] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:38:08] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:38:08] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:38:08] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:38:08] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:38:08] ==================== [PASSED] xe_wa_gt =====================
[08:38:08] ====================== [PASSED] xe_wa ======================
[08:38:08] ============================================================
[08:38:08] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[08:38:08] Elapsed time: 35.192s total, 4.248s configuring, 30.577s building, 0.321s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[08:38:09] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:38: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
[08:38:35] Starting KUnit Kernel (1/1)...
[08:38:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:38:35] ============ drm_test_pick_cmdline (2 subtests) ============
[08:38:35] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[08:38:35] =============== drm_test_pick_cmdline_named ===============
[08:38:35] [PASSED] NTSC
[08:38:35] [PASSED] NTSC-J
[08:38:35] [PASSED] PAL
[08:38:35] [PASSED] PAL-M
[08:38:35] =========== [PASSED] drm_test_pick_cmdline_named ===========
[08:38:35] ============== [PASSED] drm_test_pick_cmdline ==============
[08:38:35] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:38:35] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:38:35] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:38:35] =========== drm_validate_clone_mode (2 subtests) ===========
[08:38:35] ============== drm_test_check_in_clone_mode ===============
[08:38:35] [PASSED] in_clone_mode
[08:38:35] [PASSED] not_in_clone_mode
[08:38:35] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:38:35] =============== drm_test_check_valid_clones ===============
[08:38:35] [PASSED] not_in_clone_mode
[08:38:35] [PASSED] valid_clone
[08:38:35] [PASSED] invalid_clone
[08:38:35] =========== [PASSED] drm_test_check_valid_clones ===========
[08:38:35] ============= [PASSED] drm_validate_clone_mode =============
[08:38:35] ============= drm_validate_modeset (1 subtest) =============
[08:38:35] [PASSED] drm_test_check_connector_changed_modeset
[08:38:35] ============== [PASSED] drm_validate_modeset ===============
[08:38:35] ====== drm_test_bridge_get_current_state (2 subtests) ======
[08:38:35] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:38:35] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[08:38:35] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:38:35] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:38:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:38:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:38:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[08:38:35] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:38:35] ============== drm_bridge_alloc (2 subtests) ===============
[08:38:35] [PASSED] drm_test_drm_bridge_alloc_basic
[08:38:35] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:38:35] ================ [PASSED] drm_bridge_alloc =================
[08:38:35] ================== drm_buddy (8 subtests) ==================
[08:38:35] [PASSED] drm_test_buddy_alloc_limit
[08:38:35] [PASSED] drm_test_buddy_alloc_optimistic
[08:38:35] [PASSED] drm_test_buddy_alloc_pessimistic
[08:38:35] [PASSED] drm_test_buddy_alloc_pathological
[08:38:35] [PASSED] drm_test_buddy_alloc_contiguous
[08:38:35] [PASSED] drm_test_buddy_alloc_clear
[08:38:35] [PASSED] drm_test_buddy_alloc_range_bias
[08:38:35] [PASSED] drm_test_buddy_fragmentation_performance
[08:38:35] ==================== [PASSED] drm_buddy ====================
[08:38:35] ============= drm_cmdline_parser (40 subtests) =============
[08:38:35] [PASSED] drm_test_cmdline_force_d_only
[08:38:35] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:38:35] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:38:35] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:38:35] [PASSED] drm_test_cmdline_force_e_only
[08:38:35] [PASSED] drm_test_cmdline_res
[08:38:35] [PASSED] drm_test_cmdline_res_vesa
[08:38:35] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:38:35] [PASSED] drm_test_cmdline_res_rblank
[08:38:35] [PASSED] drm_test_cmdline_res_bpp
[08:38:35] [PASSED] drm_test_cmdline_res_refresh
[08:38:35] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:38:35] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:38:35] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:38:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:38:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:38:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:38:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:38:35] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:38:35] [PASSED] drm_test_cmdline_res_margins_force_on
[08:38:35] [PASSED] drm_test_cmdline_res_vesa_margins
[08:38:35] [PASSED] drm_test_cmdline_name
[08:38:35] [PASSED] drm_test_cmdline_name_bpp
[08:38:35] [PASSED] drm_test_cmdline_name_option
[08:38:35] [PASSED] drm_test_cmdline_name_bpp_option
[08:38:35] [PASSED] drm_test_cmdline_rotate_0
[08:38:35] [PASSED] drm_test_cmdline_rotate_90
[08:38:35] [PASSED] drm_test_cmdline_rotate_180
[08:38:35] [PASSED] drm_test_cmdline_rotate_270
[08:38:35] [PASSED] drm_test_cmdline_hmirror
[08:38:35] [PASSED] drm_test_cmdline_vmirror
[08:38:35] [PASSED] drm_test_cmdline_margin_options
[08:38:35] [PASSED] drm_test_cmdline_multiple_options
[08:38:35] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:38:35] [PASSED] drm_test_cmdline_extra_and_option
[08:38:35] [PASSED] drm_test_cmdline_freestanding_options
[08:38:35] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:38:35] [PASSED] drm_test_cmdline_panel_orientation
[08:38:35] ================ drm_test_cmdline_invalid =================
[08:38:35] [PASSED] margin_only
[08:38:35] [PASSED] interlace_only
[08:38:35] [PASSED] res_missing_x
[08:38:35] [PASSED] res_missing_y
[08:38:35] [PASSED] res_bad_y
[08:38:35] [PASSED] res_missing_y_bpp
[08:38:35] [PASSED] res_bad_bpp
[08:38:35] [PASSED] res_bad_refresh
[08:38:35] [PASSED] res_bpp_refresh_force_on_off
[08:38:35] [PASSED] res_invalid_mode
[08:38:35] [PASSED] res_bpp_wrong_place_mode
[08:38:35] [PASSED] name_bpp_refresh
[08:38:35] [PASSED] name_refresh
[08:38:35] [PASSED] name_refresh_wrong_mode
[08:38:35] [PASSED] name_refresh_invalid_mode
[08:38:35] [PASSED] rotate_multiple
[08:38:35] [PASSED] rotate_invalid_val
[08:38:35] [PASSED] rotate_truncated
[08:38:35] [PASSED] invalid_option
[08:38:35] [PASSED] invalid_tv_option
[08:38:35] [PASSED] truncated_tv_option
[08:38:35] ============ [PASSED] drm_test_cmdline_invalid =============
[08:38:35] =============== drm_test_cmdline_tv_options ===============
[08:38:35] [PASSED] NTSC
[08:38:35] [PASSED] NTSC_443
[08:38:35] [PASSED] NTSC_J
[08:38:35] [PASSED] PAL
[08:38:35] [PASSED] PAL_M
[08:38:35] [PASSED] PAL_N
[08:38:35] [PASSED] SECAM
[08:38:35] [PASSED] MONO_525
[08:38:35] [PASSED] MONO_625
[08:38:35] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:38:35] =============== [PASSED] drm_cmdline_parser ================
[08:38:35] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:38:35] [PASSED] drm_test_connector_hdmi_init_valid
[08:38:35] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:38:35] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:38:35] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:38:35] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:38:35] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:38:35] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:38:35] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:38:35] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:38:35] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:38:35] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:38:35] [PASSED] supported_formats=0x3 yuv420_allowed=1
[08:38:35] [PASSED] supported_formats=0x3 yuv420_allowed=0
[08:38:35] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:38:35] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:38:35] [PASSED] drm_test_connector_hdmi_init_null_product
[08:38:35] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:38:35] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:38:35] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:38:35] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:38:35] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:38:35] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:38:35] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:38:35] ========= drm_test_connector_hdmi_init_type_valid =========
[08:38:35] [PASSED] HDMI-A
[08:38:35] [PASSED] HDMI-B
[08:38:35] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:38:35] ======== drm_test_connector_hdmi_init_type_invalid ========
[08:38:35] [PASSED] Unknown
[08:38:35] [PASSED] VGA
[08:38:35] [PASSED] DVI-I
[08:38:35] [PASSED] DVI-D
[08:38:35] [PASSED] DVI-A
[08:38:35] [PASSED] Composite
[08:38:35] [PASSED] SVIDEO
[08:38:35] [PASSED] LVDS
[08:38:35] [PASSED] Component
[08:38:35] [PASSED] DIN
[08:38:35] [PASSED] DP
[08:38:35] [PASSED] TV
[08:38:35] [PASSED] eDP
[08:38:35] [PASSED] Virtual
[08:38:35] [PASSED] DSI
[08:38:35] [PASSED] DPI
[08:38:35] [PASSED] Writeback
[08:38:35] [PASSED] SPI
[08:38:35] [PASSED] USB
[08:38:35] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:38:35] ============ [PASSED] drmm_connector_hdmi_init =============
[08:38:35] ============= drmm_connector_init (3 subtests) =============
[08:38:35] [PASSED] drm_test_drmm_connector_init
[08:38:35] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:38:35] ========= drm_test_drmm_connector_init_type_valid =========
[08:38:35] [PASSED] Unknown
[08:38:35] [PASSED] VGA
[08:38:35] [PASSED] DVI-I
[08:38:35] [PASSED] DVI-D
[08:38:35] [PASSED] DVI-A
[08:38:35] [PASSED] Composite
[08:38:35] [PASSED] SVIDEO
[08:38:35] [PASSED] LVDS
[08:38:35] [PASSED] Component
[08:38:35] [PASSED] DIN
[08:38:35] [PASSED] DP
[08:38:35] [PASSED] HDMI-A
[08:38:35] [PASSED] HDMI-B
[08:38:35] [PASSED] TV
[08:38:35] [PASSED] eDP
[08:38:35] [PASSED] Virtual
[08:38:35] [PASSED] DSI
[08:38:35] [PASSED] DPI
[08:38:35] [PASSED] Writeback
[08:38:35] [PASSED] SPI
[08:38:35] [PASSED] USB
[08:38:35] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:38:35] =============== [PASSED] drmm_connector_init ===============
[08:38:35] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_init
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:38:35] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[08:38:35] [PASSED] Unknown
[08:38:35] [PASSED] VGA
[08:38:35] [PASSED] DVI-I
[08:38:35] [PASSED] DVI-D
[08:38:35] [PASSED] DVI-A
[08:38:35] [PASSED] Composite
[08:38:35] [PASSED] SVIDEO
[08:38:35] [PASSED] LVDS
[08:38:35] [PASSED] Component
[08:38:35] [PASSED] DIN
[08:38:35] [PASSED] DP
[08:38:35] [PASSED] HDMI-A
[08:38:35] [PASSED] HDMI-B
[08:38:35] [PASSED] TV
[08:38:35] [PASSED] eDP
[08:38:35] [PASSED] Virtual
[08:38:35] [PASSED] DSI
[08:38:35] [PASSED] DPI
[08:38:35] [PASSED] Writeback
[08:38:35] [PASSED] SPI
[08:38:35] [PASSED] USB
[08:38:35] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:38:35] ======== drm_test_drm_connector_dynamic_init_name =========
[08:38:35] [PASSED] Unknown
[08:38:35] [PASSED] VGA
[08:38:35] [PASSED] DVI-I
[08:38:35] [PASSED] DVI-D
[08:38:35] [PASSED] DVI-A
[08:38:35] [PASSED] Composite
[08:38:35] [PASSED] SVIDEO
[08:38:35] [PASSED] LVDS
[08:38:35] [PASSED] Component
[08:38:35] [PASSED] DIN
[08:38:35] [PASSED] DP
[08:38:35] [PASSED] HDMI-A
[08:38:35] [PASSED] HDMI-B
[08:38:35] [PASSED] TV
[08:38:35] [PASSED] eDP
[08:38:35] [PASSED] Virtual
[08:38:35] [PASSED] DSI
[08:38:35] [PASSED] DPI
[08:38:35] [PASSED] Writeback
[08:38:35] [PASSED] SPI
[08:38:35] [PASSED] USB
[08:38:35] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:38:35] =========== [PASSED] drm_connector_dynamic_init ============
[08:38:35] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:38:35] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:38:35] ======= drm_connector_dynamic_register (7 subtests) ========
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:38:35] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:38:35] ========= [PASSED] drm_connector_dynamic_register ==========
[08:38:35] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:38:35] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:38:35] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:38:35] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:38:35] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:38:35] ========== drm_test_get_tv_mode_from_name_valid ===========
[08:38:35] [PASSED] NTSC
[08:38:35] [PASSED] NTSC-443
[08:38:35] [PASSED] NTSC-J
[08:38:35] [PASSED] PAL
[08:38:35] [PASSED] PAL-M
[08:38:35] [PASSED] PAL-N
[08:38:35] [PASSED] SECAM
[08:38:35] [PASSED] Mono
[08:38:35] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:38:35] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:38:35] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:38:35] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:38:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:38:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:38:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:38:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:38:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:38:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:38:35] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[08:38:35] [PASSED] VIC 96
[08:38:35] [PASSED] VIC 97
[08:38:35] [PASSED] VIC 101
[08:38:35] [PASSED] VIC 102
[08:38:35] [PASSED] VIC 106
[08:38:35] [PASSED] VIC 107
[08:38:35] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:38:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:38:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:38:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:38:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:38:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:38:35] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:38:35] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:38:35] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[08:38:35] [PASSED] Automatic
[08:38:35] [PASSED] Full
[08:38:35] [PASSED] Limited 16:235
[08:38:35] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:38:35] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:38:35] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:38:35] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:38:35] === drm_test_drm_hdmi_connector_get_output_format_name ====
[08:38:35] [PASSED] RGB
[08:38:35] [PASSED] YUV 4:2:0
[08:38:35] [PASSED] YUV 4:2:2
[08:38:35] [PASSED] YUV 4:4:4
[08:38:35] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:38:35] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:38:35] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:38:35] ============= drm_damage_helper (21 subtests) ==============
[08:38:35] [PASSED] drm_test_damage_iter_no_damage
[08:38:35] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:38:35] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:38:35] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:38:35] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:38:35] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:38:35] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:38:35] [PASSED] drm_test_damage_iter_simple_damage
[08:38:35] [PASSED] drm_test_damage_iter_single_damage
[08:38:35] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:38:35] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:38:35] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:38:35] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:38:35] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:38:35] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:38:35] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:38:35] [PASSED] drm_test_damage_iter_damage
[08:38:35] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:38:35] [PASSED] drm_test_damage_iter_damage_one_outside
[08:38:35] [PASSED] drm_test_damage_iter_damage_src_moved
[08:38:35] [PASSED] drm_test_damage_iter_damage_not_visible
[08:38:35] ================ [PASSED] drm_damage_helper ================
[08:38:35] ============== drm_dp_mst_helper (3 subtests) ==============
[08:38:35] ============== drm_test_dp_mst_calc_pbn_mode ==============
[08:38:35] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:38:35] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:38:35] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:38:35] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:38:35] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:38:35] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:38:35] ============== drm_test_dp_mst_calc_pbn_div ===============
[08:38:35] [PASSED] Link rate 2000000 lane count 4
[08:38:35] [PASSED] Link rate 2000000 lane count 2
[08:38:35] [PASSED] Link rate 2000000 lane count 1
[08:38:35] [PASSED] Link rate 1350000 lane count 4
[08:38:35] [PASSED] Link rate 1350000 lane count 2
[08:38:35] [PASSED] Link rate 1350000 lane count 1
[08:38:35] [PASSED] Link rate 1000000 lane count 4
[08:38:35] [PASSED] Link rate 1000000 lane count 2
[08:38:35] [PASSED] Link rate 1000000 lane count 1
[08:38:35] [PASSED] Link rate 810000 lane count 4
[08:38:35] [PASSED] Link rate 810000 lane count 2
[08:38:35] [PASSED] Link rate 810000 lane count 1
[08:38:35] [PASSED] Link rate 540000 lane count 4
[08:38:35] [PASSED] Link rate 540000 lane count 2
[08:38:35] [PASSED] Link rate 540000 lane count 1
[08:38:35] [PASSED] Link rate 270000 lane count 4
[08:38:35] [PASSED] Link rate 270000 lane count 2
[08:38:35] [PASSED] Link rate 270000 lane count 1
[08:38:35] [PASSED] Link rate 162000 lane count 4
[08:38:35] [PASSED] Link rate 162000 lane count 2
[08:38:35] [PASSED] Link rate 162000 lane count 1
[08:38:35] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:38:35] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[08:38:35] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:38:35] [PASSED] DP_POWER_UP_PHY with port number
[08:38:35] [PASSED] DP_POWER_DOWN_PHY with port number
[08:38:35] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:38:35] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:38:35] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:38:35] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:38:35] [PASSED] DP_QUERY_PAYLOAD with port number
[08:38:35] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:38:35] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:38:35] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:38:35] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:38:35] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:38:35] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:38:35] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:38:35] [PASSED] DP_REMOTE_I2C_READ with port number
[08:38:35] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:38:35] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:38:35] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:38:35] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:38:35] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:38:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:38:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:38:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:38:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:38:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:38:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:38:35] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:38:35] ================ [PASSED] drm_dp_mst_helper ================
[08:38:35] ================== drm_exec (7 subtests) ===================
[08:38:35] [PASSED] sanitycheck
[08:38:35] [PASSED] test_lock
[08:38:35] [PASSED] test_lock_unlock
[08:38:35] [PASSED] test_duplicates
[08:38:35] [PASSED] test_prepare
[08:38:35] [PASSED] test_prepare_array
[08:38:35] [PASSED] test_multiple_loops
[08:38:35] ==================== [PASSED] drm_exec =====================
[08:38:35] =========== drm_format_helper_test (17 subtests) ===========
[08:38:35] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:38:35] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:38:35] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:38:35] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:38:35] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:38:35] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:38:35] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:38:35] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:38:35] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:38:35] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:38:35] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:38:35] ============== drm_test_fb_xrgb8888_to_mono ===============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:38:35] ==================== drm_test_fb_swab =====================
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ================ [PASSED] drm_test_fb_swab =================
[08:38:35] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:38:35] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[08:38:35] [PASSED] single_pixel_source_buffer
[08:38:35] [PASSED] single_pixel_clip_rectangle
[08:38:35] [PASSED] well_known_colors
[08:38:35] [PASSED] destination_pitch
[08:38:35] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:38:35] ================= drm_test_fb_clip_offset =================
[08:38:35] [PASSED] pass through
[08:38:35] [PASSED] horizontal offset
[08:38:35] [PASSED] vertical offset
[08:38:35] [PASSED] horizontal and vertical offset
[08:38:35] [PASSED] horizontal offset (custom pitch)
[08:38:35] [PASSED] vertical offset (custom pitch)
[08:38:35] [PASSED] horizontal and vertical offset (custom pitch)
[08:38:35] ============= [PASSED] drm_test_fb_clip_offset =============
[08:38:35] =================== drm_test_fb_memcpy ====================
[08:38:35] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:38:35] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:38:35] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:38:35] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:38:35] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:38:35] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:38:35] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:38:35] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:38:35] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:38:35] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:38:35] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:38:35] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:38:35] =============== [PASSED] drm_test_fb_memcpy ================
[08:38:35] ============= [PASSED] drm_format_helper_test ==============
[08:38:35] ================= drm_format (18 subtests) =================
[08:38:35] [PASSED] drm_test_format_block_width_invalid
[08:38:35] [PASSED] drm_test_format_block_width_one_plane
[08:38:35] [PASSED] drm_test_format_block_width_two_plane
[08:38:35] [PASSED] drm_test_format_block_width_three_plane
[08:38:35] [PASSED] drm_test_format_block_width_tiled
[08:38:35] [PASSED] drm_test_format_block_height_invalid
[08:38:35] [PASSED] drm_test_format_block_height_one_plane
[08:38:35] [PASSED] drm_test_format_block_height_two_plane
[08:38:35] [PASSED] drm_test_format_block_height_three_plane
[08:38:35] [PASSED] drm_test_format_block_height_tiled
[08:38:35] [PASSED] drm_test_format_min_pitch_invalid
[08:38:35] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:38:35] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:38:35] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:38:35] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:38:35] [PASSED] drm_test_format_min_pitch_two_plane
[08:38:35] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:38:35] [PASSED] drm_test_format_min_pitch_tiled
[08:38:35] =================== [PASSED] drm_format ====================
[08:38:35] ============== drm_framebuffer (10 subtests) ===============
[08:38:35] ========== drm_test_framebuffer_check_src_coords ==========
[08:38:35] [PASSED] Success: source fits into fb
[08:38:35] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:38:35] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:38:35] [PASSED] Fail: overflowing fb with source width
[08:38:35] [PASSED] Fail: overflowing fb with source height
[08:38:35] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:38:35] [PASSED] drm_test_framebuffer_cleanup
[08:38:35] =============== drm_test_framebuffer_create ===============
[08:38:35] [PASSED] ABGR8888 normal sizes
[08:38:35] [PASSED] ABGR8888 max sizes
[08:38:35] [PASSED] ABGR8888 pitch greater than min required
[08:38:35] [PASSED] ABGR8888 pitch less than min required
[08:38:35] [PASSED] ABGR8888 Invalid width
[08:38:35] [PASSED] ABGR8888 Invalid buffer handle
[08:38:35] [PASSED] No pixel format
[08:38:35] [PASSED] ABGR8888 Width 0
[08:38:35] [PASSED] ABGR8888 Height 0
[08:38:35] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:38:35] [PASSED] ABGR8888 Large buffer offset
[08:38:35] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:38:35] [PASSED] ABGR8888 Invalid flag
[08:38:35] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:38:35] [PASSED] ABGR8888 Valid buffer modifier
[08:38:35] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:38:35] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:38:35] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:38:35] [PASSED] NV12 Normal sizes
[08:38:35] [PASSED] NV12 Max sizes
[08:38:35] [PASSED] NV12 Invalid pitch
[08:38:35] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:38:35] [PASSED] NV12 different modifier per-plane
[08:38:35] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:38:35] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:38:35] [PASSED] NV12 Modifier for inexistent plane
[08:38:35] [PASSED] NV12 Handle for inexistent plane
[08:38:35] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:38:35] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:38:35] [PASSED] YVU420 Normal sizes
[08:38:35] [PASSED] YVU420 Max sizes
[08:38:35] [PASSED] YVU420 Invalid pitch
[08:38:35] [PASSED] YVU420 Different pitches
[08:38:35] [PASSED] YVU420 Different buffer offsets/pitches
[08:38:35] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:38:35] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:38:35] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:38:35] [PASSED] YVU420 Valid modifier
[08:38:35] [PASSED] YVU420 Different modifiers per plane
[08:38:35] [PASSED] YVU420 Modifier for inexistent plane
[08:38:35] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:38:35] [PASSED] X0L2 Normal sizes
[08:38:35] [PASSED] X0L2 Max sizes
[08:38:35] [PASSED] X0L2 Invalid pitch
[08:38:35] [PASSED] X0L2 Pitch greater than minimum required
[08:38:35] [PASSED] X0L2 Handle for inexistent plane
[08:38:35] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:38:35] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:38:35] [PASSED] X0L2 Valid modifier
[08:38:35] [PASSED] X0L2 Modifier for inexistent plane
[08:38:35] =========== [PASSED] drm_test_framebuffer_create ===========
[08:38:35] [PASSED] drm_test_framebuffer_free
[08:38:35] [PASSED] drm_test_framebuffer_init
[08:38:35] [PASSED] drm_test_framebuffer_init_bad_format
[08:38:35] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:38:35] [PASSED] drm_test_framebuffer_lookup
[08:38:35] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:38:35] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:38:35] ================= [PASSED] drm_framebuffer =================
[08:38:35] ================ drm_gem_shmem (8 subtests) ================
[08:38:35] [PASSED] drm_gem_shmem_test_obj_create
[08:38:35] [PASSED] drm_gem_shmem_test_obj_create_private
[08:38:35] [PASSED] drm_gem_shmem_test_pin_pages
[08:38:35] [PASSED] drm_gem_shmem_test_vmap
[08:38:35] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:38:35] [PASSED] drm_gem_shmem_test_get_sg_table
[08:38:35] [PASSED] drm_gem_shmem_test_madvise
[08:38:35] [PASSED] drm_gem_shmem_test_purge
[08:38:35] ================== [PASSED] drm_gem_shmem ==================
[08:38:35] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:38:35] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[08:38:35] [PASSED] Automatic
[08:38:35] [PASSED] Full
[08:38:35] [PASSED] Limited 16:235
[08:38:35] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:38:35] [PASSED] drm_test_check_disable_connector
[08:38:35] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:38:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:38:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:38:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:38:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:38:35] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:38:35] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:38:35] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:38:35] [PASSED] drm_test_check_output_bpc_dvi
[08:38:35] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:38:35] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:38:35] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:38:35] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:38:35] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:38:35] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:38:35] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:38:35] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:38:35] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:38:35] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:38:35] [PASSED] drm_test_check_broadcast_rgb_value
[08:38:35] [PASSED] drm_test_check_bpc_8_value
[08:38:35] [PASSED] drm_test_check_bpc_10_value
[08:38:35] [PASSED] drm_test_check_bpc_12_value
[08:38:35] [PASSED] drm_test_check_format_value
[08:38:35] [PASSED] drm_test_check_tmds_char_value
[08:38:35] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:38:35] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[08:38:35] [PASSED] drm_test_check_mode_valid
[08:38:35] [PASSED] drm_test_check_mode_valid_reject
[08:38:35] [PASSED] drm_test_check_mode_valid_reject_rate
[08:38:35] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:38:35] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:38:35] ================= drm_managed (2 subtests) =================
[08:38:35] [PASSED] drm_test_managed_release_action
[08:38:35] [PASSED] drm_test_managed_run_action
[08:38:35] =================== [PASSED] drm_managed ===================
[08:38:35] =================== drm_mm (6 subtests) ====================
[08:38:35] [PASSED] drm_test_mm_init
[08:38:35] [PASSED] drm_test_mm_debug
[08:38:35] [PASSED] drm_test_mm_align32
[08:38:35] [PASSED] drm_test_mm_align64
[08:38:35] [PASSED] drm_test_mm_lowest
[08:38:35] [PASSED] drm_test_mm_highest
[08:38:35] ===================== [PASSED] drm_mm ======================
[08:38:35] ============= drm_modes_analog_tv (5 subtests) =============
[08:38:35] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:38:35] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:38:35] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:38:35] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:38:35] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:38:35] =============== [PASSED] drm_modes_analog_tv ===============
[08:38:35] ============== drm_plane_helper (2 subtests) ===============
[08:38:35] =============== drm_test_check_plane_state ================
[08:38:35] [PASSED] clipping_simple
[08:38:35] [PASSED] clipping_rotate_reflect
[08:38:35] [PASSED] positioning_simple
[08:38:35] [PASSED] upscaling
[08:38:35] [PASSED] downscaling
[08:38:35] [PASSED] rounding1
[08:38:35] [PASSED] rounding2
[08:38:35] [PASSED] rounding3
[08:38:35] [PASSED] rounding4
[08:38:35] =========== [PASSED] drm_test_check_plane_state ============
[08:38:35] =========== drm_test_check_invalid_plane_state ============
[08:38:35] [PASSED] positioning_invalid
[08:38:35] [PASSED] upscaling_invalid
[08:38:35] [PASSED] downscaling_invalid
[08:38:35] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:38:35] ================ [PASSED] drm_plane_helper =================
[08:38:35] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:38:35] ====== drm_test_connector_helper_tv_get_modes_check =======
[08:38:35] [PASSED] None
[08:38:35] [PASSED] PAL
[08:38:35] [PASSED] NTSC
[08:38:35] [PASSED] Both, NTSC Default
[08:38:35] [PASSED] Both, PAL Default
[08:38:35] [PASSED] Both, NTSC Default, with PAL on command-line
[08:38:35] [PASSED] Both, PAL Default, with NTSC on command-line
[08:38:35] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:38:35] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:38:35] ================== drm_rect (9 subtests) ===================
[08:38:35] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:38:35] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:38:35] [PASSED] drm_test_rect_clip_scaled_clipped
[08:38:35] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:38:35] ================= drm_test_rect_intersect =================
[08:38:35] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:38:35] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:38:35] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:38:35] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:38:35] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:38:35] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:38:35] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:38:35] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:38:35] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:38:35] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:38:35] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:38:35] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:38:35] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:38:35] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:38:35] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[08:38:35] ============= [PASSED] drm_test_rect_intersect =============
[08:38:35] ================ drm_test_rect_calc_hscale ================
[08:38:35] [PASSED] normal use
[08:38:35] [PASSED] out of max range
[08:38:35] [PASSED] out of min range
[08:38:35] [PASSED] zero dst
[08:38:35] [PASSED] negative src
[08:38:35] [PASSED] negative dst
[08:38:35] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:38:35] ================ drm_test_rect_calc_vscale ================
[08:38:35] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[08:38:35] [PASSED] out of max range
[08:38:35] [PASSED] out of min range
[08:38:35] [PASSED] zero dst
[08:38:35] [PASSED] negative src
[08:38:35] [PASSED] negative dst
[08:38:35] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:38:35] ================== drm_test_rect_rotate ===================
[08:38:35] [PASSED] reflect-x
[08:38:35] [PASSED] reflect-y
[08:38:35] [PASSED] rotate-0
[08:38:35] [PASSED] rotate-90
[08:38:35] [PASSED] rotate-180
[08:38:35] [PASSED] rotate-270
[08:38:35] ============== [PASSED] drm_test_rect_rotate ===============
[08:38:35] ================ drm_test_rect_rotate_inv =================
[08:38:35] [PASSED] reflect-x
[08:38:35] [PASSED] reflect-y
[08:38:35] [PASSED] rotate-0
[08:38:35] [PASSED] rotate-90
[08:38:35] [PASSED] rotate-180
[08:38:35] [PASSED] rotate-270
[08:38:35] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:38:35] ==================== [PASSED] drm_rect =====================
[08:38:35] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:38:35] ============ drm_test_sysfb_build_fourcc_list =============
[08:38:35] [PASSED] no native formats
[08:38:35] [PASSED] XRGB8888 as native format
[08:38:35] [PASSED] remove duplicates
[08:38:35] [PASSED] convert alpha formats
[08:38:35] [PASSED] random formats
[08:38:35] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:38:35] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:38:35] ============================================================
[08:38:35] Testing complete. Ran 622 tests: passed: 622
[08:38:35] Elapsed time: 26.892s total, 1.648s configuring, 24.827s building, 0.395s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:38:36] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:38:37] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:38:47] Starting KUnit Kernel (1/1)...
[08:38:47] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:38:47] ================= ttm_device (5 subtests) ==================
[08:38:47] [PASSED] ttm_device_init_basic
[08:38:47] [PASSED] ttm_device_init_multiple
[08:38:47] [PASSED] ttm_device_fini_basic
[08:38:47] [PASSED] ttm_device_init_no_vma_man
[08:38:47] ================== ttm_device_init_pools ==================
[08:38:47] [PASSED] No DMA allocations, no DMA32 required
[08:38:47] [PASSED] DMA allocations, DMA32 required
[08:38:47] [PASSED] No DMA allocations, DMA32 required
[08:38:47] [PASSED] DMA allocations, no DMA32 required
[08:38:47] ============== [PASSED] ttm_device_init_pools ==============
[08:38:47] =================== [PASSED] ttm_device ====================
[08:38:47] ================== ttm_pool (8 subtests) ===================
[08:38:47] ================== ttm_pool_alloc_basic ===================
[08:38:47] [PASSED] One page
[08:38:47] [PASSED] More than one page
[08:38:47] [PASSED] Above the allocation limit
[08:38:47] [PASSED] One page, with coherent DMA mappings enabled
[08:38:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:38:47] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:38:47] ============== ttm_pool_alloc_basic_dma_addr ==============
[08:38:47] [PASSED] One page
[08:38:47] [PASSED] More than one page
[08:38:47] [PASSED] Above the allocation limit
[08:38:47] [PASSED] One page, with coherent DMA mappings enabled
[08:38:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:38:47] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:38:47] [PASSED] ttm_pool_alloc_order_caching_match
[08:38:47] [PASSED] ttm_pool_alloc_caching_mismatch
[08:38:47] [PASSED] ttm_pool_alloc_order_mismatch
[08:38:47] [PASSED] ttm_pool_free_dma_alloc
[08:38:47] [PASSED] ttm_pool_free_no_dma_alloc
[08:38:47] [PASSED] ttm_pool_fini_basic
[08:38:47] ==================== [PASSED] ttm_pool =====================
[08:38:47] ================ ttm_resource (8 subtests) =================
[08:38:47] ================= ttm_resource_init_basic =================
[08:38:47] [PASSED] Init resource in TTM_PL_SYSTEM
[08:38:47] [PASSED] Init resource in TTM_PL_VRAM
[08:38:47] [PASSED] Init resource in a private placement
[08:38:47] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:38:47] ============= [PASSED] ttm_resource_init_basic =============
[08:38:47] [PASSED] ttm_resource_init_pinned
[08:38:47] [PASSED] ttm_resource_fini_basic
[08:38:47] [PASSED] ttm_resource_manager_init_basic
[08:38:47] [PASSED] ttm_resource_manager_usage_basic
[08:38:47] [PASSED] ttm_resource_manager_set_used_basic
[08:38:47] [PASSED] ttm_sys_man_alloc_basic
[08:38:47] [PASSED] ttm_sys_man_free_basic
[08:38:47] ================== [PASSED] ttm_resource ===================
[08:38:47] =================== ttm_tt (15 subtests) ===================
[08:38:47] ==================== ttm_tt_init_basic ====================
[08:38:47] [PASSED] Page-aligned size
[08:38:47] [PASSED] Extra pages requested
[08:38:47] ================ [PASSED] ttm_tt_init_basic ================
[08:38:47] [PASSED] ttm_tt_init_misaligned
[08:38:47] [PASSED] ttm_tt_fini_basic
[08:38:47] [PASSED] ttm_tt_fini_sg
[08:38:47] [PASSED] ttm_tt_fini_shmem
[08:38:47] [PASSED] ttm_tt_create_basic
[08:38:47] [PASSED] ttm_tt_create_invalid_bo_type
[08:38:47] [PASSED] ttm_tt_create_ttm_exists
[08:38:47] [PASSED] ttm_tt_create_failed
[08:38:47] [PASSED] ttm_tt_destroy_basic
[08:38:47] [PASSED] ttm_tt_populate_null_ttm
[08:38:47] [PASSED] ttm_tt_populate_populated_ttm
[08:38:47] [PASSED] ttm_tt_unpopulate_basic
[08:38:47] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:38:47] [PASSED] ttm_tt_swapin_basic
[08:38:47] ===================== [PASSED] ttm_tt ======================
[08:38:47] =================== ttm_bo (14 subtests) ===================
[08:38:47] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[08:38:47] [PASSED] Cannot be interrupted and sleeps
[08:38:47] [PASSED] Cannot be interrupted, locks straight away
[08:38:47] [PASSED] Can be interrupted, sleeps
[08:38:47] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:38:47] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:38:47] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:38:47] [PASSED] ttm_bo_reserve_double_resv
[08:38:47] [PASSED] ttm_bo_reserve_interrupted
[08:38:47] [PASSED] ttm_bo_reserve_deadlock
[08:38:47] [PASSED] ttm_bo_unreserve_basic
[08:38:47] [PASSED] ttm_bo_unreserve_pinned
[08:38:47] [PASSED] ttm_bo_unreserve_bulk
[08:38:47] [PASSED] ttm_bo_fini_basic
[08:38:47] [PASSED] ttm_bo_fini_shared_resv
[08:38:47] [PASSED] ttm_bo_pin_basic
[08:38:47] [PASSED] ttm_bo_pin_unpin_resource
[08:38:47] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:38:47] ===================== [PASSED] ttm_bo ======================
[08:38:47] ============== ttm_bo_validate (21 subtests) ===============
[08:38:47] ============== ttm_bo_init_reserved_sys_man ===============
[08:38:47] [PASSED] Buffer object for userspace
[08:38:47] [PASSED] Kernel buffer object
[08:38:47] [PASSED] Shared buffer object
[08:38:47] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:38:47] ============== ttm_bo_init_reserved_mock_man ==============
[08:38:47] [PASSED] Buffer object for userspace
[08:38:47] [PASSED] Kernel buffer object
[08:38:47] [PASSED] Shared buffer object
[08:38:47] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:38:47] [PASSED] ttm_bo_init_reserved_resv
[08:38:47] ================== ttm_bo_validate_basic ==================
[08:38:47] [PASSED] Buffer object for userspace
[08:38:47] [PASSED] Kernel buffer object
[08:38:47] [PASSED] Shared buffer object
[08:38:47] ============== [PASSED] ttm_bo_validate_basic ==============
[08:38:47] [PASSED] ttm_bo_validate_invalid_placement
[08:38:47] ============= ttm_bo_validate_same_placement ==============
[08:38:47] [PASSED] System manager
[08:38:47] [PASSED] VRAM manager
[08:38:47] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:38:47] [PASSED] ttm_bo_validate_failed_alloc
[08:38:47] [PASSED] ttm_bo_validate_pinned
[08:38:47] [PASSED] ttm_bo_validate_busy_placement
[08:38:47] ================ ttm_bo_validate_multihop =================
[08:38:47] [PASSED] Buffer object for userspace
[08:38:47] [PASSED] Kernel buffer object
[08:38:47] [PASSED] Shared buffer object
[08:38:47] ============ [PASSED] ttm_bo_validate_multihop =============
[08:38:47] ========== ttm_bo_validate_no_placement_signaled ==========
[08:38:47] [PASSED] Buffer object in system domain, no page vector
[08:38:47] [PASSED] Buffer object in system domain with an existing page vector
[08:38:47] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:38:47] ======== ttm_bo_validate_no_placement_not_signaled ========
[08:38:47] [PASSED] Buffer object for userspace
[08:38:47] [PASSED] Kernel buffer object
[08:38:47] [PASSED] Shared buffer object
[08:38:47] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:38:47] [PASSED] ttm_bo_validate_move_fence_signaled
[08:38:47] ========= ttm_bo_validate_move_fence_not_signaled =========
[08:38:47] [PASSED] Waits for GPU
[08:38:47] [PASSED] Tries to lock straight away
[08:38:47] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:38:47] [PASSED] ttm_bo_validate_happy_evict
[08:38:47] [PASSED] ttm_bo_validate_all_pinned_evict
[08:38:47] [PASSED] ttm_bo_validate_allowed_only_evict
[08:38:47] [PASSED] ttm_bo_validate_deleted_evict
[08:38:47] [PASSED] ttm_bo_validate_busy_domain_evict
[08:38:47] [PASSED] ttm_bo_validate_evict_gutting
[08:38:47] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[08:38:47] ================= [PASSED] ttm_bo_validate =================
[08:38:47] ============================================================
[08:38:47] Testing complete. Ran 101 tests: passed: 101
[08:38:47] Elapsed time: 11.324s total, 1.689s configuring, 9.368s building, 0.233s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✓ Xe.CI.BAT: success for auxccs ci run no stolen (rev3)
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (22 preceding siblings ...)
2025-10-23 8:38 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-23 9:26 ` Patchwork
2025-10-23 15:28 ` ✗ Xe.CI.Full: failure " Patchwork
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-23 9:26 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 894 bytes --]
== Series Details ==
Series: auxccs ci run no stolen (rev3)
URL : https://patchwork.freedesktop.org/series/156302/
State : success
== Summary ==
CI Bug Log - changes from xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd_BAT -> xe-pw-156302v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 12)
------------------------------
Missing (1): bat-ptl-vm
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8594 -> IGT_8595
* Linux: xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd -> xe-pw-156302v3
IGT_8594: 8594
IGT_8595: 8595
xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd: 71929a54e8bb5da291d41a931d80c6c9160073dd
xe-pw-156302v3: 156302v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/index.html
[-- Attachment #2: Type: text/html, Size: 1456 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
* ✗ Xe.CI.Full: failure for auxccs ci run no stolen (rev3)
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
` (23 preceding siblings ...)
2025-10-23 9:26 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-23 15:28 ` Patchwork
24 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2025-10-23 15:28 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 72714 bytes --]
== Series Details ==
Series: auxccs ci run no stolen (rev3)
URL : https://patchwork.freedesktop.org/series/156302/
State : failure
== Summary ==
CI Bug Log - changes from xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd_FULL -> xe-pw-156302v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156302v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156302v3_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-156302v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@viewport:
- shard-adlp: [PASS][1] -> [FAIL][2] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-3/igt@kms_plane_cursor@viewport.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-1/igt@kms_plane_cursor@viewport.html
* igt@xe_gt_freq@freq_suspend:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-5/igt@xe_gt_freq@freq_suspend.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: [DMESG-WARN][5] ([Intel XE#4543]) -> [DMESG-WARN][6] +5 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
New tests
---------
New tests have been introduced between xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd_FULL and xe-pw-156302v3_FULL:
### New IGT tests (45) ###
* igt@kms_addfb_basic:
- Statuses :
- Exec time: [None] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-linear-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.15] 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.17] 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.18] 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.17] 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.22] 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.18] 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.18] 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.10] 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.21] 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.12] 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.12] 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.13] 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.15] 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.12] 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.13] 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.12] 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.13] 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.13] 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.22] 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.13] 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.11] 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-156302v3_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][7] -> [DMESG-WARN][8] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/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-a-edp-1:
- shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#6054]) +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
- shard-adlp: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1477])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][17] ([Intel XE#4543]) +1 other test dmesg-fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#619])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-432/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-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#787]) +14 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +34 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2907])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][29] ([Intel XE#6168] / [i915#14968])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
- shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2724])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#306])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#373]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-433/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#373])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-7/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@common-hpd-after-hibernate:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#373])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#1178])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-5/igt@kms_content_protection@type1.html
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2341])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-1/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1188]) +1 other test fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2320])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#2291]) +6 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1421]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-3/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#310])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2316]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
- shard-adlp: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#4543]) +11 other tests dmesg-warn
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-2/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-9/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1397] / [Intel XE#1745])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1397])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2293] / [Intel XE#2380])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2293])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1401] / [Intel XE#1745])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1401])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#455]) +9 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#6312]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#6312]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#6312])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#651]) +9 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#651]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#5390]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#656]) +14 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#651]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2311]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#653]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2312]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2313]) +7 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#653]) +12 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#656]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#3012])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2925])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pm_backlight@basic-brightness:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#870])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#718])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2499])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2893])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@kms_psr@fbc-pr-sprite-render.html
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1406])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-8/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@psr2-no-drrs:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-434/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1406] / [Intel XE#2234])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-2/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#3414]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1127])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#3414])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#3414] / [Intel XE#3904])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#3414] / [Intel XE#3904])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][99] -> [FAIL][100] ([i915#15106]) +2 other tests fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#4459]) +1 other test fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#455]) +7 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-434/igt@kms_vrr@flip-dpms.html
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1499])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-1/igt@kms_vrr@flip-dpms.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#6360]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#6360])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#5300])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-434/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#4837]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram:
- shard-adlp: NOTRUN -> [SKIP][109] ([Intel XE#4837] / [Intel XE#5565]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-6/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#4837]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#4518])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#261]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-8/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][113] -> [INCOMPLETE][114] ([Intel XE#6321]) +1 other test incomplete
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#688]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-7/igt@xe_evict@evict-threads-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#688])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][117] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1392]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2322]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch:
- shard-adlp: NOTRUN -> [SKIP][120] ([Intel XE#288] / [Intel XE#5561]) +7 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#288]) +12 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2360])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#4837]) +6 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-434/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#6196])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html
* igt@xe_exec_system_allocator@process-many-execqueues-malloc-fork-read:
- shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#4915]) +76 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@xe_exec_system_allocator@process-many-execqueues-malloc-fork-read.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#4943]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#4943]) +6 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge.html
* igt@xe_exec_system_allocator@twice-new-race:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#4915]) +106 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@xe_exec_system_allocator@twice-new-race.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2459] / [Intel XE#2596])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-7/igt@xe_media_fill@media-fill.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#3573]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_peer2peer@read@read-gpua-system-gpub-system-p2p:
- shard-adlp: NOTRUN -> [DMESG-FAIL][131] ([Intel XE#5213])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@xe_peer2peer@read@read-gpua-system-gpub-system-p2p.html
* igt@xe_peer2peer@write:
- shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#1061] / [Intel XE#5568])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-8/igt@xe_peer2peer@write.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][133] -> [FAIL][134] ([Intel XE#6406])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-1/igt@xe_pm@s4-multiple-execs.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-5/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#5611] / [Intel XE#579])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-6/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#4733])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#944])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#944])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-436/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#4351])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-464/igt@xe_sriov_scheduling@equal-throughput.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: [PASS][140] -> [FAIL][141] ([Intel XE#5937]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2-set2: [FAIL][142] ([Intel XE#3908]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: [SKIP][144] ([Intel XE#787]) -> [PASS][145] +71 other tests pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-9/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][146] ([Intel XE#455] / [Intel XE#787]) -> [PASS][147] +45 other tests pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][148] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][150] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-bmg: [SKIP][152] ([Intel XE#2291]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [FAIL][154] ([Intel XE#4367]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][156] ([Intel XE#2316]) -> [PASS][157] +3 other tests pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@absolute-wf_vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [INCOMPLETE][158] ([Intel XE#2049]) -> [PASS][159] +1 other test pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-463/igt@kms_flip@absolute-wf_vblank-interruptible@c-hdmi-a6.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-464/igt@kms_flip@absolute-wf_vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-adlp: [DMESG-WARN][160] ([Intel XE#4543]) -> [PASS][161] +3 other tests pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][162] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][164] ([Intel XE#455]) -> [PASS][165] +7 other tests pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x:
- shard-adlp: [DMESG-FAIL][166] ([Intel XE#4543]) -> [PASS][167] +1 other test pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [FAIL][168] ([Intel XE#1874]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][170] ([Intel XE#1503]) -> [PASS][171] +1 other test pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][172] ([Intel XE#4596]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [SKIP][174] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2-set2: [SKIP][176] ([Intel XE#455]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][178] ([Intel XE#718]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][180] ([Intel XE#5893]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_gt_freq@freq_fixed_idle:
- shard-dg2-set2: [FAIL][182] ([Intel XE#6407]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-432/igt@xe_gt_freq@freq_fixed_idle.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-464/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_pm@s3-basic:
- shard-adlp: [INCOMPLETE][184] ([Intel XE#6255]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-6/igt@xe_pm@s3-basic.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@xe_pm@s3-basic.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [FAIL][186] ([Intel XE#6406]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-464/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-bmg: [FAIL][188] ([Intel XE#5937]) -> [PASS][189] +1 other test pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
#### Warnings ####
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-adlp: [DMESG-WARN][190] ([Intel XE#4543]) -> [DMESG-WARN][191] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-adlp: [SKIP][192] ([Intel XE#455] / [Intel XE#787]) -> [DMESG-WARN][193] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][194] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [DMESG-WARN][195] ([Intel XE#1727] / [Intel XE#3113])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][196] ([Intel XE#1178]) -> [SKIP][197] ([Intel XE#2341]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][198] ([Intel XE#2341]) -> [FAIL][199] ([Intel XE#1178])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_content_protection@srm.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-7/igt@kms_content_protection@srm.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][200] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][201] ([Intel XE#301])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [DMESG-WARN][202] ([Intel XE#4543] / [Intel XE#5208]) -> [DMESG-WARN][203] ([Intel XE#5208])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][204] ([Intel XE#2311]) -> [SKIP][205] ([Intel XE#2312]) +6 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-adlp: [DMESG-FAIL][206] ([Intel XE#4543]) -> [FAIL][207] ([Intel XE#5671])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-adlp: [FAIL][208] ([Intel XE#5671]) -> [DMESG-FAIL][209] ([Intel XE#4543])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][210] ([Intel XE#5390]) -> [SKIP][211] ([Intel XE#2312]) +6 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][212] ([Intel XE#2312]) -> [SKIP][213] ([Intel XE#5390]) +5 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][214] ([Intel XE#2312]) -> [SKIP][215] ([Intel XE#2311]) +5 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][216] ([Intel XE#2313]) -> [SKIP][217] ([Intel XE#2312]) +9 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][218] ([Intel XE#2312]) -> [SKIP][219] ([Intel XE#2313]) +13 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][220] ([Intel XE#5021]) -> [SKIP][221] ([Intel XE#4596])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: [SKIP][222] ([Intel XE#734]) -> [FAIL][223] ([Intel XE#3325])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-6/igt@kms_pm_dc@dc9-dpms.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][224] ([Intel XE#1729]) -> [SKIP][225] ([Intel XE#362])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_peer2peer@read:
- shard-adlp: [SKIP][226] ([Intel XE#1061] / [Intel XE#5568]) -> [DMESG-FAIL][227] ([Intel XE#5213])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-2/igt@xe_peer2peer@read.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-3/igt@xe_peer2peer@read.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: [DMESG-FAIL][228] ([Intel XE#3868] / [Intel XE#5213]) -> [ABORT][229] ([Intel XE#4917]) +1 other test abort
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-9/igt@xe_sriov_scheduling@equal-throughput.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/shard-adlp-2/igt@xe_sriov_scheduling@equal-throughput.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4367
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[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#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[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#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5568
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5611]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5611
[Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6255
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6406
[Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
[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#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
Build changes
-------------
* IGT: IGT_8594 -> IGT_8595
* Linux: xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd -> xe-pw-156302v3
IGT_8594: 8594
IGT_8595: 8595
xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd: 71929a54e8bb5da291d41a931d80c6c9160073dd
xe-pw-156302v3: 156302v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156302v3/index.html
[-- Attachment #2: Type: text/html, Size: 86667 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread
end of thread, other threads:[~2025-10-23 15:28 UTC | newest]
Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-22 7:29 [CI 00/13] auxccs ci run no stolen Tvrtko Ursulin
2025-10-22 7:29 ` [CI 01/13] drm/xe: Fix ggtt fb alignment Tvrtko Ursulin
2025-10-22 7:29 ` [CI 02/13] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
2025-10-22 7:29 ` [CI 03/13] drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS Tvrtko Ursulin
2025-10-22 7:29 ` [CI 04/13] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
2025-10-22 7:29 ` [CI 05/13] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
2025-10-22 7:29 ` [CI 06/13] drm/xe/xelp: Wait for AuxCCS invalidation to complete Tvrtko Ursulin
2025-10-22 7:29 ` [CI 07/13] drm/xe: Export xe_emit_aux_table_inv Tvrtko Ursulin
2025-10-22 7:30 ` [CI 08/13] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
2025-10-22 7:30 ` [CI 09/13] drm/xe: Flush GGTT writes after populating DPT Tvrtko Ursulin
2025-10-22 7:30 ` [CI 10/13] drm/xe: Handle DPT in system memory Tvrtko Ursulin
2025-10-22 7:30 ` [CI 11/13] drm/xe: Do not use stolen memory for DPT on IGFX and AuxCCS Tvrtko Ursulin
2025-10-22 7:30 ` [CI 12/13] drm/xe/display: Add support for AuxCCS Tvrtko Ursulin
2025-10-22 7:30 ` [CI 13/13] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe Tvrtko Ursulin
2025-10-22 7:36 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen Patchwork
2025-10-22 7:37 ` ✓ CI.KUnit: success " Patchwork
2025-10-22 8:47 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-22 10:02 ` ✗ Xe.CI.Full: failure " Patchwork
2025-10-22 16:05 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen (rev2) Patchwork
2025-10-22 16:07 ` ✓ CI.KUnit: success " Patchwork
2025-10-22 17:10 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-22 20:00 ` ✗ Xe.CI.Full: failure " Patchwork
2025-10-23 8:37 ` ✗ CI.checkpatch: warning for auxccs ci run no stolen (rev3) Patchwork
2025-10-23 8:38 ` ✓ CI.KUnit: success " Patchwork
2025-10-23 9:26 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-23 15:28 ` ✗ Xe.CI.Full: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-10-02 14:24 [CI 00/13] CCS uncached mocs 0 test run Tvrtko Ursulin
2025-10-02 14:24 ` [CI 01/13] drm/xe: Fix ggtt fb alignment Tvrtko Ursulin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox