Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context
@ 2026-03-03 20:13 Michal Wajdeczko
  2026-03-03 20:13 ` [PATCH 1/3] drm/xe: Add PR_CTR_CTRL/THRSH register definitions Michal Wajdeczko
                   ` (8 more replies)
  0 siblings, 9 replies; 15+ messages in thread
From: Michal Wajdeczko @ 2026-03-03 20:13 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko

There is a small risk that when fetching a NULL context image the
VF may get a tweaked context image prepared by another VF that was
previously running on the engine before the GuC scheduler switched
the VFs.

Michal Wajdeczko (3):
  drm/xe: Add PR_CTR_CTRL/THRSH register definitions
  drm/xe: Add MI_SEMAPHORE_WAIT command definition
  drm/xe/vf: Improve getting clean NULL context

 .../gpu/drm/xe/instructions/xe_mi_commands.h  | 13 +++++++
 drivers/gpu/drm/xe/regs/xe_engine_regs.h      |  8 ++++
 drivers/gpu/drm/xe/xe_gt.c                    |  9 +++--
 drivers/gpu/drm/xe/xe_ring_ops.c              | 37 +++++++++++++++++++
 drivers/gpu/drm/xe/xe_ring_ops_types.h        |  2 +-
 drivers/gpu/drm/xe/xe_sched_job_types.h       |  2 +
 6 files changed, 67 insertions(+), 4 deletions(-)

-- 
2.47.1


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

* [PATCH 1/3] drm/xe: Add PR_CTR_CTRL/THRSH register definitions
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
@ 2026-03-03 20:13 ` Michal Wajdeczko
  2026-03-23  8:51   ` Michał Winiarski
  2026-03-03 20:13 ` [PATCH 2/3] drm/xe: Add MI_SEMAPHORE_WAIT command definition Michal Wajdeczko
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 15+ messages in thread
From: Michal Wajdeczko @ 2026-03-03 20:13 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko

The Watchdog Counter Control and Watchdog Counter Threshold
registers are needed for watchdog programming. This watchdog
will generate the "Media Hang Notify" interrupt.

Bspec: 45999, 46000
Bspec: 60373, 60374
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
 drivers/gpu/drm/xe/regs/xe_engine_regs.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/gpu/drm/xe/regs/xe_engine_regs.h b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
index dc5a4fafa70c..1b4a7e9a703d 100644
--- a/drivers/gpu/drm/xe/regs/xe_engine_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
@@ -132,6 +132,14 @@
 #define RING_BBADDR(base)			XE_REG((base) + 0x140)
 #define RING_BBADDR_UDW(base)			XE_REG((base) + 0x168)
 
+#define PR_CTR_CTRL(base)			XE_REG((base) + 0x178)
+#define   CTR_COUNT_SELECT_FF			REG_BIT(31)
+#define   CTR_LOGIC_OP_MASK			REG_GENMASK(30, 0)
+#define     CTR_START				0
+#define     CTR_STOP				1
+#define   CTR_LOGIC_OP(OP)			REG_FIELD_PREP(CTR_LOGIC_OP_MASK, CTR_##OP)
+#define PR_CTR_THRSH(base)			XE_REG((base) + 0x17c)
+
 #define BCS_SWCTRL(base)			XE_REG((base) + 0x200, XE_REG_OPTION_MASKED)
 #define   BCS_SWCTRL_DISABLE_256B		REG_BIT(2)
 
-- 
2.47.1


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

* [PATCH 2/3] drm/xe: Add MI_SEMAPHORE_WAIT command definition
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
  2026-03-03 20:13 ` [PATCH 1/3] drm/xe: Add PR_CTR_CTRL/THRSH register definitions Michal Wajdeczko
@ 2026-03-03 20:13 ` Michal Wajdeczko
  2026-03-23  8:53   ` Michał Winiarski
  2026-03-03 20:13 ` [PATCH 3/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
                   ` (6 subsequent siblings)
  8 siblings, 1 reply; 15+ messages in thread
From: Michal Wajdeczko @ 2026-03-03 20:13 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko

This command supports memory based Semaphore WAIT. Memory based
semaphores will be used for synchronization between the Producer
and the Consumer contexts. Producer and Consumer Contexts could
be running on different engines or on the same engine inside GT.

Bspec: 45749, 60244
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
 drivers/gpu/drm/xe/instructions/xe_mi_commands.h | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/drivers/gpu/drm/xe/instructions/xe_mi_commands.h b/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
index c47b290e0e9f..29569eff1af3 100644
--- a/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
+++ b/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
@@ -34,6 +34,19 @@
 #define MI_FORCE_WAKEUP			__MI_INSTR(0x1D)
 #define MI_MATH(n)			(__MI_INSTR(0x1A) | XE_INSTR_NUM_DW((n) + 1))
 
+#define MI_SEMAPHORE_WAIT		(__MI_INSTR(0x1c) | XE_INSTR_NUM_DW(5))
+#define   MI_SEMW_GGTT			REG_BIT(22)
+#define   MI_SEMW_POLL			REG_BIT(15)
+#define   MI_SEMW_COMPARE_OP_MASK	REG_GENMASK(14, 12)
+#define     COMPARE_OP_SAD_GT_SDD	0
+#define     COMPARE_OP_SAD_GTE_SDD	1
+#define     COMPARE_OP_SAD_LT_SDD	2
+#define     COMPARE_OP_SAD_LTE_SDD	3
+#define     COMPARE_OP_SAD_EQ_SDD	4
+#define     COMPARE_OP_SAD_NEQ_SDD	5
+#define   MI_SEMW_COMPARE(OP)		REG_FIELD_PREP(MI_SEMW_COMPARE_OP_MASK, COMPARE_OP_##OP)
+#define   MI_SEMW_TOKEN(token)		REG_FIELD_PREP(REG_GENMASK(9, 2), (token))
+
 #define MI_STORE_DATA_IMM		__MI_INSTR(0x20)
 #define   MI_SDI_GGTT			REG_BIT(22)
 #define   MI_SDI_LEN_DW			GENMASK(9, 0)
-- 
2.47.1


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

* [PATCH 3/3] drm/xe/vf: Improve getting clean NULL context
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
  2026-03-03 20:13 ` [PATCH 1/3] drm/xe: Add PR_CTR_CTRL/THRSH register definitions Michal Wajdeczko
  2026-03-03 20:13 ` [PATCH 2/3] drm/xe: Add MI_SEMAPHORE_WAIT command definition Michal Wajdeczko
