* [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
@ 2026-06-03 15:01 Rodrigo Vivi
2026-06-03 15:01 ` [PATCH 2/3] drm/xe/lrc: fix spurious warning when reading context timestamp Rodrigo Vivi
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Rodrigo Vivi @ 2026-06-03 15:01 UTC (permalink / raw)
To: intel-xe; +Cc: Rodrigo Vivi, Matthew Auld, Sanjay Yadav, Himal Prasad Ghimiray
Jobs that GuC never scheduled were silently errored out instead of
triggering a GT reset. Kernel jobs that exhaust all recovery attempts
should wedge the device rather than silently fail, and userspace VM bind
queues should stay permanently banned rather than being reset and retried.
The queue is banned early in the timeout handler to signal the G2H
scheduling-done handler so it wakes the disable-scheduling waiter; without
it the waiter sleeps the full 5s timeout. For kernel queues the ban is
cleared before rearming so that guc_exec_queue_start() can resubmit jobs
after the GT reset — a banned queue would block resubmission and cause an
infinite TDR loop.
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Assisted-by: GitHub-Copilot:claude-sonnet-4.6
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_guc_submit.c | 31 +++++++++++++++++++++---------
1 file changed, 22 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index ab501513d806..bbccba367626 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -158,6 +158,11 @@ static void set_exec_queue_banned(struct xe_exec_queue *q)
atomic_or(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
}
+static void clear_exec_queue_banned(struct xe_exec_queue *q)
+{
+ atomic_andnot(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
+}
+
static bool exec_queue_suspended(struct xe_exec_queue *q)
{
return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_SUSPENDED;
@@ -1376,7 +1381,8 @@ static bool check_timeout(struct xe_exec_queue *q, struct xe_sched_job *job)
xe_sched_job_seqno(job), xe_sched_job_lrc_seqno(job),
q->guc->id);
- return xe_sched_invalidate_job(job, 2);
+ /* GuC never scheduled this job - let the caller trigger a GT reset. */
+ return true;
}
ctx_timestamp = lower_32_bits(xe_lrc_timestamp(q->lrc[0]));
@@ -1622,19 +1628,26 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
q->guc->id, q->flags);
/*
- * Kernel jobs should never fail, nor should VM jobs if they do
- * somethings has gone wrong and the GT needs a reset
+ * Kernel jobs should never fail permanently. Attempt GT reset and
+ * resubmit; if karma is exhausted the hardware is unrecoverable so
+ * wedge the device.
+ *
+ * Userspace VM bind queues are banned permanently on timeout
+. * No reset is attempted, the ban already
+ * signals the G2H handler, and the queue stays banned so the job
+ * errors out cleanly.
*/
- xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_KERNEL,
- "Kernel-submitted job timed out\n");
- xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q),
- "VM job timed out on non-killed execqueue\n");
- if (!wedged && (q->flags & EXEC_QUEUE_FLAG_KERNEL ||
- (q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q)))) {
+ if (!wedged && q->flags & EXEC_QUEUE_FLAG_KERNEL) {
if (!xe_sched_invalidate_job(job, 2)) {
+ clear_exec_queue_banned(q);
xe_gt_reset_async(q->gt);
goto rearm;
}
+ xe_gt_WARN(q->gt, true, "Kernel-submitted job timed out\n");
+ xe_device_declare_wedged(gt_to_xe(q->gt));
+ } else if (!wedged && q->flags & EXEC_QUEUE_FLAG_VM &&
+ !exec_queue_killed(q)) {
+ xe_gt_WARN(q->gt, true, "VM job timed out on non-killed execqueue\n");
}
/* Mark all outstanding jobs as bad, thus completing them */
--
2.54.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/3] drm/xe/lrc: fix spurious warning when reading context timestamp
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
@ 2026-06-03 15:01 ` Rodrigo Vivi
2026-06-03 15:01 ` [PATCH 3/3] drm/xe/lrc: remove engine_id PPHWSP stash Rodrigo Vivi
` (6 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Rodrigo Vivi @ 2026-06-03 15:01 UTC (permalink / raw)
To: intel-xe; +Cc: Rodrigo Vivi
Fixes the following warning that fires during timeout handling for
contexts running on reserved engine instances:
xe 0000:03:00.0: [drm] Tile0: GT0: Unexpected engine class:instance 3:8 for utilization
WARNING: at engine_id_to_hwe+0x88/0xc0 [xe]
xe_lrc_context_timestamp+0x61/0xb0 [xe]
guc_exec_queue_timedout_job+0x713/0x1020 [xe]
The engine lookup rejected reserved instances and returned NULL, causing
context timestamp reads to silently fall back to stale data.
Fix this by storing the hw engine pointer directly in the lrc at creation
time and using it for timestamp reads, bypassing the lookup entirely.
Assisted-by: GitHub-Copilot:claude-sonnet-4.6
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_lrc.c | 11 +++++------
drivers/gpu/drm/xe/xe_lrc_types.h | 3 +++
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index a4292a11391d..9b58ba19d511 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1643,6 +1643,7 @@ static int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct xe_v
kref_init(&lrc->refcount);
lrc->gt = gt;
+ lrc->hwe = hwe;
lrc->replay_size = xe_gt_lrc_hang_replay_size(gt, hwe->class);
lrc->size = lrc_size;
lrc->flags = 0;
@@ -2632,12 +2633,11 @@ static struct xe_hw_engine *engine_id_to_hwe(struct xe_gt *gt, u32 engine_id)
return hwe;
}
-static int get_ctx_timestamp(struct xe_lrc *lrc, u32 engine_id, u64 *reg_ctx_ts)
+static int get_ctx_timestamp(struct xe_lrc *lrc, u64 *reg_ctx_ts)
{
- struct xe_hw_engine *hwe;
+ struct xe_hw_engine *hwe = lrc->hwe;
u64 val;
- hwe = engine_id_to_hwe(lrc->gt, engine_id);
if (!hwe)
return -1;
@@ -2688,8 +2688,7 @@ static u64 xe_lrc_multi_queue_timestamp(struct xe_lrc *lrc)
if (!context_active(primary_lrc))
return xe_lrc_queue_timestamp(lrc);
- /* WA BB populates engine id in PPHWSP of primary context only */
- hwe = engine_id_to_hwe(primary_lrc->gt, xe_lrc_engine_id(primary_lrc));
+ hwe = primary_lrc->hwe;
if (!hwe)
return xe_lrc_queue_timestamp(lrc);
@@ -2726,7 +2725,7 @@ static u64 xe_lrc_context_timestamp(struct xe_lrc *lrc)
return xe_lrc_ctx_timestamp(lrc);
if (context_active(lrc) &&
- !get_ctx_timestamp(lrc, xe_lrc_engine_id(lrc), ®_ts))
+ !get_ctx_timestamp(lrc, ®_ts))
new_ts = reg_ts;
/*
diff --git a/drivers/gpu/drm/xe/xe_lrc_types.h b/drivers/gpu/drm/xe/xe_lrc_types.h
index 53ef48feebfc..6ce57b06ef1f 100644
--- a/drivers/gpu/drm/xe/xe_lrc_types.h
+++ b/drivers/gpu/drm/xe/xe_lrc_types.h
@@ -37,6 +37,9 @@ struct xe_lrc {
/** @gt: gt which this LRC belongs to */
struct xe_gt *gt;
+ /** @hwe: hw engine this LRC is bound to */
+ struct xe_hw_engine *hwe;
+
/** @flags: LRC flags */
#define XE_LRC_FLAG_INDIRECT_CTX 0x1
#define XE_LRC_FLAG_INDIRECT_RING_STATE 0x2
--
2.54.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/3] drm/xe/lrc: remove engine_id PPHWSP stash
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
2026-06-03 15:01 ` [PATCH 2/3] drm/xe/lrc: fix spurious warning when reading context timestamp Rodrigo Vivi
@ 2026-06-03 15:01 ` Rodrigo Vivi
2026-06-03 15:06 ` ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Patchwork
` (5 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Rodrigo Vivi @ 2026-06-03 15:01 UTC (permalink / raw)
To: intel-xe; +Cc: Rodrigo Vivi
Now that the hw engine pointer is stored directly in the lrc, the
workaround that stored ENGINE_ID into the PPHWSP at context restore
time has no consumers. Remove the stash and all supporting
infrastructure.
Assisted-by: GitHub-Copilot:claude-sonnet-4.6
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_lrc.c | 48 ++-----------------------------------
1 file changed, 2 insertions(+), 46 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 9b58ba19d511..15a76f001ee1 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -704,7 +704,6 @@ u32 xe_lrc_pphwsp_offset(struct xe_lrc *lrc)
#define __xe_lrc_regs_offset xe_lrc_regs_offset
#define LRC_CTX_JOB_TIMESTAMP_OFFSET 512
-#define LRC_ENGINE_ID_PPHWSP_OFFSET 1024
#define LRC_PARALLEL_PPHWSP_OFFSET 2048
#define LRC_SEQNO_OFFSET 0
@@ -763,11 +762,6 @@ static inline u32 __xe_lrc_parallel_offset(struct xe_lrc *lrc)
return xe_lrc_pphwsp_offset(lrc) + LRC_PARALLEL_PPHWSP_OFFSET;
}
-static inline u32 __xe_lrc_engine_id_offset(struct xe_lrc *lrc)
-{
- return xe_lrc_pphwsp_offset(lrc) + LRC_ENGINE_ID_PPHWSP_OFFSET;
-}
-
static u32 __xe_lrc_ctx_timestamp_offset(struct xe_lrc *lrc)
{
return __xe_lrc_regs_offset(lrc) + CTX_TIMESTAMP * sizeof(u32);
@@ -836,7 +830,6 @@ DECL_MAP_ADDR_HELPERS(ctx_timestamp, lrc->bo)
DECL_MAP_ADDR_HELPERS(ctx_timestamp_udw, lrc->bo)
DECL_MAP_ADDR_HELPERS(parallel, lrc->bo)
DECL_MAP_ADDR_HELPERS(indirect_ring, lrc->bo)
-DECL_MAP_ADDR_HELPERS(engine_id, lrc->bo)
DECL_MAP_ADDR_HELPERS(queue_timestamp, lrc->bo)
DECL_MAP_ADDR_HELPERS(queue_timestamp_udw, lrc->bo)
@@ -1091,10 +1084,7 @@ static void xe_lrc_finish(struct xe_lrc *lrc)
* (2) Calculate the time that the context has been active for:
* The CTX_TIMESTAMP ticks only when the context is active. If a context is
* active, we just use the CTX_TIMESTAMP MMIO as the new value of utilization.
- * While doing so, we need to read the CTX_TIMESTAMP MMIO for the specific
- * engine instance. Since we do not know which instance the context is running
- * on until it is scheduled, we also read the ENGINE_ID MMIO in the WA BB and
- * store it in the PPHSWP.
+ * The engine instance is known from lrc->hwe, so no PPHWSP engine_id is needed.
*/
#define CONTEXT_ACTIVE 1ULL
static ssize_t setup_utilization_wa(struct xe_lrc *lrc,
@@ -1107,14 +1097,9 @@ static ssize_t setup_utilization_wa(struct xe_lrc *lrc,
if (IS_SRIOV_VF(gt_to_xe(lrc->gt)))
return 0;
- if (xe_gt_WARN_ON(lrc->gt, max_len < 12))
+ if (xe_gt_WARN_ON(lrc->gt, max_len < 8))
return -ENOSPC;
- *cmd++ = MI_STORE_REGISTER_MEM | MI_SRM_USE_GGTT | MI_SRM_ADD_CS_OFFSET;
- *cmd++ = ENGINE_ID(0).addr;
- *cmd++ = __xe_lrc_engine_id_ggtt_addr(lrc);
- *cmd++ = 0;
-
*cmd++ = MI_STORE_DATA_IMM | MI_SDI_GGTT | MI_SDI_NUM_DW(1);
*cmd++ = __xe_lrc_ctx_timestamp_ggtt_addr(lrc);
*cmd++ = 0;
@@ -1930,21 +1915,6 @@ struct iosys_map xe_lrc_parallel_map(struct xe_lrc *lrc)
return __xe_lrc_parallel_map(lrc);
}
-/**
- * xe_lrc_engine_id() - Read engine id value
- * @lrc: Pointer to the lrc.
- *
- * Returns: context id value
- */
-static u32 xe_lrc_engine_id(struct xe_lrc *lrc)
-{
- struct xe_device *xe = lrc_to_xe(lrc);
- struct iosys_map map;
-
- map = __xe_lrc_engine_id_map(lrc);
- return xe_map_read32(xe, &map);
-}
-
static int instr_dw(u32 cmd_header)
{
/* GFXPIPE "SINGLE_DW" opcodes are a single dword */
@@ -2619,20 +2589,6 @@ void xe_lrc_snapshot_free(struct xe_lrc_snapshot *snapshot)
kfree(snapshot);
}
-static struct xe_hw_engine *engine_id_to_hwe(struct xe_gt *gt, u32 engine_id)
-{
- u16 class = REG_FIELD_GET(ENGINE_CLASS_ID, engine_id);
- u16 instance = REG_FIELD_GET(ENGINE_INSTANCE_ID, engine_id);
- struct xe_hw_engine *hwe = xe_gt_hw_engine(gt, class, instance, false);
-
- if (xe_gt_WARN_ONCE(gt, !hwe || xe_hw_engine_is_reserved(hwe),
- "Unexpected engine class:instance %d:%d for utilization\n",
- class, instance))
- return NULL;
-
- return hwe;
-}
-
static int get_ctx_timestamp(struct xe_lrc *lrc, u64 *reg_ctx_ts)
{
struct xe_hw_engine *hwe = lrc->hwe;
--
2.54.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
2026-06-03 15:01 ` [PATCH 2/3] drm/xe/lrc: fix spurious warning when reading context timestamp Rodrigo Vivi
2026-06-03 15:01 ` [PATCH 3/3] drm/xe/lrc: remove engine_id PPHWSP stash Rodrigo Vivi
@ 2026-06-03 15:06 ` Patchwork
2026-06-03 15:08 ` ✓ CI.KUnit: success " Patchwork
` (4 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-06-03 15:06 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
URL : https://patchwork.freedesktop.org/series/167822/
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
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 8a39476c0f162eb6795f78f9a9df5a3066102884
Author: Rodrigo Vivi <rodrigo.vivi@intel.com>
Date: Wed Jun 3 11:01:02 2026 -0400
drm/xe/lrc: remove engine_id PPHWSP stash
Now that the hw engine pointer is stored directly in the lrc, the
workaround that stored ENGINE_ID into the PPHWSP at context restore
time has no consumers. Remove the stash and all supporting
infrastructure.
Assisted-by: GitHub-Copilot:claude-sonnet-4.6
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
+ /mt/dim checkpatch 4354c70593040dcb61935903e0fe1c90ca531df7 drm-intel
fefeb6d3f588 drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2d5d3edf45cf drm/xe/lrc: fix spurious warning when reading context timestamp
-:10: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#10:
xe 0000:03:00.0: [drm] Tile0: GT0: Unexpected engine class:instance 3:8 for utilization
total: 0 errors, 1 warnings, 0 checks, 47 lines checked
8a39476c0f16 drm/xe/lrc: remove engine_id PPHWSP stash
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
` (2 preceding siblings ...)
2026-06-03 15:06 ` ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Patchwork
@ 2026-06-03 15:08 ` Patchwork
2026-06-03 15:52 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-06-03 15:08 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
URL : https://patchwork.freedesktop.org/series/167822/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:06:55] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:07:00] 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
[15:07:31] Starting KUnit Kernel (1/1)...
[15:07:31] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:07:31] ================== guc_buf (11 subtests) ===================
[15:07:31] [PASSED] test_smallest
[15:07:31] [PASSED] test_largest
[15:07:31] [PASSED] test_granular
[15:07:31] [PASSED] test_unique
[15:07:31] [PASSED] test_overlap
[15:07:31] [PASSED] test_reusable
[15:07:31] [PASSED] test_too_big
[15:07:31] [PASSED] test_flush
[15:07:31] [PASSED] test_lookup
[15:07:31] [PASSED] test_data
[15:07:31] [PASSED] test_class
[15:07:31] ===================== [PASSED] guc_buf =====================
[15:07:31] =================== guc_dbm (7 subtests) ===================
[15:07:31] [PASSED] test_empty
[15:07:31] [PASSED] test_default
[15:07:31] ======================== test_size ========================
[15:07:31] [PASSED] 4
[15:07:31] [PASSED] 8
[15:07:31] [PASSED] 32
[15:07:31] [PASSED] 256
[15:07:31] ==================== [PASSED] test_size ====================
[15:07:31] ======================= test_reuse ========================
[15:07:31] [PASSED] 4
[15:07:31] [PASSED] 8
[15:07:31] [PASSED] 32
[15:07:31] [PASSED] 256
[15:07:31] =================== [PASSED] test_reuse ====================
[15:07:31] =================== test_range_overlap ====================
[15:07:31] [PASSED] 4
[15:07:31] [PASSED] 8
[15:07:31] [PASSED] 32
[15:07:31] [PASSED] 256
[15:07:31] =============== [PASSED] test_range_overlap ================
[15:07:31] =================== test_range_compact ====================
[15:07:31] [PASSED] 4
[15:07:31] [PASSED] 8
[15:07:31] [PASSED] 32
[15:07:31] [PASSED] 256
[15:07:31] =============== [PASSED] test_range_compact ================
[15:07:31] ==================== test_range_spare =====================
[15:07:31] [PASSED] 4
[15:07:31] [PASSED] 8
[15:07:31] [PASSED] 32
[15:07:31] [PASSED] 256
[15:07:31] ================ [PASSED] test_range_spare =================
[15:07:31] ===================== [PASSED] guc_dbm =====================
[15:07:31] =================== guc_idm (6 subtests) ===================
[15:07:31] [PASSED] bad_init
[15:07:31] [PASSED] no_init
[15:07:31] [PASSED] init_fini
[15:07:31] [PASSED] check_used
[15:07:31] [PASSED] check_quota
[15:07:31] [PASSED] check_all
[15:07:31] ===================== [PASSED] guc_idm =====================
[15:07:31] ================== no_relay (3 subtests) ===================
[15:07:31] [PASSED] xe_drops_guc2pf_if_not_ready
[15:07:31] [PASSED] xe_drops_guc2vf_if_not_ready
[15:07:31] [PASSED] xe_rejects_send_if_not_ready
[15:07:31] ==================== [PASSED] no_relay =====================
[15:07:31] ================== pf_relay (14 subtests) ==================
[15:07:31] [PASSED] pf_rejects_guc2pf_too_short
[15:07:31] [PASSED] pf_rejects_guc2pf_too_long
[15:07:31] [PASSED] pf_rejects_guc2pf_no_payload
[15:07:31] [PASSED] pf_fails_no_payload
[15:07:31] [PASSED] pf_fails_bad_origin
[15:07:31] [PASSED] pf_fails_bad_type
[15:07:31] [PASSED] pf_txn_reports_error
[15:07:31] [PASSED] pf_txn_sends_pf2guc
[15:07:31] [PASSED] pf_sends_pf2guc
[15:07:31] [SKIPPED] pf_loopback_nop
[15:07:31] [SKIPPED] pf_loopback_echo
[15:07:31] [SKIPPED] pf_loopback_fail
[15:07:31] [SKIPPED] pf_loopback_busy
[15:07:31] [SKIPPED] pf_loopback_retry
[15:07:31] ==================== [PASSED] pf_relay =====================
[15:07:31] ================== vf_relay (3 subtests) ===================
[15:07:31] [PASSED] vf_rejects_guc2vf_too_short
[15:07:31] [PASSED] vf_rejects_guc2vf_too_long
[15:07:31] [PASSED] vf_rejects_guc2vf_no_payload
[15:07:31] ==================== [PASSED] vf_relay =====================
[15:07:31] ================ pf_gt_config (9 subtests) =================
[15:07:31] [PASSED] fair_contexts_1vf
[15:07:31] [PASSED] fair_doorbells_1vf
[15:07:31] [PASSED] fair_ggtt_1vf
[15:07:31] ====================== fair_vram_1vf ======================
[15:07:31] [PASSED] 3.50 GiB
[15:07:31] [PASSED] 11.5 GiB
[15:07:31] [PASSED] 15.5 GiB
[15:07:31] [PASSED] 31.5 GiB
[15:07:31] [PASSED] 63.5 GiB
[15:07:31] [PASSED] 1.91 GiB
[15:07:31] ================== [PASSED] fair_vram_1vf ==================
[15:07:31] ================ fair_vram_1vf_admin_only =================
[15:07:31] [PASSED] 3.50 GiB
[15:07:31] [PASSED] 11.5 GiB
[15:07:31] [PASSED] 15.5 GiB
[15:07:31] [PASSED] 31.5 GiB
[15:07:31] [PASSED] 63.5 GiB
[15:07:31] [PASSED] 1.91 GiB
[15:07:31] ============ [PASSED] fair_vram_1vf_admin_only =============
[15:07:31] ====================== fair_contexts ======================
[15:07:31] [PASSED] 1 VF
[15:07:31] [PASSED] 2 VFs
[15:07:31] [PASSED] 3 VFs
[15:07:31] [PASSED] 4 VFs
[15:07:31] [PASSED] 5 VFs
[15:07:31] [PASSED] 6 VFs
[15:07:31] [PASSED] 7 VFs
[15:07:31] [PASSED] 8 VFs
[15:07:31] [PASSED] 9 VFs
[15:07:31] [PASSED] 10 VFs
[15:07:31] [PASSED] 11 VFs
[15:07:31] [PASSED] 12 VFs
[15:07:31] [PASSED] 13 VFs
[15:07:31] [PASSED] 14 VFs
[15:07:31] [PASSED] 15 VFs
[15:07:31] [PASSED] 16 VFs
[15:07:31] [PASSED] 17 VFs
[15:07:31] [PASSED] 18 VFs
[15:07:31] [PASSED] 19 VFs
[15:07:31] [PASSED] 20 VFs
[15:07:31] [PASSED] 21 VFs
[15:07:31] [PASSED] 22 VFs
[15:07:31] [PASSED] 23 VFs
[15:07:31] [PASSED] 24 VFs
[15:07:31] [PASSED] 25 VFs
[15:07:31] [PASSED] 26 VFs
[15:07:31] [PASSED] 27 VFs
[15:07:31] [PASSED] 28 VFs
[15:07:31] [PASSED] 29 VFs
[15:07:31] [PASSED] 30 VFs
[15:07:31] [PASSED] 31 VFs
[15:07:31] [PASSED] 32 VFs
[15:07:31] [PASSED] 33 VFs
[15:07:31] [PASSED] 34 VFs
[15:07:31] [PASSED] 35 VFs
[15:07:31] [PASSED] 36 VFs
[15:07:31] [PASSED] 37 VFs
[15:07:31] [PASSED] 38 VFs
[15:07:31] [PASSED] 39 VFs
[15:07:31] [PASSED] 40 VFs
[15:07:31] [PASSED] 41 VFs
[15:07:31] [PASSED] 42 VFs
[15:07:31] [PASSED] 43 VFs
[15:07:31] [PASSED] 44 VFs
[15:07:31] [PASSED] 45 VFs
[15:07:31] [PASSED] 46 VFs
[15:07:31] [PASSED] 47 VFs
[15:07:31] [PASSED] 48 VFs
[15:07:31] [PASSED] 49 VFs
[15:07:31] [PASSED] 50 VFs
[15:07:31] [PASSED] 51 VFs
[15:07:31] [PASSED] 52 VFs
[15:07:31] [PASSED] 53 VFs
[15:07:31] [PASSED] 54 VFs
[15:07:31] [PASSED] 55 VFs
[15:07:31] [PASSED] 56 VFs
[15:07:31] [PASSED] 57 VFs
[15:07:31] [PASSED] 58 VFs
[15:07:31] [PASSED] 59 VFs
[15:07:31] [PASSED] 60 VFs
[15:07:31] [PASSED] 61 VFs
[15:07:31] [PASSED] 62 VFs
[15:07:31] [PASSED] 63 VFs
[15:07:31] ================== [PASSED] fair_contexts ==================
[15:07:31] ===================== fair_doorbells ======================
[15:07:31] [PASSED] 1 VF
[15:07:31] [PASSED] 2 VFs
[15:07:31] [PASSED] 3 VFs
[15:07:31] [PASSED] 4 VFs
[15:07:31] [PASSED] 5 VFs
[15:07:31] [PASSED] 6 VFs
[15:07:31] [PASSED] 7 VFs
[15:07:31] [PASSED] 8 VFs
[15:07:31] [PASSED] 9 VFs
[15:07:31] [PASSED] 10 VFs
[15:07:31] [PASSED] 11 VFs
[15:07:31] [PASSED] 12 VFs
[15:07:31] [PASSED] 13 VFs
[15:07:31] [PASSED] 14 VFs
[15:07:31] [PASSED] 15 VFs
[15:07:31] [PASSED] 16 VFs
[15:07:31] [PASSED] 17 VFs
[15:07:31] [PASSED] 18 VFs
[15:07:31] [PASSED] 19 VFs
[15:07:31] [PASSED] 20 VFs
[15:07:31] [PASSED] 21 VFs
[15:07:31] [PASSED] 22 VFs
[15:07:31] [PASSED] 23 VFs
[15:07:31] [PASSED] 24 VFs
[15:07:31] [PASSED] 25 VFs
[15:07:31] [PASSED] 26 VFs
[15:07:31] [PASSED] 27 VFs
[15:07:31] [PASSED] 28 VFs
[15:07:31] [PASSED] 29 VFs
[15:07:31] [PASSED] 30 VFs
[15:07:31] [PASSED] 31 VFs
[15:07:31] [PASSED] 32 VFs
[15:07:31] [PASSED] 33 VFs
[15:07:31] [PASSED] 34 VFs
[15:07:31] [PASSED] 35 VFs
[15:07:31] [PASSED] 36 VFs
[15:07:31] [PASSED] 37 VFs
[15:07:31] [PASSED] 38 VFs
[15:07:31] [PASSED] 39 VFs
[15:07:31] [PASSED] 40 VFs
[15:07:31] [PASSED] 41 VFs
[15:07:31] [PASSED] 42 VFs
[15:07:31] [PASSED] 43 VFs
[15:07:31] [PASSED] 44 VFs
[15:07:31] [PASSED] 45 VFs
[15:07:31] [PASSED] 46 VFs
[15:07:31] [PASSED] 47 VFs
[15:07:31] [PASSED] 48 VFs
[15:07:31] [PASSED] 49 VFs
[15:07:31] [PASSED] 50 VFs
[15:07:31] [PASSED] 51 VFs
[15:07:31] [PASSED] 52 VFs
[15:07:31] [PASSED] 53 VFs
[15:07:31] [PASSED] 54 VFs
[15:07:31] [PASSED] 55 VFs
[15:07:31] [PASSED] 56 VFs
[15:07:31] [PASSED] 57 VFs
[15:07:31] [PASSED] 58 VFs
[15:07:31] [PASSED] 59 VFs
[15:07:31] [PASSED] 60 VFs
[15:07:31] [PASSED] 61 VFs
[15:07:31] [PASSED] 62 VFs
[15:07:31] [PASSED] 63 VFs
[15:07:31] ================= [PASSED] fair_doorbells ==================
[15:07:31] ======================== fair_ggtt ========================
[15:07:31] [PASSED] 1 VF
[15:07:31] [PASSED] 2 VFs
[15:07:31] [PASSED] 3 VFs
[15:07:31] [PASSED] 4 VFs
[15:07:31] [PASSED] 5 VFs
[15:07:31] [PASSED] 6 VFs
[15:07:31] [PASSED] 7 VFs
[15:07:31] [PASSED] 8 VFs
[15:07:31] [PASSED] 9 VFs
[15:07:31] [PASSED] 10 VFs
[15:07:31] [PASSED] 11 VFs
[15:07:31] [PASSED] 12 VFs
[15:07:31] [PASSED] 13 VFs
[15:07:31] [PASSED] 14 VFs
[15:07:31] [PASSED] 15 VFs
[15:07:31] [PASSED] 16 VFs
[15:07:31] [PASSED] 17 VFs
[15:07:31] [PASSED] 18 VFs
[15:07:31] [PASSED] 19 VFs
[15:07:31] [PASSED] 20 VFs
[15:07:31] [PASSED] 21 VFs
[15:07:31] [PASSED] 22 VFs
[15:07:31] [PASSED] 23 VFs
[15:07:31] [PASSED] 24 VFs
[15:07:31] [PASSED] 25 VFs
[15:07:31] [PASSED] 26 VFs
[15:07:31] [PASSED] 27 VFs
[15:07:31] [PASSED] 28 VFs
[15:07:31] [PASSED] 29 VFs
[15:07:31] [PASSED] 30 VFs
[15:07:31] [PASSED] 31 VFs
[15:07:31] [PASSED] 32 VFs
[15:07:31] [PASSED] 33 VFs
[15:07:31] [PASSED] 34 VFs
[15:07:31] [PASSED] 35 VFs
[15:07:31] [PASSED] 36 VFs
[15:07:31] [PASSED] 37 VFs
[15:07:31] [PASSED] 38 VFs
[15:07:31] [PASSED] 39 VFs
[15:07:31] [PASSED] 40 VFs
[15:07:31] [PASSED] 41 VFs
[15:07:31] [PASSED] 42 VFs
[15:07:31] [PASSED] 43 VFs
[15:07:31] [PASSED] 44 VFs
[15:07:31] [PASSED] 45 VFs
[15:07:31] [PASSED] 46 VFs
[15:07:31] [PASSED] 47 VFs
[15:07:31] [PASSED] 48 VFs
[15:07:31] [PASSED] 49 VFs
[15:07:31] [PASSED] 50 VFs
[15:07:31] [PASSED] 51 VFs
[15:07:31] [PASSED] 52 VFs
[15:07:31] [PASSED] 53 VFs
[15:07:31] [PASSED] 54 VFs
[15:07:31] [PASSED] 55 VFs
[15:07:31] [PASSED] 56 VFs
[15:07:31] [PASSED] 57 VFs
[15:07:31] [PASSED] 58 VFs
[15:07:31] [PASSED] 59 VFs
[15:07:31] [PASSED] 60 VFs
[15:07:31] [PASSED] 61 VFs
[15:07:31] [PASSED] 62 VFs
[15:07:31] [PASSED] 63 VFs
[15:07:31] ==================== [PASSED] fair_ggtt ====================
[15:07:31] ======================== fair_vram ========================
[15:07:31] [PASSED] 1 VF
[15:07:31] [PASSED] 2 VFs
[15:07:31] [PASSED] 3 VFs
[15:07:31] [PASSED] 4 VFs
[15:07:31] [PASSED] 5 VFs
[15:07:31] [PASSED] 6 VFs
[15:07:31] [PASSED] 7 VFs
[15:07:31] [PASSED] 8 VFs
[15:07:31] [PASSED] 9 VFs
[15:07:31] [PASSED] 10 VFs
[15:07:31] [PASSED] 11 VFs
[15:07:31] [PASSED] 12 VFs
[15:07:31] [PASSED] 13 VFs
[15:07:31] [PASSED] 14 VFs
[15:07:31] [PASSED] 15 VFs
[15:07:31] [PASSED] 16 VFs
[15:07:31] [PASSED] 17 VFs
[15:07:31] [PASSED] 18 VFs
[15:07:31] [PASSED] 19 VFs
[15:07:31] [PASSED] 20 VFs
[15:07:31] [PASSED] 21 VFs
[15:07:31] [PASSED] 22 VFs
[15:07:31] [PASSED] 23 VFs
[15:07:31] [PASSED] 24 VFs
[15:07:31] [PASSED] 25 VFs
[15:07:31] [PASSED] 26 VFs
[15:07:31] [PASSED] 27 VFs
[15:07:31] [PASSED] 28 VFs
[15:07:31] [PASSED] 29 VFs
[15:07:31] [PASSED] 30 VFs
[15:07:31] [PASSED] 31 VFs
[15:07:31] [PASSED] 32 VFs
[15:07:31] [PASSED] 33 VFs
[15:07:31] [PASSED] 34 VFs
[15:07:31] [PASSED] 35 VFs
[15:07:31] [PASSED] 36 VFs
[15:07:31] [PASSED] 37 VFs
[15:07:31] [PASSED] 38 VFs
[15:07:31] [PASSED] 39 VFs
[15:07:31] [PASSED] 40 VFs
[15:07:31] [PASSED] 41 VFs
[15:07:31] [PASSED] 42 VFs
[15:07:31] [PASSED] 43 VFs
[15:07:31] [PASSED] 44 VFs
[15:07:31] [PASSED] 45 VFs
[15:07:31] [PASSED] 46 VFs
[15:07:31] [PASSED] 47 VFs
[15:07:31] [PASSED] 48 VFs
[15:07:31] [PASSED] 49 VFs
[15:07:31] [PASSED] 50 VFs
[15:07:31] [PASSED] 51 VFs
[15:07:31] [PASSED] 52 VFs
[15:07:31] [PASSED] 53 VFs
[15:07:31] [PASSED] 54 VFs
[15:07:31] [PASSED] 55 VFs
[15:07:31] [PASSED] 56 VFs
[15:07:31] [PASSED] 57 VFs
[15:07:31] [PASSED] 58 VFs
[15:07:31] [PASSED] 59 VFs
[15:07:31] [PASSED] 60 VFs
[15:07:31] [PASSED] 61 VFs
[15:07:31] [PASSED] 62 VFs
[15:07:31] [PASSED] 63 VFs
[15:07:31] ==================== [PASSED] fair_vram ====================
[15:07:31] ================== [PASSED] pf_gt_config ===================
[15:07:31] ===================== lmtt (1 subtest) =====================
[15:07:31] ======================== test_ops =========================
[15:07:31] [PASSED] 2-level
[15:07:31] [PASSED] multi-level
[15:07:31] ==================== [PASSED] test_ops =====================
[15:07:31] ====================== [PASSED] lmtt =======================
[15:07:31] ================= pf_service (11 subtests) =================
[15:07:31] [PASSED] pf_negotiate_any
[15:07:31] [PASSED] pf_negotiate_base_match
[15:07:31] [PASSED] pf_negotiate_base_newer
[15:07:31] [PASSED] pf_negotiate_base_next
[15:07:31] [SKIPPED] pf_negotiate_base_older
[15:07:31] [PASSED] pf_negotiate_base_prev
[15:07:31] [PASSED] pf_negotiate_latest_match
[15:07:31] [PASSED] pf_negotiate_latest_newer
[15:07:31] [PASSED] pf_negotiate_latest_next
[15:07:31] [SKIPPED] pf_negotiate_latest_older
[15:07:31] [SKIPPED] pf_negotiate_latest_prev
[15:07:31] =================== [PASSED] pf_service ====================
[15:07:31] ================= xe_guc_g2g (2 subtests) ==================
[15:07:31] ============== xe_live_guc_g2g_kunit_default ==============
[15:07:31] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[15:07:31] ============== xe_live_guc_g2g_kunit_allmem ===============
[15:07:31] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[15:07:31] =================== [SKIPPED] xe_guc_g2g ===================
[15:07:31] =================== xe_mocs (2 subtests) ===================
[15:07:31] ================ xe_live_mocs_kernel_kunit ================
[15:07:31] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:07:31] ================ xe_live_mocs_reset_kunit =================
[15:07:31] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:07:31] ==================== [SKIPPED] xe_mocs =====================
[15:07:31] ================= xe_migrate (2 subtests) ==================
[15:07:31] ================= xe_migrate_sanity_kunit =================
[15:07:31] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:07:31] ================== xe_validate_ccs_kunit ==================
[15:07:31] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:07:31] =================== [SKIPPED] xe_migrate ===================
[15:07:31] ================== xe_dma_buf (1 subtest) ==================
[15:07:31] ==================== xe_dma_buf_kunit =====================
[15:07:31] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:07:31] =================== [SKIPPED] xe_dma_buf ===================
[15:07:31] ================= xe_bo_shrink (1 subtest) =================
[15:07:31] =================== xe_bo_shrink_kunit ====================
[15:07:31] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:07:31] ================== [SKIPPED] xe_bo_shrink ==================
[15:07:31] ==================== xe_bo (2 subtests) ====================
[15:07:31] ================== xe_ccs_migrate_kunit ===================
[15:07:31] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:07:31] ==================== xe_bo_evict_kunit ====================
[15:07:31] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:07:31] ===================== [SKIPPED] xe_bo ======================
[15:07:31] ==================== args (13 subtests) ====================
[15:07:31] [PASSED] count_args_test
[15:07:31] [PASSED] call_args_example
[15:07:31] [PASSED] call_args_test
[15:07:31] [PASSED] drop_first_arg_example
[15:07:31] [PASSED] drop_first_arg_test
[15:07:31] [PASSED] first_arg_example
[15:07:31] [PASSED] first_arg_test
[15:07:31] [PASSED] last_arg_example
[15:07:31] [PASSED] last_arg_test
[15:07:31] [PASSED] pick_arg_example
[15:07:31] [PASSED] if_args_example
[15:07:31] [PASSED] if_args_test
[15:07:31] [PASSED] sep_comma_example
[15:07:31] ====================== [PASSED] args =======================
[15:07:31] =================== xe_pci (3 subtests) ====================
[15:07:31] ==================== check_graphics_ip ====================
[15:07:31] [PASSED] 12.00 Xe_LP
[15:07:31] [PASSED] 12.10 Xe_LP+
[15:07:31] [PASSED] 12.55 Xe_HPG
[15:07:31] [PASSED] 12.60 Xe_HPC
[15:07:31] [PASSED] 12.70 Xe_LPG
[15:07:31] [PASSED] 12.71 Xe_LPG
[15:07:31] [PASSED] 12.74 Xe_LPG+
[15:07:31] [PASSED] 20.01 Xe2_HPG
[15:07:31] [PASSED] 20.02 Xe2_HPG
[15:07:31] [PASSED] 20.04 Xe2_LPG
[15:07:31] [PASSED] 30.00 Xe3_LPG
[15:07:31] [PASSED] 30.01 Xe3_LPG
[15:07:31] [PASSED] 30.03 Xe3_LPG
[15:07:31] [PASSED] 30.04 Xe3_LPG
[15:07:31] [PASSED] 30.05 Xe3_LPG
[15:07:31] [PASSED] 35.10 Xe3p_LPG
[15:07:31] [PASSED] 35.11 Xe3p_XPC
[15:07:31] ================ [PASSED] check_graphics_ip ================
[15:07:31] ===================== check_media_ip ======================
[15:07:31] [PASSED] 12.00 Xe_M
[15:07:31] [PASSED] 12.55 Xe_HPM
[15:07:31] [PASSED] 13.00 Xe_LPM+
[15:07:31] [PASSED] 13.01 Xe2_HPM
[15:07:31] [PASSED] 20.00 Xe2_LPM
[15:07:31] [PASSED] 30.00 Xe3_LPM
[15:07:31] [PASSED] 30.02 Xe3_LPM
[15:07:31] [PASSED] 35.00 Xe3p_LPM
[15:07:31] [PASSED] 35.03 Xe3p_HPM
[15:07:31] ================= [PASSED] check_media_ip ==================
[15:07:31] =================== check_platform_desc ===================
[15:07:31] [PASSED] 0x9A60 (TIGERLAKE)
[15:07:31] [PASSED] 0x9A68 (TIGERLAKE)
[15:07:31] [PASSED] 0x9A70 (TIGERLAKE)
[15:07:31] [PASSED] 0x9A40 (TIGERLAKE)
[15:07:31] [PASSED] 0x9A49 (TIGERLAKE)
[15:07:31] [PASSED] 0x9A59 (TIGERLAKE)
[15:07:31] [PASSED] 0x9A78 (TIGERLAKE)
[15:07:31] [PASSED] 0x9AC0 (TIGERLAKE)
[15:07:31] [PASSED] 0x9AC9 (TIGERLAKE)
[15:07:31] [PASSED] 0x9AD9 (TIGERLAKE)
[15:07:31] [PASSED] 0x9AF8 (TIGERLAKE)
[15:07:31] [PASSED] 0x4C80 (ROCKETLAKE)
[15:07:31] [PASSED] 0x4C8A (ROCKETLAKE)
[15:07:31] [PASSED] 0x4C8B (ROCKETLAKE)
[15:07:31] [PASSED] 0x4C8C (ROCKETLAKE)
[15:07:31] [PASSED] 0x4C90 (ROCKETLAKE)
[15:07:31] [PASSED] 0x4C9A (ROCKETLAKE)
[15:07:31] [PASSED] 0x4680 (ALDERLAKE_S)
[15:07:31] [PASSED] 0x4682 (ALDERLAKE_S)
[15:07:31] [PASSED] 0x4688 (ALDERLAKE_S)
[15:07:31] [PASSED] 0x468A (ALDERLAKE_S)
[15:07:31] [PASSED] 0x468B (ALDERLAKE_S)
[15:07:31] [PASSED] 0x4690 (ALDERLAKE_S)
[15:07:31] [PASSED] 0x4692 (ALDERLAKE_S)
[15:07:31] [PASSED] 0x4693 (ALDERLAKE_S)
[15:07:31] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46AA (ALDERLAKE_P)
[15:07:31] [PASSED] 0x462A (ALDERLAKE_P)
[15:07:31] [PASSED] 0x4626 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x4628 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:07:31] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:07:31] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:07:31] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:07:31] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:07:31] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:07:31] [PASSED] 0xA721 (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA720 (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:07:31] [PASSED] 0xA780 (ALDERLAKE_S)
[15:07:31] [PASSED] 0xA781 (ALDERLAKE_S)
[15:07:31] [PASSED] 0xA782 (ALDERLAKE_S)
[15:07:31] [PASSED] 0xA783 (ALDERLAKE_S)
[15:07:31] [PASSED] 0xA788 (ALDERLAKE_S)
[15:07:31] [PASSED] 0xA789 (ALDERLAKE_S)
[15:07:31] [PASSED] 0xA78A (ALDERLAKE_S)
[15:07:31] [PASSED] 0xA78B (ALDERLAKE_S)
[15:07:31] [PASSED] 0x4905 (DG1)
[15:07:31] [PASSED] 0x4906 (DG1)
[15:07:31] [PASSED] 0x4907 (DG1)
[15:07:31] [PASSED] 0x4908 (DG1)
[15:07:31] [PASSED] 0x4909 (DG1)
[15:07:31] [PASSED] 0x56C0 (DG2)
[15:07:31] [PASSED] 0x56C2 (DG2)
[15:07:31] [PASSED] 0x56C1 (DG2)
[15:07:31] [PASSED] 0x7D51 (METEORLAKE)
[15:07:31] [PASSED] 0x7DD1 (METEORLAKE)
[15:07:31] [PASSED] 0x7D41 (METEORLAKE)
[15:07:31] [PASSED] 0x7D67 (METEORLAKE)
[15:07:31] [PASSED] 0xB640 (METEORLAKE)
[15:07:31] [PASSED] 0x56A0 (DG2)
[15:07:31] [PASSED] 0x56A1 (DG2)
[15:07:31] [PASSED] 0x56A2 (DG2)
[15:07:31] [PASSED] 0x56BE (DG2)
[15:07:31] [PASSED] 0x56BF (DG2)
[15:07:31] [PASSED] 0x5690 (DG2)
[15:07:31] [PASSED] 0x5691 (DG2)
[15:07:31] [PASSED] 0x5692 (DG2)
[15:07:31] [PASSED] 0x56A5 (DG2)
[15:07:31] [PASSED] 0x56A6 (DG2)
[15:07:31] [PASSED] 0x56B0 (DG2)
[15:07:31] [PASSED] 0x56B1 (DG2)
[15:07:31] [PASSED] 0x56BA (DG2)
[15:07:31] [PASSED] 0x56BB (DG2)
[15:07:31] [PASSED] 0x56BC (DG2)
[15:07:31] [PASSED] 0x56BD (DG2)
[15:07:31] [PASSED] 0x5693 (DG2)
[15:07:31] [PASSED] 0x5694 (DG2)
[15:07:31] [PASSED] 0x5695 (DG2)
[15:07:31] [PASSED] 0x56A3 (DG2)
[15:07:31] [PASSED] 0x56A4 (DG2)
[15:07:31] [PASSED] 0x56B2 (DG2)
[15:07:31] [PASSED] 0x56B3 (DG2)
[15:07:31] [PASSED] 0x5696 (DG2)
[15:07:31] [PASSED] 0x5697 (DG2)
[15:07:31] [PASSED] 0xB69 (PVC)
[15:07:31] [PASSED] 0xB6E (PVC)
[15:07:31] [PASSED] 0xBD4 (PVC)
[15:07:31] [PASSED] 0xBD5 (PVC)
[15:07:31] [PASSED] 0xBD6 (PVC)
[15:07:31] [PASSED] 0xBD7 (PVC)
[15:07:31] [PASSED] 0xBD8 (PVC)
[15:07:31] [PASSED] 0xBD9 (PVC)
[15:07:31] [PASSED] 0xBDA (PVC)
[15:07:31] [PASSED] 0xBDB (PVC)
[15:07:31] [PASSED] 0xBE0 (PVC)
[15:07:31] [PASSED] 0xBE1 (PVC)
[15:07:31] [PASSED] 0xBE5 (PVC)
[15:07:31] [PASSED] 0x7D40 (METEORLAKE)
[15:07:31] [PASSED] 0x7D45 (METEORLAKE)
[15:07:31] [PASSED] 0x7D55 (METEORLAKE)
[15:07:31] [PASSED] 0x7D60 (METEORLAKE)
[15:07:31] [PASSED] 0x7DD5 (METEORLAKE)
[15:07:31] [PASSED] 0x6420 (LUNARLAKE)
[15:07:31] [PASSED] 0x64A0 (LUNARLAKE)
[15:07:31] [PASSED] 0x64B0 (LUNARLAKE)
[15:07:31] [PASSED] 0xE202 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE209 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE20B (BATTLEMAGE)
[15:07:31] [PASSED] 0xE20C (BATTLEMAGE)
[15:07:31] [PASSED] 0xE20D (BATTLEMAGE)
[15:07:31] [PASSED] 0xE210 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE211 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE212 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE216 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE220 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE221 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE222 (BATTLEMAGE)
[15:07:31] [PASSED] 0xE223 (BATTLEMAGE)
[15:07:31] [PASSED] 0xB080 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB081 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB082 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB083 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB084 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB085 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB086 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB087 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB08F (PANTHERLAKE)
[15:07:31] [PASSED] 0xB090 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:07:31] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:07:31] [PASSED] 0xFD80 (PANTHERLAKE)
[15:07:31] [PASSED] 0xFD81 (PANTHERLAKE)
[15:07:31] [PASSED] 0xD740 (NOVALAKE_S)
[15:07:31] [PASSED] 0xD741 (NOVALAKE_S)
[15:07:31] [PASSED] 0xD742 (NOVALAKE_S)
[15:07:31] [PASSED] 0xD743 (NOVALAKE_S)
[15:07:31] [PASSED] 0xD744 (NOVALAKE_S)
[15:07:31] [PASSED] 0xD745 (NOVALAKE_S)
[15:07:31] [PASSED] 0x674C (CRESCENTISLAND)
[15:07:31] [PASSED] 0x674D (CRESCENTISLAND)
[15:07:31] [PASSED] 0x674E (CRESCENTISLAND)
[15:07:31] [PASSED] 0x674F (CRESCENTISLAND)
[15:07:31] [PASSED] 0x6750 (CRESCENTISLAND)
[15:07:31] [PASSED] 0xD750 (NOVALAKE_P)
[15:07:31] [PASSED] 0xD751 (NOVALAKE_P)
[15:07:31] [PASSED] 0xD752 (NOVALAKE_P)
[15:07:31] [PASSED] 0xD753 (NOVALAKE_P)
[15:07:31] [PASSED] 0xD754 (NOVALAKE_P)
[15:07:31] [PASSED] 0xD755 (NOVALAKE_P)
[15:07:31] [PASSED] 0xD756 (NOVALAKE_P)
[15:07:31] [PASSED] 0xD757 (NOVALAKE_P)
[15:07:31] [PASSED] 0xD75F (NOVALAKE_P)
[15:07:31] =============== [PASSED] check_platform_desc ===============
[15:07:31] ===================== [PASSED] xe_pci ======================
[15:07:31] ============= xe_rtp_tables_test (4 subtests) ==============
[15:07:31] ================== xe_rtp_table_gt_test ===================
[15:07:31] [PASSED] gt_was/14011060649
[15:07:31] [PASSED] gt_was/14011059788
[15:07:31] [PASSED] gt_was/14015795083
[15:07:31] [PASSED] gt_was/16021867713
[15:07:31] [PASSED] gt_was/14019449301
[15:07:31] [PASSED] gt_was/16028005424
[15:07:31] [PASSED] gt_was/14026578760
[15:07:31] [PASSED] gt_was/1409420604
[15:07:31] [PASSED] gt_was/1408615072
[15:07:31] [PASSED] gt_was/22010523718
[15:07:31] [PASSED] gt_was/14011006942
[15:07:31] [PASSED] gt_was/14014830051
[15:07:31] [PASSED] gt_was/18018781329
[15:07:31] [PASSED] gt_was/1509235366
[15:07:31] [PASSED] gt_was/18018781329
[15:07:31] [PASSED] gt_was/16016694945
[15:07:31] [PASSED] gt_was/14018575942
[15:07:31] [PASSED] gt_was/22016670082
[15:07:31] [PASSED] gt_was/22016670082
[15:07:31] [PASSED] gt_was/14017421178
[15:07:31] [PASSED] gt_was/16025250150
[15:07:31] [PASSED] gt_was/14021871409
[15:07:31] [PASSED] gt_was/16021865536
[15:07:31] [PASSED] gt_was/14021486841
[15:07:31] [PASSED] gt_was/14025160223
[15:07:31] [PASSED] gt_was/14026144927, 16029437861
[15:07:31] [PASSED] gt_was/14025635424
[15:07:31] [PASSED] gt_was/16028005424
[15:07:31] ============== [PASSED] xe_rtp_table_gt_test ===============
[15:07:31] ================== xe_rtp_table_gt_test ===================
[15:07:31] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[15:07:31] [PASSED] gt_tunings/Tuning: 32B Access Enable
[15:07:31] [PASSED] gt_tunings/Tuning: L3 cache
[15:07:31] [PASSED] gt_tunings/Tuning: L3 cache - media
[15:07:31] [PASSED] gt_tunings/Tuning: Compression Overfetch
[15:07:31] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[15:07:31] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[15:07:31] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[15:07:31] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[15:07:31] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[15:07:31] [PASSED] gt_tunings/Tuning: Stateless compression control
[15:07:31] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[15:07:31] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[15:07:31] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[15:07:31] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[15:07:31] ============== [PASSED] xe_rtp_table_gt_test ===============
[15:07:31] ================== xe_rtp_table_oob_test ==================
[15:07:31] [PASSED] oob_was/1607983814
[15:07:31] [PASSED] oob_was/16010904313
[15:07:31] [PASSED] oob_was/18022495364
[15:07:31] [PASSED] oob_was/22012773006
[15:07:31] [PASSED] oob_was/14014475959
[15:07:31] [PASSED] oob_was/22011391025
[15:07:31] [PASSED] oob_was/22012727170
[15:07:31] [PASSED] oob_was/22012727685
[15:07:31] [PASSED] oob_was/22016596838
[15:07:31] [PASSED] oob_was/18020744125
[15:07:31] [PASSED] oob_was/1409600907
[15:07:31] [PASSED] oob_was/22014953428
[15:07:31] [PASSED] oob_was/16017236439
[15:07:31] [PASSED] oob_was/14019821291
[15:07:31] [PASSED] oob_was/14015076503
[15:07:31] [PASSED] oob_was/14018913170
[15:07:31] [PASSED] oob_was/14018094691
[15:07:31] [PASSED] oob_was/18024947630
[15:07:31] [PASSED] oob_was/16022287689
[15:07:31] [PASSED] oob_was/13011645652
[15:07:31] [PASSED] oob_was/14022293748
[15:07:31] [PASSED] oob_was/22019794406
[15:07:31] [PASSED] oob_was/22019338487
[15:07:31] [PASSED] oob_was/16023588340
[15:07:31] [PASSED] oob_was/14019789679
[15:07:31] [PASSED] oob_was/14022866841
[15:07:31] [PASSED] oob_was/16021333562
[15:07:31] [PASSED] oob_was/14016712196
[15:07:31] [PASSED] oob_was/14015568240
[15:07:31] [PASSED] oob_was/18013179988
[15:07:31] [PASSED] oob_was/1508761755
[15:07:31] [PASSED] oob_was/16023105232
[15:07:31] [PASSED] oob_was/16026508708
[15:07:31] [PASSED] oob_was/14020001231
[15:07:31] [PASSED] oob_was/16023683509
[15:07:31] [PASSED] oob_was/14025515070
[15:07:31] [PASSED] oob_was/15015404425_disable
[15:07:31] [PASSED] oob_was/16026007364
[15:07:31] [PASSED] oob_was/14020316580
[15:07:31] [PASSED] oob_was/14025883347
[15:07:31] ============== [PASSED] xe_rtp_table_oob_test ==============
[15:07:31] ================ xe_rtp_table_dev_oob_test ================
[15:07:31] [PASSED] device_oob_was/22010954014
[15:07:31] [PASSED] device_oob_was/15015404425
[15:07:31] [PASSED] device_oob_was/22019338487_display
[15:07:31] [PASSED] device_oob_was/14022085890
[15:07:31] [PASSED] device_oob_was/14026539277
[15:07:31] [PASSED] device_oob_was/14026633728
[15:07:31] [PASSED] device_oob_was/14026746987
[15:07:31] [PASSED] device_oob_was/14026779378
[15:07:31] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[15:07:31] =============== [PASSED] xe_rtp_tables_test ================
[15:07:31] =================== xe_rtp (3 subtests) ====================
[15:07:31] =================== xe_rtp_rules_tests ====================
[15:07:31] [PASSED] no
[15:07:31] [PASSED] yes
[15:07:31] [PASSED] no-and-no
[15:07:31] [PASSED] no-and-yes
[15:07:31] [PASSED] yes-and-no
[15:07:31] [PASSED] yes-and-yes
[15:07:31] [PASSED] no-or-no
[15:07:31] [PASSED] no-or-yes
[15:07:31] [PASSED] yes-or-no
[15:07:31] [PASSED] yes-or-yes
[15:07:31] [PASSED] no-yes-or-yes-no
[15:07:31] [PASSED] no-yes-or-yes-yes
[15:07:31] [PASSED] yes-yes-or-no-yes
[15:07:31] [PASSED] yes-yes-or-yes-yes
[15:07:31] [PASSED] no-no-or-yes-or-no
[15:07:31] [PASSED] or
[15:07:31] [PASSED] or-yes
[15:07:31] [PASSED] or-no
[15:07:31] [PASSED] yes-or
[15:07:31] [PASSED] no-or
[15:07:31] [PASSED] no-or-or-yes
[15:07:31] [PASSED] yes-or-or-no
[15:07:31] [PASSED] no-or-or-no
[15:07:31] [PASSED] missing-context-engine-class
[15:07:31] [PASSED] missing-context-engine-class-or-yes
[15:07:31] [PASSED] missing-context-engine-class-or-or-yes
[15:07:31] =============== [PASSED] xe_rtp_rules_tests ================
[15:07:31] =============== xe_rtp_process_to_sr_tests ================
[15:07:31] [PASSED] coalesce-same-reg
[15:07:31] [PASSED] no-match-no-add
[15:07:31] [PASSED] two-regs-two-entries
[15:07:31] [PASSED] clr-one-set-other
[15:07:31] [PASSED] set-field
[15:07:31] [PASSED] conflict-duplicate
[15:07:31] [PASSED] conflict-not-disjoint
[15:07:31] [PASSED] conflict-reg-type
[15:07:31] [PASSED] bad-mcr-reg-forced-to-regular
[15:07:31] [PASSED] bad-regular-reg-forced-to-mcr
[15:07:31] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:07:31] ================== xe_rtp_process_tests ===================
[15:07:31] [PASSED] active1
[15:07:31] [PASSED] active2
[15:07:31] [PASSED] active-inactive
[15:07:31] [PASSED] inactive-active
[15:07:31] [PASSED] inactive-active-inactive
[15:07:31] [PASSED] inactive-inactive-inactive
[15:07:31] ============== [PASSED] xe_rtp_process_tests ===============
[15:07:31] ===================== [PASSED] xe_rtp ======================
[15:07:31] ==================== xe_wa (1 subtest) =====================
[15:07:31] ======================== xe_wa_gt =========================
[15:07:31] [PASSED] TIGERLAKE B0
[15:07:31] [PASSED] DG1 A0
[15:07:31] [PASSED] DG1 B0
[15:07:31] [PASSED] ALDERLAKE_S A0
[15:07:31] [PASSED] ALDERLAKE_S B0
[15:07:31] [PASSED] ALDERLAKE_S C0
[15:07:31] [PASSED] ALDERLAKE_S D0
[15:07:31] [PASSED] ALDERLAKE_P A0
[15:07:31] [PASSED] ALDERLAKE_P B0
[15:07:31] [PASSED] ALDERLAKE_P C0
[15:07:31] [PASSED] ALDERLAKE_S RPLS D0
[15:07:31] [PASSED] ALDERLAKE_P RPLU E0
[15:07:31] [PASSED] DG2 G10 C0
[15:07:31] [PASSED] DG2 G11 B1
[15:07:31] [PASSED] DG2 G12 A1
[15:07:31] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:07:31] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:07:31] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[15:07:31] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[15:07:31] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[15:07:31] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[15:07:31] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[15:07:31] ==================== [PASSED] xe_wa_gt =====================
[15:07:31] ====================== [PASSED] xe_wa ======================
[15:07:31] ============================================================
[15:07:31] Testing complete. Ran 715 tests: passed: 697, skipped: 18
[15:07:32] Elapsed time: 36.196s total, 4.297s configuring, 31.233s building, 0.640s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:07:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:07:33] 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
[15:07:57] Starting KUnit Kernel (1/1)...
[15:07:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:07:57] ============ drm_test_pick_cmdline (2 subtests) ============
[15:07:57] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[15:07:57] =============== drm_test_pick_cmdline_named ===============
[15:07:57] [PASSED] NTSC
[15:07:57] [PASSED] NTSC-J
[15:07:57] [PASSED] PAL
[15:07:57] [PASSED] PAL-M
[15:07:57] =========== [PASSED] drm_test_pick_cmdline_named ===========
[15:07:57] ============== [PASSED] drm_test_pick_cmdline ==============
[15:07:57] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:07:57] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:07:57] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:07:57] =========== drm_validate_clone_mode (2 subtests) ===========
[15:07:57] ============== drm_test_check_in_clone_mode ===============
[15:07:57] [PASSED] in_clone_mode
[15:07:57] [PASSED] not_in_clone_mode
[15:07:57] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:07:57] =============== drm_test_check_valid_clones ===============
[15:07:57] [PASSED] not_in_clone_mode
[15:07:57] [PASSED] valid_clone
[15:07:57] [PASSED] invalid_clone
[15:07:57] =========== [PASSED] drm_test_check_valid_clones ===========
[15:07:57] ============= [PASSED] drm_validate_clone_mode =============
[15:07:57] ============= drm_validate_modeset (1 subtest) =============
[15:07:57] [PASSED] drm_test_check_connector_changed_modeset
[15:07:57] ============== [PASSED] drm_validate_modeset ===============
[15:07:57] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:07:57] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:07:57] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:07:57] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:07:57] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:07:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:07:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:07:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:07:57] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:07:57] ============== drm_bridge_alloc (2 subtests) ===============
[15:07:57] [PASSED] drm_test_drm_bridge_alloc_basic
[15:07:57] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:07:57] ================ [PASSED] drm_bridge_alloc =================
[15:07:57] ============= drm_cmdline_parser (40 subtests) =============
[15:07:57] [PASSED] drm_test_cmdline_force_d_only
[15:07:57] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:07:57] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:07:57] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:07:57] [PASSED] drm_test_cmdline_force_e_only
[15:07:57] [PASSED] drm_test_cmdline_res
[15:07:57] [PASSED] drm_test_cmdline_res_vesa
[15:07:57] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:07:57] [PASSED] drm_test_cmdline_res_rblank
[15:07:57] [PASSED] drm_test_cmdline_res_bpp
[15:07:57] [PASSED] drm_test_cmdline_res_refresh
[15:07:57] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:07:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:07:57] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:07:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:07:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:07:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:07:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:07:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:07:57] [PASSED] drm_test_cmdline_res_margins_force_on
[15:07:57] [PASSED] drm_test_cmdline_res_vesa_margins
[15:07:57] [PASSED] drm_test_cmdline_name
[15:07:57] [PASSED] drm_test_cmdline_name_bpp
[15:07:57] [PASSED] drm_test_cmdline_name_option
[15:07:57] [PASSED] drm_test_cmdline_name_bpp_option
[15:07:57] [PASSED] drm_test_cmdline_rotate_0
[15:07:57] [PASSED] drm_test_cmdline_rotate_90
[15:07:57] [PASSED] drm_test_cmdline_rotate_180
[15:07:57] [PASSED] drm_test_cmdline_rotate_270
[15:07:57] [PASSED] drm_test_cmdline_hmirror
[15:07:57] [PASSED] drm_test_cmdline_vmirror
[15:07:57] [PASSED] drm_test_cmdline_margin_options
[15:07:57] [PASSED] drm_test_cmdline_multiple_options
[15:07:57] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:07:57] [PASSED] drm_test_cmdline_extra_and_option
[15:07:57] [PASSED] drm_test_cmdline_freestanding_options
[15:07:57] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:07:57] [PASSED] drm_test_cmdline_panel_orientation
[15:07:57] ================ drm_test_cmdline_invalid =================
[15:07:57] [PASSED] margin_only
[15:07:57] [PASSED] interlace_only
[15:07:57] [PASSED] res_missing_x
[15:07:57] [PASSED] res_missing_y
[15:07:57] [PASSED] res_bad_y
[15:07:57] [PASSED] res_missing_y_bpp
[15:07:57] [PASSED] res_bad_bpp
[15:07:57] [PASSED] res_bad_refresh
[15:07:57] [PASSED] res_bpp_refresh_force_on_off
[15:07:57] [PASSED] res_invalid_mode
[15:07:57] [PASSED] res_bpp_wrong_place_mode
[15:07:57] [PASSED] name_bpp_refresh
[15:07:57] [PASSED] name_refresh
[15:07:57] [PASSED] name_refresh_wrong_mode
[15:07:57] [PASSED] name_refresh_invalid_mode
[15:07:57] [PASSED] rotate_multiple
[15:07:57] [PASSED] rotate_invalid_val
[15:07:57] [PASSED] rotate_truncated
[15:07:57] [PASSED] invalid_option
[15:07:57] [PASSED] invalid_tv_option
[15:07:57] [PASSED] truncated_tv_option
[15:07:57] ============ [PASSED] drm_test_cmdline_invalid =============
[15:07:57] =============== drm_test_cmdline_tv_options ===============
[15:07:57] [PASSED] NTSC
[15:07:57] [PASSED] NTSC_443
[15:07:57] [PASSED] NTSC_J
[15:07:57] [PASSED] PAL
[15:07:57] [PASSED] PAL_M
[15:07:57] [PASSED] PAL_N
[15:07:57] [PASSED] SECAM
[15:07:57] [PASSED] MONO_525
[15:07:57] [PASSED] MONO_625
[15:07:57] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:07:57] =============== [PASSED] drm_cmdline_parser ================
[15:07:57] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:07:57] [PASSED] drm_test_connector_hdmi_init_valid
[15:07:57] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:07:57] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:07:57] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:07:57] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:07:57] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:07:57] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:07:57] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:07:57] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:07:57] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:07:57] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:07:57] [PASSED] supported_formats=0x5 yuv420_allowed=1
[15:07:57] [PASSED] supported_formats=0x5 yuv420_allowed=0
[15:07:57] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:07:57] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:07:57] [PASSED] drm_test_connector_hdmi_init_null_product
[15:07:57] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:07:57] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:07:57] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:07:57] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:07:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:07:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:07:57] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:07:57] ========= drm_test_connector_hdmi_init_type_valid =========
[15:07:57] [PASSED] HDMI-A
[15:07:57] [PASSED] HDMI-B
[15:07:57] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:07:57] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:07:57] [PASSED] Unknown
[15:07:57] [PASSED] VGA
[15:07:57] [PASSED] DVI-I
[15:07:57] [PASSED] DVI-D
[15:07:57] [PASSED] DVI-A
[15:07:57] [PASSED] Composite
[15:07:57] [PASSED] SVIDEO
[15:07:57] [PASSED] LVDS
[15:07:57] [PASSED] Component
[15:07:57] [PASSED] DIN
[15:07:57] [PASSED] DP
[15:07:57] [PASSED] TV
[15:07:57] [PASSED] eDP
[15:07:57] [PASSED] Virtual
[15:07:57] [PASSED] DSI
[15:07:57] [PASSED] DPI
[15:07:57] [PASSED] Writeback
[15:07:57] [PASSED] SPI
[15:07:57] [PASSED] USB
[15:07:57] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:07:57] ============ [PASSED] drmm_connector_hdmi_init =============
[15:07:57] ============= drmm_connector_init (3 subtests) =============
[15:07:57] [PASSED] drm_test_drmm_connector_init
[15:07:57] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:07:57] ========= drm_test_drmm_connector_init_type_valid =========
[15:07:57] [PASSED] Unknown
[15:07:57] [PASSED] VGA
[15:07:57] [PASSED] DVI-I
[15:07:57] [PASSED] DVI-D
[15:07:57] [PASSED] DVI-A
[15:07:57] [PASSED] Composite
[15:07:57] [PASSED] SVIDEO
[15:07:57] [PASSED] LVDS
[15:07:57] [PASSED] Component
[15:07:57] [PASSED] DIN
[15:07:57] [PASSED] DP
[15:07:57] [PASSED] HDMI-A
[15:07:57] [PASSED] HDMI-B
[15:07:57] [PASSED] TV
[15:07:57] [PASSED] eDP
[15:07:57] [PASSED] Virtual
[15:07:57] [PASSED] DSI
[15:07:57] [PASSED] DPI
[15:07:57] [PASSED] Writeback
[15:07:57] [PASSED] SPI
[15:07:57] [PASSED] USB
[15:07:57] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:07:57] =============== [PASSED] drmm_connector_init ===============
[15:07:57] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_init
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:07:57] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[15:07:57] [PASSED] Unknown
[15:07:57] [PASSED] VGA
[15:07:57] [PASSED] DVI-I
[15:07:57] [PASSED] DVI-D
[15:07:57] [PASSED] DVI-A
[15:07:57] [PASSED] Composite
[15:07:57] [PASSED] SVIDEO
[15:07:57] [PASSED] LVDS
[15:07:57] [PASSED] Component
[15:07:57] [PASSED] DIN
[15:07:57] [PASSED] DP
[15:07:57] [PASSED] HDMI-A
[15:07:57] [PASSED] HDMI-B
[15:07:57] [PASSED] TV
[15:07:57] [PASSED] eDP
[15:07:57] [PASSED] Virtual
[15:07:57] [PASSED] DSI
[15:07:57] [PASSED] DPI
[15:07:57] [PASSED] Writeback
[15:07:57] [PASSED] SPI
[15:07:57] [PASSED] USB
[15:07:57] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:07:57] ======== drm_test_drm_connector_dynamic_init_name =========
[15:07:57] [PASSED] Unknown
[15:07:57] [PASSED] VGA
[15:07:57] [PASSED] DVI-I
[15:07:57] [PASSED] DVI-D
[15:07:57] [PASSED] DVI-A
[15:07:57] [PASSED] Composite
[15:07:57] [PASSED] SVIDEO
[15:07:57] [PASSED] LVDS
[15:07:57] [PASSED] Component
[15:07:57] [PASSED] DIN
[15:07:57] [PASSED] DP
[15:07:57] [PASSED] HDMI-A
[15:07:57] [PASSED] HDMI-B
[15:07:57] [PASSED] TV
[15:07:57] [PASSED] eDP
[15:07:57] [PASSED] Virtual
[15:07:57] [PASSED] DSI
[15:07:57] [PASSED] DPI
[15:07:57] [PASSED] Writeback
[15:07:57] [PASSED] SPI
[15:07:57] [PASSED] USB
[15:07:57] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:07:57] =========== [PASSED] drm_connector_dynamic_init ============
[15:07:57] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:07:57] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:07:57] ======= drm_connector_dynamic_register (7 subtests) ========
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:07:57] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:07:57] ========= [PASSED] drm_connector_dynamic_register ==========
[15:07:57] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:07:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:07:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:07:57] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:07:57] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:07:57] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:07:57] [PASSED] NTSC
[15:07:57] [PASSED] NTSC-443
[15:07:57] [PASSED] NTSC-J
[15:07:57] [PASSED] PAL
[15:07:57] [PASSED] PAL-M
[15:07:57] [PASSED] PAL-N
[15:07:57] [PASSED] SECAM
[15:07:57] [PASSED] Mono
[15:07:57] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:07:57] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:07:57] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:07:57] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:07:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:07:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:07:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:07:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:07:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:07:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:07:57] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:07:57] [PASSED] VIC 96
[15:07:57] [PASSED] VIC 97
[15:07:57] [PASSED] VIC 101
[15:07:57] [PASSED] VIC 102
[15:07:57] [PASSED] VIC 106
[15:07:57] [PASSED] VIC 107
[15:07:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:07:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:07:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:07:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:07:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:07:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:07:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:07:57] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:07:57] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:07:57] [PASSED] Automatic
[15:07:57] [PASSED] Full
[15:07:57] [PASSED] Limited 16:235
[15:07:57] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:07:57] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:07:57] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:07:57] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:07:57] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:07:57] [PASSED] RGB
[15:07:57] [PASSED] YUV 4:2:0
[15:07:57] [PASSED] YUV 4:2:2
[15:07:57] [PASSED] YUV 4:4:4
[15:07:57] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:07:57] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:07:57] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:07:57] ============= drm_damage_helper (21 subtests) ==============
[15:07:57] [PASSED] drm_test_damage_iter_no_damage
[15:07:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:07:57] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:07:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:07:57] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:07:57] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:07:57] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:07:57] [PASSED] drm_test_damage_iter_simple_damage
[15:07:57] [PASSED] drm_test_damage_iter_single_damage
[15:07:57] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:07:57] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:07:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:07:57] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:07:57] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:07:57] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:07:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:07:57] [PASSED] drm_test_damage_iter_damage
[15:07:57] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:07:57] [PASSED] drm_test_damage_iter_damage_one_outside
[15:07:57] [PASSED] drm_test_damage_iter_damage_src_moved
[15:07:57] [PASSED] drm_test_damage_iter_damage_not_visible
[15:07:57] ================ [PASSED] drm_damage_helper ================
[15:07:57] ============== drm_dp_mst_helper (3 subtests) ==============
[15:07:57] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:07:57] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:07:57] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:07:57] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:07:57] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:07:57] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:07:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:07:57] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:07:57] [PASSED] Link rate 2000000 lane count 4
[15:07:57] [PASSED] Link rate 2000000 lane count 2
[15:07:57] [PASSED] Link rate 2000000 lane count 1
[15:07:57] [PASSED] Link rate 1350000 lane count 4
[15:07:57] [PASSED] Link rate 1350000 lane count 2
[15:07:57] [PASSED] Link rate 1350000 lane count 1
[15:07:57] [PASSED] Link rate 1000000 lane count 4
[15:07:57] [PASSED] Link rate 1000000 lane count 2
[15:07:57] [PASSED] Link rate 1000000 lane count 1
[15:07:57] [PASSED] Link rate 810000 lane count 4
[15:07:57] [PASSED] Link rate 810000 lane count 2
[15:07:57] [PASSED] Link rate 810000 lane count 1
[15:07:57] [PASSED] Link rate 540000 lane count 4
[15:07:57] [PASSED] Link rate 540000 lane count 2
[15:07:57] [PASSED] Link rate 540000 lane count 1
[15:07:57] [PASSED] Link rate 270000 lane count 4
[15:07:57] [PASSED] Link rate 270000 lane count 2
[15:07:57] [PASSED] Link rate 270000 lane count 1
[15:07:57] [PASSED] Link rate 162000 lane count 4
[15:07:57] [PASSED] Link rate 162000 lane count 2
[15:07:57] [PASSED] Link rate 162000 lane count 1
[15:07:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:07:57] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:07:57] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:07:57] [PASSED] DP_POWER_UP_PHY with port number
[15:07:57] [PASSED] DP_POWER_DOWN_PHY with port number
[15:07:57] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:07:57] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:07:57] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:07:57] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:07:57] [PASSED] DP_QUERY_PAYLOAD with port number
[15:07:57] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:07:57] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:07:57] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:07:57] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:07:57] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:07:57] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:07:57] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:07:57] [PASSED] DP_REMOTE_I2C_READ with port number
[15:07:57] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:07:57] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:07:57] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:07:57] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:07:57] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:07:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:07:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:07:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:07:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:07:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:07:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:07:57] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:07:57] ================ [PASSED] drm_dp_mst_helper ================
[15:07:57] ================== drm_exec (7 subtests) ===================
[15:07:57] [PASSED] sanitycheck
[15:07:57] [PASSED] test_lock
[15:07:57] [PASSED] test_lock_unlock
[15:07:57] [PASSED] test_duplicates
[15:07:57] [PASSED] test_prepare
[15:07:57] [PASSED] test_prepare_array
[15:07:57] [PASSED] test_multiple_loops
[15:07:57] ==================== [PASSED] drm_exec =====================
[15:07:57] =========== drm_format_helper_test (17 subtests) ===========
[15:07:57] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:07:57] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:07:57] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:07:57] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:07:57] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:07:57] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:07:57] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:07:57] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:07:57] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:07:57] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:07:57] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:07:57] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:07:57] ==================== drm_test_fb_swab =====================
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ================ [PASSED] drm_test_fb_swab =================
[15:07:57] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:07:57] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:07:57] [PASSED] single_pixel_source_buffer
[15:07:57] [PASSED] single_pixel_clip_rectangle
[15:07:57] [PASSED] well_known_colors
[15:07:57] [PASSED] destination_pitch
[15:07:57] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:07:57] ================= drm_test_fb_clip_offset =================
[15:07:57] [PASSED] pass through
[15:07:57] [PASSED] horizontal offset
[15:07:57] [PASSED] vertical offset
[15:07:57] [PASSED] horizontal and vertical offset
[15:07:57] [PASSED] horizontal offset (custom pitch)
[15:07:57] [PASSED] vertical offset (custom pitch)
[15:07:57] [PASSED] horizontal and vertical offset (custom pitch)
[15:07:57] ============= [PASSED] drm_test_fb_clip_offset =============
[15:07:57] =================== drm_test_fb_memcpy ====================
[15:07:57] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:07:57] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:07:57] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:07:57] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:07:57] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:07:57] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:07:57] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:07:57] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:07:57] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:07:57] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:07:57] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:07:57] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:07:57] =============== [PASSED] drm_test_fb_memcpy ================
[15:07:57] ============= [PASSED] drm_format_helper_test ==============
[15:07:57] ================= drm_format (18 subtests) =================
[15:07:57] [PASSED] drm_test_format_block_width_invalid
[15:07:57] [PASSED] drm_test_format_block_width_one_plane
[15:07:57] [PASSED] drm_test_format_block_width_two_plane
[15:07:57] [PASSED] drm_test_format_block_width_three_plane
[15:07:57] [PASSED] drm_test_format_block_width_tiled
[15:07:57] [PASSED] drm_test_format_block_height_invalid
[15:07:57] [PASSED] drm_test_format_block_height_one_plane
[15:07:57] [PASSED] drm_test_format_block_height_two_plane
[15:07:57] [PASSED] drm_test_format_block_height_three_plane
[15:07:57] [PASSED] drm_test_format_block_height_tiled
[15:07:57] [PASSED] drm_test_format_min_pitch_invalid
[15:07:57] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:07:57] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:07:57] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:07:57] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:07:57] [PASSED] drm_test_format_min_pitch_two_plane
[15:07:57] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:07:57] [PASSED] drm_test_format_min_pitch_tiled
[15:07:57] =================== [PASSED] drm_format ====================
[15:07:57] ============== drm_framebuffer (10 subtests) ===============
[15:07:57] ========== drm_test_framebuffer_check_src_coords ==========
[15:07:57] [PASSED] Success: source fits into fb
[15:07:57] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:07:57] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:07:57] [PASSED] Fail: overflowing fb with source width
[15:07:57] [PASSED] Fail: overflowing fb with source height
[15:07:57] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:07:57] [PASSED] drm_test_framebuffer_cleanup
[15:07:57] =============== drm_test_framebuffer_create ===============
[15:07:57] [PASSED] ABGR8888 normal sizes
[15:07:57] [PASSED] ABGR8888 max sizes
[15:07:57] [PASSED] ABGR8888 pitch greater than min required
[15:07:57] [PASSED] ABGR8888 pitch less than min required
[15:07:57] [PASSED] ABGR8888 Invalid width
[15:07:57] [PASSED] ABGR8888 Invalid buffer handle
[15:07:57] [PASSED] No pixel format
[15:07:57] [PASSED] ABGR8888 Width 0
[15:07:57] [PASSED] ABGR8888 Height 0
[15:07:57] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:07:57] [PASSED] ABGR8888 Large buffer offset
[15:07:57] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:07:57] [PASSED] ABGR8888 Invalid flag
[15:07:57] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:07:57] [PASSED] ABGR8888 Valid buffer modifier
[15:07:57] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:07:57] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:07:57] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:07:57] [PASSED] NV12 Normal sizes
[15:07:57] [PASSED] NV12 Max sizes
[15:07:57] [PASSED] NV12 Invalid pitch
[15:07:57] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:07:57] [PASSED] NV12 different modifier per-plane
[15:07:57] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:07:57] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:07:57] [PASSED] NV12 Modifier for inexistent plane
[15:07:57] [PASSED] NV12 Handle for inexistent plane
[15:07:57] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:07:57] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:07:57] [PASSED] YVU420 Normal sizes
[15:07:57] [PASSED] YVU420 Max sizes
[15:07:57] [PASSED] YVU420 Invalid pitch
[15:07:57] [PASSED] YVU420 Different pitches
[15:07:57] [PASSED] YVU420 Different buffer offsets/pitches
[15:07:57] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:07:57] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:07:57] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:07:57] [PASSED] YVU420 Valid modifier
[15:07:57] [PASSED] YVU420 Different modifiers per plane
[15:07:57] [PASSED] YVU420 Modifier for inexistent plane
[15:07:57] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:07:57] [PASSED] X0L2 Normal sizes
[15:07:57] [PASSED] X0L2 Max sizes
[15:07:57] [PASSED] X0L2 Invalid pitch
[15:07:57] [PASSED] X0L2 Pitch greater than minimum required
[15:07:57] [PASSED] X0L2 Handle for inexistent plane
[15:07:57] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:07:57] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:07:57] [PASSED] X0L2 Valid modifier
[15:07:57] [PASSED] X0L2 Modifier for inexistent plane
[15:07:57] =========== [PASSED] drm_test_framebuffer_create ===========
[15:07:57] [PASSED] drm_test_framebuffer_free
[15:07:57] [PASSED] drm_test_framebuffer_init
[15:07:57] [PASSED] drm_test_framebuffer_init_bad_format
[15:07:57] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:07:57] [PASSED] drm_test_framebuffer_lookup
[15:07:57] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:07:57] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:07:57] ================= [PASSED] drm_framebuffer =================
[15:07:57] ================ drm_gem_shmem (8 subtests) ================
[15:07:57] [PASSED] drm_gem_shmem_test_obj_create
[15:07:57] [PASSED] drm_gem_shmem_test_obj_create_private
[15:07:57] [PASSED] drm_gem_shmem_test_pin_pages
[15:07:57] [PASSED] drm_gem_shmem_test_vmap
[15:07:57] [PASSED] drm_gem_shmem_test_get_sg_table
[15:07:57] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:07:57] [PASSED] drm_gem_shmem_test_madvise
[15:07:57] [PASSED] drm_gem_shmem_test_purge
[15:07:57] ================== [PASSED] drm_gem_shmem ==================
[15:07:57] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:07:57] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[15:07:57] [PASSED] Automatic
[15:07:57] [PASSED] Full
[15:07:57] [PASSED] Limited 16:235
[15:07:57] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:07:57] [PASSED] drm_test_check_disable_connector
[15:07:57] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:07:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:07:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:07:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:07:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:07:57] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:07:57] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:07:57] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:07:57] [PASSED] drm_test_check_output_bpc_dvi
[15:07:57] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:07:57] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:07:57] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:07:57] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:07:57] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:07:57] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:07:57] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:07:57] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:07:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:07:57] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:07:57] [PASSED] drm_test_check_broadcast_rgb_value
[15:07:57] [PASSED] drm_test_check_bpc_8_value
[15:07:57] [PASSED] drm_test_check_bpc_10_value
[15:07:57] [PASSED] drm_test_check_bpc_12_value
[15:07:57] [PASSED] drm_test_check_format_value
[15:07:57] [PASSED] drm_test_check_tmds_char_value
[15:07:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:07:57] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:07:57] [PASSED] drm_test_check_mode_valid
[15:07:57] [PASSED] drm_test_check_mode_valid_reject
[15:07:57] [PASSED] drm_test_check_mode_valid_reject_rate
[15:07:57] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:07:57] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:07:57] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[15:07:57] [PASSED] drm_test_check_infoframes
[15:07:57] [PASSED] drm_test_check_reject_avi_infoframe
[15:07:57] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[15:07:57] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[15:07:57] [PASSED] drm_test_check_reject_audio_infoframe
[15:07:57] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[15:07:57] ================= drm_managed (2 subtests) =================
[15:07:57] [PASSED] drm_test_managed_release_action
[15:07:57] [PASSED] drm_test_managed_run_action
[15:07:57] =================== [PASSED] drm_managed ===================
[15:07:57] =================== drm_mm (6 subtests) ====================
[15:07:57] [PASSED] drm_test_mm_init
[15:07:57] [PASSED] drm_test_mm_debug
[15:07:57] [PASSED] drm_test_mm_align32
[15:07:57] [PASSED] drm_test_mm_align64
[15:07:57] [PASSED] drm_test_mm_lowest
[15:07:57] [PASSED] drm_test_mm_highest
[15:07:57] ===================== [PASSED] drm_mm ======================
[15:07:57] ============= drm_modes_analog_tv (5 subtests) =============
[15:07:57] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:07:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:07:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:07:57] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:07:57] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:07:57] =============== [PASSED] drm_modes_analog_tv ===============
[15:07:57] ============== drm_plane_helper (2 subtests) ===============
[15:07:57] =============== drm_test_check_plane_state ================
[15:07:57] [PASSED] clipping_simple
[15:07:57] [PASSED] clipping_rotate_reflect
[15:07:57] [PASSED] positioning_simple
[15:07:57] [PASSED] upscaling
[15:07:57] [PASSED] downscaling
[15:07:57] [PASSED] rounding1
[15:07:57] [PASSED] rounding2
[15:07:57] [PASSED] rounding3
[15:07:57] [PASSED] rounding4
[15:07:57] =========== [PASSED] drm_test_check_plane_state ============
[15:07:57] =========== drm_test_check_invalid_plane_state ============
[15:07:57] [PASSED] positioning_invalid
[15:07:57] [PASSED] upscaling_invalid
[15:07:57] [PASSED] downscaling_invalid
[15:07:57] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:07:57] ================ [PASSED] drm_plane_helper =================
[15:07:57] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:07:57] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:07:57] [PASSED] None
[15:07:57] [PASSED] PAL
[15:07:57] [PASSED] NTSC
[15:07:57] [PASSED] Both, NTSC Default
[15:07:57] [PASSED] Both, PAL Default
[15:07:57] [PASSED] Both, NTSC Default, with PAL on command-line
[15:07:57] [PASSED] Both, PAL Default, with NTSC on command-line
[15:07:57] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:07:57] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:07:57] ================== drm_rect (9 subtests) ===================
[15:07:57] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:07:57] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:07:57] [PASSED] drm_test_rect_clip_scaled_clipped
[15:07:57] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:07:57] ================= drm_test_rect_intersect =================
[15:07:57] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:07:57] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:07:57] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:07:57] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:07:57] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:07:57] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:07:57] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:07:57] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:07:57] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:07:57] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:07:57] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:07:57] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:07:57] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:07:57] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:07:57] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:07:57] ============= [PASSED] drm_test_rect_intersect =============
[15:07:57] ================ drm_test_rect_calc_hscale ================
[15:07:57] [PASSED] normal use
[15:07:57] [PASSED] out of max range
[15:07:57] [PASSED] out of min range
[15:07:57] [PASSED] zero dst
[15:07:57] [PASSED] negative src
[15:07:57] [PASSED] negative dst
[15:07:57] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:07:57] ================ drm_test_rect_calc_vscale ================
[15:07:57] [PASSED] normal use
[15:07:57] [PASSED] out of max range
[15:07:57] [PASSED] out of min range
[15:07:57] [PASSED] zero dst
[15:07:57] [PASSED] negative src
[15:07:57] [PASSED] negative dst
[15:07:57] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:07:57] ================== drm_test_rect_rotate ===================
[15:07:57] [PASSED] reflect-x
[15:07:57] [PASSED] reflect-y
[15:07:57] [PASSED] rotate-0
[15:07:57] [PASSED] rotate-90
[15:07:57] [PASSED] rotate-180
[15:07:57] [PASSED] rotate-270
[15:07:57] ============== [PASSED] drm_test_rect_rotate ===============
[15:07:57] ================ drm_test_rect_rotate_inv =================
[15:07:57] [PASSED] reflect-x
[15:07:57] [PASSED] reflect-y
[15:07:57] [PASSED] rotate-0
[15:07:57] [PASSED] rotate-90
[15:07:57] [PASSED] rotate-180
[15:07:57] [PASSED] rotate-270
[15:07:57] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:07:57] ==================== [PASSED] drm_rect =====================
[15:07:57] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:07:57] ============ drm_test_sysfb_build_fourcc_list =============
[15:07:57] [PASSED] no native formats
[15:07:57] [PASSED] XRGB8888 as native format
[15:07:57] [PASSED] remove duplicates
[15:07:57] [PASSED] convert alpha formats
[15:07:57] [PASSED] random formats
[15:07:57] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:07:57] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:07:57] ================== drm_fixp (2 subtests) ===================
[15:07:57] [PASSED] drm_test_int2fixp
[15:07:57] [PASSED] drm_test_sm2fixp
[15:07:57] ==================== [PASSED] drm_fixp =====================
[15:07:57] ============================================================
[15:07:57] Testing complete. Ran 621 tests: passed: 621
[15:07:57] Elapsed time: 25.736s total, 1.720s configuring, 23.849s building, 0.135s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:07:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:07: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=48
[15:08:09] Starting KUnit Kernel (1/1)...
[15:08:09] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:08:09] ================= ttm_device (5 subtests) ==================
[15:08:09] [PASSED] ttm_device_init_basic
[15:08:09] [PASSED] ttm_device_init_multiple
[15:08:09] [PASSED] ttm_device_fini_basic
[15:08:09] [PASSED] ttm_device_init_no_vma_man
[15:08:09] ================== ttm_device_init_pools ==================
[15:08:09] [PASSED] No DMA allocations, no DMA32 required
[15:08:09] [PASSED] DMA allocations, DMA32 required
[15:08:09] [PASSED] No DMA allocations, DMA32 required
[15:08:09] [PASSED] DMA allocations, no DMA32 required
[15:08:09] ============== [PASSED] ttm_device_init_pools ==============
[15:08:09] =================== [PASSED] ttm_device ====================
[15:08:09] ================== ttm_pool (8 subtests) ===================
[15:08:09] ================== ttm_pool_alloc_basic ===================
[15:08:09] [PASSED] One page
[15:08:09] [PASSED] More than one page
[15:08:09] [PASSED] Above the allocation limit
[15:08:09] [PASSED] One page, with coherent DMA mappings enabled
[15:08:09] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:08:09] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:08:09] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:08:09] [PASSED] One page
[15:08:09] [PASSED] More than one page
[15:08:09] [PASSED] Above the allocation limit
[15:08:09] [PASSED] One page, with coherent DMA mappings enabled
[15:08:09] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:08:09] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:08:09] [PASSED] ttm_pool_alloc_order_caching_match
[15:08:09] [PASSED] ttm_pool_alloc_caching_mismatch
[15:08:09] [PASSED] ttm_pool_alloc_order_mismatch
[15:08:09] [PASSED] ttm_pool_free_dma_alloc
[15:08:09] [PASSED] ttm_pool_free_no_dma_alloc
[15:08:09] [PASSED] ttm_pool_fini_basic
[15:08:09] ==================== [PASSED] ttm_pool =====================
[15:08:09] ================ ttm_resource (8 subtests) =================
[15:08:09] ================= ttm_resource_init_basic =================
[15:08:09] [PASSED] Init resource in TTM_PL_SYSTEM
[15:08:09] [PASSED] Init resource in TTM_PL_VRAM
[15:08:09] [PASSED] Init resource in a private placement
[15:08:09] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:08:09] ============= [PASSED] ttm_resource_init_basic =============
[15:08:09] [PASSED] ttm_resource_init_pinned
[15:08:09] [PASSED] ttm_resource_fini_basic
[15:08:09] [PASSED] ttm_resource_manager_init_basic
[15:08:09] [PASSED] ttm_resource_manager_usage_basic
[15:08:09] [PASSED] ttm_resource_manager_set_used_basic
[15:08:09] [PASSED] ttm_sys_man_alloc_basic
[15:08:09] [PASSED] ttm_sys_man_free_basic
[15:08:09] ================== [PASSED] ttm_resource ===================
[15:08:09] =================== ttm_tt (15 subtests) ===================
[15:08:09] ==================== ttm_tt_init_basic ====================
[15:08:09] [PASSED] Page-aligned size
[15:08:09] [PASSED] Extra pages requested
[15:08:09] ================ [PASSED] ttm_tt_init_basic ================
[15:08:09] [PASSED] ttm_tt_init_misaligned
[15:08:09] [PASSED] ttm_tt_fini_basic
[15:08:09] [PASSED] ttm_tt_fini_sg
[15:08:09] [PASSED] ttm_tt_fini_shmem
[15:08:09] [PASSED] ttm_tt_create_basic
[15:08:09] [PASSED] ttm_tt_create_invalid_bo_type
[15:08:09] [PASSED] ttm_tt_create_ttm_exists
[15:08:09] [PASSED] ttm_tt_create_failed
[15:08:09] [PASSED] ttm_tt_destroy_basic
[15:08:09] [PASSED] ttm_tt_populate_null_ttm
[15:08:09] [PASSED] ttm_tt_populate_populated_ttm
[15:08:09] [PASSED] ttm_tt_unpopulate_basic
[15:08:09] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:08:09] [PASSED] ttm_tt_swapin_basic
[15:08:09] ===================== [PASSED] ttm_tt ======================
[15:08:09] =================== ttm_bo (14 subtests) ===================
[15:08:09] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[15:08:09] [PASSED] Cannot be interrupted and sleeps
[15:08:09] [PASSED] Cannot be interrupted, locks straight away
[15:08:09] [PASSED] Can be interrupted, sleeps
[15:08:09] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:08:09] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:08:09] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:08:09] [PASSED] ttm_bo_reserve_double_resv
[15:08:09] [PASSED] ttm_bo_reserve_interrupted
[15:08:09] [PASSED] ttm_bo_reserve_deadlock
[15:08:09] [PASSED] ttm_bo_unreserve_basic
[15:08:09] [PASSED] ttm_bo_unreserve_pinned
[15:08:09] [PASSED] ttm_bo_unreserve_bulk
[15:08:09] [PASSED] ttm_bo_fini_basic
[15:08:09] [PASSED] ttm_bo_fini_shared_resv
[15:08:09] [PASSED] ttm_bo_pin_basic
[15:08:09] [PASSED] ttm_bo_pin_unpin_resource
[15:08:09] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:08:09] ===================== [PASSED] ttm_bo ======================
[15:08:09] ============== ttm_bo_validate (22 subtests) ===============
[15:08:09] ============== ttm_bo_init_reserved_sys_man ===============
[15:08:09] [PASSED] Buffer object for userspace
[15:08:09] [PASSED] Kernel buffer object
[15:08:09] [PASSED] Shared buffer object
[15:08:09] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:08:09] ============== ttm_bo_init_reserved_mock_man ==============
[15:08:09] [PASSED] Buffer object for userspace
[15:08:09] [PASSED] Kernel buffer object
[15:08:09] [PASSED] Shared buffer object
[15:08:09] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:08:09] [PASSED] ttm_bo_init_reserved_resv
[15:08:09] ================== ttm_bo_validate_basic ==================
[15:08:09] [PASSED] Buffer object for userspace
[15:08:09] [PASSED] Kernel buffer object
[15:08:09] [PASSED] Shared buffer object
[15:08:09] ============== [PASSED] ttm_bo_validate_basic ==============
[15:08:09] [PASSED] ttm_bo_validate_invalid_placement
[15:08:09] ============= ttm_bo_validate_same_placement ==============
[15:08:09] [PASSED] System manager
[15:08:09] [PASSED] VRAM manager
[15:08:09] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:08:09] [PASSED] ttm_bo_validate_failed_alloc
[15:08:09] [PASSED] ttm_bo_validate_pinned
[15:08:09] [PASSED] ttm_bo_validate_busy_placement
[15:08:09] ================ ttm_bo_validate_multihop =================
[15:08:09] [PASSED] Buffer object for userspace
[15:08:09] [PASSED] Kernel buffer object
[15:08:09] [PASSED] Shared buffer object
[15:08:09] ============ [PASSED] ttm_bo_validate_multihop =============
[15:08:09] ========== ttm_bo_validate_no_placement_signaled ==========
[15:08:09] [PASSED] Buffer object in system domain, no page vector
[15:08:09] [PASSED] Buffer object in system domain with an existing page vector
[15:08:09] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:08:09] ======== ttm_bo_validate_no_placement_not_signaled ========
[15:08:09] [PASSED] Buffer object for userspace
[15:08:09] [PASSED] Kernel buffer object
[15:08:09] [PASSED] Shared buffer object
[15:08:09] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:08:09] [PASSED] ttm_bo_validate_move_fence_signaled
[15:08:09] ========= ttm_bo_validate_move_fence_not_signaled =========
[15:08:09] [PASSED] Waits for GPU
[15:08:09] [PASSED] Tries to lock straight away
[15:08:09] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:08:09] [PASSED] ttm_bo_validate_swapout
[15:08:09] [PASSED] ttm_bo_validate_happy_evict
[15:08:09] [PASSED] ttm_bo_validate_all_pinned_evict
[15:08:09] [PASSED] ttm_bo_validate_allowed_only_evict
[15:08:09] [PASSED] ttm_bo_validate_deleted_evict
[15:08:09] [PASSED] ttm_bo_validate_busy_domain_evict
[15:08:09] [PASSED] ttm_bo_validate_evict_gutting
[15:08:09] [PASSED] ttm_bo_validate_recrusive_evict
[15:08:09] ================= [PASSED] ttm_bo_validate =================
[15:08:09] ============================================================
[15:08:09] Testing complete. Ran 102 tests: passed: 102
[15:08:09] Elapsed time: 11.494s total, 1.756s configuring, 9.522s building, 0.182s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
` (3 preceding siblings ...)
2026-06-03 15:08 ` ✓ CI.KUnit: success " Patchwork
@ 2026-06-03 15:52 ` Patchwork
2026-06-03 16:31 ` [PATCH 1/3] " Ghimiray, Himal Prasad
` (2 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-06-03 15:52 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 32978 bytes --]
== Series Details ==
Series: series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
URL : https://patchwork.freedesktop.org/series/167822/
State : success
== Summary ==
CI Bug Log - changes from xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7_BAT -> xe-pw-167822v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (1 -> 13)
------------------------------
Additional (12): bat-bmg-1 bat-lnl-2 bat-lnl-1 bat-ptl-1 bat-ptl-vm bat-bmg-vm bat-atsm-2 bat-bmg-3 bat-wcl-1 bat-wcl-2 bat-bmg-2 bat-adlp-7
Known issues
------------
Here are the changes found in xe-pw-167822v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-ptl-1: NOTRUN -> [SKIP][1] ([Intel XE#5773]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-atsm-2: NOTRUN -> [SKIP][2] ([Intel XE#2134]) +4 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@fbdev@info.html
* igt@fbdev@nullptr:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@fbdev@nullptr.html
- bat-lnl-2: NOTRUN -> [SKIP][4] ([Intel XE#2134]) +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@fbdev@nullptr.html
* igt@fbdev@write:
- bat-wcl-2: NOTRUN -> [SKIP][5] ([Intel XE#7241]) +4 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-ptl-1: NOTRUN -> [SKIP][6] ([Intel XE#5765])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#1466])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-wcl-2: NOTRUN -> [SKIP][8] ([Intel XE#7245])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#2233])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-bmg-1: NOTRUN -> [SKIP][10] ([Intel XE#2233])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-lnl-2: NOTRUN -> [SKIP][11] ([Intel XE#1466] / [Intel XE#2235])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-wcl-1: NOTRUN -> [SKIP][12] ([Intel XE#7245])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-set-prop-any:
- bat-atsm-2: NOTRUN -> [SKIP][13] ([i915#6077]) +30 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-2: NOTRUN -> [SKIP][14] ([Intel XE#1024] / [Intel XE#782] / [Intel XE#947]) +5 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][15] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-ptl-1: NOTRUN -> [SKIP][16] ([Intel XE#5766]) +13 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_dsc@dsc-basic:
- bat-lnl-1: NOTRUN -> [SKIP][17] ([Intel XE#2244])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@kms_dsc@dsc-basic.html
- bat-adlp-7: NOTRUN -> [SKIP][18] ([Intel XE#2244] / [Intel XE#455])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@kms_dsc@dsc-basic.html
- bat-bmg-1: NOTRUN -> [SKIP][19] ([Intel XE#2244])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-1/igt@kms_dsc@dsc-basic.html
- bat-atsm-2: NOTRUN -> [SKIP][20] ([Intel XE#1024] / [Intel XE#784] / [Intel XE#947])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@kms_dsc@dsc-basic.html
- bat-wcl-1: NOTRUN -> [SKIP][21] ([Intel XE#7244])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-lnl-2: NOTRUN -> [SKIP][22] ([Intel XE#2235] / [Intel XE#2482]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-ptl-1: NOTRUN -> [SKIP][23] ([Intel XE#5769]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@kms_flip@basic-flip-vs-modeset.html
- bat-wcl-2: NOTRUN -> [SKIP][24] ([Intel XE#7240]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@kms_flip@basic-flip-vs-modeset.html
- bat-bmg-2: NOTRUN -> [SKIP][25] ([Intel XE#2482]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-lnl-1: NOTRUN -> [SKIP][26] ([Intel XE#352]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
- bat-lnl-2: NOTRUN -> [SKIP][27] ([Intel XE#2235] / [Intel XE#352]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@basic:
- bat-ptl-1: NOTRUN -> [SKIP][28] ([Intel XE#5781])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@kms_frontbuffer_tracking@basic.html
- bat-wcl-2: NOTRUN -> [SKIP][29] ([Intel XE#7246])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@kms_frontbuffer_tracking@basic.html
- bat-bmg-2: NOTRUN -> [SKIP][30] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
- bat-lnl-2: NOTRUN -> [SKIP][31] ([Intel XE#2235] / [Intel XE#2548] / [Intel XE#7779])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
- bat-atsm-2: NOTRUN -> [SKIP][32] ([Intel XE#1024] / [Intel XE#783] / [Intel XE#947])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- bat-atsm-2: NOTRUN -> [SKIP][33] ([Intel XE#540]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@kms_hdmi_inject@inject-audio.html
- bat-lnl-1: NOTRUN -> [SKIP][34] ([Intel XE#1470] / [Intel XE#2853])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html
- bat-lnl-2: NOTRUN -> [SKIP][35] ([Intel XE#1470] / [Intel XE#2235] / [Intel XE#2853])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-lnl-2: NOTRUN -> [SKIP][36] ([Intel XE#2235]) +13 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-wcl-2: NOTRUN -> [SKIP][37] ([Intel XE#7237]) +13 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-atsm-2: NOTRUN -> [SKIP][38] ([Intel XE#829] / [i915#1836]) +6 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_prop_blob@basic:
- bat-atsm-2: NOTRUN -> [SKIP][39] ([Intel XE#780])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-lnl-2: NOTRUN -> [SKIP][40] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-primary-page-flip:
- bat-atsm-2: NOTRUN -> [SKIP][41] ([Intel XE#1024] / [Intel XE#947]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-ptl-1: NOTRUN -> [SKIP][42] ([Intel XE#1406] / [Intel XE#5778]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-wcl-2: NOTRUN -> [SKIP][43] ([Intel XE#2850]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-bmg-2: NOTRUN -> [SKIP][44] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-bmg-1: NOTRUN -> [SKIP][45] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-lnl-1: NOTRUN -> [SKIP][46] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
- bat-lnl-2: NOTRUN -> [SKIP][47] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][48] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_evict@evict-beng-small.html
- bat-lnl-2: NOTRUN -> [SKIP][49] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@xe_evict@evict-beng-small.html
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-1: NOTRUN -> [SKIP][50] ([Intel XE#5764]) +11 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@xe_evict@evict-beng-small-cm.html
- bat-ptl-vm: NOTRUN -> [SKIP][51] ([Intel XE#5764]) +10 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
- bat-lnl-1: NOTRUN -> [SKIP][52] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_evict@evict-small-external-cm:
- bat-wcl-1: NOTRUN -> [SKIP][53] ([Intel XE#7238]) +11 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict@evict-small-multi-vm:
- bat-wcl-2: NOTRUN -> [SKIP][54] ([Intel XE#7238]) +11 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-adlp-7: NOTRUN -> [SKIP][55] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@no-exec-parallel-basic:
- bat-lnl-1: NOTRUN -> [SKIP][56] ([Intel XE#7482]) +17 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@xe_exec_balancer@no-exec-parallel-basic.html
* igt@xe_exec_balancer@no-exec-virtual-basic:
- bat-lnl-2: NOTRUN -> [SKIP][57] ([Intel XE#7482]) +17 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@xe_exec_balancer@no-exec-virtual-basic.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr:
- bat-wcl-2: NOTRUN -> [SKIP][58] ([Intel XE#7482]) +17 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
* igt@xe_exec_balancer@twice-parallel-basic:
- bat-ptl-vm: NOTRUN -> [SKIP][59] ([Intel XE#7482]) +17 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_exec_balancer@twice-virtual-basic:
- bat-ptl-1: NOTRUN -> [SKIP][60] ([Intel XE#7482]) +17 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_balancer@twice-virtual-rebind:
- bat-wcl-1: NOTRUN -> [SKIP][61] ([Intel XE#7482]) +17 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@xe_exec_balancer@twice-virtual-rebind.html
* igt@xe_exec_balancer@twice-virtual-userptr-invalidate:
- bat-adlp-7: NOTRUN -> [SKIP][62] ([Intel XE#7482]) +17 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_exec_balancer@twice-virtual-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
- bat-atsm-2: NOTRUN -> [SKIP][63] ([Intel XE#288]) +32 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][64] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_huc_copy@huc_copy:
- bat-atsm-2: NOTRUN -> [SKIP][65] ([Intel XE#255])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo:
- bat-ptl-1: NOTRUN -> [SKIP][66] ([Intel XE#5775]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@xe_live_ktest@xe_bo.html
- bat-lnl-1: NOTRUN -> [SKIP][67] ([Intel XE#2229]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- bat-wcl-2: NOTRUN -> [SKIP][68] ([Intel XE#7239]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
- bat-adlp-7: NOTRUN -> [SKIP][69] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
- bat-lnl-2: NOTRUN -> [SKIP][70] ([Intel XE#2229]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][71] ([Intel XE#2229])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
- bat-bmg-1: NOTRUN -> [SKIP][72] ([Intel XE#2229])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-atsm-2: NOTRUN -> [SKIP][73] ([Intel XE#2229])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-wcl-1: NOTRUN -> [SKIP][74] ([Intel XE#7239]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-ptl-vm: NOTRUN -> [SKIP][75] ([Intel XE#5775])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-adlp-7: NOTRUN -> [SKIP][76] ([Intel XE#2229] / [Intel XE#5488])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-1: NOTRUN -> [SKIP][77] ([Intel XE#5776])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@xe_mmap@vram.html
- bat-ptl-vm: NOTRUN -> [SKIP][78] ([Intel XE#5776])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-vm/igt@xe_mmap@vram.html
- bat-lnl-1: NOTRUN -> [SKIP][79] ([Intel XE#1416])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@xe_mmap@vram.html
- bat-wcl-2: NOTRUN -> [SKIP][80] ([Intel XE#7243])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@xe_mmap@vram.html
- bat-adlp-7: NOTRUN -> [SKIP][81] ([Intel XE#1008] / [Intel XE#5591])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_mmap@vram.html
- bat-lnl-2: NOTRUN -> [SKIP][82] ([Intel XE#1416])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@xe_mmap@vram.html
- bat-wcl-1: NOTRUN -> [SKIP][83] ([Intel XE#7243])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xe2:
- bat-atsm-2: NOTRUN -> [SKIP][84] ([Intel XE#977])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
- bat-adlp-7: NOTRUN -> [SKIP][85] ([Intel XE#977])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][86] ([Intel XE#5777] / [Intel XE#7590])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
- bat-lnl-1: NOTRUN -> [SKIP][87] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html
- bat-wcl-2: NOTRUN -> [SKIP][88] ([Intel XE#7247] / [Intel XE#7590])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-2: NOTRUN -> [SKIP][89] ([Intel XE#1420] / [Intel XE#7590])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-1: NOTRUN -> [SKIP][90] ([Intel XE#1420] / [Intel XE#7590])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
- bat-adlp-7: NOTRUN -> [SKIP][91] ([Intel XE#2838] / [Intel XE#979])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
- bat-lnl-2: NOTRUN -> [SKIP][92] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-vm: NOTRUN -> [SKIP][93] ([Intel XE#1420] / [Intel XE#7590])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-vm/igt@xe_pat@pat-index-xehpc.html
- bat-wcl-1: NOTRUN -> [SKIP][94] ([Intel XE#7247] / [Intel XE#7590])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@xe_pat@pat-index-xehpc.html
- bat-atsm-2: NOTRUN -> [SKIP][95] ([Intel XE#2838] / [Intel XE#979])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@xe_pat@pat-index-xehpc.html
- bat-ptl-1: NOTRUN -> [SKIP][96] ([Intel XE#5777] / [Intel XE#7590])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][97] ([Intel XE#2245] / [Intel XE#7590])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
- bat-bmg-vm: NOTRUN -> [SKIP][98] ([Intel XE#2245] / [Intel XE#7590])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-vm/igt@xe_pat@pat-index-xelp.html
- bat-bmg-1: NOTRUN -> [SKIP][99] ([Intel XE#2245] / [Intel XE#7590])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
- bat-lnl-2: NOTRUN -> [SKIP][100] ([Intel XE#7590] / [Intel XE#977])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
- bat-wcl-1: NOTRUN -> [SKIP][101] ([Intel XE#7242] / [Intel XE#7590])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@xe_pat@pat-index-xelp.html
- bat-ptl-1: NOTRUN -> [SKIP][102] ([Intel XE#5771] / [Intel XE#7590])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@xe_pat@pat-index-xelp.html
- bat-ptl-vm: NOTRUN -> [SKIP][103] ([Intel XE#5771] / [Intel XE#7590])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
- bat-wcl-2: NOTRUN -> [SKIP][104] ([Intel XE#7242] / [Intel XE#7590])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@xe_pat@pat-index-xelp.html
- bat-lnl-1: NOTRUN -> [SKIP][105] ([Intel XE#7590] / [Intel XE#977])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-1: NOTRUN -> [SKIP][106] ([Intel XE#5780] / [Intel XE#7590])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-1/igt@xe_pat@pat-index-xelpg.html
- bat-ptl-vm: NOTRUN -> [SKIP][107] ([Intel XE#5780] / [Intel XE#7590])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
- bat-lnl-1: NOTRUN -> [SKIP][108] ([Intel XE#7590] / [Intel XE#979])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html
- bat-wcl-2: NOTRUN -> [SKIP][109] ([Intel XE#7248] / [Intel XE#7590])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-2/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-2: NOTRUN -> [SKIP][110] ([Intel XE#2236] / [Intel XE#7590])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-1: NOTRUN -> [SKIP][111] ([Intel XE#2236] / [Intel XE#7590])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
- bat-adlp-7: NOTRUN -> [SKIP][112] ([Intel XE#979])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html
- bat-lnl-2: NOTRUN -> [SKIP][113] ([Intel XE#2236] / [Intel XE#7590] / [Intel XE#979])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-vm: NOTRUN -> [SKIP][114] ([Intel XE#2236] / [Intel XE#7590])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-vm/igt@xe_pat@pat-index-xelpg.html
- bat-wcl-1: NOTRUN -> [SKIP][115] ([Intel XE#7248] / [Intel XE#7590])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-wcl-1/igt@xe_pat@pat-index-xelpg.html
- bat-atsm-2: NOTRUN -> [SKIP][116] ([Intel XE#979])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-atsm-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][117] ([Intel XE#6566]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-lnl-2: NOTRUN -> [SKIP][118] ([Intel XE#3342])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html
- bat-lnl-1: NOTRUN -> [SKIP][119] ([Intel XE#3342])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5765]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5765
[Intel XE#5766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5766
[Intel XE#5769]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5769
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5773]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5773
[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#5778]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5778
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#5781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5781
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7237
[Intel XE#7238]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7238
[Intel XE#7239]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7239
[Intel XE#7240]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7240
[Intel XE#7241]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7241
[Intel XE#7242]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7242
[Intel XE#7243]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7243
[Intel XE#7244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7244
[Intel XE#7245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7245
[Intel XE#7246]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7246
[Intel XE#7247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7247
[Intel XE#7248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7248
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* Linux: xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7 -> xe-pw-167822v1
IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7: 4354c70593040dcb61935903e0fe1c90ca531df7
xe-pw-167822v1: 167822v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/index.html
[-- Attachment #2: Type: text/html, Size: 42113 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
` (4 preceding siblings ...)
2026-06-03 15:52 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-06-03 16:31 ` Ghimiray, Himal Prasad
2026-06-03 19:00 ` Rodrigo Vivi
2026-06-04 2:32 ` ✓ Xe.CI.FULL: success for series starting with [1/3] " Patchwork
2026-06-04 6:46 ` [PATCH 1/3] " Yadav, Sanjay Kumar
7 siblings, 1 reply; 11+ messages in thread
From: Ghimiray, Himal Prasad @ 2026-06-03 16:31 UTC (permalink / raw)
To: Rodrigo Vivi, intel-xe; +Cc: Matthew Auld, Sanjay Yadav
On 03-06-2026 20:31, Rodrigo Vivi wrote:
> Jobs that GuC never scheduled were silently errored out instead of
> triggering a GT reset. Kernel jobs that exhaust all recovery attempts
> should wedge the device rather than silently fail, and userspace VM bind
> queues should stay permanently banned rather than being reset and retried.
>
> The queue is banned early in the timeout handler to signal the G2H
> scheduling-done handler so it wakes the disable-scheduling waiter; without
> it the waiter sleeps the full 5s timeout. For kernel queues the ban is
> cleared before rearming so that guc_exec_queue_start() can resubmit jobs
> after the GT reset — a banned queue would block resubmission and cause an
> infinite TDR loop.
>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> Assisted-by: GitHub-Copilot:claude-sonnet-4.6
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_submit.c | 31 +++++++++++++++++++++---------
> 1 file changed, 22 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index ab501513d806..bbccba367626 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -158,6 +158,11 @@ static void set_exec_queue_banned(struct xe_exec_queue *q)
> atomic_or(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
> }
>
> +static void clear_exec_queue_banned(struct xe_exec_queue *q)
> +{
> + atomic_andnot(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
> +}
> +
> static bool exec_queue_suspended(struct xe_exec_queue *q)
> {
> return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_SUSPENDED;
> @@ -1376,7 +1381,8 @@ static bool check_timeout(struct xe_exec_queue *q, struct xe_sched_job *job)
> xe_sched_job_seqno(job), xe_sched_job_lrc_seqno(job),
> q->guc->id);
>
> - return xe_sched_invalidate_job(job, 2);
> + /* GuC never scheduled this job - let the caller trigger a GT reset. */
> + return true;
Sounds sane. But Will also need clear_exec_queue_banned and GT Reset for
user execqueue, if job wasn't started. Below changes mark it only for
migration queues.
/Himal
> }
>
> ctx_timestamp = lower_32_bits(xe_lrc_timestamp(q->lrc[0]));
> @@ -1622,19 +1628,26 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
> q->guc->id, q->flags);
>
> /*
> - * Kernel jobs should never fail, nor should VM jobs if they do
> - * somethings has gone wrong and the GT needs a reset
> + * Kernel jobs should never fail permanently. Attempt GT reset and
> + * resubmit; if karma is exhausted the hardware is unrecoverable so
> + * wedge the device.
> + *
> + * Userspace VM bind queues are banned permanently on timeout
> +. * No reset is attempted, the ban already
> + * signals the G2H handler, and the queue stays banned so the job
> + * errors out cleanly.
> */
> - xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_KERNEL,
> - "Kernel-submitted job timed out\n");
> - xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q),
> - "VM job timed out on non-killed execqueue\n");
> - if (!wedged && (q->flags & EXEC_QUEUE_FLAG_KERNEL ||
> - (q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q)))) {
> + if (!wedged && q->flags & EXEC_QUEUE_FLAG_KERNEL) {
> if (!xe_sched_invalidate_job(job, 2)) {
> + clear_exec_queue_banned(q);
> xe_gt_reset_async(q->gt);
> goto rearm;
> }
> + xe_gt_WARN(q->gt, true, "Kernel-submitted job timed out\n");
> + xe_device_declare_wedged(gt_to_xe(q->gt));
> + } else if (!wedged && q->flags & EXEC_QUEUE_FLAG_VM &&
> + !exec_queue_killed(q)) {
> + xe_gt_WARN(q->gt, true, "VM job timed out on non-killed execqueue\n");
> }
>
> /* Mark all outstanding jobs as bad, thus completing them */
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2026-06-03 16:31 ` [PATCH 1/3] " Ghimiray, Himal Prasad
@ 2026-06-03 19:00 ` Rodrigo Vivi
2026-06-04 6:43 ` Ghimiray, Himal Prasad
0 siblings, 1 reply; 11+ messages in thread
From: Rodrigo Vivi @ 2026-06-03 19:00 UTC (permalink / raw)
To: Ghimiray, Himal Prasad; +Cc: intel-xe, Matthew Auld, Sanjay Yadav
On Wed, Jun 03, 2026 at 10:01:39PM +0530, Ghimiray, Himal Prasad wrote:
>
>
> On 03-06-2026 20:31, Rodrigo Vivi wrote:
> > Jobs that GuC never scheduled were silently errored out instead of
> > triggering a GT reset. Kernel jobs that exhaust all recovery attempts
> > should wedge the device rather than silently fail, and userspace VM bind
> > queues should stay permanently banned rather than being reset and retried.
> >
> > The queue is banned early in the timeout handler to signal the G2H
> > scheduling-done handler so it wakes the disable-scheduling waiter; without
> > it the waiter sleeps the full 5s timeout. For kernel queues the ban is
> > cleared before rearming so that guc_exec_queue_start() can resubmit jobs
> > after the GT reset — a banned queue would block resubmission and cause an
> > infinite TDR loop.
> >
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Cc: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
> > Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > Assisted-by: GitHub-Copilot:claude-sonnet-4.6
> > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_guc_submit.c | 31 +++++++++++++++++++++---------
> > 1 file changed, 22 insertions(+), 9 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> > index ab501513d806..bbccba367626 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> > @@ -158,6 +158,11 @@ static void set_exec_queue_banned(struct xe_exec_queue *q)
> > atomic_or(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
> > }
> > +static void clear_exec_queue_banned(struct xe_exec_queue *q)
> > +{
> > + atomic_andnot(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
> > +}
> > +
> > static bool exec_queue_suspended(struct xe_exec_queue *q)
> > {
> > return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_SUSPENDED;
> > @@ -1376,7 +1381,8 @@ static bool check_timeout(struct xe_exec_queue *q, struct xe_sched_job *job)
> > xe_sched_job_seqno(job), xe_sched_job_lrc_seqno(job),
> > q->guc->id);
> > - return xe_sched_invalidate_job(job, 2);
> > + /* GuC never scheduled this job - let the caller trigger a GT reset. */
> > + return true;
>
>
> Sounds sane. But Will also need clear_exec_queue_banned and GT Reset for
> user execqueue, if job wasn't started. Below changes mark it only for
> migration queues.
do you mean to have something like this below:
if (!xe_sched_job_started(job)) {
clear_exec_queue_banned(q);
regardless of the type of the exec queue?
>
> /Himal
>
> > }
> > ctx_timestamp = lower_32_bits(xe_lrc_timestamp(q->lrc[0]));
> > @@ -1622,19 +1628,26 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
> > q->guc->id, q->flags);
> > /*
> > - * Kernel jobs should never fail, nor should VM jobs if they do
> > - * somethings has gone wrong and the GT needs a reset
> > + * Kernel jobs should never fail permanently. Attempt GT reset and
> > + * resubmit; if karma is exhausted the hardware is unrecoverable so
> > + * wedge the device.
> > + *
> > + * Userspace VM bind queues are banned permanently on timeout
> > +. * No reset is attempted, the ban already
> > + * signals the G2H handler, and the queue stays banned so the job
> > + * errors out cleanly.
> > */
> > - xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_KERNEL,
> > - "Kernel-submitted job timed out\n");
> > - xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q),
> > - "VM job timed out on non-killed execqueue\n");
> > - if (!wedged && (q->flags & EXEC_QUEUE_FLAG_KERNEL ||
> > - (q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q)))) {
> > + if (!wedged && q->flags & EXEC_QUEUE_FLAG_KERNEL) {
> > if (!xe_sched_invalidate_job(job, 2)) {
> > + clear_exec_queue_banned(q);
> > xe_gt_reset_async(q->gt);
> > goto rearm;
> > }
> > + xe_gt_WARN(q->gt, true, "Kernel-submitted job timed out\n");
> > + xe_device_declare_wedged(gt_to_xe(q->gt));
> > + } else if (!wedged && q->flags & EXEC_QUEUE_FLAG_VM &&
> > + !exec_queue_killed(q)) {
> > + xe_gt_WARN(q->gt, true, "VM job timed out on non-killed execqueue\n");
> > }
> > /* Mark all outstanding jobs as bad, thus completing them */
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.FULL: success for series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
` (5 preceding siblings ...)
2026-06-03 16:31 ` [PATCH 1/3] " Ghimiray, Himal Prasad
@ 2026-06-04 2:32 ` Patchwork
2026-06-04 6:46 ` [PATCH 1/3] " Yadav, Sanjay Kumar
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-06-04 2:32 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 18205 bytes --]
== Series Details ==
Series: series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
URL : https://patchwork.freedesktop.org/series/167822/
State : success
== Summary ==
CI Bug Log - changes from xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7_FULL -> xe-pw-167822v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7_FULL and xe-pw-167822v1_FULL:
### New IGT tests (7) ###
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@xe_copy_basic@mem-copy-linear-0x8fffe:
- Statuses : 2 pass(s)
- Exec time: [0.01, 0.11] s
* igt@xe_copy_basic@mem-matrix-copy-200x127:
- Statuses : 2 pass(s)
- Exec time: [0.01, 0.08] s
* igt@xe_copy_basic@mem-matrix-copy-2x2:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
* igt@xe_copy_basic@mem-page-copy-1:
- Statuses : 2 pass(s)
- Exec time: [0.00, 0.01] s
* igt@xe_copy_basic@mem-page-copy-17:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@xe_copy_basic@mem-set-linear-0x8fffe:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
Known issues
------------
Here are the changes found in xe-pw-167822v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#610] / [Intel XE#7387])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7679])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][6] -> [INCOMPLETE][7] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2325] / [Intel XE#7358])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][10] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2321] / [Intel XE#7355])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2374] / [Intel XE#6128])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#301] / [Intel XE#3149]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2311]) +11 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4141]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2313]) +11 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7061] / [Intel XE#7356])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7061]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#7915]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-bmg-4/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-7/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7591])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2499])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1489]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2387] / [Intel XE#7429])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2234])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#3904] / [Intel XE#7342])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#6503])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_vrr@flip-dpms:
- shard-lnl: [PASS][29] -> [FAIL][30] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-lnl-4/igt@kms_vrr@flip-dpms.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-lnl-2/igt@kms_vrr@flip-dpms.html
* igt@xe_dma_buf_sync@export-dma-buf-many-write-sync:
- shard-bmg: NOTRUN -> [ABORT][31] ([Intel XE#8007])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-5/igt@xe_dma_buf_sync@export-dma-buf-many-write-sync.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7636]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@xe_eudebug@vma-ufence.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7136]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6874]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@xe_pm@d3hot-i2c.html
#### Possible fixes ####
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][37] ([Intel XE#7915]) -> [PASS][38] +3 other tests pass
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-bmg-3/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-10/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][39] ([Intel XE#6321]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [ABORT][41] ([Intel XE#8007]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-bmg-10/igt@xe_wedged@wedged-mode-toggle.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][43] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) -> [SKIP][44] ([Intel XE#309] / [Intel XE#7343])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw:
- shard-bmg: [ABORT][45] ([Intel XE#7814]) -> [SKIP][46] ([Intel XE#2311])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][47] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][48] ([Intel XE#2426] / [Intel XE#5848])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
Build changes
-------------
* Linux: xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7 -> xe-pw-167822v1
IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5193-4354c70593040dcb61935903e0fe1c90ca531df7: 4354c70593040dcb61935903e0fe1c90ca531df7
xe-pw-167822v1: 167822v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-167822v1/index.html
[-- Attachment #2: Type: text/html, Size: 20126 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2026-06-03 19:00 ` Rodrigo Vivi
@ 2026-06-04 6:43 ` Ghimiray, Himal Prasad
0 siblings, 0 replies; 11+ messages in thread
From: Ghimiray, Himal Prasad @ 2026-06-04 6:43 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-xe, Matthew Auld, Sanjay Yadav
On 04-06-2026 00:30, Rodrigo Vivi wrote:
> On Wed, Jun 03, 2026 at 10:01:39PM +0530, Ghimiray, Himal Prasad wrote:
>>
>>
>> On 03-06-2026 20:31, Rodrigo Vivi wrote:
>>> Jobs that GuC never scheduled were silently errored out instead of
>>> triggering a GT reset. Kernel jobs that exhaust all recovery attempts
>>> should wedge the device rather than silently fail, and userspace VM bind
>>> queues should stay permanently banned rather than being reset and retried.
>>>
>>> The queue is banned early in the timeout handler to signal the G2H
>>> scheduling-done handler so it wakes the disable-scheduling waiter; without
>>> it the waiter sleeps the full 5s timeout. For kernel queues the ban is
>>> cleared before rearming so that guc_exec_queue_start() can resubmit jobs
>>> after the GT reset — a banned queue would block resubmission and cause an
>>> infinite TDR loop.
>>>
>>> Cc: Matthew Auld <matthew.auld@intel.com>
>>> Cc: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
>>> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>>> Assisted-by: GitHub-Copilot:claude-sonnet-4.6
>>> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>>> ---
>>> drivers/gpu/drm/xe/xe_guc_submit.c | 31 +++++++++++++++++++++---------
>>> 1 file changed, 22 insertions(+), 9 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
>>> index ab501513d806..bbccba367626 100644
>>> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
>>> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
>>> @@ -158,6 +158,11 @@ static void set_exec_queue_banned(struct xe_exec_queue *q)
>>> atomic_or(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
>>> }
>>> +static void clear_exec_queue_banned(struct xe_exec_queue *q)
>>> +{
>>> + atomic_andnot(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
>>> +}
>>> +
>>> static bool exec_queue_suspended(struct xe_exec_queue *q)
>>> {
>>> return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_SUSPENDED;
>>> @@ -1376,7 +1381,8 @@ static bool check_timeout(struct xe_exec_queue *q, struct xe_sched_job *job)
>>> xe_sched_job_seqno(job), xe_sched_job_lrc_seqno(job),
>>> q->guc->id);
>>> - return xe_sched_invalidate_job(job, 2);
>>> + /* GuC never scheduled this job - let the caller trigger a GT reset. */
>>> + return true;
>>
>>
>> Sounds sane. But Will also need clear_exec_queue_banned and GT Reset for
>> user execqueue, if job wasn't started. Below changes mark it only for
>> migration queues.
>
> do you mean to have something like this below:
>
> if (!xe_sched_job_started(job)) {
> clear_exec_queue_banned(q);
>
> regardless of the type of the exec queue?
The logic looks reasonable — seems it also need GT reset and rearm
along with clear ban, if we intend to retry the never-started job?
Without GT reset the same condition that prevented GuC from scheduling
would likely persist.
>
>
>>
>> /Himal
>>
>>> }
>>> ctx_timestamp = lower_32_bits(xe_lrc_timestamp(q->lrc[0]));
>>> @@ -1622,19 +1628,26 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
>>> q->guc->id, q->flags);
>>> /*
>>> - * Kernel jobs should never fail, nor should VM jobs if they do
>>> - * somethings has gone wrong and the GT needs a reset
>>> + * Kernel jobs should never fail permanently. Attempt GT reset and
>>> + * resubmit; if karma is exhausted the hardware is unrecoverable so
>>> + * wedge the device.
>>> + *
>>> + * Userspace VM bind queues are banned permanently on timeout
>>> +. * No reset is attempted, the ban already
>>> + * signals the G2H handler, and the queue stays banned so the job
>>> + * errors out cleanly.
>>> */
>>> - xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_KERNEL,
>>> - "Kernel-submitted job timed out\n");
>>> - xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q),
>>> - "VM job timed out on non-killed execqueue\n");
>>> - if (!wedged && (q->flags & EXEC_QUEUE_FLAG_KERNEL ||
>>> - (q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q)))) {
>>> + if (!wedged && q->flags & EXEC_QUEUE_FLAG_KERNEL) {
>>> if (!xe_sched_invalidate_job(job, 2)) {
>>> + clear_exec_queue_banned(q);
>>> xe_gt_reset_async(q->gt);
>>> goto rearm;
>>> }
>>> + xe_gt_WARN(q->gt, true, "Kernel-submitted job timed out\n");
>>> + xe_device_declare_wedged(gt_to_xe(q->gt));
>>> + } else if (!wedged && q->flags & EXEC_QUEUE_FLAG_VM &&
>>> + !exec_queue_killed(q)) {
>>> + xe_gt_WARN(q->gt, true, "VM job timed out on non-killed execqueue\n");
>>> }
>>> /* Mark all outstanding jobs as bad, thus completing them */
>>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
` (6 preceding siblings ...)
2026-06-04 2:32 ` ✓ Xe.CI.FULL: success for series starting with [1/3] " Patchwork
@ 2026-06-04 6:46 ` Yadav, Sanjay Kumar
7 siblings, 0 replies; 11+ messages in thread
From: Yadav, Sanjay Kumar @ 2026-06-04 6:46 UTC (permalink / raw)
To: Rodrigo Vivi, intel-xe; +Cc: Matthew Auld, Himal Prasad Ghimiray
On 03-06-2026 20:31, Rodrigo Vivi wrote:
> Jobs that GuC never scheduled were silently errored out instead of
> triggering a GT reset. Kernel jobs that exhaust all recovery attempts
> should wedge the device rather than silently fail, and userspace VM bind
> queues should stay permanently banned rather than being reset and retried.
>
> The queue is banned early in the timeout handler to signal the G2H
> scheduling-done handler so it wakes the disable-scheduling waiter; without
> it the waiter sleeps the full 5s timeout. For kernel queues the ban is
> cleared before rearming so that guc_exec_queue_start() can resubmit jobs
> after the GT reset — a banned queue would block resubmission and cause an
> infinite TDR loop.
>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> Assisted-by: GitHub-Copilot:claude-sonnet-4.6
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Tested-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
LGTM
Tested with Reproducer IGT and xe_evict - No IGT stuck recovery works
correctly and subsequent migration tests pass.
> ---
> drivers/gpu/drm/xe/xe_guc_submit.c | 31 +++++++++++++++++++++---------
> 1 file changed, 22 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index ab501513d806..bbccba367626 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -158,6 +158,11 @@ static void set_exec_queue_banned(struct xe_exec_queue *q)
> atomic_or(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
> }
>
> +static void clear_exec_queue_banned(struct xe_exec_queue *q)
> +{
> + atomic_andnot(EXEC_QUEUE_STATE_BANNED, &q->guc->state);
> +}
> +
> static bool exec_queue_suspended(struct xe_exec_queue *q)
> {
> return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_SUSPENDED;
> @@ -1376,7 +1381,8 @@ static bool check_timeout(struct xe_exec_queue *q, struct xe_sched_job *job)
> xe_sched_job_seqno(job), xe_sched_job_lrc_seqno(job),
> q->guc->id);
>
> - return xe_sched_invalidate_job(job, 2);
> + /* GuC never scheduled this job - let the caller trigger a GT reset. */
> + return true;
> }
>
> ctx_timestamp = lower_32_bits(xe_lrc_timestamp(q->lrc[0]));
> @@ -1622,19 +1628,26 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
> q->guc->id, q->flags);
>
> /*
> - * Kernel jobs should never fail, nor should VM jobs if they do
> - * somethings has gone wrong and the GT needs a reset
> + * Kernel jobs should never fail permanently. Attempt GT reset and
> + * resubmit; if karma is exhausted the hardware is unrecoverable so
> + * wedge the device.
> + *
> + * Userspace VM bind queues are banned permanently on timeout
> +. * No reset is attempted, the ban already
> + * signals the G2H handler, and the queue stays banned so the job
> + * errors out cleanly.
> */
> - xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_KERNEL,
> - "Kernel-submitted job timed out\n");
> - xe_gt_WARN(q->gt, q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q),
> - "VM job timed out on non-killed execqueue\n");
> - if (!wedged && (q->flags & EXEC_QUEUE_FLAG_KERNEL ||
> - (q->flags & EXEC_QUEUE_FLAG_VM && !exec_queue_killed(q)))) {
> + if (!wedged && q->flags & EXEC_QUEUE_FLAG_KERNEL) {
> if (!xe_sched_invalidate_job(job, 2)) {
> + clear_exec_queue_banned(q);
> xe_gt_reset_async(q->gt);
> goto rearm;
> }
> + xe_gt_WARN(q->gt, true, "Kernel-submitted job timed out\n");
> + xe_device_declare_wedged(gt_to_xe(q->gt));
> + } else if (!wedged && q->flags & EXEC_QUEUE_FLAG_VM &&
> + !exec_queue_killed(q)) {
> + xe_gt_WARN(q->gt, true, "VM job timed out on non-killed execqueue\n");
> }
>
> /* Mark all outstanding jobs as bad, thus completing them */
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-06-04 6:46 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-03 15:01 [PATCH 1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Rodrigo Vivi
2026-06-03 15:01 ` [PATCH 2/3] drm/xe/lrc: fix spurious warning when reading context timestamp Rodrigo Vivi
2026-06-03 15:01 ` [PATCH 3/3] drm/xe/lrc: remove engine_id PPHWSP stash Rodrigo Vivi
2026-06-03 15:06 ` ✗ CI.checkpatch: warning for series starting with [1/3] drm/xe: fix job timeout recovery for unstarted jobs and kernel queues Patchwork
2026-06-03 15:08 ` ✓ CI.KUnit: success " Patchwork
2026-06-03 15:52 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-03 16:31 ` [PATCH 1/3] " Ghimiray, Himal Prasad
2026-06-03 19:00 ` Rodrigo Vivi
2026-06-04 6:43 ` Ghimiray, Himal Prasad
2026-06-04 2:32 ` ✓ Xe.CI.FULL: success for series starting with [1/3] " Patchwork
2026-06-04 6:46 ` [PATCH 1/3] " Yadav, Sanjay Kumar
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.