* [PATCH v13 01/12] drm/xe: Fix ggtt fb alignment
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 02/12] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
` (29 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe
Cc: kernel-dev, Tvrtko Ursulin, Ville Syrjälä,
Juha-Pekka Heikkila
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] 44+ messages in thread* [PATCH v13 02/12] drm/xe/xelpg: Flush CCS when flushing caches
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 01/12] drm/xe: Fix ggtt fb alignment Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 11:27 ` Ville Syrjälä
2025-10-20 7:58 ` [PATCH v13 03/12] drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS Tvrtko Ursulin
` (28 subsequent siblings)
30 siblings, 1 reply; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin, Rodrigo Vivi
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] 44+ messages in thread* Re: [PATCH v13 02/12] drm/xe/xelpg: Flush CCS when flushing caches
2025-10-20 7:58 ` [PATCH v13 02/12] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
@ 2025-10-20 11:27 ` Ville Syrjälä
0 siblings, 0 replies; 44+ messages in thread
From: Ville Syrjälä @ 2025-10-20 11:27 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev, Rodrigo Vivi
On Mon, Oct 20, 2025 at 08:58:20AM +0100, Tvrtko Ursulin wrote:
> According to i915 PIPE_CONTROL0_CCS_FLUSH needs to be set when flushing
> render caches on gfx ip 12.70+.
>
> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/xe/instructions/xe_gpu_commands.h | 1 +
> drivers/gpu/drm/xe/xe_ring_ops.c | 7 ++++++-
> 2 files changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h b/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
> index 8cfcd3360896..78c0e87dbd37 100644
> --- a/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
> +++ b/drivers/gpu/drm/xe/instructions/xe_gpu_commands.h
> @@ -43,6 +43,7 @@
>
> #define PIPE_CONTROL0_L3_READ_ONLY_CACHE_INVALIDATE BIT(10) /* gen12 */
> #define PIPE_CONTROL0_HDC_PIPELINE_FLUSH BIT(9) /* gen12 */
> +#define PIPE_CONTROL0_CCS_FLUSH BIT(13) /* MTL+ */
IIRC that thing exists already on dg2, but we don't use there for
whatever unknown reason.
It also doesn't help that bsepc calls DG2 12.7 as well, but for us
someone has invented the of 12.55 number that's never mentioned
in bspec AFAICS.
>
> #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
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 44+ messages in thread
* [PATCH v13 03/12] drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 01/12] drm/xe: Fix ggtt fb alignment Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 02/12] drm/xe/xelpg: Flush CCS when flushing caches Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 04/12] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
` (27 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin, Rodrigo Vivi
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] 44+ messages in thread* [PATCH v13 04/12] drm/xe/xelp: Support auxccs invalidation on blitter
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (2 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 03/12] drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-22 22:58 ` Matt Roper
2025-10-20 7:58 ` [PATCH v13 05/12] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
` (26 subsequent siblings)
30 siblings, 1 reply; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin
Auxccs platforms need to be able to invalidate auxccs on the blitter
engine.
Add the relevant mmio register and enable this by refactoring the ring
emission a bit to consolidate all non-render engines.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 1 +
drivers/gpu/drm/xe/xe_ring_ops.c | 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 228de47c0f3f..12a7d7c73158 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -88,6 +88,7 @@
#define CCS_AUX_INV XE_REG(0x4208)
#define VD0_AUX_INV XE_REG(0x4218)
+#define BCS_AUX_INV XE_REG(0x4248)
#define VE0_AUX_INV XE_REG(0x4238)
#define VE1_AUX_INV XE_REG(0x42b8)
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 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] 44+ messages in thread* Re: [PATCH v13 04/12] drm/xe/xelp: Support auxccs invalidation on blitter
2025-10-20 7:58 ` [PATCH v13 04/12] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
@ 2025-10-22 22:58 ` Matt Roper
2025-10-23 7:51 ` Tvrtko Ursulin
0 siblings, 1 reply; 44+ messages in thread
From: Matt Roper @ 2025-10-22 22:58 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev
On Mon, Oct 20, 2025 at 08:58:22AM +0100, Tvrtko Ursulin wrote:
> Auxccs platforms need to be able to invalidate auxccs on the blitter
> engine.
Drive-by comment: there's no auxccs invalidation on any platforms
except for MTL/ARL (and register 0x4248 does not exist outside those
platforms). The blitter engine was not compression-aware on earlier
platforms, and after mtl/arl all platforms transitioned to flatccs.
Matt
>
> 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 228de47c0f3f..12a7d7c73158 100644
> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> @@ -88,6 +88,7 @@
> #define CCS_AUX_INV XE_REG(0x4208)
>
> #define VD0_AUX_INV XE_REG(0x4218)
> +#define BCS_AUX_INV XE_REG(0x4248)
> #define VE0_AUX_INV XE_REG(0x4238)
>
> #define VE1_AUX_INV XE_REG(0x42b8)
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> index 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
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 44+ messages in thread* Re: [PATCH v13 04/12] drm/xe/xelp: Support auxccs invalidation on blitter
2025-10-22 22:58 ` Matt Roper
@ 2025-10-23 7:51 ` Tvrtko Ursulin
2025-10-23 17:10 ` Matt Roper
0 siblings, 1 reply; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-23 7:51 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe, kernel-dev
On 22/10/2025 23:58, Matt Roper wrote:
> On Mon, Oct 20, 2025 at 08:58:22AM +0100, Tvrtko Ursulin wrote:
>> Auxccs platforms need to be able to invalidate auxccs on the blitter
>> engine.
>
> Drive-by comment: there's no auxccs invalidation on any platforms
> except for MTL/ARL (and register 0x4248 does not exist outside those
> platforms). The blitter engine was not compression-aware on earlier
> platforms, and after mtl/arl all platforms transitioned to flatccs.
When you say no auxccs invalidation before MTL what exactly do you mean?
I am confused because in i915 invalidation VCS and VECS was added in
972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all
engines"), and then expanded to BCS in 6a35f22d2225 ("drm/i915/gt:
Support aux invalidation on all engines").
Are you saying even the initial one was wrong? It sounds doubtful
because I don't think MTL was a thing back when that was written so
people did get the concept from somewhere.
Maybe only 6a35f22d2225 was incorrect and only GEN12_BCS0_AUX_INV is MTL
only, while the rest is good?
All I can see are public TGL docs which dont even list 0x4218. And
972282c4cf24 is before ADL enablement so where did the info come from?
It mentions bspec#43904 and hsdes#180917579, for what platforms are
those if you could check?
Regards,
Tvrtko
>> 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 228de47c0f3f..12a7d7c73158 100644
>> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>> @@ -88,6 +88,7 @@
>> #define CCS_AUX_INV XE_REG(0x4208)
>>
>> #define VD0_AUX_INV XE_REG(0x4218)
>> +#define BCS_AUX_INV XE_REG(0x4248)
>> #define VE0_AUX_INV XE_REG(0x4238)
>>
>> #define VE1_AUX_INV XE_REG(0x42b8)
>> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
>> index 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 [flat|nested] 44+ messages in thread* Re: [PATCH v13 04/12] drm/xe/xelp: Support auxccs invalidation on blitter
2025-10-23 7:51 ` Tvrtko Ursulin
@ 2025-10-23 17:10 ` Matt Roper
2025-10-24 10:50 ` Tvrtko Ursulin
0 siblings, 1 reply; 44+ messages in thread
From: Matt Roper @ 2025-10-23 17:10 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev
On Thu, Oct 23, 2025 at 08:51:45AM +0100, Tvrtko Ursulin wrote:
>
> On 22/10/2025 23:58, Matt Roper wrote:
> > On Mon, Oct 20, 2025 at 08:58:22AM +0100, Tvrtko Ursulin wrote:
> > > Auxccs platforms need to be able to invalidate auxccs on the blitter
> > > engine.
> >
> > Drive-by comment: there's no auxccs invalidation on any platforms
> > except for MTL/ARL (and register 0x4248 does not exist outside those
> > platforms). The blitter engine was not compression-aware on earlier
> > platforms, and after mtl/arl all platforms transitioned to flatccs.
>
> When you say no auxccs invalidation before MTL what exactly do you mean?
Sorry, I specifically meant to say that *BCS* aux invalidation is only
relevant on MTL/ARL. Aux invalidation for other engines did indeed
exist earlier.
>
> I am confused because in i915 invalidation VCS and VECS was added in
> 972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all engines"),
> and then expanded to BCS in 6a35f22d2225 ("drm/i915/gt: Support aux
> invalidation on all engines").
>
> Are you saying even the initial one was wrong? It sounds doubtful because I
> don't think MTL was a thing back when that was written so people did get the
> concept from somewhere.
>
> Maybe only 6a35f22d2225 was incorrect and only GEN12_BCS0_AUX_INV is MTL
> only, while the rest is good?
Right, only the second commit here (which added BCS invalidation
support) was wrong. That was supposed to be specific to MTL/ARL. In
fact, the r-b for the patch was even conditional on making it
MTL-specific, but I guess that got overlooked:
https://lore.kernel.org/all/5f846260-8416-fb19-bd46-ced39153a92a@intel.com/
>
> All I can see are public TGL docs which dont even list 0x4218. And
> 972282c4cf24 is before ADL enablement so where did the info come from? It
> mentions bspec#43904 and hsdes#180917579, for what platforms are those if
> you could check?
Bspec 43904 is the register details page for
"Register_CCSAuxiliaryTableInvalidate." Checking the "References"
information on that page lists the specific instances of the register
that exist for various engines, and the blit instance is marked as
"MTL,ARL."
HSD 1809175790 isn't terribly interesting here; it's a bug report
against the Windows driver that was originally root caused to a mistake
in aux programming and triggered an "oh, this is documented very clearly
in the bspec; let's clean that up" action. The more useful HSD is
actually 16011159293 which represents the hardware change introduced by
MTL that added compression support to the copy engines. Before MTL, the
copy engines couldn't do things like compressed<->uncompressed copies,
or fast clears of compressed surfaces (i.e., clears that just update the
CCS metadata to "this block is zero" and don't touch the main surface),
so the engine didn't read or use the CCS and aux invalidation wasn't
relevant.
Matt
>
> Regards,
>
> Tvrtko
> > > 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 228de47c0f3f..12a7d7c73158 100644
> > > --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > > +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > > @@ -88,6 +88,7 @@
> > > #define CCS_AUX_INV XE_REG(0x4208)
> > > #define VD0_AUX_INV XE_REG(0x4218)
> > > +#define BCS_AUX_INV XE_REG(0x4248)
> > > #define VE0_AUX_INV XE_REG(0x4238)
> > > #define VE1_AUX_INV XE_REG(0x42b8)
> > > diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > index 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
> > >
> >
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 44+ messages in thread* Re: [PATCH v13 04/12] drm/xe/xelp: Support auxccs invalidation on blitter
2025-10-23 17:10 ` Matt Roper
@ 2025-10-24 10:50 ` Tvrtko Ursulin
0 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-24 10:50 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe, kernel-dev
On 23/10/2025 18:10, Matt Roper wrote:
> On Thu, Oct 23, 2025 at 08:51:45AM +0100, Tvrtko Ursulin wrote:
>>
>> On 22/10/2025 23:58, Matt Roper wrote:
>>> On Mon, Oct 20, 2025 at 08:58:22AM +0100, Tvrtko Ursulin wrote:
>>>> Auxccs platforms need to be able to invalidate auxccs on the blitter
>>>> engine.
>>>
>>> Drive-by comment: there's no auxccs invalidation on any platforms
>>> except for MTL/ARL (and register 0x4248 does not exist outside those
>>> platforms). The blitter engine was not compression-aware on earlier
>>> platforms, and after mtl/arl all platforms transitioned to flatccs.
>>
>> When you say no auxccs invalidation before MTL what exactly do you mean?
>
> Sorry, I specifically meant to say that *BCS* aux invalidation is only
> relevant on MTL/ARL. Aux invalidation for other engines did indeed
> exist earlier.
Ah cool, thanks for clearing it up!
>> I am confused because in i915 invalidation VCS and VECS was added in
>> 972282c4cf24 ("drm/i915/gen12: Add aux table invalidate for all engines"),
>> and then expanded to BCS in 6a35f22d2225 ("drm/i915/gt: Support aux
>> invalidation on all engines").
>>
>> Are you saying even the initial one was wrong? It sounds doubtful because I
>> don't think MTL was a thing back when that was written so people did get the
>> concept from somewhere.
>>
>> Maybe only 6a35f22d2225 was incorrect and only GEN12_BCS0_AUX_INV is MTL
>> only, while the rest is good?
>
> Right, only the second commit here (which added BCS invalidation
> support) was wrong. That was supposed to be specific to MTL/ARL. In
> fact, the r-b for the patch was even conditional on making it
> MTL-specific, but I guess that got overlooked:
>
> https://lore.kernel.org/all/5f846260-8416-fb19-bd46-ced39153a92a@intel.com/
I see. Good find.
I have adjusted and re-posted my series, thanks for spotting the
mistakes and looking throught the internal docs!
Regards,
Tvrtko
>>
>> All I can see are public TGL docs which dont even list 0x4218. And
>> 972282c4cf24 is before ADL enablement so where did the info come from? It
>> mentions bspec#43904 and hsdes#180917579, for what platforms are those if
>> you could check?
>
> Bspec 43904 is the register details page for
> "Register_CCSAuxiliaryTableInvalidate." Checking the "References"
> information on that page lists the specific instances of the register
> that exist for various engines, and the blit instance is marked as
> "MTL,ARL."
>
> HSD 1809175790 isn't terribly interesting here; it's a bug report
> against the Windows driver that was originally root caused to a mistake
> in aux programming and triggered an "oh, this is documented very clearly
> in the bspec; let's clean that up" action. The more useful HSD is
> actually 16011159293 which represents the hardware change introduced by
> MTL that added compression support to the copy engines. Before MTL, the
> copy engines couldn't do things like compressed<->uncompressed copies,
> or fast clears of compressed surfaces (i.e., clears that just update the
> CCS metadata to "this block is zero" and don't touch the main surface),
> so the engine didn't read or use the CCS and aux invalidation wasn't
> relevant.
>
>
> Matt
>
>>
>> Regards,
>>
>> Tvrtko
>>>> 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 228de47c0f3f..12a7d7c73158 100644
>>>> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>>>> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>>>> @@ -88,6 +88,7 @@
>>>> #define CCS_AUX_INV XE_REG(0x4208)
>>>> #define VD0_AUX_INV XE_REG(0x4218)
>>>> +#define BCS_AUX_INV XE_REG(0x4248)
>>>> #define VE0_AUX_INV XE_REG(0x4238)
>>>> #define VE1_AUX_INV XE_REG(0x42b8)
>>>> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
>>>> index 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 [flat|nested] 44+ messages in thread
* [PATCH v13 05/12] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (3 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 04/12] drm/xe/xelp: Support auxccs invalidation on blitter Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-22 23:13 ` Matt Roper
2025-10-20 7:58 ` [PATCH v13 06/12] drm/xe/xelp: Wait for AuxCCS invalidation to complete Tvrtko Ursulin
` (25 subsequent siblings)
30 siblings, 1 reply; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin, Rodrigo Vivi
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] 44+ messages in thread* Re: [PATCH v13 05/12] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
2025-10-20 7:58 ` [PATCH v13 05/12] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
@ 2025-10-22 23:13 ` Matt Roper
2025-10-23 7:55 ` Tvrtko Ursulin
0 siblings, 1 reply; 44+ messages in thread
From: Matt Roper @ 2025-10-22 23:13 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev, Rodrigo Vivi
On Mon, Oct 20, 2025 at 08:58:23AM +0100, Tvrtko Ursulin wrote:
> Emit MI_FLUSH_DW_CCS when invalidating on auxccs platforms.
This is another one that doesn't apply to all platforms. The
MI_FLUSH_DW_CCS flag only exists from DG2 onward (and does not exist on
PVC either). So MTL/ARL are again the only platforms that this should
actually apply to.
The bspec doesn't document any other meaning for this bit on the older
gen12 platforms, so maybe it's safe to just set it anyway?
Matt
>
> 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
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 44+ messages in thread* Re: [PATCH v13 05/12] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
2025-10-22 23:13 ` Matt Roper
@ 2025-10-23 7:55 ` Tvrtko Ursulin
2025-10-23 17:14 ` Matt Roper
0 siblings, 1 reply; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-23 7:55 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe, kernel-dev, Rodrigo Vivi
On 23/10/2025 00:13, Matt Roper wrote:
> On Mon, Oct 20, 2025 at 08:58:23AM +0100, Tvrtko Ursulin wrote:
>> Emit MI_FLUSH_DW_CCS when invalidating on auxccs platforms.
>
> This is another one that doesn't apply to all platforms. The
> MI_FLUSH_DW_CCS flag only exists from DG2 onward (and does not exist on
> PVC either). So MTL/ARL are again the only platforms that this should
> actually apply to.
>
> The bspec doesn't document any other meaning for this bit on the older
> gen12 platforms, so maybe it's safe to just set it anyway?
Don't ask a person with not access to the docs. :)
Essentially you are saying b70df82b4287 ("drm/i915/gt: Enable the
CCS_FLUSH bit in the pipe control and in the CS") was wrong to set
MI_FLUSH_DW_CCS, correct? This one is at least not as suspect as the
invalidation register story, given the other part of this commit is
adding a >= 12.70 check, so I can easily fix it.
Regards,
Tvrtko
>> 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 [flat|nested] 44+ messages in thread* Re: [PATCH v13 05/12] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
2025-10-23 7:55 ` Tvrtko Ursulin
@ 2025-10-23 17:14 ` Matt Roper
0 siblings, 0 replies; 44+ messages in thread
From: Matt Roper @ 2025-10-23 17:14 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev, Rodrigo Vivi
On Thu, Oct 23, 2025 at 08:55:52AM +0100, Tvrtko Ursulin wrote:
>
> On 23/10/2025 00:13, Matt Roper wrote:
> > On Mon, Oct 20, 2025 at 08:58:23AM +0100, Tvrtko Ursulin wrote:
> > > Emit MI_FLUSH_DW_CCS when invalidating on auxccs platforms.
> >
> > This is another one that doesn't apply to all platforms. The
> > MI_FLUSH_DW_CCS flag only exists from DG2 onward (and does not exist on
> > PVC either). So MTL/ARL are again the only platforms that this should
> > actually apply to.
> >
> > The bspec doesn't document any other meaning for this bit on the older
> > gen12 platforms, so maybe it's safe to just set it anyway?
>
> Don't ask a person with not access to the docs. :)
>
> Essentially you are saying b70df82b4287 ("drm/i915/gt: Enable the CCS_FLUSH
> bit in the pipe control and in the CS") was wrong to set MI_FLUSH_DW_CCS,
> correct? This one is at least not as suspect as the invalidation register
> story, given the other part of this commit is adding a >= 12.70 check, so I
> can easily fix it.
Yeah, in i915 the MI_FLUSH_DW change in that patch should either have
been conditional on graphics version like the PIPE_CONTROL one was, or
gen12_get_aux_inv_reg() should have had a check to ensure that BCS0
returned INVALID_MMIO_REG on pre-MTL platforms.
Matt
>
> Regards,
>
> Tvrtko
>
> > > 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
> > >
> >
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 44+ messages in thread
* [PATCH v13 06/12] drm/xe/xelp: Wait for AuxCCS invalidation to complete
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (4 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 05/12] drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 07/12] drm/xe: Export xe_emit_aux_table_inv Tvrtko Ursulin
` (24 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin, Rodrigo Vivi
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] 44+ messages in thread* [PATCH v13 07/12] drm/xe: Export xe_emit_aux_table_inv
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (5 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 06/12] drm/xe/xelp: Wait for AuxCCS invalidation to complete Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 08/12] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
` (23 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin
Export the existing AuxCCS invalidation ring buffer programming helper
which we will need to use to setup the indirect context workaround in the
next patch.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
drivers/gpu/drm/xe/xe_ring_ops.c | 77 +++++++++++++++++++-------------
drivers/gpu/drm/xe/xe_ring_ops.h | 3 ++
2 files changed, 49 insertions(+), 31 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 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] 44+ messages in thread* [PATCH v13 08/12] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (6 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 07/12] drm/xe: Export xe_emit_aux_table_inv Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 11:31 ` Ville Syrjälä
2025-10-20 7:58 ` [PATCH v13 09/12] drm/xe: Flush GGTT writes after populating DPT Tvrtko Ursulin
` (22 subsequent siblings)
30 siblings, 1 reply; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin
Following from the i915 reference implementation, we add the AuxCCS
invalidation to the indirect context workarounds page.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
drivers/gpu/drm/xe/xe_lrc.c | 38 +++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index b5083c99dd50..c77a166a2742 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"
@@ -88,6 +89,16 @@ gt_engine_needs_indirect_ctx(struct xe_gt *gt, enum xe_engine_class class)
class, NULL))
return true;
+ /* AuxCCS invalidation */
+ if (GRAPHICS_VERx100(xe) >= 1200 &&
+ GRAPHICS_VERx100(xe) <= 1210 &&
+ (class == XE_ENGINE_CLASS_RENDER ||
+ class == XE_ENGINE_CLASS_COMPUTE ||
+ class == XE_ENGINE_CLASS_COPY ||
+ class == XE_ENGINE_CLASS_VIDEO_DECODE ||
+ class == XE_ENGINE_CLASS_VIDEO_ENHANCE))
+ return true;
+
return false;
}
@@ -1188,6 +1199,31 @@ static ssize_t setup_invalidate_state_cache_wa(struct xe_lrc *lrc,
return cmd - batch;
}
+static ssize_t setup_invalidate_auxccs_wa(struct xe_lrc *lrc,
+ struct xe_hw_engine *hwe,
+ u32 *batch, size_t max_len)
+{
+ struct xe_gt *gt = lrc->gt;
+ struct xe_device *xe = gt_to_xe(gt);
+ const unsigned int class = hwe->class;
+ u32 *cmd;
+
+ if (GRAPHICS_VERx100(xe) < 1200 || GRAPHICS_VERx100(xe) > 1210 ||
+ !(class == XE_ENGINE_CLASS_RENDER ||
+ class == XE_ENGINE_CLASS_COMPUTE ||
+ class == XE_ENGINE_CLASS_COPY ||
+ class == XE_ENGINE_CLASS_VIDEO_DECODE ||
+ class == XE_ENGINE_CLASS_VIDEO_ENHANCE))
+ return 0;
+
+ if (xe_gt_WARN_ON(gt, max_len < 8))
+ return -ENOSPC;
+
+ cmd = xe_emit_aux_table_inv(hwe, batch);
+
+ return cmd - batch;
+}
+
struct bo_setup {
ssize_t (*setup)(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
u32 *batch, size_t max_size);
@@ -1320,9 +1356,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] 44+ messages in thread* Re: [PATCH v13 08/12] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
2025-10-20 7:58 ` [PATCH v13 08/12] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
@ 2025-10-20 11:31 ` Ville Syrjälä
2025-10-20 15:13 ` Tvrtko Ursulin
0 siblings, 1 reply; 44+ messages in thread
From: Ville Syrjälä @ 2025-10-20 11:31 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe, kernel-dev
On Mon, Oct 20, 2025 at 08:58:26AM +0100, Tvrtko Ursulin wrote:
> 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 | 38 +++++++++++++++++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
> index b5083c99dd50..c77a166a2742 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"
> @@ -88,6 +89,16 @@ gt_engine_needs_indirect_ctx(struct xe_gt *gt, enum xe_engine_class class)
> class, NULL))
> return true;
>
> + /* AuxCCS invalidation */
> + if (GRAPHICS_VERx100(xe) >= 1200 &&
> + GRAPHICS_VERx100(xe) <= 1210 &&
> + (class == XE_ENGINE_CLASS_RENDER ||
> + class == XE_ENGINE_CLASS_COMPUTE ||
> + class == XE_ENGINE_CLASS_COPY ||
> + class == XE_ENGINE_CLASS_VIDEO_DECODE ||
> + class == XE_ENGINE_CLASS_VIDEO_ENHANCE))
> + return true;
> +
> return false;
> }
>
> @@ -1188,6 +1199,31 @@ static ssize_t setup_invalidate_state_cache_wa(struct xe_lrc *lrc,
> return cmd - batch;
> }
>
> +static ssize_t setup_invalidate_auxccs_wa(struct xe_lrc *lrc,
> + struct xe_hw_engine *hwe,
> + u32 *batch, size_t max_len)
> +{
> + struct xe_gt *gt = lrc->gt;
> + struct xe_device *xe = gt_to_xe(gt);
> + const unsigned int class = hwe->class;
> + u32 *cmd;
> +
> + if (GRAPHICS_VERx100(xe) < 1200 || GRAPHICS_VERx100(xe) > 1210 ||
> + !(class == XE_ENGINE_CLASS_RENDER ||
> + class == XE_ENGINE_CLASS_COMPUTE ||
> + class == XE_ENGINE_CLASS_COPY ||
> + class == XE_ENGINE_CLASS_VIDEO_DECODE ||
> + class == XE_ENGINE_CLASS_VIDEO_ENHANCE))
> + return 0;
I would extract that into a function instead of repeating it twice.
> +
> + 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 +1356,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
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 44+ messages in thread* Re: [PATCH v13 08/12] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
2025-10-20 11:31 ` Ville Syrjälä
@ 2025-10-20 15:13 ` Tvrtko Ursulin
0 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 15:13 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe, kernel-dev
On 20/10/2025 12:31, Ville Syrjälä wrote:
> On Mon, Oct 20, 2025 at 08:58:26AM +0100, Tvrtko Ursulin wrote:
>> 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 | 38 +++++++++++++++++++++++++++++++++++++
>> 1 file changed, 38 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
>> index b5083c99dd50..c77a166a2742 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"
>> @@ -88,6 +89,16 @@ gt_engine_needs_indirect_ctx(struct xe_gt *gt, enum xe_engine_class class)
>> class, NULL))
>> return true;
>>
>> + /* AuxCCS invalidation */
>> + if (GRAPHICS_VERx100(xe) >= 1200 &&
>> + GRAPHICS_VERx100(xe) <= 1210 &&
>> + (class == XE_ENGINE_CLASS_RENDER ||
>> + class == XE_ENGINE_CLASS_COMPUTE ||
>> + class == XE_ENGINE_CLASS_COPY ||
>> + class == XE_ENGINE_CLASS_VIDEO_DECODE ||
>> + class == XE_ENGINE_CLASS_VIDEO_ENHANCE))
>> + return true;
>> +
>> return false;
>> }
>>
>> @@ -1188,6 +1199,31 @@ static ssize_t setup_invalidate_state_cache_wa(struct xe_lrc *lrc,
>> return cmd - batch;
>> }
>>
>> +static ssize_t setup_invalidate_auxccs_wa(struct xe_lrc *lrc,
>> + struct xe_hw_engine *hwe,
>> + u32 *batch, size_t max_len)
>> +{
>> + struct xe_gt *gt = lrc->gt;
>> + struct xe_device *xe = gt_to_xe(gt);
>> + const unsigned int class = hwe->class;
>> + u32 *cmd;
>> +
>> + if (GRAPHICS_VERx100(xe) < 1200 || GRAPHICS_VERx100(xe) > 1210 ||
>> + !(class == XE_ENGINE_CLASS_RENDER ||
>> + class == XE_ENGINE_CLASS_COMPUTE ||
>> + class == XE_ENGINE_CLASS_COPY ||
>> + class == XE_ENGINE_CLASS_VIDEO_DECODE ||
>> + class == XE_ENGINE_CLASS_VIDEO_ENHANCE))
>> + return 0;
>
> I would extract that into a function instead of repeating it twice.
Indeed, thanks! I consolidated it locally as:
if (xe_engine_supports_auxccs(xe, class))
return true;
And:
if (!xe_engine_supports_auxccs(xe, class))
return 0;
Waiting on more feedback or CI to get better before I send out the respin.
Regards,
Tvrtko
>
>> +
>> + 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 +1356,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 [flat|nested] 44+ messages in thread
* [PATCH v13 09/12] drm/xe: Flush GGTT writes after populating DPT
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (7 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 08/12] drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 10/12] drm/xe: Handle DPT in system memory Tvrtko Ursulin
` (21 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin, Ville Syrjälä
When DPT is placed in stolen it is populated using ioremap_wc() via GGTT.
I915 has established that on modern platforms a small flush and delay is
required for those writes to reliably land so lets add the same logic
(simplified by removing impossible platforms) to xe as well.
v2:
* Do it only for system memory buffers.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/xe/display/xe_fb_pin.c | 45 ++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 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] 44+ messages in thread* [PATCH v13 10/12] drm/xe: Handle DPT in system memory
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (8 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 09/12] drm/xe: Flush GGTT writes after populating DPT Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 11/12] drm/xe/display: Add support for AuxCCS Tvrtko Ursulin
` (20 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin
If DPT is allocated from system memory it will be created in the default
write-back cached mode. This means we need to flush it after populating
otherwise nothing works.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
---
drivers/gpu/drm/xe/display/xe_fb_pin.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 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] 44+ messages in thread* [PATCH v13 11/12] drm/xe/display: Add support for AuxCCS
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (9 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 10/12] drm/xe: Handle DPT in system memory Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 7:58 ` [PATCH v13 12/12] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe Tvrtko Ursulin
` (19 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe; +Cc: kernel-dev, Tvrtko Ursulin, Juha-Pekka Heikkila, Michael J. Ruhl
Add support for mapping the auxiliary CCS buffer into the DPT page tables.
This will allow for more power efficiency by enabling the render
compression frame buffer modifiers such as
I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS in a following patch.
We do this by refactoring the code a bit so handling for the linear
auxiliary frame buffer can be added in a tidy way. Also replace some
hardcoded constants.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
drivers/gpu/drm/xe/display/xe_fb_pin.c | 111 ++++++++++++++++++-------
1 file changed, 81 insertions(+), 30 deletions(-)
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index af691eee398a..3a6a3bd83966 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -53,33 +53,94 @@ write_dpt_rotated(struct xe_bo *bo, struct iosys_map *map, u32 *dpt_ofs, u32 bo_
*dpt_ofs = ALIGN(*dpt_ofs, 4096);
}
+static unsigned int
+write_dpt_padding(struct iosys_map *map, unsigned int dest, unsigned int pad)
+{
+ /* The DE ignores the PTEs for the padding tiles */
+ return dest + pad * sizeof(u64);
+}
+
+static unsigned int
+write_dpt_remapped_linear(struct xe_bo *bo, struct iosys_map *map,
+ unsigned int dest,
+ const struct intel_remapped_plane_info *plane)
+{
+ struct xe_device *xe = xe_bo_device(bo);
+ struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
+ const u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo,
+ xe->pat.idx[XE_CACHE_NONE]);
+ unsigned int offset = plane->offset * XE_PAGE_SIZE;
+ unsigned int size = plane->size;
+
+ while (size--) {
+ u64 addr = xe_bo_addr(bo, offset, XE_PAGE_SIZE);
+
+ iosys_map_wr(map, dest, u64, addr | pte);
+ dest += sizeof(u64);
+ offset += XE_PAGE_SIZE;
+ }
+
+ return dest;
+}
+
+static unsigned int
+write_dpt_remapped_tiled(struct xe_bo *bo, struct iosys_map *map,
+ unsigned int dest,
+ const struct intel_remapped_plane_info *plane)
+{
+ struct xe_device *xe = xe_bo_device(bo);
+ struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
+ const u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo,
+ xe->pat.idx[XE_CACHE_NONE]);
+ unsigned int offset, column, row;
+
+ for (row = 0; row < plane->height; row++) {
+ offset = (plane->offset + plane->src_stride * row) *
+ XE_PAGE_SIZE;
+
+ for (column = 0; column < plane->width; column++) {
+ u64 addr = xe_bo_addr(bo, offset, XE_PAGE_SIZE);
+
+ iosys_map_wr(map, dest, u64, addr | pte);
+ dest += sizeof(u64);
+ offset += XE_PAGE_SIZE;
+ }
+
+ dest = write_dpt_padding(map, dest,
+ plane->dst_stride - plane->width);
+ }
+
+ return dest;
+}
+
static void
-write_dpt_remapped(struct xe_bo *bo, struct iosys_map *map, u32 *dpt_ofs,
- u32 bo_ofs, u32 width, u32 height, u32 src_stride,
- u32 dst_stride)
+write_dpt_remapped(struct xe_bo *bo,
+ const struct intel_remapped_info *remap_info,
+ struct iosys_map *map)
{
- struct xe_device *xe = xe_bo_device(bo);
- struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
- u32 column, row;
- u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo, xe->pat.idx[XE_CACHE_NONE]);
+ unsigned int i, dest = 0;
- for (row = 0; row < height; row++) {
- u32 src_idx = src_stride * row + bo_ofs;
+ for (i = 0; i < ARRAY_SIZE(remap_info->plane); i++) {
+ const struct intel_remapped_plane_info *plane =
+ &remap_info->plane[i];
- for (column = 0; column < width; column++) {
- u64 addr = xe_bo_addr(bo, src_idx * XE_PAGE_SIZE, XE_PAGE_SIZE);
- iosys_map_wr(map, *dpt_ofs, u64, pte | addr);
+ if (!plane->width && !plane->height && !plane->linear)
+ continue;
- *dpt_ofs += 8;
- src_idx++;
+ if (remap_info->plane_alignment) {
+ const unsigned int index = dest / sizeof(u64);
+ const unsigned int pad =
+ ALIGN(index, remap_info->plane_alignment) -
+ index;
+
+ dest = write_dpt_padding(map, dest, pad);
}
- /* The DE ignores the PTEs for the padding tiles */
- *dpt_ofs += (dst_stride - width) * 8;
+ if (plane->linear)
+ dest = write_dpt_remapped_linear(bo, map, dest, plane);
+ else
+ dest = write_dpt_remapped_tiled(bo, map, dest, plane);
}
-
- /* Align to next page */
- *dpt_ofs = ALIGN(*dpt_ofs, 4096);
}
static void gt_flush_ggtt_writes(struct xe_gt *gt)
@@ -181,17 +242,7 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
iosys_map_wr(&dpt->vmap, x * 8, u64, pte | addr);
}
} else if (view->type == I915_GTT_VIEW_REMAPPED) {
- const struct intel_remapped_info *remap_info = &view->remapped;
- u32 i, dpt_ofs = 0;
-
- for (i = 0; i < ARRAY_SIZE(remap_info->plane); i++)
- write_dpt_remapped(bo, &dpt->vmap, &dpt_ofs,
- remap_info->plane[i].offset,
- remap_info->plane[i].width,
- remap_info->plane[i].height,
- remap_info->plane[i].src_stride,
- remap_info->plane[i].dst_stride);
-
+ write_dpt_remapped(bo, &view->remapped, &dpt->vmap);
} else {
const struct intel_rotation_info *rot_info = &view->rotated;
u32 i, dpt_ofs = 0;
--
2.48.0
^ permalink raw reply related [flat|nested] 44+ messages in thread* [PATCH v13 12/12] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (10 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 11/12] drm/xe/display: Add support for AuxCCS Tvrtko Ursulin
@ 2025-10-20 7:58 ` Tvrtko Ursulin
2025-10-20 11:46 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers Patchwork
` (18 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-20 7:58 UTC (permalink / raw)
To: intel-xe
Cc: kernel-dev, Tvrtko Ursulin, José Roberto de Souza,
Juha-Pekka Heikkila, Rodrigo Vivi
Now that we have fixed the DPT handling we can undo the nerf which was
done in cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if
built for Xe").
Tested with KDE Wayland, on Lenovo Carbon X1 ADL-P:
[PLANE:32:plane 1A]: type=PRI
uapi: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=visible, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)
hw: [FB:242] AR30 little-endian (0x30335241),0x100000000000008,2880x1800, visible=yes, src=2880.000000x1800.000000+0.000000+0.000000, dst=2880x1800+0+0, rotation=0 (0x00000001)
Display working fine - no artefacts, no DMAR/PIPE faults.
v2:
* Adjust patch title. (Rodrigo)
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
References: cf48bddd31de ("drm/i915/display: Disable AuxCCS framebuffers if built for Xe")
Cc: José Roberto de Souza <jose.souza@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/display/skl_universal_plane.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 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] 44+ messages in thread* ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (11 preceding siblings ...)
2025-10-20 7:58 ` [PATCH v13 12/12] drm/i915/display: Expose AuxCCS frame buffer modifiers for Xe Tvrtko Ursulin
@ 2025-10-20 11:46 ` Patchwork
2025-10-20 11:47 ` ✓ CI.KUnit: success " Patchwork
` (17 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-20 11:46 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers
URL : https://patchwork.freedesktop.org/series/156189/
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
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit b5193d617e61af21371689dc4e1f3ac775f6df06
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date: Mon Oct 20 08:58:30 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 115d1683ee417174f6ccb99dcb542002ac93bda2 drm-intel
24b6a4b1c439 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
eccc4b4d8a1c drm/xe/xelpg: Flush CCS when flushing caches
7323f132e79e drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
7a3aaaf1658f drm/xe/xelp: Support auxccs invalidation on blitter
fe0b724b98ae drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
fbfc9d1ffe69 drm/xe/xelp: Wait for AuxCCS invalidation to complete
4693a113cf32 drm/xe: Export xe_emit_aux_table_inv
0c0f81c14e6f drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
010a1a7af63e 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
970e82728af6 drm/xe: Handle DPT in system memory
36a58a286d20 drm/xe/display: Add support for AuxCCS
b5193d617e61 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] 44+ messages in thread* ✓ CI.KUnit: success for AuxCCS handling and render compression modifiers
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (12 preceding siblings ...)
2025-10-20 11:46 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers Patchwork
@ 2025-10-20 11:47 ` Patchwork
2025-10-20 12:32 ` ✓ Xe.CI.BAT: " Patchwork
` (16 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-20 11:47 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:46:26] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:46:30] 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
[11:47:01] Starting KUnit Kernel (1/1)...
[11:47:01] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:47:01] ================== guc_buf (11 subtests) ===================
[11:47:01] [PASSED] test_smallest
[11:47:01] [PASSED] test_largest
[11:47:01] [PASSED] test_granular
[11:47:01] [PASSED] test_unique
[11:47:01] [PASSED] test_overlap
[11:47:01] [PASSED] test_reusable
[11:47:01] [PASSED] test_too_big
[11:47:01] [PASSED] test_flush
[11:47:01] [PASSED] test_lookup
[11:47:01] [PASSED] test_data
[11:47:01] [PASSED] test_class
[11:47:01] ===================== [PASSED] guc_buf =====================
[11:47:01] =================== guc_dbm (7 subtests) ===================
[11:47:01] [PASSED] test_empty
[11:47:01] [PASSED] test_default
[11:47:01] ======================== test_size ========================
[11:47:01] [PASSED] 4
[11:47:01] [PASSED] 8
[11:47:01] [PASSED] 32
[11:47:01] [PASSED] 256
[11:47:01] ==================== [PASSED] test_size ====================
[11:47:01] ======================= test_reuse ========================
[11:47:01] [PASSED] 4
[11:47:01] [PASSED] 8
[11:47:01] [PASSED] 32
[11:47:01] [PASSED] 256
[11:47:01] =================== [PASSED] test_reuse ====================
[11:47:01] =================== test_range_overlap ====================
[11:47:01] [PASSED] 4
[11:47:01] [PASSED] 8
[11:47:01] [PASSED] 32
[11:47:01] [PASSED] 256
[11:47:01] =============== [PASSED] test_range_overlap ================
[11:47:01] =================== test_range_compact ====================
[11:47:01] [PASSED] 4
[11:47:01] [PASSED] 8
[11:47:01] [PASSED] 32
[11:47:01] [PASSED] 256
[11:47:01] =============== [PASSED] test_range_compact ================
[11:47:01] ==================== test_range_spare =====================
[11:47:01] [PASSED] 4
[11:47:01] [PASSED] 8
[11:47:01] [PASSED] 32
[11:47:01] [PASSED] 256
[11:47:01] ================ [PASSED] test_range_spare =================
[11:47:01] ===================== [PASSED] guc_dbm =====================
[11:47:01] =================== guc_idm (6 subtests) ===================
[11:47:01] [PASSED] bad_init
[11:47:01] [PASSED] no_init
[11:47:01] [PASSED] init_fini
[11:47:01] [PASSED] check_used
[11:47:01] [PASSED] check_quota
[11:47:01] [PASSED] check_all
[11:47:01] ===================== [PASSED] guc_idm =====================
[11:47:01] ================== no_relay (3 subtests) ===================
[11:47:01] [PASSED] xe_drops_guc2pf_if_not_ready
[11:47:01] [PASSED] xe_drops_guc2vf_if_not_ready
[11:47:01] [PASSED] xe_rejects_send_if_not_ready
[11:47:01] ==================== [PASSED] no_relay =====================
[11:47:01] ================== pf_relay (14 subtests) ==================
[11:47:01] [PASSED] pf_rejects_guc2pf_too_short
[11:47:01] [PASSED] pf_rejects_guc2pf_too_long
[11:47:01] [PASSED] pf_rejects_guc2pf_no_payload
[11:47:01] [PASSED] pf_fails_no_payload
[11:47:01] [PASSED] pf_fails_bad_origin
[11:47:01] [PASSED] pf_fails_bad_type
[11:47:01] [PASSED] pf_txn_reports_error
[11:47:01] [PASSED] pf_txn_sends_pf2guc
[11:47:01] [PASSED] pf_sends_pf2guc
[11:47:01] [SKIPPED] pf_loopback_nop
[11:47:01] [SKIPPED] pf_loopback_echo
[11:47:01] [SKIPPED] pf_loopback_fail
[11:47:01] [SKIPPED] pf_loopback_busy
[11:47:01] [SKIPPED] pf_loopback_retry
[11:47:01] ==================== [PASSED] pf_relay =====================
[11:47:01] ================== vf_relay (3 subtests) ===================
[11:47:01] [PASSED] vf_rejects_guc2vf_too_short
[11:47:01] [PASSED] vf_rejects_guc2vf_too_long
[11:47:01] [PASSED] vf_rejects_guc2vf_no_payload
[11:47:01] ==================== [PASSED] vf_relay =====================
[11:47:01] ===================== lmtt (1 subtest) =====================
[11:47:01] ======================== test_ops =========================
[11:47:01] [PASSED] 2-level
[11:47:01] [PASSED] multi-level
[11:47:01] ==================== [PASSED] test_ops =====================
[11:47:01] ====================== [PASSED] lmtt =======================
[11:47:01] ================= pf_service (11 subtests) =================
[11:47:01] [PASSED] pf_negotiate_any
[11:47:01] [PASSED] pf_negotiate_base_match
[11:47:01] [PASSED] pf_negotiate_base_newer
[11:47:01] [PASSED] pf_negotiate_base_next
[11:47:01] [SKIPPED] pf_negotiate_base_older
[11:47:01] [PASSED] pf_negotiate_base_prev
[11:47:01] [PASSED] pf_negotiate_latest_match
[11:47:01] [PASSED] pf_negotiate_latest_newer
[11:47:01] [PASSED] pf_negotiate_latest_next
[11:47:01] [SKIPPED] pf_negotiate_latest_older
[11:47:01] [SKIPPED] pf_negotiate_latest_prev
[11:47:01] =================== [PASSED] pf_service ====================
[11:47:01] ================= xe_guc_g2g (2 subtests) ==================
[11:47:01] ============== xe_live_guc_g2g_kunit_default ==============
[11:47:01] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[11:47:01] ============== xe_live_guc_g2g_kunit_allmem ===============
[11:47:01] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[11:47:01] =================== [SKIPPED] xe_guc_g2g ===================
[11:47:01] =================== xe_mocs (2 subtests) ===================
[11:47:01] ================ xe_live_mocs_kernel_kunit ================
[11:47:01] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:47:01] ================ xe_live_mocs_reset_kunit =================
[11:47:01] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:47:01] ==================== [SKIPPED] xe_mocs =====================
[11:47:01] ================= xe_migrate (2 subtests) ==================
[11:47:01] ================= xe_migrate_sanity_kunit =================
[11:47:01] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:47:01] ================== xe_validate_ccs_kunit ==================
[11:47:01] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:47:01] =================== [SKIPPED] xe_migrate ===================
[11:47:01] ================== xe_dma_buf (1 subtest) ==================
[11:47:01] ==================== xe_dma_buf_kunit =====================
[11:47:01] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:47:01] =================== [SKIPPED] xe_dma_buf ===================
[11:47:01] ================= xe_bo_shrink (1 subtest) =================
[11:47:01] =================== xe_bo_shrink_kunit ====================
[11:47:01] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:47:01] ================== [SKIPPED] xe_bo_shrink ==================
[11:47:01] ==================== xe_bo (2 subtests) ====================
[11:47:01] ================== xe_ccs_migrate_kunit ===================
[11:47:01] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:47:01] ==================== xe_bo_evict_kunit ====================
[11:47:01] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:47:01] ===================== [SKIPPED] xe_bo ======================
[11:47:01] ==================== args (11 subtests) ====================
[11:47:01] [PASSED] count_args_test
[11:47:01] [PASSED] call_args_example
[11:47:01] [PASSED] call_args_test
[11:47:01] [PASSED] drop_first_arg_example
[11:47:01] [PASSED] drop_first_arg_test
[11:47:01] [PASSED] first_arg_example
[11:47:01] [PASSED] first_arg_test
[11:47:01] [PASSED] last_arg_example
[11:47:01] [PASSED] last_arg_test
[11:47:01] [PASSED] pick_arg_example
[11:47:01] [PASSED] sep_comma_example
[11:47:01] ====================== [PASSED] args =======================
[11:47:01] =================== xe_pci (3 subtests) ====================
[11:47:01] ==================== check_graphics_ip ====================
[11:47:01] [PASSED] 12.00 Xe_LP
[11:47:01] [PASSED] 12.10 Xe_LP+
[11:47:01] [PASSED] 12.55 Xe_HPG
[11:47:01] [PASSED] 12.60 Xe_HPC
[11:47:01] [PASSED] 12.70 Xe_LPG
[11:47:01] [PASSED] 12.71 Xe_LPG
[11:47:01] [PASSED] 12.74 Xe_LPG+
[11:47:01] [PASSED] 20.01 Xe2_HPG
[11:47:01] [PASSED] 20.02 Xe2_HPG
[11:47:01] [PASSED] 20.04 Xe2_LPG
[11:47:01] [PASSED] 30.00 Xe3_LPG
[11:47:01] [PASSED] 30.01 Xe3_LPG
[11:47:01] [PASSED] 30.03 Xe3_LPG
[11:47:01] [PASSED] 30.04 Xe3_LPG
[11:47:01] [PASSED] 30.05 Xe3_LPG
[11:47:01] [PASSED] 35.11 Xe3p_XPC
[11:47:01] ================ [PASSED] check_graphics_ip ================
[11:47:01] ===================== check_media_ip ======================
[11:47:01] [PASSED] 12.00 Xe_M
[11:47:01] [PASSED] 12.55 Xe_HPM
[11:47:01] [PASSED] 13.00 Xe_LPM+
[11:47:01] [PASSED] 13.01 Xe2_HPM
[11:47:01] [PASSED] 20.00 Xe2_LPM
[11:47:01] [PASSED] 30.00 Xe3_LPM
[11:47:01] [PASSED] 30.02 Xe3_LPM
[11:47:01] [PASSED] 35.00 Xe3p_LPM
[11:47:01] [PASSED] 35.03 Xe3p_HPM
[11:47:01] ================= [PASSED] check_media_ip ==================
[11:47:01] ================= check_platform_gt_count =================
[11:47:01] [PASSED] 0x9A60 (TIGERLAKE)
[11:47:01] [PASSED] 0x9A68 (TIGERLAKE)
[11:47:01] [PASSED] 0x9A70 (TIGERLAKE)
[11:47:01] [PASSED] 0x9A40 (TIGERLAKE)
[11:47:01] [PASSED] 0x9A49 (TIGERLAKE)
[11:47:01] [PASSED] 0x9A59 (TIGERLAKE)
[11:47:01] [PASSED] 0x9A78 (TIGERLAKE)
[11:47:01] [PASSED] 0x9AC0 (TIGERLAKE)
[11:47:01] [PASSED] 0x9AC9 (TIGERLAKE)
[11:47:01] [PASSED] 0x9AD9 (TIGERLAKE)
[11:47:01] [PASSED] 0x9AF8 (TIGERLAKE)
[11:47:01] [PASSED] 0x4C80 (ROCKETLAKE)
[11:47:01] [PASSED] 0x4C8A (ROCKETLAKE)
[11:47:01] [PASSED] 0x4C8B (ROCKETLAKE)
[11:47:01] [PASSED] 0x4C8C (ROCKETLAKE)
[11:47:01] [PASSED] 0x4C90 (ROCKETLAKE)
[11:47:01] [PASSED] 0x4C9A (ROCKETLAKE)
[11:47:01] [PASSED] 0x4680 (ALDERLAKE_S)
[11:47:01] [PASSED] 0x4682 (ALDERLAKE_S)
[11:47:01] [PASSED] 0x4688 (ALDERLAKE_S)
[11:47:01] [PASSED] 0x468A (ALDERLAKE_S)
[11:47:01] [PASSED] 0x468B (ALDERLAKE_S)
[11:47:01] [PASSED] 0x4690 (ALDERLAKE_S)
[11:47:01] [PASSED] 0x4692 (ALDERLAKE_S)
[11:47:01] [PASSED] 0x4693 (ALDERLAKE_S)
[11:47:01] [PASSED] 0x46A0 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46A1 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46A2 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46A3 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46A6 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46A8 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46AA (ALDERLAKE_P)
[11:47:01] [PASSED] 0x462A (ALDERLAKE_P)
[11:47:01] [PASSED] 0x4626 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x4628 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46B0 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46B1 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46B2 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46B3 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46C0 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46C1 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46C2 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46C3 (ALDERLAKE_P)
[11:47:01] [PASSED] 0x46D0 (ALDERLAKE_N)
[11:47:01] [PASSED] 0x46D1 (ALDERLAKE_N)
[11:47:01] [PASSED] 0x46D2 (ALDERLAKE_N)
[11:47:01] [PASSED] 0x46D3 (ALDERLAKE_N)
[11:47:01] [PASSED] 0x46D4 (ALDERLAKE_N)
[11:47:01] [PASSED] 0xA721 (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA7A1 (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA7A9 (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA7AC (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA7AD (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA720 (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA7A0 (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA7A8 (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA7AA (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA7AB (ALDERLAKE_P)
[11:47:01] [PASSED] 0xA780 (ALDERLAKE_S)
[11:47:01] [PASSED] 0xA781 (ALDERLAKE_S)
[11:47:01] [PASSED] 0xA782 (ALDERLAKE_S)
[11:47:01] [PASSED] 0xA783 (ALDERLAKE_S)
[11:47:01] [PASSED] 0xA788 (ALDERLAKE_S)
[11:47:01] [PASSED] 0xA789 (ALDERLAKE_S)
[11:47:01] [PASSED] 0xA78A (ALDERLAKE_S)
[11:47:01] [PASSED] 0xA78B (ALDERLAKE_S)
[11:47:01] [PASSED] 0x4905 (DG1)
[11:47:01] [PASSED] 0x4906 (DG1)
[11:47:01] [PASSED] 0x4907 (DG1)
[11:47:01] [PASSED] 0x4908 (DG1)
[11:47:01] [PASSED] 0x4909 (DG1)
[11:47:01] [PASSED] 0x56C0 (DG2)
[11:47:01] [PASSED] 0x56C2 (DG2)
[11:47:01] [PASSED] 0x56C1 (DG2)
[11:47:01] [PASSED] 0x7D51 (METEORLAKE)
[11:47:01] [PASSED] 0x7DD1 (METEORLAKE)
[11:47:01] [PASSED] 0x7D41 (METEORLAKE)
[11:47:01] [PASSED] 0x7D67 (METEORLAKE)
[11:47:01] [PASSED] 0xB640 (METEORLAKE)
[11:47:01] [PASSED] 0x56A0 (DG2)
[11:47:01] [PASSED] 0x56A1 (DG2)
[11:47:01] [PASSED] 0x56A2 (DG2)
[11:47:01] [PASSED] 0x56BE (DG2)
[11:47:01] [PASSED] 0x56BF (DG2)
[11:47:01] [PASSED] 0x5690 (DG2)
[11:47:01] [PASSED] 0x5691 (DG2)
[11:47:01] [PASSED] 0x5692 (DG2)
[11:47:01] [PASSED] 0x56A5 (DG2)
[11:47:01] [PASSED] 0x56A6 (DG2)
[11:47:01] [PASSED] 0x56B0 (DG2)
[11:47:01] [PASSED] 0x56B1 (DG2)
[11:47:01] [PASSED] 0x56BA (DG2)
[11:47:01] [PASSED] 0x56BB (DG2)
[11:47:01] [PASSED] 0x56BC (DG2)
[11:47:01] [PASSED] 0x56BD (DG2)
[11:47:01] [PASSED] 0x5693 (DG2)
[11:47:01] [PASSED] 0x5694 (DG2)
[11:47:01] [PASSED] 0x5695 (DG2)
[11:47:01] [PASSED] 0x56A3 (DG2)
[11:47:01] [PASSED] 0x56A4 (DG2)
[11:47:01] [PASSED] 0x56B2 (DG2)
[11:47:01] [PASSED] 0x56B3 (DG2)
[11:47:01] [PASSED] 0x5696 (DG2)
[11:47:01] [PASSED] 0x5697 (DG2)
[11:47:01] [PASSED] 0xB69 (PVC)
[11:47:01] [PASSED] 0xB6E (PVC)
[11:47:01] [PASSED] 0xBD4 (PVC)
[11:47:01] [PASSED] 0xBD5 (PVC)
[11:47:01] [PASSED] 0xBD6 (PVC)
[11:47:01] [PASSED] 0xBD7 (PVC)
[11:47:01] [PASSED] 0xBD8 (PVC)
[11:47:01] [PASSED] 0xBD9 (PVC)
[11:47:01] [PASSED] 0xBDA (PVC)
[11:47:01] [PASSED] 0xBDB (PVC)
[11:47:01] [PASSED] 0xBE0 (PVC)
[11:47:01] [PASSED] 0xBE1 (PVC)
[11:47:01] [PASSED] 0xBE5 (PVC)
[11:47:01] [PASSED] 0x7D40 (METEORLAKE)
[11:47:01] [PASSED] 0x7D45 (METEORLAKE)
[11:47:01] [PASSED] 0x7D55 (METEORLAKE)
[11:47:01] [PASSED] 0x7D60 (METEORLAKE)
[11:47:01] [PASSED] 0x7DD5 (METEORLAKE)
[11:47:01] [PASSED] 0x6420 (LUNARLAKE)
[11:47:01] [PASSED] 0x64A0 (LUNARLAKE)
[11:47:01] [PASSED] 0x64B0 (LUNARLAKE)
[11:47:01] [PASSED] 0xE202 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE209 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE20B (BATTLEMAGE)
[11:47:01] [PASSED] 0xE20C (BATTLEMAGE)
[11:47:01] [PASSED] 0xE20D (BATTLEMAGE)
[11:47:01] [PASSED] 0xE210 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE211 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE212 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE216 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE220 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE221 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE222 (BATTLEMAGE)
[11:47:01] [PASSED] 0xE223 (BATTLEMAGE)
[11:47:01] [PASSED] 0xB080 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB081 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB082 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB083 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB084 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB085 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB086 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB087 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB08F (PANTHERLAKE)
[11:47:01] [PASSED] 0xB090 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB0A0 (PANTHERLAKE)
[11:47:01] [PASSED] 0xB0B0 (PANTHERLAKE)
[11:47:01] [PASSED] 0xFD80 (PANTHERLAKE)
[11:47:01] [PASSED] 0xFD81 (PANTHERLAKE)
[11:47:01] [PASSED] 0xD740 (NOVALAKE_S)
[11:47:01] [PASSED] 0xD741 (NOVALAKE_S)
[11:47:01] [PASSED] 0xD742 (NOVALAKE_S)
[11:47:01] [PASSED] 0xD743 (NOVALAKE_S)
[11:47:01] [PASSED] 0xD744 (NOVALAKE_S)
[11:47:01] [PASSED] 0xD745 (NOVALAKE_S)
[11:47:01] ============= [PASSED] check_platform_gt_count =============
[11:47:01] ===================== [PASSED] xe_pci ======================
[11:47:01] =================== xe_rtp (2 subtests) ====================
[11:47:01] =============== xe_rtp_process_to_sr_tests ================
[11:47:01] [PASSED] coalesce-same-reg
[11:47:01] [PASSED] no-match-no-add
[11:47:01] [PASSED] match-or
[11:47:01] [PASSED] match-or-xfail
[11:47:01] [PASSED] no-match-no-add-multiple-rules
[11:47:01] [PASSED] two-regs-two-entries
[11:47:01] [PASSED] clr-one-set-other
[11:47:01] [PASSED] set-field
[11:47:01] [PASSED] conflict-duplicate
[11:47:01] [PASSED] conflict-not-disjoint
[11:47:01] [PASSED] conflict-reg-type
[11:47:01] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:47:01] ================== xe_rtp_process_tests ===================
[11:47:01] [PASSED] active1
[11:47:01] [PASSED] active2
[11:47:01] [PASSED] active-inactive
[11:47:01] [PASSED] inactive-active
[11:47:01] [PASSED] inactive-1st_or_active-inactive
[11:47:01] [PASSED] inactive-2nd_or_active-inactive
[11:47:01] [PASSED] inactive-last_or_active-inactive
[11:47:01] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[11:47:01] ============== [PASSED] xe_rtp_process_tests ===============
[11:47:01] ===================== [PASSED] xe_rtp ======================
[11:47:01] ==================== xe_wa (1 subtest) =====================
[11:47:01] ======================== xe_wa_gt =========================
[11:47:01] [PASSED] TIGERLAKE B0
[11:47:01] [PASSED] DG1 A0
[11:47:01] [PASSED] DG1 B0
[11:47:01] [PASSED] ALDERLAKE_S A0
[11:47:01] [PASSED] ALDERLAKE_S B0
[11:47:01] [PASSED] ALDERLAKE_S C0
[11:47:01] [PASSED] ALDERLAKE_S D0
[11:47:01] [PASSED] ALDERLAKE_P A0
[11:47:01] [PASSED] ALDERLAKE_P B0
[11:47:01] [PASSED] ALDERLAKE_P C0
[11:47:01] [PASSED] ALDERLAKE_S RPLS D0
[11:47:01] [PASSED] ALDERLAKE_P RPLU E0
[11:47:01] [PASSED] DG2 G10 C0
[11:47:01] [PASSED] DG2 G11 B1
[11:47:01] [PASSED] DG2 G12 A1
[11:47:01] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:47:01] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:47:01] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[11:47:01] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[11:47:01] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[11:47:01] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[11:47:01] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[11:47:01] ==================== [PASSED] xe_wa_gt =====================
[11:47:01] ====================== [PASSED] xe_wa ======================
[11:47:01] ============================================================
[11:47:01] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[11:47:01] Elapsed time: 34.644s total, 4.215s configuring, 30.061s building, 0.337s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[11:47:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:47:03] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[11:47:27] Starting KUnit Kernel (1/1)...
[11:47:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:47:27] ============ drm_test_pick_cmdline (2 subtests) ============
[11:47:27] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[11:47:27] =============== drm_test_pick_cmdline_named ===============
[11:47:27] [PASSED] NTSC
[11:47:27] [PASSED] NTSC-J
[11:47:27] [PASSED] PAL
[11:47:27] [PASSED] PAL-M
[11:47:27] =========== [PASSED] drm_test_pick_cmdline_named ===========
[11:47:27] ============== [PASSED] drm_test_pick_cmdline ==============
[11:47:27] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[11:47:27] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[11:47:27] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[11:47:27] =========== drm_validate_clone_mode (2 subtests) ===========
[11:47:27] ============== drm_test_check_in_clone_mode ===============
[11:47:27] [PASSED] in_clone_mode
[11:47:27] [PASSED] not_in_clone_mode
[11:47:27] ========== [PASSED] drm_test_check_in_clone_mode ===========
[11:47:27] =============== drm_test_check_valid_clones ===============
[11:47:27] [PASSED] not_in_clone_mode
[11:47:27] [PASSED] valid_clone
[11:47:27] [PASSED] invalid_clone
[11:47:27] =========== [PASSED] drm_test_check_valid_clones ===========
[11:47:27] ============= [PASSED] drm_validate_clone_mode =============
[11:47:27] ============= drm_validate_modeset (1 subtest) =============
[11:47:27] [PASSED] drm_test_check_connector_changed_modeset
[11:47:27] ============== [PASSED] drm_validate_modeset ===============
[11:47:27] ====== drm_test_bridge_get_current_state (2 subtests) ======
[11:47:27] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[11:47:27] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[11:47:27] ======== [PASSED] drm_test_bridge_get_current_state ========
[11:47:27] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[11:47:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[11:47:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[11:47:27] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[11:47:27] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[11:47:27] ============== drm_bridge_alloc (2 subtests) ===============
[11:47:27] [PASSED] drm_test_drm_bridge_alloc_basic
[11:47:27] [PASSED] drm_test_drm_bridge_alloc_get_put
[11:47:27] ================ [PASSED] drm_bridge_alloc =================
[11:47:27] ================== drm_buddy (8 subtests) ==================
[11:47:27] [PASSED] drm_test_buddy_alloc_limit
[11:47:27] [PASSED] drm_test_buddy_alloc_optimistic
[11:47:27] [PASSED] drm_test_buddy_alloc_pessimistic
[11:47:27] [PASSED] drm_test_buddy_alloc_pathological
[11:47:27] [PASSED] drm_test_buddy_alloc_contiguous
[11:47:27] [PASSED] drm_test_buddy_alloc_clear
[11:47:27] [PASSED] drm_test_buddy_alloc_range_bias
[11:47:27] [PASSED] drm_test_buddy_fragmentation_performance
[11:47:27] ==================== [PASSED] drm_buddy ====================
[11:47:27] ============= drm_cmdline_parser (40 subtests) =============
[11:47:27] [PASSED] drm_test_cmdline_force_d_only
[11:47:27] [PASSED] drm_test_cmdline_force_D_only_dvi
[11:47:27] [PASSED] drm_test_cmdline_force_D_only_hdmi
[11:47:27] [PASSED] drm_test_cmdline_force_D_only_not_digital
[11:47:27] [PASSED] drm_test_cmdline_force_e_only
[11:47:27] [PASSED] drm_test_cmdline_res
[11:47:27] [PASSED] drm_test_cmdline_res_vesa
[11:47:27] [PASSED] drm_test_cmdline_res_vesa_rblank
[11:47:27] [PASSED] drm_test_cmdline_res_rblank
[11:47:27] [PASSED] drm_test_cmdline_res_bpp
[11:47:27] [PASSED] drm_test_cmdline_res_refresh
[11:47:27] [PASSED] drm_test_cmdline_res_bpp_refresh
[11:47:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[11:47:27] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[11:47:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[11:47:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[11:47:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[11:47:27] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[11:47:27] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[11:47:27] [PASSED] drm_test_cmdline_res_margins_force_on
[11:47:27] [PASSED] drm_test_cmdline_res_vesa_margins
[11:47:27] [PASSED] drm_test_cmdline_name
[11:47:27] [PASSED] drm_test_cmdline_name_bpp
[11:47:27] [PASSED] drm_test_cmdline_name_option
[11:47:27] [PASSED] drm_test_cmdline_name_bpp_option
[11:47:27] [PASSED] drm_test_cmdline_rotate_0
[11:47:27] [PASSED] drm_test_cmdline_rotate_90
[11:47:27] [PASSED] drm_test_cmdline_rotate_180
[11:47:27] [PASSED] drm_test_cmdline_rotate_270
[11:47:27] [PASSED] drm_test_cmdline_hmirror
[11:47:27] [PASSED] drm_test_cmdline_vmirror
[11:47:27] [PASSED] drm_test_cmdline_margin_options
[11:47:27] [PASSED] drm_test_cmdline_multiple_options
[11:47:27] [PASSED] drm_test_cmdline_bpp_extra_and_option
[11:47:27] [PASSED] drm_test_cmdline_extra_and_option
[11:47:27] [PASSED] drm_test_cmdline_freestanding_options
[11:47:27] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[11:47:27] [PASSED] drm_test_cmdline_panel_orientation
[11:47:27] ================ drm_test_cmdline_invalid =================
[11:47:27] [PASSED] margin_only
[11:47:27] [PASSED] interlace_only
[11:47:27] [PASSED] res_missing_x
[11:47:27] [PASSED] res_missing_y
[11:47:27] [PASSED] res_bad_y
[11:47:27] [PASSED] res_missing_y_bpp
[11:47:27] [PASSED] res_bad_bpp
[11:47:27] [PASSED] res_bad_refresh
[11:47:27] [PASSED] res_bpp_refresh_force_on_off
[11:47:27] [PASSED] res_invalid_mode
[11:47:27] [PASSED] res_bpp_wrong_place_mode
[11:47:27] [PASSED] name_bpp_refresh
[11:47:27] [PASSED] name_refresh
[11:47:27] [PASSED] name_refresh_wrong_mode
[11:47:27] [PASSED] name_refresh_invalid_mode
[11:47:27] [PASSED] rotate_multiple
[11:47:27] [PASSED] rotate_invalid_val
[11:47:27] [PASSED] rotate_truncated
[11:47:27] [PASSED] invalid_option
[11:47:27] [PASSED] invalid_tv_option
[11:47:27] [PASSED] truncated_tv_option
[11:47:27] ============ [PASSED] drm_test_cmdline_invalid =============
[11:47:27] =============== drm_test_cmdline_tv_options ===============
[11:47:27] [PASSED] NTSC
[11:47:27] [PASSED] NTSC_443
[11:47:27] [PASSED] NTSC_J
[11:47:27] [PASSED] PAL
[11:47:27] [PASSED] PAL_M
[11:47:27] [PASSED] PAL_N
[11:47:27] [PASSED] SECAM
[11:47:27] [PASSED] MONO_525
[11:47:27] [PASSED] MONO_625
[11:47:27] =========== [PASSED] drm_test_cmdline_tv_options ===========
[11:47:27] =============== [PASSED] drm_cmdline_parser ================
[11:47:27] ========== drmm_connector_hdmi_init (20 subtests) ==========
[11:47:27] [PASSED] drm_test_connector_hdmi_init_valid
[11:47:27] [PASSED] drm_test_connector_hdmi_init_bpc_8
[11:47:27] [PASSED] drm_test_connector_hdmi_init_bpc_10
[11:47:27] [PASSED] drm_test_connector_hdmi_init_bpc_12
[11:47:27] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[11:47:27] [PASSED] drm_test_connector_hdmi_init_bpc_null
[11:47:27] [PASSED] drm_test_connector_hdmi_init_formats_empty
[11:47:27] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[11:47:27] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:47:27] [PASSED] supported_formats=0x9 yuv420_allowed=1
[11:47:27] [PASSED] supported_formats=0x9 yuv420_allowed=0
[11:47:27] [PASSED] supported_formats=0x3 yuv420_allowed=1
[11:47:27] [PASSED] supported_formats=0x3 yuv420_allowed=0
[11:47:27] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:47:27] [PASSED] drm_test_connector_hdmi_init_null_ddc
[11:47:27] [PASSED] drm_test_connector_hdmi_init_null_product
[11:47:27] [PASSED] drm_test_connector_hdmi_init_null_vendor
[11:47:27] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[11:47:27] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[11:47:27] [PASSED] drm_test_connector_hdmi_init_product_valid
[11:47:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[11:47:27] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[11:47:27] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[11:47:27] ========= drm_test_connector_hdmi_init_type_valid =========
[11:47:27] [PASSED] HDMI-A
[11:47:27] [PASSED] HDMI-B
[11:47:27] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[11:47:27] ======== drm_test_connector_hdmi_init_type_invalid ========
[11:47:27] [PASSED] Unknown
[11:47:27] [PASSED] VGA
[11:47:27] [PASSED] DVI-I
[11:47:27] [PASSED] DVI-D
[11:47:27] [PASSED] DVI-A
[11:47:27] [PASSED] Composite
[11:47:27] [PASSED] SVIDEO
[11:47:27] [PASSED] LVDS
[11:47:27] [PASSED] Component
[11:47:27] [PASSED] DIN
[11:47:27] [PASSED] DP
[11:47:27] [PASSED] TV
[11:47:27] [PASSED] eDP
[11:47:27] [PASSED] Virtual
[11:47:27] [PASSED] DSI
[11:47:27] [PASSED] DPI
[11:47:27] [PASSED] Writeback
[11:47:27] [PASSED] SPI
[11:47:27] [PASSED] USB
[11:47:27] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[11:47:27] ============ [PASSED] drmm_connector_hdmi_init =============
[11:47:27] ============= drmm_connector_init (3 subtests) =============
[11:47:27] [PASSED] drm_test_drmm_connector_init
[11:47:27] [PASSED] drm_test_drmm_connector_init_null_ddc
[11:47:27] ========= drm_test_drmm_connector_init_type_valid =========
[11:47:27] [PASSED] Unknown
[11:47:27] [PASSED] VGA
[11:47:27] [PASSED] DVI-I
[11:47:27] [PASSED] DVI-D
[11:47:27] [PASSED] DVI-A
[11:47:27] [PASSED] Composite
[11:47:27] [PASSED] SVIDEO
[11:47:27] [PASSED] LVDS
[11:47:27] [PASSED] Component
[11:47:27] [PASSED] DIN
[11:47:27] [PASSED] DP
[11:47:27] [PASSED] HDMI-A
[11:47:27] [PASSED] HDMI-B
[11:47:27] [PASSED] TV
[11:47:27] [PASSED] eDP
[11:47:27] [PASSED] Virtual
[11:47:27] [PASSED] DSI
[11:47:27] [PASSED] DPI
[11:47:27] [PASSED] Writeback
[11:47:27] [PASSED] SPI
[11:47:27] [PASSED] USB
[11:47:27] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[11:47:27] =============== [PASSED] drmm_connector_init ===============
[11:47:27] ========= drm_connector_dynamic_init (6 subtests) ==========
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_init
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_init_properties
[11:47:27] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[11:47:27] [PASSED] Unknown
[11:47:27] [PASSED] VGA
[11:47:27] [PASSED] DVI-I
[11:47:27] [PASSED] DVI-D
[11:47:27] [PASSED] DVI-A
[11:47:27] [PASSED] Composite
[11:47:27] [PASSED] SVIDEO
[11:47:27] [PASSED] LVDS
[11:47:27] [PASSED] Component
[11:47:27] [PASSED] DIN
[11:47:27] [PASSED] DP
[11:47:27] [PASSED] HDMI-A
[11:47:27] [PASSED] HDMI-B
[11:47:27] [PASSED] TV
[11:47:27] [PASSED] eDP
[11:47:27] [PASSED] Virtual
[11:47:27] [PASSED] DSI
[11:47:27] [PASSED] DPI
[11:47:27] [PASSED] Writeback
[11:47:27] [PASSED] SPI
[11:47:27] [PASSED] USB
[11:47:27] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[11:47:27] ======== drm_test_drm_connector_dynamic_init_name =========
[11:47:27] [PASSED] Unknown
[11:47:27] [PASSED] VGA
[11:47:27] [PASSED] DVI-I
[11:47:27] [PASSED] DVI-D
[11:47:27] [PASSED] DVI-A
[11:47:27] [PASSED] Composite
[11:47:27] [PASSED] SVIDEO
[11:47:27] [PASSED] LVDS
[11:47:27] [PASSED] Component
[11:47:27] [PASSED] DIN
[11:47:27] [PASSED] DP
[11:47:27] [PASSED] HDMI-A
[11:47:27] [PASSED] HDMI-B
[11:47:27] [PASSED] TV
[11:47:27] [PASSED] eDP
[11:47:27] [PASSED] Virtual
[11:47:27] [PASSED] DSI
[11:47:27] [PASSED] DPI
[11:47:27] [PASSED] Writeback
[11:47:27] [PASSED] SPI
[11:47:27] [PASSED] USB
[11:47:27] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[11:47:27] =========== [PASSED] drm_connector_dynamic_init ============
[11:47:27] ==== drm_connector_dynamic_register_early (4 subtests) =====
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[11:47:27] ====== [PASSED] drm_connector_dynamic_register_early =======
[11:47:27] ======= drm_connector_dynamic_register (7 subtests) ========
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[11:47:27] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[11:47:27] ========= [PASSED] drm_connector_dynamic_register ==========
[11:47:27] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[11:47:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[11:47:27] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[11:47:27] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[11:47:27] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[11:47:27] ========== drm_test_get_tv_mode_from_name_valid ===========
[11:47:27] [PASSED] NTSC
[11:47:27] [PASSED] NTSC-443
[11:47:27] [PASSED] NTSC-J
[11:47:27] [PASSED] PAL
[11:47:27] [PASSED] PAL-M
[11:47:27] [PASSED] PAL-N
[11:47:27] [PASSED] SECAM
[11:47:27] [PASSED] Mono
[11:47:27] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[11:47:27] [PASSED] drm_test_get_tv_mode_from_name_truncated
[11:47:27] ============ [PASSED] drm_get_tv_mode_from_name ============
[11:47:27] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[11:47:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[11:47:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[11:47:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[11:47:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[11:47:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[11:47:27] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[11:47:27] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[11:47:27] [PASSED] VIC 96
[11:47:27] [PASSED] VIC 97
[11:47:27] [PASSED] VIC 101
[11:47:27] [PASSED] VIC 102
[11:47:27] [PASSED] VIC 106
[11:47:27] [PASSED] VIC 107
[11:47:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[11:47:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[11:47:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[11:47:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[11:47:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[11:47:27] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[11:47:27] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[11:47:27] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[11:47:27] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[11:47:27] [PASSED] Automatic
[11:47:27] [PASSED] Full
[11:47:27] [PASSED] Limited 16:235
[11:47:27] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[11:47:27] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[11:47:27] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[11:47:27] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[11:47:27] === drm_test_drm_hdmi_connector_get_output_format_name ====
[11:47:27] [PASSED] RGB
[11:47:27] [PASSED] YUV 4:2:0
[11:47:27] [PASSED] YUV 4:2:2
[11:47:27] [PASSED] YUV 4:4:4
[11:47:27] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[11:47:27] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[11:47:27] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[11:47:27] ============= drm_damage_helper (21 subtests) ==============
[11:47:27] [PASSED] drm_test_damage_iter_no_damage
[11:47:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[11:47:27] [PASSED] drm_test_damage_iter_no_damage_src_moved
[11:47:27] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[11:47:27] [PASSED] drm_test_damage_iter_no_damage_not_visible
[11:47:27] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[11:47:27] [PASSED] drm_test_damage_iter_no_damage_no_fb
[11:47:27] [PASSED] drm_test_damage_iter_simple_damage
[11:47:27] [PASSED] drm_test_damage_iter_single_damage
[11:47:27] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[11:47:27] [PASSED] drm_test_damage_iter_single_damage_outside_src
[11:47:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[11:47:27] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[11:47:27] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[11:47:27] [PASSED] drm_test_damage_iter_single_damage_src_moved
[11:47:27] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[11:47:27] [PASSED] drm_test_damage_iter_damage
[11:47:27] [PASSED] drm_test_damage_iter_damage_one_intersect
[11:47:27] [PASSED] drm_test_damage_iter_damage_one_outside
[11:47:27] [PASSED] drm_test_damage_iter_damage_src_moved
[11:47:27] [PASSED] drm_test_damage_iter_damage_not_visible
[11:47:27] ================ [PASSED] drm_damage_helper ================
[11:47:27] ============== drm_dp_mst_helper (3 subtests) ==============
[11:47:27] ============== drm_test_dp_mst_calc_pbn_mode ==============
[11:47:27] [PASSED] Clock 154000 BPP 30 DSC disabled
[11:47:27] [PASSED] Clock 234000 BPP 30 DSC disabled
[11:47:27] [PASSED] Clock 297000 BPP 24 DSC disabled
[11:47:27] [PASSED] Clock 332880 BPP 24 DSC enabled
[11:47:27] [PASSED] Clock 324540 BPP 24 DSC enabled
[11:47:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[11:47:27] ============== drm_test_dp_mst_calc_pbn_div ===============
[11:47:27] [PASSED] Link rate 2000000 lane count 4
[11:47:27] [PASSED] Link rate 2000000 lane count 2
[11:47:27] [PASSED] Link rate 2000000 lane count 1
[11:47:27] [PASSED] Link rate 1350000 lane count 4
[11:47:27] [PASSED] Link rate 1350000 lane count 2
[11:47:27] [PASSED] Link rate 1350000 lane count 1
[11:47:27] [PASSED] Link rate 1000000 lane count 4
[11:47:27] [PASSED] Link rate 1000000 lane count 2
[11:47:27] [PASSED] Link rate 1000000 lane count 1
[11:47:27] [PASSED] Link rate 810000 lane count 4
[11:47:27] [PASSED] Link rate 810000 lane count 2
[11:47:27] [PASSED] Link rate 810000 lane count 1
[11:47:27] [PASSED] Link rate 540000 lane count 4
[11:47:27] [PASSED] Link rate 540000 lane count 2
[11:47:27] [PASSED] Link rate 540000 lane count 1
[11:47:27] [PASSED] Link rate 270000 lane count 4
[11:47:27] [PASSED] Link rate 270000 lane count 2
[11:47:27] [PASSED] Link rate 270000 lane count 1
[11:47:27] [PASSED] Link rate 162000 lane count 4
[11:47:27] [PASSED] Link rate 162000 lane count 2
[11:47:27] [PASSED] Link rate 162000 lane count 1
[11:47:27] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[11:47:27] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[11:47:27] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[11:47:27] [PASSED] DP_POWER_UP_PHY with port number
[11:47:27] [PASSED] DP_POWER_DOWN_PHY with port number
[11:47:27] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[11:47:27] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[11:47:27] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[11:47:27] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[11:47:27] [PASSED] DP_QUERY_PAYLOAD with port number
[11:47:27] [PASSED] DP_QUERY_PAYLOAD with VCPI
[11:47:27] [PASSED] DP_REMOTE_DPCD_READ with port number
[11:47:27] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[11:47:27] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[11:47:27] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[11:47:27] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[11:47:27] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[11:47:27] [PASSED] DP_REMOTE_I2C_READ with port number
[11:47:27] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[11:47:27] [PASSED] DP_REMOTE_I2C_READ with transactions array
[11:47:27] [PASSED] DP_REMOTE_I2C_WRITE with port number
[11:47:27] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[11:47:27] [PASSED] DP_REMOTE_I2C_WRITE with data array
[11:47:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[11:47:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[11:47:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[11:47:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[11:47:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[11:47:27] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[11:47:27] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[11:47:27] ================ [PASSED] drm_dp_mst_helper ================
[11:47:27] ================== drm_exec (7 subtests) ===================
[11:47:27] [PASSED] sanitycheck
[11:47:27] [PASSED] test_lock
[11:47:27] [PASSED] test_lock_unlock
[11:47:27] [PASSED] test_duplicates
[11:47:27] [PASSED] test_prepare
[11:47:27] [PASSED] test_prepare_array
[11:47:27] [PASSED] test_multiple_loops
[11:47:27] ==================== [PASSED] drm_exec =====================
[11:47:27] =========== drm_format_helper_test (17 subtests) ===========
[11:47:27] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[11:47:27] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[11:47:27] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[11:47:27] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[11:47:27] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[11:47:27] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[11:47:27] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[11:47:27] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[11:47:27] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[11:47:27] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[11:47:27] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[11:47:27] ============== drm_test_fb_xrgb8888_to_mono ===============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[11:47:27] ==================== drm_test_fb_swab =====================
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ================ [PASSED] drm_test_fb_swab =================
[11:47:27] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[11:47:27] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[11:47:27] [PASSED] single_pixel_source_buffer
[11:47:27] [PASSED] single_pixel_clip_rectangle
[11:47:27] [PASSED] well_known_colors
[11:47:27] [PASSED] destination_pitch
[11:47:27] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[11:47:27] ================= drm_test_fb_clip_offset =================
[11:47:27] [PASSED] pass through
[11:47:27] [PASSED] horizontal offset
[11:47:27] [PASSED] vertical offset
[11:47:27] [PASSED] horizontal and vertical offset
[11:47:27] [PASSED] horizontal offset (custom pitch)
[11:47:27] [PASSED] vertical offset (custom pitch)
[11:47:27] [PASSED] horizontal and vertical offset (custom pitch)
[11:47:27] ============= [PASSED] drm_test_fb_clip_offset =============
[11:47:27] =================== drm_test_fb_memcpy ====================
[11:47:27] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[11:47:27] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[11:47:27] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[11:47:27] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[11:47:27] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[11:47:27] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[11:47:27] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[11:47:27] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[11:47:27] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[11:47:27] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[11:47:27] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[11:47:27] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[11:47:27] =============== [PASSED] drm_test_fb_memcpy ================
[11:47:27] ============= [PASSED] drm_format_helper_test ==============
[11:47:27] ================= drm_format (18 subtests) =================
[11:47:27] [PASSED] drm_test_format_block_width_invalid
[11:47:27] [PASSED] drm_test_format_block_width_one_plane
[11:47:27] [PASSED] drm_test_format_block_width_two_plane
[11:47:27] [PASSED] drm_test_format_block_width_three_plane
[11:47:27] [PASSED] drm_test_format_block_width_tiled
[11:47:27] [PASSED] drm_test_format_block_height_invalid
[11:47:27] [PASSED] drm_test_format_block_height_one_plane
[11:47:27] [PASSED] drm_test_format_block_height_two_plane
[11:47:27] [PASSED] drm_test_format_block_height_three_plane
[11:47:27] [PASSED] drm_test_format_block_height_tiled
[11:47:27] [PASSED] drm_test_format_min_pitch_invalid
[11:47:27] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[11:47:27] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[11:47:27] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[11:47:27] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[11:47:27] [PASSED] drm_test_format_min_pitch_two_plane
[11:47:27] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[11:47:27] [PASSED] drm_test_format_min_pitch_tiled
[11:47:27] =================== [PASSED] drm_format ====================
[11:47:27] ============== drm_framebuffer (10 subtests) ===============
[11:47:27] ========== drm_test_framebuffer_check_src_coords ==========
[11:47:27] [PASSED] Success: source fits into fb
[11:47:27] [PASSED] Fail: overflowing fb with x-axis coordinate
[11:47:27] [PASSED] Fail: overflowing fb with y-axis coordinate
[11:47:27] [PASSED] Fail: overflowing fb with source width
[11:47:27] [PASSED] Fail: overflowing fb with source height
[11:47:27] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[11:47:27] [PASSED] drm_test_framebuffer_cleanup
[11:47:27] =============== drm_test_framebuffer_create ===============
[11:47:27] [PASSED] ABGR8888 normal sizes
[11:47:27] [PASSED] ABGR8888 max sizes
[11:47:27] [PASSED] ABGR8888 pitch greater than min required
[11:47:27] [PASSED] ABGR8888 pitch less than min required
[11:47:27] [PASSED] ABGR8888 Invalid width
[11:47:27] [PASSED] ABGR8888 Invalid buffer handle
[11:47:27] [PASSED] No pixel format
[11:47:27] [PASSED] ABGR8888 Width 0
[11:47:27] [PASSED] ABGR8888 Height 0
[11:47:27] [PASSED] ABGR8888 Out of bound height * pitch combination
[11:47:27] [PASSED] ABGR8888 Large buffer offset
[11:47:27] [PASSED] ABGR8888 Buffer offset for inexistent plane
[11:47:27] [PASSED] ABGR8888 Invalid flag
[11:47:27] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[11:47:27] [PASSED] ABGR8888 Valid buffer modifier
[11:47:27] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[11:47:27] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[11:47:27] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[11:47:27] [PASSED] NV12 Normal sizes
[11:47:27] [PASSED] NV12 Max sizes
[11:47:27] [PASSED] NV12 Invalid pitch
[11:47:27] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[11:47:27] [PASSED] NV12 different modifier per-plane
[11:47:27] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[11:47:27] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[11:47:27] [PASSED] NV12 Modifier for inexistent plane
[11:47:27] [PASSED] NV12 Handle for inexistent plane
[11:47:27] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[11:47:27] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[11:47:27] [PASSED] YVU420 Normal sizes
[11:47:27] [PASSED] YVU420 Max sizes
[11:47:27] [PASSED] YVU420 Invalid pitch
[11:47:27] [PASSED] YVU420 Different pitches
[11:47:27] [PASSED] YVU420 Different buffer offsets/pitches
[11:47:27] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[11:47:27] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[11:47:27] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[11:47:27] [PASSED] YVU420 Valid modifier
[11:47:27] [PASSED] YVU420 Different modifiers per plane
[11:47:27] [PASSED] YVU420 Modifier for inexistent plane
[11:47:27] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[11:47:27] [PASSED] X0L2 Normal sizes
[11:47:27] [PASSED] X0L2 Max sizes
[11:47:27] [PASSED] X0L2 Invalid pitch
[11:47:27] [PASSED] X0L2 Pitch greater than minimum required
[11:47:27] [PASSED] X0L2 Handle for inexistent plane
[11:47:27] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[11:47:27] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[11:47:27] [PASSED] X0L2 Valid modifier
[11:47:27] [PASSED] X0L2 Modifier for inexistent plane
[11:47:27] =========== [PASSED] drm_test_framebuffer_create ===========
[11:47:27] [PASSED] drm_test_framebuffer_free
[11:47:27] [PASSED] drm_test_framebuffer_init
[11:47:27] [PASSED] drm_test_framebuffer_init_bad_format
[11:47:27] [PASSED] drm_test_framebuffer_init_dev_mismatch
[11:47:27] [PASSED] drm_test_framebuffer_lookup
[11:47:27] [PASSED] drm_test_framebuffer_lookup_inexistent
[11:47:27] [PASSED] drm_test_framebuffer_modifiers_not_supported
[11:47:27] ================= [PASSED] drm_framebuffer =================
[11:47:27] ================ drm_gem_shmem (8 subtests) ================
[11:47:27] [PASSED] drm_gem_shmem_test_obj_create
[11:47:27] [PASSED] drm_gem_shmem_test_obj_create_private
[11:47:27] [PASSED] drm_gem_shmem_test_pin_pages
[11:47:27] [PASSED] drm_gem_shmem_test_vmap
[11:47:27] [PASSED] drm_gem_shmem_test_get_pages_sgt
[11:47:27] [PASSED] drm_gem_shmem_test_get_sg_table
[11:47:27] [PASSED] drm_gem_shmem_test_madvise
[11:47:27] [PASSED] drm_gem_shmem_test_purge
[11:47:27] ================== [PASSED] drm_gem_shmem ==================
[11:47:27] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[11:47:27] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[11:47:27] [PASSED] Automatic
[11:47:27] [PASSED] Full
[11:47:27] [PASSED] Limited 16:235
[11:47:27] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[11:47:27] [PASSED] drm_test_check_disable_connector
[11:47:27] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[11:47:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[11:47:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[11:47:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[11:47:27] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[11:47:27] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[11:47:27] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[11:47:27] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[11:47:27] [PASSED] drm_test_check_output_bpc_dvi
[11:47:27] [PASSED] drm_test_check_output_bpc_format_vic_1
[11:47:27] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[11:47:27] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[11:47:27] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[11:47:27] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[11:47:27] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[11:47:27] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[11:47:27] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[11:47:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[11:47:27] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[11:47:27] [PASSED] drm_test_check_broadcast_rgb_value
[11:47:27] [PASSED] drm_test_check_bpc_8_value
[11:47:27] [PASSED] drm_test_check_bpc_10_value
[11:47:27] [PASSED] drm_test_check_bpc_12_value
[11:47:27] [PASSED] drm_test_check_format_value
[11:47:27] [PASSED] drm_test_check_tmds_char_value
[11:47:27] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[11:47:27] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[11:47:27] [PASSED] drm_test_check_mode_valid
[11:47:27] [PASSED] drm_test_check_mode_valid_reject
[11:47:27] [PASSED] drm_test_check_mode_valid_reject_rate
[11:47:27] [PASSED] drm_test_check_mode_valid_reject_max_clock
[11:47:27] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[11:47:27] ================= drm_managed (2 subtests) =================
[11:47:27] [PASSED] drm_test_managed_release_action
[11:47:27] [PASSED] drm_test_managed_run_action
[11:47:27] =================== [PASSED] drm_managed ===================
[11:47:27] =================== drm_mm (6 subtests) ====================
[11:47:27] [PASSED] drm_test_mm_init
[11:47:27] [PASSED] drm_test_mm_debug
[11:47:27] [PASSED] drm_test_mm_align32
[11:47:27] [PASSED] drm_test_mm_align64
[11:47:27] [PASSED] drm_test_mm_lowest
[11:47:27] [PASSED] drm_test_mm_highest
[11:47:27] ===================== [PASSED] drm_mm ======================
[11:47:27] ============= drm_modes_analog_tv (5 subtests) =============
[11:47:27] [PASSED] drm_test_modes_analog_tv_mono_576i
[11:47:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[11:47:27] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[11:47:27] [PASSED] drm_test_modes_analog_tv_pal_576i
[11:47:27] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[11:47:27] =============== [PASSED] drm_modes_analog_tv ===============
[11:47:27] ============== drm_plane_helper (2 subtests) ===============
[11:47:27] =============== drm_test_check_plane_state ================
[11:47:27] [PASSED] clipping_simple
[11:47:27] [PASSED] clipping_rotate_reflect
[11:47:27] [PASSED] positioning_simple
[11:47:27] [PASSED] upscaling
[11:47:27] [PASSED] downscaling
[11:47:27] [PASSED] rounding1
[11:47:27] [PASSED] rounding2
[11:47:27] [PASSED] rounding3
[11:47:27] [PASSED] rounding4
[11:47:27] =========== [PASSED] drm_test_check_plane_state ============
[11:47:27] =========== drm_test_check_invalid_plane_state ============
[11:47:27] [PASSED] positioning_invalid
[11:47:27] [PASSED] upscaling_invalid
[11:47:27] [PASSED] downscaling_invalid
[11:47:27] ======= [PASSED] drm_test_check_invalid_plane_state ========
[11:47:27] ================ [PASSED] drm_plane_helper =================
[11:47:27] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[11:47:27] ====== drm_test_connector_helper_tv_get_modes_check =======
[11:47:27] [PASSED] None
[11:47:27] [PASSED] PAL
[11:47:27] [PASSED] NTSC
[11:47:27] [PASSED] Both, NTSC Default
[11:47:27] [PASSED] Both, PAL Default
[11:47:27] [PASSED] Both, NTSC Default, with PAL on command-line
[11:47:27] [PASSED] Both, PAL Default, with NTSC on command-line
[11:47:27] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[11:47:27] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[11:47:27] ================== drm_rect (9 subtests) ===================
[11:47:27] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[11:47:27] [PASSED] drm_test_rect_clip_scaled_not_clipped
[11:47:27] [PASSED] drm_test_rect_clip_scaled_clipped
[11:47:27] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[11:47:27] ================= drm_test_rect_intersect =================
[11:47:27] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[11:47:27] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[11:47:27] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[11:47:27] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[11:47:27] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[11:47:27] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[11:47:27] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[11:47:27] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[11:47:27] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[11:47:27] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[11:47:27] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[11:47:27] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[11:47:27] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[11:47:27] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[11:47:27] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[11:47:27] ============= [PASSED] drm_test_rect_intersect =============
[11:47:27] ================ drm_test_rect_calc_hscale ================
[11:47:27] [PASSED] normal use
[11:47:27] [PASSED] out of max range
[11:47:27] [PASSED] out of min range
[11:47:27] [PASSED] zero dst
[11:47:27] [PASSED] negative src
[11:47:27] [PASSED] negative dst
[11:47:27] ============ [PASSED] drm_test_rect_calc_hscale ============
[11:47:27] ================ drm_test_rect_calc_vscale ================
[11:47:27] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[11:47:27] [PASSED] out of max range
[11:47:27] [PASSED] out of min range
[11:47:27] [PASSED] zero dst
[11:47:27] [PASSED] negative src
[11:47:27] [PASSED] negative dst
[11:47:27] ============ [PASSED] drm_test_rect_calc_vscale ============
[11:47:27] ================== drm_test_rect_rotate ===================
[11:47:27] [PASSED] reflect-x
[11:47:27] [PASSED] reflect-y
[11:47:27] [PASSED] rotate-0
[11:47:27] [PASSED] rotate-90
[11:47:27] [PASSED] rotate-180
[11:47:27] [PASSED] rotate-270
[11:47:27] ============== [PASSED] drm_test_rect_rotate ===============
[11:47:27] ================ drm_test_rect_rotate_inv =================
[11:47:27] [PASSED] reflect-x
[11:47:27] [PASSED] reflect-y
[11:47:27] [PASSED] rotate-0
[11:47:27] [PASSED] rotate-90
[11:47:27] [PASSED] rotate-180
[11:47:27] [PASSED] rotate-270
[11:47:27] ============ [PASSED] drm_test_rect_rotate_inv =============
[11:47:27] ==================== [PASSED] drm_rect =====================
[11:47:27] ============ drm_sysfb_modeset_test (1 subtest) ============
[11:47:27] ============ drm_test_sysfb_build_fourcc_list =============
[11:47:27] [PASSED] no native formats
[11:47:27] [PASSED] XRGB8888 as native format
[11:47:27] [PASSED] remove duplicates
[11:47:27] [PASSED] convert alpha formats
[11:47:27] [PASSED] random formats
[11:47:27] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[11:47:27] ============= [PASSED] drm_sysfb_modeset_test ==============
[11:47:27] ============================================================
[11:47:27] Testing complete. Ran 622 tests: passed: 622
[11:47:27] Elapsed time: 26.477s total, 1.706s configuring, 24.352s building, 0.389s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[11:47:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:47:29] 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
[11:47:38] Starting KUnit Kernel (1/1)...
[11:47:38] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:47:39] ================= ttm_device (5 subtests) ==================
[11:47:39] [PASSED] ttm_device_init_basic
[11:47:39] [PASSED] ttm_device_init_multiple
[11:47:39] [PASSED] ttm_device_fini_basic
[11:47:39] [PASSED] ttm_device_init_no_vma_man
[11:47:39] ================== ttm_device_init_pools ==================
[11:47:39] [PASSED] No DMA allocations, no DMA32 required
[11:47:39] [PASSED] DMA allocations, DMA32 required
[11:47:39] [PASSED] No DMA allocations, DMA32 required
[11:47:39] [PASSED] DMA allocations, no DMA32 required
[11:47:39] ============== [PASSED] ttm_device_init_pools ==============
[11:47:39] =================== [PASSED] ttm_device ====================
[11:47:39] ================== ttm_pool (8 subtests) ===================
[11:47:39] ================== ttm_pool_alloc_basic ===================
[11:47:39] [PASSED] One page
[11:47:39] [PASSED] More than one page
[11:47:39] [PASSED] Above the allocation limit
[11:47:39] [PASSED] One page, with coherent DMA mappings enabled
[11:47:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:47:39] ============== [PASSED] ttm_pool_alloc_basic ===============
[11:47:39] ============== ttm_pool_alloc_basic_dma_addr ==============
[11:47:39] [PASSED] One page
[11:47:39] [PASSED] More than one page
[11:47:39] [PASSED] Above the allocation limit
[11:47:39] [PASSED] One page, with coherent DMA mappings enabled
[11:47:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:47:39] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[11:47:39] [PASSED] ttm_pool_alloc_order_caching_match
[11:47:39] [PASSED] ttm_pool_alloc_caching_mismatch
[11:47:39] [PASSED] ttm_pool_alloc_order_mismatch
[11:47:39] [PASSED] ttm_pool_free_dma_alloc
[11:47:39] [PASSED] ttm_pool_free_no_dma_alloc
[11:47:39] [PASSED] ttm_pool_fini_basic
[11:47:39] ==================== [PASSED] ttm_pool =====================
[11:47:39] ================ ttm_resource (8 subtests) =================
[11:47:39] ================= ttm_resource_init_basic =================
[11:47:39] [PASSED] Init resource in TTM_PL_SYSTEM
[11:47:39] [PASSED] Init resource in TTM_PL_VRAM
[11:47:39] [PASSED] Init resource in a private placement
[11:47:39] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[11:47:39] ============= [PASSED] ttm_resource_init_basic =============
[11:47:39] [PASSED] ttm_resource_init_pinned
[11:47:39] [PASSED] ttm_resource_fini_basic
[11:47:39] [PASSED] ttm_resource_manager_init_basic
[11:47:39] [PASSED] ttm_resource_manager_usage_basic
[11:47:39] [PASSED] ttm_resource_manager_set_used_basic
[11:47:39] [PASSED] ttm_sys_man_alloc_basic
[11:47:39] [PASSED] ttm_sys_man_free_basic
[11:47:39] ================== [PASSED] ttm_resource ===================
[11:47:39] =================== ttm_tt (15 subtests) ===================
[11:47:39] ==================== ttm_tt_init_basic ====================
[11:47:39] [PASSED] Page-aligned size
[11:47:39] [PASSED] Extra pages requested
[11:47:39] ================ [PASSED] ttm_tt_init_basic ================
[11:47:39] [PASSED] ttm_tt_init_misaligned
[11:47:39] [PASSED] ttm_tt_fini_basic
[11:47:39] [PASSED] ttm_tt_fini_sg
[11:47:39] [PASSED] ttm_tt_fini_shmem
[11:47:39] [PASSED] ttm_tt_create_basic
[11:47:39] [PASSED] ttm_tt_create_invalid_bo_type
[11:47:39] [PASSED] ttm_tt_create_ttm_exists
[11:47:39] [PASSED] ttm_tt_create_failed
[11:47:39] [PASSED] ttm_tt_destroy_basic
[11:47:39] [PASSED] ttm_tt_populate_null_ttm
[11:47:39] [PASSED] ttm_tt_populate_populated_ttm
[11:47:39] [PASSED] ttm_tt_unpopulate_basic
[11:47:39] [PASSED] ttm_tt_unpopulate_empty_ttm
[11:47:39] [PASSED] ttm_tt_swapin_basic
[11:47:39] ===================== [PASSED] ttm_tt ======================
[11:47:39] =================== ttm_bo (14 subtests) ===================
[11:47:39] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[11:47:39] [PASSED] Cannot be interrupted and sleeps
[11:47:39] [PASSED] Cannot be interrupted, locks straight away
[11:47:39] [PASSED] Can be interrupted, sleeps
[11:47:39] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[11:47:39] [PASSED] ttm_bo_reserve_locked_no_sleep
[11:47:39] [PASSED] ttm_bo_reserve_no_wait_ticket
[11:47:39] [PASSED] ttm_bo_reserve_double_resv
[11:47:39] [PASSED] ttm_bo_reserve_interrupted
[11:47:39] [PASSED] ttm_bo_reserve_deadlock
[11:47:39] [PASSED] ttm_bo_unreserve_basic
[11:47:39] [PASSED] ttm_bo_unreserve_pinned
[11:47:39] [PASSED] ttm_bo_unreserve_bulk
[11:47:39] [PASSED] ttm_bo_fini_basic
[11:47:39] [PASSED] ttm_bo_fini_shared_resv
[11:47:39] [PASSED] ttm_bo_pin_basic
[11:47:39] [PASSED] ttm_bo_pin_unpin_resource
[11:47:39] [PASSED] ttm_bo_multiple_pin_one_unpin
[11:47:39] ===================== [PASSED] ttm_bo ======================
[11:47:39] ============== ttm_bo_validate (21 subtests) ===============
[11:47:39] ============== ttm_bo_init_reserved_sys_man ===============
[11:47:39] [PASSED] Buffer object for userspace
[11:47:39] [PASSED] Kernel buffer object
[11:47:39] [PASSED] Shared buffer object
[11:47:39] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[11:47:39] ============== ttm_bo_init_reserved_mock_man ==============
[11:47:39] [PASSED] Buffer object for userspace
[11:47:39] [PASSED] Kernel buffer object
[11:47:39] [PASSED] Shared buffer object
[11:47:39] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[11:47:39] [PASSED] ttm_bo_init_reserved_resv
[11:47:39] ================== ttm_bo_validate_basic ==================
[11:47:39] [PASSED] Buffer object for userspace
[11:47:39] [PASSED] Kernel buffer object
[11:47:39] [PASSED] Shared buffer object
[11:47:39] ============== [PASSED] ttm_bo_validate_basic ==============
[11:47:39] [PASSED] ttm_bo_validate_invalid_placement
[11:47:39] ============= ttm_bo_validate_same_placement ==============
[11:47:39] [PASSED] System manager
[11:47:39] [PASSED] VRAM manager
[11:47:39] ========= [PASSED] ttm_bo_validate_same_placement ==========
[11:47:39] [PASSED] ttm_bo_validate_failed_alloc
[11:47:39] [PASSED] ttm_bo_validate_pinned
[11:47:39] [PASSED] ttm_bo_validate_busy_placement
[11:47:39] ================ ttm_bo_validate_multihop =================
[11:47:39] [PASSED] Buffer object for userspace
[11:47:39] [PASSED] Kernel buffer object
[11:47:39] [PASSED] Shared buffer object
[11:47:39] ============ [PASSED] ttm_bo_validate_multihop =============
[11:47:39] ========== ttm_bo_validate_no_placement_signaled ==========
[11:47:39] [PASSED] Buffer object in system domain, no page vector
[11:47:39] [PASSED] Buffer object in system domain with an existing page vector
[11:47:39] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[11:47:39] ======== ttm_bo_validate_no_placement_not_signaled ========
[11:47:39] [PASSED] Buffer object for userspace
[11:47:39] [PASSED] Kernel buffer object
[11:47:39] [PASSED] Shared buffer object
[11:47:39] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[11:47:39] [PASSED] ttm_bo_validate_move_fence_signaled
[11:47:39] ========= ttm_bo_validate_move_fence_not_signaled =========
[11:47:39] [PASSED] Waits for GPU
[11:47:39] [PASSED] Tries to lock straight away
[11:47:39] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[11:47:39] [PASSED] ttm_bo_validate_happy_evict
[11:47:39] [PASSED] ttm_bo_validate_all_pinned_evict
[11:47:39] [PASSED] ttm_bo_validate_allowed_only_evict
[11:47:39] [PASSED] ttm_bo_validate_deleted_evict
[11:47:39] [PASSED] ttm_bo_validate_busy_domain_evict
[11:47:39] [PASSED] ttm_bo_validate_evict_gutting
[11:47:39] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[11:47:39] ================= [PASSED] ttm_bo_validate =================
[11:47:39] ============================================================
[11:47:39] Testing complete. Ran 101 tests: passed: 101
[11:47:39] Elapsed time: 11.156s total, 1.699s configuring, 9.191s building, 0.238s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 44+ messages in thread* ✓ Xe.CI.BAT: success for AuxCCS handling and render compression modifiers
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (13 preceding siblings ...)
2025-10-20 11:47 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-20 12:32 ` Patchwork
2025-10-20 14:52 ` ✗ Xe.CI.Full: failure " Patchwork
` (15 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-20 12:32 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1859 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
CI Bug Log - changes from xe-3948-40486e8e3e6a7c4e624d36e69cd0d023c90aab90_BAT -> xe-pw-156189v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 12)
------------------------------
Additional (1): bat-ptl-vm
Known issues
------------
Here are the changes found in xe-pw-156189v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_module_load@load:
- bat-ptl-vm: NOTRUN -> [ABORT][1] ([Intel XE#6349])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v1/bat-ptl-vm/igt@xe_module_load@load.html
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@c-edp1:
- bat-adlp-7: [DMESG-WARN][2] ([Intel XE#4543]) -> [PASS][3] +1 other test pass
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3948-40486e8e3e6a7c4e624d36e69cd0d023c90aab90/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#6349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6349
Build changes
-------------
* Linux: xe-3948-40486e8e3e6a7c4e624d36e69cd0d023c90aab90 -> xe-pw-156189v1
IGT_8592: b3d809d537febc23792ab8d0eb6d13cf80d626c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3948-40486e8e3e6a7c4e624d36e69cd0d023c90aab90: 40486e8e3e6a7c4e624d36e69cd0d023c90aab90
xe-pw-156189v1: 156189v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v1/index.html
[-- Attachment #2: Type: text/html, Size: 2445 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread* ✗ Xe.CI.Full: failure for AuxCCS handling and render compression modifiers
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (14 preceding siblings ...)
2025-10-20 12:32 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-20 14:52 ` Patchwork
2025-10-20 15:03 ` Tvrtko Ursulin
2025-10-20 16:35 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev2) Patchwork
` (14 subsequent siblings)
30 siblings, 1 reply; 44+ messages in thread
From: Patchwork @ 2025-10-20 14:52 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 345 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers
URL : https://patchwork.freedesktop.org/series/156189/
State : failure
== Summary ==
ERROR: The runconfig 'xe-pw-156189v1_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v1/index.html
[-- Attachment #2: Type: text/html, Size: 910 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread* ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev2)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (15 preceding siblings ...)
2025-10-20 14:52 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-20 16:35 ` Patchwork
2025-10-20 16:37 ` ✓ CI.KUnit: success " Patchwork
` (13 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-20 16:35 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev2)
URL : https://patchwork.freedesktop.org/series/156189/
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
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 4dedb4675c77bccc4ae157d608b90a973d07b3da
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date: Mon Oct 20 08:58:30 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 2d88bbb094f9470f286f4a360dfad89245c9d0d7 drm-intel
cd892a02ff64 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
fba7e8d641cc drm/xe/xelpg: Flush CCS when flushing caches
afeda6b60a98 drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
71154dad8fe7 drm/xe/xelp: Support auxccs invalidation on blitter
982d4b518524 drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
db567dcdcd59 drm/xe/xelp: Wait for AuxCCS invalidation to complete
50e26fd0f017 drm/xe: Export xe_emit_aux_table_inv
221d2e139cfe drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
ab324f37af4c 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
ddf572eed6ce drm/xe: Handle DPT in system memory
c42dbba38765 drm/xe/display: Add support for AuxCCS
4dedb4675c77 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] 44+ messages in thread* ✓ CI.KUnit: success for AuxCCS handling and render compression modifiers (rev2)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (16 preceding siblings ...)
2025-10-20 16:35 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev2) Patchwork
@ 2025-10-20 16:37 ` Patchwork
2025-10-20 22:10 ` ✗ Xe.CI.Full: failure " Patchwork
` (12 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-20 16:37 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev2)
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:35:50] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:35:55] 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=25
[16:36:32] Starting KUnit Kernel (1/1)...
[16:36:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:36:32] ================== guc_buf (11 subtests) ===================
[16:36:32] [PASSED] test_smallest
[16:36:32] [PASSED] test_largest
[16:36:32] [PASSED] test_granular
[16:36:32] [PASSED] test_unique
[16:36:32] [PASSED] test_overlap
[16:36:32] [PASSED] test_reusable
[16:36:32] [PASSED] test_too_big
[16:36:32] [PASSED] test_flush
[16:36:32] [PASSED] test_lookup
[16:36:32] [PASSED] test_data
[16:36:32] [PASSED] test_class
[16:36:32] ===================== [PASSED] guc_buf =====================
[16:36:32] =================== guc_dbm (7 subtests) ===================
[16:36:32] [PASSED] test_empty
[16:36:32] [PASSED] test_default
[16:36:32] ======================== test_size ========================
[16:36:32] [PASSED] 4
[16:36:32] [PASSED] 8
[16:36:32] [PASSED] 32
[16:36:32] [PASSED] 256
[16:36:32] ==================== [PASSED] test_size ====================
[16:36:32] ======================= test_reuse ========================
[16:36:32] [PASSED] 4
[16:36:32] [PASSED] 8
[16:36:32] [PASSED] 32
[16:36:32] [PASSED] 256
[16:36:32] =================== [PASSED] test_reuse ====================
[16:36:32] =================== test_range_overlap ====================
[16:36:32] [PASSED] 4
[16:36:32] [PASSED] 8
[16:36:32] [PASSED] 32
[16:36:32] [PASSED] 256
[16:36:32] =============== [PASSED] test_range_overlap ================
[16:36:32] =================== test_range_compact ====================
[16:36:32] [PASSED] 4
[16:36:32] [PASSED] 8
[16:36:32] [PASSED] 32
[16:36:32] [PASSED] 256
[16:36:32] =============== [PASSED] test_range_compact ================
[16:36:32] ==================== test_range_spare =====================
[16:36:32] [PASSED] 4
[16:36:32] [PASSED] 8
[16:36:32] [PASSED] 32
[16:36:32] [PASSED] 256
[16:36:32] ================ [PASSED] test_range_spare =================
[16:36:32] ===================== [PASSED] guc_dbm =====================
[16:36:32] =================== guc_idm (6 subtests) ===================
[16:36:32] [PASSED] bad_init
[16:36:32] [PASSED] no_init
[16:36:32] [PASSED] init_fini
[16:36:32] [PASSED] check_used
[16:36:32] [PASSED] check_quota
[16:36:32] [PASSED] check_all
[16:36:32] ===================== [PASSED] guc_idm =====================
[16:36:32] ================== no_relay (3 subtests) ===================
[16:36:32] [PASSED] xe_drops_guc2pf_if_not_ready
[16:36:32] [PASSED] xe_drops_guc2vf_if_not_ready
[16:36:32] [PASSED] xe_rejects_send_if_not_ready
[16:36:32] ==================== [PASSED] no_relay =====================
[16:36:32] ================== pf_relay (14 subtests) ==================
[16:36:32] [PASSED] pf_rejects_guc2pf_too_short
[16:36:32] [PASSED] pf_rejects_guc2pf_too_long
[16:36:32] [PASSED] pf_rejects_guc2pf_no_payload
[16:36:32] [PASSED] pf_fails_no_payload
[16:36:32] [PASSED] pf_fails_bad_origin
[16:36:32] [PASSED] pf_fails_bad_type
[16:36:32] [PASSED] pf_txn_reports_error
[16:36:32] [PASSED] pf_txn_sends_pf2guc
[16:36:32] [PASSED] pf_sends_pf2guc
[16:36:32] [SKIPPED] pf_loopback_nop
[16:36:32] [SKIPPED] pf_loopback_echo
[16:36:32] [SKIPPED] pf_loopback_fail
[16:36:32] [SKIPPED] pf_loopback_busy
[16:36:32] [SKIPPED] pf_loopback_retry
[16:36:32] ==================== [PASSED] pf_relay =====================
[16:36:32] ================== vf_relay (3 subtests) ===================
[16:36:32] [PASSED] vf_rejects_guc2vf_too_short
[16:36:32] [PASSED] vf_rejects_guc2vf_too_long
[16:36:32] [PASSED] vf_rejects_guc2vf_no_payload
[16:36:32] ==================== [PASSED] vf_relay =====================
[16:36:32] ===================== lmtt (1 subtest) =====================
[16:36:32] ======================== test_ops =========================
[16:36:32] [PASSED] 2-level
[16:36:32] [PASSED] multi-level
[16:36:32] ==================== [PASSED] test_ops =====================
[16:36:32] ====================== [PASSED] lmtt =======================
[16:36:32] ================= pf_service (11 subtests) =================
[16:36:32] [PASSED] pf_negotiate_any
[16:36:32] [PASSED] pf_negotiate_base_match
[16:36:32] [PASSED] pf_negotiate_base_newer
[16:36:32] [PASSED] pf_negotiate_base_next
[16:36:32] [SKIPPED] pf_negotiate_base_older
[16:36:32] [PASSED] pf_negotiate_base_prev
[16:36:32] [PASSED] pf_negotiate_latest_match
[16:36:32] [PASSED] pf_negotiate_latest_newer
[16:36:32] [PASSED] pf_negotiate_latest_next
[16:36:32] [SKIPPED] pf_negotiate_latest_older
[16:36:32] [SKIPPED] pf_negotiate_latest_prev
[16:36:32] =================== [PASSED] pf_service ====================
[16:36:32] ================= xe_guc_g2g (2 subtests) ==================
[16:36:32] ============== xe_live_guc_g2g_kunit_default ==============
[16:36:32] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[16:36:32] ============== xe_live_guc_g2g_kunit_allmem ===============
[16:36:32] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[16:36:32] =================== [SKIPPED] xe_guc_g2g ===================
[16:36:32] =================== xe_mocs (2 subtests) ===================
[16:36:32] ================ xe_live_mocs_kernel_kunit ================
[16:36:32] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:36:32] ================ xe_live_mocs_reset_kunit =================
[16:36:32] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:36:32] ==================== [SKIPPED] xe_mocs =====================
[16:36:32] ================= xe_migrate (2 subtests) ==================
[16:36:32] ================= xe_migrate_sanity_kunit =================
[16:36:32] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:36:32] ================== xe_validate_ccs_kunit ==================
[16:36:32] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:36:32] =================== [SKIPPED] xe_migrate ===================
[16:36:32] ================== xe_dma_buf (1 subtest) ==================
[16:36:32] ==================== xe_dma_buf_kunit =====================
[16:36:32] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:36:32] =================== [SKIPPED] xe_dma_buf ===================
[16:36:32] ================= xe_bo_shrink (1 subtest) =================
[16:36:32] =================== xe_bo_shrink_kunit ====================
[16:36:32] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:36:32] ================== [SKIPPED] xe_bo_shrink ==================
[16:36:32] ==================== xe_bo (2 subtests) ====================
[16:36:32] ================== xe_ccs_migrate_kunit ===================
[16:36:32] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:36:32] ==================== xe_bo_evict_kunit ====================
[16:36:32] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:36:32] ===================== [SKIPPED] xe_bo ======================
[16:36:32] ==================== args (11 subtests) ====================
[16:36:32] [PASSED] count_args_test
[16:36:32] [PASSED] call_args_example
[16:36:32] [PASSED] call_args_test
[16:36:32] [PASSED] drop_first_arg_example
[16:36:32] [PASSED] drop_first_arg_test
[16:36:32] [PASSED] first_arg_example
[16:36:32] [PASSED] first_arg_test
[16:36:32] [PASSED] last_arg_example
[16:36:32] [PASSED] last_arg_test
[16:36:32] [PASSED] pick_arg_example
[16:36:32] [PASSED] sep_comma_example
[16:36:32] ====================== [PASSED] args =======================
[16:36:32] =================== xe_pci (3 subtests) ====================
[16:36:32] ==================== check_graphics_ip ====================
[16:36:32] [PASSED] 12.00 Xe_LP
[16:36:32] [PASSED] 12.10 Xe_LP+
[16:36:32] [PASSED] 12.55 Xe_HPG
[16:36:32] [PASSED] 12.60 Xe_HPC
[16:36:32] [PASSED] 12.70 Xe_LPG
[16:36:32] [PASSED] 12.71 Xe_LPG
[16:36:32] [PASSED] 12.74 Xe_LPG+
[16:36:32] [PASSED] 20.01 Xe2_HPG
[16:36:32] [PASSED] 20.02 Xe2_HPG
[16:36:32] [PASSED] 20.04 Xe2_LPG
[16:36:32] [PASSED] 30.00 Xe3_LPG
[16:36:32] [PASSED] 30.01 Xe3_LPG
[16:36:32] [PASSED] 30.03 Xe3_LPG
[16:36:32] [PASSED] 30.04 Xe3_LPG
[16:36:32] [PASSED] 30.05 Xe3_LPG
[16:36:32] [PASSED] 35.11 Xe3p_XPC
[16:36:32] ================ [PASSED] check_graphics_ip ================
[16:36:32] ===================== check_media_ip ======================
[16:36:32] [PASSED] 12.00 Xe_M
[16:36:32] [PASSED] 12.55 Xe_HPM
[16:36:32] [PASSED] 13.00 Xe_LPM+
[16:36:32] [PASSED] 13.01 Xe2_HPM
[16:36:32] [PASSED] 20.00 Xe2_LPM
[16:36:32] [PASSED] 30.00 Xe3_LPM
[16:36:32] [PASSED] 30.02 Xe3_LPM
[16:36:32] [PASSED] 35.00 Xe3p_LPM
[16:36:32] [PASSED] 35.03 Xe3p_HPM
[16:36:32] ================= [PASSED] check_media_ip ==================
[16:36:32] ================= check_platform_gt_count =================
[16:36:32] [PASSED] 0x9A60 (TIGERLAKE)
[16:36:32] [PASSED] 0x9A68 (TIGERLAKE)
[16:36:32] [PASSED] 0x9A70 (TIGERLAKE)
[16:36:32] [PASSED] 0x9A40 (TIGERLAKE)
[16:36:32] [PASSED] 0x9A49 (TIGERLAKE)
[16:36:32] [PASSED] 0x9A59 (TIGERLAKE)
[16:36:32] [PASSED] 0x9A78 (TIGERLAKE)
[16:36:32] [PASSED] 0x9AC0 (TIGERLAKE)
[16:36:32] [PASSED] 0x9AC9 (TIGERLAKE)
[16:36:32] [PASSED] 0x9AD9 (TIGERLAKE)
[16:36:32] [PASSED] 0x9AF8 (TIGERLAKE)
[16:36:32] [PASSED] 0x4C80 (ROCKETLAKE)
[16:36:32] [PASSED] 0x4C8A (ROCKETLAKE)
[16:36:32] [PASSED] 0x4C8B (ROCKETLAKE)
[16:36:32] [PASSED] 0x4C8C (ROCKETLAKE)
[16:36:32] [PASSED] 0x4C90 (ROCKETLAKE)
[16:36:32] [PASSED] 0x4C9A (ROCKETLAKE)
[16:36:32] [PASSED] 0x4680 (ALDERLAKE_S)
[16:36:32] [PASSED] 0x4682 (ALDERLAKE_S)
[16:36:32] [PASSED] 0x4688 (ALDERLAKE_S)
[16:36:32] [PASSED] 0x468A (ALDERLAKE_S)
[16:36:32] [PASSED] 0x468B (ALDERLAKE_S)
[16:36:32] [PASSED] 0x4690 (ALDERLAKE_S)
[16:36:32] [PASSED] 0x4692 (ALDERLAKE_S)
[16:36:32] [PASSED] 0x4693 (ALDERLAKE_S)
[16:36:32] [PASSED] 0x46A0 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46A1 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46A2 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46A3 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46A6 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46A8 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46AA (ALDERLAKE_P)
[16:36:32] [PASSED] 0x462A (ALDERLAKE_P)
[16:36:32] [PASSED] 0x4626 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x4628 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46B0 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46B1 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46B2 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46B3 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46C0 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46C1 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46C2 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46C3 (ALDERLAKE_P)
[16:36:32] [PASSED] 0x46D0 (ALDERLAKE_N)
[16:36:32] [PASSED] 0x46D1 (ALDERLAKE_N)
[16:36:32] [PASSED] 0x46D2 (ALDERLAKE_N)
[16:36:32] [PASSED] 0x46D3 (ALDERLAKE_N)
[16:36:32] [PASSED] 0x46D4 (ALDERLAKE_N)
[16:36:32] [PASSED] 0xA721 (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA7A1 (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA7A9 (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA7AC (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA7AD (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA720 (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA7A0 (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA7A8 (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA7AA (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA7AB (ALDERLAKE_P)
[16:36:32] [PASSED] 0xA780 (ALDERLAKE_S)
[16:36:32] [PASSED] 0xA781 (ALDERLAKE_S)
[16:36:32] [PASSED] 0xA782 (ALDERLAKE_S)
[16:36:32] [PASSED] 0xA783 (ALDERLAKE_S)
[16:36:32] [PASSED] 0xA788 (ALDERLAKE_S)
[16:36:32] [PASSED] 0xA789 (ALDERLAKE_S)
[16:36:32] [PASSED] 0xA78A (ALDERLAKE_S)
[16:36:32] [PASSED] 0xA78B (ALDERLAKE_S)
[16:36:32] [PASSED] 0x4905 (DG1)
[16:36:32] [PASSED] 0x4906 (DG1)
[16:36:32] [PASSED] 0x4907 (DG1)
[16:36:32] [PASSED] 0x4908 (DG1)
[16:36:32] [PASSED] 0x4909 (DG1)
[16:36:32] [PASSED] 0x56C0 (DG2)
[16:36:32] [PASSED] 0x56C2 (DG2)
[16:36:32] [PASSED] 0x56C1 (DG2)
[16:36:32] [PASSED] 0x7D51 (METEORLAKE)
[16:36:32] [PASSED] 0x7DD1 (METEORLAKE)
[16:36:32] [PASSED] 0x7D41 (METEORLAKE)
[16:36:32] [PASSED] 0x7D67 (METEORLAKE)
[16:36:32] [PASSED] 0xB640 (METEORLAKE)
[16:36:32] [PASSED] 0x56A0 (DG2)
[16:36:32] [PASSED] 0x56A1 (DG2)
[16:36:32] [PASSED] 0x56A2 (DG2)
[16:36:32] [PASSED] 0x56BE (DG2)
[16:36:32] [PASSED] 0x56BF (DG2)
[16:36:32] [PASSED] 0x5690 (DG2)
[16:36:32] [PASSED] 0x5691 (DG2)
[16:36:32] [PASSED] 0x5692 (DG2)
[16:36:32] [PASSED] 0x56A5 (DG2)
[16:36:32] [PASSED] 0x56A6 (DG2)
[16:36:32] [PASSED] 0x56B0 (DG2)
[16:36:32] [PASSED] 0x56B1 (DG2)
[16:36:32] [PASSED] 0x56BA (DG2)
[16:36:32] [PASSED] 0x56BB (DG2)
[16:36:32] [PASSED] 0x56BC (DG2)
[16:36:32] [PASSED] 0x56BD (DG2)
[16:36:32] [PASSED] 0x5693 (DG2)
[16:36:32] [PASSED] 0x5694 (DG2)
[16:36:32] [PASSED] 0x5695 (DG2)
[16:36:32] [PASSED] 0x56A3 (DG2)
[16:36:32] [PASSED] 0x56A4 (DG2)
[16:36:32] [PASSED] 0x56B2 (DG2)
[16:36:32] [PASSED] 0x56B3 (DG2)
[16:36:32] [PASSED] 0x5696 (DG2)
[16:36:32] [PASSED] 0x5697 (DG2)
[16:36:32] [PASSED] 0xB69 (PVC)
[16:36:32] [PASSED] 0xB6E (PVC)
[16:36:32] [PASSED] 0xBD4 (PVC)
[16:36:32] [PASSED] 0xBD5 (PVC)
[16:36:32] [PASSED] 0xBD6 (PVC)
[16:36:32] [PASSED] 0xBD7 (PVC)
[16:36:32] [PASSED] 0xBD8 (PVC)
[16:36:32] [PASSED] 0xBD9 (PVC)
[16:36:32] [PASSED] 0xBDA (PVC)
[16:36:32] [PASSED] 0xBDB (PVC)
[16:36:32] [PASSED] 0xBE0 (PVC)
[16:36:32] [PASSED] 0xBE1 (PVC)
[16:36:32] [PASSED] 0xBE5 (PVC)
[16:36:32] [PASSED] 0x7D40 (METEORLAKE)
[16:36:32] [PASSED] 0x7D45 (METEORLAKE)
[16:36:32] [PASSED] 0x7D55 (METEORLAKE)
[16:36:32] [PASSED] 0x7D60 (METEORLAKE)
[16:36:32] [PASSED] 0x7DD5 (METEORLAKE)
[16:36:32] [PASSED] 0x6420 (LUNARLAKE)
[16:36:32] [PASSED] 0x64A0 (LUNARLAKE)
[16:36:32] [PASSED] 0x64B0 (LUNARLAKE)
[16:36:32] [PASSED] 0xE202 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE209 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE20B (BATTLEMAGE)
[16:36:32] [PASSED] 0xE20C (BATTLEMAGE)
[16:36:32] [PASSED] 0xE20D (BATTLEMAGE)
[16:36:32] [PASSED] 0xE210 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE211 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE212 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE216 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE220 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE221 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE222 (BATTLEMAGE)
[16:36:32] [PASSED] 0xE223 (BATTLEMAGE)
[16:36:32] [PASSED] 0xB080 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB081 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB082 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB083 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB084 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB085 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB086 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB087 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB08F (PANTHERLAKE)
[16:36:32] [PASSED] 0xB090 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB0A0 (PANTHERLAKE)
[16:36:32] [PASSED] 0xB0B0 (PANTHERLAKE)
[16:36:32] [PASSED] 0xFD80 (PANTHERLAKE)
[16:36:32] [PASSED] 0xFD81 (PANTHERLAKE)
[16:36:32] [PASSED] 0xD740 (NOVALAKE_S)
[16:36:32] [PASSED] 0xD741 (NOVALAKE_S)
[16:36:32] [PASSED] 0xD742 (NOVALAKE_S)
[16:36:32] [PASSED] 0xD743 (NOVALAKE_S)
[16:36:32] [PASSED] 0xD744 (NOVALAKE_S)
[16:36:32] [PASSED] 0xD745 (NOVALAKE_S)
[16:36:32] ============= [PASSED] check_platform_gt_count =============
[16:36:32] ===================== [PASSED] xe_pci ======================
[16:36:32] =================== xe_rtp (2 subtests) ====================
[16:36:32] =============== xe_rtp_process_to_sr_tests ================
[16:36:32] [PASSED] coalesce-same-reg
[16:36:32] [PASSED] no-match-no-add
[16:36:32] [PASSED] match-or
[16:36:32] [PASSED] match-or-xfail
[16:36:32] [PASSED] no-match-no-add-multiple-rules
[16:36:32] [PASSED] two-regs-two-entries
[16:36:32] [PASSED] clr-one-set-other
[16:36:32] [PASSED] set-field
[16:36:32] [PASSED] conflict-duplicate
[16:36:32] [PASSED] conflict-not-disjoint
[16:36:32] [PASSED] conflict-reg-type
[16:36:32] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:36:32] ================== xe_rtp_process_tests ===================
[16:36:32] [PASSED] active1
[16:36:32] [PASSED] active2
[16:36:32] [PASSED] active-inactive
[16:36:32] [PASSED] inactive-active
[16:36:32] [PASSED] inactive-1st_or_active-inactive
[16:36:32] [PASSED] inactive-2nd_or_active-inactive
[16:36:32] [PASSED] inactive-last_or_active-inactive
[16:36:32] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[16:36:32] ============== [PASSED] xe_rtp_process_tests ===============
[16:36:32] ===================== [PASSED] xe_rtp ======================
[16:36:32] ==================== xe_wa (1 subtest) =====================
[16:36:32] ======================== xe_wa_gt =========================
[16:36:32] [PASSED] TIGERLAKE B0
[16:36:32] [PASSED] DG1 A0
[16:36:32] [PASSED] DG1 B0
[16:36:32] [PASSED] ALDERLAKE_S A0
[16:36:32] [PASSED] ALDERLAKE_S B0
[16:36:32] [PASSED] ALDERLAKE_S C0
[16:36:32] [PASSED] ALDERLAKE_S D0
[16:36:32] [PASSED] ALDERLAKE_P A0
[16:36:32] [PASSED] ALDERLAKE_P B0
[16:36:32] [PASSED] ALDERLAKE_P C0
[16:36:32] [PASSED] ALDERLAKE_S RPLS D0
[16:36:32] [PASSED] ALDERLAKE_P RPLU E0
[16:36:32] [PASSED] DG2 G10 C0
[16:36:32] [PASSED] DG2 G11 B1
[16:36:32] [PASSED] DG2 G12 A1
[16:36:32] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:36:32] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:36:32] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[16:36:32] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[16:36:32] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[16:36:32] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[16:36:32] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[16:36:32] ==================== [PASSED] xe_wa_gt =====================
[16:36:32] ====================== [PASSED] xe_wa ======================
[16:36:32] ============================================================
[16:36:32] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[16:36:32] Elapsed time: 41.853s total, 4.571s configuring, 36.914s building, 0.340s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:36:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:36: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=25
[16:37:03] Starting KUnit Kernel (1/1)...
[16:37:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:37:03] ============ drm_test_pick_cmdline (2 subtests) ============
[16:37:03] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[16:37:03] =============== drm_test_pick_cmdline_named ===============
[16:37:03] [PASSED] NTSC
[16:37:03] [PASSED] NTSC-J
[16:37:03] [PASSED] PAL
[16:37:03] [PASSED] PAL-M
[16:37:03] =========== [PASSED] drm_test_pick_cmdline_named ===========
[16:37:03] ============== [PASSED] drm_test_pick_cmdline ==============
[16:37:03] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:37:03] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:37:03] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:37:03] =========== drm_validate_clone_mode (2 subtests) ===========
[16:37:03] ============== drm_test_check_in_clone_mode ===============
[16:37:03] [PASSED] in_clone_mode
[16:37:03] [PASSED] not_in_clone_mode
[16:37:03] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:37:03] =============== drm_test_check_valid_clones ===============
[16:37:03] [PASSED] not_in_clone_mode
[16:37:03] [PASSED] valid_clone
[16:37:03] [PASSED] invalid_clone
[16:37:03] =========== [PASSED] drm_test_check_valid_clones ===========
[16:37:03] ============= [PASSED] drm_validate_clone_mode =============
[16:37:03] ============= drm_validate_modeset (1 subtest) =============
[16:37:03] [PASSED] drm_test_check_connector_changed_modeset
[16:37:03] ============== [PASSED] drm_validate_modeset ===============
[16:37:03] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:37:03] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:37:03] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:37:03] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:37:03] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:37:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:37:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:37:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:37:03] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:37:03] ============== drm_bridge_alloc (2 subtests) ===============
[16:37:03] [PASSED] drm_test_drm_bridge_alloc_basic
[16:37:03] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:37:03] ================ [PASSED] drm_bridge_alloc =================
[16:37:03] ================== drm_buddy (8 subtests) ==================
[16:37:03] [PASSED] drm_test_buddy_alloc_limit
[16:37:03] [PASSED] drm_test_buddy_alloc_optimistic
[16:37:03] [PASSED] drm_test_buddy_alloc_pessimistic
[16:37:03] [PASSED] drm_test_buddy_alloc_pathological
[16:37:03] [PASSED] drm_test_buddy_alloc_contiguous
[16:37:03] [PASSED] drm_test_buddy_alloc_clear
[16:37:03] [PASSED] drm_test_buddy_alloc_range_bias
[16:37:03] [PASSED] drm_test_buddy_fragmentation_performance
[16:37:03] ==================== [PASSED] drm_buddy ====================
[16:37:03] ============= drm_cmdline_parser (40 subtests) =============
[16:37:03] [PASSED] drm_test_cmdline_force_d_only
[16:37:03] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:37:03] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:37:03] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:37:03] [PASSED] drm_test_cmdline_force_e_only
[16:37:03] [PASSED] drm_test_cmdline_res
[16:37:03] [PASSED] drm_test_cmdline_res_vesa
[16:37:03] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:37:03] [PASSED] drm_test_cmdline_res_rblank
[16:37:03] [PASSED] drm_test_cmdline_res_bpp
[16:37:03] [PASSED] drm_test_cmdline_res_refresh
[16:37:03] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:37:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:37:03] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:37:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:37:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:37:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:37:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:37:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:37:03] [PASSED] drm_test_cmdline_res_margins_force_on
[16:37:03] [PASSED] drm_test_cmdline_res_vesa_margins
[16:37:03] [PASSED] drm_test_cmdline_name
[16:37:03] [PASSED] drm_test_cmdline_name_bpp
[16:37:03] [PASSED] drm_test_cmdline_name_option
[16:37:03] [PASSED] drm_test_cmdline_name_bpp_option
[16:37:03] [PASSED] drm_test_cmdline_rotate_0
[16:37:03] [PASSED] drm_test_cmdline_rotate_90
[16:37:03] [PASSED] drm_test_cmdline_rotate_180
[16:37:03] [PASSED] drm_test_cmdline_rotate_270
[16:37:03] [PASSED] drm_test_cmdline_hmirror
[16:37:03] [PASSED] drm_test_cmdline_vmirror
[16:37:03] [PASSED] drm_test_cmdline_margin_options
[16:37:03] [PASSED] drm_test_cmdline_multiple_options
[16:37:03] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:37:03] [PASSED] drm_test_cmdline_extra_and_option
[16:37:03] [PASSED] drm_test_cmdline_freestanding_options
[16:37:03] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:37:03] [PASSED] drm_test_cmdline_panel_orientation
[16:37:03] ================ drm_test_cmdline_invalid =================
[16:37:03] [PASSED] margin_only
[16:37:03] [PASSED] interlace_only
[16:37:03] [PASSED] res_missing_x
[16:37:03] [PASSED] res_missing_y
[16:37:03] [PASSED] res_bad_y
[16:37:03] [PASSED] res_missing_y_bpp
[16:37:03] [PASSED] res_bad_bpp
[16:37:03] [PASSED] res_bad_refresh
[16:37:03] [PASSED] res_bpp_refresh_force_on_off
[16:37:03] [PASSED] res_invalid_mode
[16:37:03] [PASSED] res_bpp_wrong_place_mode
[16:37:03] [PASSED] name_bpp_refresh
[16:37:03] [PASSED] name_refresh
[16:37:03] [PASSED] name_refresh_wrong_mode
[16:37:03] [PASSED] name_refresh_invalid_mode
[16:37:03] [PASSED] rotate_multiple
[16:37:03] [PASSED] rotate_invalid_val
[16:37:03] [PASSED] rotate_truncated
[16:37:03] [PASSED] invalid_option
[16:37:03] [PASSED] invalid_tv_option
[16:37:03] [PASSED] truncated_tv_option
[16:37:03] ============ [PASSED] drm_test_cmdline_invalid =============
[16:37:03] =============== drm_test_cmdline_tv_options ===============
[16:37:03] [PASSED] NTSC
[16:37:03] [PASSED] NTSC_443
[16:37:03] [PASSED] NTSC_J
[16:37:03] [PASSED] PAL
[16:37:03] [PASSED] PAL_M
[16:37:03] [PASSED] PAL_N
[16:37:03] [PASSED] SECAM
[16:37:03] [PASSED] MONO_525
[16:37:03] [PASSED] MONO_625
[16:37:03] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:37:03] =============== [PASSED] drm_cmdline_parser ================
[16:37:03] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:37:03] [PASSED] drm_test_connector_hdmi_init_valid
[16:37:03] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:37:03] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:37:03] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:37:03] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:37:03] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:37:03] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:37:03] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:37:03] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:37:03] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:37:03] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:37:03] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:37:03] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:37:03] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:37:03] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:37:03] [PASSED] drm_test_connector_hdmi_init_null_product
[16:37:03] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:37:03] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:37:03] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:37:03] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:37:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:37:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:37:03] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:37:03] ========= drm_test_connector_hdmi_init_type_valid =========
[16:37:03] [PASSED] HDMI-A
[16:37:03] [PASSED] HDMI-B
[16:37:03] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:37:03] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:37:03] [PASSED] Unknown
[16:37:03] [PASSED] VGA
[16:37:03] [PASSED] DVI-I
[16:37:03] [PASSED] DVI-D
[16:37:03] [PASSED] DVI-A
[16:37:03] [PASSED] Composite
[16:37:03] [PASSED] SVIDEO
[16:37:03] [PASSED] LVDS
[16:37:03] [PASSED] Component
[16:37:03] [PASSED] DIN
[16:37:03] [PASSED] DP
[16:37:03] [PASSED] TV
[16:37:03] [PASSED] eDP
[16:37:03] [PASSED] Virtual
[16:37:03] [PASSED] DSI
[16:37:03] [PASSED] DPI
[16:37:03] [PASSED] Writeback
[16:37:03] [PASSED] SPI
[16:37:03] [PASSED] USB
[16:37:03] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:37:03] ============ [PASSED] drmm_connector_hdmi_init =============
[16:37:03] ============= drmm_connector_init (3 subtests) =============
[16:37:03] [PASSED] drm_test_drmm_connector_init
[16:37:03] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:37:03] ========= drm_test_drmm_connector_init_type_valid =========
[16:37:03] [PASSED] Unknown
[16:37:03] [PASSED] VGA
[16:37:03] [PASSED] DVI-I
[16:37:03] [PASSED] DVI-D
[16:37:03] [PASSED] DVI-A
[16:37:03] [PASSED] Composite
[16:37:03] [PASSED] SVIDEO
[16:37:03] [PASSED] LVDS
[16:37:03] [PASSED] Component
[16:37:03] [PASSED] DIN
[16:37:03] [PASSED] DP
[16:37:03] [PASSED] HDMI-A
[16:37:03] [PASSED] HDMI-B
[16:37:03] [PASSED] TV
[16:37:03] [PASSED] eDP
[16:37:03] [PASSED] Virtual
[16:37:03] [PASSED] DSI
[16:37:03] [PASSED] DPI
[16:37:03] [PASSED] Writeback
[16:37:03] [PASSED] SPI
[16:37:03] [PASSED] USB
[16:37:03] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:37:03] =============== [PASSED] drmm_connector_init ===============
[16:37:03] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_init
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:37:03] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:37:03] [PASSED] Unknown
[16:37:03] [PASSED] VGA
[16:37:03] [PASSED] DVI-I
[16:37:03] [PASSED] DVI-D
[16:37:03] [PASSED] DVI-A
[16:37:03] [PASSED] Composite
[16:37:03] [PASSED] SVIDEO
[16:37:03] [PASSED] LVDS
[16:37:03] [PASSED] Component
[16:37:03] [PASSED] DIN
[16:37:03] [PASSED] DP
[16:37:03] [PASSED] HDMI-A
[16:37:03] [PASSED] HDMI-B
[16:37:03] [PASSED] TV
[16:37:03] [PASSED] eDP
[16:37:03] [PASSED] Virtual
[16:37:03] [PASSED] DSI
[16:37:03] [PASSED] DPI
[16:37:03] [PASSED] Writeback
[16:37:03] [PASSED] SPI
[16:37:03] [PASSED] USB
[16:37:03] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:37:03] ======== drm_test_drm_connector_dynamic_init_name =========
[16:37:03] [PASSED] Unknown
[16:37:03] [PASSED] VGA
[16:37:03] [PASSED] DVI-I
[16:37:03] [PASSED] DVI-D
[16:37:03] [PASSED] DVI-A
[16:37:03] [PASSED] Composite
[16:37:03] [PASSED] SVIDEO
[16:37:03] [PASSED] LVDS
[16:37:03] [PASSED] Component
[16:37:03] [PASSED] DIN
[16:37:03] [PASSED] DP
[16:37:03] [PASSED] HDMI-A
[16:37:03] [PASSED] HDMI-B
[16:37:03] [PASSED] TV
[16:37:03] [PASSED] eDP
[16:37:03] [PASSED] Virtual
[16:37:03] [PASSED] DSI
[16:37:03] [PASSED] DPI
[16:37:03] [PASSED] Writeback
[16:37:03] [PASSED] SPI
[16:37:03] [PASSED] USB
[16:37:03] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:37:03] =========== [PASSED] drm_connector_dynamic_init ============
[16:37:03] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:37:03] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:37:03] ======= drm_connector_dynamic_register (7 subtests) ========
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:37:03] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:37:03] ========= [PASSED] drm_connector_dynamic_register ==========
[16:37:03] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:37:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:37:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:37:03] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:37:03] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:37:03] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:37:03] [PASSED] NTSC
[16:37:03] [PASSED] NTSC-443
[16:37:03] [PASSED] NTSC-J
[16:37:03] [PASSED] PAL
[16:37:03] [PASSED] PAL-M
[16:37:03] [PASSED] PAL-N
[16:37:03] [PASSED] SECAM
[16:37:03] [PASSED] Mono
[16:37:03] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:37:03] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:37:03] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:37:03] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:37:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:37:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:37:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:37:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:37:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:37:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:37:03] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:37:03] [PASSED] VIC 96
[16:37:03] [PASSED] VIC 97
[16:37:03] [PASSED] VIC 101
[16:37:03] [PASSED] VIC 102
[16:37:03] [PASSED] VIC 106
[16:37:03] [PASSED] VIC 107
[16:37:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:37:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:37:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:37:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:37:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:37:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:37:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:37:03] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:37:03] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:37:03] [PASSED] Automatic
[16:37:03] [PASSED] Full
[16:37:03] [PASSED] Limited 16:235
[16:37:03] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:37:03] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:37:03] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:37:03] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:37:03] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:37:03] [PASSED] RGB
[16:37:03] [PASSED] YUV 4:2:0
[16:37:03] [PASSED] YUV 4:2:2
[16:37:03] [PASSED] YUV 4:4:4
[16:37:03] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:37:03] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:37:03] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:37:03] ============= drm_damage_helper (21 subtests) ==============
[16:37:03] [PASSED] drm_test_damage_iter_no_damage
[16:37:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:37:03] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:37:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:37:03] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:37:03] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:37:03] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:37:03] [PASSED] drm_test_damage_iter_simple_damage
[16:37:03] [PASSED] drm_test_damage_iter_single_damage
[16:37:03] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:37:03] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:37:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:37:03] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:37:03] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:37:03] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:37:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:37:03] [PASSED] drm_test_damage_iter_damage
[16:37:03] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:37:03] [PASSED] drm_test_damage_iter_damage_one_outside
[16:37:03] [PASSED] drm_test_damage_iter_damage_src_moved
[16:37:03] [PASSED] drm_test_damage_iter_damage_not_visible
[16:37:03] ================ [PASSED] drm_damage_helper ================
[16:37:03] ============== drm_dp_mst_helper (3 subtests) ==============
[16:37:03] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:37:03] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:37:03] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:37:03] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:37:03] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:37:03] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:37:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:37:03] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:37:03] [PASSED] Link rate 2000000 lane count 4
[16:37:03] [PASSED] Link rate 2000000 lane count 2
[16:37:03] [PASSED] Link rate 2000000 lane count 1
[16:37:03] [PASSED] Link rate 1350000 lane count 4
[16:37:03] [PASSED] Link rate 1350000 lane count 2
[16:37:03] [PASSED] Link rate 1350000 lane count 1
[16:37:03] [PASSED] Link rate 1000000 lane count 4
[16:37:03] [PASSED] Link rate 1000000 lane count 2
[16:37:03] [PASSED] Link rate 1000000 lane count 1
[16:37:03] [PASSED] Link rate 810000 lane count 4
[16:37:03] [PASSED] Link rate 810000 lane count 2
[16:37:03] [PASSED] Link rate 810000 lane count 1
[16:37:03] [PASSED] Link rate 540000 lane count 4
[16:37:03] [PASSED] Link rate 540000 lane count 2
[16:37:03] [PASSED] Link rate 540000 lane count 1
[16:37:03] [PASSED] Link rate 270000 lane count 4
[16:37:03] [PASSED] Link rate 270000 lane count 2
[16:37:03] [PASSED] Link rate 270000 lane count 1
[16:37:03] [PASSED] Link rate 162000 lane count 4
[16:37:03] [PASSED] Link rate 162000 lane count 2
[16:37:03] [PASSED] Link rate 162000 lane count 1
[16:37:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:37:03] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:37:03] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:37:03] [PASSED] DP_POWER_UP_PHY with port number
[16:37:03] [PASSED] DP_POWER_DOWN_PHY with port number
[16:37:03] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:37:03] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:37:03] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:37:03] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:37:03] [PASSED] DP_QUERY_PAYLOAD with port number
[16:37:03] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:37:03] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:37:03] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:37:03] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:37:03] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:37:03] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:37:03] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:37:03] [PASSED] DP_REMOTE_I2C_READ with port number
[16:37:03] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:37:03] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:37:03] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:37:03] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:37:03] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:37:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:37:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:37:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:37:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:37:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:37:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:37:03] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:37:03] ================ [PASSED] drm_dp_mst_helper ================
[16:37:03] ================== drm_exec (7 subtests) ===================
[16:37:03] [PASSED] sanitycheck
[16:37:03] [PASSED] test_lock
[16:37:03] [PASSED] test_lock_unlock
[16:37:03] [PASSED] test_duplicates
[16:37:03] [PASSED] test_prepare
[16:37:03] [PASSED] test_prepare_array
[16:37:03] [PASSED] test_multiple_loops
[16:37:03] ==================== [PASSED] drm_exec =====================
[16:37:03] =========== drm_format_helper_test (17 subtests) ===========
[16:37:03] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:37:03] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:37:03] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:37:03] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:37:03] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:37:03] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:37:03] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:37:03] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:37:03] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:37:03] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:37:03] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:37:03] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:37:03] ==================== drm_test_fb_swab =====================
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ================ [PASSED] drm_test_fb_swab =================
[16:37:03] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:37:03] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:37:03] [PASSED] single_pixel_source_buffer
[16:37:03] [PASSED] single_pixel_clip_rectangle
[16:37:03] [PASSED] well_known_colors
[16:37:03] [PASSED] destination_pitch
[16:37:03] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:37:03] ================= drm_test_fb_clip_offset =================
[16:37:03] [PASSED] pass through
[16:37:03] [PASSED] horizontal offset
[16:37:03] [PASSED] vertical offset
[16:37:03] [PASSED] horizontal and vertical offset
[16:37:03] [PASSED] horizontal offset (custom pitch)
[16:37:03] [PASSED] vertical offset (custom pitch)
[16:37:03] [PASSED] horizontal and vertical offset (custom pitch)
[16:37:03] ============= [PASSED] drm_test_fb_clip_offset =============
[16:37:03] =================== drm_test_fb_memcpy ====================
[16:37:03] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:37:03] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:37:03] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:37:03] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:37:03] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:37:03] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:37:03] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:37:03] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:37:03] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:37:03] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:37:03] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:37:03] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:37:03] =============== [PASSED] drm_test_fb_memcpy ================
[16:37:03] ============= [PASSED] drm_format_helper_test ==============
[16:37:03] ================= drm_format (18 subtests) =================
[16:37:03] [PASSED] drm_test_format_block_width_invalid
[16:37:03] [PASSED] drm_test_format_block_width_one_plane
[16:37:03] [PASSED] drm_test_format_block_width_two_plane
[16:37:03] [PASSED] drm_test_format_block_width_three_plane
[16:37:03] [PASSED] drm_test_format_block_width_tiled
[16:37:03] [PASSED] drm_test_format_block_height_invalid
[16:37:03] [PASSED] drm_test_format_block_height_one_plane
[16:37:03] [PASSED] drm_test_format_block_height_two_plane
[16:37:03] [PASSED] drm_test_format_block_height_three_plane
[16:37:03] [PASSED] drm_test_format_block_height_tiled
[16:37:03] [PASSED] drm_test_format_min_pitch_invalid
[16:37:03] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:37:03] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:37:03] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:37:03] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:37:03] [PASSED] drm_test_format_min_pitch_two_plane
[16:37:03] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:37:03] [PASSED] drm_test_format_min_pitch_tiled
[16:37:03] =================== [PASSED] drm_format ====================
[16:37:03] ============== drm_framebuffer (10 subtests) ===============
[16:37:03] ========== drm_test_framebuffer_check_src_coords ==========
[16:37:03] [PASSED] Success: source fits into fb
[16:37:03] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:37:03] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:37:03] [PASSED] Fail: overflowing fb with source width
[16:37:03] [PASSED] Fail: overflowing fb with source height
[16:37:03] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:37:03] [PASSED] drm_test_framebuffer_cleanup
[16:37:03] =============== drm_test_framebuffer_create ===============
[16:37:03] [PASSED] ABGR8888 normal sizes
[16:37:03] [PASSED] ABGR8888 max sizes
[16:37:03] [PASSED] ABGR8888 pitch greater than min required
[16:37:03] [PASSED] ABGR8888 pitch less than min required
[16:37:03] [PASSED] ABGR8888 Invalid width
[16:37:03] [PASSED] ABGR8888 Invalid buffer handle
[16:37:03] [PASSED] No pixel format
[16:37:03] [PASSED] ABGR8888 Width 0
[16:37:03] [PASSED] ABGR8888 Height 0
[16:37:03] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:37:03] [PASSED] ABGR8888 Large buffer offset
[16:37:03] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:37:03] [PASSED] ABGR8888 Invalid flag
[16:37:03] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:37:03] [PASSED] ABGR8888 Valid buffer modifier
[16:37:03] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:37:03] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:37:03] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:37:03] [PASSED] NV12 Normal sizes
[16:37:03] [PASSED] NV12 Max sizes
[16:37:03] [PASSED] NV12 Invalid pitch
[16:37:03] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:37:03] [PASSED] NV12 different modifier per-plane
[16:37:03] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:37:03] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:37:03] [PASSED] NV12 Modifier for inexistent plane
[16:37:03] [PASSED] NV12 Handle for inexistent plane
[16:37:03] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:37:03] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:37:03] [PASSED] YVU420 Normal sizes
[16:37:03] [PASSED] YVU420 Max sizes
[16:37:03] [PASSED] YVU420 Invalid pitch
[16:37:03] [PASSED] YVU420 Different pitches
[16:37:03] [PASSED] YVU420 Different buffer offsets/pitches
[16:37:03] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:37:03] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:37:03] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:37:03] [PASSED] YVU420 Valid modifier
[16:37:03] [PASSED] YVU420 Different modifiers per plane
[16:37:03] [PASSED] YVU420 Modifier for inexistent plane
[16:37:03] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:37:03] [PASSED] X0L2 Normal sizes
[16:37:03] [PASSED] X0L2 Max sizes
[16:37:03] [PASSED] X0L2 Invalid pitch
[16:37:03] [PASSED] X0L2 Pitch greater than minimum required
[16:37:03] [PASSED] X0L2 Handle for inexistent plane
[16:37:03] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:37:03] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:37:03] [PASSED] X0L2 Valid modifier
[16:37:03] [PASSED] X0L2 Modifier for inexistent plane
[16:37:03] =========== [PASSED] drm_test_framebuffer_create ===========
[16:37:03] [PASSED] drm_test_framebuffer_free
[16:37:03] [PASSED] drm_test_framebuffer_init
[16:37:03] [PASSED] drm_test_framebuffer_init_bad_format
[16:37:03] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:37:03] [PASSED] drm_test_framebuffer_lookup
[16:37:03] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:37:03] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:37:03] ================= [PASSED] drm_framebuffer =================
[16:37:03] ================ drm_gem_shmem (8 subtests) ================
[16:37:03] [PASSED] drm_gem_shmem_test_obj_create
[16:37:03] [PASSED] drm_gem_shmem_test_obj_create_private
[16:37:03] [PASSED] drm_gem_shmem_test_pin_pages
[16:37:03] [PASSED] drm_gem_shmem_test_vmap
[16:37:03] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:37:03] [PASSED] drm_gem_shmem_test_get_sg_table
[16:37:03] [PASSED] drm_gem_shmem_test_madvise
[16:37:03] [PASSED] drm_gem_shmem_test_purge
[16:37:03] ================== [PASSED] drm_gem_shmem ==================
[16:37:03] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:37:03] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[16:37:03] [PASSED] Automatic
[16:37:03] [PASSED] Full
[16:37:03] [PASSED] Limited 16:235
[16:37:03] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:37:03] [PASSED] drm_test_check_disable_connector
[16:37:03] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:37:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:37:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:37:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:37:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:37:03] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:37:03] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:37:03] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:37:03] [PASSED] drm_test_check_output_bpc_dvi
[16:37:03] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:37:03] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:37:03] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:37:03] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:37:03] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:37:03] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:37:03] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:37:03] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:37:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:37:03] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:37:03] [PASSED] drm_test_check_broadcast_rgb_value
[16:37:03] [PASSED] drm_test_check_bpc_8_value
[16:37:03] [PASSED] drm_test_check_bpc_10_value
[16:37:03] [PASSED] drm_test_check_bpc_12_value
[16:37:03] [PASSED] drm_test_check_format_value
[16:37:03] [PASSED] drm_test_check_tmds_char_value
[16:37:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:37:03] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:37:03] [PASSED] drm_test_check_mode_valid
[16:37:03] [PASSED] drm_test_check_mode_valid_reject
[16:37:03] [PASSED] drm_test_check_mode_valid_reject_rate
[16:37:03] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:37:03] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:37:03] ================= drm_managed (2 subtests) =================
[16:37:03] [PASSED] drm_test_managed_release_action
[16:37:03] [PASSED] drm_test_managed_run_action
[16:37:03] =================== [PASSED] drm_managed ===================
[16:37:03] =================== drm_mm (6 subtests) ====================
[16:37:03] [PASSED] drm_test_mm_init
[16:37:03] [PASSED] drm_test_mm_debug
[16:37:03] [PASSED] drm_test_mm_align32
[16:37:03] [PASSED] drm_test_mm_align64
[16:37:03] [PASSED] drm_test_mm_lowest
[16:37:03] [PASSED] drm_test_mm_highest
[16:37:03] ===================== [PASSED] drm_mm ======================
[16:37:03] ============= drm_modes_analog_tv (5 subtests) =============
[16:37:03] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:37:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:37:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:37:03] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:37:03] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:37:03] =============== [PASSED] drm_modes_analog_tv ===============
[16:37:03] ============== drm_plane_helper (2 subtests) ===============
[16:37:03] =============== drm_test_check_plane_state ================
[16:37:03] [PASSED] clipping_simple
[16:37:03] [PASSED] clipping_rotate_reflect
[16:37:03] [PASSED] positioning_simple
[16:37:03] [PASSED] upscaling
[16:37:03] [PASSED] downscaling
[16:37:03] [PASSED] rounding1
[16:37:03] [PASSED] rounding2
[16:37:03] [PASSED] rounding3
[16:37:03] [PASSED] rounding4
[16:37:03] =========== [PASSED] drm_test_check_plane_state ============
[16:37:03] =========== drm_test_check_invalid_plane_state ============
[16:37:03] [PASSED] positioning_invalid
[16:37:03] [PASSED] upscaling_invalid
[16:37:03] [PASSED] downscaling_invalid
[16:37:03] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:37:03] ================ [PASSED] drm_plane_helper =================
[16:37:03] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:37:03] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:37:03] [PASSED] None
[16:37:03] [PASSED] PAL
[16:37:03] [PASSED] NTSC
[16:37:03] [PASSED] Both, NTSC Default
[16:37:03] [PASSED] Both, PAL Default
[16:37:03] [PASSED] Both, NTSC Default, with PAL on command-line
[16:37:03] [PASSED] Both, PAL Default, with NTSC on command-line
[16:37:03] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:37:03] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:37:03] ================== drm_rect (9 subtests) ===================
[16:37:03] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:37:03] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:37:03] [PASSED] drm_test_rect_clip_scaled_clipped
[16:37:03] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:37:03] ================= drm_test_rect_intersect =================
[16:37:03] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:37:03] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:37:03] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:37:03] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:37:03] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:37:03] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:37:03] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:37:03] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:37:03] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:37:03] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:37:03] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:37:03] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:37:03] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:37:03] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:37:03] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:37:03] ============= [PASSED] drm_test_rect_intersect =============
[16:37:03] ================ drm_test_rect_calc_hscale ================
[16:37:03] [PASSED] normal use
[16:37:03] [PASSED] out of max range
[16:37:03] [PASSED] out of min range
[16:37:03] [PASSED] zero dst
[16:37:03] [PASSED] negative src
[16:37:03] [PASSED] negative dst
[16:37:03] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:37:03] ================ drm_test_rect_calc_vscale ================
[16:37:03] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[16:37:03] [PASSED] out of max range
[16:37:03] [PASSED] out of min range
[16:37:03] [PASSED] zero dst
[16:37:03] [PASSED] negative src
[16:37:03] [PASSED] negative dst
[16:37:03] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:37:03] ================== drm_test_rect_rotate ===================
[16:37:03] [PASSED] reflect-x
[16:37:03] [PASSED] reflect-y
[16:37:03] [PASSED] rotate-0
[16:37:03] [PASSED] rotate-90
[16:37:03] [PASSED] rotate-180
[16:37:03] [PASSED] rotate-270
[16:37:03] ============== [PASSED] drm_test_rect_rotate ===============
[16:37:03] ================ drm_test_rect_rotate_inv =================
[16:37:03] [PASSED] reflect-x
[16:37:03] [PASSED] reflect-y
[16:37:03] [PASSED] rotate-0
[16:37:03] [PASSED] rotate-90
[16:37:03] [PASSED] rotate-180
[16:37:03] [PASSED] rotate-270
[16:37:03] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:37:03] ==================== [PASSED] drm_rect =====================
[16:37:03] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:37:03] ============ drm_test_sysfb_build_fourcc_list =============
[16:37:03] [PASSED] no native formats
[16:37:03] [PASSED] XRGB8888 as native format
[16:37:03] [PASSED] remove duplicates
[16:37:03] [PASSED] convert alpha formats
[16:37:03] [PASSED] random formats
[16:37:03] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:37:03] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:37:03] ============================================================
[16:37:03] Testing complete. Ran 622 tests: passed: 622
[16:37:04] Elapsed time: 31.315s total, 1.605s configuring, 29.193s building, 0.468s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:37:04] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:37:05] 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=25
[16:37:14] Starting KUnit Kernel (1/1)...
[16:37:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:37:15] ================= ttm_device (5 subtests) ==================
[16:37:15] [PASSED] ttm_device_init_basic
[16:37:15] [PASSED] ttm_device_init_multiple
[16:37:15] [PASSED] ttm_device_fini_basic
[16:37:15] [PASSED] ttm_device_init_no_vma_man
[16:37:15] ================== ttm_device_init_pools ==================
[16:37:15] [PASSED] No DMA allocations, no DMA32 required
[16:37:15] [PASSED] DMA allocations, DMA32 required
[16:37:15] [PASSED] No DMA allocations, DMA32 required
[16:37:15] [PASSED] DMA allocations, no DMA32 required
[16:37:15] ============== [PASSED] ttm_device_init_pools ==============
[16:37:15] =================== [PASSED] ttm_device ====================
[16:37:15] ================== ttm_pool (8 subtests) ===================
[16:37:15] ================== ttm_pool_alloc_basic ===================
[16:37:15] [PASSED] One page
[16:37:15] [PASSED] More than one page
[16:37:15] [PASSED] Above the allocation limit
[16:37:15] [PASSED] One page, with coherent DMA mappings enabled
[16:37:15] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:37:15] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:37:15] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:37:15] [PASSED] One page
[16:37:15] [PASSED] More than one page
[16:37:15] [PASSED] Above the allocation limit
[16:37:15] [PASSED] One page, with coherent DMA mappings enabled
[16:37:15] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:37:15] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:37:15] [PASSED] ttm_pool_alloc_order_caching_match
[16:37:15] [PASSED] ttm_pool_alloc_caching_mismatch
[16:37:15] [PASSED] ttm_pool_alloc_order_mismatch
[16:37:15] [PASSED] ttm_pool_free_dma_alloc
[16:37:15] [PASSED] ttm_pool_free_no_dma_alloc
[16:37:15] [PASSED] ttm_pool_fini_basic
[16:37:15] ==================== [PASSED] ttm_pool =====================
[16:37:15] ================ ttm_resource (8 subtests) =================
[16:37:15] ================= ttm_resource_init_basic =================
[16:37:15] [PASSED] Init resource in TTM_PL_SYSTEM
[16:37:15] [PASSED] Init resource in TTM_PL_VRAM
[16:37:15] [PASSED] Init resource in a private placement
[16:37:15] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:37:15] ============= [PASSED] ttm_resource_init_basic =============
[16:37:15] [PASSED] ttm_resource_init_pinned
[16:37:15] [PASSED] ttm_resource_fini_basic
[16:37:15] [PASSED] ttm_resource_manager_init_basic
[16:37:15] [PASSED] ttm_resource_manager_usage_basic
[16:37:15] [PASSED] ttm_resource_manager_set_used_basic
[16:37:15] [PASSED] ttm_sys_man_alloc_basic
[16:37:15] [PASSED] ttm_sys_man_free_basic
[16:37:15] ================== [PASSED] ttm_resource ===================
[16:37:15] =================== ttm_tt (15 subtests) ===================
[16:37:15] ==================== ttm_tt_init_basic ====================
[16:37:15] [PASSED] Page-aligned size
[16:37:15] [PASSED] Extra pages requested
[16:37:15] ================ [PASSED] ttm_tt_init_basic ================
[16:37:15] [PASSED] ttm_tt_init_misaligned
[16:37:15] [PASSED] ttm_tt_fini_basic
[16:37:15] [PASSED] ttm_tt_fini_sg
[16:37:15] [PASSED] ttm_tt_fini_shmem
[16:37:15] [PASSED] ttm_tt_create_basic
[16:37:15] [PASSED] ttm_tt_create_invalid_bo_type
[16:37:15] [PASSED] ttm_tt_create_ttm_exists
[16:37:15] [PASSED] ttm_tt_create_failed
[16:37:15] [PASSED] ttm_tt_destroy_basic
[16:37:15] [PASSED] ttm_tt_populate_null_ttm
[16:37:15] [PASSED] ttm_tt_populate_populated_ttm
[16:37:15] [PASSED] ttm_tt_unpopulate_basic
[16:37:15] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:37:15] [PASSED] ttm_tt_swapin_basic
[16:37:15] ===================== [PASSED] ttm_tt ======================
[16:37:15] =================== ttm_bo (14 subtests) ===================
[16:37:15] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:37:15] [PASSED] Cannot be interrupted and sleeps
[16:37:15] [PASSED] Cannot be interrupted, locks straight away
[16:37:15] [PASSED] Can be interrupted, sleeps
[16:37:15] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:37:15] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:37:15] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:37:15] [PASSED] ttm_bo_reserve_double_resv
[16:37:15] [PASSED] ttm_bo_reserve_interrupted
[16:37:15] [PASSED] ttm_bo_reserve_deadlock
[16:37:15] [PASSED] ttm_bo_unreserve_basic
[16:37:15] [PASSED] ttm_bo_unreserve_pinned
[16:37:15] [PASSED] ttm_bo_unreserve_bulk
[16:37:15] [PASSED] ttm_bo_fini_basic
[16:37:15] [PASSED] ttm_bo_fini_shared_resv
[16:37:15] [PASSED] ttm_bo_pin_basic
[16:37:15] [PASSED] ttm_bo_pin_unpin_resource
[16:37:15] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:37:15] ===================== [PASSED] ttm_bo ======================
[16:37:15] ============== ttm_bo_validate (21 subtests) ===============
[16:37:15] ============== ttm_bo_init_reserved_sys_man ===============
[16:37:15] [PASSED] Buffer object for userspace
[16:37:15] [PASSED] Kernel buffer object
[16:37:15] [PASSED] Shared buffer object
[16:37:15] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:37:15] ============== ttm_bo_init_reserved_mock_man ==============
[16:37:15] [PASSED] Buffer object for userspace
[16:37:15] [PASSED] Kernel buffer object
[16:37:15] [PASSED] Shared buffer object
[16:37:15] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:37:15] [PASSED] ttm_bo_init_reserved_resv
[16:37:15] ================== ttm_bo_validate_basic ==================
[16:37:15] [PASSED] Buffer object for userspace
[16:37:15] [PASSED] Kernel buffer object
[16:37:15] [PASSED] Shared buffer object
[16:37:15] ============== [PASSED] ttm_bo_validate_basic ==============
[16:37:15] [PASSED] ttm_bo_validate_invalid_placement
[16:37:15] ============= ttm_bo_validate_same_placement ==============
[16:37:15] [PASSED] System manager
[16:37:15] [PASSED] VRAM manager
[16:37:15] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:37:15] [PASSED] ttm_bo_validate_failed_alloc
[16:37:15] [PASSED] ttm_bo_validate_pinned
[16:37:15] [PASSED] ttm_bo_validate_busy_placement
[16:37:15] ================ ttm_bo_validate_multihop =================
[16:37:15] [PASSED] Buffer object for userspace
[16:37:15] [PASSED] Kernel buffer object
[16:37:15] [PASSED] Shared buffer object
[16:37:15] ============ [PASSED] ttm_bo_validate_multihop =============
[16:37:15] ========== ttm_bo_validate_no_placement_signaled ==========
[16:37:15] [PASSED] Buffer object in system domain, no page vector
[16:37:15] [PASSED] Buffer object in system domain with an existing page vector
[16:37:15] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:37:15] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:37:15] [PASSED] Buffer object for userspace
[16:37:15] [PASSED] Kernel buffer object
[16:37:15] [PASSED] Shared buffer object
[16:37:15] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:37:15] [PASSED] ttm_bo_validate_move_fence_signaled
[16:37:15] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:37:15] [PASSED] Waits for GPU
[16:37:15] [PASSED] Tries to lock straight away
[16:37:15] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:37:15] [PASSED] ttm_bo_validate_happy_evict
[16:37:15] [PASSED] ttm_bo_validate_all_pinned_evict
[16:37:15] [PASSED] ttm_bo_validate_allowed_only_evict
[16:37:15] [PASSED] ttm_bo_validate_deleted_evict
[16:37:15] [PASSED] ttm_bo_validate_busy_domain_evict
[16:37:15] [PASSED] ttm_bo_validate_evict_gutting
[16:37:15] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:37:15] ================= [PASSED] ttm_bo_validate =================
[16:37:15] ============================================================
[16:37:15] Testing complete. Ran 101 tests: passed: 101
[16:37:15] Elapsed time: 11.031s total, 1.620s configuring, 9.144s building, 0.235s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 44+ messages in thread* ✗ Xe.CI.Full: failure for AuxCCS handling and render compression modifiers (rev2)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (17 preceding siblings ...)
2025-10-20 16:37 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-20 22:10 ` Patchwork
2025-10-21 16:02 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev3) Patchwork
` (11 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-20 22:10 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 386 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev2)
URL : https://patchwork.freedesktop.org/series/156189/
State : failure
== Summary ==
ERROR: The runconfig 'xe-3950-76e60b5ce41fc1bcabf7941a57303d541bffd6ad_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v2/index.html
[-- Attachment #2: Type: text/html, Size: 951 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread* ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev3)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (18 preceding siblings ...)
2025-10-20 22:10 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-21 16:02 ` Patchwork
2025-10-21 16:03 ` ✓ CI.KUnit: success " Patchwork
` (10 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-21 16:02 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev3)
URL : https://patchwork.freedesktop.org/series/156189/
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 99d6bf1f720507bfb66155cd8915bb83427486b0
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date: Mon Oct 20 08:58:30 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 5b93624944844e355037231c08ee088d33b4cf3b drm-intel
23aed5ebb330 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
2d043bb0d44f drm/xe/xelpg: Flush CCS when flushing caches
6f1580abd955 drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
20b868bcda00 drm/xe/xelp: Support auxccs invalidation on blitter
104584d448e4 drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
1355e801fc49 drm/xe/xelp: Wait for AuxCCS invalidation to complete
a2d025453a71 drm/xe: Export xe_emit_aux_table_inv
80da4888ff0f drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
374751e01421 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
c9382b558988 drm/xe: Handle DPT in system memory
0e9e3940cf93 drm/xe/display: Add support for AuxCCS
99d6bf1f7205 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] 44+ messages in thread* ✓ CI.KUnit: success for AuxCCS handling and render compression modifiers (rev3)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (19 preceding siblings ...)
2025-10-21 16:02 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev3) Patchwork
@ 2025-10-21 16:03 ` Patchwork
2025-10-21 16:47 ` ✓ Xe.CI.BAT: " Patchwork
` (9 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-21 16:03 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev3)
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:02:15] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:02:20] 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=25
[16:02:57] Starting KUnit Kernel (1/1)...
[16:02:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:02:57] ================== guc_buf (11 subtests) ===================
[16:02:57] [PASSED] test_smallest
[16:02:57] [PASSED] test_largest
[16:02:57] [PASSED] test_granular
[16:02:57] [PASSED] test_unique
[16:02:57] [PASSED] test_overlap
[16:02:57] [PASSED] test_reusable
[16:02:57] [PASSED] test_too_big
[16:02:57] [PASSED] test_flush
[16:02:57] [PASSED] test_lookup
[16:02:57] [PASSED] test_data
[16:02:57] [PASSED] test_class
[16:02:57] ===================== [PASSED] guc_buf =====================
[16:02:57] =================== guc_dbm (7 subtests) ===================
[16:02:57] [PASSED] test_empty
[16:02:57] [PASSED] test_default
[16:02:57] ======================== test_size ========================
[16:02:57] [PASSED] 4
[16:02:57] [PASSED] 8
[16:02:57] [PASSED] 32
[16:02:57] [PASSED] 256
[16:02:57] ==================== [PASSED] test_size ====================
[16:02:57] ======================= test_reuse ========================
[16:02:57] [PASSED] 4
[16:02:57] [PASSED] 8
[16:02:57] [PASSED] 32
[16:02:57] [PASSED] 256
[16:02:57] =================== [PASSED] test_reuse ====================
[16:02:57] =================== test_range_overlap ====================
[16:02:57] [PASSED] 4
[16:02:57] [PASSED] 8
[16:02:57] [PASSED] 32
[16:02:57] [PASSED] 256
[16:02:57] =============== [PASSED] test_range_overlap ================
[16:02:57] =================== test_range_compact ====================
[16:02:57] [PASSED] 4
[16:02:57] [PASSED] 8
[16:02:57] [PASSED] 32
[16:02:57] [PASSED] 256
[16:02:57] =============== [PASSED] test_range_compact ================
[16:02:57] ==================== test_range_spare =====================
[16:02:57] [PASSED] 4
[16:02:57] [PASSED] 8
[16:02:57] [PASSED] 32
[16:02:57] [PASSED] 256
[16:02:57] ================ [PASSED] test_range_spare =================
[16:02:57] ===================== [PASSED] guc_dbm =====================
[16:02:57] =================== guc_idm (6 subtests) ===================
[16:02:57] [PASSED] bad_init
[16:02:57] [PASSED] no_init
[16:02:57] [PASSED] init_fini
[16:02:57] [PASSED] check_used
[16:02:57] [PASSED] check_quota
[16:02:57] [PASSED] check_all
[16:02:57] ===================== [PASSED] guc_idm =====================
[16:02:57] ================== no_relay (3 subtests) ===================
[16:02:57] [PASSED] xe_drops_guc2pf_if_not_ready
[16:02:57] [PASSED] xe_drops_guc2vf_if_not_ready
[16:02:57] [PASSED] xe_rejects_send_if_not_ready
[16:02:57] ==================== [PASSED] no_relay =====================
[16:02:57] ================== pf_relay (14 subtests) ==================
[16:02:57] [PASSED] pf_rejects_guc2pf_too_short
[16:02:57] [PASSED] pf_rejects_guc2pf_too_long
[16:02:57] [PASSED] pf_rejects_guc2pf_no_payload
[16:02:57] [PASSED] pf_fails_no_payload
[16:02:57] [PASSED] pf_fails_bad_origin
[16:02:57] [PASSED] pf_fails_bad_type
[16:02:57] [PASSED] pf_txn_reports_error
[16:02:57] [PASSED] pf_txn_sends_pf2guc
[16:02:57] [PASSED] pf_sends_pf2guc
[16:02:57] [SKIPPED] pf_loopback_nop
[16:02:57] [SKIPPED] pf_loopback_echo
[16:02:57] [SKIPPED] pf_loopback_fail
[16:02:57] [SKIPPED] pf_loopback_busy
[16:02:57] [SKIPPED] pf_loopback_retry
[16:02:57] ==================== [PASSED] pf_relay =====================
[16:02:57] ================== vf_relay (3 subtests) ===================
[16:02:57] [PASSED] vf_rejects_guc2vf_too_short
[16:02:57] [PASSED] vf_rejects_guc2vf_too_long
[16:02:57] [PASSED] vf_rejects_guc2vf_no_payload
[16:02:57] ==================== [PASSED] vf_relay =====================
[16:02:57] ===================== lmtt (1 subtest) =====================
[16:02:57] ======================== test_ops =========================
[16:02:57] [PASSED] 2-level
[16:02:57] [PASSED] multi-level
[16:02:57] ==================== [PASSED] test_ops =====================
[16:02:57] ====================== [PASSED] lmtt =======================
[16:02:57] ================= pf_service (11 subtests) =================
[16:02:57] [PASSED] pf_negotiate_any
[16:02:57] [PASSED] pf_negotiate_base_match
[16:02:57] [PASSED] pf_negotiate_base_newer
[16:02:57] [PASSED] pf_negotiate_base_next
[16:02:57] [SKIPPED] pf_negotiate_base_older
[16:02:57] [PASSED] pf_negotiate_base_prev
[16:02:57] [PASSED] pf_negotiate_latest_match
[16:02:57] [PASSED] pf_negotiate_latest_newer
[16:02:57] [PASSED] pf_negotiate_latest_next
[16:02:57] [SKIPPED] pf_negotiate_latest_older
[16:02:57] [SKIPPED] pf_negotiate_latest_prev
[16:02:57] =================== [PASSED] pf_service ====================
[16:02:57] ================= xe_guc_g2g (2 subtests) ==================
[16:02:57] ============== xe_live_guc_g2g_kunit_default ==============
[16:02:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[16:02:57] ============== xe_live_guc_g2g_kunit_allmem ===============
[16:02:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[16:02:57] =================== [SKIPPED] xe_guc_g2g ===================
[16:02:57] =================== xe_mocs (2 subtests) ===================
[16:02:57] ================ xe_live_mocs_kernel_kunit ================
[16:02:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:02:57] ================ xe_live_mocs_reset_kunit =================
[16:02:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:02:57] ==================== [SKIPPED] xe_mocs =====================
[16:02:57] ================= xe_migrate (2 subtests) ==================
[16:02:57] ================= xe_migrate_sanity_kunit =================
[16:02:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:02:57] ================== xe_validate_ccs_kunit ==================
[16:02:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:02:57] =================== [SKIPPED] xe_migrate ===================
[16:02:57] ================== xe_dma_buf (1 subtest) ==================
[16:02:57] ==================== xe_dma_buf_kunit =====================
[16:02:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:02:57] =================== [SKIPPED] xe_dma_buf ===================
[16:02:57] ================= xe_bo_shrink (1 subtest) =================
[16:02:57] =================== xe_bo_shrink_kunit ====================
[16:02:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:02:57] ================== [SKIPPED] xe_bo_shrink ==================
[16:02:57] ==================== xe_bo (2 subtests) ====================
[16:02:57] ================== xe_ccs_migrate_kunit ===================
[16:02:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:02:57] ==================== xe_bo_evict_kunit ====================
[16:02:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:02:57] ===================== [SKIPPED] xe_bo ======================
[16:02:57] ==================== args (11 subtests) ====================
[16:02:57] [PASSED] count_args_test
[16:02:57] [PASSED] call_args_example
[16:02:57] [PASSED] call_args_test
[16:02:57] [PASSED] drop_first_arg_example
[16:02:57] [PASSED] drop_first_arg_test
[16:02:57] [PASSED] first_arg_example
[16:02:57] [PASSED] first_arg_test
[16:02:57] [PASSED] last_arg_example
[16:02:57] [PASSED] last_arg_test
[16:02:57] [PASSED] pick_arg_example
[16:02:57] [PASSED] sep_comma_example
[16:02:57] ====================== [PASSED] args =======================
[16:02:57] =================== xe_pci (3 subtests) ====================
[16:02:57] ==================== check_graphics_ip ====================
[16:02:57] [PASSED] 12.00 Xe_LP
[16:02:57] [PASSED] 12.10 Xe_LP+
[16:02:57] [PASSED] 12.55 Xe_HPG
[16:02:57] [PASSED] 12.60 Xe_HPC
[16:02:57] [PASSED] 12.70 Xe_LPG
[16:02:57] [PASSED] 12.71 Xe_LPG
[16:02:57] [PASSED] 12.74 Xe_LPG+
[16:02:57] [PASSED] 20.01 Xe2_HPG
[16:02:57] [PASSED] 20.02 Xe2_HPG
[16:02:57] [PASSED] 20.04 Xe2_LPG
[16:02:57] [PASSED] 30.00 Xe3_LPG
[16:02:57] [PASSED] 30.01 Xe3_LPG
[16:02:57] [PASSED] 30.03 Xe3_LPG
[16:02:57] [PASSED] 30.04 Xe3_LPG
[16:02:57] [PASSED] 30.05 Xe3_LPG
[16:02:57] [PASSED] 35.11 Xe3p_XPC
[16:02:57] ================ [PASSED] check_graphics_ip ================
[16:02:57] ===================== check_media_ip ======================
[16:02:57] [PASSED] 12.00 Xe_M
[16:02:57] [PASSED] 12.55 Xe_HPM
[16:02:57] [PASSED] 13.00 Xe_LPM+
[16:02:57] [PASSED] 13.01 Xe2_HPM
[16:02:57] [PASSED] 20.00 Xe2_LPM
[16:02:57] [PASSED] 30.00 Xe3_LPM
[16:02:57] [PASSED] 30.02 Xe3_LPM
[16:02:57] [PASSED] 35.00 Xe3p_LPM
[16:02:57] [PASSED] 35.03 Xe3p_HPM
[16:02:57] ================= [PASSED] check_media_ip ==================
[16:02:57] ================= check_platform_gt_count =================
[16:02:57] [PASSED] 0x9A60 (TIGERLAKE)
[16:02:57] [PASSED] 0x9A68 (TIGERLAKE)
[16:02:57] [PASSED] 0x9A70 (TIGERLAKE)
[16:02:57] [PASSED] 0x9A40 (TIGERLAKE)
[16:02:57] [PASSED] 0x9A49 (TIGERLAKE)
[16:02:57] [PASSED] 0x9A59 (TIGERLAKE)
[16:02:57] [PASSED] 0x9A78 (TIGERLAKE)
[16:02:57] [PASSED] 0x9AC0 (TIGERLAKE)
[16:02:57] [PASSED] 0x9AC9 (TIGERLAKE)
[16:02:57] [PASSED] 0x9AD9 (TIGERLAKE)
[16:02:57] [PASSED] 0x9AF8 (TIGERLAKE)
[16:02:57] [PASSED] 0x4C80 (ROCKETLAKE)
[16:02:57] [PASSED] 0x4C8A (ROCKETLAKE)
[16:02:57] [PASSED] 0x4C8B (ROCKETLAKE)
[16:02:57] [PASSED] 0x4C8C (ROCKETLAKE)
[16:02:57] [PASSED] 0x4C90 (ROCKETLAKE)
[16:02:57] [PASSED] 0x4C9A (ROCKETLAKE)
[16:02:57] [PASSED] 0x4680 (ALDERLAKE_S)
[16:02:57] [PASSED] 0x4682 (ALDERLAKE_S)
[16:02:57] [PASSED] 0x4688 (ALDERLAKE_S)
[16:02:57] [PASSED] 0x468A (ALDERLAKE_S)
[16:02:57] [PASSED] 0x468B (ALDERLAKE_S)
[16:02:57] [PASSED] 0x4690 (ALDERLAKE_S)
[16:02:57] [PASSED] 0x4692 (ALDERLAKE_S)
[16:02:57] [PASSED] 0x4693 (ALDERLAKE_S)
[16:02:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46AA (ALDERLAKE_P)
[16:02:57] [PASSED] 0x462A (ALDERLAKE_P)
[16:02:57] [PASSED] 0x4626 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x4628 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46B0 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[16:02:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[16:02:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[16:02:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[16:02:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[16:02:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[16:02:57] [PASSED] 0xA721 (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA720 (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[16:02:57] [PASSED] 0xA780 (ALDERLAKE_S)
[16:02:57] [PASSED] 0xA781 (ALDERLAKE_S)
[16:02:57] [PASSED] 0xA782 (ALDERLAKE_S)
[16:02:57] [PASSED] 0xA783 (ALDERLAKE_S)
[16:02:57] [PASSED] 0xA788 (ALDERLAKE_S)
[16:02:57] [PASSED] 0xA789 (ALDERLAKE_S)
[16:02:57] [PASSED] 0xA78A (ALDERLAKE_S)
[16:02:57] [PASSED] 0xA78B (ALDERLAKE_S)
[16:02:57] [PASSED] 0x4905 (DG1)
[16:02:57] [PASSED] 0x4906 (DG1)
[16:02:57] [PASSED] 0x4907 (DG1)
[16:02:57] [PASSED] 0x4908 (DG1)
[16:02:57] [PASSED] 0x4909 (DG1)
[16:02:57] [PASSED] 0x56C0 (DG2)
[16:02:57] [PASSED] 0x56C2 (DG2)
[16:02:57] [PASSED] 0x56C1 (DG2)
[16:02:57] [PASSED] 0x7D51 (METEORLAKE)
[16:02:57] [PASSED] 0x7DD1 (METEORLAKE)
[16:02:57] [PASSED] 0x7D41 (METEORLAKE)
[16:02:57] [PASSED] 0x7D67 (METEORLAKE)
[16:02:57] [PASSED] 0xB640 (METEORLAKE)
[16:02:57] [PASSED] 0x56A0 (DG2)
[16:02:57] [PASSED] 0x56A1 (DG2)
[16:02:57] [PASSED] 0x56A2 (DG2)
[16:02:57] [PASSED] 0x56BE (DG2)
[16:02:57] [PASSED] 0x56BF (DG2)
[16:02:57] [PASSED] 0x5690 (DG2)
[16:02:57] [PASSED] 0x5691 (DG2)
[16:02:57] [PASSED] 0x5692 (DG2)
[16:02:57] [PASSED] 0x56A5 (DG2)
[16:02:57] [PASSED] 0x56A6 (DG2)
[16:02:57] [PASSED] 0x56B0 (DG2)
[16:02:57] [PASSED] 0x56B1 (DG2)
[16:02:57] [PASSED] 0x56BA (DG2)
[16:02:57] [PASSED] 0x56BB (DG2)
[16:02:57] [PASSED] 0x56BC (DG2)
[16:02:57] [PASSED] 0x56BD (DG2)
[16:02:57] [PASSED] 0x5693 (DG2)
[16:02:57] [PASSED] 0x5694 (DG2)
[16:02:57] [PASSED] 0x5695 (DG2)
[16:02:57] [PASSED] 0x56A3 (DG2)
[16:02:57] [PASSED] 0x56A4 (DG2)
[16:02:57] [PASSED] 0x56B2 (DG2)
[16:02:57] [PASSED] 0x56B3 (DG2)
[16:02:57] [PASSED] 0x5696 (DG2)
[16:02:57] [PASSED] 0x5697 (DG2)
[16:02:57] [PASSED] 0xB69 (PVC)
[16:02:57] [PASSED] 0xB6E (PVC)
[16:02:57] [PASSED] 0xBD4 (PVC)
[16:02:57] [PASSED] 0xBD5 (PVC)
[16:02:57] [PASSED] 0xBD6 (PVC)
[16:02:57] [PASSED] 0xBD7 (PVC)
[16:02:57] [PASSED] 0xBD8 (PVC)
[16:02:57] [PASSED] 0xBD9 (PVC)
[16:02:57] [PASSED] 0xBDA (PVC)
[16:02:57] [PASSED] 0xBDB (PVC)
[16:02:57] [PASSED] 0xBE0 (PVC)
[16:02:57] [PASSED] 0xBE1 (PVC)
[16:02:57] [PASSED] 0xBE5 (PVC)
[16:02:57] [PASSED] 0x7D40 (METEORLAKE)
[16:02:57] [PASSED] 0x7D45 (METEORLAKE)
[16:02:57] [PASSED] 0x7D55 (METEORLAKE)
[16:02:57] [PASSED] 0x7D60 (METEORLAKE)
[16:02:57] [PASSED] 0x7DD5 (METEORLAKE)
[16:02:57] [PASSED] 0x6420 (LUNARLAKE)
[16:02:57] [PASSED] 0x64A0 (LUNARLAKE)
[16:02:57] [PASSED] 0x64B0 (LUNARLAKE)
[16:02:57] [PASSED] 0xE202 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE209 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE20B (BATTLEMAGE)
[16:02:57] [PASSED] 0xE20C (BATTLEMAGE)
[16:02:57] [PASSED] 0xE20D (BATTLEMAGE)
[16:02:57] [PASSED] 0xE210 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE211 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE212 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE216 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE220 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE221 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE222 (BATTLEMAGE)
[16:02:57] [PASSED] 0xE223 (BATTLEMAGE)
[16:02:57] [PASSED] 0xB080 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB081 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB082 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB083 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB084 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB085 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB086 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB087 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB08F (PANTHERLAKE)
[16:02:57] [PASSED] 0xB090 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[16:02:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[16:02:57] [PASSED] 0xFD80 (PANTHERLAKE)
[16:02:57] [PASSED] 0xFD81 (PANTHERLAKE)
[16:02:57] [PASSED] 0xD740 (NOVALAKE_S)
[16:02:57] [PASSED] 0xD741 (NOVALAKE_S)
[16:02:57] [PASSED] 0xD742 (NOVALAKE_S)
[16:02:57] [PASSED] 0xD743 (NOVALAKE_S)
[16:02:57] [PASSED] 0xD744 (NOVALAKE_S)
[16:02:57] [PASSED] 0xD745 (NOVALAKE_S)
[16:02:57] ============= [PASSED] check_platform_gt_count =============
[16:02:57] ===================== [PASSED] xe_pci ======================
[16:02:57] =================== xe_rtp (2 subtests) ====================
[16:02:57] =============== xe_rtp_process_to_sr_tests ================
[16:02:57] [PASSED] coalesce-same-reg
[16:02:57] [PASSED] no-match-no-add
[16:02:57] [PASSED] match-or
[16:02:57] [PASSED] match-or-xfail
[16:02:57] [PASSED] no-match-no-add-multiple-rules
[16:02:57] [PASSED] two-regs-two-entries
[16:02:57] [PASSED] clr-one-set-other
[16:02:57] [PASSED] set-field
[16:02:57] [PASSED] conflict-duplicate
[16:02:57] [PASSED] conflict-not-disjoint
[16:02:57] [PASSED] conflict-reg-type
[16:02:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:02:57] ================== xe_rtp_process_tests ===================
[16:02:57] [PASSED] active1
[16:02:57] [PASSED] active2
[16:02:57] [PASSED] active-inactive
[16:02:57] [PASSED] inactive-active
[16:02:57] [PASSED] inactive-1st_or_active-inactive
[16:02:57] [PASSED] inactive-2nd_or_active-inactive
[16:02:57] [PASSED] inactive-last_or_active-inactive
[16:02:57] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[16:02:57] ============== [PASSED] xe_rtp_process_tests ===============
[16:02:57] ===================== [PASSED] xe_rtp ======================
[16:02:57] ==================== xe_wa (1 subtest) =====================
[16:02:57] ======================== xe_wa_gt =========================
[16:02:57] [PASSED] TIGERLAKE B0
[16:02:57] [PASSED] DG1 A0
[16:02:57] [PASSED] DG1 B0
[16:02:57] [PASSED] ALDERLAKE_S A0
[16:02:57] [PASSED] ALDERLAKE_S B0
[16:02:57] [PASSED] ALDERLAKE_S C0
[16:02:57] [PASSED] ALDERLAKE_S D0
[16:02:57] [PASSED] ALDERLAKE_P A0
[16:02:57] [PASSED] ALDERLAKE_P B0
[16:02:57] [PASSED] ALDERLAKE_P C0
[16:02:57] [PASSED] ALDERLAKE_S RPLS D0
[16:02:57] [PASSED] ALDERLAKE_P RPLU E0
[16:02:57] [PASSED] DG2 G10 C0
[16:02:57] [PASSED] DG2 G11 B1
[16:02:57] [PASSED] DG2 G12 A1
[16:02:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:02:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:02:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[16:02:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[16:02:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[16:02:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[16:02:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[16:02:57] ==================== [PASSED] xe_wa_gt =====================
[16:02:57] ====================== [PASSED] xe_wa ======================
[16:02:57] ============================================================
[16:02:57] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[16:02:57] Elapsed time: 41.941s total, 4.302s configuring, 37.271s building, 0.342s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:02:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:02:59] 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=25
[16:03:28] Starting KUnit Kernel (1/1)...
[16:03:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:03:28] ============ drm_test_pick_cmdline (2 subtests) ============
[16:03:28] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[16:03:28] =============== drm_test_pick_cmdline_named ===============
[16:03:28] [PASSED] NTSC
[16:03:28] [PASSED] NTSC-J
[16:03:28] [PASSED] PAL
[16:03:28] [PASSED] PAL-M
[16:03:28] =========== [PASSED] drm_test_pick_cmdline_named ===========
[16:03:28] ============== [PASSED] drm_test_pick_cmdline ==============
[16:03:28] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:03:28] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:03:28] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:03:28] =========== drm_validate_clone_mode (2 subtests) ===========
[16:03:28] ============== drm_test_check_in_clone_mode ===============
[16:03:28] [PASSED] in_clone_mode
[16:03:28] [PASSED] not_in_clone_mode
[16:03:28] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:03:28] =============== drm_test_check_valid_clones ===============
[16:03:28] [PASSED] not_in_clone_mode
[16:03:28] [PASSED] valid_clone
[16:03:28] [PASSED] invalid_clone
[16:03:28] =========== [PASSED] drm_test_check_valid_clones ===========
[16:03:28] ============= [PASSED] drm_validate_clone_mode =============
[16:03:28] ============= drm_validate_modeset (1 subtest) =============
[16:03:28] [PASSED] drm_test_check_connector_changed_modeset
[16:03:28] ============== [PASSED] drm_validate_modeset ===============
[16:03:28] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:03:28] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:03:28] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:03:28] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:03:28] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:03:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:03:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:03:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:03:28] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:03:28] ============== drm_bridge_alloc (2 subtests) ===============
[16:03:28] [PASSED] drm_test_drm_bridge_alloc_basic
[16:03:28] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:03:28] ================ [PASSED] drm_bridge_alloc =================
[16:03:28] ================== drm_buddy (8 subtests) ==================
[16:03:28] [PASSED] drm_test_buddy_alloc_limit
[16:03:28] [PASSED] drm_test_buddy_alloc_optimistic
[16:03:28] [PASSED] drm_test_buddy_alloc_pessimistic
[16:03:28] [PASSED] drm_test_buddy_alloc_pathological
[16:03:28] [PASSED] drm_test_buddy_alloc_contiguous
[16:03:28] [PASSED] drm_test_buddy_alloc_clear
[16:03:28] [PASSED] drm_test_buddy_alloc_range_bias
[16:03:29] [PASSED] drm_test_buddy_fragmentation_performance
[16:03:29] ==================== [PASSED] drm_buddy ====================
[16:03:29] ============= drm_cmdline_parser (40 subtests) =============
[16:03:29] [PASSED] drm_test_cmdline_force_d_only
[16:03:29] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:03:29] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:03:29] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:03:29] [PASSED] drm_test_cmdline_force_e_only
[16:03:29] [PASSED] drm_test_cmdline_res
[16:03:29] [PASSED] drm_test_cmdline_res_vesa
[16:03:29] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:03:29] [PASSED] drm_test_cmdline_res_rblank
[16:03:29] [PASSED] drm_test_cmdline_res_bpp
[16:03:29] [PASSED] drm_test_cmdline_res_refresh
[16:03:29] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:03:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:03:29] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:03:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:03:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:03:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:03:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:03:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:03:29] [PASSED] drm_test_cmdline_res_margins_force_on
[16:03:29] [PASSED] drm_test_cmdline_res_vesa_margins
[16:03:29] [PASSED] drm_test_cmdline_name
[16:03:29] [PASSED] drm_test_cmdline_name_bpp
[16:03:29] [PASSED] drm_test_cmdline_name_option
[16:03:29] [PASSED] drm_test_cmdline_name_bpp_option
[16:03:29] [PASSED] drm_test_cmdline_rotate_0
[16:03:29] [PASSED] drm_test_cmdline_rotate_90
[16:03:29] [PASSED] drm_test_cmdline_rotate_180
[16:03:29] [PASSED] drm_test_cmdline_rotate_270
[16:03:29] [PASSED] drm_test_cmdline_hmirror
[16:03:29] [PASSED] drm_test_cmdline_vmirror
[16:03:29] [PASSED] drm_test_cmdline_margin_options
[16:03:29] [PASSED] drm_test_cmdline_multiple_options
[16:03:29] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:03:29] [PASSED] drm_test_cmdline_extra_and_option
[16:03:29] [PASSED] drm_test_cmdline_freestanding_options
[16:03:29] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:03:29] [PASSED] drm_test_cmdline_panel_orientation
[16:03:29] ================ drm_test_cmdline_invalid =================
[16:03:29] [PASSED] margin_only
[16:03:29] [PASSED] interlace_only
[16:03:29] [PASSED] res_missing_x
[16:03:29] [PASSED] res_missing_y
[16:03:29] [PASSED] res_bad_y
[16:03:29] [PASSED] res_missing_y_bpp
[16:03:29] [PASSED] res_bad_bpp
[16:03:29] [PASSED] res_bad_refresh
[16:03:29] [PASSED] res_bpp_refresh_force_on_off
[16:03:29] [PASSED] res_invalid_mode
[16:03:29] [PASSED] res_bpp_wrong_place_mode
[16:03:29] [PASSED] name_bpp_refresh
[16:03:29] [PASSED] name_refresh
[16:03:29] [PASSED] name_refresh_wrong_mode
[16:03:29] [PASSED] name_refresh_invalid_mode
[16:03:29] [PASSED] rotate_multiple
[16:03:29] [PASSED] rotate_invalid_val
[16:03:29] [PASSED] rotate_truncated
[16:03:29] [PASSED] invalid_option
[16:03:29] [PASSED] invalid_tv_option
[16:03:29] [PASSED] truncated_tv_option
[16:03:29] ============ [PASSED] drm_test_cmdline_invalid =============
[16:03:29] =============== drm_test_cmdline_tv_options ===============
[16:03:29] [PASSED] NTSC
[16:03:29] [PASSED] NTSC_443
[16:03:29] [PASSED] NTSC_J
[16:03:29] [PASSED] PAL
[16:03:29] [PASSED] PAL_M
[16:03:29] [PASSED] PAL_N
[16:03:29] [PASSED] SECAM
[16:03:29] [PASSED] MONO_525
[16:03:29] [PASSED] MONO_625
[16:03:29] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:03:29] =============== [PASSED] drm_cmdline_parser ================
[16:03:29] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:03:29] [PASSED] drm_test_connector_hdmi_init_valid
[16:03:29] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:03:29] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:03:29] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:03:29] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:03:29] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:03:29] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:03:29] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:03:29] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:03:29] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:03:29] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:03:29] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:03:29] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:03:29] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:03:29] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:03:29] [PASSED] drm_test_connector_hdmi_init_null_product
[16:03:29] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:03:29] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:03:29] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:03:29] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:03:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:03:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:03:29] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:03:29] ========= drm_test_connector_hdmi_init_type_valid =========
[16:03:29] [PASSED] HDMI-A
[16:03:29] [PASSED] HDMI-B
[16:03:29] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:03:29] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:03:29] [PASSED] Unknown
[16:03:29] [PASSED] VGA
[16:03:29] [PASSED] DVI-I
[16:03:29] [PASSED] DVI-D
[16:03:29] [PASSED] DVI-A
[16:03:29] [PASSED] Composite
[16:03:29] [PASSED] SVIDEO
[16:03:29] [PASSED] LVDS
[16:03:29] [PASSED] Component
[16:03:29] [PASSED] DIN
[16:03:29] [PASSED] DP
[16:03:29] [PASSED] TV
[16:03:29] [PASSED] eDP
[16:03:29] [PASSED] Virtual
[16:03:29] [PASSED] DSI
[16:03:29] [PASSED] DPI
[16:03:29] [PASSED] Writeback
[16:03:29] [PASSED] SPI
[16:03:29] [PASSED] USB
[16:03:29] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:03:29] ============ [PASSED] drmm_connector_hdmi_init =============
[16:03:29] ============= drmm_connector_init (3 subtests) =============
[16:03:29] [PASSED] drm_test_drmm_connector_init
[16:03:29] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:03:29] ========= drm_test_drmm_connector_init_type_valid =========
[16:03:29] [PASSED] Unknown
[16:03:29] [PASSED] VGA
[16:03:29] [PASSED] DVI-I
[16:03:29] [PASSED] DVI-D
[16:03:29] [PASSED] DVI-A
[16:03:29] [PASSED] Composite
[16:03:29] [PASSED] SVIDEO
[16:03:29] [PASSED] LVDS
[16:03:29] [PASSED] Component
[16:03:29] [PASSED] DIN
[16:03:29] [PASSED] DP
[16:03:29] [PASSED] HDMI-A
[16:03:29] [PASSED] HDMI-B
[16:03:29] [PASSED] TV
[16:03:29] [PASSED] eDP
[16:03:29] [PASSED] Virtual
[16:03:29] [PASSED] DSI
[16:03:29] [PASSED] DPI
[16:03:29] [PASSED] Writeback
[16:03:29] [PASSED] SPI
[16:03:29] [PASSED] USB
[16:03:29] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:03:29] =============== [PASSED] drmm_connector_init ===============
[16:03:29] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_init
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:03:29] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:03:29] [PASSED] Unknown
[16:03:29] [PASSED] VGA
[16:03:29] [PASSED] DVI-I
[16:03:29] [PASSED] DVI-D
[16:03:29] [PASSED] DVI-A
[16:03:29] [PASSED] Composite
[16:03:29] [PASSED] SVIDEO
[16:03:29] [PASSED] LVDS
[16:03:29] [PASSED] Component
[16:03:29] [PASSED] DIN
[16:03:29] [PASSED] DP
[16:03:29] [PASSED] HDMI-A
[16:03:29] [PASSED] HDMI-B
[16:03:29] [PASSED] TV
[16:03:29] [PASSED] eDP
[16:03:29] [PASSED] Virtual
[16:03:29] [PASSED] DSI
[16:03:29] [PASSED] DPI
[16:03:29] [PASSED] Writeback
[16:03:29] [PASSED] SPI
[16:03:29] [PASSED] USB
[16:03:29] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:03:29] ======== drm_test_drm_connector_dynamic_init_name =========
[16:03:29] [PASSED] Unknown
[16:03:29] [PASSED] VGA
[16:03:29] [PASSED] DVI-I
[16:03:29] [PASSED] DVI-D
[16:03:29] [PASSED] DVI-A
[16:03:29] [PASSED] Composite
[16:03:29] [PASSED] SVIDEO
[16:03:29] [PASSED] LVDS
[16:03:29] [PASSED] Component
[16:03:29] [PASSED] DIN
[16:03:29] [PASSED] DP
[16:03:29] [PASSED] HDMI-A
[16:03:29] [PASSED] HDMI-B
[16:03:29] [PASSED] TV
[16:03:29] [PASSED] eDP
[16:03:29] [PASSED] Virtual
[16:03:29] [PASSED] DSI
[16:03:29] [PASSED] DPI
[16:03:29] [PASSED] Writeback
[16:03:29] [PASSED] SPI
[16:03:29] [PASSED] USB
[16:03:29] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:03:29] =========== [PASSED] drm_connector_dynamic_init ============
[16:03:29] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:03:29] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:03:29] ======= drm_connector_dynamic_register (7 subtests) ========
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:03:29] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:03:29] ========= [PASSED] drm_connector_dynamic_register ==========
[16:03:29] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:03:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:03:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:03:29] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:03:29] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:03:29] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:03:29] [PASSED] NTSC
[16:03:29] [PASSED] NTSC-443
[16:03:29] [PASSED] NTSC-J
[16:03:29] [PASSED] PAL
[16:03:29] [PASSED] PAL-M
[16:03:29] [PASSED] PAL-N
[16:03:29] [PASSED] SECAM
[16:03:29] [PASSED] Mono
[16:03:29] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:03:29] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:03:29] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:03:29] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:03:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:03:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:03:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:03:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:03:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:03:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:03:29] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:03:29] [PASSED] VIC 96
[16:03:29] [PASSED] VIC 97
[16:03:29] [PASSED] VIC 101
[16:03:29] [PASSED] VIC 102
[16:03:29] [PASSED] VIC 106
[16:03:29] [PASSED] VIC 107
[16:03:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:03:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:03:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:03:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:03:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:03:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:03:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:03:29] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:03:29] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:03:29] [PASSED] Automatic
[16:03:29] [PASSED] Full
[16:03:29] [PASSED] Limited 16:235
[16:03:29] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:03:29] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:03:29] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:03:29] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:03:29] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:03:29] [PASSED] RGB
[16:03:29] [PASSED] YUV 4:2:0
[16:03:29] [PASSED] YUV 4:2:2
[16:03:29] [PASSED] YUV 4:4:4
[16:03:29] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:03:29] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:03:29] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:03:29] ============= drm_damage_helper (21 subtests) ==============
[16:03:29] [PASSED] drm_test_damage_iter_no_damage
[16:03:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:03:29] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:03:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:03:29] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:03:29] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:03:29] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:03:29] [PASSED] drm_test_damage_iter_simple_damage
[16:03:29] [PASSED] drm_test_damage_iter_single_damage
[16:03:29] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:03:29] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:03:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:03:29] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:03:29] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:03:29] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:03:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:03:29] [PASSED] drm_test_damage_iter_damage
[16:03:29] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:03:29] [PASSED] drm_test_damage_iter_damage_one_outside
[16:03:29] [PASSED] drm_test_damage_iter_damage_src_moved
[16:03:29] [PASSED] drm_test_damage_iter_damage_not_visible
[16:03:29] ================ [PASSED] drm_damage_helper ================
[16:03:29] ============== drm_dp_mst_helper (3 subtests) ==============
[16:03:29] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:03:29] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:03:29] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:03:29] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:03:29] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:03:29] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:03:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:03:29] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:03:29] [PASSED] Link rate 2000000 lane count 4
[16:03:29] [PASSED] Link rate 2000000 lane count 2
[16:03:29] [PASSED] Link rate 2000000 lane count 1
[16:03:29] [PASSED] Link rate 1350000 lane count 4
[16:03:29] [PASSED] Link rate 1350000 lane count 2
[16:03:29] [PASSED] Link rate 1350000 lane count 1
[16:03:29] [PASSED] Link rate 1000000 lane count 4
[16:03:29] [PASSED] Link rate 1000000 lane count 2
[16:03:29] [PASSED] Link rate 1000000 lane count 1
[16:03:29] [PASSED] Link rate 810000 lane count 4
[16:03:29] [PASSED] Link rate 810000 lane count 2
[16:03:29] [PASSED] Link rate 810000 lane count 1
[16:03:29] [PASSED] Link rate 540000 lane count 4
[16:03:29] [PASSED] Link rate 540000 lane count 2
[16:03:29] [PASSED] Link rate 540000 lane count 1
[16:03:29] [PASSED] Link rate 270000 lane count 4
[16:03:29] [PASSED] Link rate 270000 lane count 2
[16:03:29] [PASSED] Link rate 270000 lane count 1
[16:03:29] [PASSED] Link rate 162000 lane count 4
[16:03:29] [PASSED] Link rate 162000 lane count 2
[16:03:29] [PASSED] Link rate 162000 lane count 1
[16:03:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:03:29] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:03:29] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:03:29] [PASSED] DP_POWER_UP_PHY with port number
[16:03:29] [PASSED] DP_POWER_DOWN_PHY with port number
[16:03:29] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:03:29] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:03:29] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:03:29] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:03:29] [PASSED] DP_QUERY_PAYLOAD with port number
[16:03:29] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:03:29] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:03:29] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:03:29] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:03:29] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:03:29] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:03:29] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:03:29] [PASSED] DP_REMOTE_I2C_READ with port number
[16:03:29] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:03:29] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:03:29] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:03:29] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:03:29] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:03:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:03:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:03:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:03:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:03:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:03:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:03:29] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:03:29] ================ [PASSED] drm_dp_mst_helper ================
[16:03:29] ================== drm_exec (7 subtests) ===================
[16:03:29] [PASSED] sanitycheck
[16:03:29] [PASSED] test_lock
[16:03:29] [PASSED] test_lock_unlock
[16:03:29] [PASSED] test_duplicates
[16:03:29] [PASSED] test_prepare
[16:03:29] [PASSED] test_prepare_array
[16:03:29] [PASSED] test_multiple_loops
[16:03:29] ==================== [PASSED] drm_exec =====================
[16:03:29] =========== drm_format_helper_test (17 subtests) ===========
[16:03:29] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:03:29] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:03:29] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:03:29] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:03:29] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:03:29] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:03:29] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:03:29] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:03:29] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:03:29] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:03:29] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:03:29] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:03:29] ==================== drm_test_fb_swab =====================
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ================ [PASSED] drm_test_fb_swab =================
[16:03:29] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:03:29] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:03:29] [PASSED] single_pixel_source_buffer
[16:03:29] [PASSED] single_pixel_clip_rectangle
[16:03:29] [PASSED] well_known_colors
[16:03:29] [PASSED] destination_pitch
[16:03:29] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:03:29] ================= drm_test_fb_clip_offset =================
[16:03:29] [PASSED] pass through
[16:03:29] [PASSED] horizontal offset
[16:03:29] [PASSED] vertical offset
[16:03:29] [PASSED] horizontal and vertical offset
[16:03:29] [PASSED] horizontal offset (custom pitch)
[16:03:29] [PASSED] vertical offset (custom pitch)
[16:03:29] [PASSED] horizontal and vertical offset (custom pitch)
[16:03:29] ============= [PASSED] drm_test_fb_clip_offset =============
[16:03:29] =================== drm_test_fb_memcpy ====================
[16:03:29] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:03:29] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:03:29] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:03:29] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:03:29] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:03:29] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:03:29] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:03:29] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:03:29] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:03:29] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:03:29] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:03:29] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:03:29] =============== [PASSED] drm_test_fb_memcpy ================
[16:03:29] ============= [PASSED] drm_format_helper_test ==============
[16:03:29] ================= drm_format (18 subtests) =================
[16:03:29] [PASSED] drm_test_format_block_width_invalid
[16:03:29] [PASSED] drm_test_format_block_width_one_plane
[16:03:29] [PASSED] drm_test_format_block_width_two_plane
[16:03:29] [PASSED] drm_test_format_block_width_three_plane
[16:03:29] [PASSED] drm_test_format_block_width_tiled
[16:03:29] [PASSED] drm_test_format_block_height_invalid
[16:03:29] [PASSED] drm_test_format_block_height_one_plane
[16:03:29] [PASSED] drm_test_format_block_height_two_plane
[16:03:29] [PASSED] drm_test_format_block_height_three_plane
[16:03:29] [PASSED] drm_test_format_block_height_tiled
[16:03:29] [PASSED] drm_test_format_min_pitch_invalid
[16:03:29] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:03:29] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:03:29] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:03:29] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:03:29] [PASSED] drm_test_format_min_pitch_two_plane
[16:03:29] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:03:29] [PASSED] drm_test_format_min_pitch_tiled
[16:03:29] =================== [PASSED] drm_format ====================
[16:03:29] ============== drm_framebuffer (10 subtests) ===============
[16:03:29] ========== drm_test_framebuffer_check_src_coords ==========
[16:03:29] [PASSED] Success: source fits into fb
[16:03:29] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:03:29] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:03:29] [PASSED] Fail: overflowing fb with source width
[16:03:29] [PASSED] Fail: overflowing fb with source height
[16:03:29] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:03:29] [PASSED] drm_test_framebuffer_cleanup
[16:03:29] =============== drm_test_framebuffer_create ===============
[16:03:29] [PASSED] ABGR8888 normal sizes
[16:03:29] [PASSED] ABGR8888 max sizes
[16:03:29] [PASSED] ABGR8888 pitch greater than min required
[16:03:29] [PASSED] ABGR8888 pitch less than min required
[16:03:29] [PASSED] ABGR8888 Invalid width
[16:03:29] [PASSED] ABGR8888 Invalid buffer handle
[16:03:29] [PASSED] No pixel format
[16:03:29] [PASSED] ABGR8888 Width 0
[16:03:29] [PASSED] ABGR8888 Height 0
[16:03:29] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:03:29] [PASSED] ABGR8888 Large buffer offset
[16:03:29] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:03:29] [PASSED] ABGR8888 Invalid flag
[16:03:29] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:03:29] [PASSED] ABGR8888 Valid buffer modifier
[16:03:29] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:03:29] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:03:29] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:03:29] [PASSED] NV12 Normal sizes
[16:03:29] [PASSED] NV12 Max sizes
[16:03:29] [PASSED] NV12 Invalid pitch
[16:03:29] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:03:29] [PASSED] NV12 different modifier per-plane
[16:03:29] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:03:29] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:03:29] [PASSED] NV12 Modifier for inexistent plane
[16:03:29] [PASSED] NV12 Handle for inexistent plane
[16:03:29] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:03:29] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:03:29] [PASSED] YVU420 Normal sizes
[16:03:29] [PASSED] YVU420 Max sizes
[16:03:29] [PASSED] YVU420 Invalid pitch
[16:03:29] [PASSED] YVU420 Different pitches
[16:03:29] [PASSED] YVU420 Different buffer offsets/pitches
[16:03:29] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:03:29] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:03:29] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:03:29] [PASSED] YVU420 Valid modifier
[16:03:29] [PASSED] YVU420 Different modifiers per plane
[16:03:29] [PASSED] YVU420 Modifier for inexistent plane
[16:03:29] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:03:29] [PASSED] X0L2 Normal sizes
[16:03:29] [PASSED] X0L2 Max sizes
[16:03:29] [PASSED] X0L2 Invalid pitch
[16:03:29] [PASSED] X0L2 Pitch greater than minimum required
[16:03:29] [PASSED] X0L2 Handle for inexistent plane
[16:03:29] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:03:29] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:03:29] [PASSED] X0L2 Valid modifier
[16:03:29] [PASSED] X0L2 Modifier for inexistent plane
[16:03:29] =========== [PASSED] drm_test_framebuffer_create ===========
[16:03:29] [PASSED] drm_test_framebuffer_free
[16:03:29] [PASSED] drm_test_framebuffer_init
[16:03:29] [PASSED] drm_test_framebuffer_init_bad_format
[16:03:29] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:03:29] [PASSED] drm_test_framebuffer_lookup
[16:03:29] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:03:29] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:03:29] ================= [PASSED] drm_framebuffer =================
[16:03:29] ================ drm_gem_shmem (8 subtests) ================
[16:03:29] [PASSED] drm_gem_shmem_test_obj_create
[16:03:29] [PASSED] drm_gem_shmem_test_obj_create_private
[16:03:29] [PASSED] drm_gem_shmem_test_pin_pages
[16:03:29] [PASSED] drm_gem_shmem_test_vmap
[16:03:29] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:03:29] [PASSED] drm_gem_shmem_test_get_sg_table
[16:03:29] [PASSED] drm_gem_shmem_test_madvise
[16:03:29] [PASSED] drm_gem_shmem_test_purge
[16:03:29] ================== [PASSED] drm_gem_shmem ==================
[16:03:29] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:03:29] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[16:03:29] [PASSED] Automatic
[16:03:29] [PASSED] Full
[16:03:29] [PASSED] Limited 16:235
[16:03:29] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:03:29] [PASSED] drm_test_check_disable_connector
[16:03:29] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:03:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:03:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:03:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:03:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:03:29] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:03:29] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:03:29] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:03:29] [PASSED] drm_test_check_output_bpc_dvi
[16:03:29] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:03:29] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:03:29] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:03:29] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:03:29] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:03:29] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:03:29] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:03:29] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:03:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:03:29] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:03:29] [PASSED] drm_test_check_broadcast_rgb_value
[16:03:29] [PASSED] drm_test_check_bpc_8_value
[16:03:29] [PASSED] drm_test_check_bpc_10_value
[16:03:29] [PASSED] drm_test_check_bpc_12_value
[16:03:29] [PASSED] drm_test_check_format_value
[16:03:29] [PASSED] drm_test_check_tmds_char_value
[16:03:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:03:29] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:03:29] [PASSED] drm_test_check_mode_valid
[16:03:29] [PASSED] drm_test_check_mode_valid_reject
[16:03:29] [PASSED] drm_test_check_mode_valid_reject_rate
[16:03:29] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:03:29] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:03:29] ================= drm_managed (2 subtests) =================
[16:03:29] [PASSED] drm_test_managed_release_action
[16:03:29] [PASSED] drm_test_managed_run_action
[16:03:29] =================== [PASSED] drm_managed ===================
[16:03:29] =================== drm_mm (6 subtests) ====================
[16:03:29] [PASSED] drm_test_mm_init
[16:03:29] [PASSED] drm_test_mm_debug
[16:03:29] [PASSED] drm_test_mm_align32
[16:03:29] [PASSED] drm_test_mm_align64
[16:03:29] [PASSED] drm_test_mm_lowest
[16:03:29] [PASSED] drm_test_mm_highest
[16:03:29] ===================== [PASSED] drm_mm ======================
[16:03:29] ============= drm_modes_analog_tv (5 subtests) =============
[16:03:29] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:03:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:03:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:03:29] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:03:29] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:03:29] =============== [PASSED] drm_modes_analog_tv ===============
[16:03:29] ============== drm_plane_helper (2 subtests) ===============
[16:03:29] =============== drm_test_check_plane_state ================
[16:03:29] [PASSED] clipping_simple
[16:03:29] [PASSED] clipping_rotate_reflect
[16:03:29] [PASSED] positioning_simple
[16:03:29] [PASSED] upscaling
[16:03:29] [PASSED] downscaling
[16:03:29] [PASSED] rounding1
[16:03:29] [PASSED] rounding2
[16:03:29] [PASSED] rounding3
[16:03:29] [PASSED] rounding4
[16:03:29] =========== [PASSED] drm_test_check_plane_state ============
[16:03:29] =========== drm_test_check_invalid_plane_state ============
[16:03:29] [PASSED] positioning_invalid
[16:03:29] [PASSED] upscaling_invalid
[16:03:29] [PASSED] downscaling_invalid
[16:03:29] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:03:29] ================ [PASSED] drm_plane_helper =================
[16:03:29] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:03:29] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:03:29] [PASSED] None
[16:03:29] [PASSED] PAL
[16:03:29] [PASSED] NTSC
[16:03:29] [PASSED] Both, NTSC Default
[16:03:29] [PASSED] Both, PAL Default
[16:03:29] [PASSED] Both, NTSC Default, with PAL on command-line
[16:03:29] [PASSED] Both, PAL Default, with NTSC on command-line
[16:03:29] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:03:29] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:03:29] ================== drm_rect (9 subtests) ===================
[16:03:29] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:03:29] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:03:29] [PASSED] drm_test_rect_clip_scaled_clipped
[16:03:29] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:03:29] ================= drm_test_rect_intersect =================
[16:03:29] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:03:29] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:03:29] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:03:29] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:03:29] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:03:29] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:03:29] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:03:29] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:03:29] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:03:29] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:03:29] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:03:29] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:03:29] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:03:29] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:03:29] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:03:29] ============= [PASSED] drm_test_rect_intersect =============
[16:03:29] ================ drm_test_rect_calc_hscale ================
[16:03:29] [PASSED] normal use
[16:03:29] [PASSED] out of max range
[16:03:29] [PASSED] out of min range
[16:03:29] [PASSED] zero dst
[16:03:29] [PASSED] negative src
[16:03:29] [PASSED] negative dst
[16:03:29] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:03:29] ================ drm_test_rect_calc_vscale ================
[16:03:29] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[16:03:29] [PASSED] out of max range
[16:03:29] [PASSED] out of min range
[16:03:29] [PASSED] zero dst
[16:03:29] [PASSED] negative src
[16:03:29] [PASSED] negative dst
[16:03:29] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:03:29] ================== drm_test_rect_rotate ===================
[16:03:29] [PASSED] reflect-x
[16:03:29] [PASSED] reflect-y
[16:03:29] [PASSED] rotate-0
[16:03:29] [PASSED] rotate-90
[16:03:29] [PASSED] rotate-180
[16:03:29] [PASSED] rotate-270
[16:03:29] ============== [PASSED] drm_test_rect_rotate ===============
[16:03:29] ================ drm_test_rect_rotate_inv =================
[16:03:29] [PASSED] reflect-x
[16:03:29] [PASSED] reflect-y
[16:03:29] [PASSED] rotate-0
[16:03:29] [PASSED] rotate-90
[16:03:29] [PASSED] rotate-180
[16:03:29] [PASSED] rotate-270
[16:03:29] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:03:29] ==================== [PASSED] drm_rect =====================
[16:03:29] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:03:29] ============ drm_test_sysfb_build_fourcc_list =============
[16:03:29] [PASSED] no native formats
[16:03:29] [PASSED] XRGB8888 as native format
[16:03:29] [PASSED] remove duplicates
[16:03:29] [PASSED] convert alpha formats
[16:03:29] [PASSED] random formats
[16:03:29] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:03:29] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:03:29] ============================================================
[16:03:29] Testing complete. Ran 622 tests: passed: 622
[16:03:29] Elapsed time: 31.371s total, 1.621s configuring, 29.283s building, 0.452s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:03:29] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:03:30] 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=25
[16:03:39] Starting KUnit Kernel (1/1)...
[16:03:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:03:40] ================= ttm_device (5 subtests) ==================
[16:03:40] [PASSED] ttm_device_init_basic
[16:03:40] [PASSED] ttm_device_init_multiple
[16:03:40] [PASSED] ttm_device_fini_basic
[16:03:40] [PASSED] ttm_device_init_no_vma_man
[16:03:40] ================== ttm_device_init_pools ==================
[16:03:40] [PASSED] No DMA allocations, no DMA32 required
[16:03:40] [PASSED] DMA allocations, DMA32 required
[16:03:40] [PASSED] No DMA allocations, DMA32 required
[16:03:40] [PASSED] DMA allocations, no DMA32 required
[16:03:40] ============== [PASSED] ttm_device_init_pools ==============
[16:03:40] =================== [PASSED] ttm_device ====================
[16:03:40] ================== ttm_pool (8 subtests) ===================
[16:03:40] ================== ttm_pool_alloc_basic ===================
[16:03:40] [PASSED] One page
[16:03:40] [PASSED] More than one page
[16:03:40] [PASSED] Above the allocation limit
[16:03:40] [PASSED] One page, with coherent DMA mappings enabled
[16:03:40] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:03:40] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:03:40] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:03:40] [PASSED] One page
[16:03:40] [PASSED] More than one page
[16:03:40] [PASSED] Above the allocation limit
[16:03:40] [PASSED] One page, with coherent DMA mappings enabled
[16:03:40] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:03:40] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:03:40] [PASSED] ttm_pool_alloc_order_caching_match
[16:03:40] [PASSED] ttm_pool_alloc_caching_mismatch
[16:03:40] [PASSED] ttm_pool_alloc_order_mismatch
[16:03:40] [PASSED] ttm_pool_free_dma_alloc
[16:03:40] [PASSED] ttm_pool_free_no_dma_alloc
[16:03:40] [PASSED] ttm_pool_fini_basic
[16:03:40] ==================== [PASSED] ttm_pool =====================
[16:03:40] ================ ttm_resource (8 subtests) =================
[16:03:40] ================= ttm_resource_init_basic =================
[16:03:40] [PASSED] Init resource in TTM_PL_SYSTEM
[16:03:40] [PASSED] Init resource in TTM_PL_VRAM
[16:03:40] [PASSED] Init resource in a private placement
[16:03:40] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:03:40] ============= [PASSED] ttm_resource_init_basic =============
[16:03:40] [PASSED] ttm_resource_init_pinned
[16:03:40] [PASSED] ttm_resource_fini_basic
[16:03:40] [PASSED] ttm_resource_manager_init_basic
[16:03:40] [PASSED] ttm_resource_manager_usage_basic
[16:03:40] [PASSED] ttm_resource_manager_set_used_basic
[16:03:40] [PASSED] ttm_sys_man_alloc_basic
[16:03:40] [PASSED] ttm_sys_man_free_basic
[16:03:40] ================== [PASSED] ttm_resource ===================
[16:03:40] =================== ttm_tt (15 subtests) ===================
[16:03:40] ==================== ttm_tt_init_basic ====================
[16:03:40] [PASSED] Page-aligned size
[16:03:40] [PASSED] Extra pages requested
[16:03:40] ================ [PASSED] ttm_tt_init_basic ================
[16:03:40] [PASSED] ttm_tt_init_misaligned
[16:03:40] [PASSED] ttm_tt_fini_basic
[16:03:40] [PASSED] ttm_tt_fini_sg
[16:03:40] [PASSED] ttm_tt_fini_shmem
[16:03:40] [PASSED] ttm_tt_create_basic
[16:03:40] [PASSED] ttm_tt_create_invalid_bo_type
[16:03:40] [PASSED] ttm_tt_create_ttm_exists
[16:03:40] [PASSED] ttm_tt_create_failed
[16:03:40] [PASSED] ttm_tt_destroy_basic
[16:03:40] [PASSED] ttm_tt_populate_null_ttm
[16:03:40] [PASSED] ttm_tt_populate_populated_ttm
[16:03:40] [PASSED] ttm_tt_unpopulate_basic
[16:03:40] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:03:40] [PASSED] ttm_tt_swapin_basic
[16:03:40] ===================== [PASSED] ttm_tt ======================
[16:03:40] =================== ttm_bo (14 subtests) ===================
[16:03:40] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:03:40] [PASSED] Cannot be interrupted and sleeps
[16:03:40] [PASSED] Cannot be interrupted, locks straight away
[16:03:40] [PASSED] Can be interrupted, sleeps
[16:03:40] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:03:40] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:03:40] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:03:40] [PASSED] ttm_bo_reserve_double_resv
[16:03:40] [PASSED] ttm_bo_reserve_interrupted
[16:03:40] [PASSED] ttm_bo_reserve_deadlock
[16:03:40] [PASSED] ttm_bo_unreserve_basic
[16:03:40] [PASSED] ttm_bo_unreserve_pinned
[16:03:40] [PASSED] ttm_bo_unreserve_bulk
[16:03:40] [PASSED] ttm_bo_fini_basic
[16:03:40] [PASSED] ttm_bo_fini_shared_resv
[16:03:40] [PASSED] ttm_bo_pin_basic
[16:03:40] [PASSED] ttm_bo_pin_unpin_resource
[16:03:40] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:03:40] ===================== [PASSED] ttm_bo ======================
[16:03:40] ============== ttm_bo_validate (21 subtests) ===============
[16:03:40] ============== ttm_bo_init_reserved_sys_man ===============
[16:03:40] [PASSED] Buffer object for userspace
[16:03:40] [PASSED] Kernel buffer object
[16:03:40] [PASSED] Shared buffer object
[16:03:40] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:03:40] ============== ttm_bo_init_reserved_mock_man ==============
[16:03:40] [PASSED] Buffer object for userspace
[16:03:40] [PASSED] Kernel buffer object
[16:03:40] [PASSED] Shared buffer object
[16:03:40] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:03:40] [PASSED] ttm_bo_init_reserved_resv
[16:03:40] ================== ttm_bo_validate_basic ==================
[16:03:40] [PASSED] Buffer object for userspace
[16:03:40] [PASSED] Kernel buffer object
[16:03:40] [PASSED] Shared buffer object
[16:03:40] ============== [PASSED] ttm_bo_validate_basic ==============
[16:03:40] [PASSED] ttm_bo_validate_invalid_placement
[16:03:40] ============= ttm_bo_validate_same_placement ==============
[16:03:40] [PASSED] System manager
[16:03:40] [PASSED] VRAM manager
[16:03:40] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:03:40] [PASSED] ttm_bo_validate_failed_alloc
[16:03:40] [PASSED] ttm_bo_validate_pinned
[16:03:40] [PASSED] ttm_bo_validate_busy_placement
[16:03:40] ================ ttm_bo_validate_multihop =================
[16:03:40] [PASSED] Buffer object for userspace
[16:03:40] [PASSED] Kernel buffer object
[16:03:40] [PASSED] Shared buffer object
[16:03:40] ============ [PASSED] ttm_bo_validate_multihop =============
[16:03:40] ========== ttm_bo_validate_no_placement_signaled ==========
[16:03:40] [PASSED] Buffer object in system domain, no page vector
[16:03:40] [PASSED] Buffer object in system domain with an existing page vector
[16:03:40] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:03:40] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:03:40] [PASSED] Buffer object for userspace
[16:03:40] [PASSED] Kernel buffer object
[16:03:40] [PASSED] Shared buffer object
[16:03:40] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:03:40] [PASSED] ttm_bo_validate_move_fence_signaled
[16:03:40] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:03:40] [PASSED] Waits for GPU
[16:03:40] [PASSED] Tries to lock straight away
[16:03:40] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:03:40] [PASSED] ttm_bo_validate_happy_evict
[16:03:40] [PASSED] ttm_bo_validate_all_pinned_evict
[16:03:40] [PASSED] ttm_bo_validate_allowed_only_evict
[16:03:40] [PASSED] ttm_bo_validate_deleted_evict
[16:03:40] [PASSED] ttm_bo_validate_busy_domain_evict
[16:03:40] [PASSED] ttm_bo_validate_evict_gutting
[16:03:40] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:03:40] ================= [PASSED] ttm_bo_validate =================
[16:03:40] ============================================================
[16:03:40] Testing complete. Ran 101 tests: passed: 101
[16:03:40] Elapsed time: 10.940s total, 1.612s configuring, 9.112s building, 0.176s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 44+ messages in thread* ✓ Xe.CI.BAT: success for AuxCCS handling and render compression modifiers (rev3)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (20 preceding siblings ...)
2025-10-21 16:03 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-21 16:47 ` Patchwork
2025-10-21 19:39 ` ✗ Xe.CI.Full: failure " Patchwork
` (8 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-21 16:47 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1506 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev3)
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
CI Bug Log - changes from xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d_BAT -> xe-pw-156189v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-156189v3_BAT that come from known issues:
### IGT changes ###
#### Warnings ####
* igt@xe_module_load@load:
- bat-ptl-vm: [ABORT][1] ([Intel XE#6349]) -> [ABORT][2] ([Intel XE#6287])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/bat-ptl-vm/igt@xe_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/bat-ptl-vm/igt@xe_module_load@load.html
[Intel XE#6287]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6287
[Intel XE#6349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6349
Build changes
-------------
* Linux: xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d -> xe-pw-156189v3
IGT_8594: 8594
xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d: 7bc583b1915c1a2479b28af2ad7536c25507f30d
xe-pw-156189v3: 156189v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/index.html
[-- Attachment #2: Type: text/html, Size: 2064 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread* ✗ Xe.CI.Full: failure for AuxCCS handling and render compression modifiers (rev3)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (21 preceding siblings ...)
2025-10-21 16:47 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-21 19:39 ` Patchwork
2025-10-22 7:36 ` Tvrtko Ursulin
2025-10-22 18:01 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev4) Patchwork
` (7 subsequent siblings)
30 siblings, 1 reply; 44+ messages in thread
From: Patchwork @ 2025-10-21 19:39 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 74129 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev3)
URL : https://patchwork.freedesktop.org/series/156189/
State : failure
== Summary ==
CI Bug Log - changes from xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d_FULL -> xe-pw-156189v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156189v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156189v3_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-156189v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-rc-ccs-cc-to-x:
- shard-adlp: NOTRUN -> [FAIL][1] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-rc-ccs-cc-to-x.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][2] +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-463/igt@kms_hdr@bpc-switch-suspend.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-adlp: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-8/igt@xe_pm@s3-vm-bind-unbind-all.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-4/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_vm@munmap-style-unbind-userptr-inval-front:
- shard-bmg: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
#### Warnings ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
- shard-adlp: [DMESG-WARN][7] ([Intel XE#4543]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-2/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-156189v3/shard-adlp-8/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y:
- shard-adlp: [DMESG-WARN][9] ([Intel XE#4543]) -> [DMESG-WARN][10] +1 other test dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y.html
New tests
---------
New tests have been introduced between xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d_FULL and xe-pw-156189v3_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.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.20] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-mc-ccs-to-y-rc-ccs-cc:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-rc-ccs-cc-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.18] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-rc-ccs-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.18] 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.11] 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.24] 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.11] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-x:
- Statuses : 1 dmesg-fail(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.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.13] 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.13] 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.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.10] 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.10] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-y-mc-ccs:
- Statuses : 1 fail(s)
- Exec time: [0.24] 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.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.13] s
Known issues
------------
Here are the changes found in xe-pw-156189v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-adlp: NOTRUN -> [DMESG-WARN][11] ([Intel XE#4543]) +3 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-9/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#1124])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2328])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#367]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#2907])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#787]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +20 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#3432]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2724])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#306]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-434/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#373]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-434/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#455]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178]) +3 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2321])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2320])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2291])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][41] -> [FAIL][42] ([Intel XE#4633])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2374])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#310])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#2316]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-suspend:
- shard-adlp: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) +1 other test dmesg-warn
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-4/igt@kms_flip@flip-vs-suspend.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][49] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#4543]) +10 other tests dmesg-warn
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2293] / [Intel XE#2380])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2293])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1401] / [Intel XE#1745])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1401])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x:
- shard-adlp: [PASS][58] -> [FAIL][59] ([Intel XE#1874])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-x (NEW):
- shard-adlp: NOTRUN -> [DMESG-FAIL][60] ([Intel XE#4543]) +2 other tests dmesg-fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#6312])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#6312])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#651]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2311]) +12 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#656]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#5390]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#651]) +10 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2313]) +11 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#656]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#1151])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#5672])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#653]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#653]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#4298])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#2927])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#5624])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-434/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format:
- shard-adlp: [PASS][77] -> [FAIL][78] ([Intel XE#5195]) +1 other test fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-8/igt@kms_plane@pixel-format.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-9/igt@kms_plane@pixel-format.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#455]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-adlp: [PASS][80] -> [DMESG-WARN][81] ([Intel XE#2953] / [Intel XE#4173]) +8 other tests dmesg-warn
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2763]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#870])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-adlp: NOTRUN -> [SKIP][84] ([Intel XE#1122])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-basic:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1406])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@pr-primary-page-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#3414])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2450])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flipline:
- shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#4227]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-lnl-4/igt@kms_vrr@flipline.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-1/igt@kms_vrr@flipline.html
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1499])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@kms_vrr@flipline.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#6360])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_eudebug@basic-exec-queues:
- shard-adlp: NOTRUN -> [SKIP][98] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#4837]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#4837]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#4837]) +6 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#261]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-large-cm:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#688])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@xe_evict@evict-large-cm.html
* igt@xe_exec_balancer@once-parallel-userptr-invalidate:
- shard-bmg: [PASS][104] -> [DMESG-FAIL][105] ([Intel XE#3876]) +2 other tests dmesg-fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
* igt@xe_exec_basic@many-null-defer-bind:
- shard-bmg: [PASS][106] -> [DMESG-WARN][107] ([Intel XE#3876])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_exec_basic@many-null-defer-bind.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_exec_basic@many-null-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-adlp: NOTRUN -> [SKIP][108] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2322]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm:
- shard-bmg: [PASS][110] -> [FAIL][111] ([Intel XE#5625]) +3 other tests fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#288] / [Intel XE#5561]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#288]) +6 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm:
- shard-bmg: [PASS][114] -> [FAIL][115] ([Intel XE#6050]) +1 other test fail
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2360])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-bmg: [PASS][117] -> [FAIL][118] ([Intel XE#6325])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_exec_reset@cm-gt-reset.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
- shard-bmg: [PASS][119] -> [WARN][120] ([Intel XE#5786])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#4943])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#4943]) +8 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@processes-evict-malloc:
- shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#4915]) +38 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_exec_system_allocator@processes-evict-malloc.html
* igt@xe_exec_system_allocator@threads-many-malloc-mlock-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#4915]) +90 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@twice-mmap-new-race-nomemset:
- shard-bmg: [PASS][125] -> [FAIL][126] ([Intel XE#4937] / [Intel XE#5625]) +32 other tests fail
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_exec_system_allocator@twice-mmap-new-race-nomemset.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_exec_system_allocator@twice-mmap-new-race-nomemset.html
* igt@xe_fault_injection@vm-bind-fail-xe_sync_entry_parse:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][127] ([Intel XE#2594])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@xe_fault_injection@vm-bind-fail-xe_sync_entry_parse.html
* igt@xe_module_load@force-load:
- shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#378] / [Intel XE#5612])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_module_load@force-load.html
* igt@xe_oa@blocking:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#3573]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-434/igt@xe_oa@blocking.html
* igt@xe_oa@invalid-oa-exponent:
- shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#3573]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_oa@invalid-oa-exponent.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2427])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][132] ([Intel XE#1173]) +1 other test fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2284])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [PASS][134] -> [TIMEOUT][135] ([Intel XE#3876] / [Intel XE#6162])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_pm@s2idle-exec-after.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#579])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-bmg: [PASS][137] -> [DMESG-FAIL][138] ([Intel XE#5545]) +1 other test dmesg-fail
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: [PASS][139] -> [FAIL][140] ([Intel XE#5545])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt1.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt1.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-adlp: [PASS][141] -> [TIMEOUT][142] ([Intel XE#5213]) +1 other test timeout
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-8/igt@xe_pmu@fn-engine-activity-load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-4/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#4733]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-adlp: NOTRUN -> [SKIP][144] ([Intel XE#944])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_sriov_vram@vf-access-provisioned:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#6318])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@xe_sriov_vram@vf-access-provisioned.html
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#6376])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@xe_sriov_vram@vf-access-provisioned.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: [SKIP][147] ([Intel XE#787]) -> [PASS][148] +80 other tests pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-4/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][149] ([Intel XE#455] / [Intel XE#787]) -> [PASS][150] +53 other tests pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-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][151] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-dg2-set2: [FAIL][153] ([Intel XE#5408]) -> [PASS][154] +1 other test pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-dg2-432/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-466/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@absolute-wf_vblank-interruptible@a-dp4:
- shard-dg2-set2: [INCOMPLETE][155] ([Intel XE#2049] / [Intel XE#4842]) -> [PASS][156] +1 other test pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-dg2-435/igt@kms_flip@absolute-wf_vblank-interruptible@a-dp4.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-463/igt@kms_flip@absolute-wf_vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][157] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][158] +1 other test pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [DMESG-WARN][159] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-6/igt@kms_flip@flip-vs-rmfb.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-6/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][161] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][162] +1 other test pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][163] ([Intel XE#4543]) -> [PASS][164] +8 other tests pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][165] ([Intel XE#455]) -> [PASS][166] +5 other tests pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-8/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-b-hdmi-a-1-y-to-x:
- shard-adlp: [DMESG-FAIL][167] ([Intel XE#4543]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
- shard-adlp: [FAIL][169] ([Intel XE#1874]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-adlp: [DMESG-WARN][171] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][172] +2 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][173] ([Intel XE#4459]) -> [PASS][174] +1 other test pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][175] ([Intel XE#6321]) -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_balancer@once-parallel-userptr-invalidate:
- shard-adlp: [DMESG-FAIL][177] ([Intel XE#3876]) -> [PASS][178] +2 other tests pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-1/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
* igt@xe_exec_basic@many-null-defer-bind:
- shard-adlp: [DMESG-WARN][179] ([Intel XE#3876]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-1/igt@xe_exec_basic@many-null-defer-bind.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_exec_basic@many-null-defer-bind.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-adlp: [FAIL][181] ([Intel XE#6325]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-1/igt@xe_exec_reset@cm-gt-reset.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][183] ([Intel XE#5625]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_threads@threads-cm-rebind:
- shard-adlp: [FAIL][185] ([Intel XE#5625]) -> [PASS][186] +2 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-1/igt@xe_exec_threads@threads-cm-rebind.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_exec_threads@threads-cm-rebind.html
* igt@xe_pm@s2idle-exec-after:
- shard-adlp: [TIMEOUT][187] ([Intel XE#3876]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-1/igt@xe_pm@s2idle-exec-after.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-adlp: [DMESG-FAIL][189] ([Intel XE#5545]) -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_vm@munmap-style-unbind-userptr-inval-front:
- shard-adlp: [INCOMPLETE][191] -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-1/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-3/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
#### Warnings ####
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-adlp: [DMESG-WARN][193] ([Intel XE#4543]) -> [DMESG-FAIL][194] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-2/igt@kms_async_flips@async-flip-suspend-resume.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-8/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][195] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][196] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][197] ([Intel XE#4543]) -> [TIMEOUT][198] ([Intel XE#4543]) +1 other test timeout
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-3/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-1/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-bmg: [INCOMPLETE][199] ([Intel XE#2049]) -> [INCOMPLETE][200] ([Intel XE#2049] / [Intel XE#2597])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][201] ([Intel XE#455]) -> [DMESG-FAIL][202] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][203] ([Intel XE#5390]) -> [SKIP][204] ([Intel XE#2312])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][205] ([Intel XE#2311]) -> [SKIP][206] ([Intel XE#2312]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][207] ([Intel XE#2313]) -> [SKIP][208] ([Intel XE#2312])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][209], [PASS][210], [DMESG-WARN][211], [PASS][212], [PASS][213], [PASS][214], [SKIP][215], [PASS][216], [DMESG-WARN][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234]) ([Intel XE#2457] / [Intel XE#3428]) -> ([PASS][235], [PASS][236], [SKIP][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259]) ([Intel XE#2457])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-8/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-6/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-6/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-3/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-8/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-6/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-6/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-1/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-4/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-4/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-8/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-8/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-2/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-2/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-2/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-5/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-7/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-7/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-1/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-1/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-4/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-5/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-5/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d/shard-bmg-7/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-1/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-5/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-8/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-5/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-5/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-4/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-4/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-4/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-2/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-7/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-2/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-8/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-8/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-4/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-1/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-8/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-1/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-6/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/shard-bmg-3/igt@xe_module_load@load.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[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#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[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#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[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#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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[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#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[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#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[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#5672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5672
[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#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6325
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d -> xe-pw-156189v3
IGT_8594: 8594
xe-3956-7bc583b1915c1a2479b28af2ad7536c25507f30d: 7bc583b1915c1a2479b28af2ad7536c25507f30d
xe-pw-156189v3: 156189v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v3/index.html
[-- Attachment #2: Type: text/html, Size: 87160 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread* Re: ✗ Xe.CI.Full: failure for AuxCCS handling and render compression modifiers (rev3)
2025-10-21 19:39 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-22 7:36 ` Tvrtko Ursulin
0 siblings, 0 replies; 44+ messages in thread
From: Tvrtko Ursulin @ 2025-10-22 7:36 UTC (permalink / raw)
To: intel-xe, Ville Syrjälä
On 21/10/2025 20:39, Patchwork wrote:
8><
> Here are the unknown changes that may have been introduced in xe-
> pw-156189v3_FULL:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-rc-ccs-cc-to-x:
>
> o shard-adlp: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-156189v3/shard-adlp-4/igt@kms_flip_tiling@flip-
> change-tiling@pipe-d-hdmi-a-1-y-rc-ccs-cc-to-x.html> +1 other
> test fail
So MOCS 61 did not fully fix it. It remains to be a stuborn one. :(
I sent some CI runs with stolen avoidance and also extra clflush on top.
The last one was the only combination which ever got multiple clean
shard runs.
Have you received any clarifications from the hardware people in the
meantime?
Regards,
Tvrtko
^ permalink raw reply [flat|nested] 44+ messages in thread
* ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev4)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (22 preceding siblings ...)
2025-10-21 19:39 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-22 18:01 ` Patchwork
2025-10-22 18:02 ` ✓ CI.KUnit: success " Patchwork
` (6 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-22 18:01 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev4)
URL : https://patchwork.freedesktop.org/series/156189/
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 8534627a7bd144d84621171ec56dfff84b9bcf95
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date: Mon Oct 20 08:58:30 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 74d9293d414f6967091764ccb2d2237d319558b5 drm-intel
186294ddd7bf 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
8875dc8b3df1 drm/xe/xelpg: Flush CCS when flushing caches
e05e38acf6b5 drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
3ccfa052c59a drm/xe/xelp: Support auxccs invalidation on blitter
29333da1e18f drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
d3ec638774fc drm/xe/xelp: Wait for AuxCCS invalidation to complete
40ebf987aff0 drm/xe: Export xe_emit_aux_table_inv
27a74c23f855 drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
5a8af16e5e6c 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
8e98f6baff2d drm/xe: Handle DPT in system memory
fdd1a8cfea7a drm/xe/display: Add support for AuxCCS
8534627a7bd1 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] 44+ messages in thread* ✓ CI.KUnit: success for AuxCCS handling and render compression modifiers (rev4)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (23 preceding siblings ...)
2025-10-22 18:01 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev4) Patchwork
@ 2025-10-22 18:02 ` Patchwork
2025-10-22 18:40 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-22 18:02 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev4)
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:01:24] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:01:29] 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
[18:01:59] Starting KUnit Kernel (1/1)...
[18:01:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:01:59] ================== guc_buf (11 subtests) ===================
[18:01:59] [PASSED] test_smallest
[18:01:59] [PASSED] test_largest
[18:01:59] [PASSED] test_granular
[18:01:59] [PASSED] test_unique
[18:01:59] [PASSED] test_overlap
[18:01:59] [PASSED] test_reusable
[18:01:59] [PASSED] test_too_big
[18:01:59] [PASSED] test_flush
[18:01:59] [PASSED] test_lookup
[18:01:59] [PASSED] test_data
[18:01:59] [PASSED] test_class
[18:01:59] ===================== [PASSED] guc_buf =====================
[18:01:59] =================== guc_dbm (7 subtests) ===================
[18:01:59] [PASSED] test_empty
[18:01:59] [PASSED] test_default
[18:01:59] ======================== test_size ========================
[18:01:59] [PASSED] 4
[18:01:59] [PASSED] 8
[18:01:59] [PASSED] 32
[18:01:59] [PASSED] 256
[18:01:59] ==================== [PASSED] test_size ====================
[18:01:59] ======================= test_reuse ========================
[18:01:59] [PASSED] 4
[18:01:59] [PASSED] 8
[18:01:59] [PASSED] 32
[18:01:59] [PASSED] 256
[18:01:59] =================== [PASSED] test_reuse ====================
[18:01:59] =================== test_range_overlap ====================
[18:01:59] [PASSED] 4
[18:01:59] [PASSED] 8
[18:01:59] [PASSED] 32
[18:01:59] [PASSED] 256
[18:01:59] =============== [PASSED] test_range_overlap ================
[18:01:59] =================== test_range_compact ====================
[18:01:59] [PASSED] 4
[18:01:59] [PASSED] 8
[18:01:59] [PASSED] 32
[18:01:59] [PASSED] 256
[18:01:59] =============== [PASSED] test_range_compact ================
[18:01:59] ==================== test_range_spare =====================
[18:01:59] [PASSED] 4
[18:01:59] [PASSED] 8
[18:01:59] [PASSED] 32
[18:01:59] [PASSED] 256
[18:01:59] ================ [PASSED] test_range_spare =================
[18:01:59] ===================== [PASSED] guc_dbm =====================
[18:01:59] =================== guc_idm (6 subtests) ===================
[18:01:59] [PASSED] bad_init
[18:01:59] [PASSED] no_init
[18:01:59] [PASSED] init_fini
[18:01:59] [PASSED] check_used
[18:01:59] [PASSED] check_quota
[18:01:59] [PASSED] check_all
[18:01:59] ===================== [PASSED] guc_idm =====================
[18:01:59] ================== no_relay (3 subtests) ===================
[18:01:59] [PASSED] xe_drops_guc2pf_if_not_ready
[18:01:59] [PASSED] xe_drops_guc2vf_if_not_ready
[18:01:59] [PASSED] xe_rejects_send_if_not_ready
[18:01:59] ==================== [PASSED] no_relay =====================
[18:01:59] ================== pf_relay (14 subtests) ==================
[18:01:59] [PASSED] pf_rejects_guc2pf_too_short
[18:01:59] [PASSED] pf_rejects_guc2pf_too_long
[18:01:59] [PASSED] pf_rejects_guc2pf_no_payload
[18:01:59] [PASSED] pf_fails_no_payload
[18:01:59] [PASSED] pf_fails_bad_origin
[18:01:59] [PASSED] pf_fails_bad_type
[18:01:59] [PASSED] pf_txn_reports_error
[18:01:59] [PASSED] pf_txn_sends_pf2guc
[18:01:59] [PASSED] pf_sends_pf2guc
[18:01:59] [SKIPPED] pf_loopback_nop
[18:01:59] [SKIPPED] pf_loopback_echo
[18:01:59] [SKIPPED] pf_loopback_fail
[18:01:59] [SKIPPED] pf_loopback_busy
[18:01:59] [SKIPPED] pf_loopback_retry
[18:01:59] ==================== [PASSED] pf_relay =====================
[18:01:59] ================== vf_relay (3 subtests) ===================
[18:01:59] [PASSED] vf_rejects_guc2vf_too_short
[18:01:59] [PASSED] vf_rejects_guc2vf_too_long
[18:01:59] [PASSED] vf_rejects_guc2vf_no_payload
[18:01:59] ==================== [PASSED] vf_relay =====================
[18:01:59] ===================== lmtt (1 subtest) =====================
[18:01:59] ======================== test_ops =========================
[18:01:59] [PASSED] 2-level
[18:01:59] [PASSED] multi-level
[18:01:59] ==================== [PASSED] test_ops =====================
[18:01:59] ====================== [PASSED] lmtt =======================
[18:01:59] ================= pf_service (11 subtests) =================
[18:01:59] [PASSED] pf_negotiate_any
[18:01:59] [PASSED] pf_negotiate_base_match
[18:01:59] [PASSED] pf_negotiate_base_newer
[18:01:59] [PASSED] pf_negotiate_base_next
[18:01:59] [SKIPPED] pf_negotiate_base_older
[18:01:59] [PASSED] pf_negotiate_base_prev
[18:01:59] [PASSED] pf_negotiate_latest_match
[18:01:59] [PASSED] pf_negotiate_latest_newer
[18:01:59] [PASSED] pf_negotiate_latest_next
[18:01:59] [SKIPPED] pf_negotiate_latest_older
[18:01:59] [SKIPPED] pf_negotiate_latest_prev
[18:01:59] =================== [PASSED] pf_service ====================
[18:01:59] ================= xe_guc_g2g (2 subtests) ==================
[18:01:59] ============== xe_live_guc_g2g_kunit_default ==============
[18:01:59] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[18:01:59] ============== xe_live_guc_g2g_kunit_allmem ===============
[18:01:59] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[18:01:59] =================== [SKIPPED] xe_guc_g2g ===================
[18:01:59] =================== xe_mocs (2 subtests) ===================
[18:01:59] ================ xe_live_mocs_kernel_kunit ================
[18:01:59] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:01:59] ================ xe_live_mocs_reset_kunit =================
[18:01:59] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:01:59] ==================== [SKIPPED] xe_mocs =====================
[18:01:59] ================= xe_migrate (2 subtests) ==================
[18:01:59] ================= xe_migrate_sanity_kunit =================
[18:01:59] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:01:59] ================== xe_validate_ccs_kunit ==================
[18:01:59] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:01:59] =================== [SKIPPED] xe_migrate ===================
[18:01:59] ================== xe_dma_buf (1 subtest) ==================
[18:01:59] ==================== xe_dma_buf_kunit =====================
[18:01:59] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:01:59] =================== [SKIPPED] xe_dma_buf ===================
[18:01:59] ================= xe_bo_shrink (1 subtest) =================
[18:01:59] =================== xe_bo_shrink_kunit ====================
[18:01:59] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:01:59] ================== [SKIPPED] xe_bo_shrink ==================
[18:01:59] ==================== xe_bo (2 subtests) ====================
[18:01:59] ================== xe_ccs_migrate_kunit ===================
[18:01:59] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:01:59] ==================== xe_bo_evict_kunit ====================
[18:01:59] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:01:59] ===================== [SKIPPED] xe_bo ======================
[18:01:59] ==================== args (11 subtests) ====================
[18:01:59] [PASSED] count_args_test
[18:01:59] [PASSED] call_args_example
[18:01:59] [PASSED] call_args_test
[18:01:59] [PASSED] drop_first_arg_example
[18:01:59] [PASSED] drop_first_arg_test
[18:01:59] [PASSED] first_arg_example
[18:01:59] [PASSED] first_arg_test
[18:01:59] [PASSED] last_arg_example
[18:01:59] [PASSED] last_arg_test
[18:01:59] [PASSED] pick_arg_example
[18:01:59] [PASSED] sep_comma_example
[18:01:59] ====================== [PASSED] args =======================
[18:01:59] =================== xe_pci (3 subtests) ====================
[18:01:59] ==================== check_graphics_ip ====================
[18:01:59] [PASSED] 12.00 Xe_LP
[18:01:59] [PASSED] 12.10 Xe_LP+
[18:01:59] [PASSED] 12.55 Xe_HPG
[18:01:59] [PASSED] 12.60 Xe_HPC
[18:01:59] [PASSED] 12.70 Xe_LPG
[18:01:59] [PASSED] 12.71 Xe_LPG
[18:01:59] [PASSED] 12.74 Xe_LPG+
[18:01:59] [PASSED] 20.01 Xe2_HPG
[18:01:59] [PASSED] 20.02 Xe2_HPG
[18:01:59] [PASSED] 20.04 Xe2_LPG
[18:01:59] [PASSED] 30.00 Xe3_LPG
[18:01:59] [PASSED] 30.01 Xe3_LPG
[18:01:59] [PASSED] 30.03 Xe3_LPG
[18:01:59] [PASSED] 30.04 Xe3_LPG
[18:01:59] [PASSED] 30.05 Xe3_LPG
[18:01:59] [PASSED] 35.11 Xe3p_XPC
[18:01:59] ================ [PASSED] check_graphics_ip ================
[18:01:59] ===================== check_media_ip ======================
[18:01:59] [PASSED] 12.00 Xe_M
[18:01:59] [PASSED] 12.55 Xe_HPM
[18:01:59] [PASSED] 13.00 Xe_LPM+
[18:01:59] [PASSED] 13.01 Xe2_HPM
[18:01:59] [PASSED] 20.00 Xe2_LPM
[18:01:59] [PASSED] 30.00 Xe3_LPM
[18:01:59] [PASSED] 30.02 Xe3_LPM
[18:01:59] [PASSED] 35.00 Xe3p_LPM
[18:01:59] [PASSED] 35.03 Xe3p_HPM
[18:01:59] ================= [PASSED] check_media_ip ==================
[18:01:59] =================== check_platform_desc ===================
[18:01:59] [PASSED] 0x9A60 (TIGERLAKE)
[18:01:59] [PASSED] 0x9A68 (TIGERLAKE)
[18:01:59] [PASSED] 0x9A70 (TIGERLAKE)
[18:01:59] [PASSED] 0x9A40 (TIGERLAKE)
[18:01:59] [PASSED] 0x9A49 (TIGERLAKE)
[18:01:59] [PASSED] 0x9A59 (TIGERLAKE)
[18:01:59] [PASSED] 0x9A78 (TIGERLAKE)
[18:01:59] [PASSED] 0x9AC0 (TIGERLAKE)
[18:01:59] [PASSED] 0x9AC9 (TIGERLAKE)
[18:01:59] [PASSED] 0x9AD9 (TIGERLAKE)
[18:01:59] [PASSED] 0x9AF8 (TIGERLAKE)
[18:01:59] [PASSED] 0x4C80 (ROCKETLAKE)
[18:01:59] [PASSED] 0x4C8A (ROCKETLAKE)
[18:01:59] [PASSED] 0x4C8B (ROCKETLAKE)
[18:01:59] [PASSED] 0x4C8C (ROCKETLAKE)
[18:01:59] [PASSED] 0x4C90 (ROCKETLAKE)
[18:01:59] [PASSED] 0x4C9A (ROCKETLAKE)
[18:01:59] [PASSED] 0x4680 (ALDERLAKE_S)
[18:01:59] [PASSED] 0x4682 (ALDERLAKE_S)
[18:01:59] [PASSED] 0x4688 (ALDERLAKE_S)
[18:01:59] [PASSED] 0x468A (ALDERLAKE_S)
[18:01:59] [PASSED] 0x468B (ALDERLAKE_S)
[18:01:59] [PASSED] 0x4690 (ALDERLAKE_S)
[18:01:59] [PASSED] 0x4692 (ALDERLAKE_S)
[18:01:59] [PASSED] 0x4693 (ALDERLAKE_S)
[18:01:59] [PASSED] 0x46A0 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46A1 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46A2 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46A3 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46A6 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46A8 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46AA (ALDERLAKE_P)
[18:01:59] [PASSED] 0x462A (ALDERLAKE_P)
[18:01:59] [PASSED] 0x4626 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x4628 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46B0 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46B1 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46B2 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46B3 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46C0 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46C1 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46C2 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46C3 (ALDERLAKE_P)
[18:01:59] [PASSED] 0x46D0 (ALDERLAKE_N)
[18:01:59] [PASSED] 0x46D1 (ALDERLAKE_N)
[18:01:59] [PASSED] 0x46D2 (ALDERLAKE_N)
[18:01:59] [PASSED] 0x46D3 (ALDERLAKE_N)
[18:01:59] [PASSED] 0x46D4 (ALDERLAKE_N)
[18:01:59] [PASSED] 0xA721 (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA7A1 (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA7A9 (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA7AC (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA7AD (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA720 (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA7A0 (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA7A8 (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA7AA (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA7AB (ALDERLAKE_P)
[18:01:59] [PASSED] 0xA780 (ALDERLAKE_S)
[18:01:59] [PASSED] 0xA781 (ALDERLAKE_S)
[18:01:59] [PASSED] 0xA782 (ALDERLAKE_S)
[18:01:59] [PASSED] 0xA783 (ALDERLAKE_S)
[18:01:59] [PASSED] 0xA788 (ALDERLAKE_S)
[18:01:59] [PASSED] 0xA789 (ALDERLAKE_S)
[18:01:59] [PASSED] 0xA78A (ALDERLAKE_S)
[18:01:59] [PASSED] 0xA78B (ALDERLAKE_S)
[18:01:59] [PASSED] 0x4905 (DG1)
[18:01:59] [PASSED] 0x4906 (DG1)
[18:01:59] [PASSED] 0x4907 (DG1)
[18:01:59] [PASSED] 0x4908 (DG1)
[18:01:59] [PASSED] 0x4909 (DG1)
[18:01:59] [PASSED] 0x56C0 (DG2)
[18:01:59] [PASSED] 0x56C2 (DG2)
[18:01:59] [PASSED] 0x56C1 (DG2)
[18:01:59] [PASSED] 0x7D51 (METEORLAKE)
[18:01:59] [PASSED] 0x7DD1 (METEORLAKE)
[18:01:59] [PASSED] 0x7D41 (METEORLAKE)
[18:01:59] [PASSED] 0x7D67 (METEORLAKE)
[18:01:59] [PASSED] 0xB640 (METEORLAKE)
[18:01:59] [PASSED] 0x56A0 (DG2)
[18:01:59] [PASSED] 0x56A1 (DG2)
[18:01:59] [PASSED] 0x56A2 (DG2)
[18:01:59] [PASSED] 0x56BE (DG2)
[18:01:59] [PASSED] 0x56BF (DG2)
[18:01:59] [PASSED] 0x5690 (DG2)
[18:01:59] [PASSED] 0x5691 (DG2)
[18:01:59] [PASSED] 0x5692 (DG2)
[18:01:59] [PASSED] 0x56A5 (DG2)
[18:01:59] [PASSED] 0x56A6 (DG2)
[18:01:59] [PASSED] 0x56B0 (DG2)
[18:01:59] [PASSED] 0x56B1 (DG2)
[18:01:59] [PASSED] 0x56BA (DG2)
[18:01:59] [PASSED] 0x56BB (DG2)
[18:01:59] [PASSED] 0x56BC (DG2)
[18:01:59] [PASSED] 0x56BD (DG2)
[18:01:59] [PASSED] 0x5693 (DG2)
[18:01:59] [PASSED] 0x5694 (DG2)
[18:01:59] [PASSED] 0x5695 (DG2)
[18:01:59] [PASSED] 0x56A3 (DG2)
[18:01:59] [PASSED] 0x56A4 (DG2)
[18:01:59] [PASSED] 0x56B2 (DG2)
[18:01:59] [PASSED] 0x56B3 (DG2)
[18:01:59] [PASSED] 0x5696 (DG2)
[18:01:59] [PASSED] 0x5697 (DG2)
[18:01:59] [PASSED] 0xB69 (PVC)
[18:01:59] [PASSED] 0xB6E (PVC)
[18:01:59] [PASSED] 0xBD4 (PVC)
[18:01:59] [PASSED] 0xBD5 (PVC)
[18:01:59] [PASSED] 0xBD6 (PVC)
[18:01:59] [PASSED] 0xBD7 (PVC)
[18:01:59] [PASSED] 0xBD8 (PVC)
[18:01:59] [PASSED] 0xBD9 (PVC)
[18:01:59] [PASSED] 0xBDA (PVC)
[18:01:59] [PASSED] 0xBDB (PVC)
[18:01:59] [PASSED] 0xBE0 (PVC)
[18:01:59] [PASSED] 0xBE1 (PVC)
[18:01:59] [PASSED] 0xBE5 (PVC)
[18:01:59] [PASSED] 0x7D40 (METEORLAKE)
[18:01:59] [PASSED] 0x7D45 (METEORLAKE)
[18:01:59] [PASSED] 0x7D55 (METEORLAKE)
[18:01:59] [PASSED] 0x7D60 (METEORLAKE)
[18:01:59] [PASSED] 0x7DD5 (METEORLAKE)
[18:01:59] [PASSED] 0x6420 (LUNARLAKE)
[18:01:59] [PASSED] 0x64A0 (LUNARLAKE)
[18:01:59] [PASSED] 0x64B0 (LUNARLAKE)
[18:01:59] [PASSED] 0xE202 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE209 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE20B (BATTLEMAGE)
[18:01:59] [PASSED] 0xE20C (BATTLEMAGE)
[18:01:59] [PASSED] 0xE20D (BATTLEMAGE)
[18:01:59] [PASSED] 0xE210 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE211 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE212 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE216 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE220 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE221 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE222 (BATTLEMAGE)
[18:01:59] [PASSED] 0xE223 (BATTLEMAGE)
[18:01:59] [PASSED] 0xB080 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB081 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB082 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB083 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB084 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB085 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB086 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB087 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB08F (PANTHERLAKE)
[18:01:59] [PASSED] 0xB090 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB0A0 (PANTHERLAKE)
[18:01:59] [PASSED] 0xB0B0 (PANTHERLAKE)
[18:01:59] [PASSED] 0xFD80 (PANTHERLAKE)
[18:01:59] [PASSED] 0xFD81 (PANTHERLAKE)
[18:01:59] [PASSED] 0xD740 (NOVALAKE_S)
[18:01:59] [PASSED] 0xD741 (NOVALAKE_S)
[18:01:59] [PASSED] 0xD742 (NOVALAKE_S)
[18:01:59] [PASSED] 0xD743 (NOVALAKE_S)
[18:01:59] [PASSED] 0xD744 (NOVALAKE_S)
[18:01:59] [PASSED] 0xD745 (NOVALAKE_S)
[18:01:59] =============== [PASSED] check_platform_desc ===============
[18:01:59] ===================== [PASSED] xe_pci ======================
[18:01:59] =================== xe_rtp (2 subtests) ====================
[18:01:59] =============== xe_rtp_process_to_sr_tests ================
[18:01:59] [PASSED] coalesce-same-reg
[18:01:59] [PASSED] no-match-no-add
[18:01:59] [PASSED] match-or
[18:01:59] [PASSED] match-or-xfail
[18:01:59] [PASSED] no-match-no-add-multiple-rules
[18:01:59] [PASSED] two-regs-two-entries
[18:01:59] [PASSED] clr-one-set-other
[18:01:59] [PASSED] set-field
[18:01:59] [PASSED] conflict-duplicate
[18:01:59] [PASSED] conflict-not-disjoint
[18:01:59] [PASSED] conflict-reg-type
[18:01:59] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:01:59] ================== xe_rtp_process_tests ===================
[18:01:59] [PASSED] active1
[18:01:59] [PASSED] active2
[18:01:59] [PASSED] active-inactive
[18:01:59] [PASSED] inactive-active
[18:01:59] [PASSED] inactive-1st_or_active-inactive
[18:01:59] [PASSED] inactive-2nd_or_active-inactive
[18:01:59] [PASSED] inactive-last_or_active-inactive
[18:01:59] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[18:01:59] ============== [PASSED] xe_rtp_process_tests ===============
[18:01:59] ===================== [PASSED] xe_rtp ======================
[18:01:59] ==================== xe_wa (1 subtest) =====================
[18:01:59] ======================== xe_wa_gt =========================
[18:01:59] [PASSED] TIGERLAKE B0
[18:01:59] [PASSED] DG1 A0
[18:01:59] [PASSED] DG1 B0
[18:01:59] [PASSED] ALDERLAKE_S A0
[18:01:59] [PASSED] ALDERLAKE_S B0
[18:01:59] [PASSED] ALDERLAKE_S C0
[18:01:59] [PASSED] ALDERLAKE_S D0
[18:01:59] [PASSED] ALDERLAKE_P A0
[18:01:59] [PASSED] ALDERLAKE_P B0
[18:01:59] [PASSED] ALDERLAKE_P C0
[18:01:59] [PASSED] ALDERLAKE_S RPLS D0
[18:01:59] [PASSED] ALDERLAKE_P RPLU E0
[18:01:59] [PASSED] DG2 G10 C0
[18:01:59] [PASSED] DG2 G11 B1
[18:01:59] [PASSED] DG2 G12 A1
[18:01:59] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:01:59] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:01:59] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[18:01:59] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[18:01:59] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[18:01:59] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[18:01:59] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[18:01:59] ==================== [PASSED] xe_wa_gt =====================
[18:01:59] ====================== [PASSED] xe_wa ======================
[18:01:59] ============================================================
[18:01:59] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[18:01:59] Elapsed time: 34.904s total, 4.151s configuring, 30.386s building, 0.337s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:02:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:02: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
[18:02:26] Starting KUnit Kernel (1/1)...
[18:02:26] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:02:26] ============ drm_test_pick_cmdline (2 subtests) ============
[18:02:26] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[18:02:26] =============== drm_test_pick_cmdline_named ===============
[18:02:26] [PASSED] NTSC
[18:02:26] [PASSED] NTSC-J
[18:02:26] [PASSED] PAL
[18:02:26] [PASSED] PAL-M
[18:02:26] =========== [PASSED] drm_test_pick_cmdline_named ===========
[18:02:26] ============== [PASSED] drm_test_pick_cmdline ==============
[18:02:26] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[18:02:26] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[18:02:26] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[18:02:26] =========== drm_validate_clone_mode (2 subtests) ===========
[18:02:26] ============== drm_test_check_in_clone_mode ===============
[18:02:26] [PASSED] in_clone_mode
[18:02:26] [PASSED] not_in_clone_mode
[18:02:26] ========== [PASSED] drm_test_check_in_clone_mode ===========
[18:02:26] =============== drm_test_check_valid_clones ===============
[18:02:26] [PASSED] not_in_clone_mode
[18:02:26] [PASSED] valid_clone
[18:02:26] [PASSED] invalid_clone
[18:02:26] =========== [PASSED] drm_test_check_valid_clones ===========
[18:02:26] ============= [PASSED] drm_validate_clone_mode =============
[18:02:26] ============= drm_validate_modeset (1 subtest) =============
[18:02:26] [PASSED] drm_test_check_connector_changed_modeset
[18:02:26] ============== [PASSED] drm_validate_modeset ===============
[18:02:26] ====== drm_test_bridge_get_current_state (2 subtests) ======
[18:02:26] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[18:02:26] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[18:02:26] ======== [PASSED] drm_test_bridge_get_current_state ========
[18:02:26] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[18:02:26] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[18:02:26] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[18:02:26] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[18:02:26] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[18:02:26] ============== drm_bridge_alloc (2 subtests) ===============
[18:02:26] [PASSED] drm_test_drm_bridge_alloc_basic
[18:02:26] [PASSED] drm_test_drm_bridge_alloc_get_put
[18:02:26] ================ [PASSED] drm_bridge_alloc =================
[18:02:26] ================== drm_buddy (8 subtests) ==================
[18:02:26] [PASSED] drm_test_buddy_alloc_limit
[18:02:26] [PASSED] drm_test_buddy_alloc_optimistic
[18:02:26] [PASSED] drm_test_buddy_alloc_pessimistic
[18:02:26] [PASSED] drm_test_buddy_alloc_pathological
[18:02:26] [PASSED] drm_test_buddy_alloc_contiguous
[18:02:26] [PASSED] drm_test_buddy_alloc_clear
[18:02:26] [PASSED] drm_test_buddy_alloc_range_bias
[18:02:26] [PASSED] drm_test_buddy_fragmentation_performance
[18:02:26] ==================== [PASSED] drm_buddy ====================
[18:02:26] ============= drm_cmdline_parser (40 subtests) =============
[18:02:26] [PASSED] drm_test_cmdline_force_d_only
[18:02:26] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:02:26] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:02:26] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:02:26] [PASSED] drm_test_cmdline_force_e_only
[18:02:26] [PASSED] drm_test_cmdline_res
[18:02:26] [PASSED] drm_test_cmdline_res_vesa
[18:02:26] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:02:26] [PASSED] drm_test_cmdline_res_rblank
[18:02:26] [PASSED] drm_test_cmdline_res_bpp
[18:02:26] [PASSED] drm_test_cmdline_res_refresh
[18:02:26] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:02:26] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:02:26] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:02:26] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:02:26] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:02:26] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:02:26] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:02:26] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:02:26] [PASSED] drm_test_cmdline_res_margins_force_on
[18:02:26] [PASSED] drm_test_cmdline_res_vesa_margins
[18:02:26] [PASSED] drm_test_cmdline_name
[18:02:26] [PASSED] drm_test_cmdline_name_bpp
[18:02:26] [PASSED] drm_test_cmdline_name_option
[18:02:26] [PASSED] drm_test_cmdline_name_bpp_option
[18:02:26] [PASSED] drm_test_cmdline_rotate_0
[18:02:26] [PASSED] drm_test_cmdline_rotate_90
[18:02:26] [PASSED] drm_test_cmdline_rotate_180
[18:02:26] [PASSED] drm_test_cmdline_rotate_270
[18:02:26] [PASSED] drm_test_cmdline_hmirror
[18:02:26] [PASSED] drm_test_cmdline_vmirror
[18:02:26] [PASSED] drm_test_cmdline_margin_options
[18:02:26] [PASSED] drm_test_cmdline_multiple_options
[18:02:26] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:02:26] [PASSED] drm_test_cmdline_extra_and_option
[18:02:26] [PASSED] drm_test_cmdline_freestanding_options
[18:02:26] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:02:26] [PASSED] drm_test_cmdline_panel_orientation
[18:02:26] ================ drm_test_cmdline_invalid =================
[18:02:26] [PASSED] margin_only
[18:02:26] [PASSED] interlace_only
[18:02:26] [PASSED] res_missing_x
[18:02:26] [PASSED] res_missing_y
[18:02:26] [PASSED] res_bad_y
[18:02:26] [PASSED] res_missing_y_bpp
[18:02:26] [PASSED] res_bad_bpp
[18:02:26] [PASSED] res_bad_refresh
[18:02:26] [PASSED] res_bpp_refresh_force_on_off
[18:02:26] [PASSED] res_invalid_mode
[18:02:26] [PASSED] res_bpp_wrong_place_mode
[18:02:26] [PASSED] name_bpp_refresh
[18:02:26] [PASSED] name_refresh
[18:02:26] [PASSED] name_refresh_wrong_mode
[18:02:26] [PASSED] name_refresh_invalid_mode
[18:02:26] [PASSED] rotate_multiple
[18:02:26] [PASSED] rotate_invalid_val
[18:02:26] [PASSED] rotate_truncated
[18:02:26] [PASSED] invalid_option
[18:02:26] [PASSED] invalid_tv_option
[18:02:26] [PASSED] truncated_tv_option
[18:02:26] ============ [PASSED] drm_test_cmdline_invalid =============
[18:02:26] =============== drm_test_cmdline_tv_options ===============
[18:02:26] [PASSED] NTSC
[18:02:26] [PASSED] NTSC_443
[18:02:26] [PASSED] NTSC_J
[18:02:26] [PASSED] PAL
[18:02:26] [PASSED] PAL_M
[18:02:26] [PASSED] PAL_N
[18:02:26] [PASSED] SECAM
[18:02:26] [PASSED] MONO_525
[18:02:26] [PASSED] MONO_625
[18:02:26] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:02:26] =============== [PASSED] drm_cmdline_parser ================
[18:02:26] ========== drmm_connector_hdmi_init (20 subtests) ==========
[18:02:26] [PASSED] drm_test_connector_hdmi_init_valid
[18:02:26] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:02:26] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:02:26] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:02:26] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:02:26] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:02:26] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:02:26] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:02:26] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:02:26] [PASSED] supported_formats=0x9 yuv420_allowed=1
[18:02:26] [PASSED] supported_formats=0x9 yuv420_allowed=0
[18:02:26] [PASSED] supported_formats=0x3 yuv420_allowed=1
[18:02:26] [PASSED] supported_formats=0x3 yuv420_allowed=0
[18:02:26] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:02:26] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:02:26] [PASSED] drm_test_connector_hdmi_init_null_product
[18:02:26] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:02:26] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:02:26] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:02:26] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:02:26] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:02:26] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:02:26] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:02:26] ========= drm_test_connector_hdmi_init_type_valid =========
[18:02:26] [PASSED] HDMI-A
[18:02:26] [PASSED] HDMI-B
[18:02:26] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:02:26] ======== drm_test_connector_hdmi_init_type_invalid ========
[18:02:26] [PASSED] Unknown
[18:02:26] [PASSED] VGA
[18:02:26] [PASSED] DVI-I
[18:02:26] [PASSED] DVI-D
[18:02:26] [PASSED] DVI-A
[18:02:26] [PASSED] Composite
[18:02:26] [PASSED] SVIDEO
[18:02:26] [PASSED] LVDS
[18:02:26] [PASSED] Component
[18:02:26] [PASSED] DIN
[18:02:26] [PASSED] DP
[18:02:26] [PASSED] TV
[18:02:26] [PASSED] eDP
[18:02:26] [PASSED] Virtual
[18:02:26] [PASSED] DSI
[18:02:26] [PASSED] DPI
[18:02:26] [PASSED] Writeback
[18:02:26] [PASSED] SPI
[18:02:26] [PASSED] USB
[18:02:26] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:02:26] ============ [PASSED] drmm_connector_hdmi_init =============
[18:02:26] ============= drmm_connector_init (3 subtests) =============
[18:02:26] [PASSED] drm_test_drmm_connector_init
[18:02:26] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:02:26] ========= drm_test_drmm_connector_init_type_valid =========
[18:02:26] [PASSED] Unknown
[18:02:26] [PASSED] VGA
[18:02:26] [PASSED] DVI-I
[18:02:26] [PASSED] DVI-D
[18:02:26] [PASSED] DVI-A
[18:02:26] [PASSED] Composite
[18:02:26] [PASSED] SVIDEO
[18:02:26] [PASSED] LVDS
[18:02:26] [PASSED] Component
[18:02:26] [PASSED] DIN
[18:02:26] [PASSED] DP
[18:02:26] [PASSED] HDMI-A
[18:02:26] [PASSED] HDMI-B
[18:02:26] [PASSED] TV
[18:02:26] [PASSED] eDP
[18:02:26] [PASSED] Virtual
[18:02:26] [PASSED] DSI
[18:02:26] [PASSED] DPI
[18:02:26] [PASSED] Writeback
[18:02:26] [PASSED] SPI
[18:02:26] [PASSED] USB
[18:02:26] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:02:26] =============== [PASSED] drmm_connector_init ===============
[18:02:26] ========= drm_connector_dynamic_init (6 subtests) ==========
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_init
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_init_properties
[18:02:26] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[18:02:26] [PASSED] Unknown
[18:02:26] [PASSED] VGA
[18:02:26] [PASSED] DVI-I
[18:02:26] [PASSED] DVI-D
[18:02:26] [PASSED] DVI-A
[18:02:26] [PASSED] Composite
[18:02:26] [PASSED] SVIDEO
[18:02:26] [PASSED] LVDS
[18:02:26] [PASSED] Component
[18:02:26] [PASSED] DIN
[18:02:26] [PASSED] DP
[18:02:26] [PASSED] HDMI-A
[18:02:26] [PASSED] HDMI-B
[18:02:26] [PASSED] TV
[18:02:26] [PASSED] eDP
[18:02:26] [PASSED] Virtual
[18:02:26] [PASSED] DSI
[18:02:26] [PASSED] DPI
[18:02:26] [PASSED] Writeback
[18:02:26] [PASSED] SPI
[18:02:26] [PASSED] USB
[18:02:26] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[18:02:26] ======== drm_test_drm_connector_dynamic_init_name =========
[18:02:26] [PASSED] Unknown
[18:02:26] [PASSED] VGA
[18:02:26] [PASSED] DVI-I
[18:02:26] [PASSED] DVI-D
[18:02:26] [PASSED] DVI-A
[18:02:26] [PASSED] Composite
[18:02:26] [PASSED] SVIDEO
[18:02:26] [PASSED] LVDS
[18:02:26] [PASSED] Component
[18:02:26] [PASSED] DIN
[18:02:26] [PASSED] DP
[18:02:26] [PASSED] HDMI-A
[18:02:26] [PASSED] HDMI-B
[18:02:26] [PASSED] TV
[18:02:26] [PASSED] eDP
[18:02:26] [PASSED] Virtual
[18:02:26] [PASSED] DSI
[18:02:26] [PASSED] DPI
[18:02:26] [PASSED] Writeback
[18:02:26] [PASSED] SPI
[18:02:26] [PASSED] USB
[18:02:26] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[18:02:26] =========== [PASSED] drm_connector_dynamic_init ============
[18:02:26] ==== drm_connector_dynamic_register_early (4 subtests) =====
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[18:02:26] ====== [PASSED] drm_connector_dynamic_register_early =======
[18:02:26] ======= drm_connector_dynamic_register (7 subtests) ========
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[18:02:26] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[18:02:26] ========= [PASSED] drm_connector_dynamic_register ==========
[18:02:26] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:02:26] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:02:26] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:02:26] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:02:26] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:02:26] ========== drm_test_get_tv_mode_from_name_valid ===========
[18:02:26] [PASSED] NTSC
[18:02:26] [PASSED] NTSC-443
[18:02:26] [PASSED] NTSC-J
[18:02:26] [PASSED] PAL
[18:02:26] [PASSED] PAL-M
[18:02:26] [PASSED] PAL-N
[18:02:26] [PASSED] SECAM
[18:02:26] [PASSED] Mono
[18:02:26] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:02:26] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:02:26] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:02:26] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:02:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:02:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:02:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:02:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:02:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:02:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:02:26] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[18:02:26] [PASSED] VIC 96
[18:02:26] [PASSED] VIC 97
[18:02:26] [PASSED] VIC 101
[18:02:26] [PASSED] VIC 102
[18:02:26] [PASSED] VIC 106
[18:02:26] [PASSED] VIC 107
[18:02:26] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:02:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:02:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:02:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:02:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:02:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:02:26] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:02:26] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:02:26] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[18:02:26] [PASSED] Automatic
[18:02:26] [PASSED] Full
[18:02:26] [PASSED] Limited 16:235
[18:02:26] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:02:26] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:02:26] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:02:26] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:02:26] === drm_test_drm_hdmi_connector_get_output_format_name ====
[18:02:26] [PASSED] RGB
[18:02:26] [PASSED] YUV 4:2:0
[18:02:26] [PASSED] YUV 4:2:2
[18:02:26] [PASSED] YUV 4:4:4
[18:02:26] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:02:26] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:02:26] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:02:26] ============= drm_damage_helper (21 subtests) ==============
[18:02:26] [PASSED] drm_test_damage_iter_no_damage
[18:02:26] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:02:26] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:02:26] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:02:26] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:02:26] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:02:26] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:02:26] [PASSED] drm_test_damage_iter_simple_damage
[18:02:26] [PASSED] drm_test_damage_iter_single_damage
[18:02:26] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:02:26] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:02:26] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:02:26] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:02:26] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:02:26] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:02:26] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:02:26] [PASSED] drm_test_damage_iter_damage
[18:02:26] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:02:26] [PASSED] drm_test_damage_iter_damage_one_outside
[18:02:26] [PASSED] drm_test_damage_iter_damage_src_moved
[18:02:26] [PASSED] drm_test_damage_iter_damage_not_visible
[18:02:26] ================ [PASSED] drm_damage_helper ================
[18:02:26] ============== drm_dp_mst_helper (3 subtests) ==============
[18:02:26] ============== drm_test_dp_mst_calc_pbn_mode ==============
[18:02:26] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:02:26] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:02:26] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:02:26] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:02:26] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:02:26] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:02:26] ============== drm_test_dp_mst_calc_pbn_div ===============
[18:02:26] [PASSED] Link rate 2000000 lane count 4
[18:02:26] [PASSED] Link rate 2000000 lane count 2
[18:02:26] [PASSED] Link rate 2000000 lane count 1
[18:02:26] [PASSED] Link rate 1350000 lane count 4
[18:02:26] [PASSED] Link rate 1350000 lane count 2
[18:02:26] [PASSED] Link rate 1350000 lane count 1
[18:02:26] [PASSED] Link rate 1000000 lane count 4
[18:02:26] [PASSED] Link rate 1000000 lane count 2
[18:02:26] [PASSED] Link rate 1000000 lane count 1
[18:02:26] [PASSED] Link rate 810000 lane count 4
[18:02:26] [PASSED] Link rate 810000 lane count 2
[18:02:26] [PASSED] Link rate 810000 lane count 1
[18:02:26] [PASSED] Link rate 540000 lane count 4
[18:02:26] [PASSED] Link rate 540000 lane count 2
[18:02:26] [PASSED] Link rate 540000 lane count 1
[18:02:26] [PASSED] Link rate 270000 lane count 4
[18:02:26] [PASSED] Link rate 270000 lane count 2
[18:02:26] [PASSED] Link rate 270000 lane count 1
[18:02:26] [PASSED] Link rate 162000 lane count 4
[18:02:26] [PASSED] Link rate 162000 lane count 2
[18:02:26] [PASSED] Link rate 162000 lane count 1
[18:02:26] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:02:26] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[18:02:26] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:02:26] [PASSED] DP_POWER_UP_PHY with port number
[18:02:26] [PASSED] DP_POWER_DOWN_PHY with port number
[18:02:26] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:02:26] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:02:26] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:02:26] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:02:26] [PASSED] DP_QUERY_PAYLOAD with port number
[18:02:26] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:02:26] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:02:26] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:02:26] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:02:26] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:02:26] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:02:26] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:02:26] [PASSED] DP_REMOTE_I2C_READ with port number
[18:02:26] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:02:26] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:02:26] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:02:26] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:02:26] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:02:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:02:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:02:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:02:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:02:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:02:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:02:26] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:02:26] ================ [PASSED] drm_dp_mst_helper ================
[18:02:26] ================== drm_exec (7 subtests) ===================
[18:02:26] [PASSED] sanitycheck
[18:02:26] [PASSED] test_lock
[18:02:26] [PASSED] test_lock_unlock
[18:02:26] [PASSED] test_duplicates
[18:02:26] [PASSED] test_prepare
[18:02:26] [PASSED] test_prepare_array
[18:02:26] [PASSED] test_multiple_loops
[18:02:26] ==================== [PASSED] drm_exec =====================
[18:02:26] =========== drm_format_helper_test (17 subtests) ===========
[18:02:26] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:02:26] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:02:26] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:02:26] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:02:26] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:02:26] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:02:26] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:02:26] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[18:02:26] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:02:26] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:02:26] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:02:26] ============== drm_test_fb_xrgb8888_to_mono ===============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:02:26] ==================== drm_test_fb_swab =====================
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ================ [PASSED] drm_test_fb_swab =================
[18:02:26] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:02:26] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[18:02:26] [PASSED] single_pixel_source_buffer
[18:02:26] [PASSED] single_pixel_clip_rectangle
[18:02:26] [PASSED] well_known_colors
[18:02:26] [PASSED] destination_pitch
[18:02:26] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:02:26] ================= drm_test_fb_clip_offset =================
[18:02:26] [PASSED] pass through
[18:02:26] [PASSED] horizontal offset
[18:02:26] [PASSED] vertical offset
[18:02:26] [PASSED] horizontal and vertical offset
[18:02:26] [PASSED] horizontal offset (custom pitch)
[18:02:26] [PASSED] vertical offset (custom pitch)
[18:02:26] [PASSED] horizontal and vertical offset (custom pitch)
[18:02:26] ============= [PASSED] drm_test_fb_clip_offset =============
[18:02:26] =================== drm_test_fb_memcpy ====================
[18:02:26] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:02:26] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:02:26] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:02:26] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:02:26] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:02:26] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:02:26] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:02:26] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:02:26] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:02:26] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:02:26] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:02:26] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:02:26] =============== [PASSED] drm_test_fb_memcpy ================
[18:02:26] ============= [PASSED] drm_format_helper_test ==============
[18:02:26] ================= drm_format (18 subtests) =================
[18:02:26] [PASSED] drm_test_format_block_width_invalid
[18:02:26] [PASSED] drm_test_format_block_width_one_plane
[18:02:26] [PASSED] drm_test_format_block_width_two_plane
[18:02:26] [PASSED] drm_test_format_block_width_three_plane
[18:02:26] [PASSED] drm_test_format_block_width_tiled
[18:02:26] [PASSED] drm_test_format_block_height_invalid
[18:02:26] [PASSED] drm_test_format_block_height_one_plane
[18:02:26] [PASSED] drm_test_format_block_height_two_plane
[18:02:26] [PASSED] drm_test_format_block_height_three_plane
[18:02:26] [PASSED] drm_test_format_block_height_tiled
[18:02:26] [PASSED] drm_test_format_min_pitch_invalid
[18:02:26] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:02:26] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:02:26] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:02:26] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:02:26] [PASSED] drm_test_format_min_pitch_two_plane
[18:02:26] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:02:26] [PASSED] drm_test_format_min_pitch_tiled
[18:02:26] =================== [PASSED] drm_format ====================
[18:02:26] ============== drm_framebuffer (10 subtests) ===============
[18:02:26] ========== drm_test_framebuffer_check_src_coords ==========
[18:02:26] [PASSED] Success: source fits into fb
[18:02:26] [PASSED] Fail: overflowing fb with x-axis coordinate
[18:02:26] [PASSED] Fail: overflowing fb with y-axis coordinate
[18:02:26] [PASSED] Fail: overflowing fb with source width
[18:02:26] [PASSED] Fail: overflowing fb with source height
[18:02:26] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[18:02:26] [PASSED] drm_test_framebuffer_cleanup
[18:02:26] =============== drm_test_framebuffer_create ===============
[18:02:26] [PASSED] ABGR8888 normal sizes
[18:02:26] [PASSED] ABGR8888 max sizes
[18:02:26] [PASSED] ABGR8888 pitch greater than min required
[18:02:26] [PASSED] ABGR8888 pitch less than min required
[18:02:26] [PASSED] ABGR8888 Invalid width
[18:02:26] [PASSED] ABGR8888 Invalid buffer handle
[18:02:26] [PASSED] No pixel format
[18:02:26] [PASSED] ABGR8888 Width 0
[18:02:26] [PASSED] ABGR8888 Height 0
[18:02:26] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:02:26] [PASSED] ABGR8888 Large buffer offset
[18:02:26] [PASSED] ABGR8888 Buffer offset for inexistent plane
[18:02:26] [PASSED] ABGR8888 Invalid flag
[18:02:26] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:02:26] [PASSED] ABGR8888 Valid buffer modifier
[18:02:26] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:02:26] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:02:26] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:02:26] [PASSED] NV12 Normal sizes
[18:02:26] [PASSED] NV12 Max sizes
[18:02:26] [PASSED] NV12 Invalid pitch
[18:02:26] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:02:26] [PASSED] NV12 different modifier per-plane
[18:02:26] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:02:26] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:02:26] [PASSED] NV12 Modifier for inexistent plane
[18:02:26] [PASSED] NV12 Handle for inexistent plane
[18:02:26] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:02:26] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:02:26] [PASSED] YVU420 Normal sizes
[18:02:26] [PASSED] YVU420 Max sizes
[18:02:26] [PASSED] YVU420 Invalid pitch
[18:02:26] [PASSED] YVU420 Different pitches
[18:02:26] [PASSED] YVU420 Different buffer offsets/pitches
[18:02:26] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:02:26] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:02:26] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:02:26] [PASSED] YVU420 Valid modifier
[18:02:26] [PASSED] YVU420 Different modifiers per plane
[18:02:26] [PASSED] YVU420 Modifier for inexistent plane
[18:02:26] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[18:02:26] [PASSED] X0L2 Normal sizes
[18:02:26] [PASSED] X0L2 Max sizes
[18:02:26] [PASSED] X0L2 Invalid pitch
[18:02:26] [PASSED] X0L2 Pitch greater than minimum required
[18:02:26] [PASSED] X0L2 Handle for inexistent plane
[18:02:26] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:02:26] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:02:26] [PASSED] X0L2 Valid modifier
[18:02:26] [PASSED] X0L2 Modifier for inexistent plane
[18:02:26] =========== [PASSED] drm_test_framebuffer_create ===========
[18:02:26] [PASSED] drm_test_framebuffer_free
[18:02:26] [PASSED] drm_test_framebuffer_init
[18:02:26] [PASSED] drm_test_framebuffer_init_bad_format
[18:02:26] [PASSED] drm_test_framebuffer_init_dev_mismatch
[18:02:26] [PASSED] drm_test_framebuffer_lookup
[18:02:26] [PASSED] drm_test_framebuffer_lookup_inexistent
[18:02:26] [PASSED] drm_test_framebuffer_modifiers_not_supported
[18:02:26] ================= [PASSED] drm_framebuffer =================
[18:02:26] ================ drm_gem_shmem (8 subtests) ================
[18:02:26] [PASSED] drm_gem_shmem_test_obj_create
[18:02:26] [PASSED] drm_gem_shmem_test_obj_create_private
[18:02:26] [PASSED] drm_gem_shmem_test_pin_pages
[18:02:26] [PASSED] drm_gem_shmem_test_vmap
[18:02:26] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:02:26] [PASSED] drm_gem_shmem_test_get_sg_table
[18:02:26] [PASSED] drm_gem_shmem_test_madvise
[18:02:26] [PASSED] drm_gem_shmem_test_purge
[18:02:26] ================== [PASSED] drm_gem_shmem ==================
[18:02:26] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:02:26] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[18:02:26] [PASSED] Automatic
[18:02:26] [PASSED] Full
[18:02:26] [PASSED] Limited 16:235
[18:02:26] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:02:26] [PASSED] drm_test_check_disable_connector
[18:02:26] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:02:26] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[18:02:26] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[18:02:26] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[18:02:26] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[18:02:26] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[18:02:26] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:02:26] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:02:26] [PASSED] drm_test_check_output_bpc_dvi
[18:02:26] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:02:26] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:02:26] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:02:26] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:02:26] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:02:26] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:02:26] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:02:26] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:02:26] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:02:26] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:02:26] [PASSED] drm_test_check_broadcast_rgb_value
[18:02:26] [PASSED] drm_test_check_bpc_8_value
[18:02:26] [PASSED] drm_test_check_bpc_10_value
[18:02:26] [PASSED] drm_test_check_bpc_12_value
[18:02:26] [PASSED] drm_test_check_format_value
[18:02:26] [PASSED] drm_test_check_tmds_char_value
[18:02:26] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:02:26] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[18:02:26] [PASSED] drm_test_check_mode_valid
[18:02:26] [PASSED] drm_test_check_mode_valid_reject
[18:02:26] [PASSED] drm_test_check_mode_valid_reject_rate
[18:02:26] [PASSED] drm_test_check_mode_valid_reject_max_clock
[18:02:26] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[18:02:26] ================= drm_managed (2 subtests) =================
[18:02:26] [PASSED] drm_test_managed_release_action
[18:02:26] [PASSED] drm_test_managed_run_action
[18:02:26] =================== [PASSED] drm_managed ===================
[18:02:26] =================== drm_mm (6 subtests) ====================
[18:02:26] [PASSED] drm_test_mm_init
[18:02:26] [PASSED] drm_test_mm_debug
[18:02:26] [PASSED] drm_test_mm_align32
[18:02:26] [PASSED] drm_test_mm_align64
[18:02:26] [PASSED] drm_test_mm_lowest
[18:02:26] [PASSED] drm_test_mm_highest
[18:02:26] ===================== [PASSED] drm_mm ======================
[18:02:26] ============= drm_modes_analog_tv (5 subtests) =============
[18:02:26] [PASSED] drm_test_modes_analog_tv_mono_576i
[18:02:26] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:02:26] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:02:26] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:02:26] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:02:26] =============== [PASSED] drm_modes_analog_tv ===============
[18:02:26] ============== drm_plane_helper (2 subtests) ===============
[18:02:26] =============== drm_test_check_plane_state ================
[18:02:26] [PASSED] clipping_simple
[18:02:26] [PASSED] clipping_rotate_reflect
[18:02:26] [PASSED] positioning_simple
[18:02:26] [PASSED] upscaling
[18:02:26] [PASSED] downscaling
[18:02:26] [PASSED] rounding1
[18:02:26] [PASSED] rounding2
[18:02:26] [PASSED] rounding3
[18:02:26] [PASSED] rounding4
[18:02:26] =========== [PASSED] drm_test_check_plane_state ============
[18:02:26] =========== drm_test_check_invalid_plane_state ============
[18:02:26] [PASSED] positioning_invalid
[18:02:26] [PASSED] upscaling_invalid
[18:02:26] [PASSED] downscaling_invalid
[18:02:26] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:02:26] ================ [PASSED] drm_plane_helper =================
[18:02:26] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:02:26] ====== drm_test_connector_helper_tv_get_modes_check =======
[18:02:26] [PASSED] None
[18:02:26] [PASSED] PAL
[18:02:26] [PASSED] NTSC
[18:02:26] [PASSED] Both, NTSC Default
[18:02:26] [PASSED] Both, PAL Default
[18:02:26] [PASSED] Both, NTSC Default, with PAL on command-line
[18:02:26] [PASSED] Both, PAL Default, with NTSC on command-line
[18:02:26] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:02:26] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:02:26] ================== drm_rect (9 subtests) ===================
[18:02:26] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:02:26] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:02:26] [PASSED] drm_test_rect_clip_scaled_clipped
[18:02:26] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:02:26] ================= drm_test_rect_intersect =================
[18:02:26] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:02:26] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:02:26] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:02:26] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:02:26] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:02:26] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:02:26] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:02:26] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:02:26] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:02:26] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:02:26] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:02:26] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:02:26] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:02:26] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:02:26] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:02:26] ============= [PASSED] drm_test_rect_intersect =============
[18:02:26] ================ drm_test_rect_calc_hscale ================
[18:02:26] [PASSED] normal use
[18:02:26] [PASSED] out of max range
[18:02:26] [PASSED] out of min range
[18:02:26] [PASSED] zero dst
[18:02:26] [PASSED] negative src
[18:02:26] [PASSED] negative dst
[18:02:26] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:02:26] ================ drm_test_rect_calc_vscale ================
[18:02:26] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[18:02:26] [PASSED] out of max range
[18:02:26] [PASSED] out of min range
[18:02:26] [PASSED] zero dst
[18:02:26] [PASSED] negative src
[18:02:26] [PASSED] negative dst
[18:02:26] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:02:26] ================== drm_test_rect_rotate ===================
[18:02:26] [PASSED] reflect-x
[18:02:26] [PASSED] reflect-y
[18:02:26] [PASSED] rotate-0
[18:02:26] [PASSED] rotate-90
[18:02:26] [PASSED] rotate-180
[18:02:26] [PASSED] rotate-270
[18:02:26] ============== [PASSED] drm_test_rect_rotate ===============
[18:02:26] ================ drm_test_rect_rotate_inv =================
[18:02:26] [PASSED] reflect-x
[18:02:26] [PASSED] reflect-y
[18:02:26] [PASSED] rotate-0
[18:02:26] [PASSED] rotate-90
[18:02:26] [PASSED] rotate-180
[18:02:26] [PASSED] rotate-270
[18:02:26] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:02:26] ==================== [PASSED] drm_rect =====================
[18:02:26] ============ drm_sysfb_modeset_test (1 subtest) ============
[18:02:26] ============ drm_test_sysfb_build_fourcc_list =============
[18:02:26] [PASSED] no native formats
[18:02:26] [PASSED] XRGB8888 as native format
[18:02:26] [PASSED] remove duplicates
[18:02:26] [PASSED] convert alpha formats
[18:02:26] [PASSED] random formats
[18:02:26] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[18:02:26] ============= [PASSED] drm_sysfb_modeset_test ==============
[18:02:26] ============================================================
[18:02:26] Testing complete. Ran 622 tests: passed: 622
[18:02:26] Elapsed time: 26.981s total, 1.671s configuring, 24.888s building, 0.384s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[18:02:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:02:28] 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
[18:02:38] Starting KUnit Kernel (1/1)...
[18:02:38] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:02:38] ================= ttm_device (5 subtests) ==================
[18:02:38] [PASSED] ttm_device_init_basic
[18:02:38] [PASSED] ttm_device_init_multiple
[18:02:38] [PASSED] ttm_device_fini_basic
[18:02:38] [PASSED] ttm_device_init_no_vma_man
[18:02:38] ================== ttm_device_init_pools ==================
[18:02:38] [PASSED] No DMA allocations, no DMA32 required
[18:02:38] [PASSED] DMA allocations, DMA32 required
[18:02:38] [PASSED] No DMA allocations, DMA32 required
[18:02:38] [PASSED] DMA allocations, no DMA32 required
[18:02:38] ============== [PASSED] ttm_device_init_pools ==============
[18:02:38] =================== [PASSED] ttm_device ====================
[18:02:38] ================== ttm_pool (8 subtests) ===================
[18:02:38] ================== ttm_pool_alloc_basic ===================
[18:02:38] [PASSED] One page
[18:02:38] [PASSED] More than one page
[18:02:38] [PASSED] Above the allocation limit
[18:02:38] [PASSED] One page, with coherent DMA mappings enabled
[18:02:38] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:02:38] ============== [PASSED] ttm_pool_alloc_basic ===============
[18:02:38] ============== ttm_pool_alloc_basic_dma_addr ==============
[18:02:38] [PASSED] One page
[18:02:38] [PASSED] More than one page
[18:02:38] [PASSED] Above the allocation limit
[18:02:38] [PASSED] One page, with coherent DMA mappings enabled
[18:02:38] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:02:38] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[18:02:38] [PASSED] ttm_pool_alloc_order_caching_match
[18:02:38] [PASSED] ttm_pool_alloc_caching_mismatch
[18:02:38] [PASSED] ttm_pool_alloc_order_mismatch
[18:02:38] [PASSED] ttm_pool_free_dma_alloc
[18:02:38] [PASSED] ttm_pool_free_no_dma_alloc
[18:02:38] [PASSED] ttm_pool_fini_basic
[18:02:38] ==================== [PASSED] ttm_pool =====================
[18:02:38] ================ ttm_resource (8 subtests) =================
[18:02:38] ================= ttm_resource_init_basic =================
[18:02:38] [PASSED] Init resource in TTM_PL_SYSTEM
[18:02:38] [PASSED] Init resource in TTM_PL_VRAM
[18:02:38] [PASSED] Init resource in a private placement
[18:02:38] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[18:02:38] ============= [PASSED] ttm_resource_init_basic =============
[18:02:38] [PASSED] ttm_resource_init_pinned
[18:02:38] [PASSED] ttm_resource_fini_basic
[18:02:38] [PASSED] ttm_resource_manager_init_basic
[18:02:38] [PASSED] ttm_resource_manager_usage_basic
[18:02:38] [PASSED] ttm_resource_manager_set_used_basic
[18:02:38] [PASSED] ttm_sys_man_alloc_basic
[18:02:38] [PASSED] ttm_sys_man_free_basic
[18:02:38] ================== [PASSED] ttm_resource ===================
[18:02:38] =================== ttm_tt (15 subtests) ===================
[18:02:38] ==================== ttm_tt_init_basic ====================
[18:02:38] [PASSED] Page-aligned size
[18:02:38] [PASSED] Extra pages requested
[18:02:38] ================ [PASSED] ttm_tt_init_basic ================
[18:02:38] [PASSED] ttm_tt_init_misaligned
[18:02:38] [PASSED] ttm_tt_fini_basic
[18:02:38] [PASSED] ttm_tt_fini_sg
[18:02:38] [PASSED] ttm_tt_fini_shmem
[18:02:38] [PASSED] ttm_tt_create_basic
[18:02:38] [PASSED] ttm_tt_create_invalid_bo_type
[18:02:38] [PASSED] ttm_tt_create_ttm_exists
[18:02:38] [PASSED] ttm_tt_create_failed
[18:02:38] [PASSED] ttm_tt_destroy_basic
[18:02:38] [PASSED] ttm_tt_populate_null_ttm
[18:02:38] [PASSED] ttm_tt_populate_populated_ttm
[18:02:38] [PASSED] ttm_tt_unpopulate_basic
[18:02:38] [PASSED] ttm_tt_unpopulate_empty_ttm
[18:02:38] [PASSED] ttm_tt_swapin_basic
[18:02:38] ===================== [PASSED] ttm_tt ======================
[18:02:38] =================== ttm_bo (14 subtests) ===================
[18:02:38] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[18:02:38] [PASSED] Cannot be interrupted and sleeps
[18:02:38] [PASSED] Cannot be interrupted, locks straight away
[18:02:38] [PASSED] Can be interrupted, sleeps
[18:02:38] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[18:02:38] [PASSED] ttm_bo_reserve_locked_no_sleep
[18:02:38] [PASSED] ttm_bo_reserve_no_wait_ticket
[18:02:38] [PASSED] ttm_bo_reserve_double_resv
[18:02:38] [PASSED] ttm_bo_reserve_interrupted
[18:02:38] [PASSED] ttm_bo_reserve_deadlock
[18:02:38] [PASSED] ttm_bo_unreserve_basic
[18:02:38] [PASSED] ttm_bo_unreserve_pinned
[18:02:38] [PASSED] ttm_bo_unreserve_bulk
[18:02:38] [PASSED] ttm_bo_fini_basic
[18:02:38] [PASSED] ttm_bo_fini_shared_resv
[18:02:38] [PASSED] ttm_bo_pin_basic
[18:02:38] [PASSED] ttm_bo_pin_unpin_resource
[18:02:38] [PASSED] ttm_bo_multiple_pin_one_unpin
[18:02:38] ===================== [PASSED] ttm_bo ======================
[18:02:38] ============== ttm_bo_validate (21 subtests) ===============
[18:02:38] ============== ttm_bo_init_reserved_sys_man ===============
[18:02:38] [PASSED] Buffer object for userspace
[18:02:38] [PASSED] Kernel buffer object
[18:02:38] [PASSED] Shared buffer object
[18:02:38] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[18:02:38] ============== ttm_bo_init_reserved_mock_man ==============
[18:02:38] [PASSED] Buffer object for userspace
[18:02:38] [PASSED] Kernel buffer object
[18:02:38] [PASSED] Shared buffer object
[18:02:38] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[18:02:38] [PASSED] ttm_bo_init_reserved_resv
[18:02:38] ================== ttm_bo_validate_basic ==================
[18:02:38] [PASSED] Buffer object for userspace
[18:02:38] [PASSED] Kernel buffer object
[18:02:38] [PASSED] Shared buffer object
[18:02:38] ============== [PASSED] ttm_bo_validate_basic ==============
[18:02:38] [PASSED] ttm_bo_validate_invalid_placement
[18:02:38] ============= ttm_bo_validate_same_placement ==============
[18:02:38] [PASSED] System manager
[18:02:38] [PASSED] VRAM manager
[18:02:38] ========= [PASSED] ttm_bo_validate_same_placement ==========
[18:02:38] [PASSED] ttm_bo_validate_failed_alloc
[18:02:38] [PASSED] ttm_bo_validate_pinned
[18:02:38] [PASSED] ttm_bo_validate_busy_placement
[18:02:38] ================ ttm_bo_validate_multihop =================
[18:02:38] [PASSED] Buffer object for userspace
[18:02:38] [PASSED] Kernel buffer object
[18:02:38] [PASSED] Shared buffer object
[18:02:38] ============ [PASSED] ttm_bo_validate_multihop =============
[18:02:38] ========== ttm_bo_validate_no_placement_signaled ==========
[18:02:38] [PASSED] Buffer object in system domain, no page vector
[18:02:38] [PASSED] Buffer object in system domain with an existing page vector
[18:02:38] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[18:02:38] ======== ttm_bo_validate_no_placement_not_signaled ========
[18:02:38] [PASSED] Buffer object for userspace
[18:02:38] [PASSED] Kernel buffer object
[18:02:38] [PASSED] Shared buffer object
[18:02:38] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[18:02:38] [PASSED] ttm_bo_validate_move_fence_signaled
[18:02:38] ========= ttm_bo_validate_move_fence_not_signaled =========
[18:02:38] [PASSED] Waits for GPU
[18:02:38] [PASSED] Tries to lock straight away
[18:02:38] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[18:02:38] [PASSED] ttm_bo_validate_happy_evict
[18:02:38] [PASSED] ttm_bo_validate_all_pinned_evict
[18:02:38] [PASSED] ttm_bo_validate_allowed_only_evict
[18:02:38] [PASSED] ttm_bo_validate_deleted_evict
[18:02:38] [PASSED] ttm_bo_validate_busy_domain_evict
[18:02:38] [PASSED] ttm_bo_validate_evict_gutting
[18:02:38] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[18:02:38] ================= [PASSED] ttm_bo_validate =================
[18:02:38] ============================================================
[18:02:38] Testing complete. Ran 101 tests: passed: 101
[18:02:38] Elapsed time: 11.290s total, 1.704s configuring, 9.370s building, 0.180s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 44+ messages in thread* ✓ Xe.CI.BAT: success for AuxCCS handling and render compression modifiers (rev4)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (24 preceding siblings ...)
2025-10-22 18:02 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-22 18:40 ` Patchwork
2025-10-22 22:10 ` ✗ Xe.CI.Full: failure " Patchwork
` (4 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-22 18:40 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3187 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev4)
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
CI Bug Log - changes from xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61_BAT -> xe-pw-156189v4_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-156189v4_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-vm: NOTRUN -> [SKIP][1] ([Intel XE#5764]) +10 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-ptl-vm: NOTRUN -> [SKIP][2] ([Intel XE#5775])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-vm: NOTRUN -> [SKIP][3] ([Intel XE#5776])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/bat-ptl-vm/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][4] ([Intel XE#5777])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-ptl-vm: NOTRUN -> [SKIP][5] ([Intel XE#5771])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-vm: NOTRUN -> [SKIP][6] ([Intel XE#5780])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
#### Possible fixes ####
* igt@xe_module_load@load:
- bat-ptl-vm: [ABORT][7] ([Intel XE#6287]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/bat-ptl-vm/igt@xe_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/bat-ptl-vm/igt@xe_module_load@load.html
[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
Build changes
-------------
* Linux: xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61 -> xe-pw-156189v4
IGT_8594: 8594
xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61: d510fc9fa0a94543429523987bf7e613fe485a61
xe-pw-156189v4: 156189v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/index.html
[-- Attachment #2: Type: text/html, Size: 3902 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread* ✗ Xe.CI.Full: failure for AuxCCS handling and render compression modifiers (rev4)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (25 preceding siblings ...)
2025-10-22 18:40 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-22 22:10 ` Patchwork
2025-10-23 10:54 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev5) Patchwork
` (3 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-22 22:10 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 49523 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev4)
URL : https://patchwork.freedesktop.org/series/156189/
State : failure
== Summary ==
CI Bug Log - changes from xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61_FULL -> xe-pw-156189v4_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156189v4_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156189v4_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-156189v4_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y-rc-ccs-cc:
- shard-adlp: NOTRUN -> [FAIL][1] +5 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y-rc-ccs-cc.html
* igt@xe_oa@non-zero-reason-all:
- shard-lnl: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-lnl-8/igt@xe_oa@non-zero-reason-all.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-5/igt@xe_oa@non-zero-reason-all.html
* igt@xe_vm@munmap-style-unbind-userptr-inval-front:
- shard-adlp: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-6/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-1/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y:
- shard-adlp: [DMESG-WARN][6] ([Intel XE#4543]) -> [DMESG-WARN][7] +1 other test dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-4/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y.html
New tests
---------
New tests have been introduced between xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61_FULL and xe-pw-156189v4_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.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.16] 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.15] 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.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.19] 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.16] 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.17] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-rc-ccs-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-y-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-linear-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.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.10] 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.10] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-y:
- Statuses : 1 dmesg-fail(s)
- Exec time: [0.13] 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.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.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.10] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-linear:
- Statuses : 1 pass(s)
- Exec time: [0.10] 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.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 fail(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.10] 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.11] 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-156189v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#623])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-adlp: NOTRUN -> [DMESG-WARN][9] ([Intel XE#4543]) +3 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2191])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#3862]) +1 other test incomplete
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3432])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +20 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#306])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-432/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#373]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-432/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#308])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1424])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1508])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1421]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
- shard-adlp: [PASS][27] -> [DMESG-WARN][28] ([Intel XE#4543]) +19 other tests dmesg-warn
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-4/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-8/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [PASS][29] -> [DMESG-WARN][30] ([Intel XE#4543] / [Intel XE#5208])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-4/igt@kms_flip@flip-vs-rmfb-interruptible.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#2049] / [Intel XE#2597]) +3 other tests incomplete
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1397] / [Intel XE#1745])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1397])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-y (NEW):
- shard-adlp: NOTRUN -> [DMESG-FAIL][38] ([Intel XE#4543]) +1 other test dmesg-fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-mc-ccs-to-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#6312])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#651]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#651]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#653]) +6 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][44] -> [SKIP][45] ([Intel XE#455])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-436/igt@kms_hdr@invalid-hdr.html
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#1503])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#2925])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#5624])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-432/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#3307])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-adlp: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-9/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-432/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1406])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-no-drrs@edp-1:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#4609])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#3414])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3414] / [Intel XE#3904])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#6360])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#5300])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-463/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_eudebug_online@resume-dss:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4837]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#4518])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-small-external:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#688]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@xe_evict@evict-small-external.html
* igt@xe_exec_balancer@once-parallel-userptr-invalidate:
- shard-adlp: [PASS][66] -> [DMESG-FAIL][67] ([Intel XE#3876]) +2 other tests dmesg-fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-6/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-1/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
* igt@xe_exec_basic@many-null-defer-bind:
- shard-adlp: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#3876])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-6/igt@xe_exec_basic@many-null-defer-bind.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-1/igt@xe_exec_basic@many-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1392])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@xe_exec_basic@multigpu-once-null.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#288]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-adlp: [PASS][72] -> [FAIL][73] ([Intel XE#6325])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-6/igt@xe_exec_reset@cm-gt-reset.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-1/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#4837]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
* igt@xe_exec_system_allocator@fault-threads-same-page-benchmark:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#4915]) +56 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@xe_exec_system_allocator@fault-threads-same-page-benchmark.html
* igt@xe_exec_system_allocator@process-many-stride-mmap-remap-dontunmap:
- shard-lnl: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#2594])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-lnl-4/igt@xe_exec_system_allocator@process-many-stride-mmap-remap-dontunmap.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-2/igt@xe_exec_system_allocator@process-many-stride-mmap-remap-dontunmap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#4943]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge.html
* igt@xe_exec_threads@threads-cm-rebind:
- shard-adlp: [PASS][79] -> [FAIL][80] ([Intel XE#5625]) +2 other tests fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-6/igt@xe_exec_threads@threads-cm-rebind.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-1/igt@xe_exec_threads@threads-cm-rebind.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-lnl: NOTRUN -> [ABORT][81] ([Intel XE#4757])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_gt_freq@freq_fixed_idle:
- shard-dg2-set2: [PASS][82] -> [FAIL][83] ([Intel XE#6407])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-436/igt@xe_gt_freq@freq_fixed_idle.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-435/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#3573]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pm@s2idle-exec-after:
- shard-adlp: [PASS][85] -> [TIMEOUT][86] ([Intel XE#3876])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-6/igt@xe_pm@s2idle-exec-after.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-1/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#584])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@xe_pm@s3-mocs.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-adlp: [PASS][88] -> [DMESG-FAIL][89] ([Intel XE#5545]) +1 other test dmesg-fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-6/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#4733])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#944])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-463/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#4351])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@xe_sriov_scheduling@equal-throughput.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#6376])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-1/igt@xe_sriov_vram@vf-access-beyond.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-edp-1:
- shard-lnl: [FAIL][94] ([Intel XE#6054]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-edp-1.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: [SKIP][96] ([Intel XE#787]) -> [PASS][97] +83 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-3/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][98] ([Intel XE#455] / [Intel XE#787]) -> [PASS][99] +55 other tests pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][100] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [DMESG-WARN][102] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/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-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][104] ([Intel XE#6168]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][106] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][108] ([Intel XE#2291]) -> [PASS][109] +2 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][110] ([Intel XE#2316]) -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][112] ([Intel XE#301]) -> [PASS][113] +1 other test pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][114] ([Intel XE#4543]) -> [PASS][115] +12 other tests pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-8/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-4/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][116] ([Intel XE#455]) -> [PASS][117] +5 other tests pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-8/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][118] ([Intel XE#4543]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-3/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-y-to-x:
- shard-adlp: [FAIL][120] ([Intel XE#1874]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: [INCOMPLETE][122] -> [PASS][123] +1 other test pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-463/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][124] ([Intel XE#1503]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-6/igt@kms_hdr@static-toggle.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-1/igt@kms_hdr@static-toggle.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [SKIP][126] ([Intel XE#4596]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-adlp: [DMESG-WARN][128] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5750]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-3/igt@kms_pm_rpm@universal-planes-dpms.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-2/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-adlp: [DMESG-WARN][130] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][131] +3 other tests pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-4/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][132] ([Intel XE#4459]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][134] ([Intel XE#5893]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
#### Warnings ####
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][136] ([Intel XE#455]) -> [DMESG-FAIL][137] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][138] ([Intel XE#2312]) -> [SKIP][139] ([Intel XE#5390]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][140] ([Intel XE#2312]) -> [SKIP][141] ([Intel XE#2311]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#2313]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][144] ([Intel XE#362]) -> [FAIL][145] ([Intel XE#1729])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][146] ([Intel XE#4917] / [Intel XE#5466]) -> [ABORT][147] ([Intel XE#5466])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[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#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#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#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#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#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#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
[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#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[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#5750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5750
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[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#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#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[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#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-3967-d510fc9fa0a94543429523987bf7e613fe485a61 -> xe-pw-156189v4
IGT_8594: 8594
xe-3967-d510fc9fa0a94543429523987bf7e613fe485a61: d510fc9fa0a94543429523987bf7e613fe485a61
xe-pw-156189v4: 156189v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v4/index.html
[-- Attachment #2: Type: text/html, Size: 56487 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread* ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev5)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (26 preceding siblings ...)
2025-10-22 22:10 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-23 10:54 ` Patchwork
2025-10-23 10:56 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-23 10:54 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev5)
URL : https://patchwork.freedesktop.org/series/156189/
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 b434f7ca966515e8be410cb088b3fb64de211743
Author: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Date: Mon Oct 20 08:58:30 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 2d884504f47b972c124197c8380c5533324c96d0 drm-intel
cb78a97dc4a8 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
1d6ea6233c89 drm/xe/xelpg: Flush CCS when flushing caches
a9c965d3c40f drm/xe/xelp: Quiesce memory traffic before invalidating AuxCCS
0abee3d8ce63 drm/xe/xelp: Support auxccs invalidation on blitter
167b7ea7f768 drm/xe/xelp: Use MI_FLUSH_DW_CCS on auxccs platforms
af00388a0e64 drm/xe/xelp: Wait for AuxCCS invalidation to complete
ffc903f575a7 drm/xe: Export xe_emit_aux_table_inv
e00160bbf828 drm/xe/xelp: Add AuxCCS invalidation to the indirect context workarounds
aca7bc79e8ab 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
20161ba25352 drm/xe: Handle DPT in system memory
c4e57e839b43 drm/xe/display: Add support for AuxCCS
b434f7ca9665 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] 44+ messages in thread* ✓ CI.KUnit: success for AuxCCS handling and render compression modifiers (rev5)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (27 preceding siblings ...)
2025-10-23 10:54 ` ✗ CI.checkpatch: warning for AuxCCS handling and render compression modifiers (rev5) Patchwork
@ 2025-10-23 10:56 ` Patchwork
2025-10-23 12:15 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-23 18:58 ` ✗ Xe.CI.Full: failure " Patchwork
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-23 10:56 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev5)
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:54:46] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:54:53] 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
[10:55:55] Starting KUnit Kernel (1/1)...
[10:55:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:55:55] ================== guc_buf (11 subtests) ===================
[10:55:55] [PASSED] test_smallest
[10:55:55] [PASSED] test_largest
[10:55:55] [PASSED] test_granular
[10:55:55] [PASSED] test_unique
[10:55:55] [PASSED] test_overlap
[10:55:55] [PASSED] test_reusable
[10:55:55] [PASSED] test_too_big
[10:55:55] [PASSED] test_flush
[10:55:55] [PASSED] test_lookup
[10:55:55] [PASSED] test_data
[10:55:55] [PASSED] test_class
[10:55:55] ===================== [PASSED] guc_buf =====================
[10:55:55] =================== guc_dbm (7 subtests) ===================
[10:55:55] [PASSED] test_empty
[10:55:55] [PASSED] test_default
[10:55:55] ======================== test_size ========================
[10:55:55] [PASSED] 4
[10:55:55] [PASSED] 8
[10:55:55] [PASSED] 32
[10:55:55] [PASSED] 256
[10:55:55] ==================== [PASSED] test_size ====================
[10:55:55] ======================= test_reuse ========================
[10:55:55] [PASSED] 4
[10:55:55] [PASSED] 8
[10:55:55] [PASSED] 32
[10:55:55] [PASSED] 256
[10:55:55] =================== [PASSED] test_reuse ====================
[10:55:55] =================== test_range_overlap ====================
[10:55:55] [PASSED] 4
[10:55:55] [PASSED] 8
[10:55:55] [PASSED] 32
[10:55:55] [PASSED] 256
[10:55:55] =============== [PASSED] test_range_overlap ================
[10:55:55] =================== test_range_compact ====================
[10:55:55] [PASSED] 4
[10:55:55] [PASSED] 8
[10:55:55] [PASSED] 32
[10:55:55] [PASSED] 256
[10:55:55] =============== [PASSED] test_range_compact ================
[10:55:55] ==================== test_range_spare =====================
[10:55:55] [PASSED] 4
[10:55:55] [PASSED] 8
[10:55:55] [PASSED] 32
[10:55:55] [PASSED] 256
[10:55:55] ================ [PASSED] test_range_spare =================
[10:55:55] ===================== [PASSED] guc_dbm =====================
[10:55:55] =================== guc_idm (6 subtests) ===================
[10:55:55] [PASSED] bad_init
[10:55:55] [PASSED] no_init
[10:55:55] [PASSED] init_fini
[10:55:55] [PASSED] check_used
[10:55:55] [PASSED] check_quota
[10:55:55] [PASSED] check_all
[10:55:55] ===================== [PASSED] guc_idm =====================
[10:55:55] ================== no_relay (3 subtests) ===================
[10:55:55] [PASSED] xe_drops_guc2pf_if_not_ready
[10:55:55] [PASSED] xe_drops_guc2vf_if_not_ready
[10:55:55] [PASSED] xe_rejects_send_if_not_ready
[10:55:55] ==================== [PASSED] no_relay =====================
[10:55:55] ================== pf_relay (14 subtests) ==================
[10:55:55] [PASSED] pf_rejects_guc2pf_too_short
[10:55:55] [PASSED] pf_rejects_guc2pf_too_long
[10:55:55] [PASSED] pf_rejects_guc2pf_no_payload
[10:55:55] [PASSED] pf_fails_no_payload
[10:55:55] [PASSED] pf_fails_bad_origin
[10:55:55] [PASSED] pf_fails_bad_type
[10:55:55] [PASSED] pf_txn_reports_error
[10:55:55] [PASSED] pf_txn_sends_pf2guc
[10:55:55] [PASSED] pf_sends_pf2guc
[10:55:55] [SKIPPED] pf_loopback_nop
[10:55:55] [SKIPPED] pf_loopback_echo
[10:55:55] [SKIPPED] pf_loopback_fail
[10:55:55] [SKIPPED] pf_loopback_busy
[10:55:55] [SKIPPED] pf_loopback_retry
[10:55:55] ==================== [PASSED] pf_relay =====================
[10:55:55] ================== vf_relay (3 subtests) ===================
[10:55:55] [PASSED] vf_rejects_guc2vf_too_short
[10:55:55] [PASSED] vf_rejects_guc2vf_too_long
[10:55:55] [PASSED] vf_rejects_guc2vf_no_payload
[10:55:55] ==================== [PASSED] vf_relay =====================
[10:55:55] ===================== lmtt (1 subtest) =====================
[10:55:55] ======================== test_ops =========================
[10:55:55] [PASSED] 2-level
[10:55:55] [PASSED] multi-level
[10:55:55] ==================== [PASSED] test_ops =====================
[10:55:55] ====================== [PASSED] lmtt =======================
[10:55:55] ================= pf_service (11 subtests) =================
[10:55:55] [PASSED] pf_negotiate_any
[10:55:55] [PASSED] pf_negotiate_base_match
[10:55:55] [PASSED] pf_negotiate_base_newer
[10:55:55] [PASSED] pf_negotiate_base_next
[10:55:55] [SKIPPED] pf_negotiate_base_older
[10:55:55] [PASSED] pf_negotiate_base_prev
[10:55:55] [PASSED] pf_negotiate_latest_match
[10:55:55] [PASSED] pf_negotiate_latest_newer
[10:55:55] [PASSED] pf_negotiate_latest_next
[10:55:55] [SKIPPED] pf_negotiate_latest_older
[10:55:55] [SKIPPED] pf_negotiate_latest_prev
[10:55:55] =================== [PASSED] pf_service ====================
[10:55:55] ================= xe_guc_g2g (2 subtests) ==================
[10:55:55] ============== xe_live_guc_g2g_kunit_default ==============
[10:55:55] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[10:55:55] ============== xe_live_guc_g2g_kunit_allmem ===============
[10:55:55] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[10:55:55] =================== [SKIPPED] xe_guc_g2g ===================
[10:55:55] =================== xe_mocs (2 subtests) ===================
[10:55:55] ================ xe_live_mocs_kernel_kunit ================
[10:55:55] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:55:55] ================ xe_live_mocs_reset_kunit =================
[10:55:55] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:55:55] ==================== [SKIPPED] xe_mocs =====================
[10:55:55] ================= xe_migrate (2 subtests) ==================
[10:55:55] ================= xe_migrate_sanity_kunit =================
[10:55:55] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:55:55] ================== xe_validate_ccs_kunit ==================
[10:55:55] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:55:55] =================== [SKIPPED] xe_migrate ===================
[10:55:55] ================== xe_dma_buf (1 subtest) ==================
[10:55:55] ==================== xe_dma_buf_kunit =====================
[10:55:55] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:55:55] =================== [SKIPPED] xe_dma_buf ===================
[10:55:55] ================= xe_bo_shrink (1 subtest) =================
[10:55:55] =================== xe_bo_shrink_kunit ====================
[10:55:55] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:55:55] ================== [SKIPPED] xe_bo_shrink ==================
[10:55:55] ==================== xe_bo (2 subtests) ====================
[10:55:55] ================== xe_ccs_migrate_kunit ===================
[10:55:55] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:55:55] ==================== xe_bo_evict_kunit ====================
[10:55:55] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:55:55] ===================== [SKIPPED] xe_bo ======================
[10:55:55] ==================== args (11 subtests) ====================
[10:55:55] [PASSED] count_args_test
[10:55:55] [PASSED] call_args_example
[10:55:55] [PASSED] call_args_test
[10:55:55] [PASSED] drop_first_arg_example
[10:55:55] [PASSED] drop_first_arg_test
[10:55:55] [PASSED] first_arg_example
[10:55:55] [PASSED] first_arg_test
[10:55:55] [PASSED] last_arg_example
[10:55:55] [PASSED] last_arg_test
[10:55:55] [PASSED] pick_arg_example
[10:55:55] [PASSED] sep_comma_example
[10:55:55] ====================== [PASSED] args =======================
[10:55:55] =================== xe_pci (3 subtests) ====================
[10:55:55] ==================== check_graphics_ip ====================
[10:55:55] [PASSED] 12.00 Xe_LP
[10:55:55] [PASSED] 12.10 Xe_LP+
[10:55:55] [PASSED] 12.55 Xe_HPG
[10:55:55] [PASSED] 12.60 Xe_HPC
[10:55:55] [PASSED] 12.70 Xe_LPG
[10:55:55] [PASSED] 12.71 Xe_LPG
[10:55:55] [PASSED] 12.74 Xe_LPG+
[10:55:55] [PASSED] 20.01 Xe2_HPG
[10:55:55] [PASSED] 20.02 Xe2_HPG
[10:55:55] [PASSED] 20.04 Xe2_LPG
[10:55:55] [PASSED] 30.00 Xe3_LPG
[10:55:55] [PASSED] 30.01 Xe3_LPG
[10:55:55] [PASSED] 30.03 Xe3_LPG
[10:55:55] [PASSED] 30.04 Xe3_LPG
[10:55:55] [PASSED] 30.05 Xe3_LPG
[10:55:55] [PASSED] 35.11 Xe3p_XPC
[10:55:55] ================ [PASSED] check_graphics_ip ================
[10:55:55] ===================== check_media_ip ======================
[10:55:55] [PASSED] 12.00 Xe_M
[10:55:55] [PASSED] 12.55 Xe_HPM
[10:55:55] [PASSED] 13.00 Xe_LPM+
[10:55:55] [PASSED] 13.01 Xe2_HPM
[10:55:55] [PASSED] 20.00 Xe2_LPM
[10:55:55] [PASSED] 30.00 Xe3_LPM
[10:55:55] [PASSED] 30.02 Xe3_LPM
[10:55:55] [PASSED] 35.00 Xe3p_LPM
[10:55:55] [PASSED] 35.03 Xe3p_HPM
[10:55:55] ================= [PASSED] check_media_ip ==================
[10:55:55] =================== check_platform_desc ===================
[10:55:55] [PASSED] 0x9A60 (TIGERLAKE)
[10:55:55] [PASSED] 0x9A68 (TIGERLAKE)
[10:55:55] [PASSED] 0x9A70 (TIGERLAKE)
[10:55:55] [PASSED] 0x9A40 (TIGERLAKE)
[10:55:55] [PASSED] 0x9A49 (TIGERLAKE)
[10:55:55] [PASSED] 0x9A59 (TIGERLAKE)
[10:55:55] [PASSED] 0x9A78 (TIGERLAKE)
[10:55:55] [PASSED] 0x9AC0 (TIGERLAKE)
[10:55:55] [PASSED] 0x9AC9 (TIGERLAKE)
[10:55:55] [PASSED] 0x9AD9 (TIGERLAKE)
[10:55:55] [PASSED] 0x9AF8 (TIGERLAKE)
[10:55:55] [PASSED] 0x4C80 (ROCKETLAKE)
[10:55:55] [PASSED] 0x4C8A (ROCKETLAKE)
[10:55:55] [PASSED] 0x4C8B (ROCKETLAKE)
[10:55:55] [PASSED] 0x4C8C (ROCKETLAKE)
[10:55:55] [PASSED] 0x4C90 (ROCKETLAKE)
[10:55:55] [PASSED] 0x4C9A (ROCKETLAKE)
[10:55:55] [PASSED] 0x4680 (ALDERLAKE_S)
[10:55:55] [PASSED] 0x4682 (ALDERLAKE_S)
[10:55:55] [PASSED] 0x4688 (ALDERLAKE_S)
[10:55:55] [PASSED] 0x468A (ALDERLAKE_S)
[10:55:55] [PASSED] 0x468B (ALDERLAKE_S)
[10:55:55] [PASSED] 0x4690 (ALDERLAKE_S)
[10:55:55] [PASSED] 0x4692 (ALDERLAKE_S)
[10:55:55] [PASSED] 0x4693 (ALDERLAKE_S)
[10:55:55] [PASSED] 0x46A0 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46A1 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46A2 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46A3 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46A6 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46A8 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46AA (ALDERLAKE_P)
[10:55:55] [PASSED] 0x462A (ALDERLAKE_P)
[10:55:55] [PASSED] 0x4626 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x4628 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46B0 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46B1 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46B2 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46B3 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46C0 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46C1 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46C2 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46C3 (ALDERLAKE_P)
[10:55:55] [PASSED] 0x46D0 (ALDERLAKE_N)
[10:55:55] [PASSED] 0x46D1 (ALDERLAKE_N)
[10:55:55] [PASSED] 0x46D2 (ALDERLAKE_N)
[10:55:55] [PASSED] 0x46D3 (ALDERLAKE_N)
[10:55:55] [PASSED] 0x46D4 (ALDERLAKE_N)
[10:55:55] [PASSED] 0xA721 (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA7A1 (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA7A9 (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA7AC (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA7AD (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA720 (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA7A0 (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA7A8 (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA7AA (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA7AB (ALDERLAKE_P)
[10:55:55] [PASSED] 0xA780 (ALDERLAKE_S)
[10:55:55] [PASSED] 0xA781 (ALDERLAKE_S)
[10:55:55] [PASSED] 0xA782 (ALDERLAKE_S)
[10:55:55] [PASSED] 0xA783 (ALDERLAKE_S)
[10:55:55] [PASSED] 0xA788 (ALDERLAKE_S)
[10:55:55] [PASSED] 0xA789 (ALDERLAKE_S)
[10:55:55] [PASSED] 0xA78A (ALDERLAKE_S)
[10:55:55] [PASSED] 0xA78B (ALDERLAKE_S)
[10:55:55] [PASSED] 0x4905 (DG1)
[10:55:55] [PASSED] 0x4906 (DG1)
[10:55:55] [PASSED] 0x4907 (DG1)
[10:55:55] [PASSED] 0x4908 (DG1)
[10:55:55] [PASSED] 0x4909 (DG1)
[10:55:55] [PASSED] 0x56C0 (DG2)
[10:55:55] [PASSED] 0x56C2 (DG2)
[10:55:55] [PASSED] 0x56C1 (DG2)
[10:55:55] [PASSED] 0x7D51 (METEORLAKE)
[10:55:55] [PASSED] 0x7DD1 (METEORLAKE)
[10:55:55] [PASSED] 0x7D41 (METEORLAKE)
[10:55:55] [PASSED] 0x7D67 (METEORLAKE)
[10:55:55] [PASSED] 0xB640 (METEORLAKE)
[10:55:55] [PASSED] 0x56A0 (DG2)
[10:55:55] [PASSED] 0x56A1 (DG2)
[10:55:55] [PASSED] 0x56A2 (DG2)
[10:55:55] [PASSED] 0x56BE (DG2)
[10:55:55] [PASSED] 0x56BF (DG2)
[10:55:55] [PASSED] 0x5690 (DG2)
[10:55:55] [PASSED] 0x5691 (DG2)
[10:55:55] [PASSED] 0x5692 (DG2)
[10:55:55] [PASSED] 0x56A5 (DG2)
[10:55:55] [PASSED] 0x56A6 (DG2)
[10:55:55] [PASSED] 0x56B0 (DG2)
[10:55:55] [PASSED] 0x56B1 (DG2)
[10:55:55] [PASSED] 0x56BA (DG2)
[10:55:55] [PASSED] 0x56BB (DG2)
[10:55:55] [PASSED] 0x56BC (DG2)
[10:55:55] [PASSED] 0x56BD (DG2)
[10:55:55] [PASSED] 0x5693 (DG2)
[10:55:55] [PASSED] 0x5694 (DG2)
[10:55:55] [PASSED] 0x5695 (DG2)
[10:55:55] [PASSED] 0x56A3 (DG2)
[10:55:55] [PASSED] 0x56A4 (DG2)
[10:55:55] [PASSED] 0x56B2 (DG2)
[10:55:55] [PASSED] 0x56B3 (DG2)
[10:55:55] [PASSED] 0x5696 (DG2)
[10:55:55] [PASSED] 0x5697 (DG2)
[10:55:55] [PASSED] 0xB69 (PVC)
[10:55:55] [PASSED] 0xB6E (PVC)
[10:55:55] [PASSED] 0xBD4 (PVC)
[10:55:55] [PASSED] 0xBD5 (PVC)
[10:55:55] [PASSED] 0xBD6 (PVC)
[10:55:55] [PASSED] 0xBD7 (PVC)
[10:55:55] [PASSED] 0xBD8 (PVC)
[10:55:55] [PASSED] 0xBD9 (PVC)
[10:55:55] [PASSED] 0xBDA (PVC)
[10:55:55] [PASSED] 0xBDB (PVC)
[10:55:55] [PASSED] 0xBE0 (PVC)
[10:55:55] [PASSED] 0xBE1 (PVC)
[10:55:55] [PASSED] 0xBE5 (PVC)
[10:55:55] [PASSED] 0x7D40 (METEORLAKE)
[10:55:55] [PASSED] 0x7D45 (METEORLAKE)
[10:55:55] [PASSED] 0x7D55 (METEORLAKE)
[10:55:55] [PASSED] 0x7D60 (METEORLAKE)
[10:55:55] [PASSED] 0x7DD5 (METEORLAKE)
[10:55:55] [PASSED] 0x6420 (LUNARLAKE)
[10:55:55] [PASSED] 0x64A0 (LUNARLAKE)
[10:55:55] [PASSED] 0x64B0 (LUNARLAKE)
[10:55:55] [PASSED] 0xE202 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE209 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE20B (BATTLEMAGE)
[10:55:55] [PASSED] 0xE20C (BATTLEMAGE)
[10:55:55] [PASSED] 0xE20D (BATTLEMAGE)
[10:55:55] [PASSED] 0xE210 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE211 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE212 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE216 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE220 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE221 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE222 (BATTLEMAGE)
[10:55:55] [PASSED] 0xE223 (BATTLEMAGE)
[10:55:55] [PASSED] 0xB080 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB081 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB082 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB083 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB084 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB085 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB086 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB087 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB08F (PANTHERLAKE)
[10:55:55] [PASSED] 0xB090 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB0A0 (PANTHERLAKE)
[10:55:55] [PASSED] 0xB0B0 (PANTHERLAKE)
[10:55:55] [PASSED] 0xFD80 (PANTHERLAKE)
[10:55:55] [PASSED] 0xFD81 (PANTHERLAKE)
[10:55:55] [PASSED] 0xD740 (NOVALAKE_S)
[10:55:55] [PASSED] 0xD741 (NOVALAKE_S)
[10:55:55] [PASSED] 0xD742 (NOVALAKE_S)
[10:55:55] [PASSED] 0xD743 (NOVALAKE_S)
[10:55:55] [PASSED] 0xD744 (NOVALAKE_S)
[10:55:55] [PASSED] 0xD745 (NOVALAKE_S)
[10:55:55] [PASSED] 0x674C (CRESCENTISLAND)
[10:55:55] =============== [PASSED] check_platform_desc ===============
[10:55:55] ===================== [PASSED] xe_pci ======================
[10:55:55] =================== xe_rtp (2 subtests) ====================
[10:55:55] =============== xe_rtp_process_to_sr_tests ================
[10:55:55] [PASSED] coalesce-same-reg
[10:55:55] [PASSED] no-match-no-add
[10:55:55] [PASSED] match-or
[10:55:55] [PASSED] match-or-xfail
[10:55:55] [PASSED] no-match-no-add-multiple-rules
[10:55:55] [PASSED] two-regs-two-entries
[10:55:55] [PASSED] clr-one-set-other
[10:55:55] [PASSED] set-field
[10:55:55] [PASSED] conflict-duplicate
[10:55:55] [PASSED] conflict-not-disjoint
[10:55:55] [PASSED] conflict-reg-type
[10:55:55] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:55:55] ================== xe_rtp_process_tests ===================
[10:55:55] [PASSED] active1
[10:55:55] [PASSED] active2
[10:55:55] [PASSED] active-inactive
[10:55:55] [PASSED] inactive-active
[10:55:55] [PASSED] inactive-1st_or_active-inactive
[10:55:55] [PASSED] inactive-2nd_or_active-inactive
[10:55:55] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[10:55:55] [PASSED] inactive-no_or_active-inactive
[10:55:55] ============== [PASSED] xe_rtp_process_tests ===============
[10:55:55] ===================== [PASSED] xe_rtp ======================
[10:55:55] ==================== xe_wa (1 subtest) =====================
[10:55:55] ======================== xe_wa_gt =========================
[10:55:55] [PASSED] TIGERLAKE B0
[10:55:55] [PASSED] DG1 A0
[10:55:55] [PASSED] DG1 B0
[10:55:55] [PASSED] ALDERLAKE_S A0
[10:55:55] [PASSED] ALDERLAKE_S B0
[10:55:55] [PASSED] ALDERLAKE_S C0
[10:55:55] [PASSED] ALDERLAKE_S D0
[10:55:55] [PASSED] ALDERLAKE_P A0
[10:55:55] [PASSED] ALDERLAKE_P B0
[10:55:55] [PASSED] ALDERLAKE_P C0
[10:55:55] [PASSED] ALDERLAKE_S RPLS D0
[10:55:55] [PASSED] ALDERLAKE_P RPLU E0
[10:55:55] [PASSED] DG2 G10 C0
[10:55:55] [PASSED] DG2 G11 B1
[10:55:55] [PASSED] DG2 G12 A1
[10:55:55] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:55:55] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:55:55] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[10:55:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[10:55:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[10:55:55] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[10:55:55] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[10:55:55] ==================== [PASSED] xe_wa_gt =====================
[10:55:55] ====================== [PASSED] xe_wa ======================
[10:55:55] ============================================================
[10:55:55] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[10:55:55] Elapsed time: 69.636s total, 7.376s configuring, 61.736s building, 0.502s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[10:55:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:55:58] 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
[10:56:32] Starting KUnit Kernel (1/1)...
[10:56:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:56:32] ============ drm_test_pick_cmdline (2 subtests) ============
[10:56:32] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[10:56:32] =============== drm_test_pick_cmdline_named ===============
[10:56:32] [PASSED] NTSC
[10:56:32] [PASSED] NTSC-J
[10:56:32] [PASSED] PAL
[10:56:32] [PASSED] PAL-M
[10:56:32] =========== [PASSED] drm_test_pick_cmdline_named ===========
[10:56:32] ============== [PASSED] drm_test_pick_cmdline ==============
[10:56:32] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[10:56:32] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[10:56:32] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[10:56:32] =========== drm_validate_clone_mode (2 subtests) ===========
[10:56:32] ============== drm_test_check_in_clone_mode ===============
[10:56:32] [PASSED] in_clone_mode
[10:56:32] [PASSED] not_in_clone_mode
[10:56:32] ========== [PASSED] drm_test_check_in_clone_mode ===========
[10:56:32] =============== drm_test_check_valid_clones ===============
[10:56:32] [PASSED] not_in_clone_mode
[10:56:32] [PASSED] valid_clone
[10:56:32] [PASSED] invalid_clone
[10:56:32] =========== [PASSED] drm_test_check_valid_clones ===========
[10:56:32] ============= [PASSED] drm_validate_clone_mode =============
[10:56:32] ============= drm_validate_modeset (1 subtest) =============
[10:56:32] [PASSED] drm_test_check_connector_changed_modeset
[10:56:32] ============== [PASSED] drm_validate_modeset ===============
[10:56:32] ====== drm_test_bridge_get_current_state (2 subtests) ======
[10:56:32] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[10:56:32] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[10:56:32] ======== [PASSED] drm_test_bridge_get_current_state ========
[10:56:32] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[10:56:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[10:56:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[10:56:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[10:56:32] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[10:56:32] ============== drm_bridge_alloc (2 subtests) ===============
[10:56:32] [PASSED] drm_test_drm_bridge_alloc_basic
[10:56:32] [PASSED] drm_test_drm_bridge_alloc_get_put
[10:56:32] ================ [PASSED] drm_bridge_alloc =================
[10:56:32] ================== drm_buddy (8 subtests) ==================
[10:56:32] [PASSED] drm_test_buddy_alloc_limit
[10:56:32] [PASSED] drm_test_buddy_alloc_optimistic
[10:56:32] [PASSED] drm_test_buddy_alloc_pessimistic
[10:56:32] [PASSED] drm_test_buddy_alloc_pathological
[10:56:32] [PASSED] drm_test_buddy_alloc_contiguous
[10:56:32] [PASSED] drm_test_buddy_alloc_clear
[10:56:32] [PASSED] drm_test_buddy_alloc_range_bias
[10:56:32] [PASSED] drm_test_buddy_fragmentation_performance
[10:56:32] ==================== [PASSED] drm_buddy ====================
[10:56:32] ============= drm_cmdline_parser (40 subtests) =============
[10:56:32] [PASSED] drm_test_cmdline_force_d_only
[10:56:32] [PASSED] drm_test_cmdline_force_D_only_dvi
[10:56:32] [PASSED] drm_test_cmdline_force_D_only_hdmi
[10:56:32] [PASSED] drm_test_cmdline_force_D_only_not_digital
[10:56:32] [PASSED] drm_test_cmdline_force_e_only
[10:56:32] [PASSED] drm_test_cmdline_res
[10:56:32] [PASSED] drm_test_cmdline_res_vesa
[10:56:32] [PASSED] drm_test_cmdline_res_vesa_rblank
[10:56:32] [PASSED] drm_test_cmdline_res_rblank
[10:56:32] [PASSED] drm_test_cmdline_res_bpp
[10:56:32] [PASSED] drm_test_cmdline_res_refresh
[10:56:32] [PASSED] drm_test_cmdline_res_bpp_refresh
[10:56:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[10:56:32] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[10:56:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[10:56:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[10:56:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[10:56:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[10:56:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[10:56:32] [PASSED] drm_test_cmdline_res_margins_force_on
[10:56:32] [PASSED] drm_test_cmdline_res_vesa_margins
[10:56:32] [PASSED] drm_test_cmdline_name
[10:56:32] [PASSED] drm_test_cmdline_name_bpp
[10:56:32] [PASSED] drm_test_cmdline_name_option
[10:56:32] [PASSED] drm_test_cmdline_name_bpp_option
[10:56:32] [PASSED] drm_test_cmdline_rotate_0
[10:56:32] [PASSED] drm_test_cmdline_rotate_90
[10:56:32] [PASSED] drm_test_cmdline_rotate_180
[10:56:32] [PASSED] drm_test_cmdline_rotate_270
[10:56:32] [PASSED] drm_test_cmdline_hmirror
[10:56:32] [PASSED] drm_test_cmdline_vmirror
[10:56:32] [PASSED] drm_test_cmdline_margin_options
[10:56:32] [PASSED] drm_test_cmdline_multiple_options
[10:56:32] [PASSED] drm_test_cmdline_bpp_extra_and_option
[10:56:32] [PASSED] drm_test_cmdline_extra_and_option
[10:56:32] [PASSED] drm_test_cmdline_freestanding_options
[10:56:32] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[10:56:32] [PASSED] drm_test_cmdline_panel_orientation
[10:56:32] ================ drm_test_cmdline_invalid =================
[10:56:32] [PASSED] margin_only
[10:56:32] [PASSED] interlace_only
[10:56:32] [PASSED] res_missing_x
[10:56:32] [PASSED] res_missing_y
[10:56:32] [PASSED] res_bad_y
[10:56:32] [PASSED] res_missing_y_bpp
[10:56:32] [PASSED] res_bad_bpp
[10:56:32] [PASSED] res_bad_refresh
[10:56:32] [PASSED] res_bpp_refresh_force_on_off
[10:56:32] [PASSED] res_invalid_mode
[10:56:32] [PASSED] res_bpp_wrong_place_mode
[10:56:32] [PASSED] name_bpp_refresh
[10:56:32] [PASSED] name_refresh
[10:56:32] [PASSED] name_refresh_wrong_mode
[10:56:32] [PASSED] name_refresh_invalid_mode
[10:56:32] [PASSED] rotate_multiple
[10:56:32] [PASSED] rotate_invalid_val
[10:56:32] [PASSED] rotate_truncated
[10:56:32] [PASSED] invalid_option
[10:56:32] [PASSED] invalid_tv_option
[10:56:32] [PASSED] truncated_tv_option
[10:56:32] ============ [PASSED] drm_test_cmdline_invalid =============
[10:56:32] =============== drm_test_cmdline_tv_options ===============
[10:56:32] [PASSED] NTSC
[10:56:32] [PASSED] NTSC_443
[10:56:32] [PASSED] NTSC_J
[10:56:32] [PASSED] PAL
[10:56:32] [PASSED] PAL_M
[10:56:32] [PASSED] PAL_N
[10:56:32] [PASSED] SECAM
[10:56:32] [PASSED] MONO_525
[10:56:32] [PASSED] MONO_625
[10:56:32] =========== [PASSED] drm_test_cmdline_tv_options ===========
[10:56:32] =============== [PASSED] drm_cmdline_parser ================
[10:56:32] ========== drmm_connector_hdmi_init (20 subtests) ==========
[10:56:32] [PASSED] drm_test_connector_hdmi_init_valid
[10:56:32] [PASSED] drm_test_connector_hdmi_init_bpc_8
[10:56:32] [PASSED] drm_test_connector_hdmi_init_bpc_10
[10:56:32] [PASSED] drm_test_connector_hdmi_init_bpc_12
[10:56:32] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[10:56:32] [PASSED] drm_test_connector_hdmi_init_bpc_null
[10:56:32] [PASSED] drm_test_connector_hdmi_init_formats_empty
[10:56:32] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[10:56:32] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:56:32] [PASSED] supported_formats=0x9 yuv420_allowed=1
[10:56:32] [PASSED] supported_formats=0x9 yuv420_allowed=0
[10:56:32] [PASSED] supported_formats=0x3 yuv420_allowed=1
[10:56:32] [PASSED] supported_formats=0x3 yuv420_allowed=0
[10:56:32] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:56:32] [PASSED] drm_test_connector_hdmi_init_null_ddc
[10:56:32] [PASSED] drm_test_connector_hdmi_init_null_product
[10:56:32] [PASSED] drm_test_connector_hdmi_init_null_vendor
[10:56:32] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[10:56:32] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[10:56:32] [PASSED] drm_test_connector_hdmi_init_product_valid
[10:56:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[10:56:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[10:56:32] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[10:56:32] ========= drm_test_connector_hdmi_init_type_valid =========
[10:56:32] [PASSED] HDMI-A
[10:56:32] [PASSED] HDMI-B
[10:56:32] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[10:56:32] ======== drm_test_connector_hdmi_init_type_invalid ========
[10:56:32] [PASSED] Unknown
[10:56:32] [PASSED] VGA
[10:56:32] [PASSED] DVI-I
[10:56:32] [PASSED] DVI-D
[10:56:32] [PASSED] DVI-A
[10:56:32] [PASSED] Composite
[10:56:32] [PASSED] SVIDEO
[10:56:32] [PASSED] LVDS
[10:56:32] [PASSED] Component
[10:56:32] [PASSED] DIN
[10:56:32] [PASSED] DP
[10:56:32] [PASSED] TV
[10:56:32] [PASSED] eDP
[10:56:32] [PASSED] Virtual
[10:56:32] [PASSED] DSI
[10:56:32] [PASSED] DPI
[10:56:32] [PASSED] Writeback
[10:56:32] [PASSED] SPI
[10:56:32] [PASSED] USB
[10:56:32] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[10:56:32] ============ [PASSED] drmm_connector_hdmi_init =============
[10:56:32] ============= drmm_connector_init (3 subtests) =============
[10:56:32] [PASSED] drm_test_drmm_connector_init
[10:56:32] [PASSED] drm_test_drmm_connector_init_null_ddc
[10:56:32] ========= drm_test_drmm_connector_init_type_valid =========
[10:56:32] [PASSED] Unknown
[10:56:32] [PASSED] VGA
[10:56:32] [PASSED] DVI-I
[10:56:32] [PASSED] DVI-D
[10:56:32] [PASSED] DVI-A
[10:56:32] [PASSED] Composite
[10:56:32] [PASSED] SVIDEO
[10:56:32] [PASSED] LVDS
[10:56:32] [PASSED] Component
[10:56:32] [PASSED] DIN
[10:56:32] [PASSED] DP
[10:56:32] [PASSED] HDMI-A
[10:56:32] [PASSED] HDMI-B
[10:56:32] [PASSED] TV
[10:56:32] [PASSED] eDP
[10:56:32] [PASSED] Virtual
[10:56:32] [PASSED] DSI
[10:56:32] [PASSED] DPI
[10:56:32] [PASSED] Writeback
[10:56:32] [PASSED] SPI
[10:56:32] [PASSED] USB
[10:56:32] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[10:56:32] =============== [PASSED] drmm_connector_init ===============
[10:56:32] ========= drm_connector_dynamic_init (6 subtests) ==========
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_init
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_init_properties
[10:56:32] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[10:56:32] [PASSED] Unknown
[10:56:32] [PASSED] VGA
[10:56:32] [PASSED] DVI-I
[10:56:32] [PASSED] DVI-D
[10:56:32] [PASSED] DVI-A
[10:56:32] [PASSED] Composite
[10:56:32] [PASSED] SVIDEO
[10:56:32] [PASSED] LVDS
[10:56:32] [PASSED] Component
[10:56:32] [PASSED] DIN
[10:56:32] [PASSED] DP
[10:56:32] [PASSED] HDMI-A
[10:56:32] [PASSED] HDMI-B
[10:56:32] [PASSED] TV
[10:56:32] [PASSED] eDP
[10:56:32] [PASSED] Virtual
[10:56:32] [PASSED] DSI
[10:56:32] [PASSED] DPI
[10:56:32] [PASSED] Writeback
[10:56:32] [PASSED] SPI
[10:56:32] [PASSED] USB
[10:56:32] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[10:56:32] ======== drm_test_drm_connector_dynamic_init_name =========
[10:56:32] [PASSED] Unknown
[10:56:32] [PASSED] VGA
[10:56:32] [PASSED] DVI-I
[10:56:32] [PASSED] DVI-D
[10:56:32] [PASSED] DVI-A
[10:56:32] [PASSED] Composite
[10:56:32] [PASSED] SVIDEO
[10:56:32] [PASSED] LVDS
[10:56:32] [PASSED] Component
[10:56:32] [PASSED] DIN
[10:56:32] [PASSED] DP
[10:56:32] [PASSED] HDMI-A
[10:56:32] [PASSED] HDMI-B
[10:56:32] [PASSED] TV
[10:56:32] [PASSED] eDP
[10:56:32] [PASSED] Virtual
[10:56:32] [PASSED] DSI
[10:56:32] [PASSED] DPI
[10:56:32] [PASSED] Writeback
[10:56:32] [PASSED] SPI
[10:56:32] [PASSED] USB
[10:56:32] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[10:56:32] =========== [PASSED] drm_connector_dynamic_init ============
[10:56:32] ==== drm_connector_dynamic_register_early (4 subtests) =====
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[10:56:32] ====== [PASSED] drm_connector_dynamic_register_early =======
[10:56:32] ======= drm_connector_dynamic_register (7 subtests) ========
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[10:56:32] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[10:56:32] ========= [PASSED] drm_connector_dynamic_register ==========
[10:56:32] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[10:56:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[10:56:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[10:56:32] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[10:56:32] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[10:56:32] ========== drm_test_get_tv_mode_from_name_valid ===========
[10:56:32] [PASSED] NTSC
[10:56:32] [PASSED] NTSC-443
[10:56:32] [PASSED] NTSC-J
[10:56:32] [PASSED] PAL
[10:56:32] [PASSED] PAL-M
[10:56:32] [PASSED] PAL-N
[10:56:32] [PASSED] SECAM
[10:56:32] [PASSED] Mono
[10:56:32] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[10:56:32] [PASSED] drm_test_get_tv_mode_from_name_truncated
[10:56:32] ============ [PASSED] drm_get_tv_mode_from_name ============
[10:56:32] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[10:56:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[10:56:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[10:56:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[10:56:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[10:56:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[10:56:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[10:56:32] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[10:56:32] [PASSED] VIC 96
[10:56:32] [PASSED] VIC 97
[10:56:32] [PASSED] VIC 101
[10:56:32] [PASSED] VIC 102
[10:56:32] [PASSED] VIC 106
[10:56:32] [PASSED] VIC 107
[10:56:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[10:56:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[10:56:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[10:56:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[10:56:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[10:56:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[10:56:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[10:56:32] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[10:56:32] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[10:56:32] [PASSED] Automatic
[10:56:32] [PASSED] Full
[10:56:32] [PASSED] Limited 16:235
[10:56:32] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[10:56:32] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[10:56:32] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[10:56:32] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[10:56:32] === drm_test_drm_hdmi_connector_get_output_format_name ====
[10:56:32] [PASSED] RGB
[10:56:32] [PASSED] YUV 4:2:0
[10:56:32] [PASSED] YUV 4:2:2
[10:56:32] [PASSED] YUV 4:4:4
[10:56:32] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[10:56:32] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[10:56:32] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[10:56:32] ============= drm_damage_helper (21 subtests) ==============
[10:56:32] [PASSED] drm_test_damage_iter_no_damage
[10:56:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[10:56:32] [PASSED] drm_test_damage_iter_no_damage_src_moved
[10:56:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[10:56:32] [PASSED] drm_test_damage_iter_no_damage_not_visible
[10:56:32] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[10:56:32] [PASSED] drm_test_damage_iter_no_damage_no_fb
[10:56:32] [PASSED] drm_test_damage_iter_simple_damage
[10:56:32] [PASSED] drm_test_damage_iter_single_damage
[10:56:32] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[10:56:32] [PASSED] drm_test_damage_iter_single_damage_outside_src
[10:56:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[10:56:32] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[10:56:32] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[10:56:32] [PASSED] drm_test_damage_iter_single_damage_src_moved
[10:56:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[10:56:32] [PASSED] drm_test_damage_iter_damage
[10:56:32] [PASSED] drm_test_damage_iter_damage_one_intersect
[10:56:32] [PASSED] drm_test_damage_iter_damage_one_outside
[10:56:32] [PASSED] drm_test_damage_iter_damage_src_moved
[10:56:32] [PASSED] drm_test_damage_iter_damage_not_visible
[10:56:32] ================ [PASSED] drm_damage_helper ================
[10:56:32] ============== drm_dp_mst_helper (3 subtests) ==============
[10:56:32] ============== drm_test_dp_mst_calc_pbn_mode ==============
[10:56:32] [PASSED] Clock 154000 BPP 30 DSC disabled
[10:56:32] [PASSED] Clock 234000 BPP 30 DSC disabled
[10:56:32] [PASSED] Clock 297000 BPP 24 DSC disabled
[10:56:32] [PASSED] Clock 332880 BPP 24 DSC enabled
[10:56:32] [PASSED] Clock 324540 BPP 24 DSC enabled
[10:56:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[10:56:32] ============== drm_test_dp_mst_calc_pbn_div ===============
[10:56:32] [PASSED] Link rate 2000000 lane count 4
[10:56:32] [PASSED] Link rate 2000000 lane count 2
[10:56:32] [PASSED] Link rate 2000000 lane count 1
[10:56:32] [PASSED] Link rate 1350000 lane count 4
[10:56:32] [PASSED] Link rate 1350000 lane count 2
[10:56:32] [PASSED] Link rate 1350000 lane count 1
[10:56:32] [PASSED] Link rate 1000000 lane count 4
[10:56:32] [PASSED] Link rate 1000000 lane count 2
[10:56:32] [PASSED] Link rate 1000000 lane count 1
[10:56:32] [PASSED] Link rate 810000 lane count 4
[10:56:32] [PASSED] Link rate 810000 lane count 2
[10:56:32] [PASSED] Link rate 810000 lane count 1
[10:56:32] [PASSED] Link rate 540000 lane count 4
[10:56:32] [PASSED] Link rate 540000 lane count 2
[10:56:32] [PASSED] Link rate 540000 lane count 1
[10:56:32] [PASSED] Link rate 270000 lane count 4
[10:56:32] [PASSED] Link rate 270000 lane count 2
[10:56:32] [PASSED] Link rate 270000 lane count 1
[10:56:32] [PASSED] Link rate 162000 lane count 4
[10:56:32] [PASSED] Link rate 162000 lane count 2
[10:56:32] [PASSED] Link rate 162000 lane count 1
[10:56:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[10:56:32] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[10:56:32] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[10:56:32] [PASSED] DP_POWER_UP_PHY with port number
[10:56:32] [PASSED] DP_POWER_DOWN_PHY with port number
[10:56:32] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[10:56:32] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[10:56:32] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[10:56:32] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[10:56:32] [PASSED] DP_QUERY_PAYLOAD with port number
[10:56:32] [PASSED] DP_QUERY_PAYLOAD with VCPI
[10:56:32] [PASSED] DP_REMOTE_DPCD_READ with port number
[10:56:32] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[10:56:32] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[10:56:32] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[10:56:32] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[10:56:32] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[10:56:32] [PASSED] DP_REMOTE_I2C_READ with port number
[10:56:32] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[10:56:32] [PASSED] DP_REMOTE_I2C_READ with transactions array
[10:56:32] [PASSED] DP_REMOTE_I2C_WRITE with port number
[10:56:32] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[10:56:32] [PASSED] DP_REMOTE_I2C_WRITE with data array
[10:56:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[10:56:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[10:56:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[10:56:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[10:56:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[10:56:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[10:56:32] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[10:56:32] ================ [PASSED] drm_dp_mst_helper ================
[10:56:32] ================== drm_exec (7 subtests) ===================
[10:56:32] [PASSED] sanitycheck
[10:56:32] [PASSED] test_lock
[10:56:32] [PASSED] test_lock_unlock
[10:56:32] [PASSED] test_duplicates
[10:56:32] [PASSED] test_prepare
[10:56:32] [PASSED] test_prepare_array
[10:56:32] [PASSED] test_multiple_loops
[10:56:32] ==================== [PASSED] drm_exec =====================
[10:56:32] =========== drm_format_helper_test (17 subtests) ===========
[10:56:32] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[10:56:32] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[10:56:32] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[10:56:32] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[10:56:32] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[10:56:32] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[10:56:32] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[10:56:32] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[10:56:32] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[10:56:32] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[10:56:32] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[10:56:32] ============== drm_test_fb_xrgb8888_to_mono ===============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[10:56:32] ==================== drm_test_fb_swab =====================
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ================ [PASSED] drm_test_fb_swab =================
[10:56:32] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[10:56:32] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[10:56:32] [PASSED] single_pixel_source_buffer
[10:56:32] [PASSED] single_pixel_clip_rectangle
[10:56:32] [PASSED] well_known_colors
[10:56:32] [PASSED] destination_pitch
[10:56:32] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[10:56:32] ================= drm_test_fb_clip_offset =================
[10:56:32] [PASSED] pass through
[10:56:32] [PASSED] horizontal offset
[10:56:32] [PASSED] vertical offset
[10:56:32] [PASSED] horizontal and vertical offset
[10:56:32] [PASSED] horizontal offset (custom pitch)
[10:56:32] [PASSED] vertical offset (custom pitch)
[10:56:32] [PASSED] horizontal and vertical offset (custom pitch)
[10:56:32] ============= [PASSED] drm_test_fb_clip_offset =============
[10:56:32] =================== drm_test_fb_memcpy ====================
[10:56:32] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[10:56:32] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[10:56:32] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[10:56:32] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[10:56:32] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[10:56:32] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[10:56:32] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[10:56:32] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[10:56:32] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[10:56:32] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[10:56:32] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[10:56:32] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[10:56:32] =============== [PASSED] drm_test_fb_memcpy ================
[10:56:32] ============= [PASSED] drm_format_helper_test ==============
[10:56:32] ================= drm_format (18 subtests) =================
[10:56:32] [PASSED] drm_test_format_block_width_invalid
[10:56:32] [PASSED] drm_test_format_block_width_one_plane
[10:56:32] [PASSED] drm_test_format_block_width_two_plane
[10:56:32] [PASSED] drm_test_format_block_width_three_plane
[10:56:32] [PASSED] drm_test_format_block_width_tiled
[10:56:32] [PASSED] drm_test_format_block_height_invalid
[10:56:32] [PASSED] drm_test_format_block_height_one_plane
[10:56:32] [PASSED] drm_test_format_block_height_two_plane
[10:56:32] [PASSED] drm_test_format_block_height_three_plane
[10:56:32] [PASSED] drm_test_format_block_height_tiled
[10:56:32] [PASSED] drm_test_format_min_pitch_invalid
[10:56:32] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[10:56:32] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[10:56:32] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[10:56:32] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[10:56:32] [PASSED] drm_test_format_min_pitch_two_plane
[10:56:32] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[10:56:32] [PASSED] drm_test_format_min_pitch_tiled
[10:56:32] =================== [PASSED] drm_format ====================
[10:56:32] ============== drm_framebuffer (10 subtests) ===============
[10:56:32] ========== drm_test_framebuffer_check_src_coords ==========
[10:56:32] [PASSED] Success: source fits into fb
[10:56:32] [PASSED] Fail: overflowing fb with x-axis coordinate
[10:56:32] [PASSED] Fail: overflowing fb with y-axis coordinate
[10:56:32] [PASSED] Fail: overflowing fb with source width
[10:56:32] [PASSED] Fail: overflowing fb with source height
[10:56:32] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[10:56:32] [PASSED] drm_test_framebuffer_cleanup
[10:56:32] =============== drm_test_framebuffer_create ===============
[10:56:32] [PASSED] ABGR8888 normal sizes
[10:56:32] [PASSED] ABGR8888 max sizes
[10:56:32] [PASSED] ABGR8888 pitch greater than min required
[10:56:32] [PASSED] ABGR8888 pitch less than min required
[10:56:32] [PASSED] ABGR8888 Invalid width
[10:56:32] [PASSED] ABGR8888 Invalid buffer handle
[10:56:32] [PASSED] No pixel format
[10:56:32] [PASSED] ABGR8888 Width 0
[10:56:32] [PASSED] ABGR8888 Height 0
[10:56:32] [PASSED] ABGR8888 Out of bound height * pitch combination
[10:56:32] [PASSED] ABGR8888 Large buffer offset
[10:56:32] [PASSED] ABGR8888 Buffer offset for inexistent plane
[10:56:32] [PASSED] ABGR8888 Invalid flag
[10:56:32] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[10:56:32] [PASSED] ABGR8888 Valid buffer modifier
[10:56:32] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[10:56:32] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[10:56:32] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[10:56:32] [PASSED] NV12 Normal sizes
[10:56:32] [PASSED] NV12 Max sizes
[10:56:32] [PASSED] NV12 Invalid pitch
[10:56:32] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[10:56:32] [PASSED] NV12 different modifier per-plane
[10:56:32] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[10:56:32] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[10:56:32] [PASSED] NV12 Modifier for inexistent plane
[10:56:32] [PASSED] NV12 Handle for inexistent plane
[10:56:32] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[10:56:32] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[10:56:32] [PASSED] YVU420 Normal sizes
[10:56:32] [PASSED] YVU420 Max sizes
[10:56:32] [PASSED] YVU420 Invalid pitch
[10:56:32] [PASSED] YVU420 Different pitches
[10:56:32] [PASSED] YVU420 Different buffer offsets/pitches
[10:56:32] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[10:56:32] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[10:56:32] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[10:56:32] [PASSED] YVU420 Valid modifier
[10:56:32] [PASSED] YVU420 Different modifiers per plane
[10:56:32] [PASSED] YVU420 Modifier for inexistent plane
[10:56:32] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[10:56:32] [PASSED] X0L2 Normal sizes
[10:56:32] [PASSED] X0L2 Max sizes
[10:56:32] [PASSED] X0L2 Invalid pitch
[10:56:32] [PASSED] X0L2 Pitch greater than minimum required
[10:56:32] [PASSED] X0L2 Handle for inexistent plane
[10:56:32] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[10:56:32] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[10:56:32] [PASSED] X0L2 Valid modifier
[10:56:32] [PASSED] X0L2 Modifier for inexistent plane
[10:56:32] =========== [PASSED] drm_test_framebuffer_create ===========
[10:56:32] [PASSED] drm_test_framebuffer_free
[10:56:32] [PASSED] drm_test_framebuffer_init
[10:56:32] [PASSED] drm_test_framebuffer_init_bad_format
[10:56:32] [PASSED] drm_test_framebuffer_init_dev_mismatch
[10:56:32] [PASSED] drm_test_framebuffer_lookup
[10:56:32] [PASSED] drm_test_framebuffer_lookup_inexistent
[10:56:32] [PASSED] drm_test_framebuffer_modifiers_not_supported
[10:56:32] ================= [PASSED] drm_framebuffer =================
[10:56:32] ================ drm_gem_shmem (8 subtests) ================
[10:56:32] [PASSED] drm_gem_shmem_test_obj_create
[10:56:32] [PASSED] drm_gem_shmem_test_obj_create_private
[10:56:32] [PASSED] drm_gem_shmem_test_pin_pages
[10:56:32] [PASSED] drm_gem_shmem_test_vmap
[10:56:32] [PASSED] drm_gem_shmem_test_get_pages_sgt
[10:56:32] [PASSED] drm_gem_shmem_test_get_sg_table
[10:56:32] [PASSED] drm_gem_shmem_test_madvise
[10:56:32] [PASSED] drm_gem_shmem_test_purge
[10:56:32] ================== [PASSED] drm_gem_shmem ==================
[10:56:32] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[10:56:32] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[10:56:32] [PASSED] Automatic
[10:56:32] [PASSED] Full
[10:56:32] [PASSED] Limited 16:235
[10:56:32] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[10:56:32] [PASSED] drm_test_check_disable_connector
[10:56:32] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[10:56:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[10:56:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[10:56:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[10:56:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[10:56:32] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[10:56:32] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[10:56:32] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[10:56:32] [PASSED] drm_test_check_output_bpc_dvi
[10:56:32] [PASSED] drm_test_check_output_bpc_format_vic_1
[10:56:32] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[10:56:32] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[10:56:32] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[10:56:32] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[10:56:32] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[10:56:32] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[10:56:32] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[10:56:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[10:56:32] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[10:56:32] [PASSED] drm_test_check_broadcast_rgb_value
[10:56:32] [PASSED] drm_test_check_bpc_8_value
[10:56:32] [PASSED] drm_test_check_bpc_10_value
[10:56:32] [PASSED] drm_test_check_bpc_12_value
[10:56:32] [PASSED] drm_test_check_format_value
[10:56:32] [PASSED] drm_test_check_tmds_char_value
[10:56:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[10:56:32] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[10:56:32] [PASSED] drm_test_check_mode_valid
[10:56:32] [PASSED] drm_test_check_mode_valid_reject
[10:56:32] [PASSED] drm_test_check_mode_valid_reject_rate
[10:56:32] [PASSED] drm_test_check_mode_valid_reject_max_clock
[10:56:32] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[10:56:32] ================= drm_managed (2 subtests) =================
[10:56:32] [PASSED] drm_test_managed_release_action
[10:56:32] [PASSED] drm_test_managed_run_action
[10:56:32] =================== [PASSED] drm_managed ===================
[10:56:32] =================== drm_mm (6 subtests) ====================
[10:56:32] [PASSED] drm_test_mm_init
[10:56:32] [PASSED] drm_test_mm_debug
[10:56:32] [PASSED] drm_test_mm_align32
[10:56:32] [PASSED] drm_test_mm_align64
[10:56:32] [PASSED] drm_test_mm_lowest
[10:56:32] [PASSED] drm_test_mm_highest
[10:56:32] ===================== [PASSED] drm_mm ======================
[10:56:32] ============= drm_modes_analog_tv (5 subtests) =============
[10:56:32] [PASSED] drm_test_modes_analog_tv_mono_576i
[10:56:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[10:56:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[10:56:32] [PASSED] drm_test_modes_analog_tv_pal_576i
[10:56:32] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[10:56:32] =============== [PASSED] drm_modes_analog_tv ===============
[10:56:32] ============== drm_plane_helper (2 subtests) ===============
[10:56:32] =============== drm_test_check_plane_state ================
[10:56:32] [PASSED] clipping_simple
[10:56:32] [PASSED] clipping_rotate_reflect
[10:56:32] [PASSED] positioning_simple
[10:56:32] [PASSED] upscaling
[10:56:32] [PASSED] downscaling
[10:56:32] [PASSED] rounding1
[10:56:32] [PASSED] rounding2
[10:56:32] [PASSED] rounding3
[10:56:32] [PASSED] rounding4
[10:56:32] =========== [PASSED] drm_test_check_plane_state ============
[10:56:32] =========== drm_test_check_invalid_plane_state ============
[10:56:32] [PASSED] positioning_invalid
[10:56:32] [PASSED] upscaling_invalid
[10:56:32] [PASSED] downscaling_invalid
[10:56:32] ======= [PASSED] drm_test_check_invalid_plane_state ========
[10:56:32] ================ [PASSED] drm_plane_helper =================
[10:56:32] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[10:56:32] ====== drm_test_connector_helper_tv_get_modes_check =======
[10:56:32] [PASSED] None
[10:56:32] [PASSED] PAL
[10:56:32] [PASSED] NTSC
[10:56:32] [PASSED] Both, NTSC Default
[10:56:32] [PASSED] Both, PAL Default
[10:56:32] [PASSED] Both, NTSC Default, with PAL on command-line
[10:56:32] [PASSED] Both, PAL Default, with NTSC on command-line
[10:56:32] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[10:56:32] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[10:56:32] ================== drm_rect (9 subtests) ===================
[10:56:32] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[10:56:32] [PASSED] drm_test_rect_clip_scaled_not_clipped
[10:56:32] [PASSED] drm_test_rect_clip_scaled_clipped
[10:56:32] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[10:56:32] ================= drm_test_rect_intersect =================
[10:56:32] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[10:56:32] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[10:56:32] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[10:56:32] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[10:56:32] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[10:56:32] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[10:56:32] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[10:56:32] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[10:56:32] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[10:56:32] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[10:56:32] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[10:56:32] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[10:56:32] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[10:56:32] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[10:56:32] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[10:56:32] ============= [PASSED] drm_test_rect_intersect =============
[10:56:32] ================ drm_test_rect_calc_hscale ================
[10:56:32] [PASSED] normal use
[10:56:32] [PASSED] out of max range
[10:56:32] [PASSED] out of min range
[10:56:32] [PASSED] zero dst
[10:56:32] [PASSED] negative src
[10:56:32] [PASSED] negative dst
[10:56:32] ============ [PASSED] drm_test_rect_calc_hscale ============
[10:56:32] ================ drm_test_rect_calc_vscale ================
[10:56:32] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[10:56:32] [PASSED] out of max range
[10:56:32] [PASSED] out of min range
[10:56:32] [PASSED] zero dst
[10:56:32] [PASSED] negative src
[10:56:32] [PASSED] negative dst
[10:56:32] ============ [PASSED] drm_test_rect_calc_vscale ============
[10:56:32] ================== drm_test_rect_rotate ===================
[10:56:32] [PASSED] reflect-x
[10:56:32] [PASSED] reflect-y
[10:56:32] [PASSED] rotate-0
[10:56:32] [PASSED] rotate-90
[10:56:32] [PASSED] rotate-180
[10:56:32] [PASSED] rotate-270
[10:56:32] ============== [PASSED] drm_test_rect_rotate ===============
[10:56:32] ================ drm_test_rect_rotate_inv =================
[10:56:32] [PASSED] reflect-x
[10:56:32] [PASSED] reflect-y
[10:56:32] [PASSED] rotate-0
[10:56:32] [PASSED] rotate-90
[10:56:32] [PASSED] rotate-180
[10:56:32] [PASSED] rotate-270
[10:56:32] ============ [PASSED] drm_test_rect_rotate_inv =============
[10:56:32] ==================== [PASSED] drm_rect =====================
[10:56:32] ============ drm_sysfb_modeset_test (1 subtest) ============
[10:56:32] ============ drm_test_sysfb_build_fourcc_list =============
[10:56:32] [PASSED] no native formats
[10:56:32] [PASSED] XRGB8888 as native format
[10:56:32] [PASSED] remove duplicates
[10:56:32] [PASSED] convert alpha formats
[10:56:32] [PASSED] random formats
[10:56:32] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[10:56:32] ============= [PASSED] drm_sysfb_modeset_test ==============
[10:56:32] ============================================================
[10:56:32] Testing complete. Ran 622 tests: passed: 622
[10:56:32] Elapsed time: 36.597s total, 2.968s configuring, 33.211s building, 0.388s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[10:56:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:56: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
[10:56:48] Starting KUnit Kernel (1/1)...
[10:56:48] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:56:49] ================= ttm_device (5 subtests) ==================
[10:56:49] [PASSED] ttm_device_init_basic
[10:56:49] [PASSED] ttm_device_init_multiple
[10:56:49] [PASSED] ttm_device_fini_basic
[10:56:49] [PASSED] ttm_device_init_no_vma_man
[10:56:49] ================== ttm_device_init_pools ==================
[10:56:49] [PASSED] No DMA allocations, no DMA32 required
[10:56:49] [PASSED] DMA allocations, DMA32 required
[10:56:49] [PASSED] No DMA allocations, DMA32 required
[10:56:49] [PASSED] DMA allocations, no DMA32 required
[10:56:49] ============== [PASSED] ttm_device_init_pools ==============
[10:56:49] =================== [PASSED] ttm_device ====================
[10:56:49] ================== ttm_pool (8 subtests) ===================
[10:56:49] ================== ttm_pool_alloc_basic ===================
[10:56:49] [PASSED] One page
[10:56:49] [PASSED] More than one page
[10:56:49] [PASSED] Above the allocation limit
[10:56:49] [PASSED] One page, with coherent DMA mappings enabled
[10:56:49] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:56:49] ============== [PASSED] ttm_pool_alloc_basic ===============
[10:56:49] ============== ttm_pool_alloc_basic_dma_addr ==============
[10:56:49] [PASSED] One page
[10:56:49] [PASSED] More than one page
[10:56:49] [PASSED] Above the allocation limit
[10:56:49] [PASSED] One page, with coherent DMA mappings enabled
[10:56:49] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:56:49] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[10:56:49] [PASSED] ttm_pool_alloc_order_caching_match
[10:56:49] [PASSED] ttm_pool_alloc_caching_mismatch
[10:56:49] [PASSED] ttm_pool_alloc_order_mismatch
[10:56:49] [PASSED] ttm_pool_free_dma_alloc
[10:56:49] [PASSED] ttm_pool_free_no_dma_alloc
[10:56:49] [PASSED] ttm_pool_fini_basic
[10:56:49] ==================== [PASSED] ttm_pool =====================
[10:56:49] ================ ttm_resource (8 subtests) =================
[10:56:49] ================= ttm_resource_init_basic =================
[10:56:49] [PASSED] Init resource in TTM_PL_SYSTEM
[10:56:49] [PASSED] Init resource in TTM_PL_VRAM
[10:56:49] [PASSED] Init resource in a private placement
[10:56:49] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[10:56:49] ============= [PASSED] ttm_resource_init_basic =============
[10:56:49] [PASSED] ttm_resource_init_pinned
[10:56:49] [PASSED] ttm_resource_fini_basic
[10:56:49] [PASSED] ttm_resource_manager_init_basic
[10:56:49] [PASSED] ttm_resource_manager_usage_basic
[10:56:49] [PASSED] ttm_resource_manager_set_used_basic
[10:56:49] [PASSED] ttm_sys_man_alloc_basic
[10:56:49] [PASSED] ttm_sys_man_free_basic
[10:56:49] ================== [PASSED] ttm_resource ===================
[10:56:49] =================== ttm_tt (15 subtests) ===================
[10:56:49] ==================== ttm_tt_init_basic ====================
[10:56:49] [PASSED] Page-aligned size
[10:56:49] [PASSED] Extra pages requested
[10:56:49] ================ [PASSED] ttm_tt_init_basic ================
[10:56:49] [PASSED] ttm_tt_init_misaligned
[10:56:49] [PASSED] ttm_tt_fini_basic
[10:56:49] [PASSED] ttm_tt_fini_sg
[10:56:49] [PASSED] ttm_tt_fini_shmem
[10:56:49] [PASSED] ttm_tt_create_basic
[10:56:49] [PASSED] ttm_tt_create_invalid_bo_type
[10:56:49] [PASSED] ttm_tt_create_ttm_exists
[10:56:49] [PASSED] ttm_tt_create_failed
[10:56:49] [PASSED] ttm_tt_destroy_basic
[10:56:49] [PASSED] ttm_tt_populate_null_ttm
[10:56:49] [PASSED] ttm_tt_populate_populated_ttm
[10:56:49] [PASSED] ttm_tt_unpopulate_basic
[10:56:49] [PASSED] ttm_tt_unpopulate_empty_ttm
[10:56:49] [PASSED] ttm_tt_swapin_basic
[10:56:49] ===================== [PASSED] ttm_tt ======================
[10:56:49] =================== ttm_bo (14 subtests) ===================
[10:56:49] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[10:56:49] [PASSED] Cannot be interrupted and sleeps
[10:56:49] [PASSED] Cannot be interrupted, locks straight away
[10:56:49] [PASSED] Can be interrupted, sleeps
[10:56:49] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[10:56:49] [PASSED] ttm_bo_reserve_locked_no_sleep
[10:56:49] [PASSED] ttm_bo_reserve_no_wait_ticket
[10:56:49] [PASSED] ttm_bo_reserve_double_resv
[10:56:49] [PASSED] ttm_bo_reserve_interrupted
[10:56:49] [PASSED] ttm_bo_reserve_deadlock
[10:56:49] [PASSED] ttm_bo_unreserve_basic
[10:56:49] [PASSED] ttm_bo_unreserve_pinned
[10:56:49] [PASSED] ttm_bo_unreserve_bulk
[10:56:49] [PASSED] ttm_bo_fini_basic
[10:56:49] [PASSED] ttm_bo_fini_shared_resv
[10:56:49] [PASSED] ttm_bo_pin_basic
[10:56:49] [PASSED] ttm_bo_pin_unpin_resource
[10:56:49] [PASSED] ttm_bo_multiple_pin_one_unpin
[10:56:49] ===================== [PASSED] ttm_bo ======================
[10:56:49] ============== ttm_bo_validate (21 subtests) ===============
[10:56:49] ============== ttm_bo_init_reserved_sys_man ===============
[10:56:49] [PASSED] Buffer object for userspace
[10:56:49] [PASSED] Kernel buffer object
[10:56:49] [PASSED] Shared buffer object
[10:56:49] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[10:56:49] ============== ttm_bo_init_reserved_mock_man ==============
[10:56:49] [PASSED] Buffer object for userspace
[10:56:49] [PASSED] Kernel buffer object
[10:56:49] [PASSED] Shared buffer object
[10:56:49] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[10:56:49] [PASSED] ttm_bo_init_reserved_resv
[10:56:49] ================== ttm_bo_validate_basic ==================
[10:56:49] [PASSED] Buffer object for userspace
[10:56:49] [PASSED] Kernel buffer object
[10:56:49] [PASSED] Shared buffer object
[10:56:49] ============== [PASSED] ttm_bo_validate_basic ==============
[10:56:49] [PASSED] ttm_bo_validate_invalid_placement
[10:56:49] ============= ttm_bo_validate_same_placement ==============
[10:56:49] [PASSED] System manager
[10:56:49] [PASSED] VRAM manager
[10:56:49] ========= [PASSED] ttm_bo_validate_same_placement ==========
[10:56:49] [PASSED] ttm_bo_validate_failed_alloc
[10:56:49] [PASSED] ttm_bo_validate_pinned
[10:56:49] [PASSED] ttm_bo_validate_busy_placement
[10:56:49] ================ ttm_bo_validate_multihop =================
[10:56:49] [PASSED] Buffer object for userspace
[10:56:49] [PASSED] Kernel buffer object
[10:56:49] [PASSED] Shared buffer object
[10:56:49] ============ [PASSED] ttm_bo_validate_multihop =============
[10:56:49] ========== ttm_bo_validate_no_placement_signaled ==========
[10:56:49] [PASSED] Buffer object in system domain, no page vector
[10:56:49] [PASSED] Buffer object in system domain with an existing page vector
[10:56:49] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[10:56:49] ======== ttm_bo_validate_no_placement_not_signaled ========
[10:56:49] [PASSED] Buffer object for userspace
[10:56:49] [PASSED] Kernel buffer object
[10:56:49] [PASSED] Shared buffer object
[10:56:49] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[10:56:49] [PASSED] ttm_bo_validate_move_fence_signaled
[10:56:49] ========= ttm_bo_validate_move_fence_not_signaled =========
[10:56:49] [PASSED] Waits for GPU
[10:56:49] [PASSED] Tries to lock straight away
[10:56:49] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[10:56:49] [PASSED] ttm_bo_validate_happy_evict
[10:56:49] [PASSED] ttm_bo_validate_all_pinned_evict
[10:56:49] [PASSED] ttm_bo_validate_allowed_only_evict
[10:56:49] [PASSED] ttm_bo_validate_deleted_evict
[10:56:49] [PASSED] ttm_bo_validate_busy_domain_evict
[10:56:49] [PASSED] ttm_bo_validate_evict_gutting
[10:56:49] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[10:56:49] ================= [PASSED] ttm_bo_validate =================
[10:56:49] ============================================================
[10:56:49] Testing complete. Ran 101 tests: passed: 101
[10:56:49] Elapsed time: 16.492s total, 1.739s configuring, 14.476s building, 0.246s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 44+ messages in thread* ✓ Xe.CI.BAT: success for AuxCCS handling and render compression modifiers (rev5)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (28 preceding siblings ...)
2025-10-23 10:56 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-23 12:15 ` Patchwork
2025-10-23 18:58 ` ✗ Xe.CI.Full: failure " Patchwork
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-23 12:15 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 878 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev5)
URL : https://patchwork.freedesktop.org/series/156189/
State : success
== Summary ==
CI Bug Log - changes from xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4_BAT -> xe-pw-156189v5_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4 -> xe-pw-156189v5
IGT_8595: 8595
xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4: 5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4
xe-pw-156189v5: 156189v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/index.html
[-- Attachment #2: Type: text/html, Size: 1426 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread* ✗ Xe.CI.Full: failure for AuxCCS handling and render compression modifiers (rev5)
2025-10-20 7:58 [PATCH v13 00/12] AuxCCS handling and render compression modifiers Tvrtko Ursulin
` (29 preceding siblings ...)
2025-10-23 12:15 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-23 18:58 ` Patchwork
30 siblings, 0 replies; 44+ messages in thread
From: Patchwork @ 2025-10-23 18:58 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 55056 bytes --]
== Series Details ==
Series: AuxCCS handling and render compression modifiers (rev5)
URL : https://patchwork.freedesktop.org/series/156189/
State : failure
== Summary ==
CI Bug Log - changes from xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4_FULL -> xe-pw-156189v5_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156189v5_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156189v5_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-156189v5_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-to-x:
- shard-adlp: NOTRUN -> [FAIL][1] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-to-x.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y:
- shard-adlp: [DMESG-WARN][2] ([Intel XE#4543]) -> [DMESG-WARN][3] +1 other test dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-d-hdmi-a-1-y.html
New tests
---------
New tests have been introduced between xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4_FULL and xe-pw-156189v5_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.16] 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.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.13] 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.11] 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.24] 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.13] 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 fail(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.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.13] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.22] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-mc-ccs-to-y-rc-ccs-cc:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-cc-to-y-mc-ccs:
- Statuses : 1 pass(s)
- Exec time: [0.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.10] 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.10] s
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-mc-ccs-to-y-mc-ccs:
- Statuses : 1 fail(s)
- Exec time: [0.24] 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.10] 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-156189v5_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-adlp: [PASS][4] -> [DMESG-WARN][5] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-6/igt@core_hotunplug@hotrebind-lateclose.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-2/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-1-y-rc-ccs:
- shard-adlp: NOTRUN -> [DMESG-WARN][6] ([Intel XE#4543]) +3 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1:
- shard-adlp: [PASS][7] -> [FAIL][8] ([Intel XE#3884])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-1/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#316]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#610])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#787]) +62 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2907])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#3862]) +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-466/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-rc-ccs-cc:
- shard-dg2-set2: [PASS][19] -> [INCOMPLETE][20] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#6168] / [i915#14968])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-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-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#306])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#373]) +7 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#1178])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455]) +10 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-466/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2291]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#323])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2316]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1421])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
- shard-adlp: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#4543]) +10 other tests dmesg-warn
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-9/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-8/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible:
- shard-adlp: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5208])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-6/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-2/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#4543] / [Intel XE#5208])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-1/igt@kms_flip@flip-vs-rmfb.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-8/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][42] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-466/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1397] / [Intel XE#1745])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/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][44] ([Intel XE#1397])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-cc-to-y-rc-ccs:
- shard-adlp: NOTRUN -> [DMESG-FAIL][45] ([Intel XE#4543]) +1 other test dmesg-fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-rc-ccs-cc-to-y-rc-ccs.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x:
- shard-adlp: [PASS][46] -> [DMESG-FAIL][47] ([Intel XE#4543])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#651])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#656]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#651]) +17 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#6312]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#653]) +18 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#1503])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-4/igt@kms_hdr@static-toggle.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#346])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#4596])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-x.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2571])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#870])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1122] / [Intel XE#1406])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-466/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#3414] / [Intel XE#3904])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#1435]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#6360]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#6010])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@xe_configfs@survivability-mode.html
* igt@xe_copy_basic@mem-page-copy-1:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#5300])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@xe_copy_basic@mem-page-copy-1.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1126])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#4837]) +10 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-466/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#4837])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1392])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#288]) +15 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_system_allocator@process-many-stride-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4943])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@xe_exec_system_allocator@process-many-stride-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-stride-new-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#4915]) +200 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-stride-new-nomemset.html
* igt@xe_exec_threads@threads-bal-fd-rebind:
- shard-adlp: [PASS][79] -> [DMESG-FAIL][80] ([Intel XE#3876] / [Intel XE#5213])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-2/igt@xe_exec_threads@threads-bal-fd-rebind.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-6/igt@xe_exec_threads@threads-bal-fd-rebind.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: NOTRUN -> [FAIL][81] ([Intel XE#3099]) +2 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@xe_live_ktest@xe_bo.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#3573]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-466/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2838] / [Intel XE#979])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-adlp: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-9/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pmu@gt-c6-idle:
- shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#6366])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@xe_pmu@gt-c6-idle.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#4733]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#944])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-433/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#4351])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][90] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-adlp: [SKIP][92] ([Intel XE#455] / [Intel XE#787]) -> [PASS][93] +52 other tests pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-1:
- shard-adlp: [SKIP][94] ([Intel XE#787]) -> [PASS][95] +78 other tests pass
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-1.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][96] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][98] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [SKIP][100] ([Intel XE#2291]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][102] ([Intel XE#5299]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: [SKIP][104] ([Intel XE#2316]) -> [PASS][105] +6 other tests pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][106] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][107] +1 other test pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][108] ([Intel XE#4543]) -> [PASS][109] +11 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-1/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-8/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][110] ([Intel XE#455]) -> [PASS][111] +5 other tests pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/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][112] ([Intel XE#1874]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [SKIP][114] ([Intel XE#1503]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-8/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-adlp: [DMESG-WARN][116] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][117] +1 other test pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-8/igt@kms_invalid_mode@bad-vsync-end.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-9/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][118] ([Intel XE#3012]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][120] ([Intel XE#5625]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][122] ([Intel XE#5893]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-adlp: [DMESG-WARN][124] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-9/igt@xe_pm@s2idle-d3hot-basic-exec.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-3/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [DMESG-FAIL][126] ([Intel XE#3868] / [Intel XE#5213]) -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
#### Warnings ####
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-adlp: [SKIP][128] ([Intel XE#455] / [Intel XE#787]) -> [DMESG-WARN][129] ([Intel XE#2953] / [Intel XE#4173])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: [SKIP][130] ([Intel XE#787]) -> [DMESG-WARN][131] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][132] ([Intel XE#2341]) -> [FAIL][133] ([Intel XE#1178])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][134] ([Intel XE#1178]) -> [SKIP][135] ([Intel XE#2341])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-1/igt@kms_content_protection@legacy.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: [ABORT][136] ([Intel XE#4760]) -> [SKIP][137] ([Intel XE#1397] / [Intel XE#1745])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: [ABORT][138] ([Intel XE#4760]) -> [SKIP][139] ([Intel XE#1397])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-adlp: [SKIP][140] ([Intel XE#455]) -> [DMESG-FAIL][141] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y:
- shard-adlp: [DMESG-FAIL][142] ([Intel XE#4543]) -> [FAIL][143] ([Intel XE#1874])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][144] ([Intel XE#2311]) -> [SKIP][145] ([Intel XE#2312]) +15 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-adlp: [FAIL][146] ([Intel XE#5671]) -> [DMESG-FAIL][147] ([Intel XE#4543])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][148] ([Intel XE#5390]) -> [SKIP][149] ([Intel XE#2312]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][150] ([Intel XE#2312]) -> [SKIP][151] ([Intel XE#5390]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move:
- shard-bmg: [SKIP][152] ([Intel XE#2312]) -> [SKIP][153] ([Intel XE#2311]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][154] ([Intel XE#2312]) -> [SKIP][155] ([Intel XE#2313]) +9 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][156] ([Intel XE#2313]) -> [SKIP][157] ([Intel XE#2312]) +15 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][158] ([Intel XE#1729]) -> [SKIP][159] ([Intel XE#2426])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][160] ([Intel XE#2509]) -> [SKIP][161] ([Intel XE#2426])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][162] ([Intel XE#4917] / [Intel XE#5466]) -> [ABORT][163] ([Intel XE#5466])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#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#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#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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[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#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#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099
[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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#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#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#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[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#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[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#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[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#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6366
[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#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
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968
Build changes
-------------
* Linux: xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4 -> xe-pw-156189v5
IGT_8595: 8595
xe-3970-5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4: 5beb0e7ca9d13d6a84b0d371c1612f1edf51c7f4
xe-pw-156189v5: 156189v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156189v5/index.html
[-- Attachment #2: Type: text/html, Size: 64401 bytes --]
^ permalink raw reply [flat|nested] 44+ messages in thread