@ 2026-03-03 20:13 ` Michal Wajdeczko
  2026-03-23  9:01   ` Michał Winiarski
  2026-03-03 20:21 ` ✓ CI.KUnit: success for " Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 1 reply; 15+ messages in thread
From: Michal Wajdeczko @ 2026-03-03 20:13 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko

There is a small risk that when fetching a NULL context image the
VF may get a tweaked context image prepared by another VF that was
previously running on the engine before the GuC scheduler switched
the VFs.

To avoid that risk, without forcing GuC scheduler to trigger costly
engine reset on every VF switch, use a watchdog mechanism that when
configured with impossible condition, triggers an interrupt, which
GuC will handle by doing an engine reset. Also adjust job size to
account for additional dwords with watchdog setup.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
 drivers/gpu/drm/xe/xe_gt.c              |  9 ++++--
 drivers/gpu/drm/xe/xe_ring_ops.c        | 37 +++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_ring_ops_types.h  |  2 +-
 drivers/gpu/drm/xe/xe_sched_job_types.h |  2 ++
 4 files changed, 46 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index b455af1e6072..cf639729a22d 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -169,7 +169,7 @@ static void xe_gt_enable_comp_1wcoh(struct xe_gt *gt)
 static void gt_reset_worker(struct work_struct *w);
 
 static int emit_job_sync(struct xe_exec_queue *q, struct xe_bb *bb,
-			 long timeout_jiffies)
+			 long timeout_jiffies, bool force_reset)
 {
 	struct xe_sched_job *job;
 	struct dma_fence *fence;
@@ -179,6 +179,8 @@ static int emit_job_sync(struct xe_exec_queue *q, struct xe_bb *bb,
 	if (IS_ERR(job))
 		return PTR_ERR(job);
 
+	job->ring_ops_force_reset = force_reset;
+
 	xe_sched_job_arm(job);
 	fence = dma_fence_get(&job->drm.s_fence->finished);
 	xe_sched_job_push(job);
@@ -202,7 +204,7 @@ static int emit_nop_job(struct xe_gt *gt, struct xe_exec_queue *q)
 	if (IS_ERR(bb))
 		return PTR_ERR(bb);
 
-	ret = emit_job_sync(q, bb, HZ);
+	ret = emit_job_sync(q, bb, HZ, false);
 	xe_bb_free(bb, NULL);
 
 	return ret;
@@ -367,7 +369,8 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
 
 	bb->len = cs - bb->cs;
 
-	ret = emit_job_sync(q, bb, HZ);
+	/* only VFs need to trigger reset to get a clean NULL context */
+	ret = emit_job_sync(q, bb, HZ, IS_SRIOV_VF(gt_to_xe(gt)));
 
 	xe_bb_free(bb, NULL);
 
diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 53d420d72164..bce7d93ce3a3 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -256,6 +256,32 @@ static int emit_copy_timestamp(struct xe_device *xe, struct xe_lrc *lrc,
 	return i;
 }
 
+static int emit_fake_watchdog(struct xe_lrc *lrc, u32 *dw, int i)
+{
+	/*
+	 * Setup a watchdog with impossible condition to always trigger an
+	 * hardware interrupt that would force the GuC to reset the engine.
+	 */
+
+	dw[i++] = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(2) | MI_LRI_LRM_CS_MMIO;
+	dw[i++] = PR_CTR_THRSH(0).addr;
+	dw[i++] = 2; /* small threshold */
+	dw[i++] = PR_CTR_CTRL(0).addr;
+	dw[i++] = CTR_LOGIC_OP(START);
+
+	dw[i++] = MI_SEMAPHORE_WAIT | MI_SEMW_GGTT | MI_SEMW_POLL | MI_SEMW_COMPARE(SAD_EQ_SDD);
+	dw[i++] = 0xdead; /* this should never be seen */
+	dw[i++] = lower_32_bits(xe_lrc_ggtt_addr(lrc));
+	dw[i++] = upper_32_bits(xe_lrc_ggtt_addr(lrc));
+	dw[i++] = 0; /* unused token */
+
+	dw[i++] = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1) | MI_LRI_LRM_CS_MMIO;
+	dw[i++] = PR_CTR_CTRL(0).addr;
+	dw[i++] = CTR_LOGIC_OP(STOP);
+
+	return i;
+}
+
 /* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
 static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
 				    u64 batch_addr, u32 *head, u32 seqno)
@@ -266,6 +292,9 @@ static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc
 
 	*head = lrc->ring.tail;
 
+	if (job->ring_ops_force_reset)
+		i = emit_fake_watchdog(lrc, dw, i);
+
 	i = emit_copy_timestamp(gt_to_xe(gt), lrc, dw, i);
 
 	if (job->ring_ops_flush_tlb) {
@@ -324,6 +353,9 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
 
 	*head = lrc->ring.tail;
 
+	if (job->ring_ops_force_reset)
+		i = emit_fake_watchdog(lrc, dw, i);
+
 	i = emit_copy_timestamp(xe, lrc, dw, i);
 
 	dw[i++] = preparser_disable(true);
@@ -381,6 +413,9 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 
 	*head = lrc->ring.tail;
 
+	if (job->ring_ops_force_reset)
+		i = emit_fake_watchdog(lrc, dw, i);
+
 	i = emit_copy_timestamp(xe, lrc, dw, i);
 
 	dw[i++] = preparser_disable(true);
@@ -433,6 +468,8 @@ static void emit_migration_job_gen12(struct xe_sched_job *job,
 
 	*head = lrc->ring.tail;
 
+	xe_gt_assert(gt, !job->ring_ops_force_reset);
+
 	i = emit_copy_timestamp(xe, lrc, dw, i);
 
 	i = emit_store_imm_ggtt(saddr, seqno, dw, i);
diff --git a/drivers/gpu/drm/xe/xe_ring_ops_types.h b/drivers/gpu/drm/xe/xe_ring_ops_types.h
index d7e3e150a9a5..a42a465ac438 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops_types.h
+++ b/drivers/gpu/drm/xe/xe_ring_ops_types.h
@@ -8,7 +8,7 @@
 
 struct xe_sched_job;
 
-#define MAX_JOB_SIZE_DW 58
+#define MAX_JOB_SIZE_DW 72
 #define MAX_JOB_SIZE_BYTES (MAX_JOB_SIZE_DW * 4)
 
 /**
diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
index 13c2970e81a8..0490b1247a6e 100644
--- a/drivers/gpu/drm/xe/xe_sched_job_types.h
+++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
@@ -63,6 +63,8 @@ struct xe_sched_job {
 	u64 sample_timestamp;
 	/** @ring_ops_flush_tlb: The ring ops need to flush TLB before payload. */
 	bool ring_ops_flush_tlb;
+	/** @ring_ops_force_reset: The ring ops need to trigger a reset before payload. */
+	bool ring_ops_force_reset;
 	/** @ggtt: mapped in ggtt. */
 	bool ggtt;
 	/** @restore_replay: job being replayed for restore */
-- 
2.47.1


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

* ✓ CI.KUnit: success for drm/xe/vf: Improve getting clean NULL context
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
                   ` (2 preceding siblings ...)
  2026-03-03 20:13 ` [PATCH 3/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
@ 2026-03-03 20:21 ` Patchwork
  2026-03-03 21:04 ` ✗ Xe.CI.BAT: failure " Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-03-03 20:21 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

== Series Details ==

Series: drm/xe/vf: Improve getting clean NULL context
URL   : https://patchwork.freedesktop.org/series/162520/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[20:19:52] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:19:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[20:20:27] Starting KUnit Kernel (1/1)...
[20:20:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:20:27] ================== guc_buf (11 subtests) ===================
[20:20:27] [PASSED] test_smallest
[20:20:27] [PASSED] test_largest
[20:20:27] [PASSED] test_granular
[20:20:27] [PASSED] test_unique
[20:20:27] [PASSED] test_overlap
[20:20:27] [PASSED] test_reusable
[20:20:27] [PASSED] test_too_big
[20:20:27] [PASSED] test_flush
[20:20:27] [PASSED] test_lookup
[20:20:27] [PASSED] test_data
[20:20:27] [PASSED] test_class
[20:20:27] ===================== [PASSED] guc_buf =====================
[20:20:27] =================== guc_dbm (7 subtests) ===================
[20:20:27] [PASSED] test_empty
[20:20:27] [PASSED] test_default
[20:20:27] ======================== test_size  ========================
[20:20:27] [PASSED] 4
[20:20:27] [PASSED] 8
[20:20:27] [PASSED] 32
[20:20:27] [PASSED] 256
[20:20:27] ==================== [PASSED] test_size ====================
[20:20:27] ======================= test_reuse  ========================
[20:20:27] [PASSED] 4
[20:20:27] [PASSED] 8
[20:20:27] [PASSED] 32
[20:20:27] [PASSED] 256
[20:20:27] =================== [PASSED] test_reuse ====================
[20:20:27] =================== test_range_overlap  ====================
[20:20:27] [PASSED] 4
[20:20:27] [PASSED] 8
[20:20:27] [PASSED] 32
[20:20:27] [PASSED] 256
[20:20:27] =============== [PASSED] test_range_overlap ================
[20:20:27] =================== test_range_compact  ====================
[20:20:27] [PASSED] 4
[20:20:27] [PASSED] 8
[20:20:27] [PASSED] 32
[20:20:27] [PASSED] 256
[20:20:27] =============== [PASSED] test_range_compact ================
[20:20:27] ==================== test_range_spare  =====================
[20:20:27] [PASSED] 4
[20:20:27] [PASSED] 8
[20:20:27] [PASSED] 32
[20:20:27] [PASSED] 256
[20:20:27] ================ [PASSED] test_range_spare =================
[20:20:27] ===================== [PASSED] guc_dbm =====================
[20:20:27] =================== guc_idm (6 subtests) ===================
[20:20:27] [PASSED] bad_init
[20:20:27] [PASSED] no_init
[20:20:27] [PASSED] init_fini
[20:20:27] [PASSED] check_used
[20:20:27] [PASSED] check_quota
[20:20:27] [PASSED] check_all
[20:20:27] ===================== [PASSED] guc_idm =====================
[20:20:27] ================== no_relay (3 subtests) ===================
[20:20:27] [PASSED] xe_drops_guc2pf_if_not_ready
[20:20:27] [PASSED] xe_drops_guc2vf_if_not_ready
[20:20:27] [PASSED] xe_rejects_send_if_not_ready
[20:20:27] ==================== [PASSED] no_relay =====================
[20:20:27] ================== pf_relay (14 subtests) ==================
[20:20:27] [PASSED] pf_rejects_guc2pf_too_short
[20:20:27] [PASSED] pf_rejects_guc2pf_too_long
[20:20:27] [PASSED] pf_rejects_guc2pf_no_payload
[20:20:27] [PASSED] pf_fails_no_payload
[20:20:27] [PASSED] pf_fails_bad_origin
[20:20:27] [PASSED] pf_fails_bad_type
[20:20:27] [PASSED] pf_txn_reports_error
[20:20:27] [PASSED] pf_txn_sends_pf2guc
[20:20:27] [PASSED] pf_sends_pf2guc
[20:20:27] [SKIPPED] pf_loopback_nop
[20:20:27] [SKIPPED] pf_loopback_echo
[20:20:27] [SKIPPED] pf_loopback_fail
[20:20:27] [SKIPPED] pf_loopback_busy
[20:20:27] [SKIPPED] pf_loopback_retry
[20:20:27] ==================== [PASSED] pf_relay =====================
[20:20:27] ================== vf_relay (3 subtests) ===================
[20:20:27] [PASSED] vf_rejects_guc2vf_too_short
[20:20:27] [PASSED] vf_rejects_guc2vf_too_long
[20:20:27] [PASSED] vf_rejects_guc2vf_no_payload
[20:20:27] ==================== [PASSED] vf_relay =====================
[20:20:27] ================ pf_gt_config (9 subtests) =================
[20:20:27] [PASSED] fair_contexts_1vf
[20:20:27] [PASSED] fair_doorbells_1vf
[20:20:27] [PASSED] fair_ggtt_1vf
[20:20:27] ====================== fair_vram_1vf  ======================
[20:20:27] [PASSED] 3.50 GiB
[20:20:27] [PASSED] 11.5 GiB
[20:20:27] [PASSED] 15.5 GiB
[20:20:27] [PASSED] 31.5 GiB
[20:20:27] [PASSED] 63.5 GiB
[20:20:27] [PASSED] 1.91 GiB
[20:20:27] ================== [PASSED] fair_vram_1vf ==================
[20:20:27] ================ fair_vram_1vf_admin_only  =================
[20:20:27] [PASSED] 3.50 GiB
[20:20:27] [PASSED] 11.5 GiB
[20:20:27] [PASSED] 15.5 GiB
[20:20:27] [PASSED] 31.5 GiB
[20:20:27] [PASSED] 63.5 GiB
[20:20:27] [PASSED] 1.91 GiB
[20:20:27] ============ [PASSED] fair_vram_1vf_admin_only =============
[20:20:27] ====================== fair_contexts  ======================
[20:20:27] [PASSED] 1 VF
[20:20:27] [PASSED] 2 VFs
[20:20:27] [PASSED] 3 VFs
[20:20:27] [PASSED] 4 VFs
[20:20:27] [PASSED] 5 VFs
[20:20:27] [PASSED] 6 VFs
[20:20:27] [PASSED] 7 VFs
[20:20:27] [PASSED] 8 VFs
[20:20:27] [PASSED] 9 VFs
[20:20:27] [PASSED] 10 VFs
[20:20:27] [PASSED] 11 VFs
[20:20:27] [PASSED] 12 VFs
[20:20:27] [PASSED] 13 VFs
[20:20:27] [PASSED] 14 VFs
[20:20:27] [PASSED] 15 VFs
[20:20:27] [PASSED] 16 VFs
[20:20:27] [PASSED] 17 VFs
[20:20:27] [PASSED] 18 VFs
[20:20:27] [PASSED] 19 VFs
[20:20:27] [PASSED] 20 VFs
[20:20:27] [PASSED] 21 VFs
[20:20:27] [PASSED] 22 VFs
[20:20:27] [PASSED] 23 VFs
[20:20:27] [PASSED] 24 VFs
[20:20:27] [PASSED] 25 VFs
[20:20:27] [PASSED] 26 VFs
[20:20:27] [PASSED] 27 VFs
[20:20:27] [PASSED] 28 VFs
[20:20:27] [PASSED] 29 VFs
[20:20:27] [PASSED] 30 VFs
[20:20:27] [PASSED] 31 VFs
[20:20:27] [PASSED] 32 VFs
[20:20:27] [PASSED] 33 VFs
[20:20:27] [PASSED] 34 VFs
[20:20:27] [PASSED] 35 VFs
[20:20:27] [PASSED] 36 VFs
[20:20:27] [PASSED] 37 VFs
[20:20:27] [PASSED] 38 VFs
[20:20:27] [PASSED] 39 VFs
[20:20:27] [PASSED] 40 VFs
[20:20:27] [PASSED] 41 VFs
[20:20:27] [PASSED] 42 VFs
[20:20:27] [PASSED] 43 VFs
[20:20:27] [PASSED] 44 VFs
[20:20:27] [PASSED] 45 VFs
[20:20:27] [PASSED] 46 VFs
[20:20:27] [PASSED] 47 VFs
[20:20:27] [PASSED] 48 VFs
[20:20:27] [PASSED] 49 VFs
[20:20:27] [PASSED] 50 VFs
[20:20:27] [PASSED] 51 VFs
[20:20:27] [PASSED] 52 VFs
[20:20:27] [PASSED] 53 VFs
[20:20:27] [PASSED] 54 VFs
[20:20:27] [PASSED] 55 VFs
[20:20:27] [PASSED] 56 VFs
[20:20:27] [PASSED] 57 VFs
[20:20:27] [PASSED] 58 VFs
[20:20:27] [PASSED] 59 VFs
[20:20:27] [PASSED] 60 VFs
[20:20:27] [PASSED] 61 VFs
[20:20:27] [PASSED] 62 VFs
[20:20:27] [PASSED] 63 VFs
[20:20:27] ================== [PASSED] fair_contexts ==================
[20:20:27] ===================== fair_doorbells  ======================
[20:20:27] [PASSED] 1 VF
[20:20:27] [PASSED] 2 VFs
[20:20:27] [PASSED] 3 VFs
[20:20:27] [PASSED] 4 VFs
[20:20:28] [PASSED] 5 VFs
[20:20:28] [PASSED] 6 VFs
[20:20:28] [PASSED] 7 VFs
[20:20:28] [PASSED] 8 VFs
[20:20:28] [PASSED] 9 VFs
[20:20:28] [PASSED] 10 VFs
[20:20:28] [PASSED] 11 VFs
[20:20:28] [PASSED] 12 VFs
[20:20:28] [PASSED] 13 VFs
[20:20:28] [PASSED] 14 VFs
[20:20:28] [PASSED] 15 VFs
[20:20:28] [PASSED] 16 VFs
[20:20:28] [PASSED] 17 VFs
[20:20:28] [PASSED] 18 VFs
[20:20:28] [PASSED] 19 VFs
[20:20:28] [PASSED] 20 VFs
[20:20:28] [PASSED] 21 VFs
[20:20:28] [PASSED] 22 VFs
[20:20:28] [PASSED] 23 VFs
[20:20:28] [PASSED] 24 VFs
[20:20:28] [PASSED] 25 VFs
[20:20:28] [PASSED] 26 VFs
[20:20:28] [PASSED] 27 VFs
[20:20:28] [PASSED] 28 VFs
[20:20:28] [PASSED] 29 VFs
[20:20:28] [PASSED] 30 VFs
[20:20:28] [PASSED] 31 VFs
[20:20:28] [PASSED] 32 VFs
[20:20:28] [PASSED] 33 VFs
[20:20:28] [PASSED] 34 VFs
[20:20:28] [PASSED] 35 VFs
[20:20:28] [PASSED] 36 VFs
[20:20:28] [PASSED] 37 VFs
[20:20:28] [PASSED] 38 VFs
[20:20:28] [PASSED] 39 VFs
[20:20:28] [PASSED] 40 VFs
[20:20:28] [PASSED] 41 VFs
[20:20:28] [PASSED] 42 VFs
[20:20:28] [PASSED] 43 VFs
[20:20:28] [PASSED] 44 VFs
[20:20:28] [PASSED] 45 VFs
[20:20:28] [PASSED] 46 VFs
[20:20:28] [PASSED] 47 VFs
[20:20:28] [PASSED] 48 VFs
[20:20:28] [PASSED] 49 VFs
[20:20:28] [PASSED] 50 VFs
[20:20:28] [PASSED] 51 VFs
[20:20:28] [PASSED] 52 VFs
[20:20:28] [PASSED] 53 VFs
[20:20:28] [PASSED] 54 VFs
[20:20:28] [PASSED] 55 VFs
[20:20:28] [PASSED] 56 VFs
[20:20:28] [PASSED] 57 VFs
[20:20:28] [PASSED] 58 VFs
[20:20:28] [PASSED] 59 VFs
[20:20:28] [PASSED] 60 VFs
[20:20:28] [PASSED] 61 VFs
[20:20:28] [PASSED] 62 VFs
[20:20:28] [PASSED] 63 VFs
[20:20:28] ================= [PASSED] fair_doorbells ==================
[20:20:28] ======================== fair_ggtt  ========================
[20:20:28] [PASSED] 1 VF
[20:20:28] [PASSED] 2 VFs
[20:20:28] [PASSED] 3 VFs
[20:20:28] [PASSED] 4 VFs
[20:20:28] [PASSED] 5 VFs
[20:20:28] [PASSED] 6 VFs
[20:20:28] [PASSED] 7 VFs
[20:20:28] [PASSED] 8 VFs
[20:20:28] [PASSED] 9 VFs
[20:20:28] [PASSED] 10 VFs
[20:20:28] [PASSED] 11 VFs
[20:20:28] [PASSED] 12 VFs
[20:20:28] [PASSED] 13 VFs
[20:20:28] [PASSED] 14 VFs
[20:20:28] [PASSED] 15 VFs
[20:20:28] [PASSED] 16 VFs
[20:20:28] [PASSED] 17 VFs
[20:20:28] [PASSED] 18 VFs
[20:20:28] [PASSED] 19 VFs
[20:20:28] [PASSED] 20 VFs
[20:20:28] [PASSED] 21 VFs
[20:20:28] [PASSED] 22 VFs
[20:20:28] [PASSED] 23 VFs
[20:20:28] [PASSED] 24 VFs
[20:20:28] [PASSED] 25 VFs
[20:20:28] [PASSED] 26 VFs
[20:20:28] [PASSED] 27 VFs
[20:20:28] [PASSED] 28 VFs
[20:20:28] [PASSED] 29 VFs
[20:20:28] [PASSED] 30 VFs
[20:20:28] [PASSED] 31 VFs
[20:20:28] [PASSED] 32 VFs
[20:20:28] [PASSED] 33 VFs
[20:20:28] [PASSED] 34 VFs
[20:20:28] [PASSED] 35 VFs
[20:20:28] [PASSED] 36 VFs
[20:20:28] [PASSED] 37 VFs
[20:20:28] [PASSED] 38 VFs
[20:20:28] [PASSED] 39 VFs
[20:20:28] [PASSED] 40 VFs
[20:20:28] [PASSED] 41 VFs
[20:20:28] [PASSED] 42 VFs
[20:20:28] [PASSED] 43 VFs
[20:20:28] [PASSED] 44 VFs
[20:20:28] [PASSED] 45 VFs
[20:20:28] [PASSED] 46 VFs
[20:20:28] [PASSED] 47 VFs
[20:20:28] [PASSED] 48 VFs
[20:20:28] [PASSED] 49 VFs
[20:20:28] [PASSED] 50 VFs
[20:20:28] [PASSED] 51 VFs
[20:20:28] [PASSED] 52 VFs
[20:20:28] [PASSED] 53 VFs
[20:20:28] [PASSED] 54 VFs
[20:20:28] [PASSED] 55 VFs
[20:20:28] [PASSED] 56 VFs
[20:20:28] [PASSED] 57 VFs
[20:20:28] [PASSED] 58 VFs
[20:20:28] [PASSED] 59 VFs
[20:20:28] [PASSED] 60 VFs
[20:20:28] [PASSED] 61 VFs
[20:20:28] [PASSED] 62 VFs
[20:20:28] [PASSED] 63 VFs
[20:20:28] ==================== [PASSED] fair_ggtt ====================
[20:20:28] ======================== fair_vram  ========================
[20:20:28] [PASSED] 1 VF
[20:20:28] [PASSED] 2 VFs
[20:20:28] [PASSED] 3 VFs
[20:20:28] [PASSED] 4 VFs
[20:20:28] [PASSED] 5 VFs
[20:20:28] [PASSED] 6 VFs
[20:20:28] [PASSED] 7 VFs
[20:20:28] [PASSED] 8 VFs
[20:20:28] [PASSED] 9 VFs
[20:20:28] [PASSED] 10 VFs
[20:20:28] [PASSED] 11 VFs
[20:20:28] [PASSED] 12 VFs
[20:20:28] [PASSED] 13 VFs
[20:20:28] [PASSED] 14 VFs
[20:20:28] [PASSED] 15 VFs
[20:20:28] [PASSED] 16 VFs
[20:20:28] [PASSED] 17 VFs
[20:20:28] [PASSED] 18 VFs
[20:20:28] [PASSED] 19 VFs
[20:20:28] [PASSED] 20 VFs
[20:20:28] [PASSED] 21 VFs
[20:20:28] [PASSED] 22 VFs
[20:20:28] [PASSED] 23 VFs
[20:20:28] [PASSED] 24 VFs
[20:20:28] [PASSED] 25 VFs
[20:20:28] [PASSED] 26 VFs
[20:20:28] [PASSED] 27 VFs
[20:20:28] [PASSED] 28 VFs
[20:20:28] [PASSED] 29 VFs
[20:20:28] [PASSED] 30 VFs
[20:20:28] [PASSED] 31 VFs
[20:20:28] [PASSED] 32 VFs
[20:20:28] [PASSED] 33 VFs
[20:20:28] [PASSED] 34 VFs
[20:20:28] [PASSED] 35 VFs
[20:20:28] [PASSED] 36 VFs
[20:20:28] [PASSED] 37 VFs
[20:20:28] [PASSED] 38 VFs
[20:20:28] [PASSED] 39 VFs
[20:20:28] [PASSED] 40 VFs
[20:20:28] [PASSED] 41 VFs
[20:20:28] [PASSED] 42 VFs
[20:20:28] [PASSED] 43 VFs
[20:20:28] [PASSED] 44 VFs
[20:20:28] [PASSED] 45 VFs
[20:20:28] [PASSED] 46 VFs
[20:20:28] [PASSED] 47 VFs
[20:20:28] [PASSED] 48 VFs
[20:20:28] [PASSED] 49 VFs
[20:20:28] [PASSED] 50 VFs
[20:20:28] [PASSED] 51 VFs
[20:20:28] [PASSED] 52 VFs
[20:20:28] [PASSED] 53 VFs
[20:20:28] [PASSED] 54 VFs
[20:20:28] [PASSED] 55 VFs
[20:20:28] [PASSED] 56 VFs
[20:20:28] [PASSED] 57 VFs
[20:20:28] [PASSED] 58 VFs
[20:20:28] [PASSED] 59 VFs
[20:20:28] [PASSED] 60 VFs
[20:20:28] [PASSED] 61 VFs
[20:20:28] [PASSED] 62 VFs
[20:20:28] [PASSED] 63 VFs
[20:20:28] ==================== [PASSED] fair_vram ====================
[20:20:28] ================== [PASSED] pf_gt_config ===================
[20:20:28] ===================== lmtt (1 subtest) =====================
[20:20:28] ======================== test_ops  =========================
[20:20:28] [PASSED] 2-level
[20:20:28] [PASSED] multi-level
[20:20:28] ==================== [PASSED] test_ops =====================
[20:20:28] ====================== [PASSED] lmtt =======================
[20:20:28] ================= pf_service (11 subtests) =================
[20:20:28] [PASSED] pf_negotiate_any
[20:20:28] [PASSED] pf_negotiate_base_match
[20:20:28] [PASSED] pf_negotiate_base_newer
[20:20:28] [PASSED] pf_negotiate_base_next
[20:20:28] [SKIPPED] pf_negotiate_base_older
[20:20:28] [PASSED] pf_negotiate_base_prev
[20:20:28] [PASSED] pf_negotiate_latest_match
[20:20:28] [PASSED] pf_negotiate_latest_newer
[20:20:28] [PASSED] pf_negotiate_latest_next
[20:20:28] [SKIPPED] pf_negotiate_latest_older
[20:20:28] [SKIPPED] pf_negotiate_latest_prev
[20:20:28] =================== [PASSED] pf_service ====================
[20:20:28] ================= xe_guc_g2g (2 subtests) ==================
[20:20:28] ============== xe_live_guc_g2g_kunit_default  ==============
[20:20:28] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[20:20:28] ============== xe_live_guc_g2g_kunit_allmem  ===============
[20:20:28] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[20:20:28] =================== [SKIPPED] xe_guc_g2g ===================
[20:20:28] =================== xe_mocs (2 subtests) ===================
[20:20:28] ================ xe_live_mocs_kernel_kunit  ================
[20:20:28] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[20:20:28] ================ xe_live_mocs_reset_kunit  =================
[20:20:28] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[20:20:28] ==================== [SKIPPED] xe_mocs =====================
[20:20:28] ================= xe_migrate (2 subtests) ==================
[20:20:28] ================= xe_migrate_sanity_kunit  =================
[20:20:28] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[20:20:28] ================== xe_validate_ccs_kunit  ==================
[20:20:28] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[20:20:28] =================== [SKIPPED] xe_migrate ===================
[20:20:28] ================== xe_dma_buf (1 subtest) ==================
[20:20:28] ==================== xe_dma_buf_kunit  =====================
[20:20:28] ================ [SKIPPED] xe_dma_buf_kunit ================
[20:20:28] =================== [SKIPPED] xe_dma_buf ===================
[20:20:28] ================= xe_bo_shrink (1 subtest) =================
[20:20:28] =================== xe_bo_shrink_kunit  ====================
[20:20:28] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[20:20:28] ================== [SKIPPED] xe_bo_shrink ==================
[20:20:28] ==================== xe_bo (2 subtests) ====================
[20:20:28] ================== xe_ccs_migrate_kunit  ===================
[20:20:28] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[20:20:28] ==================== xe_bo_evict_kunit  ====================
[20:20:28] =============== [SKIPPED] xe_bo_evict_kunit ================
[20:20:28] ===================== [SKIPPED] xe_bo ======================
[20:20:28] ==================== args (13 subtests) ====================
[20:20:28] [PASSED] count_args_test
[20:20:28] [PASSED] call_args_example
[20:20:28] [PASSED] call_args_test
[20:20:28] [PASSED] drop_first_arg_example
[20:20:28] [PASSED] drop_first_arg_test
[20:20:28] [PASSED] first_arg_example
[20:20:28] [PASSED] first_arg_test
[20:20:28] [PASSED] last_arg_example
[20:20:28] [PASSED] last_arg_test
[20:20:28] [PASSED] pick_arg_example
[20:20:28] [PASSED] if_args_example
[20:20:28] [PASSED] if_args_test
[20:20:28] [PASSED] sep_comma_example
[20:20:28] ====================== [PASSED] args =======================
[20:20:28] =================== xe_pci (3 subtests) ====================
[20:20:28] ==================== check_graphics_ip  ====================
[20:20:28] [PASSED] 12.00 Xe_LP
[20:20:28] [PASSED] 12.10 Xe_LP+
[20:20:28] [PASSED] 12.55 Xe_HPG
[20:20:28] [PASSED] 12.60 Xe_HPC
[20:20:28] [PASSED] 12.70 Xe_LPG
[20:20:28] [PASSED] 12.71 Xe_LPG
[20:20:28] [PASSED] 12.74 Xe_LPG+
[20:20:28] [PASSED] 20.01 Xe2_HPG
[20:20:28] [PASSED] 20.02 Xe2_HPG
[20:20:28] [PASSED] 20.04 Xe2_LPG
[20:20:28] [PASSED] 30.00 Xe3_LPG
[20:20:28] [PASSED] 30.01 Xe3_LPG
[20:20:28] [PASSED] 30.03 Xe3_LPG
[20:20:28] [PASSED] 30.04 Xe3_LPG
[20:20:28] [PASSED] 30.05 Xe3_LPG
[20:20:28] [PASSED] 35.10 Xe3p_LPG
[20:20:28] [PASSED] 35.11 Xe3p_XPC
[20:20:28] ================ [PASSED] check_graphics_ip ================
[20:20:28] ===================== check_media_ip  ======================
[20:20:28] [PASSED] 12.00 Xe_M
[20:20:28] [PASSED] 12.55 Xe_HPM
[20:20:28] [PASSED] 13.00 Xe_LPM+
[20:20:28] [PASSED] 13.01 Xe2_HPM
[20:20:28] [PASSED] 20.00 Xe2_LPM
[20:20:28] [PASSED] 30.00 Xe3_LPM
[20:20:28] [PASSED] 30.02 Xe3_LPM
[20:20:28] [PASSED] 35.00 Xe3p_LPM
[20:20:28] [PASSED] 35.03 Xe3p_HPM
[20:20:28] ================= [PASSED] check_media_ip ==================
[20:20:28] =================== check_platform_desc  ===================
[20:20:28] [PASSED] 0x9A60 (TIGERLAKE)
[20:20:28] [PASSED] 0x9A68 (TIGERLAKE)
[20:20:28] [PASSED] 0x9A70 (TIGERLAKE)
[20:20:28] [PASSED] 0x9A40 (TIGERLAKE)
[20:20:28] [PASSED] 0x9A49 (TIGERLAKE)
[20:20:28] [PASSED] 0x9A59 (TIGERLAKE)
[20:20:28] [PASSED] 0x9A78 (TIGERLAKE)
[20:20:28] [PASSED] 0x9AC0 (TIGERLAKE)
[20:20:28] [PASSED] 0x9AC9 (TIGERLAKE)
[20:20:28] [PASSED] 0x9AD9 (TIGERLAKE)
[20:20:28] [PASSED] 0x9AF8 (TIGERLAKE)
[20:20:28] [PASSED] 0x4C80 (ROCKETLAKE)
[20:20:28] [PASSED] 0x4C8A (ROCKETLAKE)
[20:20:28] [PASSED] 0x4C8B (ROCKETLAKE)
[20:20:28] [PASSED] 0x4C8C (ROCKETLAKE)
[20:20:28] [PASSED] 0x4C90 (ROCKETLAKE)
[20:20:28] [PASSED] 0x4C9A (ROCKETLAKE)
[20:20:28] [PASSED] 0x4680 (ALDERLAKE_S)
[20:20:28] [PASSED] 0x4682 (ALDERLAKE_S)
[20:20:28] [PASSED] 0x4688 (ALDERLAKE_S)
[20:20:28] [PASSED] 0x468A (ALDERLAKE_S)
[20:20:28] [PASSED] 0x468B (ALDERLAKE_S)
[20:20:28] [PASSED] 0x4690 (ALDERLAKE_S)
[20:20:28] [PASSED] 0x4692 (ALDERLAKE_S)
[20:20:28] [PASSED] 0x4693 (ALDERLAKE_S)
[20:20:28] [PASSED] 0x46A0 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46A1 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46A2 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46A3 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46A6 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46A8 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46AA (ALDERLAKE_P)
[20:20:28] [PASSED] 0x462A (ALDERLAKE_P)
[20:20:28] [PASSED] 0x4626 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x4628 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46B0 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46B1 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46B2 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46B3 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46C0 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46C1 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46C2 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46C3 (ALDERLAKE_P)
[20:20:28] [PASSED] 0x46D0 (ALDERLAKE_N)
[20:20:28] [PASSED] 0x46D1 (ALDERLAKE_N)
[20:20:28] [PASSED] 0x46D2 (ALDERLAKE_N)
[20:20:28] [PASSED] 0x46D3 (ALDERLAKE_N)
[20:20:28] [PASSED] 0x46D4 (ALDERLAKE_N)
[20:20:28] [PASSED] 0xA721 (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA7A1 (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA7A9 (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA7AC (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA7AD (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA720 (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA7A0 (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA7A8 (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA7AA (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA7AB (ALDERLAKE_P)
[20:20:28] [PASSED] 0xA780 (ALDERLAKE_S)
[20:20:28] [PASSED] 0xA781 (ALDERLAKE_S)
[20:20:28] [PASSED] 0xA782 (ALDERLAKE_S)
[20:20:28] [PASSED] 0xA783 (ALDERLAKE_S)
[20:20:28] [PASSED] 0xA788 (ALDERLAKE_S)
[20:20:28] [PASSED] 0xA789 (ALDERLAKE_S)
[20:20:28] [PASSED] 0xA78A (ALDERLAKE_S)
[20:20:28] [PASSED] 0xA78B (ALDERLAKE_S)
[20:20:28] [PASSED] 0x4905 (DG1)
[20:20:28] [PASSED] 0x4906 (DG1)
[20:20:28] [PASSED] 0x4907 (DG1)
[20:20:28] [PASSED] 0x4908 (DG1)
[20:20:28] [PASSED] 0x4909 (DG1)
[20:20:28] [PASSED] 0x56C0 (DG2)
[20:20:28] [PASSED] 0x56C2 (DG2)
[20:20:28] [PASSED] 0x56C1 (DG2)
[20:20:28] [PASSED] 0x7D51 (METEORLAKE)
[20:20:28] [PASSED] 0x7DD1 (METEORLAKE)
[20:20:28] [PASSED] 0x7D41 (METEORLAKE)
[20:20:28] [PASSED] 0x7D67 (METEORLAKE)
[20:20:28] [PASSED] 0xB640 (METEORLAKE)
[20:20:28] [PASSED] 0x56A0 (DG2)
[20:20:28] [PASSED] 0x56A1 (DG2)
[20:20:28] [PASSED] 0x56A2 (DG2)
[20:20:28] [PASSED] 0x56BE (DG2)
[20:20:28] [PASSED] 0x56BF (DG2)
[20:20:28] [PASSED] 0x5690 (DG2)
[20:20:28] [PASSED] 0x5691 (DG2)
[20:20:28] [PASSED] 0x5692 (DG2)
[20:20:28] [PASSED] 0x56A5 (DG2)
[20:20:28] [PASSED] 0x56A6 (DG2)
[20:20:28] [PASSED] 0x56B0 (DG2)
[20:20:28] [PASSED] 0x56B1 (DG2)
[20:20:28] [PASSED] 0x56BA (DG2)
[20:20:28] [PASSED] 0x56BB (DG2)
[20:20:28] [PASSED] 0x56BC (DG2)
[20:20:28] [PASSED] 0x56BD (DG2)
[20:20:28] [PASSED] 0x5693 (DG2)
[20:20:28] [PASSED] 0x5694 (DG2)
[20:20:28] [PASSED] 0x5695 (DG2)
[20:20:28] [PASSED] 0x56A3 (DG2)
[20:20:28] [PASSED] 0x56A4 (DG2)
[20:20:28] [PASSED] 0x56B2 (DG2)
[20:20:28] [PASSED] 0x56B3 (DG2)
[20:20:28] [PASSED] 0x5696 (DG2)
[20:20:28] [PASSED] 0x5697 (DG2)
[20:20:28] [PASSED] 0xB69 (PVC)
[20:20:28] [PASSED] 0xB6E (PVC)
[20:20:28] [PASSED] 0xBD4 (PVC)
[20:20:28] [PASSED] 0xBD5 (PVC)
[20:20:28] [PASSED] 0xBD6 (PVC)
[20:20:28] [PASSED] 0xBD7 (PVC)
[20:20:28] [PASSED] 0xBD8 (PVC)
[20:20:28] [PASSED] 0xBD9 (PVC)
[20:20:28] [PASSED] 0xBDA (PVC)
[20:20:28] [PASSED] 0xBDB (PVC)
[20:20:28] [PASSED] 0xBE0 (PVC)
[20:20:28] [PASSED] 0xBE1 (PVC)
[20:20:28] [PASSED] 0xBE5 (PVC)
[20:20:28] [PASSED] 0x7D40 (METEORLAKE)
[20:20:28] [PASSED] 0x7D45 (METEORLAKE)
[20:20:28] [PASSED] 0x7D55 (METEORLAKE)
[20:20:28] [PASSED] 0x7D60 (METEORLAKE)
[20:20:28] [PASSED] 0x7DD5 (METEORLAKE)
[20:20:28] [PASSED] 0x6420 (LUNARLAKE)
[20:20:28] [PASSED] 0x64A0 (LUNARLAKE)
[20:20:28] [PASSED] 0x64B0 (LUNARLAKE)
[20:20:28] [PASSED] 0xE202 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE209 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE20B (BATTLEMAGE)
[20:20:28] [PASSED] 0xE20C (BATTLEMAGE)
[20:20:28] [PASSED] 0xE20D (BATTLEMAGE)
[20:20:28] [PASSED] 0xE210 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE211 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE212 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE216 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE220 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE221 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE222 (BATTLEMAGE)
[20:20:28] [PASSED] 0xE223 (BATTLEMAGE)
[20:20:28] [PASSED] 0xB080 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB081 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB082 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB083 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB084 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB085 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB086 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB087 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB08F (PANTHERLAKE)
[20:20:28] [PASSED] 0xB090 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB0A0 (PANTHERLAKE)
[20:20:28] [PASSED] 0xB0B0 (PANTHERLAKE)
[20:20:28] [PASSED] 0xFD80 (PANTHERLAKE)
[20:20:28] [PASSED] 0xFD81 (PANTHERLAKE)
[20:20:28] [PASSED] 0xD740 (NOVALAKE_S)
[20:20:28] [PASSED] 0xD741 (NOVALAKE_S)
[20:20:28] [PASSED] 0xD742 (NOVALAKE_S)
[20:20:28] [PASSED] 0xD743 (NOVALAKE_S)
[20:20:28] [PASSED] 0xD744 (NOVALAKE_S)
[20:20:28] [PASSED] 0xD745 (NOVALAKE_S)
[20:20:28] [PASSED] 0x674C (CRESCENTISLAND)
[20:20:28] [PASSED] 0xD750 (NOVALAKE_P)
[20:20:28] [PASSED] 0xD751 (NOVALAKE_P)
[20:20:28] [PASSED] 0xD752 (NOVALAKE_P)
[20:20:28] [PASSED] 0xD753 (NOVALAKE_P)
[20:20:28] [PASSED] 0xD754 (NOVALAKE_P)
[20:20:28] [PASSED] 0xD755 (NOVALAKE_P)
[20:20:28] [PASSED] 0xD756 (NOVALAKE_P)
[20:20:28] [PASSED] 0xD757 (NOVALAKE_P)
[20:20:28] [PASSED] 0xD75F (NOVALAKE_P)
[20:20:28] =============== [PASSED] check_platform_desc ===============
[20:20:28] ===================== [PASSED] xe_pci ======================
[20:20:28] =================== xe_rtp (2 subtests) ====================
[20:20:28] =============== xe_rtp_process_to_sr_tests  ================
[20:20:28] [PASSED] coalesce-same-reg
[20:20:28] [PASSED] no-match-no-add
[20:20:28] [PASSED] match-or
[20:20:28] [PASSED] match-or-xfail
[20:20:28] [PASSED] no-match-no-add-multiple-rules
[20:20:28] [PASSED] two-regs-two-entries
[20:20:28] [PASSED] clr-one-set-other
[20:20:28] [PASSED] set-field
[20:20:28] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[20:20:28] [PASSED] conflict-not-disjoint
[20:20:28] [PASSED] conflict-reg-type
[20:20:28] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[20:20:28] ================== xe_rtp_process_tests  ===================
[20:20:28] [PASSED] active1
[20:20:28] [PASSED] active2
[20:20:28] [PASSED] active-inactive
[20:20:28] [PASSED] inactive-active
[20:20:28] [PASSED] inactive-1st_or_active-inactive
[20:20:28] [PASSED] inactive-2nd_or_active-inactive
[20:20:28] [PASSED] inactive-last_or_active-inactive
[20:20:28] [PASSED] inactive-no_or_active-inactive
[20:20:28] ============== [PASSED] xe_rtp_process_tests ===============
[20:20:28] ===================== [PASSED] xe_rtp ======================
[20:20:28] ==================== xe_wa (1 subtest) =====================
[20:20:28] ======================== xe_wa_gt  =========================
[20:20:28] [PASSED] TIGERLAKE B0
[20:20:28] [PASSED] DG1 A0
[20:20:28] [PASSED] DG1 B0
[20:20:28] [PASSED] ALDERLAKE_S A0
[20:20:28] [PASSED] ALDERLAKE_S B0
[20:20:28] [PASSED] ALDERLAKE_S C0
[20:20:28] [PASSED] ALDERLAKE_S D0
[20:20:28] [PASSED] ALDERLAKE_P A0
[20:20:28] [PASSED] ALDERLAKE_P B0
[20:20:28] [PASSED] ALDERLAKE_P C0
[20:20:28] [PASSED] ALDERLAKE_S RPLS D0
[20:20:28] [PASSED] ALDERLAKE_P RPLU E0
[20:20:28] [PASSED] DG2 G10 C0
[20:20:28] [PASSED] DG2 G11 B1
[20:20:28] [PASSED] DG2 G12 A1
[20:20:28] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:20:28] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:20:28] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[20:20:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[20:20:28] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[20:20:28] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[20:20:28] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[20:20:28] ==================== [PASSED] xe_wa_gt =====================
[20:20:28] ====================== [PASSED] xe_wa ======================
[20:20:28] ============================================================
[20:20:28] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[20:20:28] Elapsed time: 35.581s total, 4.240s configuring, 30.673s building, 0.624s running

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/xe/vf: Improve getting clean NULL context
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
                   ` (3 preceding siblings ...)
  2026-03-03 20:21 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-03-03 21:04 ` Patchwork
  2026-03-04  7:24 ` ✗ Xe.CI.FULL: " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-03-03 21:04 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/vf: Improve getting clean NULL context
