* [PATCH] drm/xe: Take preemption into account when resubmitting jobs
@ 2025-08-09 4:34 Matthew Brost
2025-08-09 4:41 ` ✓ CI.KUnit: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Matthew Brost @ 2025-08-09 4:34 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, tomasz.lis
Take preemption into account when resubmitting jobs, and adjust the new
LRC head pointer accordingly to skip over previously executed parts of
the job. To support this, save the head pointer of each job when it is
emitted.
This code can either be leveraged or reused for VF recovery.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_guc_submit.c | 23 +++++++++++++++++++++--
drivers/gpu/drm/xe/xe_ring_ops.c | 23 +++++++++++++++++++----
drivers/gpu/drm/xe/xe_sched_job_types.h | 2 ++
3 files changed, 42 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 1185b23b1384..3ba707bbb74d 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -1954,16 +1954,35 @@ void xe_guc_submit_pause(struct xe_guc *guc)
xe_sched_submission_stop_async(&q->guc->sched);
}
+static int guc_lrc_offset(struct xe_lrc *lrc, u32 job_head)
+{
+ if (xe_lrc_ring_head(lrc) == job_head)
+ return 0;
+
+ if (job_head < xe_lrc_ring_head(lrc))
+ return xe_lrc_ring_head(lrc) - job_head;
+
+ return lrc->ring.size - job_head + xe_lrc_ring_head(lrc);
+}
+
static void guc_exec_queue_start(struct xe_exec_queue *q)
{
struct xe_gpu_scheduler *sched = &q->guc->sched;
if (!exec_queue_killed_or_banned_or_wedged(q)) {
+ struct xe_sched_job *job;
int i;
+ job = xe_sched_first_pending_job(&q->guc->sched);
+
trace_xe_exec_queue_resubmit(q);
- for (i = 0; i < q->width; ++i)
- xe_lrc_set_ring_head(q->lrc[i], q->lrc[i]->ring.tail);
+ for (i = 0; i < q->width; ++i) {
+ int offset = !job ? 0 :
+ guc_lrc_offset(q->lrc[i], job->ptrs[i].head);
+
+ xe_lrc_set_ring_head(q->lrc[i], (q->lrc[i]->ring.tail +
+ offset) % q->lrc[i]->ring.size);
+ }
xe_sched_resubmit_jobs(sched);
}
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 5f15360d14bf..4dad28f0614d 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct xe_lrc *lrc, u32 *dw, int i)
/* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
- u64 batch_addr, u32 seqno)
+ u64 batch_addr, u32 *head, u32 seqno)
{
u32 dw[MAX_JOB_SIZE_DW], i = 0;
u32 ppgtt_flag = get_ppgtt_flag(job);
struct xe_gt *gt = job->q->gt;
+ *head = lrc->ring.tail;
+
i = emit_copy_timestamp(lrc, dw, i);
if (job->ring_ops_flush_tlb) {
@@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
}
static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
- u64 batch_addr, u32 seqno)
+ u64 batch_addr, u32 *head, u32 seqno)
{
u32 dw[MAX_JOB_SIZE_DW], i = 0;
u32 ppgtt_flag = get_ppgtt_flag(job);
@@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
struct xe_device *xe = gt_to_xe(gt);
bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
+ *head = lrc->ring.tail;
+
i = emit_copy_timestamp(lrc, dw, i);
dw[i++] = preparser_disable(true);
@@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
struct xe_lrc *lrc,
- u64 batch_addr, u32 seqno)
+ u64 batch_addr, u32 *head,
+ u32 seqno)
{
u32 dw[MAX_JOB_SIZE_DW], i = 0;
u32 ppgtt_flag = get_ppgtt_flag(job);
@@ -355,6 +360,8 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
u32 mask_flags = 0;
+ *head = lrc->ring.tail;
+
i = emit_copy_timestamp(lrc, dw, i);
dw[i++] = preparser_disable(true);
@@ -396,11 +403,14 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
}
static void emit_migration_job_gen12(struct xe_sched_job *job,
- struct xe_lrc *lrc, u32 seqno)
+ struct xe_lrc *lrc, u32 *head,
+ u32 seqno)
{
u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
u32 dw[MAX_JOB_SIZE_DW], i = 0;
+ *head = lrc->ring.tail;
+
i = emit_copy_timestamp(lrc, dw, i);
i = emit_store_imm_ggtt(saddr, seqno, dw, i);
@@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct xe_sched_job *job)
__emit_job_gen12_simple(job, job->q->lrc[0],
job->ptrs[0].batch_addr,
+ &job->ptrs[0].head,
xe_sched_job_lrc_seqno(job));
}
@@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
if (xe_sched_job_is_migration(job->q)) {
emit_migration_job_gen12(job, job->q->lrc[0],
+ &job->ptrs[0].head,
xe_sched_job_lrc_seqno(job));
return;
}
@@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
for (i = 0; i < job->q->width; ++i)
__emit_job_gen12_simple(job, job->q->lrc[i],
job->ptrs[i].batch_addr,
+ &job->ptrs[i].head,
xe_sched_job_lrc_seqno(job));
}
@@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct xe_sched_job *job)
for (i = 0; i < job->q->width; ++i)
__emit_job_gen12_video(job, job->q->lrc[i],
job->ptrs[i].batch_addr,
+ &job->ptrs[i].head,
xe_sched_job_lrc_seqno(job));
}
@@ -471,6 +485,7 @@ static void emit_job_gen12_render_compute(struct xe_sched_job *job)
for (i = 0; i < job->q->width; ++i)
__emit_job_gen12_render_compute(job, job->q->lrc[i],
job->ptrs[i].batch_addr,
+ &job->ptrs[i].head,
xe_sched_job_lrc_seqno(job));
}
diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
index dbf260dded8d..359f93b0cdca 100644
--- a/drivers/gpu/drm/xe/xe_sched_job_types.h
+++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
@@ -24,6 +24,8 @@ struct xe_job_ptrs {
struct dma_fence_chain *chain_fence;
/** @batch_addr: Batch buffer address. */
u64 batch_addr;
+ /** @head: The head pointer of the LRC when the job was submitted */
+ u32 head;
};
/**
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Take preemption into account when resubmitting jobs
2025-08-09 4:34 [PATCH] drm/xe: Take preemption into account when resubmitting jobs Matthew Brost
@ 2025-08-09 4:41 ` Patchwork
2025-08-09 5:43 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-08-09 4:41 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Take preemption into account when resubmitting jobs
URL : https://patchwork.freedesktop.org/series/152715/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[04:39:56] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:40: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
[04:40:27] Starting KUnit Kernel (1/1)...
[04:40:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:40:28] ================== guc_buf (11 subtests) ===================
[04:40:28] [PASSED] test_smallest
[04:40:28] [PASSED] test_largest
[04:40:28] [PASSED] test_granular
[04:40:28] [PASSED] test_unique
[04:40:28] [PASSED] test_overlap
[04:40:28] [PASSED] test_reusable
[04:40:28] [PASSED] test_too_big
[04:40:28] [PASSED] test_flush
[04:40:28] [PASSED] test_lookup
[04:40:28] [PASSED] test_data
[04:40:28] [PASSED] test_class
[04:40:28] ===================== [PASSED] guc_buf =====================
[04:40:28] =================== guc_dbm (7 subtests) ===================
[04:40:28] [PASSED] test_empty
[04:40:28] [PASSED] test_default
[04:40:28] ======================== test_size ========================
[04:40:28] [PASSED] 4
[04:40:28] [PASSED] 8
[04:40:28] [PASSED] 32
[04:40:28] [PASSED] 256
[04:40:28] ==================== [PASSED] test_size ====================
[04:40:28] ======================= test_reuse ========================
[04:40:28] [PASSED] 4
[04:40:28] [PASSED] 8
[04:40:28] [PASSED] 32
[04:40:28] [PASSED] 256
[04:40:28] =================== [PASSED] test_reuse ====================
[04:40:28] =================== test_range_overlap ====================
[04:40:28] [PASSED] 4
[04:40:28] [PASSED] 8
[04:40:28] [PASSED] 32
[04:40:28] [PASSED] 256
[04:40:28] =============== [PASSED] test_range_overlap ================
[04:40:28] =================== test_range_compact ====================
[04:40:28] [PASSED] 4
[04:40:28] [PASSED] 8
[04:40:28] [PASSED] 32
[04:40:28] [PASSED] 256
[04:40:28] =============== [PASSED] test_range_compact ================
[04:40:28] ==================== test_range_spare =====================
[04:40:28] [PASSED] 4
[04:40:28] [PASSED] 8
[04:40:28] [PASSED] 32
[04:40:28] [PASSED] 256
[04:40:28] ================ [PASSED] test_range_spare =================
[04:40:28] ===================== [PASSED] guc_dbm =====================
[04:40:28] =================== guc_idm (6 subtests) ===================
[04:40:28] [PASSED] bad_init
[04:40:28] [PASSED] no_init
[04:40:28] [PASSED] init_fini
[04:40:28] [PASSED] check_used
[04:40:28] [PASSED] check_quota
[04:40:28] [PASSED] check_all
[04:40:28] ===================== [PASSED] guc_idm =====================
[04:40:28] ================== no_relay (3 subtests) ===================
[04:40:28] [PASSED] xe_drops_guc2pf_if_not_ready
[04:40:28] [PASSED] xe_drops_guc2vf_if_not_ready
[04:40:28] [PASSED] xe_rejects_send_if_not_ready
[04:40:28] ==================== [PASSED] no_relay =====================
[04:40:28] ================== pf_relay (14 subtests) ==================
[04:40:28] [PASSED] pf_rejects_guc2pf_too_short
[04:40:28] [PASSED] pf_rejects_guc2pf_too_long
[04:40:28] [PASSED] pf_rejects_guc2pf_no_payload
[04:40:28] [PASSED] pf_fails_no_payload
[04:40:28] [PASSED] pf_fails_bad_origin
[04:40:28] [PASSED] pf_fails_bad_type
[04:40:28] [PASSED] pf_txn_reports_error
[04:40:28] [PASSED] pf_txn_sends_pf2guc
[04:40:28] [PASSED] pf_sends_pf2guc
[04:40:28] [SKIPPED] pf_loopback_nop
[04:40:28] [SKIPPED] pf_loopback_echo
[04:40:28] [SKIPPED] pf_loopback_fail
[04:40:28] [SKIPPED] pf_loopback_busy
[04:40:28] [SKIPPED] pf_loopback_retry
[04:40:28] ==================== [PASSED] pf_relay =====================
[04:40:28] ================== vf_relay (3 subtests) ===================
[04:40:28] [PASSED] vf_rejects_guc2vf_too_short
[04:40:28] [PASSED] vf_rejects_guc2vf_too_long
[04:40:28] [PASSED] vf_rejects_guc2vf_no_payload
[04:40:28] ==================== [PASSED] vf_relay =====================
[04:40:28] ===================== lmtt (1 subtest) =====================
[04:40:28] ======================== test_ops =========================
[04:40:28] [PASSED] 2-level
[04:40:28] [PASSED] multi-level
[04:40:28] ==================== [PASSED] test_ops =====================
[04:40:28] ====================== [PASSED] lmtt =======================
[04:40:28] ================= pf_service (11 subtests) =================
[04:40:28] [PASSED] pf_negotiate_any
[04:40:28] [PASSED] pf_negotiate_base_match
[04:40:28] [PASSED] pf_negotiate_base_newer
[04:40:28] [PASSED] pf_negotiate_base_next
[04:40:28] [SKIPPED] pf_negotiate_base_older
[04:40:28] [PASSED] pf_negotiate_base_prev
[04:40:28] [PASSED] pf_negotiate_latest_match
[04:40:28] [PASSED] pf_negotiate_latest_newer
[04:40:28] [PASSED] pf_negotiate_latest_next
[04:40:28] [SKIPPED] pf_negotiate_latest_older
[04:40:28] [SKIPPED] pf_negotiate_latest_prev
[04:40:28] =================== [PASSED] pf_service ====================
[04:40:28] =================== xe_mocs (2 subtests) ===================
[04:40:28] ================ xe_live_mocs_kernel_kunit ================
[04:40:28] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[04:40:28] ================ xe_live_mocs_reset_kunit =================
[04:40:28] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[04:40:28] ==================== [SKIPPED] xe_mocs =====================
[04:40:28] ================= xe_migrate (2 subtests) ==================
[04:40:28] ================= xe_migrate_sanity_kunit =================
[04:40:28] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[04:40:28] ================== xe_validate_ccs_kunit ==================
[04:40:28] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[04:40:28] =================== [SKIPPED] xe_migrate ===================
[04:40:28] ================== xe_dma_buf (1 subtest) ==================
[04:40:28] ==================== xe_dma_buf_kunit =====================
[04:40:28] ================ [SKIPPED] xe_dma_buf_kunit ================
[04:40:28] =================== [SKIPPED] xe_dma_buf ===================
[04:40:28] ================= xe_bo_shrink (1 subtest) =================
[04:40:28] =================== xe_bo_shrink_kunit ====================
[04:40:28] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[04:40:28] ================== [SKIPPED] xe_bo_shrink ==================
[04:40:28] ==================== xe_bo (2 subtests) ====================
[04:40:28] ================== xe_ccs_migrate_kunit ===================
[04:40:28] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[04:40:28] ==================== xe_bo_evict_kunit ====================
[04:40:28] =============== [SKIPPED] xe_bo_evict_kunit ================
[04:40:28] ===================== [SKIPPED] xe_bo ======================
[04:40:28] ==================== args (11 subtests) ====================
[04:40:28] [PASSED] count_args_test
[04:40:28] [PASSED] call_args_example
[04:40:28] [PASSED] call_args_test
[04:40:28] [PASSED] drop_first_arg_example
[04:40:28] [PASSED] drop_first_arg_test
[04:40:28] [PASSED] first_arg_example
[04:40:28] [PASSED] first_arg_test
[04:40:28] [PASSED] last_arg_example
[04:40:28] [PASSED] last_arg_test
[04:40:28] [PASSED] pick_arg_example
[04:40:28] [PASSED] sep_comma_example
[04:40:28] ====================== [PASSED] args =======================
[04:40:28] =================== xe_pci (3 subtests) ====================
[04:40:28] ==================== check_graphics_ip ====================
[04:40:28] [PASSED] 12.70 Xe_LPG
[04:40:28] [PASSED] 12.71 Xe_LPG
[04:40:28] [PASSED] 12.74 Xe_LPG+
[04:40:28] [PASSED] 20.01 Xe2_HPG
[04:40:28] [PASSED] 20.02 Xe2_HPG
[04:40:28] [PASSED] 20.04 Xe2_LPG
[04:40:28] [PASSED] 30.00 Xe3_LPG
[04:40:28] [PASSED] 30.01 Xe3_LPG
[04:40:28] [PASSED] 30.03 Xe3_LPG
[04:40:28] ================ [PASSED] check_graphics_ip ================
[04:40:28] ===================== check_media_ip ======================
[04:40:28] [PASSED] 13.00 Xe_LPM+
[04:40:28] [PASSED] 13.01 Xe2_HPM
[04:40:28] [PASSED] 20.00 Xe2_LPM
[04:40:28] [PASSED] 30.00 Xe3_LPM
[04:40:28] [PASSED] 30.02 Xe3_LPM
[04:40:28] ================= [PASSED] check_media_ip ==================
[04:40:28] ================= check_platform_gt_count =================
[04:40:28] [PASSED] 0x9A60 (TIGERLAKE)
[04:40:28] [PASSED] 0x9A68 (TIGERLAKE)
[04:40:28] [PASSED] 0x9A70 (TIGERLAKE)
[04:40:28] [PASSED] 0x9A40 (TIGERLAKE)
[04:40:28] [PASSED] 0x9A49 (TIGERLAKE)
[04:40:28] [PASSED] 0x9A59 (TIGERLAKE)
[04:40:28] [PASSED] 0x9A78 (TIGERLAKE)
[04:40:28] [PASSED] 0x9AC0 (TIGERLAKE)
[04:40:28] [PASSED] 0x9AC9 (TIGERLAKE)
[04:40:28] [PASSED] 0x9AD9 (TIGERLAKE)
[04:40:28] [PASSED] 0x9AF8 (TIGERLAKE)
[04:40:28] [PASSED] 0x4C80 (ROCKETLAKE)
[04:40:28] [PASSED] 0x4C8A (ROCKETLAKE)
[04:40:28] [PASSED] 0x4C8B (ROCKETLAKE)
[04:40:28] [PASSED] 0x4C8C (ROCKETLAKE)
[04:40:28] [PASSED] 0x4C90 (ROCKETLAKE)
[04:40:28] [PASSED] 0x4C9A (ROCKETLAKE)
[04:40:28] [PASSED] 0x4680 (ALDERLAKE_S)
[04:40:28] [PASSED] 0x4682 (ALDERLAKE_S)
[04:40:28] [PASSED] 0x4688 (ALDERLAKE_S)
[04:40:28] [PASSED] 0x468A (ALDERLAKE_S)
[04:40:28] [PASSED] 0x468B (ALDERLAKE_S)
[04:40:28] [PASSED] 0x4690 (ALDERLAKE_S)
[04:40:28] [PASSED] 0x4692 (ALDERLAKE_S)
[04:40:28] [PASSED] 0x4693 (ALDERLAKE_S)
[04:40:28] [PASSED] 0x46A0 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46A1 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46A2 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46A3 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46A6 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46A8 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46AA (ALDERLAKE_P)
[04:40:28] [PASSED] 0x462A (ALDERLAKE_P)
[04:40:28] [PASSED] 0x4626 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x4628 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46B0 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46B1 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46B2 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46B3 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46C0 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46C1 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46C2 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46C3 (ALDERLAKE_P)
[04:40:28] [PASSED] 0x46D0 (ALDERLAKE_N)
[04:40:28] [PASSED] 0x46D1 (ALDERLAKE_N)
[04:40:28] [PASSED] 0x46D2 (ALDERLAKE_N)
[04:40:28] [PASSED] 0x46D3 (ALDERLAKE_N)
[04:40:28] [PASSED] 0x46D4 (ALDERLAKE_N)
[04:40:28] [PASSED] 0xA721 (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA7A1 (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA7A9 (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA7AC (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA7AD (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA720 (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA7A0 (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA7A8 (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA7AA (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA7AB (ALDERLAKE_P)
[04:40:28] [PASSED] 0xA780 (ALDERLAKE_S)
[04:40:28] [PASSED] 0xA781 (ALDERLAKE_S)
[04:40:28] [PASSED] 0xA782 (ALDERLAKE_S)
[04:40:28] [PASSED] 0xA783 (ALDERLAKE_S)
[04:40:28] [PASSED] 0xA788 (ALDERLAKE_S)
[04:40:28] [PASSED] 0xA789 (ALDERLAKE_S)
[04:40:28] [PASSED] 0xA78A (ALDERLAKE_S)
[04:40:28] [PASSED] 0xA78B (ALDERLAKE_S)
[04:40:28] [PASSED] 0x4905 (DG1)
[04:40:28] [PASSED] 0x4906 (DG1)
[04:40:28] [PASSED] 0x4907 (DG1)
[04:40:28] [PASSED] 0x4908 (DG1)
[04:40:28] [PASSED] 0x4909 (DG1)
[04:40:28] [PASSED] 0x56C0 (DG2)
[04:40:28] [PASSED] 0x56C2 (DG2)
[04:40:28] [PASSED] 0x56C1 (DG2)
[04:40:28] [PASSED] 0x7D51 (METEORLAKE)
[04:40:28] [PASSED] 0x7DD1 (METEORLAKE)
[04:40:28] [PASSED] 0x7D41 (METEORLAKE)
[04:40:28] [PASSED] 0x7D67 (METEORLAKE)
[04:40:28] [PASSED] 0xB640 (METEORLAKE)
[04:40:28] [PASSED] 0x56A0 (DG2)
[04:40:28] [PASSED] 0x56A1 (DG2)
[04:40:28] [PASSED] 0x56A2 (DG2)
[04:40:28] [PASSED] 0x56BE (DG2)
[04:40:28] [PASSED] 0x56BF (DG2)
[04:40:28] [PASSED] 0x5690 (DG2)
[04:40:28] [PASSED] 0x5691 (DG2)
[04:40:28] [PASSED] 0x5692 (DG2)
[04:40:28] [PASSED] 0x56A5 (DG2)
[04:40:28] [PASSED] 0x56A6 (DG2)
[04:40:28] [PASSED] 0x56B0 (DG2)
[04:40:28] [PASSED] 0x56B1 (DG2)
[04:40:28] [PASSED] 0x56BA (DG2)
[04:40:28] [PASSED] 0x56BB (DG2)
[04:40:28] [PASSED] 0x56BC (DG2)
[04:40:28] [PASSED] 0x56BD (DG2)
[04:40:28] [PASSED] 0x5693 (DG2)
[04:40:28] [PASSED] 0x5694 (DG2)
[04:40:28] [PASSED] 0x5695 (DG2)
[04:40:28] [PASSED] 0x56A3 (DG2)
[04:40:28] [PASSED] 0x56A4 (DG2)
[04:40:28] [PASSED] 0x56B2 (DG2)
[04:40:28] [PASSED] 0x56B3 (DG2)
[04:40:28] [PASSED] 0x5696 (DG2)
[04:40:28] [PASSED] 0x5697 (DG2)
[04:40:28] [PASSED] 0xB69 (PVC)
[04:40:28] [PASSED] 0xB6E (PVC)
[04:40:28] [PASSED] 0xBD4 (PVC)
[04:40:28] [PASSED] 0xBD5 (PVC)
[04:40:28] [PASSED] 0xBD6 (PVC)
[04:40:28] [PASSED] 0xBD7 (PVC)
[04:40:28] [PASSED] 0xBD8 (PVC)
[04:40:28] [PASSED] 0xBD9 (PVC)
[04:40:28] [PASSED] 0xBDA (PVC)
[04:40:28] [PASSED] 0xBDB (PVC)
[04:40:28] [PASSED] 0xBE0 (PVC)
[04:40:28] [PASSED] 0xBE1 (PVC)
[04:40:28] [PASSED] 0xBE5 (PVC)
[04:40:28] [PASSED] 0x7D40 (METEORLAKE)
[04:40:28] [PASSED] 0x7D45 (METEORLAKE)
[04:40:28] [PASSED] 0x7D55 (METEORLAKE)
[04:40:28] [PASSED] 0x7D60 (METEORLAKE)
[04:40:28] [PASSED] 0x7DD5 (METEORLAKE)
[04:40:28] [PASSED] 0x6420 (LUNARLAKE)
[04:40:28] [PASSED] 0x64A0 (LUNARLAKE)
[04:40:28] [PASSED] 0x64B0 (LUNARLAKE)
[04:40:28] [PASSED] 0xE202 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE209 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE20B (BATTLEMAGE)
[04:40:28] [PASSED] 0xE20C (BATTLEMAGE)
[04:40:28] [PASSED] 0xE20D (BATTLEMAGE)
[04:40:28] [PASSED] 0xE210 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE211 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE212 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE216 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE220 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE221 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE222 (BATTLEMAGE)
[04:40:28] [PASSED] 0xE223 (BATTLEMAGE)
[04:40:28] [PASSED] 0xB080 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB081 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB082 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB083 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB084 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB085 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB086 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB087 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB08F (PANTHERLAKE)
[04:40:28] [PASSED] 0xB090 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB0A0 (PANTHERLAKE)
[04:40:28] [PASSED] 0xB0B0 (PANTHERLAKE)
[04:40:28] [PASSED] 0xFD80 (PANTHERLAKE)
[04:40:28] [PASSED] 0xFD81 (PANTHERLAKE)
[04:40:28] ============= [PASSED] check_platform_gt_count =============
[04:40:28] ===================== [PASSED] xe_pci ======================
[04:40:28] =================== xe_rtp (2 subtests) ====================
[04:40:28] =============== xe_rtp_process_to_sr_tests ================
[04:40:28] [PASSED] coalesce-same-reg
[04:40:28] [PASSED] no-match-no-add
[04:40:28] [PASSED] match-or
[04:40:28] [PASSED] match-or-xfail
[04:40:28] [PASSED] no-match-no-add-multiple-rules
[04:40:28] [PASSED] two-regs-two-entries
[04:40:28] [PASSED] clr-one-set-other
[04:40:28] [PASSED] set-field
[04:40:28] [PASSED] conflict-duplicate
[04:40:28] [PASSED] conflict-not-disjoint
[04:40:28] [PASSED] conflict-reg-type
[04:40:28] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[04:40:28] ================== xe_rtp_process_tests ===================
[04:40:28] [PASSED] active1
[04:40:28] [PASSED] active2
[04:40:28] [PASSED] active-inactive
[04:40:28] [PASSED] inactive-active
[04:40:28] [PASSED] inactive-1st_or_active-inactive
[04:40:28] [PASSED] inactive-2nd_or_active-inactive
[04:40:28] [PASSED] inactive-last_or_active-inactive
[04:40:28] [PASSED] inactive-no_or_active-inactive
[04:40:28] ============== [PASSED] xe_rtp_process_tests ===============
[04:40:28] ===================== [PASSED] xe_rtp ======================
[04:40:28] ==================== xe_wa (1 subtest) =====================
[04:40:28] ======================== xe_wa_gt =========================
[04:40:28] [PASSED] TIGERLAKE (B0)
[04:40:28] [PASSED] DG1 (A0)
[04:40:28] [PASSED] DG1 (B0)
[04:40:28] [PASSED] ALDERLAKE_S (A0)
[04:40:28] [PASSED] ALDERLAKE_S (B0)
[04:40:28] [PASSED] ALDERLAKE_S (C0)
[04:40:28] [PASSED] ALDERLAKE_S (D0)
[04:40:28] [PASSED] ALDERLAKE_P (A0)
[04:40:28] [PASSED] ALDERLAKE_P (B0)
[04:40:28] [PASSED] ALDERLAKE_P (C0)
[04:40:28] [PASSED] ALDERLAKE_S_RPLS (D0)
[04:40:28] [PASSED] ALDERLAKE_P_RPLU (E0)
[04:40:28] [PASSED] DG2_G10 (C0)
[04:40:28] [PASSED] DG2_G11 (B1)
[04:40:28] [PASSED] DG2_G12 (A1)
[04:40:28] [PASSED] METEORLAKE (g:A0, m:A0)
[04:40:28] [PASSED] METEORLAKE (g:A0, m:A0)
[04:40:28] [PASSED] METEORLAKE (g:A0, m:A0)
[04:40:28] [PASSED] LUNARLAKE (g:A0, m:A0)
[04:40:28] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[04:40:28] [PASSED] BATTLEMAGE (g:A0, m:A1)
[04:40:28] ==================== [PASSED] xe_wa_gt =====================
[04:40:28] ====================== [PASSED] xe_wa ======================
[04:40:28] ============================================================
[04:40:28] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[04:40:28] Elapsed time: 31.544s total, 4.145s configuring, 27.032s building, 0.315s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[04:40:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:40:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[04:40:51] Starting KUnit Kernel (1/1)...
[04:40:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:40:52] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[04:40:52] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[04:40:52] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[04:40:52] =========== drm_validate_clone_mode (2 subtests) ===========
[04:40:52] ============== drm_test_check_in_clone_mode ===============
[04:40:52] [PASSED] in_clone_mode
[04:40:52] [PASSED] not_in_clone_mode
[04:40:52] ========== [PASSED] drm_test_check_in_clone_mode ===========
[04:40:52] =============== drm_test_check_valid_clones ===============
[04:40:52] [PASSED] not_in_clone_mode
[04:40:52] [PASSED] valid_clone
[04:40:52] [PASSED] invalid_clone
[04:40:52] =========== [PASSED] drm_test_check_valid_clones ===========
[04:40:52] ============= [PASSED] drm_validate_clone_mode =============
[04:40:52] ============= drm_validate_modeset (1 subtest) =============
[04:40:52] [PASSED] drm_test_check_connector_changed_modeset
[04:40:52] ============== [PASSED] drm_validate_modeset ===============
[04:40:52] ====== drm_test_bridge_get_current_state (2 subtests) ======
[04:40:52] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[04:40:52] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[04:40:52] ======== [PASSED] drm_test_bridge_get_current_state ========
[04:40:52] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[04:40:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[04:40:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[04:40:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[04:40:52] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[04:40:52] ============== drm_bridge_alloc (2 subtests) ===============
[04:40:52] [PASSED] drm_test_drm_bridge_alloc_basic
[04:40:52] [PASSED] drm_test_drm_bridge_alloc_get_put
[04:40:52] ================ [PASSED] drm_bridge_alloc =================
[04:40:52] ================== drm_buddy (7 subtests) ==================
[04:40:52] [PASSED] drm_test_buddy_alloc_limit
[04:40:52] [PASSED] drm_test_buddy_alloc_optimistic
[04:40:52] [PASSED] drm_test_buddy_alloc_pessimistic
[04:40:52] [PASSED] drm_test_buddy_alloc_pathological
[04:40:52] [PASSED] drm_test_buddy_alloc_contiguous
[04:40:52] [PASSED] drm_test_buddy_alloc_clear
[04:40:52] [PASSED] drm_test_buddy_alloc_range_bias
[04:40:52] ==================== [PASSED] drm_buddy ====================
[04:40:52] ============= drm_cmdline_parser (40 subtests) =============
[04:40:52] [PASSED] drm_test_cmdline_force_d_only
[04:40:52] [PASSED] drm_test_cmdline_force_D_only_dvi
[04:40:52] [PASSED] drm_test_cmdline_force_D_only_hdmi
[04:40:52] [PASSED] drm_test_cmdline_force_D_only_not_digital
[04:40:52] [PASSED] drm_test_cmdline_force_e_only
[04:40:52] [PASSED] drm_test_cmdline_res
[04:40:52] [PASSED] drm_test_cmdline_res_vesa
[04:40:52] [PASSED] drm_test_cmdline_res_vesa_rblank
[04:40:52] [PASSED] drm_test_cmdline_res_rblank
[04:40:52] [PASSED] drm_test_cmdline_res_bpp
[04:40:52] [PASSED] drm_test_cmdline_res_refresh
[04:40:52] [PASSED] drm_test_cmdline_res_bpp_refresh
[04:40:52] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[04:40:52] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[04:40:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[04:40:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[04:40:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[04:40:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[04:40:52] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[04:40:52] [PASSED] drm_test_cmdline_res_margins_force_on
[04:40:52] [PASSED] drm_test_cmdline_res_vesa_margins
[04:40:52] [PASSED] drm_test_cmdline_name
[04:40:52] [PASSED] drm_test_cmdline_name_bpp
[04:40:52] [PASSED] drm_test_cmdline_name_option
[04:40:52] [PASSED] drm_test_cmdline_name_bpp_option
[04:40:52] [PASSED] drm_test_cmdline_rotate_0
[04:40:52] [PASSED] drm_test_cmdline_rotate_90
[04:40:52] [PASSED] drm_test_cmdline_rotate_180
[04:40:52] [PASSED] drm_test_cmdline_rotate_270
[04:40:52] [PASSED] drm_test_cmdline_hmirror
[04:40:52] [PASSED] drm_test_cmdline_vmirror
[04:40:52] [PASSED] drm_test_cmdline_margin_options
[04:40:52] [PASSED] drm_test_cmdline_multiple_options
[04:40:52] [PASSED] drm_test_cmdline_bpp_extra_and_option
[04:40:52] [PASSED] drm_test_cmdline_extra_and_option
[04:40:52] [PASSED] drm_test_cmdline_freestanding_options
[04:40:52] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[04:40:52] [PASSED] drm_test_cmdline_panel_orientation
[04:40:52] ================ drm_test_cmdline_invalid =================
[04:40:52] [PASSED] margin_only
[04:40:52] [PASSED] interlace_only
[04:40:52] [PASSED] res_missing_x
[04:40:52] [PASSED] res_missing_y
[04:40:52] [PASSED] res_bad_y
[04:40:52] [PASSED] res_missing_y_bpp
[04:40:52] [PASSED] res_bad_bpp
[04:40:52] [PASSED] res_bad_refresh
[04:40:52] [PASSED] res_bpp_refresh_force_on_off
[04:40:52] [PASSED] res_invalid_mode
[04:40:52] [PASSED] res_bpp_wrong_place_mode
[04:40:52] [PASSED] name_bpp_refresh
[04:40:52] [PASSED] name_refresh
[04:40:52] [PASSED] name_refresh_wrong_mode
[04:40:52] [PASSED] name_refresh_invalid_mode
[04:40:52] [PASSED] rotate_multiple
[04:40:52] [PASSED] rotate_invalid_val
[04:40:52] [PASSED] rotate_truncated
[04:40:52] [PASSED] invalid_option
[04:40:52] [PASSED] invalid_tv_option
[04:40:52] [PASSED] truncated_tv_option
[04:40:52] ============ [PASSED] drm_test_cmdline_invalid =============
[04:40:52] =============== drm_test_cmdline_tv_options ===============
[04:40:52] [PASSED] NTSC
[04:40:52] [PASSED] NTSC_443
[04:40:52] [PASSED] NTSC_J
[04:40:52] [PASSED] PAL
[04:40:52] [PASSED] PAL_M
[04:40:52] [PASSED] PAL_N
[04:40:52] [PASSED] SECAM
[04:40:52] [PASSED] MONO_525
[04:40:52] [PASSED] MONO_625
[04:40:52] =========== [PASSED] drm_test_cmdline_tv_options ===========
[04:40:52] =============== [PASSED] drm_cmdline_parser ================
[04:40:52] ========== drmm_connector_hdmi_init (20 subtests) ==========
[04:40:52] [PASSED] drm_test_connector_hdmi_init_valid
[04:40:52] [PASSED] drm_test_connector_hdmi_init_bpc_8
[04:40:52] [PASSED] drm_test_connector_hdmi_init_bpc_10
[04:40:52] [PASSED] drm_test_connector_hdmi_init_bpc_12
[04:40:52] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[04:40:52] [PASSED] drm_test_connector_hdmi_init_bpc_null
[04:40:52] [PASSED] drm_test_connector_hdmi_init_formats_empty
[04:40:52] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[04:40:52] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:40:52] [PASSED] supported_formats=0x9 yuv420_allowed=1
[04:40:52] [PASSED] supported_formats=0x9 yuv420_allowed=0
[04:40:52] [PASSED] supported_formats=0x3 yuv420_allowed=1
[04:40:52] [PASSED] supported_formats=0x3 yuv420_allowed=0
[04:40:52] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:40:52] [PASSED] drm_test_connector_hdmi_init_null_ddc
[04:40:52] [PASSED] drm_test_connector_hdmi_init_null_product
[04:40:52] [PASSED] drm_test_connector_hdmi_init_null_vendor
[04:40:52] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[04:40:52] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[04:40:52] [PASSED] drm_test_connector_hdmi_init_product_valid
[04:40:52] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[04:40:52] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[04:40:52] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[04:40:52] ========= drm_test_connector_hdmi_init_type_valid =========
[04:40:52] [PASSED] HDMI-A
[04:40:52] [PASSED] HDMI-B
[04:40:52] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[04:40:52] ======== drm_test_connector_hdmi_init_type_invalid ========
[04:40:52] [PASSED] Unknown
[04:40:52] [PASSED] VGA
[04:40:52] [PASSED] DVI-I
[04:40:52] [PASSED] DVI-D
[04:40:52] [PASSED] DVI-A
[04:40:52] [PASSED] Composite
[04:40:52] [PASSED] SVIDEO
[04:40:52] [PASSED] LVDS
[04:40:52] [PASSED] Component
[04:40:52] [PASSED] DIN
[04:40:52] [PASSED] DP
[04:40:52] [PASSED] TV
[04:40:52] [PASSED] eDP
[04:40:52] [PASSED] Virtual
[04:40:52] [PASSED] DSI
[04:40:52] [PASSED] DPI
[04:40:52] [PASSED] Writeback
[04:40:52] [PASSED] SPI
[04:40:52] [PASSED] USB
[04:40:52] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[04:40:52] ============ [PASSED] drmm_connector_hdmi_init =============
[04:40:52] ============= drmm_connector_init (3 subtests) =============
[04:40:52] [PASSED] drm_test_drmm_connector_init
[04:40:52] [PASSED] drm_test_drmm_connector_init_null_ddc
[04:40:52] ========= drm_test_drmm_connector_init_type_valid =========
[04:40:52] [PASSED] Unknown
[04:40:52] [PASSED] VGA
[04:40:52] [PASSED] DVI-I
[04:40:52] [PASSED] DVI-D
[04:40:52] [PASSED] DVI-A
[04:40:52] [PASSED] Composite
[04:40:52] [PASSED] SVIDEO
[04:40:52] [PASSED] LVDS
[04:40:52] [PASSED] Component
[04:40:52] [PASSED] DIN
[04:40:52] [PASSED] DP
[04:40:52] [PASSED] HDMI-A
[04:40:52] [PASSED] HDMI-B
[04:40:52] [PASSED] TV
[04:40:52] [PASSED] eDP
[04:40:52] [PASSED] Virtual
[04:40:52] [PASSED] DSI
[04:40:52] [PASSED] DPI
[04:40:52] [PASSED] Writeback
[04:40:52] [PASSED] SPI
[04:40:52] [PASSED] USB
[04:40:52] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[04:40:52] =============== [PASSED] drmm_connector_init ===============
[04:40:52] ========= drm_connector_dynamic_init (6 subtests) ==========
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_init
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_init_properties
[04:40:52] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[04:40:52] [PASSED] Unknown
[04:40:52] [PASSED] VGA
[04:40:52] [PASSED] DVI-I
[04:40:52] [PASSED] DVI-D
[04:40:52] [PASSED] DVI-A
[04:40:52] [PASSED] Composite
[04:40:52] [PASSED] SVIDEO
[04:40:52] [PASSED] LVDS
[04:40:52] [PASSED] Component
[04:40:52] [PASSED] DIN
[04:40:52] [PASSED] DP
[04:40:52] [PASSED] HDMI-A
[04:40:52] [PASSED] HDMI-B
[04:40:52] [PASSED] TV
[04:40:52] [PASSED] eDP
[04:40:52] [PASSED] Virtual
[04:40:52] [PASSED] DSI
[04:40:52] [PASSED] DPI
[04:40:52] [PASSED] Writeback
[04:40:52] [PASSED] SPI
[04:40:52] [PASSED] USB
[04:40:52] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[04:40:52] ======== drm_test_drm_connector_dynamic_init_name =========
[04:40:52] [PASSED] Unknown
[04:40:52] [PASSED] VGA
[04:40:52] [PASSED] DVI-I
[04:40:52] [PASSED] DVI-D
[04:40:52] [PASSED] DVI-A
[04:40:52] [PASSED] Composite
[04:40:52] [PASSED] SVIDEO
[04:40:52] [PASSED] LVDS
[04:40:52] [PASSED] Component
[04:40:52] [PASSED] DIN
[04:40:52] [PASSED] DP
[04:40:52] [PASSED] HDMI-A
[04:40:52] [PASSED] HDMI-B
[04:40:52] [PASSED] TV
[04:40:52] [PASSED] eDP
[04:40:52] [PASSED] Virtual
[04:40:52] [PASSED] DSI
[04:40:52] [PASSED] DPI
[04:40:52] [PASSED] Writeback
[04:40:52] [PASSED] SPI
[04:40:52] [PASSED] USB
[04:40:52] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[04:40:52] =========== [PASSED] drm_connector_dynamic_init ============
[04:40:52] ==== drm_connector_dynamic_register_early (4 subtests) =====
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[04:40:52] ====== [PASSED] drm_connector_dynamic_register_early =======
[04:40:52] ======= drm_connector_dynamic_register (7 subtests) ========
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[04:40:52] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[04:40:52] ========= [PASSED] drm_connector_dynamic_register ==========
[04:40:52] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[04:40:52] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[04:40:52] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[04:40:52] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[04:40:52] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[04:40:52] ========== drm_test_get_tv_mode_from_name_valid ===========
[04:40:52] [PASSED] NTSC
[04:40:52] [PASSED] NTSC-443
[04:40:52] [PASSED] NTSC-J
[04:40:52] [PASSED] PAL
[04:40:52] [PASSED] PAL-M
[04:40:52] [PASSED] PAL-N
[04:40:52] [PASSED] SECAM
[04:40:52] [PASSED] Mono
[04:40:52] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[04:40:52] [PASSED] drm_test_get_tv_mode_from_name_truncated
[04:40:52] ============ [PASSED] drm_get_tv_mode_from_name ============
[04:40:52] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[04:40:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[04:40:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[04:40:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[04:40:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[04:40:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[04:40:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[04:40:52] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[04:40:52] [PASSED] VIC 96
[04:40:52] [PASSED] VIC 97
[04:40:52] [PASSED] VIC 101
[04:40:52] [PASSED] VIC 102
[04:40:52] [PASSED] VIC 106
[04:40:52] [PASSED] VIC 107
[04:40:52] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[04:40:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[04:40:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[04:40:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[04:40:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[04:40:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[04:40:52] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[04:40:52] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[04:40:52] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[04:40:52] [PASSED] Automatic
[04:40:52] [PASSED] Full
[04:40:52] [PASSED] Limited 16:235
[04:40:52] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[04:40:52] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[04:40:52] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[04:40:52] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[04:40:52] === drm_test_drm_hdmi_connector_get_output_format_name ====
[04:40:52] [PASSED] RGB
[04:40:52] [PASSED] YUV 4:2:0
[04:40:52] [PASSED] YUV 4:2:2
[04:40:52] [PASSED] YUV 4:4:4
[04:40:52] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[04:40:52] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[04:40:52] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[04:40:52] ============= drm_damage_helper (21 subtests) ==============
[04:40:52] [PASSED] drm_test_damage_iter_no_damage
[04:40:52] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[04:40:52] [PASSED] drm_test_damage_iter_no_damage_src_moved
[04:40:52] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[04:40:52] [PASSED] drm_test_damage_iter_no_damage_not_visible
[04:40:52] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[04:40:52] [PASSED] drm_test_damage_iter_no_damage_no_fb
[04:40:52] [PASSED] drm_test_damage_iter_simple_damage
[04:40:52] [PASSED] drm_test_damage_iter_single_damage
[04:40:52] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[04:40:52] [PASSED] drm_test_damage_iter_single_damage_outside_src
[04:40:52] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[04:40:52] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[04:40:52] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[04:40:52] [PASSED] drm_test_damage_iter_single_damage_src_moved
[04:40:52] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[04:40:52] [PASSED] drm_test_damage_iter_damage
[04:40:52] [PASSED] drm_test_damage_iter_damage_one_intersect
[04:40:52] [PASSED] drm_test_damage_iter_damage_one_outside
[04:40:52] [PASSED] drm_test_damage_iter_damage_src_moved
[04:40:52] [PASSED] drm_test_damage_iter_damage_not_visible
[04:40:52] ================ [PASSED] drm_damage_helper ================
[04:40:52] ============== drm_dp_mst_helper (3 subtests) ==============
[04:40:52] ============== drm_test_dp_mst_calc_pbn_mode ==============
[04:40:52] [PASSED] Clock 154000 BPP 30 DSC disabled
[04:40:52] [PASSED] Clock 234000 BPP 30 DSC disabled
[04:40:52] [PASSED] Clock 297000 BPP 24 DSC disabled
[04:40:52] [PASSED] Clock 332880 BPP 24 DSC enabled
[04:40:52] [PASSED] Clock 324540 BPP 24 DSC enabled
[04:40:52] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[04:40:52] ============== drm_test_dp_mst_calc_pbn_div ===============
[04:40:52] [PASSED] Link rate 2000000 lane count 4
[04:40:52] [PASSED] Link rate 2000000 lane count 2
[04:40:52] [PASSED] Link rate 2000000 lane count 1
[04:40:52] [PASSED] Link rate 1350000 lane count 4
[04:40:52] [PASSED] Link rate 1350000 lane count 2
[04:40:52] [PASSED] Link rate 1350000 lane count 1
[04:40:52] [PASSED] Link rate 1000000 lane count 4
[04:40:52] [PASSED] Link rate 1000000 lane count 2
[04:40:52] [PASSED] Link rate 1000000 lane count 1
[04:40:52] [PASSED] Link rate 810000 lane count 4
[04:40:52] [PASSED] Link rate 810000 lane count 2
[04:40:52] [PASSED] Link rate 810000 lane count 1
[04:40:52] [PASSED] Link rate 540000 lane count 4
[04:40:52] [PASSED] Link rate 540000 lane count 2
[04:40:52] [PASSED] Link rate 540000 lane count 1
[04:40:52] [PASSED] Link rate 270000 lane count 4
[04:40:52] [PASSED] Link rate 270000 lane count 2
[04:40:52] [PASSED] Link rate 270000 lane count 1
[04:40:52] [PASSED] Link rate 162000 lane count 4
[04:40:52] [PASSED] Link rate 162000 lane count 2
[04:40:52] [PASSED] Link rate 162000 lane count 1
[04:40:52] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[04:40:52] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[04:40:52] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[04:40:52] [PASSED] DP_POWER_UP_PHY with port number
[04:40:52] [PASSED] DP_POWER_DOWN_PHY with port number
[04:40:52] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[04:40:52] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[04:40:52] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[04:40:52] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[04:40:52] [PASSED] DP_QUERY_PAYLOAD with port number
[04:40:52] [PASSED] DP_QUERY_PAYLOAD with VCPI
[04:40:52] [PASSED] DP_REMOTE_DPCD_READ with port number
[04:40:52] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[04:40:52] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[04:40:52] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[04:40:52] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[04:40:52] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[04:40:52] [PASSED] DP_REMOTE_I2C_READ with port number
[04:40:52] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[04:40:52] [PASSED] DP_REMOTE_I2C_READ with transactions array
[04:40:52] [PASSED] DP_REMOTE_I2C_WRITE with port number
[04:40:52] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[04:40:52] [PASSED] DP_REMOTE_I2C_WRITE with data array
[04:40:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[04:40:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[04:40:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[04:40:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[04:40:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[04:40:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[04:40:52] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[04:40:52] ================ [PASSED] drm_dp_mst_helper ================
[04:40:52] ================== drm_exec (7 subtests) ===================
[04:40:52] [PASSED] sanitycheck
[04:40:52] [PASSED] test_lock
[04:40:52] [PASSED] test_lock_unlock
[04:40:52] [PASSED] test_duplicates
[04:40:52] [PASSED] test_prepare
[04:40:52] [PASSED] test_prepare_array
[04:40:52] [PASSED] test_multiple_loops
[04:40:52] ==================== [PASSED] drm_exec =====================
[04:40:52] =========== drm_format_helper_test (17 subtests) ===========
[04:40:52] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[04:40:52] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[04:40:52] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[04:40:52] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[04:40:52] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[04:40:52] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[04:40:52] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[04:40:52] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[04:40:52] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[04:40:52] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[04:40:52] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[04:40:52] ============== drm_test_fb_xrgb8888_to_mono ===============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[04:40:52] ==================== drm_test_fb_swab =====================
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ================ [PASSED] drm_test_fb_swab =================
[04:40:52] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[04:40:52] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[04:40:52] [PASSED] single_pixel_source_buffer
[04:40:52] [PASSED] single_pixel_clip_rectangle
[04:40:52] [PASSED] well_known_colors
[04:40:52] [PASSED] destination_pitch
[04:40:52] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[04:40:52] ================= drm_test_fb_clip_offset =================
[04:40:52] [PASSED] pass through
[04:40:52] [PASSED] horizontal offset
[04:40:52] [PASSED] vertical offset
[04:40:52] [PASSED] horizontal and vertical offset
[04:40:52] [PASSED] horizontal offset (custom pitch)
[04:40:52] [PASSED] vertical offset (custom pitch)
[04:40:52] [PASSED] horizontal and vertical offset (custom pitch)
[04:40:52] ============= [PASSED] drm_test_fb_clip_offset =============
[04:40:52] =================== drm_test_fb_memcpy ====================
[04:40:52] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[04:40:52] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[04:40:52] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[04:40:52] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[04:40:52] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[04:40:52] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[04:40:52] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[04:40:52] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[04:40:52] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[04:40:52] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[04:40:52] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[04:40:52] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[04:40:52] =============== [PASSED] drm_test_fb_memcpy ================
[04:40:52] ============= [PASSED] drm_format_helper_test ==============
[04:40:52] ================= drm_format (18 subtests) =================
[04:40:52] [PASSED] drm_test_format_block_width_invalid
[04:40:52] [PASSED] drm_test_format_block_width_one_plane
[04:40:52] [PASSED] drm_test_format_block_width_two_plane
[04:40:52] [PASSED] drm_test_format_block_width_three_plane
[04:40:52] [PASSED] drm_test_format_block_width_tiled
[04:40:52] [PASSED] drm_test_format_block_height_invalid
[04:40:52] [PASSED] drm_test_format_block_height_one_plane
[04:40:52] [PASSED] drm_test_format_block_height_two_plane
[04:40:52] [PASSED] drm_test_format_block_height_three_plane
[04:40:52] [PASSED] drm_test_format_block_height_tiled
[04:40:52] [PASSED] drm_test_format_min_pitch_invalid
[04:40:52] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[04:40:52] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[04:40:52] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[04:40:52] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[04:40:52] [PASSED] drm_test_format_min_pitch_two_plane
[04:40:52] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[04:40:52] [PASSED] drm_test_format_min_pitch_tiled
[04:40:52] =================== [PASSED] drm_format ====================
[04:40:52] ============== drm_framebuffer (10 subtests) ===============
[04:40:52] ========== drm_test_framebuffer_check_src_coords ==========
[04:40:52] [PASSED] Success: source fits into fb
[04:40:52] [PASSED] Fail: overflowing fb with x-axis coordinate
[04:40:52] [PASSED] Fail: overflowing fb with y-axis coordinate
[04:40:52] [PASSED] Fail: overflowing fb with source width
[04:40:52] [PASSED] Fail: overflowing fb with source height
[04:40:52] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[04:40:52] [PASSED] drm_test_framebuffer_cleanup
[04:40:52] =============== drm_test_framebuffer_create ===============
[04:40:52] [PASSED] ABGR8888 normal sizes
[04:40:52] [PASSED] ABGR8888 max sizes
[04:40:52] [PASSED] ABGR8888 pitch greater than min required
[04:40:52] [PASSED] ABGR8888 pitch less than min required
[04:40:52] [PASSED] ABGR8888 Invalid width
[04:40:52] [PASSED] ABGR8888 Invalid buffer handle
[04:40:52] [PASSED] No pixel format
[04:40:52] [PASSED] ABGR8888 Width 0
[04:40:52] [PASSED] ABGR8888 Height 0
[04:40:52] [PASSED] ABGR8888 Out of bound height * pitch combination
[04:40:52] [PASSED] ABGR8888 Large buffer offset
[04:40:52] [PASSED] ABGR8888 Buffer offset for inexistent plane
[04:40:52] [PASSED] ABGR8888 Invalid flag
[04:40:52] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[04:40:52] [PASSED] ABGR8888 Valid buffer modifier
[04:40:52] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[04:40:52] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[04:40:52] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[04:40:52] [PASSED] NV12 Normal sizes
[04:40:52] [PASSED] NV12 Max sizes
[04:40:52] [PASSED] NV12 Invalid pitch
[04:40:52] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[04:40:52] [PASSED] NV12 different modifier per-plane
[04:40:52] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[04:40:52] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[04:40:52] [PASSED] NV12 Modifier for inexistent plane
[04:40:52] [PASSED] NV12 Handle for inexistent plane
[04:40:52] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[04:40:52] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[04:40:52] [PASSED] YVU420 Normal sizes
[04:40:52] [PASSED] YVU420 Max sizes
[04:40:52] [PASSED] YVU420 Invalid pitch
[04:40:52] [PASSED] YVU420 Different pitches
[04:40:52] [PASSED] YVU420 Different buffer offsets/pitches
[04:40:52] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[04:40:52] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[04:40:52] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[04:40:52] [PASSED] YVU420 Valid modifier
[04:40:52] [PASSED] YVU420 Different modifiers per plane
[04:40:52] [PASSED] YVU420 Modifier for inexistent plane
[04:40:52] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[04:40:52] [PASSED] X0L2 Normal sizes
[04:40:52] [PASSED] X0L2 Max sizes
[04:40:52] [PASSED] X0L2 Invalid pitch
[04:40:52] [PASSED] X0L2 Pitch greater than minimum required
[04:40:52] [PASSED] X0L2 Handle for inexistent plane
[04:40:52] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[04:40:52] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[04:40:52] [PASSED] X0L2 Valid modifier
[04:40:52] [PASSED] X0L2 Modifier for inexistent plane
[04:40:52] =========== [PASSED] drm_test_framebuffer_create ===========
[04:40:52] [PASSED] drm_test_framebuffer_free
[04:40:52] [PASSED] drm_test_framebuffer_init
[04:40:52] [PASSED] drm_test_framebuffer_init_bad_format
[04:40:52] [PASSED] drm_test_framebuffer_init_dev_mismatch
[04:40:52] [PASSED] drm_test_framebuffer_lookup
[04:40:52] [PASSED] drm_test_framebuffer_lookup_inexistent
[04:40:52] [PASSED] drm_test_framebuffer_modifiers_not_supported
[04:40:52] ================= [PASSED] drm_framebuffer =================
[04:40:52] ================ drm_gem_shmem (8 subtests) ================
[04:40:52] [PASSED] drm_gem_shmem_test_obj_create
[04:40:52] [PASSED] drm_gem_shmem_test_obj_create_private
[04:40:52] [PASSED] drm_gem_shmem_test_pin_pages
[04:40:52] [PASSED] drm_gem_shmem_test_vmap
[04:40:52] [PASSED] drm_gem_shmem_test_get_pages_sgt
[04:40:52] [PASSED] drm_gem_shmem_test_get_sg_table
[04:40:52] [PASSED] drm_gem_shmem_test_madvise
[04:40:52] [PASSED] drm_gem_shmem_test_purge
[04:40:52] ================== [PASSED] drm_gem_shmem ==================
[04:40:52] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[04:40:52] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[04:40:52] [PASSED] Automatic
[04:40:52] [PASSED] Full
[04:40:52] [PASSED] Limited 16:235
[04:40:52] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[04:40:52] [PASSED] drm_test_check_disable_connector
[04:40:52] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[04:40:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[04:40:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[04:40:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[04:40:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[04:40:52] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[04:40:52] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[04:40:52] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[04:40:52] [PASSED] drm_test_check_output_bpc_dvi
[04:40:52] [PASSED] drm_test_check_output_bpc_format_vic_1
[04:40:52] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[04:40:52] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[04:40:52] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[04:40:52] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[04:40:52] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[04:40:52] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[04:40:52] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[04:40:52] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[04:40:52] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[04:40:52] [PASSED] drm_test_check_broadcast_rgb_value
[04:40:52] [PASSED] drm_test_check_bpc_8_value
[04:40:52] [PASSED] drm_test_check_bpc_10_value
[04:40:52] [PASSED] drm_test_check_bpc_12_value
[04:40:52] [PASSED] drm_test_check_format_value
[04:40:52] [PASSED] drm_test_check_tmds_char_value
[04:40:52] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[04:40:52] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[04:40:52] [PASSED] drm_test_check_mode_valid
[04:40:52] [PASSED] drm_test_check_mode_valid_reject
[04:40:52] [PASSED] drm_test_check_mode_valid_reject_rate
[04:40:52] [PASSED] drm_test_check_mode_valid_reject_max_clock
[04:40:52] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[04:40:52] ================= drm_managed (2 subtests) =================
[04:40:52] [PASSED] drm_test_managed_release_action
[04:40:52] [PASSED] drm_test_managed_run_action
[04:40:52] =================== [PASSED] drm_managed ===================
[04:40:52] =================== drm_mm (6 subtests) ====================
[04:40:52] [PASSED] drm_test_mm_init
[04:40:52] [PASSED] drm_test_mm_debug
[04:40:52] [PASSED] drm_test_mm_align32
[04:40:52] [PASSED] drm_test_mm_align64
[04:40:52] [PASSED] drm_test_mm_lowest
[04:40:52] [PASSED] drm_test_mm_highest
[04:40:52] ===================== [PASSED] drm_mm ======================
[04:40:52] ============= drm_modes_analog_tv (5 subtests) =============
[04:40:52] [PASSED] drm_test_modes_analog_tv_mono_576i
[04:40:52] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[04:40:52] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[04:40:52] [PASSED] drm_test_modes_analog_tv_pal_576i
[04:40:52] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[04:40:52] =============== [PASSED] drm_modes_analog_tv ===============
[04:40:52] ============== drm_plane_helper (2 subtests) ===============
[04:40:52] =============== drm_test_check_plane_state ================
[04:40:52] [PASSED] clipping_simple
[04:40:52] [PASSED] clipping_rotate_reflect
[04:40:52] [PASSED] positioning_simple
[04:40:52] [PASSED] upscaling
[04:40:52] [PASSED] downscaling
[04:40:52] [PASSED] rounding1
[04:40:52] [PASSED] rounding2
[04:40:52] [PASSED] rounding3
[04:40:52] [PASSED] rounding4
[04:40:52] =========== [PASSED] drm_test_check_plane_state ============
[04:40:52] =========== drm_test_check_invalid_plane_state ============
[04:40:52] [PASSED] positioning_invalid
[04:40:52] [PASSED] upscaling_invalid
[04:40:52] [PASSED] downscaling_invalid
[04:40:52] ======= [PASSED] drm_test_check_invalid_plane_state ========
[04:40:52] ================ [PASSED] drm_plane_helper =================
[04:40:52] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[04:40:52] ====== drm_test_connector_helper_tv_get_modes_check =======
[04:40:52] [PASSED] None
[04:40:52] [PASSED] PAL
[04:40:52] [PASSED] NTSC
[04:40:52] [PASSED] Both, NTSC Default
[04:40:52] [PASSED] Both, PAL Default
[04:40:52] [PASSED] Both, NTSC Default, with PAL on command-line
[04:40:52] [PASSED] Both, PAL Default, with NTSC on command-line
[04:40:52] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[04:40:52] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[04:40:52] ================== drm_rect (9 subtests) ===================
[04:40:52] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[04:40:52] [PASSED] drm_test_rect_clip_scaled_not_clipped
[04:40:52] [PASSED] drm_test_rect_clip_scaled_clipped
[04:40:52] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[04:40:52] ================= drm_test_rect_intersect =================
[04:40:52] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[04:40:52] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[04:40:52] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[04:40:52] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[04:40:52] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[04:40:52] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[04:40:52] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[04:40:52] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[04:40:52] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[04:40:52] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[04:40:52] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[04:40:52] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[04:40:52] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[04:40:52] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[04:40:52] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[04:40:52] ============= [PASSED] drm_test_rect_intersect =============
[04:40:52] ================ drm_test_rect_calc_hscale ================
[04:40:52] [PASSED] normal use
[04:40:52] [PASSED] out of max range
[04:40:52] [PASSED] out of min range
[04:40:52] [PASSED] zero dst
[04:40:52] [PASSED] negative src
[04:40:52] [PASSED] negative dst
[04:40:52] ============ [PASSED] drm_test_rect_calc_hscale ============
[04:40:52] ================ drm_test_rect_calc_vscale ================
[04:40:52] [PASSED] normal use
[04:40:52] [PASSED] out of max range
[04:40:52] [PASSED] out of min range
[04:40:52] [PASSED] zero dst
[04:40:52] [PASSED] negative src
[04:40:52] [PASSED] negative dst
[04:40:52] ============ [PASSED] drm_test_rect_calc_vscale ============
[04:40:52] ================== drm_test_rect_rotate ===================
[04:40:52] [PASSED] reflect-x
[04:40:52] [PASSED] reflect-y
[04:40:52] [PASSED] rotate-0
[04:40:52] [PASSED] rotate-90
[04:40:52] [PASSED] rotate-180
[04:40:52] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[04:40:52] ============== [PASSED] drm_test_rect_rotate ===============
[04:40:52] ================ drm_test_rect_rotate_inv =================
[04:40:52] [PASSED] reflect-x
[04:40:52] [PASSED] reflect-y
[04:40:52] [PASSED] rotate-0
[04:40:52] [PASSED] rotate-90
[04:40:52] [PASSED] rotate-180
[04:40:52] [PASSED] rotate-270
[04:40:52] ============ [PASSED] drm_test_rect_rotate_inv =============
[04:40:52] ==================== [PASSED] drm_rect =====================
[04:40:52] ============ drm_sysfb_modeset_test (1 subtest) ============
[04:40:52] ============ drm_test_sysfb_build_fourcc_list =============
[04:40:52] [PASSED] no native formats
[04:40:52] [PASSED] XRGB8888 as native format
[04:40:52] [PASSED] remove duplicates
[04:40:52] [PASSED] convert alpha formats
[04:40:52] [PASSED] random formats
[04:40:52] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[04:40:52] ============= [PASSED] drm_sysfb_modeset_test ==============
[04:40:52] ============================================================
[04:40:52] Testing complete. Ran 616 tests: passed: 616
[04:40:52] Elapsed time: 23.733s total, 1.623s configuring, 21.944s building, 0.135s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[04:40:52] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:40:53] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[04:41:01] Starting KUnit Kernel (1/1)...
[04:41:01] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:41:01] ================= ttm_device (5 subtests) ==================
[04:41:01] [PASSED] ttm_device_init_basic
[04:41:01] [PASSED] ttm_device_init_multiple
[04:41:01] [PASSED] ttm_device_fini_basic
[04:41:01] [PASSED] ttm_device_init_no_vma_man
[04:41:01] ================== ttm_device_init_pools ==================
[04:41:01] [PASSED] No DMA allocations, no DMA32 required
[04:41:01] [PASSED] DMA allocations, DMA32 required
[04:41:01] [PASSED] No DMA allocations, DMA32 required
[04:41:01] [PASSED] DMA allocations, no DMA32 required
[04:41:01] ============== [PASSED] ttm_device_init_pools ==============
[04:41:01] =================== [PASSED] ttm_device ====================
[04:41:01] ================== ttm_pool (8 subtests) ===================
[04:41:01] ================== ttm_pool_alloc_basic ===================
[04:41:01] [PASSED] One page
[04:41:01] [PASSED] More than one page
[04:41:01] [PASSED] Above the allocation limit
[04:41:01] [PASSED] One page, with coherent DMA mappings enabled
[04:41:01] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:41:01] ============== [PASSED] ttm_pool_alloc_basic ===============
[04:41:01] ============== ttm_pool_alloc_basic_dma_addr ==============
[04:41:01] [PASSED] One page
[04:41:01] [PASSED] More than one page
[04:41:01] [PASSED] Above the allocation limit
[04:41:01] [PASSED] One page, with coherent DMA mappings enabled
[04:41:01] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:41:01] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[04:41:01] [PASSED] ttm_pool_alloc_order_caching_match
[04:41:01] [PASSED] ttm_pool_alloc_caching_mismatch
[04:41:01] [PASSED] ttm_pool_alloc_order_mismatch
[04:41:01] [PASSED] ttm_pool_free_dma_alloc
[04:41:01] [PASSED] ttm_pool_free_no_dma_alloc
[04:41:01] [PASSED] ttm_pool_fini_basic
[04:41:01] ==================== [PASSED] ttm_pool =====================
[04:41:01] ================ ttm_resource (8 subtests) =================
[04:41:01] ================= ttm_resource_init_basic =================
[04:41:01] [PASSED] Init resource in TTM_PL_SYSTEM
[04:41:01] [PASSED] Init resource in TTM_PL_VRAM
[04:41:01] [PASSED] Init resource in a private placement
[04:41:01] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[04:41:01] ============= [PASSED] ttm_resource_init_basic =============
[04:41:01] [PASSED] ttm_resource_init_pinned
[04:41:01] [PASSED] ttm_resource_fini_basic
[04:41:01] [PASSED] ttm_resource_manager_init_basic
[04:41:01] [PASSED] ttm_resource_manager_usage_basic
[04:41:01] [PASSED] ttm_resource_manager_set_used_basic
[04:41:01] [PASSED] ttm_sys_man_alloc_basic
[04:41:01] [PASSED] ttm_sys_man_free_basic
[04:41:01] ================== [PASSED] ttm_resource ===================
[04:41:01] =================== ttm_tt (15 subtests) ===================
[04:41:01] ==================== ttm_tt_init_basic ====================
[04:41:01] [PASSED] Page-aligned size
[04:41:01] [PASSED] Extra pages requested
[04:41:01] ================ [PASSED] ttm_tt_init_basic ================
[04:41:01] [PASSED] ttm_tt_init_misaligned
[04:41:01] [PASSED] ttm_tt_fini_basic
[04:41:01] [PASSED] ttm_tt_fini_sg
[04:41:01] [PASSED] ttm_tt_fini_shmem
[04:41:01] [PASSED] ttm_tt_create_basic
[04:41:01] [PASSED] ttm_tt_create_invalid_bo_type
[04:41:01] [PASSED] ttm_tt_create_ttm_exists
[04:41:01] [PASSED] ttm_tt_create_failed
[04:41:01] [PASSED] ttm_tt_destroy_basic
[04:41:01] [PASSED] ttm_tt_populate_null_ttm
[04:41:01] [PASSED] ttm_tt_populate_populated_ttm
[04:41:01] [PASSED] ttm_tt_unpopulate_basic
[04:41:01] [PASSED] ttm_tt_unpopulate_empty_ttm
[04:41:01] [PASSED] ttm_tt_swapin_basic
[04:41:01] ===================== [PASSED] ttm_tt ======================
[04:41:01] =================== ttm_bo (14 subtests) ===================
[04:41:01] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[04:41:01] [PASSED] Cannot be interrupted and sleeps
[04:41:01] [PASSED] Cannot be interrupted, locks straight away
[04:41:01] [PASSED] Can be interrupted, sleeps
[04:41:01] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[04:41:01] [PASSED] ttm_bo_reserve_locked_no_sleep
[04:41:01] [PASSED] ttm_bo_reserve_no_wait_ticket
[04:41:01] [PASSED] ttm_bo_reserve_double_resv
[04:41:01] [PASSED] ttm_bo_reserve_interrupted
[04:41:01] [PASSED] ttm_bo_reserve_deadlock
[04:41:01] [PASSED] ttm_bo_unreserve_basic
[04:41:01] [PASSED] ttm_bo_unreserve_pinned
[04:41:01] [PASSED] ttm_bo_unreserve_bulk
[04:41:01] [PASSED] ttm_bo_put_basic
[04:41:01] [PASSED] ttm_bo_put_shared_resv
[04:41:01] [PASSED] ttm_bo_pin_basic
[04:41:01] [PASSED] ttm_bo_pin_unpin_resource
[04:41:01] [PASSED] ttm_bo_multiple_pin_one_unpin
[04:41:01] ===================== [PASSED] ttm_bo ======================
[04:41:01] ============== ttm_bo_validate (21 subtests) ===============
[04:41:01] ============== ttm_bo_init_reserved_sys_man ===============
[04:41:01] [PASSED] Buffer object for userspace
[04:41:01] [PASSED] Kernel buffer object
[04:41:01] [PASSED] Shared buffer object
[04:41:01] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[04:41:01] ============== ttm_bo_init_reserved_mock_man ==============
[04:41:01] [PASSED] Buffer object for userspace
[04:41:01] [PASSED] Kernel buffer object
[04:41:01] [PASSED] Shared buffer object
[04:41:01] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[04:41:01] [PASSED] ttm_bo_init_reserved_resv
[04:41:01] ================== ttm_bo_validate_basic ==================
[04:41:01] [PASSED] Buffer object for userspace
[04:41:01] [PASSED] Kernel buffer object
[04:41:01] [PASSED] Shared buffer object
[04:41:01] ============== [PASSED] ttm_bo_validate_basic ==============
[04:41:01] [PASSED] ttm_bo_validate_invalid_placement
[04:41:01] ============= ttm_bo_validate_same_placement ==============
[04:41:01] [PASSED] System manager
[04:41:01] [PASSED] VRAM manager
[04:41:01] ========= [PASSED] ttm_bo_validate_same_placement ==========
[04:41:01] [PASSED] ttm_bo_validate_failed_alloc
[04:41:01] [PASSED] ttm_bo_validate_pinned
[04:41:01] [PASSED] ttm_bo_validate_busy_placement
[04:41:01] ================ ttm_bo_validate_multihop =================
[04:41:01] [PASSED] Buffer object for userspace
[04:41:01] [PASSED] Kernel buffer object
[04:41:01] [PASSED] Shared buffer object
[04:41:01] ============ [PASSED] ttm_bo_validate_multihop =============
[04:41:01] ========== ttm_bo_validate_no_placement_signaled ==========
[04:41:01] [PASSED] Buffer object in system domain, no page vector
[04:41:01] [PASSED] Buffer object in system domain with an existing page vector
[04:41:01] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[04:41:01] ======== ttm_bo_validate_no_placement_not_signaled ========
[04:41:01] [PASSED] Buffer object for userspace
[04:41:01] [PASSED] Kernel buffer object
[04:41:01] [PASSED] Shared buffer object
[04:41:01] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[04:41:01] [PASSED] ttm_bo_validate_move_fence_signaled
[04:41:01] ========= ttm_bo_validate_move_fence_not_signaled =========
[04:41:01] [PASSED] Waits for GPU
[04:41:01] [PASSED] Tries to lock straight away
[04:41:01] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[04:41:01] [PASSED] ttm_bo_validate_happy_evict
[04:41:01] [PASSED] ttm_bo_validate_all_pinned_evict
[04:41:01] [PASSED] ttm_bo_validate_allowed_only_evict
[04:41:01] [PASSED] ttm_bo_validate_deleted_evict
[04:41:01] [PASSED] ttm_bo_validate_busy_domain_evict
[04:41:01] [PASSED] ttm_bo_validate_evict_gutting
[04:41:01] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[04:41:01] ================= [PASSED] ttm_bo_validate =================
[04:41:01] ============================================================
[04:41:01] Testing complete. Ran 101 tests: passed: 101
[04:41:01] Elapsed time: 9.673s total, 1.677s configuring, 7.781s building, 0.185s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Take preemption into account when resubmitting jobs
2025-08-09 4:34 [PATCH] drm/xe: Take preemption into account when resubmitting jobs Matthew Brost
2025-08-09 4:41 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-08-09 5:43 ` Patchwork
2025-08-09 6:49 ` ✓ Xe.CI.Full: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-08-09 5:43 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1296 bytes --]
== Series Details ==
Series: drm/xe: Take preemption into account when resubmitting jobs
URL : https://patchwork.freedesktop.org/series/152715/
State : success
== Summary ==
CI Bug Log - changes from xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7_BAT -> xe-pw-152715v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 9)
------------------------------
Missing (2): bat-adlp-vm bat-ptl-vm
Known issues
------------
Here are the changes found in xe-pw-152715v1_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* Linux: xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7 -> xe-pw-152715v1
IGT_8489: 4972020ea0f3d0ac8a0d7dd4f5419119b1b30995 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7: 1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7
xe-pw-152715v1: 152715v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/index.html
[-- Attachment #2: Type: text/html, Size: 1773 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.Full: success for drm/xe: Take preemption into account when resubmitting jobs
2025-08-09 4:34 [PATCH] drm/xe: Take preemption into account when resubmitting jobs Matthew Brost
2025-08-09 4:41 ` ✓ CI.KUnit: success for " Patchwork
2025-08-09 5:43 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-09 6:49 ` Patchwork
2025-08-11 16:21 ` [PATCH] " Summers, Stuart
2025-08-12 18:54 ` Lis, Tomasz
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-08-09 6:49 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 63751 bytes --]
== Series Details ==
Series: drm/xe: Take preemption into account when resubmitting jobs
URL : https://patchwork.freedesktop.org/series/152715/
State : success
== Summary ==
CI Bug Log - changes from xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7_FULL -> xe-pw-152715v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-152715v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2233])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2370])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +9 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][7] ([Intel XE#316]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#610])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][9] ([Intel XE#4543])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#607])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#607])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +9 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2191])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#367])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#787]) +17 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#787]) +195 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2669]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-lnl-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2907])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#4418])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-463/igt@kms_chamelium_color@gamma.html
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2325])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-4/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-463/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#373]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2252]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#307])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#307])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#1178])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-432/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][37] ([Intel XE#1188]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][38] ([Intel XE#1188])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2320]) +6 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2321])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#308]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_edge_walk@256x256-right-edge:
- shard-adlp: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#2953] / [Intel XE#4173])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-3/igt@kms_cursor_edge_walk@256x256-right-edge.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-6/igt@kms_cursor_edge_walk@256x256-right-edge.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2291]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#309]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#4331])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2244])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#776]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#776]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2316]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#310]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@basic-plain-flip@c-hdmi-a1:
- shard-adlp: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#4543]) +2 other tests dmesg-warn
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-2/igt@kms_flip@basic-plain-flip@c-hdmi-a1.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-3/igt@kms_flip@basic-plain-flip@c-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#301]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2380]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2293]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2311]) +19 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#651]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#656]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#5390]) +11 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#658])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#651]) +16 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#653]) +21 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2313]) +20 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#656])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2352])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#653]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#1503])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2927])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2927])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format@pipe-b-plane-0:
- shard-adlp: NOTRUN -> [FAIL][76] ([Intel XE#5195]) +4 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_plane@pixel-format@pipe-b-plane-0.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][77] ([Intel XE#616]) +3 other tests fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#870])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_pm_backlight@fade.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#836])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1489]) +7 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#1489]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1489]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1122])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2387])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-8/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1406])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4609])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#3414])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#3414])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#455]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#1435])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2450])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2168])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_vrr@cmrr.html
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2168])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#455]) +10 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-463/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1499]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@kms_vrr@max-min.html
* igt@xe_compute@ccs-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][100] ([Intel XE#1447] / [Intel XE#5617])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eu_stall@invalid-gt-id:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#5626])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@xe_eu_stall@invalid-gt-id.html
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#5626])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_eu_stall@invalid-gt-id.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4837]) +10 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#4837]) +10 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@pagefault-read:
- shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#4837] / [Intel XE#5565]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_eudebug_online@pagefault-read.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#4837])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-lnl-1/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#1392] / [Intel XE#5575]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: [PASS][108] -> [SKIP][109] ([Intel XE#1392]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2322]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#288] / [Intel XE#5561]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#288]) +15 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#2360] / [Intel XE#5573])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-race:
- shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#4915]) +74 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_exec_system_allocator@many-large-execqueues-mmap-race.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#4943]) +23 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#4915]) +162 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#4943]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-bmg: NOTRUN -> [ABORT][118] ([Intel XE#5530])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_mmap@small-bar:
- shard-adlp: NOTRUN -> [SKIP][119] ([Intel XE#512])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_mmap@small-bar.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#3573]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#3573]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#979])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-i2c:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#5694])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@xe_pm@d3cold-i2c.html
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#5694])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-8/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2284])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3hot-basic:
- shard-bmg: [PASS][126] -> [ABORT][127] ([Intel XE#4760] / [Intel XE#5545])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-7/igt@xe_pm@d3hot-basic.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-8/igt@xe_pm@d3hot-basic.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#4733])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-5/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@display-pxp-fb:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#4733])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_pxp@display-pxp-fb.html
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#4733])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#944]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#944]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#944])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#4814])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-433/igt@xe_render_copy@render-stress-2-copies.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#3342])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-463/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#4273])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-dg2-set2: [INCOMPLETE][137] -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-dg2-432/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [DMESG-FAIL][139] ([Intel XE#4543]) -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-bmg: [FAIL][141] ([Intel XE#5376]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][143] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][145] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][147] ([Intel XE#2291]) -> [PASS][148] +1 other test pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][149] ([Intel XE#4633]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][151] ([Intel XE#5299]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][153] ([Intel XE#4302]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [SKIP][155] ([Intel XE#2316]) -> [PASS][156] +5 other tests pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@basic-plain-flip@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][157] ([Intel XE#4543]) -> [PASS][158] +6 other tests pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-2/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-3/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [DMESG-WARN][159] ([Intel XE#5208]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-1/igt@kms_flip@flip-vs-rmfb.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [INCOMPLETE][161] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][162] +1 other test pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][163] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [PASS][164] +1 other test pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-4/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [SKIP][165] ([Intel XE#4596]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-none:
- shard-adlp: [DMESG-WARN][167] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][168] +4 other tests pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-4/igt@kms_plane_multiple@tiling-none.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@kms_plane_multiple@tiling-none.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1392]) -> [PASS][170] +4 other tests pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][171] ([Intel XE#4819]) -> [PASS][172] +1 other test pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-dg2-434/igt@xe_pmu@gt-frequency.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-dg2-466/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: [ABORT][173] -> [SKIP][174] ([Intel XE#373])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-lnl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][175] ([Intel XE#5354]) -> [SKIP][176] ([Intel XE#2291])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][177] ([Intel XE#4543]) -> [DMESG-WARN][178] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][179] ([Intel XE#2311]) -> [SKIP][180] ([Intel XE#2312]) +13 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][181] ([Intel XE#2312]) -> [SKIP][182] ([Intel XE#2311]) +8 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][183] ([Intel XE#2312]) -> [SKIP][184] ([Intel XE#5390]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][185] ([Intel XE#5390]) -> [SKIP][186] ([Intel XE#2312]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][187] ([Intel XE#2312]) -> [SKIP][188] ([Intel XE#2313]) +9 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][189] ([Intel XE#2313]) -> [SKIP][190] ([Intel XE#2312]) +7 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][191] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][192] ([Intel XE#3544])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_module_load@load:
- shard-adlp: ([DMESG-WARN][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [SKIP][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173] / [Intel XE#5612]) -> ([PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [SKIP][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244]) ([Intel XE#378] / [Intel XE#5612])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-1/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-3/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-3/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-9/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-9/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-4/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-4/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-4/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-6/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-9/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-3/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-3/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-8/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-3/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-6/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-1/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-1/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-1/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-8/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-8/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-2/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-2/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-6/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-8/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-2/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7/shard-adlp-2/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-8/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-1/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-8/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-8/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-6/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-6/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-1/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-1/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-1/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-9/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-6/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-2/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-2/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-3/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-3/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-3/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-6/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-2/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-2/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-3/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/shard-adlp-4/igt@xe_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5573
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5617]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5617
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7 -> xe-pw-152715v1
IGT_8489: 4972020ea0f3d0ac8a0d7dd4f5419119b1b30995 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3520-1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7: 1b96c6f660be3e8b1398037f3dff9df6f0cdb7b7
xe-pw-152715v1: 152715v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152715v1/index.html
[-- Attachment #2: Type: text/html, Size: 73572 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/xe: Take preemption into account when resubmitting jobs
2025-08-09 4:34 [PATCH] drm/xe: Take preemption into account when resubmitting jobs Matthew Brost
` (2 preceding siblings ...)
2025-08-09 6:49 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-08-11 16:21 ` Summers, Stuart
2025-08-11 18:36 ` Matthew Brost
2025-08-12 18:54 ` Lis, Tomasz
4 siblings, 1 reply; 9+ messages in thread
From: Summers, Stuart @ 2025-08-11 16:21 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Brost, Matthew
Cc: Lis, Tomasz, Wajdeczko, Michal
On Fri, 2025-08-08 at 21:34 -0700, Matthew Brost wrote:
> Take preemption into account when resubmitting jobs, and adjust the
> new
> LRC head pointer accordingly to skip over previously executed parts
> of
> the job. To support this, save the head pointer of each job when it
> is
> emitted.
>
> This code can either be leveraged or reused for VF recovery.
>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_submit.c | 23 +++++++++++++++++++++--
> drivers/gpu/drm/xe/xe_ring_ops.c | 23 +++++++++++++++++++----
> drivers/gpu/drm/xe/xe_sched_job_types.h | 2 ++
> 3 files changed, 42 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 1185b23b1384..3ba707bbb74d 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -1954,16 +1954,35 @@ void xe_guc_submit_pause(struct xe_guc *guc)
> xe_sched_submission_stop_async(&q->guc->sched);
> }
>
> +static int guc_lrc_offset(struct xe_lrc *lrc, u32 job_head)
> +{
> + if (xe_lrc_ring_head(lrc) == job_head)
> + return 0;
> +
> + if (job_head < xe_lrc_ring_head(lrc))
> + return xe_lrc_ring_head(lrc) - job_head;
> +
> + return lrc->ring.size - job_head + xe_lrc_ring_head(lrc);
> +}
> +
> static void guc_exec_queue_start(struct xe_exec_queue *q)
> {
> struct xe_gpu_scheduler *sched = &q->guc->sched;
>
> if (!exec_queue_killed_or_banned_or_wedged(q)) {
> + struct xe_sched_job *job;
> int i;
>
> + job = xe_sched_first_pending_job(&q->guc->sched);
Can we reuse the sched variable at the top of this function for the
argument here?
Also, I'm still going through, but how do we know the first pending job
corresponds to the context we are updating here?
And why only update the first in the list? Should we make the same
calculation against all of the pending jobs?
Thanks,
Stuart
> +
> trace_xe_exec_queue_resubmit(q);
> - for (i = 0; i < q->width; ++i)
> - xe_lrc_set_ring_head(q->lrc[i], q->lrc[i]-
> >ring.tail);
> + for (i = 0; i < q->width; ++i) {
> + int offset = !job ? 0 :
> + guc_lrc_offset(q->lrc[i], job-
> >ptrs[i].head);
> +
> + xe_lrc_set_ring_head(q->lrc[i], (q->lrc[i]-
> >ring.tail +
> + offset) % q->lrc[i]-
> >ring.size);
> + }
> xe_sched_resubmit_jobs(sched);
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c
> b/drivers/gpu/drm/xe/xe_ring_ops.c
> index 5f15360d14bf..4dad28f0614d 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> @@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct xe_lrc
> *lrc, u32 *dw, int i)
>
> /* for engines that don't require any special HW handling (no EUs,
> no aux inval, etc) */
> static void __emit_job_gen12_simple(struct xe_sched_job *job, struct
> xe_lrc *lrc,
> - u64 batch_addr, u32 seqno)
> + u64 batch_addr, u32 *head, u32
> seqno)
> {
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
> u32 ppgtt_flag = get_ppgtt_flag(job);
> struct xe_gt *gt = job->q->gt;
>
> + *head = lrc->ring.tail;
> +
> i = emit_copy_timestamp(lrc, dw, i);
>
> if (job->ring_ops_flush_tlb) {
> @@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
> }
>
> static void __emit_job_gen12_video(struct xe_sched_job *job, struct
> xe_lrc *lrc,
> - u64 batch_addr, u32 seqno)
> + u64 batch_addr, u32 *head, u32
> seqno)
> {
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
> u32 ppgtt_flag = get_ppgtt_flag(job);
> @@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct
> xe_sched_job *job, struct xe_lrc *lrc,
> struct xe_device *xe = gt_to_xe(gt);
> bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
>
> + *head = lrc->ring.tail;
> +
> i = emit_copy_timestamp(lrc, dw, i);
>
> dw[i++] = preparser_disable(true);
> @@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct
> xe_sched_job *job, struct xe_lrc *lrc,
>
> static void __emit_job_gen12_render_compute(struct xe_sched_job
> *job,
> struct xe_lrc *lrc,
> - u64 batch_addr, u32
> seqno)
> + u64 batch_addr, u32
> *head,
> + u32 seqno)
> {
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
> u32 ppgtt_flag = get_ppgtt_flag(job);
> @@ -355,6 +360,8 @@ static void
> __emit_job_gen12_render_compute(struct xe_sched_job *job,
> bool lacks_render = !(gt->info.engine_mask &
> XE_HW_ENGINE_RCS_MASK);
> u32 mask_flags = 0;
>
> + *head = lrc->ring.tail;
> +
> i = emit_copy_timestamp(lrc, dw, i);
>
> dw[i++] = preparser_disable(true);
> @@ -396,11 +403,14 @@ static void
> __emit_job_gen12_render_compute(struct xe_sched_job *job,
> }
>
> static void emit_migration_job_gen12(struct xe_sched_job *job,
> - struct xe_lrc *lrc, u32 seqno)
> + struct xe_lrc *lrc, u32 *head,
> + u32 seqno)
> {
> u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
>
> + *head = lrc->ring.tail;
> +
> i = emit_copy_timestamp(lrc, dw, i);
>
> i = emit_store_imm_ggtt(saddr, seqno, dw, i);
> @@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct
> xe_sched_job *job)
>
> __emit_job_gen12_simple(job, job->q->lrc[0],
> job->ptrs[0].batch_addr,
> + &job->ptrs[0].head,
> xe_sched_job_lrc_seqno(job));
> }
>
> @@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct
> xe_sched_job *job)
>
> if (xe_sched_job_is_migration(job->q)) {
> emit_migration_job_gen12(job, job->q->lrc[0],
> + &job->ptrs[0].head,
>
> xe_sched_job_lrc_seqno(job));
> return;
> }
> @@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct
> xe_sched_job *job)
> for (i = 0; i < job->q->width; ++i)
> __emit_job_gen12_simple(job, job->q->lrc[i],
> job->ptrs[i].batch_addr,
> + &job->ptrs[i].head,
> xe_sched_job_lrc_seqno(job));
> }
>
> @@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct
> xe_sched_job *job)
> for (i = 0; i < job->q->width; ++i)
> __emit_job_gen12_video(job, job->q->lrc[i],
> job->ptrs[i].batch_addr,
> + &job->ptrs[i].head,
> xe_sched_job_lrc_seqno(job));
> }
>
> @@ -471,6 +485,7 @@ static void emit_job_gen12_render_compute(struct
> xe_sched_job *job)
> for (i = 0; i < job->q->width; ++i)
> __emit_job_gen12_render_compute(job, job->q->lrc[i],
> job-
> >ptrs[i].batch_addr,
> + &job->ptrs[i].head,
> xe_sched_job_lrc_seqn
> o(job));
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h
> b/drivers/gpu/drm/xe/xe_sched_job_types.h
> index dbf260dded8d..359f93b0cdca 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job_types.h
> +++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
> @@ -24,6 +24,8 @@ struct xe_job_ptrs {
> struct dma_fence_chain *chain_fence;
> /** @batch_addr: Batch buffer address. */
> u64 batch_addr;
> + /** @head: The head pointer of the LRC when the job was
> submitted */
> + u32 head;
> };
>
> /**
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/xe: Take preemption into account when resubmitting jobs
2025-08-11 16:21 ` [PATCH] " Summers, Stuart
@ 2025-08-11 18:36 ` Matthew Brost
2025-08-11 19:29 ` Summers, Stuart
0 siblings, 1 reply; 9+ messages in thread
From: Matthew Brost @ 2025-08-11 18:36 UTC (permalink / raw)
To: Summers, Stuart
Cc: intel-xe@lists.freedesktop.org, Lis, Tomasz, Wajdeczko, Michal
On Mon, Aug 11, 2025 at 10:21:46AM -0600, Summers, Stuart wrote:
> On Fri, 2025-08-08 at 21:34 -0700, Matthew Brost wrote:
> > Take preemption into account when resubmitting jobs, and adjust the
> > new
> > LRC head pointer accordingly to skip over previously executed parts
> > of
> > the job. To support this, save the head pointer of each job when it
> > is
> > emitted.
> >
> > This code can either be leveraged or reused for VF recovery.
> >
> > Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_guc_submit.c | 23 +++++++++++++++++++++--
> > drivers/gpu/drm/xe/xe_ring_ops.c | 23 +++++++++++++++++++----
> > drivers/gpu/drm/xe/xe_sched_job_types.h | 2 ++
> > 3 files changed, 42 insertions(+), 6 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> > b/drivers/gpu/drm/xe/xe_guc_submit.c
> > index 1185b23b1384..3ba707bbb74d 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> > @@ -1954,16 +1954,35 @@ void xe_guc_submit_pause(struct xe_guc *guc)
> > xe_sched_submission_stop_async(&q->guc->sched);
> > }
> >
> > +static int guc_lrc_offset(struct xe_lrc *lrc, u32 job_head)
> > +{
> > + if (xe_lrc_ring_head(lrc) == job_head)
> > + return 0;
> > +
> > + if (job_head < xe_lrc_ring_head(lrc))
> > + return xe_lrc_ring_head(lrc) - job_head;
> > +
> > + return lrc->ring.size - job_head + xe_lrc_ring_head(lrc);
> > +}
> > +
> > static void guc_exec_queue_start(struct xe_exec_queue *q)
> > {
> > struct xe_gpu_scheduler *sched = &q->guc->sched;
> >
> > if (!exec_queue_killed_or_banned_or_wedged(q)) {
> > + struct xe_sched_job *job;
> > int i;
> >
> > + job = xe_sched_first_pending_job(&q->guc->sched);
>
> Can we reuse the sched variable at the top of this function for the
> argument here?
>
Yes.
> Also, I'm still going through, but how do we know the first pending job
> corresponds to the context we are updating here?
>
The pending job list is per context (queue).
> And why only update the first in the list? Should we make the same
> calculation against all of the pending jobs?
>
Jobs are executed serially within a context (queue, LRC, ring). We just
need to look at the first pending job and skip over any instructions
which have already been executed. BTW, this idea is meant for VF pause /
unpause but job submitted this patch to convay the idea in the existing
GT reset path as it applies here too + provide hooks for that feature.
Matt
> Thanks,
> Stuart
>
> > +
> > trace_xe_exec_queue_resubmit(q);
> > - for (i = 0; i < q->width; ++i)
> > - xe_lrc_set_ring_head(q->lrc[i], q->lrc[i]-
> > >ring.tail);
> > + for (i = 0; i < q->width; ++i) {
> > + int offset = !job ? 0 :
> > + guc_lrc_offset(q->lrc[i], job-
> > >ptrs[i].head);
> > +
> > + xe_lrc_set_ring_head(q->lrc[i], (q->lrc[i]-
> > >ring.tail +
> > + offset) % q->lrc[i]-
> > >ring.size);
> > + }
> > xe_sched_resubmit_jobs(sched);
> > }
> >
> > diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c
> > b/drivers/gpu/drm/xe/xe_ring_ops.c
> > index 5f15360d14bf..4dad28f0614d 100644
> > --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> > +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> > @@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct xe_lrc
> > *lrc, u32 *dw, int i)
> >
> > /* for engines that don't require any special HW handling (no EUs,
> > no aux inval, etc) */
> > static void __emit_job_gen12_simple(struct xe_sched_job *job, struct
> > xe_lrc *lrc,
> > - u64 batch_addr, u32 seqno)
> > + u64 batch_addr, u32 *head, u32
> > seqno)
> > {
> > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > u32 ppgtt_flag = get_ppgtt_flag(job);
> > struct xe_gt *gt = job->q->gt;
> >
> > + *head = lrc->ring.tail;
> > +
> > i = emit_copy_timestamp(lrc, dw, i);
> >
> > if (job->ring_ops_flush_tlb) {
> > @@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
> > }
> >
> > static void __emit_job_gen12_video(struct xe_sched_job *job, struct
> > xe_lrc *lrc,
> > - u64 batch_addr, u32 seqno)
> > + u64 batch_addr, u32 *head, u32
> > seqno)
> > {
> > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > u32 ppgtt_flag = get_ppgtt_flag(job);
> > @@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct
> > xe_sched_job *job, struct xe_lrc *lrc,
> > struct xe_device *xe = gt_to_xe(gt);
> > bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
> >
> > + *head = lrc->ring.tail;
> > +
> > i = emit_copy_timestamp(lrc, dw, i);
> >
> > dw[i++] = preparser_disable(true);
> > @@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct
> > xe_sched_job *job, struct xe_lrc *lrc,
> >
> > static void __emit_job_gen12_render_compute(struct xe_sched_job
> > *job,
> > struct xe_lrc *lrc,
> > - u64 batch_addr, u32
> > seqno)
> > + u64 batch_addr, u32
> > *head,
> > + u32 seqno)
> > {
> > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > u32 ppgtt_flag = get_ppgtt_flag(job);
> > @@ -355,6 +360,8 @@ static void
> > __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > bool lacks_render = !(gt->info.engine_mask &
> > XE_HW_ENGINE_RCS_MASK);
> > u32 mask_flags = 0;
> >
> > + *head = lrc->ring.tail;
> > +
> > i = emit_copy_timestamp(lrc, dw, i);
> >
> > dw[i++] = preparser_disable(true);
> > @@ -396,11 +403,14 @@ static void
> > __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > }
> >
> > static void emit_migration_job_gen12(struct xe_sched_job *job,
> > - struct xe_lrc *lrc, u32 seqno)
> > + struct xe_lrc *lrc, u32 *head,
> > + u32 seqno)
> > {
> > u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
> > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> >
> > + *head = lrc->ring.tail;
> > +
> > i = emit_copy_timestamp(lrc, dw, i);
> >
> > i = emit_store_imm_ggtt(saddr, seqno, dw, i);
> > @@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct
> > xe_sched_job *job)
> >
> > __emit_job_gen12_simple(job, job->q->lrc[0],
> > job->ptrs[0].batch_addr,
> > + &job->ptrs[0].head,
> > xe_sched_job_lrc_seqno(job));
> > }
> >
> > @@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct
> > xe_sched_job *job)
> >
> > if (xe_sched_job_is_migration(job->q)) {
> > emit_migration_job_gen12(job, job->q->lrc[0],
> > + &job->ptrs[0].head,
> >
> > xe_sched_job_lrc_seqno(job));
> > return;
> > }
> > @@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct
> > xe_sched_job *job)
> > for (i = 0; i < job->q->width; ++i)
> > __emit_job_gen12_simple(job, job->q->lrc[i],
> > job->ptrs[i].batch_addr,
> > + &job->ptrs[i].head,
> > xe_sched_job_lrc_seqno(job));
> > }
> >
> > @@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct
> > xe_sched_job *job)
> > for (i = 0; i < job->q->width; ++i)
> > __emit_job_gen12_video(job, job->q->lrc[i],
> > job->ptrs[i].batch_addr,
> > + &job->ptrs[i].head,
> > xe_sched_job_lrc_seqno(job));
> > }
> >
> > @@ -471,6 +485,7 @@ static void emit_job_gen12_render_compute(struct
> > xe_sched_job *job)
> > for (i = 0; i < job->q->width; ++i)
> > __emit_job_gen12_render_compute(job, job->q->lrc[i],
> > job-
> > >ptrs[i].batch_addr,
> > + &job->ptrs[i].head,
> > xe_sched_job_lrc_seqn
> > o(job));
> > }
> >
> > diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h
> > b/drivers/gpu/drm/xe/xe_sched_job_types.h
> > index dbf260dded8d..359f93b0cdca 100644
> > --- a/drivers/gpu/drm/xe/xe_sched_job_types.h
> > +++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
> > @@ -24,6 +24,8 @@ struct xe_job_ptrs {
> > struct dma_fence_chain *chain_fence;
> > /** @batch_addr: Batch buffer address. */
> > u64 batch_addr;
> > + /** @head: The head pointer of the LRC when the job was
> > submitted */
> > + u32 head;
> > };
> >
> > /**
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/xe: Take preemption into account when resubmitting jobs
2025-08-11 18:36 ` Matthew Brost
@ 2025-08-11 19:29 ` Summers, Stuart
0 siblings, 0 replies; 9+ messages in thread
From: Summers, Stuart @ 2025-08-11 19:29 UTC (permalink / raw)
To: Brost, Matthew
Cc: intel-xe@lists.freedesktop.org, Lis, Tomasz, Wajdeczko, Michal
On Mon, 2025-08-11 at 11:36 -0700, Matthew Brost wrote:
> On Mon, Aug 11, 2025 at 10:21:46AM -0600, Summers, Stuart wrote:
> > On Fri, 2025-08-08 at 21:34 -0700, Matthew Brost wrote:
> > > Take preemption into account when resubmitting jobs, and adjust
> > > the
> > > new
> > > LRC head pointer accordingly to skip over previously executed
> > > parts
> > > of
> > > the job. To support this, save the head pointer of each job when
> > > it
> > > is
> > > emitted.
> > >
> > > This code can either be leveraged or reused for VF recovery.
> > >
> > > Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> > > ---
> > > drivers/gpu/drm/xe/xe_guc_submit.c | 23
> > > +++++++++++++++++++++--
> > > drivers/gpu/drm/xe/xe_ring_ops.c | 23
> > > +++++++++++++++++++----
> > > drivers/gpu/drm/xe/xe_sched_job_types.h | 2 ++
> > > 3 files changed, 42 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> > > b/drivers/gpu/drm/xe/xe_guc_submit.c
> > > index 1185b23b1384..3ba707bbb74d 100644
> > > --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> > > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> > > @@ -1954,16 +1954,35 @@ void xe_guc_submit_pause(struct xe_guc
> > > *guc)
> > > xe_sched_submission_stop_async(&q->guc->sched);
> > > }
> > >
> > > +static int guc_lrc_offset(struct xe_lrc *lrc, u32 job_head)
> > > +{
> > > + if (xe_lrc_ring_head(lrc) == job_head)
> > > + return 0;
> > > +
> > > + if (job_head < xe_lrc_ring_head(lrc))
> > > + return xe_lrc_ring_head(lrc) - job_head;
> > > +
> > > + return lrc->ring.size - job_head + xe_lrc_ring_head(lrc);
> > > +}
> > > +
> > > static void guc_exec_queue_start(struct xe_exec_queue *q)
> > > {
> > > struct xe_gpu_scheduler *sched = &q->guc->sched;
> > >
> > > if (!exec_queue_killed_or_banned_or_wedged(q)) {
> > > + struct xe_sched_job *job;
> > > int i;
> > >
> > > + job = xe_sched_first_pending_job(&q->guc->sched);
> >
> > Can we reuse the sched variable at the top of this function for the
> > argument here?
> >
>
> Yes.
>
> > Also, I'm still going through, but how do we know the first pending
> > job
> > corresponds to the context we are updating here?
> >
>
> The pending job list is per context (queue).
Ah sorry I was misreading this... yeah makes sense.
>
> > And why only update the first in the list? Should we make the same
> > calculation against all of the pending jobs?
> >
>
> Jobs are executed serially within a context (queue, LRC, ring). We
> just
> need to look at the first pending job and skip over any instructions
> which have already been executed. BTW, this idea is meant for VF
> pause /
> unpause but job submitted this patch to convay the idea in the
> existing
> GT reset path as it applies here too + provide hooks for that
> feature.
I'll let Michal/Tomasz respond on the VF pause/unpause case. But yeah
what you said makes sense to me. I have a couple more questions, but
let me respond back on the original patch so I'm not confusing the
review too much going back and forth..
Thanks,
Stuart
>
> Matt
>
> > Thanks,
> > Stuart
> >
> > > +
> > > trace_xe_exec_queue_resubmit(q);
> > > - for (i = 0; i < q->width; ++i)
> > > - xe_lrc_set_ring_head(q->lrc[i], q-
> > > >lrc[i]-
> > > > ring.tail);
> > > + for (i = 0; i < q->width; ++i) {
> > > + int offset = !job ? 0 :
> > > + guc_lrc_offset(q->lrc[i], job-
> > > > ptrs[i].head);
> > > +
> > > + xe_lrc_set_ring_head(q->lrc[i], (q-
> > > >lrc[i]-
> > > > ring.tail +
> > > + offset) % q->lrc[i]-
> > > > ring.size);
> > > + }
> > > xe_sched_resubmit_jobs(sched);
> > > }
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c
> > > b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > index 5f15360d14bf..4dad28f0614d 100644
> > > --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> > > +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> > > @@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct
> > > xe_lrc
> > > *lrc, u32 *dw, int i)
> > >
> > > /* for engines that don't require any special HW handling (no
> > > EUs,
> > > no aux inval, etc) */
> > > static void __emit_job_gen12_simple(struct xe_sched_job *job,
> > > struct
> > > xe_lrc *lrc,
> > > - u64 batch_addr, u32 seqno)
> > > + u64 batch_addr, u32 *head,
> > > u32
> > > seqno)
> > > {
> > > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > > u32 ppgtt_flag = get_ppgtt_flag(job);
> > > struct xe_gt *gt = job->q->gt;
> > >
> > > + *head = lrc->ring.tail;
> > > +
> > > i = emit_copy_timestamp(lrc, dw, i);
> > >
> > > if (job->ring_ops_flush_tlb) {
> > > @@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
> > > }
> > >
> > > static void __emit_job_gen12_video(struct xe_sched_job *job,
> > > struct
> > > xe_lrc *lrc,
> > > - u64 batch_addr, u32 seqno)
> > > + u64 batch_addr, u32 *head, u32
> > > seqno)
> > > {
> > > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > > u32 ppgtt_flag = get_ppgtt_flag(job);
> > > @@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct
> > > xe_sched_job *job, struct xe_lrc *lrc,
> > > struct xe_device *xe = gt_to_xe(gt);
> > > bool decode = job->q->class ==
> > > XE_ENGINE_CLASS_VIDEO_DECODE;
> > >
> > > + *head = lrc->ring.tail;
> > > +
> > > i = emit_copy_timestamp(lrc, dw, i);
> > >
> > > dw[i++] = preparser_disable(true);
> > > @@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct
> > > xe_sched_job *job, struct xe_lrc *lrc,
> > >
> > > static void __emit_job_gen12_render_compute(struct xe_sched_job
> > > *job,
> > > struct xe_lrc *lrc,
> > > - u64 batch_addr, u32
> > > seqno)
> > > + u64 batch_addr, u32
> > > *head,
> > > + u32 seqno)
> > > {
> > > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > > u32 ppgtt_flag = get_ppgtt_flag(job);
> > > @@ -355,6 +360,8 @@ static void
> > > __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > > bool lacks_render = !(gt->info.engine_mask &
> > > XE_HW_ENGINE_RCS_MASK);
> > > u32 mask_flags = 0;
> > >
> > > + *head = lrc->ring.tail;
> > > +
> > > i = emit_copy_timestamp(lrc, dw, i);
> > >
> > > dw[i++] = preparser_disable(true);
> > > @@ -396,11 +403,14 @@ static void
> > > __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > > }
> > >
> > > static void emit_migration_job_gen12(struct xe_sched_job *job,
> > > - struct xe_lrc *lrc, u32
> > > seqno)
> > > + struct xe_lrc *lrc, u32
> > > *head,
> > > + u32 seqno)
> > > {
> > > u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
> > > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > >
> > > + *head = lrc->ring.tail;
> > > +
> > > i = emit_copy_timestamp(lrc, dw, i);
> > >
> > > i = emit_store_imm_ggtt(saddr, seqno, dw, i);
> > > @@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct
> > > xe_sched_job *job)
> > >
> > > __emit_job_gen12_simple(job, job->q->lrc[0],
> > > job->ptrs[0].batch_addr,
> > > + &job->ptrs[0].head,
> > > xe_sched_job_lrc_seqno(job));
> > > }
> > >
> > > @@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct
> > > xe_sched_job *job)
> > >
> > > if (xe_sched_job_is_migration(job->q)) {
> > > emit_migration_job_gen12(job, job->q->lrc[0],
> > > + &job->ptrs[0].head,
> > >
> > > xe_sched_job_lrc_seqno(job));
> > > return;
> > > }
> > > @@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct
> > > xe_sched_job *job)
> > > for (i = 0; i < job->q->width; ++i)
> > > __emit_job_gen12_simple(job, job->q->lrc[i],
> > > job->ptrs[i].batch_addr,
> > > + &job->ptrs[i].head,
> > > xe_sched_job_lrc_seqno(jo
> > > b));
> > > }
> > >
> > > @@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct
> > > xe_sched_job *job)
> > > for (i = 0; i < job->q->width; ++i)
> > > __emit_job_gen12_video(job, job->q->lrc[i],
> > > job->ptrs[i].batch_addr,
> > > + &job->ptrs[i].head,
> > >
> > > xe_sched_job_lrc_seqno(job));
> > > }
> > >
> > > @@ -471,6 +485,7 @@ static void
> > > emit_job_gen12_render_compute(struct
> > > xe_sched_job *job)
> > > for (i = 0; i < job->q->width; ++i)
> > > __emit_job_gen12_render_compute(job, job->q-
> > > >lrc[i],
> > > job-
> > > > ptrs[i].batch_addr,
> > > + &job-
> > > >ptrs[i].head,
> > > xe_sched_job_lrc_
> > > seqn
> > > o(job));
> > > }
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h
> > > b/drivers/gpu/drm/xe/xe_sched_job_types.h
> > > index dbf260dded8d..359f93b0cdca 100644
> > > --- a/drivers/gpu/drm/xe/xe_sched_job_types.h
> > > +++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
> > > @@ -24,6 +24,8 @@ struct xe_job_ptrs {
> > > struct dma_fence_chain *chain_fence;
> > > /** @batch_addr: Batch buffer address. */
> > > u64 batch_addr;
> > > + /** @head: The head pointer of the LRC when the job was
> > > submitted */
> > > + u32 head;
> > > };
> > >
> > > /**
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/xe: Take preemption into account when resubmitting jobs
2025-08-09 4:34 [PATCH] drm/xe: Take preemption into account when resubmitting jobs Matthew Brost
` (3 preceding siblings ...)
2025-08-11 16:21 ` [PATCH] " Summers, Stuart
@ 2025-08-12 18:54 ` Lis, Tomasz
2025-08-15 1:33 ` Matthew Brost
4 siblings, 1 reply; 9+ messages in thread
From: Lis, Tomasz @ 2025-08-12 18:54 UTC (permalink / raw)
To: Matthew Brost, intel-xe; +Cc: michal.wajdeczko
[-- Attachment #1: Type: text/plain, Size: 7223 bytes --]
On 8/9/2025 6:34 AM, Matthew Brost wrote:
> Take preemption into account when resubmitting jobs, and adjust the new
> LRC head pointer accordingly to skip over previously executed parts of
> the job. To support this, save the head pointer of each job when it is
> emitted.
>
> This code can either be leveraged or reused for VF recovery.
Right. VF migration recovery.
This will help in amending the jobs ring fixup code with ring position
control.
>
> Signed-off-by: Matthew Brost<matthew.brost@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_submit.c | 23 +++++++++++++++++++++--
> drivers/gpu/drm/xe/xe_ring_ops.c | 23 +++++++++++++++++++----
> drivers/gpu/drm/xe/xe_sched_job_types.h | 2 ++
> 3 files changed, 42 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 1185b23b1384..3ba707bbb74d 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -1954,16 +1954,35 @@ void xe_guc_submit_pause(struct xe_guc *guc)
> xe_sched_submission_stop_async(&q->guc->sched);
> }
>
> +static int guc_lrc_offset(struct xe_lrc *lrc, u32 job_head)
> +{
> + if (xe_lrc_ring_head(lrc) == job_head)
> + return 0;
not sure why we've singled out this condition rather than putting
(job_head <= xe_lrc_ring_head(lrc))
below, but that's just a matter of individual style, so can be both ways.
> +
> + if (job_head < xe_lrc_ring_head(lrc))
> + return xe_lrc_ring_head(lrc) - job_head;
> +
> + return lrc->ring.size - job_head + xe_lrc_ring_head(lrc);
I don't think it's a good idea to read the head value from LRC multiple
times,
this is vram access. Also if we're assuming the value in LRC is kept
unchanged,
maybe a comment would make sense, to avoid incorrect reuse?
But instead, since it is used 4 times, a local var is fully justified.
-Tomasz
> +}
> +
> static void guc_exec_queue_start(struct xe_exec_queue *q)
> {
> struct xe_gpu_scheduler *sched = &q->guc->sched;
>
> if (!exec_queue_killed_or_banned_or_wedged(q)) {
> + struct xe_sched_job *job;
> int i;
>
> + job = xe_sched_first_pending_job(&q->guc->sched);
> +
> trace_xe_exec_queue_resubmit(q);
> - for (i = 0; i < q->width; ++i)
> - xe_lrc_set_ring_head(q->lrc[i], q->lrc[i]->ring.tail);
> + for (i = 0; i < q->width; ++i) {
> + int offset = !job ? 0 :
> + guc_lrc_offset(q->lrc[i], job->ptrs[i].head);
> +
> + xe_lrc_set_ring_head(q->lrc[i], (q->lrc[i]->ring.tail +
> + offset) % q->lrc[i]->ring.size);
> + }
> xe_sched_resubmit_jobs(sched);
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> index 5f15360d14bf..4dad28f0614d 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> @@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct xe_lrc *lrc, u32 *dw, int i)
>
> /* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
> static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
> - u64 batch_addr, u32 seqno)
> + u64 batch_addr, u32 *head, u32 seqno)
> {
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
> u32 ppgtt_flag = get_ppgtt_flag(job);
> struct xe_gt *gt = job->q->gt;
>
> + *head = lrc->ring.tail;
> +
> i = emit_copy_timestamp(lrc, dw, i);
>
> if (job->ring_ops_flush_tlb) {
> @@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
> }
>
> static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
> - u64 batch_addr, u32 seqno)
> + u64 batch_addr, u32 *head, u32 seqno)
> {
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
> u32 ppgtt_flag = get_ppgtt_flag(job);
> @@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
> struct xe_device *xe = gt_to_xe(gt);
> bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
>
> + *head = lrc->ring.tail;
> +
> i = emit_copy_timestamp(lrc, dw, i);
>
> dw[i++] = preparser_disable(true);
> @@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
>
> static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> struct xe_lrc *lrc,
> - u64 batch_addr, u32 seqno)
> + u64 batch_addr, u32 *head,
> + u32 seqno)
> {
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
> u32 ppgtt_flag = get_ppgtt_flag(job);
> @@ -355,6 +360,8 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
> u32 mask_flags = 0;
>
> + *head = lrc->ring.tail;
> +
> i = emit_copy_timestamp(lrc, dw, i);
>
> dw[i++] = preparser_disable(true);
> @@ -396,11 +403,14 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> }
>
> static void emit_migration_job_gen12(struct xe_sched_job *job,
> - struct xe_lrc *lrc, u32 seqno)
> + struct xe_lrc *lrc, u32 *head,
> + u32 seqno)
> {
> u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
> u32 dw[MAX_JOB_SIZE_DW], i = 0;
>
> + *head = lrc->ring.tail;
> +
> i = emit_copy_timestamp(lrc, dw, i);
>
> i = emit_store_imm_ggtt(saddr, seqno, dw, i);
> @@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct xe_sched_job *job)
>
> __emit_job_gen12_simple(job, job->q->lrc[0],
> job->ptrs[0].batch_addr,
> + &job->ptrs[0].head,
> xe_sched_job_lrc_seqno(job));
> }
>
> @@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
>
> if (xe_sched_job_is_migration(job->q)) {
> emit_migration_job_gen12(job, job->q->lrc[0],
> + &job->ptrs[0].head,
> xe_sched_job_lrc_seqno(job));
> return;
> }
> @@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
> for (i = 0; i < job->q->width; ++i)
> __emit_job_gen12_simple(job, job->q->lrc[i],
> job->ptrs[i].batch_addr,
> + &job->ptrs[i].head,
> xe_sched_job_lrc_seqno(job));
> }
>
> @@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct xe_sched_job *job)
> for (i = 0; i < job->q->width; ++i)
> __emit_job_gen12_video(job, job->q->lrc[i],
> job->ptrs[i].batch_addr,
> + &job->ptrs[i].head,
> xe_sched_job_lrc_seqno(job));
> }
>
> @@ -471,6 +485,7 @@ static void emit_job_gen12_render_compute(struct xe_sched_job *job)
> for (i = 0; i < job->q->width; ++i)
> __emit_job_gen12_render_compute(job, job->q->lrc[i],
> job->ptrs[i].batch_addr,
> + &job->ptrs[i].head,
> xe_sched_job_lrc_seqno(job));
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
> index dbf260dded8d..359f93b0cdca 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job_types.h
> +++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
> @@ -24,6 +24,8 @@ struct xe_job_ptrs {
> struct dma_fence_chain *chain_fence;
> /** @batch_addr: Batch buffer address. */
> u64 batch_addr;
> + /** @head: The head pointer of the LRC when the job was submitted */
> + u32 head;
> };
>
> /**
[-- Attachment #2: Type: text/html, Size: 8062 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/xe: Take preemption into account when resubmitting jobs
2025-08-12 18:54 ` Lis, Tomasz
@ 2025-08-15 1:33 ` Matthew Brost
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Brost @ 2025-08-15 1:33 UTC (permalink / raw)
To: Lis, Tomasz; +Cc: intel-xe, michal.wajdeczko
On Tue, Aug 12, 2025 at 08:54:23PM +0200, Lis, Tomasz wrote:
>
> On 8/9/2025 6:34 AM, Matthew Brost wrote:
> > Take preemption into account when resubmitting jobs, and adjust the new
> > LRC head pointer accordingly to skip over previously executed parts of
> > the job. To support this, save the head pointer of each job when it is
> > emitted.
> >
> > This code can either be leveraged or reused for VF recovery.
>
> Right. VF migration recovery.
>
> This will help in amending the jobs ring fixup code with ring position
> control.
>
> >
> > Signed-off-by: Matthew Brost<matthew.brost@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_guc_submit.c | 23 +++++++++++++++++++++--
> > drivers/gpu/drm/xe/xe_ring_ops.c | 23 +++++++++++++++++++----
> > drivers/gpu/drm/xe/xe_sched_job_types.h | 2 ++
> > 3 files changed, 42 insertions(+), 6 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> > index 1185b23b1384..3ba707bbb74d 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> > @@ -1954,16 +1954,35 @@ void xe_guc_submit_pause(struct xe_guc *guc)
> > xe_sched_submission_stop_async(&q->guc->sched);
> > }
> > +static int guc_lrc_offset(struct xe_lrc *lrc, u32 job_head)
> > +{
> > + if (xe_lrc_ring_head(lrc) == job_head)
> > + return 0;
>
> not sure why we've singled out this condition rather than putting (job_head
> <= xe_lrc_ring_head(lrc))
>
> below, but that's just a matter of individual style, so can be both ways.
>
> > +
> > + if (job_head < xe_lrc_ring_head(lrc))
> > + return xe_lrc_ring_head(lrc) - job_head;
> > +
> > + return lrc->ring.size - job_head + xe_lrc_ring_head(lrc);
>
> I don't think it's a good idea to read the head value from LRC multiple
> times,
>
> this is vram access. Also if we're assuming the value in LRC is kept
> unchanged,
>
> maybe a comment would make sense, to avoid incorrect reuse?
>
> But instead, since it is used 4 times, a local var is fully justified.
>
Yes, even though this is not a hot path, better to have local variable.
Matt
> -Tomasz
>
> > +}
> > +
> > static void guc_exec_queue_start(struct xe_exec_queue *q)
> > {
> > struct xe_gpu_scheduler *sched = &q->guc->sched;
> > if (!exec_queue_killed_or_banned_or_wedged(q)) {
> > + struct xe_sched_job *job;
> > int i;
> > + job = xe_sched_first_pending_job(&q->guc->sched);
> > +
> > trace_xe_exec_queue_resubmit(q);
> > - for (i = 0; i < q->width; ++i)
> > - xe_lrc_set_ring_head(q->lrc[i], q->lrc[i]->ring.tail);
> > + for (i = 0; i < q->width; ++i) {
> > + int offset = !job ? 0 :
> > + guc_lrc_offset(q->lrc[i], job->ptrs[i].head);
> > +
> > + xe_lrc_set_ring_head(q->lrc[i], (q->lrc[i]->ring.tail +
> > + offset) % q->lrc[i]->ring.size);
> > + }
> > xe_sched_resubmit_jobs(sched);
> > }
> > diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> > index 5f15360d14bf..4dad28f0614d 100644
> > --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> > +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> > @@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct xe_lrc *lrc, u32 *dw, int i)
> > /* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
> > static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
> > - u64 batch_addr, u32 seqno)
> > + u64 batch_addr, u32 *head, u32 seqno)
> > {
> > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > u32 ppgtt_flag = get_ppgtt_flag(job);
> > struct xe_gt *gt = job->q->gt;
> > + *head = lrc->ring.tail;
> > +
> > i = emit_copy_timestamp(lrc, dw, i);
> > if (job->ring_ops_flush_tlb) {
> > @@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
> > }
> > static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
> > - u64 batch_addr, u32 seqno)
> > + u64 batch_addr, u32 *head, u32 seqno)
> > {
> > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > u32 ppgtt_flag = get_ppgtt_flag(job);
> > @@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
> > struct xe_device *xe = gt_to_xe(gt);
> > bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
> > + *head = lrc->ring.tail;
> > +
> > i = emit_copy_timestamp(lrc, dw, i);
> > dw[i++] = preparser_disable(true);
> > @@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
> > static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > struct xe_lrc *lrc,
> > - u64 batch_addr, u32 seqno)
> > + u64 batch_addr, u32 *head,
> > + u32 seqno)
> > {
> > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > u32 ppgtt_flag = get_ppgtt_flag(job);
> > @@ -355,6 +360,8 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
> > u32 mask_flags = 0;
> > + *head = lrc->ring.tail;
> > +
> > i = emit_copy_timestamp(lrc, dw, i);
> > dw[i++] = preparser_disable(true);
> > @@ -396,11 +403,14 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
> > }
> > static void emit_migration_job_gen12(struct xe_sched_job *job,
> > - struct xe_lrc *lrc, u32 seqno)
> > + struct xe_lrc *lrc, u32 *head,
> > + u32 seqno)
> > {
> > u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
> > u32 dw[MAX_JOB_SIZE_DW], i = 0;
> > + *head = lrc->ring.tail;
> > +
> > i = emit_copy_timestamp(lrc, dw, i);
> > i = emit_store_imm_ggtt(saddr, seqno, dw, i);
> > @@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct xe_sched_job *job)
> > __emit_job_gen12_simple(job, job->q->lrc[0],
> > job->ptrs[0].batch_addr,
> > + &job->ptrs[0].head,
> > xe_sched_job_lrc_seqno(job));
> > }
> > @@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
> > if (xe_sched_job_is_migration(job->q)) {
> > emit_migration_job_gen12(job, job->q->lrc[0],
> > + &job->ptrs[0].head,
> > xe_sched_job_lrc_seqno(job));
> > return;
> > }
> > @@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
> > for (i = 0; i < job->q->width; ++i)
> > __emit_job_gen12_simple(job, job->q->lrc[i],
> > job->ptrs[i].batch_addr,
> > + &job->ptrs[i].head,
> > xe_sched_job_lrc_seqno(job));
> > }
> > @@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct xe_sched_job *job)
> > for (i = 0; i < job->q->width; ++i)
> > __emit_job_gen12_video(job, job->q->lrc[i],
> > job->ptrs[i].batch_addr,
> > + &job->ptrs[i].head,
> > xe_sched_job_lrc_seqno(job));
> > }
> > @@ -471,6 +485,7 @@ static void emit_job_gen12_render_compute(struct xe_sched_job *job)
> > for (i = 0; i < job->q->width; ++i)
> > __emit_job_gen12_render_compute(job, job->q->lrc[i],
> > job->ptrs[i].batch_addr,
> > + &job->ptrs[i].head,
> > xe_sched_job_lrc_seqno(job));
> > }
> > diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
> > index dbf260dded8d..359f93b0cdca 100644
> > --- a/drivers/gpu/drm/xe/xe_sched_job_types.h
> > +++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
> > @@ -24,6 +24,8 @@ struct xe_job_ptrs {
> > struct dma_fence_chain *chain_fence;
> > /** @batch_addr: Batch buffer address. */
> > u64 batch_addr;
> > + /** @head: The head pointer of the LRC when the job was submitted */
> > + u32 head;
> > };
> > /**
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-08-15 1:33 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-09 4:34 [PATCH] drm/xe: Take preemption into account when resubmitting jobs Matthew Brost
2025-08-09 4:41 ` ✓ CI.KUnit: success for " Patchwork
2025-08-09 5:43 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-09 6:49 ` ✓ Xe.CI.Full: " Patchwork
2025-08-11 16:21 ` [PATCH] " Summers, Stuart
2025-08-11 18:36 ` Matthew Brost
2025-08-11 19:29 ` Summers, Stuart
2025-08-12 18:54 ` Lis, Tomasz
2025-08-15 1:33 ` Matthew Brost
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).