URL   : https://patchwork.freedesktop.org/series/162520/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4655-cfc20c776480fda8c1b0517b187bb71ec0781cd4_BAT' does not exist in the database

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/xe/vf: Improve getting clean NULL context
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
                   ` (4 preceding siblings ...)
  2026-03-03 21:04 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-03-04  7:24 ` Patchwork
  2026-03-06  8:58 ` ✓ CI.KUnit: success for drm/xe/vf: Improve getting clean NULL context (rev2) Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-03-04  7:24 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/vf: Improve getting clean NULL context
URL   : https://patchwork.freedesktop.org/series/162520/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4655-cfc20c776480fda8c1b0517b187bb71ec0781cd4_FULL' does not exist in the database

== Logs ==

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

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

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

* ✓ CI.KUnit: success for drm/xe/vf: Improve getting clean NULL context (rev2)
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
                   ` (5 preceding siblings ...)
  2026-03-04  7:24 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-03-06  8:58 ` Patchwork
  2026-03-06  9:35 ` ✗ Xe.CI.BAT: failure " Patchwork
  2026-03-07  9:40 ` ✗ Xe.CI.FULL: " Patchwork
  8 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-03-06  8:58 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

== Series Details ==

Series: drm/xe/vf: Improve getting clean NULL context (rev2)
URL   : https://patchwork.freedesktop.org/series/162520/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[08:57:24] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:57:28] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[08:57:58] Starting KUnit Kernel (1/1)...
[08:57:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:57:59] ================== guc_buf (11 subtests) ===================
[08:57:59] [PASSED] test_smallest
[08:57:59] [PASSED] test_largest
[08:57:59] [PASSED] test_granular
[08:57:59] [PASSED] test_unique
[08:57:59] [PASSED] test_overlap
[08:57:59] [PASSED] test_reusable
[08:57:59] [PASSED] test_too_big
[08:57:59] [PASSED] test_flush
[08:57:59] [PASSED] test_lookup
[08:57:59] [PASSED] test_data
[08:57:59] [PASSED] test_class
[08:57:59] ===================== [PASSED] guc_buf =====================
[08:57:59] =================== guc_dbm (7 subtests) ===================
[08:57:59] [PASSED] test_empty
[08:57:59] [PASSED] test_default
[08:57:59] ======================== test_size  ========================
[08:57:59] [PASSED] 4
[08:57:59] [PASSED] 8
[08:57:59] [PASSED] 32
[08:57:59] [PASSED] 256
[08:57:59] ==================== [PASSED] test_size ====================
[08:57:59] ======================= test_reuse  ========================
[08:57:59] [PASSED] 4
[08:57:59] [PASSED] 8
[08:57:59] [PASSED] 32
[08:57:59] [PASSED] 256
[08:57:59] =================== [PASSED] test_reuse ====================
[08:57:59] =================== test_range_overlap  ====================
[08:57:59] [PASSED] 4
[08:57:59] [PASSED] 8
[08:57:59] [PASSED] 32
[08:57:59] [PASSED] 256
[08:57:59] =============== [PASSED] test_range_overlap ================
[08:57:59] =================== test_range_compact  ====================
[08:57:59] [PASSED] 4
[08:57:59] [PASSED] 8
[08:57:59] [PASSED] 32
[08:57:59] [PASSED] 256
[08:57:59] =============== [PASSED] test_range_compact ================
[08:57:59] ==================== test_range_spare  =====================
[08:57:59] [PASSED] 4
[08:57:59] [PASSED] 8
[08:57:59] [PASSED] 32
[08:57:59] [PASSED] 256
[08:57:59] ================ [PASSED] test_range_spare =================
[08:57:59] ===================== [PASSED] guc_dbm =====================
[08:57:59] =================== guc_idm (6 subtests) ===================
[08:57:59] [PASSED] bad_init
[08:57:59] [PASSED] no_init
[08:57:59] [PASSED] init_fini
[08:57:59] [PASSED] check_used
[08:57:59] [PASSED] check_quota
[08:57:59] [PASSED] check_all
[08:57:59] ===================== [PASSED] guc_idm =====================
[08:57:59] ================== no_relay (3 subtests) ===================
[08:57:59] [PASSED] xe_drops_guc2pf_if_not_ready
[08:57:59] [PASSED] xe_drops_guc2vf_if_not_ready
[08:57:59] [PASSED] xe_rejects_send_if_not_ready
[08:57:59] ==================== [PASSED] no_relay =====================
[08:57:59] ================== pf_relay (14 subtests) ==================
[08:57:59] [PASSED] pf_rejects_guc2pf_too_short
[08:57:59] [PASSED] pf_rejects_guc2pf_too_long
[08:57:59] [PASSED] pf_rejects_guc2pf_no_payload
[08:57:59] [PASSED] pf_fails_no_payload
[08:57:59] [PASSED] pf_fails_bad_origin
[08:57:59] [PASSED] pf_fails_bad_type
[08:57:59] [PASSED] pf_txn_reports_error
[08:57:59] [PASSED] pf_txn_sends_pf2guc
[08:57:59] [PASSED] pf_sends_pf2guc
[08:57:59] [SKIPPED] pf_loopback_nop
[08:57:59] [SKIPPED] pf_loopback_echo
[08:57:59] [SKIPPED] pf_loopback_fail
[08:57:59] [SKIPPED] pf_loopback_busy
[08:57:59] [SKIPPED] pf_loopback_retry
[08:57:59] ==================== [PASSED] pf_relay =====================
[08:57:59] ================== vf_relay (3 subtests) ===================
[08:57:59] [PASSED] vf_rejects_guc2vf_too_short
[08:57:59] [PASSED] vf_rejects_guc2vf_too_long
[08:57:59] [PASSED] vf_rejects_guc2vf_no_payload
[08:57:59] ==================== [PASSED] vf_relay =====================
[08:57:59] ================ pf_gt_config (9 subtests) =================
[08:57:59] [PASSED] fair_contexts_1vf
[08:57:59] [PASSED] fair_doorbells_1vf
[08:57:59] [PASSED] fair_ggtt_1vf
[08:57:59] ====================== fair_vram_1vf  ======================
[08:57:59] [PASSED] 3.50 GiB
[08:57:59] [PASSED] 11.5 GiB
[08:57:59] [PASSED] 15.5 GiB
[08:57:59] [PASSED] 31.5 GiB
[08:57:59] [PASSED] 63.5 GiB
[08:57:59] [PASSED] 1.91 GiB
[08:57:59] ================== [PASSED] fair_vram_1vf ==================
[08:57:59] ================ fair_vram_1vf_admin_only  =================
[08:57:59] [PASSED] 3.50 GiB
[08:57:59] [PASSED] 11.5 GiB
[08:57:59] [PASSED] 15.5 GiB
[08:57:59] [PASSED] 31.5 GiB
[08:57:59] [PASSED] 63.5 GiB
[08:57:59] [PASSED] 1.91 GiB
[08:57:59] ============ [PASSED] fair_vram_1vf_admin_only =============
[08:57:59] ====================== fair_contexts  ======================
[08:57:59] [PASSED] 1 VF
[08:57:59] [PASSED] 2 VFs
[08:57:59] [PASSED] 3 VFs
[08:57:59] [PASSED] 4 VFs
[08:57:59] [PASSED] 5 VFs
[08:57:59] [PASSED] 6 VFs
[08:57:59] [PASSED] 7 VFs
[08:57:59] [PASSED] 8 VFs
[08:57:59] [PASSED] 9 VFs
[08:57:59] [PASSED] 10 VFs
[08:57:59] [PASSED] 11 VFs
[08:57:59] [PASSED] 12 VFs
[08:57:59] [PASSED] 13 VFs
[08:57:59] [PASSED] 14 VFs
[08:57:59] [PASSED] 15 VFs
[08:57:59] [PASSED] 16 VFs
[08:57:59] [PASSED] 17 VFs
[08:57:59] [PASSED] 18 VFs
[08:57:59] [PASSED] 19 VFs
[08:57:59] [PASSED] 20 VFs
[08:57:59] [PASSED] 21 VFs
[08:57:59] [PASSED] 22 VFs
[08:57:59] [PASSED] 23 VFs
[08:57:59] [PASSED] 24 VFs
[08:57:59] [PASSED] 25 VFs
[08:57:59] [PASSED] 26 VFs
[08:57:59] [PASSED] 27 VFs
[08:57:59] [PASSED] 28 VFs
[08:57:59] [PASSED] 29 VFs
[08:57:59] [PASSED] 30 VFs
[08:57:59] [PASSED] 31 VFs
[08:57:59] [PASSED] 32 VFs
[08:57:59] [PASSED] 33 VFs
[08:57:59] [PASSED] 34 VFs
[08:57:59] [PASSED] 35 VFs
[08:57:59] [PASSED] 36 VFs
[08:57:59] [PASSED] 37 VFs
[08:57:59] [PASSED] 38 VFs
[08:57:59] [PASSED] 39 VFs
[08:57:59] [PASSED] 40 VFs
[08:57:59] [PASSED] 41 VFs
[08:57:59] [PASSED] 42 VFs
[08:57:59] [PASSED] 43 VFs
[08:57:59] [PASSED] 44 VFs
[08:57:59] [PASSED] 45 VFs
[08:57:59] [PASSED] 46 VFs
[08:57:59] [PASSED] 47 VFs
[08:57:59] [PASSED] 48 VFs
[08:57:59] [PASSED] 49 VFs
[08:57:59] [PASSED] 50 VFs
[08:57:59] [PASSED] 51 VFs
[08:57:59] [PASSED] 52 VFs
[08:57:59] [PASSED] 53 VFs
[08:57:59] [PASSED] 54 VFs
[08:57:59] [PASSED] 55 VFs
[08:57:59] [PASSED] 56 VFs
[08:57:59] [PASSED] 57 VFs
[08:57:59] [PASSED] 58 VFs
[08:57:59] [PASSED] 59 VFs
[08:57:59] [PASSED] 60 VFs
[08:57:59] [PASSED] 61 VFs
[08:57:59] [PASSED] 62 VFs
[08:57:59] [PASSED] 63 VFs
[08:57:59] ================== [PASSED] fair_contexts ==================
[08:57:59] ===================== fair_doorbells  ======================
[08:57:59] [PASSED] 1 VF
[08:57:59] [PASSED] 2 VFs
[08:57:59] [PASSED] 3 VFs
[08:57:59] [PASSED] 4 VFs
[08:57:59] [PASSED] 5 VFs
[08:57:59] [PASSED] 6 VFs
[08:57:59] [PASSED] 7 VFs
[08:57:59] [PASSED] 8 VFs
[08:57:59] [PASSED] 9 VFs
[08:57:59] [PASSED] 10 VFs
[08:57:59] [PASSED] 11 VFs
[08:57:59] [PASSED] 12 VFs
[08:57:59] [PASSED] 13 VFs
[08:57:59] [PASSED] 14 VFs
[08:57:59] [PASSED] 15 VFs
[08:57:59] [PASSED] 16 VFs
[08:57:59] [PASSED] 17 VFs
[08:57:59] [PASSED] 18 VFs
[08:57:59] [PASSED] 19 VFs
[08:57:59] [PASSED] 20 VFs
[08:57:59] [PASSED] 21 VFs
[08:57:59] [PASSED] 22 VFs
[08:57:59] [PASSED] 23 VFs
[08:57:59] [PASSED] 24 VFs
[08:57:59] [PASSED] 25 VFs
[08:57:59] [PASSED] 26 VFs
[08:57:59] [PASSED] 27 VFs
[08:57:59] [PASSED] 28 VFs
[08:57:59] [PASSED] 29 VFs
[08:57:59] [PASSED] 30 VFs
[08:57:59] [PASSED] 31 VFs
[08:57:59] [PASSED] 32 VFs
[08:57:59] [PASSED] 33 VFs
[08:57:59] [PASSED] 34 VFs
[08:57:59] [PASSED] 35 VFs
[08:57:59] [PASSED] 36 VFs
[08:57:59] [PASSED] 37 VFs
[08:57:59] [PASSED] 38 VFs
[08:57:59] [PASSED] 39 VFs
[08:57:59] [PASSED] 40 VFs
[08:57:59] [PASSED] 41 VFs
[08:57:59] [PASSED] 42 VFs
[08:57:59] [PASSED] 43 VFs
[08:57:59] [PASSED] 44 VFs
[08:57:59] [PASSED] 45 VFs
[08:57:59] [PASSED] 46 VFs
[08:57:59] [PASSED] 47 VFs
[08:57:59] [PASSED] 48 VFs
[08:57:59] [PASSED] 49 VFs
[08:57:59] [PASSED] 50 VFs
[08:57:59] [PASSED] 51 VFs
[08:57:59] [PASSED] 52 VFs
[08:57:59] [PASSED] 53 VFs
[08:57:59] [PASSED] 54 VFs
[08:57:59] [PASSED] 55 VFs
[08:57:59] [PASSED] 56 VFs
[08:57:59] [PASSED] 57 VFs
[08:57:59] [PASSED] 58 VFs
[08:57:59] [PASSED] 59 VFs
[08:57:59] [PASSED] 60 VFs
[08:57:59] [PASSED] 61 VFs
[08:57:59] [PASSED] 62 VFs
[08:57:59] [PASSED] 63 VFs
[08:57:59] ================= [PASSED] fair_doorbells ==================
[08:57:59] ======================== fair_ggtt  ========================
[08:57:59] [PASSED] 1 VF
[08:57:59] [PASSED] 2 VFs
[08:57:59] [PASSED] 3 VFs
[08:57:59] [PASSED] 4 VFs
[08:57:59] [PASSED] 5 VFs
[08:57:59] [PASSED] 6 VFs
[08:57:59] [PASSED] 7 VFs
[08:57:59] [PASSED] 8 VFs
[08:57:59] [PASSED] 9 VFs
[08:57:59] [PASSED] 10 VFs
[08:57:59] [PASSED] 11 VFs
[08:57:59] [PASSED] 12 VFs
[08:57:59] [PASSED] 13 VFs
[08:57:59] [PASSED] 14 VFs
[08:57:59] [PASSED] 15 VFs
[08:57:59] [PASSED] 16 VFs
[08:57:59] [PASSED] 17 VFs
[08:57:59] [PASSED] 18 VFs
[08:57:59] [PASSED] 19 VFs
[08:57:59] [PASSED] 20 VFs
[08:57:59] [PASSED] 21 VFs
[08:57:59] [PASSED] 22 VFs
[08:57:59] [PASSED] 23 VFs
[08:57:59] [PASSED] 24 VFs
[08:57:59] [PASSED] 25 VFs
[08:57:59] [PASSED] 26 VFs
[08:57:59] [PASSED] 27 VFs
[08:57:59] [PASSED] 28 VFs
[08:57:59] [PASSED] 29 VFs
[08:57:59] [PASSED] 30 VFs
[08:57:59] [PASSED] 31 VFs
[08:57:59] [PASSED] 32 VFs
[08:57:59] [PASSED] 33 VFs
[08:57:59] [PASSED] 34 VFs
[08:57:59] [PASSED] 35 VFs
[08:57:59] [PASSED] 36 VFs
[08:57:59] [PASSED] 37 VFs
[08:57:59] [PASSED] 38 VFs
[08:57:59] [PASSED] 39 VFs
[08:57:59] [PASSED] 40 VFs
[08:57:59] [PASSED] 41 VFs
[08:57:59] [PASSED] 42 VFs
[08:57:59] [PASSED] 43 VFs
[08:57:59] [PASSED] 44 VFs
[08:57:59] [PASSED] 45 VFs
[08:57:59] [PASSED] 46 VFs
[08:57:59] [PASSED] 47 VFs
[08:57:59] [PASSED] 48 VFs
[08:57:59] [PASSED] 49 VFs
[08:57:59] [PASSED] 50 VFs
[08:57:59] [PASSED] 51 VFs
[08:57:59] [PASSED] 52 VFs
[08:57:59] [PASSED] 53 VFs
[08:57:59] [PASSED] 54 VFs
[08:57:59] [PASSED] 55 VFs
[08:57:59] [PASSED] 56 VFs
[08:57:59] [PASSED] 57 VFs
[08:57:59] [PASSED] 58 VFs
[08:57:59] [PASSED] 59 VFs
[08:57:59] [PASSED] 60 VFs
[08:57:59] [PASSED] 61 VFs
[08:57:59] [PASSED] 62 VFs
[08:57:59] [PASSED] 63 VFs
[08:57:59] ==================== [PASSED] fair_ggtt ====================
[08:57:59] ======================== fair_vram  ========================
[08:57:59] [PASSED] 1 VF
[08:57:59] [PASSED] 2 VFs
[08:57:59] [PASSED] 3 VFs
[08:57:59] [PASSED] 4 VFs
[08:57:59] [PASSED] 5 VFs
[08:57:59] [PASSED] 6 VFs
[08:57:59] [PASSED] 7 VFs
[08:57:59] [PASSED] 8 VFs
[08:57:59] [PASSED] 9 VFs
[08:57:59] [PASSED] 10 VFs
[08:57:59] [PASSED] 11 VFs
[08:57:59] [PASSED] 12 VFs
[08:57:59] [PASSED] 13 VFs
[08:57:59] [PASSED] 14 VFs
[08:57:59] [PASSED] 15 VFs
[08:57:59] [PASSED] 16 VFs
[08:57:59] [PASSED] 17 VFs
[08:57:59] [PASSED] 18 VFs
[08:57:59] [PASSED] 19 VFs
[08:57:59] [PASSED] 20 VFs
[08:57:59] [PASSED] 21 VFs
[08:57:59] [PASSED] 22 VFs
[08:57:59] [PASSED] 23 VFs
[08:57:59] [PASSED] 24 VFs
[08:57:59] [PASSED] 25 VFs
[08:57:59] [PASSED] 26 VFs
[08:57:59] [PASSED] 27 VFs
[08:57:59] [PASSED] 28 VFs
[08:57:59] [PASSED] 29 VFs
[08:57:59] [PASSED] 30 VFs
[08:57:59] [PASSED] 31 VFs
[08:57:59] [PASSED] 32 VFs
[08:57:59] [PASSED] 33 VFs
[08:57:59] [PASSED] 34 VFs
[08:57:59] [PASSED] 35 VFs
[08:57:59] [PASSED] 36 VFs
[08:57:59] [PASSED] 37 VFs
[08:57:59] [PASSED] 38 VFs
[08:57:59] [PASSED] 39 VFs
[08:57:59] [PASSED] 40 VFs
[08:57:59] [PASSED] 41 VFs
[08:57:59] [PASSED] 42 VFs
[08:57:59] [PASSED] 43 VFs
[08:57:59] [PASSED] 44 VFs
[08:57:59] [PASSED] 45 VFs
[08:57:59] [PASSED] 46 VFs
[08:57:59] [PASSED] 47 VFs
[08:57:59] [PASSED] 48 VFs
[08:57:59] [PASSED] 49 VFs
[08:57:59] [PASSED] 50 VFs
[08:57:59] [PASSED] 51 VFs
[08:57:59] [PASSED] 52 VFs
[08:57:59] [PASSED] 53 VFs
[08:57:59] [PASSED] 54 VFs
[08:57:59] [PASSED] 55 VFs
[08:57:59] [PASSED] 56 VFs
[08:57:59] [PASSED] 57 VFs
[08:57:59] [PASSED] 58 VFs
[08:57:59] [PASSED] 59 VFs
[08:57:59] [PASSED] 60 VFs
[08:57:59] [PASSED] 61 VFs
[08:57:59] [PASSED] 62 VFs
[08:57:59] [PASSED] 63 VFs
[08:57:59] ==================== [PASSED] fair_vram ====================
[08:57:59] ================== [PASSED] pf_gt_config ===================
[08:57:59] ===================== lmtt (1 subtest) =====================
[08:57:59] ======================== test_ops  =========================
[08:57:59] [PASSED] 2-level
[08:57:59] [PASSED] multi-level
[08:57:59] ==================== [PASSED] test_ops =====================
[08:57:59] ====================== [PASSED] lmtt =======================
[08:57:59] ================= pf_service (11 subtests) =================
[08:57:59] [PASSED] pf_negotiate_any
[08:57:59] [PASSED] pf_negotiate_base_match
[08:57:59] [PASSED] pf_negotiate_base_newer
[08:57:59] [PASSED] pf_negotiate_base_next
[08:57:59] [SKIPPED] pf_negotiate_base_older
[08:57:59] [PASSED] pf_negotiate_base_prev
[08:57:59] [PASSED] pf_negotiate_latest_match
[08:57:59] [PASSED] pf_negotiate_latest_newer
[08:57:59] [PASSED] pf_negotiate_latest_next
[08:57:59] [SKIPPED] pf_negotiate_latest_older
[08:57:59] [SKIPPED] pf_negotiate_latest_prev
[08:57:59] =================== [PASSED] pf_service ====================
[08:57:59] ================= xe_guc_g2g (2 subtests) ==================
[08:57:59] ============== xe_live_guc_g2g_kunit_default  ==============
[08:57:59] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:57:59] ============== xe_live_guc_g2g_kunit_allmem  ===============
[08:57:59] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:57:59] =================== [SKIPPED] xe_guc_g2g ===================
[08:57:59] =================== xe_mocs (2 subtests) ===================
[08:57:59] ================ xe_live_mocs_kernel_kunit  ================
[08:57:59] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:57:59] ================ xe_live_mocs_reset_kunit  =================
[08:57:59] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:57:59] ==================== [SKIPPED] xe_mocs =====================
[08:57:59] ================= xe_migrate (2 subtests) ==================
[08:57:59] ================= xe_migrate_sanity_kunit  =================
[08:57:59] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:57:59] ================== xe_validate_ccs_kunit  ==================
[08:57:59] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:57:59] =================== [SKIPPED] xe_migrate ===================
[08:57:59] ================== xe_dma_buf (1 subtest) ==================
[08:57:59] ==================== xe_dma_buf_kunit  =====================
[08:57:59] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:57:59] =================== [SKIPPED] xe_dma_buf ===================
[08:57:59] ================= xe_bo_shrink (1 subtest) =================
[08:57:59] =================== xe_bo_shrink_kunit  ====================
[08:57:59] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:57:59] ================== [SKIPPED] xe_bo_shrink ==================
[08:57:59] ==================== xe_bo (2 subtests) ====================
[08:57:59] ================== xe_ccs_migrate_kunit  ===================
[08:57:59] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:57:59] ==================== xe_bo_evict_kunit  ====================
[08:57:59] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:57:59] ===================== [SKIPPED] xe_bo ======================
[08:57:59] ==================== args (13 subtests) ====================
[08:57:59] [PASSED] count_args_test
[08:57:59] [PASSED] call_args_example
[08:57:59] [PASSED] call_args_test
[08:57:59] [PASSED] drop_first_arg_example
[08:57:59] [PASSED] drop_first_arg_test
[08:57:59] [PASSED] first_arg_example
[08:57:59] [PASSED] first_arg_test
[08:57:59] [PASSED] last_arg_example
[08:57:59] [PASSED] last_arg_test
[08:57:59] [PASSED] pick_arg_example
[08:57:59] [PASSED] if_args_example
[08:57:59] [PASSED] if_args_test
[08:57:59] [PASSED] sep_comma_example
[08:57:59] ====================== [PASSED] args =======================
[08:57:59] =================== xe_pci (3 subtests) ====================
[08:57:59] ==================== check_graphics_ip  ====================
[08:57:59] [PASSED] 12.00 Xe_LP
[08:57:59] [PASSED] 12.10 Xe_LP+
[08:57:59] [PASSED] 12.55 Xe_HPG
[08:57:59] [PASSED] 12.60 Xe_HPC
[08:57:59] [PASSED] 12.70 Xe_LPG
[08:57:59] [PASSED] 12.71 Xe_LPG
[08:57:59] [PASSED] 12.74 Xe_LPG+
[08:57:59] [PASSED] 20.01 Xe2_HPG
[08:57:59] [PASSED] 20.02 Xe2_HPG
[08:57:59] [PASSED] 20.04 Xe2_LPG
[08:57:59] [PASSED] 30.00 Xe3_LPG
[08:57:59] [PASSED] 30.01 Xe3_LPG
[08:57:59] [PASSED] 30.03 Xe3_LPG
[08:57:59] [PASSED] 30.04 Xe3_LPG
[08:57:59] [PASSED] 30.05 Xe3_LPG
[08:57:59] [PASSED] 35.10 Xe3p_LPG
[08:57:59] [PASSED] 35.11 Xe3p_XPC
[08:57:59] ================ [PASSED] check_graphics_ip ================
[08:57:59] ===================== check_media_ip  ======================
[08:57:59] [PASSED] 12.00 Xe_M
[08:57:59] [PASSED] 12.55 Xe_HPM
[08:57:59] [PASSED] 13.00 Xe_LPM+
[08:57:59] [PASSED] 13.01 Xe2_HPM
[08:57:59] [PASSED] 20.00 Xe2_LPM
[08:57:59] [PASSED] 30.00 Xe3_LPM
[08:57:59] [PASSED] 30.02 Xe3_LPM
[08:57:59] [PASSED] 35.00 Xe3p_LPM
[08:57:59] [PASSED] 35.03 Xe3p_HPM
[08:57:59] ================= [PASSED] check_media_ip ==================
[08:57:59] =================== check_platform_desc  ===================
[08:57:59] [PASSED] 0x9A60 (TIGERLAKE)
[08:57:59] [PASSED] 0x9A68 (TIGERLAKE)
[08:57:59] [PASSED] 0x9A70 (TIGERLAKE)
[08:57:59] [PASSED] 0x9A40 (TIGERLAKE)
[08:57:59] [PASSED] 0x9A49 (TIGERLAKE)
[08:57:59] [PASSED] 0x9A59 (TIGERLAKE)
[08:57:59] [PASSED] 0x9A78 (TIGERLAKE)
[08:57:59] [PASSED] 0x9AC0 (TIGERLAKE)
[08:57:59] [PASSED] 0x9AC9 (TIGERLAKE)
[08:57:59] [PASSED] 0x9AD9 (TIGERLAKE)
[08:57:59] [PASSED] 0x9AF8 (TIGERLAKE)
[08:57:59] [PASSED] 0x4C80 (ROCKETLAKE)
[08:57:59] [PASSED] 0x4C8A (ROCKETLAKE)
[08:57:59] [PASSED] 0x4C8B (ROCKETLAKE)
[08:57:59] [PASSED] 0x4C8C (ROCKETLAKE)
[08:57:59] [PASSED] 0x4C90 (ROCKETLAKE)
[08:57:59] [PASSED] 0x4C9A (ROCKETLAKE)
[08:57:59] [PASSED] 0x4680 (ALDERLAKE_S)
[08:57:59] [PASSED] 0x4682 (ALDERLAKE_S)
[08:57:59] [PASSED] 0x4688 (ALDERLAKE_S)
[08:57:59] [PASSED] 0x468A (ALDERLAKE_S)
[08:57:59] [PASSED] 0x468B (ALDERLAKE_S)
[08:57:59] [PASSED] 0x4690 (ALDERLAKE_S)
[08:57:59] [PASSED] 0x4692 (ALDERLAKE_S)
[08:57:59] [PASSED] 0x4693 (ALDERLAKE_S)
[08:57:59] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46AA (ALDERLAKE_P)
[08:57:59] [PASSED] 0x462A (ALDERLAKE_P)
[08:57:59] [PASSED] 0x4626 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x4628 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46B0 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:57:59] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:57:59] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:57:59] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:57:59] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:57:59] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:57:59] [PASSED] 0xA721 (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA720 (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:57:59] [PASSED] 0xA780 (ALDERLAKE_S)
[08:57:59] [PASSED] 0xA781 (ALDERLAKE_S)
[08:57:59] [PASSED] 0xA782 (ALDERLAKE_S)
[08:57:59] [PASSED] 0xA783 (ALDERLAKE_S)
[08:57:59] [PASSED] 0xA788 (ALDERLAKE_S)
[08:57:59] [PASSED] 0xA789 (ALDERLAKE_S)
[08:57:59] [PASSED] 0xA78A (ALDERLAKE_S)
[08:57:59] [PASSED] 0xA78B (ALDERLAKE_S)
[08:57:59] [PASSED] 0x4905 (DG1)
[08:57:59] [PASSED] 0x4906 (DG1)
[08:57:59] [PASSED] 0x4907 (DG1)
[08:57:59] [PASSED] 0x4908 (DG1)
[08:57:59] [PASSED] 0x4909 (DG1)
[08:57:59] [PASSED] 0x56C0 (DG2)
[08:57:59] [PASSED] 0x56C2 (DG2)
[08:57:59] [PASSED] 0x56C1 (DG2)
[08:57:59] [PASSED] 0x7D51 (METEORLAKE)
[08:57:59] [PASSED] 0x7DD1 (METEORLAKE)
[08:57:59] [PASSED] 0x7D41 (METEORLAKE)
[08:57:59] [PASSED] 0x7D67 (METEORLAKE)
[08:57:59] [PASSED] 0xB640 (METEORLAKE)
[08:57:59] [PASSED] 0x56A0 (DG2)
[08:57:59] [PASSED] 0x56A1 (DG2)
[08:57:59] [PASSED] 0x56A2 (DG2)
[08:57:59] [PASSED] 0x56BE (DG2)
[08:57:59] [PASSED] 0x56BF (DG2)
[08:57:59] [PASSED] 0x5690 (DG2)
[08:57:59] [PASSED] 0x5691 (DG2)
[08:57:59] [PASSED] 0x5692 (DG2)
[08:57:59] [PASSED] 0x56A5 (DG2)
[08:57:59] [PASSED] 0x56A6 (DG2)
[08:57:59] [PASSED] 0x56B0 (DG2)
[08:57:59] [PASSED] 0x56B1 (DG2)
[08:57:59] [PASSED] 0x56BA (DG2)
[08:57:59] [PASSED] 0x56BB (DG2)
[08:57:59] [PASSED] 0x56BC (DG2)
[08:57:59] [PASSED] 0x56BD (DG2)
[08:57:59] [PASSED] 0x5693 (DG2)
[08:57:59] [PASSED] 0x5694 (DG2)
[08:57:59] [PASSED] 0x5695 (DG2)
[08:57:59] [PASSED] 0x56A3 (DG2)
[08:57:59] [PASSED] 0x56A4 (DG2)
[08:57:59] [PASSED] 0x56B2 (DG2)
[08:57:59] [PASSED] 0x56B3 (DG2)
[08:57:59] [PASSED] 0x5696 (DG2)
[08:57:59] [PASSED] 0x5697 (DG2)
[08:57:59] [PASSED] 0xB69 (PVC)
[08:57:59] [PASSED] 0xB6E (PVC)
[08:57:59] [PASSED] 0xBD4 (PVC)
[08:57:59] [PASSED] 0xBD5 (PVC)
[08:57:59] [PASSED] 0xBD6 (PVC)
[08:57:59] [PASSED] 0xBD7 (PVC)
[08:57:59] [PASSED] 0xBD8 (PVC)
[08:57:59] [PASSED] 0xBD9 (PVC)
[08:57:59] [PASSED] 0xBDA (PVC)
[08:57:59] [PASSED] 0xBDB (PVC)
[08:57:59] [PASSED] 0xBE0 (PVC)
[08:57:59] [PASSED] 0xBE1 (PVC)
[08:57:59] [PASSED] 0xBE5 (PVC)
[08:57:59] [PASSED] 0x7D40 (METEORLAKE)
[08:57:59] [PASSED] 0x7D45 (METEORLAKE)
[08:57:59] [PASSED] 0x7D55 (METEORLAKE)
[08:57:59] [PASSED] 0x7D60 (METEORLAKE)
[08:57:59] [PASSED] 0x7DD5 (METEORLAKE)
[08:57:59] [PASSED] 0x6420 (LUNARLAKE)
[08:57:59] [PASSED] 0x64A0 (LUNARLAKE)
[08:57:59] [PASSED] 0x64B0 (LUNARLAKE)
[08:57:59] [PASSED] 0xE202 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE209 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE20B (BATTLEMAGE)
[08:57:59] [PASSED] 0xE20C (BATTLEMAGE)
[08:57:59] [PASSED] 0xE20D (BATTLEMAGE)
[08:57:59] [PASSED] 0xE210 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE211 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE212 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE216 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE220 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE221 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE222 (BATTLEMAGE)
[08:57:59] [PASSED] 0xE223 (BATTLEMAGE)
[08:57:59] [PASSED] 0xB080 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB081 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB082 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB083 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB084 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB085 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB086 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB087 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB08F (PANTHERLAKE)
[08:57:59] [PASSED] 0xB090 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:57:59] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:57:59] [PASSED] 0xFD80 (PANTHERLAKE)
[08:57:59] [PASSED] 0xFD81 (PANTHERLAKE)
[08:57:59] [PASSED] 0xD740 (NOVALAKE_S)
[08:57:59] [PASSED] 0xD741 (NOVALAKE_S)
[08:57:59] [PASSED] 0xD742 (NOVALAKE_S)
[08:57:59] [PASSED] 0xD743 (NOVALAKE_S)
[08:57:59] [PASSED] 0xD744 (NOVALAKE_S)
[08:57:59] [PASSED] 0xD745 (NOVALAKE_S)
[08:57:59] [PASSED] 0x674C (CRESCENTISLAND)
[08:57:59] [PASSED] 0xD750 (NOVALAKE_P)
[08:57:59] [PASSED] 0xD751 (NOVALAKE_P)
[08:57:59] [PASSED] 0xD752 (NOVALAKE_P)
[08:57:59] [PASSED] 0xD753 (NOVALAKE_P)
[08:57:59] [PASSED] 0xD754 (NOVALAKE_P)
[08:57:59] [PASSED] 0xD755 (NOVALAKE_P)
[08:57:59] [PASSED] 0xD756 (NOVALAKE_P)
[08:57:59] [PASSED] 0xD757 (NOVALAKE_P)
[08:57:59] [PASSED] 0xD75F (NOVALAKE_P)
[08:57:59] =============== [PASSED] check_platform_desc ===============
[08:57:59] ===================== [PASSED] xe_pci ======================
[08:57:59] =================== xe_rtp (2 subtests) ====================
[08:57:59] =============== xe_rtp_process_to_sr_tests  ================
[08:57:59] [PASSED] coalesce-same-reg
[08:57:59] [PASSED] no-match-no-add
[08:57:59] [PASSED] match-or
[08:57:59] [PASSED] match-or-xfail
[08:57:59] [PASSED] no-match-no-add-multiple-rules
[08:57:59] [PASSED] two-regs-two-entries
[08:57:59] [PASSED] clr-one-set-other
[08:57:59] [PASSED] set-field
[08:57:59] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[08:57:59] [PASSED] conflict-not-disjoint
[08:57:59] [PASSED] conflict-reg-type
[08:57:59] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:57:59] ================== xe_rtp_process_tests  ===================
[08:57:59] [PASSED] active1
[08:57:59] [PASSED] active2
[08:57:59] [PASSED] active-inactive
[08:57:59] [PASSED] inactive-active
[08:57:59] [PASSED] inactive-1st_or_active-inactive
[08:57:59] [PASSED] inactive-2nd_or_active-inactive
[08:57:59] [PASSED] inactive-last_or_active-inactive
[08:57:59] [PASSED] inactive-no_or_active-inactive
[08:57:59] ============== [PASSED] xe_rtp_process_tests ===============
[08:57:59] ===================== [PASSED] xe_rtp ======================
[08:57:59] ==================== xe_wa (1 subtest) =====================
[08:57:59] ======================== xe_wa_gt  =========================
[08:57:59] [PASSED] TIGERLAKE B0
[08:57:59] [PASSED] DG1 A0
[08:57:59] [PASSED] DG1 B0
[08:57:59] [PASSED] ALDERLAKE_S A0
[08:57:59] [PASSED] ALDERLAKE_S B0
[08:57:59] [PASSED] ALDERLAKE_S C0
[08:57:59] [PASSED] ALDERLAKE_S D0
[08:57:59] [PASSED] ALDERLAKE_P A0
[08:57:59] [PASSED] ALDERLAKE_P B0
[08:57:59] [PASSED] ALDERLAKE_P C0
[08:57:59] [PASSED] ALDERLAKE_S RPLS D0
[08:57:59] [PASSED] ALDERLAKE_P RPLU E0
[08:57:59] [PASSED] DG2 G10 C0
[08:57:59] [PASSED] DG2 G11 B1
[08:57:59] [PASSED] DG2 G12 A1
[08:57:59] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:57:59] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:57:59] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:57:59] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:57:59] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:57:59] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:57:59] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:57:59] ==================== [PASSED] xe_wa_gt =====================
[08:57:59] ====================== [PASSED] xe_wa ======================
[08:57:59] ============================================================
[08:57:59] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[08:57:59] Elapsed time: 35.381s total, 4.152s configuring, 30.612s building, 0.608s running

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/xe/vf: Improve getting clean NULL context (rev2)
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
                   ` (6 preceding siblings ...)
  2026-03-06  8:58 ` ✓ CI.KUnit: success for drm/xe/vf: Improve getting clean NULL context (rev2) Patchwork
@ 2026-03-06  9:35 ` Patchwork
  2026-03-23  9:08   ` Michal Wajdeczko
  2026-03-07  9:40 ` ✗ Xe.CI.FULL: " Patchwork
  8 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2026-03-06  9:35 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/vf: Improve getting clean NULL context (rev2)
URL   : https://patchwork.freedesktop.org/series/162520/
State : failure

== Summary ==

CI Bug Log - changes from xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9_BAT -> xe-pw-162520v2_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-162520v2_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-162520v2_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (14 -> 15)
------------------------------

  Additional (1): bat-pvc-2 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-162520v2_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_module_load@load:
    - bat-pvc-2:          NOTRUN -> [ABORT][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/bat-pvc-2/igt@xe_module_load@load.html

  


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

  * Linux: xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9 -> xe-pw-162520v2

  IGT_8782: eac3b04d1f76b82ac3a183fb293c44e9185d8dba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9: 79792a2fc5d37b5446e543f1de05158ab0f551c9
  xe-pw-162520v2: 162520v2

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/xe/vf: Improve getting clean NULL context (rev2)
  2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
                   ` (7 preceding siblings ...)
  2026-03-06  9:35 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-03-07  9:40 ` Patchwork
  2026-03-23  9:16   ` Michal Wajdeczko
  8 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2026-03-07  9:40 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/vf: Improve getting clean NULL context (rev2)
URL   : https://patchwork.freedesktop.org/series/162520/
State : failure

== Summary ==

CI Bug Log - changes from xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9_FULL -> xe-pw-162520v2_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-162520v2_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-162520v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-162520v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_flip@2x-flip-vs-panning@bc-dp2-hdmi-a3:
    - shard-bmg:          [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-10/igt@kms_flip@2x-flip-vs-panning@bc-dp2-hdmi-a3.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning@bc-dp2-hdmi-a3.html

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

  Here are the changes found in xe-pw-162520v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#1124]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2887]) +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2252]) +4 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][8] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-bmg:          NOTRUN -> [FAIL][9] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_content_protection@atomic-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#6974])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2320]) +2 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2244])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-10/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2311]) +8 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#4141]) +3 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2313]) +7 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#1489])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html

  * igt@kms_psr@psr2-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2234])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_psr@psr2-primary-render.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-lnl:          [PASS][21] -> [FAIL][22] ([Intel XE#6361]) +2 other tests fail
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@kms_sharpness_filter@filter-strength:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#6503])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@kms_sharpness_filter@filter-strength.html

  * igt@xe_eudebug@basic-exec-queues:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#4837])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][25] -> [INCOMPLETE][26] ([Intel XE#6321])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#7136]) +3 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#6874]) +6 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html

  * igt@xe_exec_threads@threads-many-queues:
    - shard-bmg:          NOTRUN -> [FAIL][30] ([Intel XE#7166])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@xe_exec_threads@threads-many-queues.html

  * igt@xe_exec_threads@threads-multi-queue-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#7138]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-rebind.html

  * igt@xe_multigpu_svm@mgpu-migration-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#6964])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@xe_multigpu_svm@mgpu-migration-prefetch.html

  * igt@xe_oa@mmio-triggered-reports-read:
    - shard-bmg:          NOTRUN -> [FAIL][33] ([Intel XE#7522] / [Intel XE#7555])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-10/igt@xe_oa@mmio-triggered-reports-read.html

  * igt@xe_oa@mmio-triggered-reports-read@oam-3:
    - shard-bmg:          NOTRUN -> [FAIL][34] ([Intel XE#7522])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-10/igt@xe_oa@mmio-triggered-reports-read@oam-3.html

  * igt@xe_pm@d3cold-i2c:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#5694] / [Intel XE#7370])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-4/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm_residency@aspm_link_residency:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#7258])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-3/igt@xe_pm_residency@aspm_link_residency.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-5/igt@xe_pm_residency@aspm_link_residency.html

  * igt@xe_query@multigpu-query-invalid-query:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#944])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-10/igt@xe_query@multigpu-query-invalid-query.html

  
#### Possible fixes ####

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
    - shard-lnl:          [FAIL][39] ([Intel XE#3718] / [Intel XE#7265]) -> [PASS][40] +1 other test pass
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-lnl-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][41] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][42] +1 other test pass
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@plain-flip-fb-recreate:
    - shard-bmg:          [DMESG-WARN][43] ([Intel XE#5208]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-9/igt@kms_flip@plain-flip-fb-recreate.html

  * igt@kms_flip@plain-flip-fb-recreate@c-dp2:
    - shard-bmg:          [DMESG-WARN][45] -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-dp2.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-9/igt@kms_flip@plain-flip-fb-recreate@c-dp2.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][47] ([Intel XE#7340]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html

  
#### Warnings ####

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][49] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][50] ([Intel XE#2426] / [Intel XE#5848])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][51] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][52] ([Intel XE#5466])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258
  [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7522
  [Intel XE#7555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7555
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9 -> xe-pw-162520v2

  IGT_8782: eac3b04d1f76b82ac3a183fb293c44e9185d8dba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9: 79792a2fc5d37b5446e543f1de05158ab0f551c9
  xe-pw-162520v2: 162520v2

== Logs ==

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

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

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

* Re: [PATCH 1/3] drm/xe: Add PR_CTR_CTRL/THRSH register definitions
  2026-03-03 20:13 ` [PATCH 1/3] drm/xe: Add PR_CTR_CTRL/THRSH register definitions Michal Wajdeczko
@ 2026-03-23  8:51   ` Michał Winiarski
  0 siblings, 0 replies; 15+ messages in thread
From: Michał Winiarski @ 2026-03-23  8:51 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

On Tue, Mar 03, 2026 at 09:13:52PM +0100, Michal Wajdeczko wrote:
> The Watchdog Counter Control and Watchdog Counter Threshold
> registers are needed for watchdog programming. This watchdog
> will generate the "Media Hang Notify" interrupt.
> 
> Bspec: 45999, 46000
> Bspec: 60373, 60374
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>

Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>

Thanks,
-Michał

> ---
>  drivers/gpu/drm/xe/regs/xe_engine_regs.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/regs/xe_engine_regs.h b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> index dc5a4fafa70c..1b4a7e9a703d 100644
> --- a/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_engine_regs.h
> @@ -132,6 +132,14 @@
>  #define RING_BBADDR(base)			XE_REG((base) + 0x140)
>  #define RING_BBADDR_UDW(base)			XE_REG((base) + 0x168)
>  
> +#define PR_CTR_CTRL(base)			XE_REG((base) + 0x178)
> +#define   CTR_COUNT_SELECT_FF			REG_BIT(31)
> +#define   CTR_LOGIC_OP_MASK			REG_GENMASK(30, 0)
> +#define     CTR_START				0
> +#define     CTR_STOP				1
> +#define   CTR_LOGIC_OP(OP)			REG_FIELD_PREP(CTR_LOGIC_OP_MASK, CTR_##OP)
> +#define PR_CTR_THRSH(base)			XE_REG((base) + 0x17c)
> +
>  #define BCS_SWCTRL(base)			XE_REG((base) + 0x200, XE_REG_OPTION_MASKED)
>  #define   BCS_SWCTRL_DISABLE_256B		REG_BIT(2)
>  
> -- 
> 2.47.1
> 

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

* Re: [PATCH 2/3] drm/xe: Add MI_SEMAPHORE_WAIT command definition
  2026-03-03 20:13 ` [PATCH 2/3] drm/xe: Add MI_SEMAPHORE_WAIT command definition Michal Wajdeczko
@ 2026-03-23  8:53   ` Michał Winiarski
  0 siblings, 0 replies; 15+ messages in thread
From: Michał Winiarski @ 2026-03-23  8:53 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

On Tue, Mar 03, 2026 at 09:13:53PM +0100, Michal Wajdeczko wrote:
> This command supports memory based Semaphore WAIT. Memory based
> semaphores will be used for synchronization between the Producer
> and the Consumer contexts. Producer and Consumer Contexts could
> be running on different engines or on the same engine inside GT.
> 
> Bspec: 45749, 60244
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>

Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>

Thanks,
-Michał

> ---
>  drivers/gpu/drm/xe/instructions/xe_mi_commands.h | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/instructions/xe_mi_commands.h b/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
> index c47b290e0e9f..29569eff1af3 100644
> --- a/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
> +++ b/drivers/gpu/drm/xe/instructions/xe_mi_commands.h
> @@ -34,6 +34,19 @@
>  #define MI_FORCE_WAKEUP			__MI_INSTR(0x1D)
>  #define MI_MATH(n)			(__MI_INSTR(0x1A) | XE_INSTR_NUM_DW((n) + 1))
>  
> +#define MI_SEMAPHORE_WAIT		(__MI_INSTR(0x1c) | XE_INSTR_NUM_DW(5))
> +#define   MI_SEMW_GGTT			REG_BIT(22)
> +#define   MI_SEMW_POLL			REG_BIT(15)
> +#define   MI_SEMW_COMPARE_OP_MASK	REG_GENMASK(14, 12)
> +#define     COMPARE_OP_SAD_GT_SDD	0
> +#define     COMPARE_OP_SAD_GTE_SDD	1
> +#define     COMPARE_OP_SAD_LT_SDD	2
> +#define     COMPARE_OP_SAD_LTE_SDD	3
> +#define     COMPARE_OP_SAD_EQ_SDD	4
> +#define     COMPARE_OP_SAD_NEQ_SDD	5
> +#define   MI_SEMW_COMPARE(OP)		REG_FIELD_PREP(MI_SEMW_COMPARE_OP_MASK, COMPARE_OP_##OP)
> +#define   MI_SEMW_TOKEN(token)		REG_FIELD_PREP(REG_GENMASK(9, 2), (token))
> +
>  #define MI_STORE_DATA_IMM		__MI_INSTR(0x20)
>  #define   MI_SDI_GGTT			REG_BIT(22)
>  #define   MI_SDI_LEN_DW			GENMASK(9, 0)
> -- 
> 2.47.1
> 

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

* Re: [PATCH 3/3] drm/xe/vf: Improve getting clean NULL context
  2026-03-03 20:13 ` [PATCH 3/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
@ 2026-03-23  9:01   ` Michał Winiarski
  0 siblings, 0 replies; 15+ messages in thread
From: Michał Winiarski @ 2026-03-23  9:01 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

On Tue, Mar 03, 2026 at 09:13:54PM +0100, Michal Wajdeczko wrote:
> There is a small risk that when fetching a NULL context image the
> VF may get a tweaked context image prepared by another VF that was
> previously running on the engine before the GuC scheduler switched
> the VFs.
> 
> To avoid that risk, without forcing GuC scheduler to trigger costly
> engine reset on every VF switch, use a watchdog mechanism that when
> configured with impossible condition, triggers an interrupt, which
> GuC will handle by doing an engine reset. Also adjust job size to
> account for additional dwords with watchdog setup.
> 
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>

Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>

Thanks,
-Michał

> ---
>  drivers/gpu/drm/xe/xe_gt.c              |  9 ++++--
>  drivers/gpu/drm/xe/xe_ring_ops.c        | 37 +++++++++++++++++++++++++
>  drivers/gpu/drm/xe/xe_ring_ops_types.h  |  2 +-
>  drivers/gpu/drm/xe/xe_sched_job_types.h |  2 ++
>  4 files changed, 46 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
> index b455af1e6072..cf639729a22d 100644
> --- a/drivers/gpu/drm/xe/xe_gt.c
> +++ b/drivers/gpu/drm/xe/xe_gt.c
> @@ -169,7 +169,7 @@ static void xe_gt_enable_comp_1wcoh(struct xe_gt *gt)
>  static void gt_reset_worker(struct work_struct *w);
>  
>  static int emit_job_sync(struct xe_exec_queue *q, struct xe_bb *bb,
> -			 long timeout_jiffies)
> +			 long timeout_jiffies, bool force_reset)
>  {
>  	struct xe_sched_job *job;
>  	struct dma_fence *fence;
> @@ -179,6 +179,8 @@ static int emit_job_sync(struct xe_exec_queue *q, struct xe_bb *bb,
>  	if (IS_ERR(job))
>  		return PTR_ERR(job);
>  
> +	job->ring_ops_force_reset = force_reset;
> +
>  	xe_sched_job_arm(job);
>  	fence = dma_fence_get(&job->drm.s_fence->finished);
>  	xe_sched_job_push(job);
> @@ -202,7 +204,7 @@ static int emit_nop_job(struct xe_gt *gt, struct xe_exec_queue *q)
>  	if (IS_ERR(bb))
>  		return PTR_ERR(bb);
>  
> -	ret = emit_job_sync(q, bb, HZ);
> +	ret = emit_job_sync(q, bb, HZ, false);
>  	xe_bb_free(bb, NULL);
>  
>  	return ret;
> @@ -367,7 +369,8 @@ static int emit_wa_job(struct xe_gt *gt, struct xe_exec_queue *q)
>  
>  	bb->len = cs - bb->cs;
>  
> -	ret = emit_job_sync(q, bb, HZ);
> +	/* only VFs need to trigger reset to get a clean NULL context */
> +	ret = emit_job_sync(q, bb, HZ, IS_SRIOV_VF(gt_to_xe(gt)));
>  
>  	xe_bb_free(bb, NULL);
>  
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> index 53d420d72164..bce7d93ce3a3 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> @@ -256,6 +256,32 @@ static int emit_copy_timestamp(struct xe_device *xe, struct xe_lrc *lrc,
>  	return i;
>  }
>  
> +static int emit_fake_watchdog(struct xe_lrc *lrc, u32 *dw, int i)
> +{
> +	/*
> +	 * Setup a watchdog with impossible condition to always trigger an
> +	 * hardware interrupt that would force the GuC to reset the engine.
> +	 */
> +
> +	dw[i++] = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(2) | MI_LRI_LRM_CS_MMIO;
> +	dw[i++] = PR_CTR_THRSH(0).addr;
> +	dw[i++] = 2; /* small threshold */
> +	dw[i++] = PR_CTR_CTRL(0).addr;
> +	dw[i++] = CTR_LOGIC_OP(START);
> +
> +	dw[i++] = MI_SEMAPHORE_WAIT | MI_SEMW_GGTT | MI_SEMW_POLL | MI_SEMW_COMPARE(SAD_EQ_SDD);
> +	dw[i++] = 0xdead; /* this should never be seen */
> +	dw[i++] = lower_32_bits(xe_lrc_ggtt_addr(lrc));
> +	dw[i++] = upper_32_bits(xe_lrc_ggtt_addr(lrc));
> +	dw[i++] = 0; /* unused token */
> +
> +	dw[i++] = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1) | MI_LRI_LRM_CS_MMIO;
> +	dw[i++] = PR_CTR_CTRL(0).addr;
> +	dw[i++] = CTR_LOGIC_OP(STOP);
> +
> +	return i;
> +}
> +
>  /* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
>  static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
>  				    u64 batch_addr, u32 *head, u32 seqno)
> @@ -266,6 +292,9 @@ static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc
>  
>  	*head = lrc->ring.tail;
>  
> +	if (job->ring_ops_force_reset)
> +		i = emit_fake_watchdog(lrc, dw, i);
> +
>  	i = emit_copy_timestamp(gt_to_xe(gt), lrc, dw, i);
>  
>  	if (job->ring_ops_flush_tlb) {
> @@ -324,6 +353,9 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
>  
>  	*head = lrc->ring.tail;
>  
> +	if (job->ring_ops_force_reset)
> +		i = emit_fake_watchdog(lrc, dw, i);
> +
>  	i = emit_copy_timestamp(xe, lrc, dw, i);
>  
>  	dw[i++] = preparser_disable(true);
> @@ -381,6 +413,9 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>  
>  	*head = lrc->ring.tail;
>  
> +	if (job->ring_ops_force_reset)
> +		i = emit_fake_watchdog(lrc, dw, i);
> +
>  	i = emit_copy_timestamp(xe, lrc, dw, i);
>  
>  	dw[i++] = preparser_disable(true);
> @@ -433,6 +468,8 @@ static void emit_migration_job_gen12(struct xe_sched_job *job,
>  
>  	*head = lrc->ring.tail;
>  
> +	xe_gt_assert(gt, !job->ring_ops_force_reset);
> +
>  	i = emit_copy_timestamp(xe, lrc, dw, i);
>  
>  	i = emit_store_imm_ggtt(saddr, seqno, dw, i);
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops_types.h b/drivers/gpu/drm/xe/xe_ring_ops_types.h
> index d7e3e150a9a5..a42a465ac438 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops_types.h
> +++ b/drivers/gpu/drm/xe/xe_ring_ops_types.h
> @@ -8,7 +8,7 @@
>  
>  struct xe_sched_job;
>  
> -#define MAX_JOB_SIZE_DW 58
> +#define MAX_JOB_SIZE_DW 72
>  #define MAX_JOB_SIZE_BYTES (MAX_JOB_SIZE_DW * 4)
>  
>  /**
> diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
> index 13c2970e81a8..0490b1247a6e 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job_types.h
> +++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
> @@ -63,6 +63,8 @@ struct xe_sched_job {
>  	u64 sample_timestamp;
>  	/** @ring_ops_flush_tlb: The ring ops need to flush TLB before payload. */
>  	bool ring_ops_flush_tlb;
> +	/** @ring_ops_force_reset: The ring ops need to trigger a reset before payload. */
> +	bool ring_ops_force_reset;
>  	/** @ggtt: mapped in ggtt. */
>  	bool ggtt;
>  	/** @restore_replay: job being replayed for restore */
> -- 
> 2.47.1
> 

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

* Re: ✗ Xe.CI.BAT: failure for drm/xe/vf: Improve getting clean NULL context (rev2)
  2026-03-06  9:35 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-03-23  9:08   ` Michal Wajdeczko
  0 siblings, 0 replies; 15+ messages in thread
From: Michal Wajdeczko @ 2026-03-23  9:08 UTC (permalink / raw)
  To: intel-xe



On 3/6/2026 10:35 AM, Patchwork wrote:
> *Patch Details*
> *Series:*	drm/xe/vf: Improve getting clean NULL context (rev2)
> *URL:*	https://patchwork.freedesktop.org/series/162520/ <https://patchwork.freedesktop.org/series/162520/>
> *State:*	failure
> *Details:*	https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/index.html <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/index.html>
> 
> 
>   CI Bug Log - changes from xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9_BAT -> xe-pw-162520v2_BAT
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with xe-pw-162520v2_BAT absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-162520v2_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
> 
> 
>     Participating hosts (14 -> 15)
> 
> Additional (1): bat-pvc-2
> 
> 
>     Possible new issues
> 
> Here are the unknown changes that may have been introduced in xe-pw-162520v2_BAT:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   * igt@xe_module_load@load:
>       o bat-pvc-2: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/bat-pvc-2/igt@xe_module_load@load.html>

this is just an old PVC used by the CI:

<6> [125.688216] xe 0000:aa:00.0: [drm] Pre-production hardware detected.
<3> [125.688218] xe 0000:aa:00.0: [drm] *ERROR* Pre-production workarounds for this platform have already been removed.

> 
> 
>     Build changes
> 
>   * Linux: xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9 -> xe-pw-162520v2
> 
> IGT_8782: eac3b04d1f76b82ac3a183fb293c44e9185d8dba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9: 79792a2fc5d37b5446e543f1de05158ab0f551c9
> xe-pw-162520v2: 162520v2
> 


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

* Re: ✗ Xe.CI.FULL: failure for drm/xe/vf: Improve getting clean NULL context (rev2)
  2026-03-07  9:40 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-03-23  9:16   ` Michal Wajdeczko
  0 siblings, 0 replies; 15+ messages in thread
From: Michal Wajdeczko @ 2026-03-23  9:16 UTC (permalink / raw)
  To: intel-xe



On 3/7/2026 10:40 AM, Patchwork wrote:
> *Patch Details*
> *Series:*	drm/xe/vf: Improve getting clean NULL context (rev2)
> *URL:*	https://patchwork.freedesktop.org/series/162520/ <https://patchwork.freedesktop.org/series/162520/>
> *State:*	failure
> *Details:*	https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/index.html <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/index.html>
> 
> 
>   CI Bug Log - changes from xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9_FULL -> xe-pw-162520v2_FULL
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with xe-pw-162520v2_FULL absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-162520v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
> 
> 
>     Participating hosts (2 -> 2)
> 
> No changes in participating hosts
> 
> 
>     Possible new issues
> 
> Here are the unknown changes that may have been introduced in xe-pw-162520v2_FULL:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions

only in KMS tests which are n/a for VFs anyway

> 
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor-atomic:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html>

(kms_cursor_legacy:2687) CRITICAL: Test assertion failure function flip_vs_cursor, file ../tests/kms_cursor_legacy.c:1035:
(kms_cursor_legacy:2687) CRITICAL: Failed assertion: igt_crtc_get_vblank(crtc, 0) <= vblank_start + 1
(kms_cursor_legacy:2687) CRITICAL: error: 1693 > 1692

>   *
> 
>     igt@kms_flip@2x-flip-vs-panning@bc-dp2-hdmi-a3:
> 
>       o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-4673-79792a2fc5d37b5446e543f1de05158ab0f551c9/shard-bmg-10/igt@kms_flip@2x-flip-vs-panning@bc-dp2-hdmi-a3.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162520v2/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning@bc-dp2-hdmi-a3.html> +1 other test incomplete

(no logs)



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

end of thread, other threads:[~2026-03-23  9:16 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-03 20:13 [PATCH 0/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
2026-03-03 20:13 ` [PATCH 1/3] drm/xe: Add PR_CTR_CTRL/THRSH register definitions Michal Wajdeczko
2026-03-23  8:51   ` Michał Winiarski
2026-03-03 20:13 ` [PATCH 2/3] drm/xe: Add MI_SEMAPHORE_WAIT command definition Michal Wajdeczko
2026-03-23  8:53   ` Michał Winiarski
2026-03-03 20:13 ` [PATCH 3/3] drm/xe/vf: Improve getting clean NULL context Michal Wajdeczko
2026-03-23  9:01   ` Michał Winiarski
2026-03-03 20:21 ` ✓ CI.KUnit: success for " Patchwork
2026-03-03 21:04 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-03-04  7:24 ` ✗ Xe.CI.FULL: " Patchwork
2026-03-06  8:58 ` ✓ CI.KUnit: success for drm/xe/vf: Improve getting clean NULL context (rev2) Patchwork
2026-03-06  9:35 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-03-23  9:08   ` Michal Wajdeczko
2026-03-07  9:40 ` ✗ Xe.CI.FULL: " Patchwork
2026-03-23  9:16   ` Michal Wajdeczko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox