Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
@ 2026-06-18  4:24 Varun Gupta
  2026-06-18  4:31 ` ✓ CI.KUnit: success for " Patchwork
                   ` (25 more replies)
  0 siblings, 26 replies; 29+ messages in thread
From: Varun Gupta @ 2026-06-18  4:24 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, stuart.summers

Add a per-GT debugfs entry 'disable_mtp' that forces thread-group
preemption granularity on Xe2+ RCS/CCS engines by writing CS_CHICKEN1
via MI_LRI into the WA BB of each newly created LRC.

Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_debugfs.c | 32 ++++++++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_gt_types.h   |  8 ++++++++
 drivers/gpu/drm/xe/xe_lrc.c        | 24 ++++++++++++++++++++++
 3 files changed, 64 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index f45306308cd6..e8f7ba6fc3c1 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -334,6 +334,37 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
 }
 DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
 
+static int disable_mtp_get(void *data, u64 *val)
+{
+	struct xe_gt *gt = data;
+
+	*val = gt->disable_mtp;
+
+	return 0;
+}
+
+static int disable_mtp_set(void *data, u64 val)
+{
+	struct xe_gt *gt = data;
+	struct xe_device *xe = gt_to_xe(gt);
+
+	if (GRAPHICS_VER(xe) < 20)
+		return -EOPNOTSUPP;
+
+	if (!(gt->info.engine_mask & (XE_HW_ENGINE_RCS_MASK | XE_HW_ENGINE_CCS_MASK)))
+		return -EOPNOTSUPP;
+
+	gt->disable_mtp = !!val;
+	drm_dbg(&gt_to_xe(gt)->drm, "GT%u: disable_mtp=%u: new LRCs will %s MTP\n",
+		gt->info.id, !!val, !!val ? "disable" : "enable");
+
+	return 0;
+}
+DEFINE_DEBUGFS_ATTRIBUTE(disable_mtp_fops,
+			 disable_mtp_get,
+			 disable_mtp_set,
+			 "%llu\n");
+
 void xe_gt_debugfs_register(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
@@ -366,6 +397,7 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
 	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
 	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
 	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
+	debugfs_create_file("disable_mtp", 0600, root, gt, &disable_mtp_fops);
 
 	drm_debugfs_create_files(vf_safe_debugfs_list,
 				 ARRAY_SIZE(vf_safe_debugfs_list),
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index e5588c88800a..4f6d63b614f9 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -219,6 +219,14 @@ struct xe_gt {
 	 */
 	u32 ccs_mode;
 
+	/**
+	 * @disable_mtp: Force thread-group preemption granularity by disabling
+	 * Mid-Thread Preemption on newly created LRCs.
+	 *
+	 * Xe2+ RCS/CCS only, controlled via debugfs.
+	 */
+	bool disable_mtp;
+
 	/** @usm: unified shared memory state */
 	struct {
 		/**
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3e7c995085d0..893456dad6a5 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1262,6 +1262,29 @@ static ssize_t setup_invalidate_auxccs_wa(struct xe_lrc *lrc,
 	return emit(gt, batch) - batch;
 }
 
+static ssize_t setup_disable_mtp_wa(struct xe_lrc *lrc,
+				    struct xe_hw_engine *hwe,
+				    u32 *batch, size_t max_len)
+{
+	struct xe_gt *gt = lrc->gt;
+	struct xe_device *xe = gt_to_xe(gt);
+	u32 *cmd = batch;
+
+	if (!gt->disable_mtp || GRAPHICS_VER(xe) < 20 ||
+	    (hwe->class != XE_ENGINE_CLASS_RENDER &&
+	     hwe->class != XE_ENGINE_CLASS_COMPUTE))
+		return 0;
+
+	if (xe_gt_WARN_ON(gt, max_len < 3))
+		return -ENOSPC;
+
+	*cmd++ = MI_LOAD_REGISTER_IMM | MI_LRI_LRM_CS_MMIO | MI_LRI_NUM_REGS(1);
+	*cmd++ = CS_CHICKEN1(0).addr;
+	*cmd++ = REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, PREEMPT_GPGPU_THREAD_GROUP_LEVEL);
+
+	return cmd - batch;
+}
+
 struct bo_setup {
 	ssize_t (*setup)(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
 			 u32 *batch, size_t max_size);
@@ -1342,6 +1365,7 @@ int xe_lrc_setup_wa_bb_with_scratch(struct xe_lrc *lrc, struct xe_hw_engine *hwe
 		{ .setup = setup_timestamp_wa },
 		{ .setup = setup_invalidate_state_cache_wa },
 		{ .setup = setup_utilization_wa },
+		{ .setup = setup_disable_mtp_wa },
 		{ .setup = setup_configfs_post_ctx_restore_bb },
 	};
 	struct bo_setup_state state = {
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
@ 2026-06-18  4:31 ` Patchwork
  2026-06-18  5:22 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (24 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-06-18  4:31 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[04:30:29] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:30:33] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[04:31:04] Starting KUnit Kernel (1/1)...
[04:31:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:31:04] ================== guc_buf (11 subtests) ===================
[04:31:04] [PASSED] test_smallest
[04:31:04] [PASSED] test_largest
[04:31:04] [PASSED] test_granular
[04:31:04] [PASSED] test_unique
[04:31:04] [PASSED] test_overlap
[04:31:04] [PASSED] test_reusable
[04:31:04] [PASSED] test_too_big
[04:31:04] [PASSED] test_flush
[04:31:04] [PASSED] test_lookup
[04:31:04] [PASSED] test_data
[04:31:04] [PASSED] test_class
[04:31:04] ===================== [PASSED] guc_buf =====================
[04:31:04] =================== guc_dbm (7 subtests) ===================
[04:31:04] [PASSED] test_empty
[04:31:04] [PASSED] test_default
[04:31:04] ======================== test_size  ========================
[04:31:04] [PASSED] 4
[04:31:04] [PASSED] 8
[04:31:04] [PASSED] 32
[04:31:04] [PASSED] 256
[04:31:04] ==================== [PASSED] test_size ====================
[04:31:04] ======================= test_reuse  ========================
[04:31:04] [PASSED] 4
[04:31:04] [PASSED] 8
[04:31:04] [PASSED] 32
[04:31:04] [PASSED] 256
[04:31:04] =================== [PASSED] test_reuse ====================
[04:31:04] =================== test_range_overlap  ====================
[04:31:04] [PASSED] 4
[04:31:04] [PASSED] 8
[04:31:04] [PASSED] 32
[04:31:04] [PASSED] 256
[04:31:04] =============== [PASSED] test_range_overlap ================
[04:31:04] =================== test_range_compact  ====================
[04:31:04] [PASSED] 4
[04:31:04] [PASSED] 8
[04:31:04] [PASSED] 32
[04:31:04] [PASSED] 256
[04:31:04] =============== [PASSED] test_range_compact ================
[04:31:04] ==================== test_range_spare  =====================
[04:31:04] [PASSED] 4
[04:31:04] [PASSED] 8
[04:31:04] [PASSED] 32
[04:31:04] [PASSED] 256
[04:31:04] ================ [PASSED] test_range_spare =================
[04:31:04] ===================== [PASSED] guc_dbm =====================
[04:31:04] =================== guc_idm (6 subtests) ===================
[04:31:04] [PASSED] bad_init
[04:31:04] [PASSED] no_init
[04:31:04] [PASSED] init_fini
[04:31:04] [PASSED] check_used
[04:31:04] [PASSED] check_quota
[04:31:04] [PASSED] check_all
[04:31:04] ===================== [PASSED] guc_idm =====================
[04:31:04] ================== no_relay (3 subtests) ===================
[04:31:04] [PASSED] xe_drops_guc2pf_if_not_ready
[04:31:04] [PASSED] xe_drops_guc2vf_if_not_ready
[04:31:04] [PASSED] xe_rejects_send_if_not_ready
[04:31:04] ==================== [PASSED] no_relay =====================
[04:31:04] ================== pf_relay (14 subtests) ==================
[04:31:04] [PASSED] pf_rejects_guc2pf_too_short
[04:31:04] [PASSED] pf_rejects_guc2pf_too_long
[04:31:04] [PASSED] pf_rejects_guc2pf_no_payload
[04:31:04] [PASSED] pf_fails_no_payload
[04:31:04] [PASSED] pf_fails_bad_origin
[04:31:04] [PASSED] pf_fails_bad_type
[04:31:04] [PASSED] pf_txn_reports_error
[04:31:04] [PASSED] pf_txn_sends_pf2guc
[04:31:04] [PASSED] pf_sends_pf2guc
[04:31:04] [SKIPPED] pf_loopback_nop
[04:31:04] [SKIPPED] pf_loopback_echo
[04:31:04] [SKIPPED] pf_loopback_fail
[04:31:04] [SKIPPED] pf_loopback_busy
[04:31:04] [SKIPPED] pf_loopback_retry
[04:31:04] ==================== [PASSED] pf_relay =====================
[04:31:04] ================== vf_relay (3 subtests) ===================
[04:31:05] [PASSED] vf_rejects_guc2vf_too_short
[04:31:05] [PASSED] vf_rejects_guc2vf_too_long
[04:31:05] [PASSED] vf_rejects_guc2vf_no_payload
[04:31:05] ==================== [PASSED] vf_relay =====================
[04:31:05] ================ pf_gt_config (9 subtests) =================
[04:31:05] [PASSED] fair_contexts_1vf
[04:31:05] [PASSED] fair_doorbells_1vf
[04:31:05] [PASSED] fair_ggtt_1vf
[04:31:05] ====================== fair_vram_1vf  ======================
[04:31:05] [PASSED] 3.50 GiB
[04:31:05] [PASSED] 11.5 GiB
[04:31:05] [PASSED] 15.5 GiB
[04:31:05] [PASSED] 31.5 GiB
[04:31:05] [PASSED] 63.5 GiB
[04:31:05] [PASSED] 1.91 GiB
[04:31:05] ================== [PASSED] fair_vram_1vf ==================
[04:31:05] ================ fair_vram_1vf_admin_only  =================
[04:31:05] [PASSED] 3.50 GiB
[04:31:05] [PASSED] 11.5 GiB
[04:31:05] [PASSED] 15.5 GiB
[04:31:05] [PASSED] 31.5 GiB
[04:31:05] [PASSED] 63.5 GiB
[04:31:05] [PASSED] 1.91 GiB
[04:31:05] ============ [PASSED] fair_vram_1vf_admin_only =============
[04:31:05] ====================== fair_contexts  ======================
[04:31:05] [PASSED] 1 VF
[04:31:05] [PASSED] 2 VFs
[04:31:05] [PASSED] 3 VFs
[04:31:05] [PASSED] 4 VFs
[04:31:05] [PASSED] 5 VFs
[04:31:05] [PASSED] 6 VFs
[04:31:05] [PASSED] 7 VFs
[04:31:05] [PASSED] 8 VFs
[04:31:05] [PASSED] 9 VFs
[04:31:05] [PASSED] 10 VFs
[04:31:05] [PASSED] 11 VFs
[04:31:05] [PASSED] 12 VFs
[04:31:05] [PASSED] 13 VFs
[04:31:05] [PASSED] 14 VFs
[04:31:05] [PASSED] 15 VFs
[04:31:05] [PASSED] 16 VFs
[04:31:05] [PASSED] 17 VFs
[04:31:05] [PASSED] 18 VFs
[04:31:05] [PASSED] 19 VFs
[04:31:05] [PASSED] 20 VFs
[04:31:05] [PASSED] 21 VFs
[04:31:05] [PASSED] 22 VFs
[04:31:05] [PASSED] 23 VFs
[04:31:05] [PASSED] 24 VFs
[04:31:05] [PASSED] 25 VFs
[04:31:05] [PASSED] 26 VFs
[04:31:05] [PASSED] 27 VFs
[04:31:05] [PASSED] 28 VFs
[04:31:05] [PASSED] 29 VFs
[04:31:05] [PASSED] 30 VFs
[04:31:05] [PASSED] 31 VFs
[04:31:05] [PASSED] 32 VFs
[04:31:05] [PASSED] 33 VFs
[04:31:05] [PASSED] 34 VFs
[04:31:05] [PASSED] 35 VFs
[04:31:05] [PASSED] 36 VFs
[04:31:05] [PASSED] 37 VFs
[04:31:05] [PASSED] 38 VFs
[04:31:05] [PASSED] 39 VFs
[04:31:05] [PASSED] 40 VFs
[04:31:05] [PASSED] 41 VFs
[04:31:05] [PASSED] 42 VFs
[04:31:05] [PASSED] 43 VFs
[04:31:05] [PASSED] 44 VFs
[04:31:05] [PASSED] 45 VFs
[04:31:05] [PASSED] 46 VFs
[04:31:05] [PASSED] 47 VFs
[04:31:05] [PASSED] 48 VFs
[04:31:05] [PASSED] 49 VFs
[04:31:05] [PASSED] 50 VFs
[04:31:05] [PASSED] 51 VFs
[04:31:05] [PASSED] 52 VFs
[04:31:05] [PASSED] 53 VFs
[04:31:05] [PASSED] 54 VFs
[04:31:05] [PASSED] 55 VFs
[04:31:05] [PASSED] 56 VFs
[04:31:05] [PASSED] 57 VFs
[04:31:05] [PASSED] 58 VFs
[04:31:05] [PASSED] 59 VFs
[04:31:05] [PASSED] 60 VFs
[04:31:05] [PASSED] 61 VFs
[04:31:05] [PASSED] 62 VFs
[04:31:05] [PASSED] 63 VFs
[04:31:05] ================== [PASSED] fair_contexts ==================
[04:31:05] ===================== fair_doorbells  ======================
[04:31:05] [PASSED] 1 VF
[04:31:05] [PASSED] 2 VFs
[04:31:05] [PASSED] 3 VFs
[04:31:05] [PASSED] 4 VFs
[04:31:05] [PASSED] 5 VFs
[04:31:05] [PASSED] 6 VFs
[04:31:05] [PASSED] 7 VFs
[04:31:05] [PASSED] 8 VFs
[04:31:05] [PASSED] 9 VFs
[04:31:05] [PASSED] 10 VFs
[04:31:05] [PASSED] 11 VFs
[04:31:05] [PASSED] 12 VFs
[04:31:05] [PASSED] 13 VFs
[04:31:05] [PASSED] 14 VFs
[04:31:05] [PASSED] 15 VFs
[04:31:05] [PASSED] 16 VFs
[04:31:05] [PASSED] 17 VFs
[04:31:05] [PASSED] 18 VFs
[04:31:05] [PASSED] 19 VFs
[04:31:05] [PASSED] 20 VFs
[04:31:05] [PASSED] 21 VFs
[04:31:05] [PASSED] 22 VFs
[04:31:05] [PASSED] 23 VFs
[04:31:05] [PASSED] 24 VFs
[04:31:05] [PASSED] 25 VFs
[04:31:05] [PASSED] 26 VFs
[04:31:05] [PASSED] 27 VFs
[04:31:05] [PASSED] 28 VFs
[04:31:05] [PASSED] 29 VFs
[04:31:05] [PASSED] 30 VFs
[04:31:05] [PASSED] 31 VFs
[04:31:05] [PASSED] 32 VFs
[04:31:05] [PASSED] 33 VFs
[04:31:05] [PASSED] 34 VFs
[04:31:05] [PASSED] 35 VFs
[04:31:05] [PASSED] 36 VFs
[04:31:05] [PASSED] 37 VFs
[04:31:05] [PASSED] 38 VFs
[04:31:05] [PASSED] 39 VFs
[04:31:05] [PASSED] 40 VFs
[04:31:05] [PASSED] 41 VFs
[04:31:05] [PASSED] 42 VFs
[04:31:05] [PASSED] 43 VFs
[04:31:05] [PASSED] 44 VFs
[04:31:05] [PASSED] 45 VFs
[04:31:05] [PASSED] 46 VFs
[04:31:05] [PASSED] 47 VFs
[04:31:05] [PASSED] 48 VFs
[04:31:05] [PASSED] 49 VFs
[04:31:05] [PASSED] 50 VFs
[04:31:05] [PASSED] 51 VFs
[04:31:05] [PASSED] 52 VFs
[04:31:05] [PASSED] 53 VFs
[04:31:05] [PASSED] 54 VFs
[04:31:05] [PASSED] 55 VFs
[04:31:05] [PASSED] 56 VFs
[04:31:05] [PASSED] 57 VFs
[04:31:05] [PASSED] 58 VFs
[04:31:05] [PASSED] 59 VFs
[04:31:05] [PASSED] 60 VFs
[04:31:05] [PASSED] 61 VFs
[04:31:05] [PASSED] 62 VFs
[04:31:05] [PASSED] 63 VFs
[04:31:05] ================= [PASSED] fair_doorbells ==================
[04:31:05] ======================== fair_ggtt  ========================
[04:31:05] [PASSED] 1 VF
[04:31:05] [PASSED] 2 VFs
[04:31:05] [PASSED] 3 VFs
[04:31:05] [PASSED] 4 VFs
[04:31:05] [PASSED] 5 VFs
[04:31:05] [PASSED] 6 VFs
[04:31:05] [PASSED] 7 VFs
[04:31:05] [PASSED] 8 VFs
[04:31:05] [PASSED] 9 VFs
[04:31:05] [PASSED] 10 VFs
[04:31:05] [PASSED] 11 VFs
[04:31:05] [PASSED] 12 VFs
[04:31:05] [PASSED] 13 VFs
[04:31:05] [PASSED] 14 VFs
[04:31:05] [PASSED] 15 VFs
[04:31:05] [PASSED] 16 VFs
[04:31:05] [PASSED] 17 VFs
[04:31:05] [PASSED] 18 VFs
[04:31:05] [PASSED] 19 VFs
[04:31:05] [PASSED] 20 VFs
[04:31:05] [PASSED] 21 VFs
[04:31:05] [PASSED] 22 VFs
[04:31:05] [PASSED] 23 VFs
[04:31:05] [PASSED] 24 VFs
[04:31:05] [PASSED] 25 VFs
[04:31:05] [PASSED] 26 VFs
[04:31:05] [PASSED] 27 VFs
[04:31:05] [PASSED] 28 VFs
[04:31:05] [PASSED] 29 VFs
[04:31:05] [PASSED] 30 VFs
[04:31:05] [PASSED] 31 VFs
[04:31:05] [PASSED] 32 VFs
[04:31:05] [PASSED] 33 VFs
[04:31:05] [PASSED] 34 VFs
[04:31:05] [PASSED] 35 VFs
[04:31:05] [PASSED] 36 VFs
[04:31:05] [PASSED] 37 VFs
[04:31:05] [PASSED] 38 VFs
[04:31:05] [PASSED] 39 VFs
[04:31:05] [PASSED] 40 VFs
[04:31:05] [PASSED] 41 VFs
[04:31:05] [PASSED] 42 VFs
[04:31:05] [PASSED] 43 VFs
[04:31:05] [PASSED] 44 VFs
[04:31:05] [PASSED] 45 VFs
[04:31:05] [PASSED] 46 VFs
[04:31:05] [PASSED] 47 VFs
[04:31:05] [PASSED] 48 VFs
[04:31:05] [PASSED] 49 VFs
[04:31:05] [PASSED] 50 VFs
[04:31:05] [PASSED] 51 VFs
[04:31:05] [PASSED] 52 VFs
[04:31:05] [PASSED] 53 VFs
[04:31:05] [PASSED] 54 VFs
[04:31:05] [PASSED] 55 VFs
[04:31:05] [PASSED] 56 VFs
[04:31:05] [PASSED] 57 VFs
[04:31:05] [PASSED] 58 VFs
[04:31:05] [PASSED] 59 VFs
[04:31:05] [PASSED] 60 VFs
[04:31:05] [PASSED] 61 VFs
[04:31:05] [PASSED] 62 VFs
[04:31:05] [PASSED] 63 VFs
[04:31:05] ==================== [PASSED] fair_ggtt ====================
[04:31:05] ======================== fair_vram  ========================
[04:31:05] [PASSED] 1 VF
[04:31:05] [PASSED] 2 VFs
[04:31:05] [PASSED] 3 VFs
[04:31:05] [PASSED] 4 VFs
[04:31:05] [PASSED] 5 VFs
[04:31:05] [PASSED] 6 VFs
[04:31:05] [PASSED] 7 VFs
[04:31:05] [PASSED] 8 VFs
[04:31:05] [PASSED] 9 VFs
[04:31:05] [PASSED] 10 VFs
[04:31:05] [PASSED] 11 VFs
[04:31:05] [PASSED] 12 VFs
[04:31:05] [PASSED] 13 VFs
[04:31:05] [PASSED] 14 VFs
[04:31:05] [PASSED] 15 VFs
[04:31:05] [PASSED] 16 VFs
[04:31:05] [PASSED] 17 VFs
[04:31:05] [PASSED] 18 VFs
[04:31:05] [PASSED] 19 VFs
[04:31:05] [PASSED] 20 VFs
[04:31:05] [PASSED] 21 VFs
[04:31:05] [PASSED] 22 VFs
[04:31:05] [PASSED] 23 VFs
[04:31:05] [PASSED] 24 VFs
[04:31:05] [PASSED] 25 VFs
[04:31:05] [PASSED] 26 VFs
[04:31:05] [PASSED] 27 VFs
[04:31:05] [PASSED] 28 VFs
[04:31:05] [PASSED] 29 VFs
[04:31:05] [PASSED] 30 VFs
[04:31:05] [PASSED] 31 VFs
[04:31:05] [PASSED] 32 VFs
[04:31:05] [PASSED] 33 VFs
[04:31:05] [PASSED] 34 VFs
[04:31:05] [PASSED] 35 VFs
[04:31:05] [PASSED] 36 VFs
[04:31:05] [PASSED] 37 VFs
[04:31:05] [PASSED] 38 VFs
[04:31:05] [PASSED] 39 VFs
[04:31:05] [PASSED] 40 VFs
[04:31:05] [PASSED] 41 VFs
[04:31:05] [PASSED] 42 VFs
[04:31:05] [PASSED] 43 VFs
[04:31:05] [PASSED] 44 VFs
[04:31:05] [PASSED] 45 VFs
[04:31:05] [PASSED] 46 VFs
[04:31:05] [PASSED] 47 VFs
[04:31:05] [PASSED] 48 VFs
[04:31:05] [PASSED] 49 VFs
[04:31:05] [PASSED] 50 VFs
[04:31:05] [PASSED] 51 VFs
[04:31:05] [PASSED] 52 VFs
[04:31:05] [PASSED] 53 VFs
[04:31:05] [PASSED] 54 VFs
[04:31:05] [PASSED] 55 VFs
[04:31:05] [PASSED] 56 VFs
[04:31:05] [PASSED] 57 VFs
[04:31:05] [PASSED] 58 VFs
[04:31:05] [PASSED] 59 VFs
[04:31:05] [PASSED] 60 VFs
[04:31:05] [PASSED] 61 VFs
[04:31:05] [PASSED] 62 VFs
[04:31:05] [PASSED] 63 VFs
[04:31:05] ==================== [PASSED] fair_vram ====================
[04:31:05] ================== [PASSED] pf_gt_config ===================
[04:31:05] ===================== lmtt (1 subtest) =====================
[04:31:05] ======================== test_ops  =========================
[04:31:05] [PASSED] 2-level
[04:31:05] [PASSED] multi-level
[04:31:05] ==================== [PASSED] test_ops =====================
[04:31:05] ====================== [PASSED] lmtt =======================
[04:31:05] ================= pf_service (11 subtests) =================
[04:31:05] [PASSED] pf_negotiate_any
[04:31:05] [PASSED] pf_negotiate_base_match
[04:31:05] [PASSED] pf_negotiate_base_newer
[04:31:05] [PASSED] pf_negotiate_base_next
[04:31:05] [SKIPPED] pf_negotiate_base_older
[04:31:05] [PASSED] pf_negotiate_base_prev
[04:31:05] [PASSED] pf_negotiate_latest_match
[04:31:05] [PASSED] pf_negotiate_latest_newer
[04:31:05] [PASSED] pf_negotiate_latest_next
[04:31:05] [SKIPPED] pf_negotiate_latest_older
[04:31:05] [SKIPPED] pf_negotiate_latest_prev
[04:31:05] =================== [PASSED] pf_service ====================
[04:31:05] ================= xe_guc_g2g (2 subtests) ==================
[04:31:05] ============== xe_live_guc_g2g_kunit_default  ==============
[04:31:05] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[04:31:05] ============== xe_live_guc_g2g_kunit_allmem  ===============
[04:31:05] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[04:31:05] =================== [SKIPPED] xe_guc_g2g ===================
[04:31:05] =================== xe_mocs (2 subtests) ===================
[04:31:05] ================ xe_live_mocs_kernel_kunit  ================
[04:31:05] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[04:31:05] ================ xe_live_mocs_reset_kunit  =================
[04:31:05] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[04:31:05] ==================== [SKIPPED] xe_mocs =====================
[04:31:05] ================= xe_migrate (2 subtests) ==================
[04:31:05] ================= xe_migrate_sanity_kunit  =================
[04:31:05] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[04:31:05] ================== xe_validate_ccs_kunit  ==================
[04:31:05] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[04:31:05] =================== [SKIPPED] xe_migrate ===================
[04:31:05] ================== xe_dma_buf (1 subtest) ==================
[04:31:05] ==================== xe_dma_buf_kunit  =====================
[04:31:05] ================ [SKIPPED] xe_dma_buf_kunit ================
[04:31:05] =================== [SKIPPED] xe_dma_buf ===================
[04:31:05] ================= xe_bo_shrink (1 subtest) =================
[04:31:05] =================== xe_bo_shrink_kunit  ====================
[04:31:05] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[04:31:05] ================== [SKIPPED] xe_bo_shrink ==================
[04:31:05] ==================== xe_bo (2 subtests) ====================
[04:31:05] ================== xe_ccs_migrate_kunit  ===================
[04:31:05] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[04:31:05] ==================== xe_bo_evict_kunit  ====================
[04:31:05] =============== [SKIPPED] xe_bo_evict_kunit ================
[04:31:05] ===================== [SKIPPED] xe_bo ======================
[04:31:05] ==================== args (13 subtests) ====================
[04:31:05] [PASSED] count_args_test
[04:31:05] [PASSED] call_args_example
[04:31:05] [PASSED] call_args_test
[04:31:05] [PASSED] drop_first_arg_example
[04:31:05] [PASSED] drop_first_arg_test
[04:31:05] [PASSED] first_arg_example
[04:31:05] [PASSED] first_arg_test
[04:31:05] [PASSED] last_arg_example
[04:31:05] [PASSED] last_arg_test
[04:31:05] [PASSED] pick_arg_example
[04:31:05] [PASSED] if_args_example
[04:31:05] [PASSED] if_args_test
[04:31:05] [PASSED] sep_comma_example
[04:31:05] ====================== [PASSED] args =======================
[04:31:05] =================== xe_pci (3 subtests) ====================
[04:31:05] ==================== check_graphics_ip  ====================
[04:31:05] [PASSED] 12.00 Xe_LP
[04:31:05] [PASSED] 12.10 Xe_LP+
[04:31:05] [PASSED] 12.55 Xe_HPG
[04:31:05] [PASSED] 12.60 Xe_HPC
[04:31:05] [PASSED] 12.70 Xe_LPG
[04:31:05] [PASSED] 12.71 Xe_LPG
[04:31:05] [PASSED] 12.74 Xe_LPG+
[04:31:05] [PASSED] 20.01 Xe2_HPG
[04:31:05] [PASSED] 20.02 Xe2_HPG
[04:31:05] [PASSED] 20.04 Xe2_LPG
[04:31:05] [PASSED] 30.00 Xe3_LPG
[04:31:05] [PASSED] 30.01 Xe3_LPG
[04:31:05] [PASSED] 30.03 Xe3_LPG
[04:31:05] [PASSED] 30.04 Xe3_LPG
[04:31:05] [PASSED] 30.05 Xe3_LPG
[04:31:05] [PASSED] 35.10 Xe3p_LPG
[04:31:05] [PASSED] 35.11 Xe3p_XPC
[04:31:05] ================ [PASSED] check_graphics_ip ================
[04:31:05] ===================== check_media_ip  ======================
[04:31:05] [PASSED] 12.00 Xe_M
[04:31:05] [PASSED] 12.55 Xe_HPM
[04:31:05] [PASSED] 13.00 Xe_LPM+
[04:31:05] [PASSED] 13.01 Xe2_HPM
[04:31:05] [PASSED] 20.00 Xe2_LPM
[04:31:05] [PASSED] 30.00 Xe3_LPM
[04:31:05] [PASSED] 30.02 Xe3_LPM
[04:31:05] [PASSED] 35.00 Xe3p_LPM
[04:31:05] [PASSED] 35.03 Xe3p_HPM
[04:31:05] ================= [PASSED] check_media_ip ==================
[04:31:05] =================== check_platform_desc  ===================
[04:31:05] [PASSED] 0x9A60 (TIGERLAKE)
[04:31:05] [PASSED] 0x9A68 (TIGERLAKE)
[04:31:05] [PASSED] 0x9A70 (TIGERLAKE)
[04:31:05] [PASSED] 0x9A40 (TIGERLAKE)
[04:31:05] [PASSED] 0x9A49 (TIGERLAKE)
[04:31:05] [PASSED] 0x9A59 (TIGERLAKE)
[04:31:05] [PASSED] 0x9A78 (TIGERLAKE)
[04:31:05] [PASSED] 0x9AC0 (TIGERLAKE)
[04:31:05] [PASSED] 0x9AC9 (TIGERLAKE)
[04:31:05] [PASSED] 0x9AD9 (TIGERLAKE)
[04:31:05] [PASSED] 0x9AF8 (TIGERLAKE)
[04:31:05] [PASSED] 0x4C80 (ROCKETLAKE)
[04:31:05] [PASSED] 0x4C8A (ROCKETLAKE)
[04:31:05] [PASSED] 0x4C8B (ROCKETLAKE)
[04:31:05] [PASSED] 0x4C8C (ROCKETLAKE)
[04:31:05] [PASSED] 0x4C90 (ROCKETLAKE)
[04:31:05] [PASSED] 0x4C9A (ROCKETLAKE)
[04:31:05] [PASSED] 0x4680 (ALDERLAKE_S)
[04:31:05] [PASSED] 0x4682 (ALDERLAKE_S)
[04:31:05] [PASSED] 0x4688 (ALDERLAKE_S)
[04:31:05] [PASSED] 0x468A (ALDERLAKE_S)
[04:31:05] [PASSED] 0x468B (ALDERLAKE_S)
[04:31:05] [PASSED] 0x4690 (ALDERLAKE_S)
[04:31:05] [PASSED] 0x4692 (ALDERLAKE_S)
[04:31:05] [PASSED] 0x4693 (ALDERLAKE_S)
[04:31:05] [PASSED] 0x46A0 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46A1 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46A2 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46A3 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46A6 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46A8 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46AA (ALDERLAKE_P)
[04:31:05] [PASSED] 0x462A (ALDERLAKE_P)
[04:31:05] [PASSED] 0x4626 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x4628 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46B0 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46B1 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46B2 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46B3 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46C0 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46C1 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46C2 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46C3 (ALDERLAKE_P)
[04:31:05] [PASSED] 0x46D0 (ALDERLAKE_N)
[04:31:05] [PASSED] 0x46D1 (ALDERLAKE_N)
[04:31:05] [PASSED] 0x46D2 (ALDERLAKE_N)
[04:31:05] [PASSED] 0x46D3 (ALDERLAKE_N)
[04:31:05] [PASSED] 0x46D4 (ALDERLAKE_N)
[04:31:05] [PASSED] 0xA721 (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA7A1 (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA7A9 (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA7AC (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA7AD (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA720 (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA7A0 (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA7A8 (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA7AA (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA7AB (ALDERLAKE_P)
[04:31:05] [PASSED] 0xA780 (ALDERLAKE_S)
[04:31:05] [PASSED] 0xA781 (ALDERLAKE_S)
[04:31:05] [PASSED] 0xA782 (ALDERLAKE_S)
[04:31:05] [PASSED] 0xA783 (ALDERLAKE_S)
[04:31:05] [PASSED] 0xA788 (ALDERLAKE_S)
[04:31:05] [PASSED] 0xA789 (ALDERLAKE_S)
[04:31:05] [PASSED] 0xA78A (ALDERLAKE_S)
[04:31:05] [PASSED] 0xA78B (ALDERLAKE_S)
[04:31:05] [PASSED] 0x4905 (DG1)
[04:31:05] [PASSED] 0x4906 (DG1)
[04:31:05] [PASSED] 0x4907 (DG1)
[04:31:05] [PASSED] 0x4908 (DG1)
[04:31:05] [PASSED] 0x4909 (DG1)
[04:31:05] [PASSED] 0x56C0 (DG2)
[04:31:05] [PASSED] 0x56C2 (DG2)
[04:31:05] [PASSED] 0x56C1 (DG2)
[04:31:05] [PASSED] 0x7D51 (METEORLAKE)
[04:31:05] [PASSED] 0x7DD1 (METEORLAKE)
[04:31:05] [PASSED] 0x7D41 (METEORLAKE)
[04:31:05] [PASSED] 0x7D67 (METEORLAKE)
[04:31:05] [PASSED] 0xB640 (METEORLAKE)
[04:31:05] [PASSED] 0x56A0 (DG2)
[04:31:05] [PASSED] 0x56A1 (DG2)
[04:31:05] [PASSED] 0x56A2 (DG2)
[04:31:05] [PASSED] 0x56BE (DG2)
[04:31:05] [PASSED] 0x56BF (DG2)
[04:31:05] [PASSED] 0x5690 (DG2)
[04:31:05] [PASSED] 0x5691 (DG2)
[04:31:05] [PASSED] 0x5692 (DG2)
[04:31:05] [PASSED] 0x56A5 (DG2)
[04:31:05] [PASSED] 0x56A6 (DG2)
[04:31:05] [PASSED] 0x56B0 (DG2)
[04:31:05] [PASSED] 0x56B1 (DG2)
[04:31:05] [PASSED] 0x56BA (DG2)
[04:31:05] [PASSED] 0x56BB (DG2)
[04:31:05] [PASSED] 0x56BC (DG2)
[04:31:05] [PASSED] 0x56BD (DG2)
[04:31:05] [PASSED] 0x5693 (DG2)
[04:31:05] [PASSED] 0x5694 (DG2)
[04:31:05] [PASSED] 0x5695 (DG2)
[04:31:05] [PASSED] 0x56A3 (DG2)
[04:31:05] [PASSED] 0x56A4 (DG2)
[04:31:05] [PASSED] 0x56B2 (DG2)
[04:31:05] [PASSED] 0x56B3 (DG2)
[04:31:05] [PASSED] 0x5696 (DG2)
[04:31:05] [PASSED] 0x5697 (DG2)
[04:31:05] [PASSED] 0xB69 (PVC)
[04:31:05] [PASSED] 0xB6E (PVC)
[04:31:05] [PASSED] 0xBD4 (PVC)
[04:31:05] [PASSED] 0xBD5 (PVC)
[04:31:05] [PASSED] 0xBD6 (PVC)
[04:31:05] [PASSED] 0xBD7 (PVC)
[04:31:05] [PASSED] 0xBD8 (PVC)
[04:31:05] [PASSED] 0xBD9 (PVC)
[04:31:05] [PASSED] 0xBDA (PVC)
[04:31:05] [PASSED] 0xBDB (PVC)
[04:31:05] [PASSED] 0xBE0 (PVC)
[04:31:05] [PASSED] 0xBE1 (PVC)
[04:31:05] [PASSED] 0xBE5 (PVC)
[04:31:05] [PASSED] 0x7D40 (METEORLAKE)
[04:31:05] [PASSED] 0x7D45 (METEORLAKE)
[04:31:05] [PASSED] 0x7D55 (METEORLAKE)
[04:31:05] [PASSED] 0x7D60 (METEORLAKE)
[04:31:05] [PASSED] 0x7DD5 (METEORLAKE)
[04:31:05] [PASSED] 0x6420 (LUNARLAKE)
[04:31:05] [PASSED] 0x64A0 (LUNARLAKE)
[04:31:05] [PASSED] 0x64B0 (LUNARLAKE)
[04:31:05] [PASSED] 0xE202 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE209 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE20B (BATTLEMAGE)
[04:31:05] [PASSED] 0xE20C (BATTLEMAGE)
[04:31:05] [PASSED] 0xE20D (BATTLEMAGE)
[04:31:05] [PASSED] 0xE210 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE211 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE212 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE216 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE220 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE221 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE222 (BATTLEMAGE)
[04:31:05] [PASSED] 0xE223 (BATTLEMAGE)
[04:31:05] [PASSED] 0xB080 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB081 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB082 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB083 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB084 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB085 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB086 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB087 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB08F (PANTHERLAKE)
[04:31:05] [PASSED] 0xB090 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB0A0 (PANTHERLAKE)
[04:31:05] [PASSED] 0xB0B0 (PANTHERLAKE)
[04:31:05] [PASSED] 0xFD80 (PANTHERLAKE)
[04:31:05] [PASSED] 0xFD81 (PANTHERLAKE)
[04:31:05] [PASSED] 0xD740 (NOVALAKE_S)
[04:31:05] [PASSED] 0xD741 (NOVALAKE_S)
[04:31:05] [PASSED] 0xD742 (NOVALAKE_S)
[04:31:05] [PASSED] 0xD743 (NOVALAKE_S)
[04:31:05] [PASSED] 0xD745 (NOVALAKE_S)
[04:31:05] [PASSED] 0xD74A (NOVALAKE_S)
[04:31:05] [PASSED] 0xD74B (NOVALAKE_S)
[04:31:05] [PASSED] 0x674C (CRESCENTISLAND)
[04:31:05] [PASSED] 0x674D (CRESCENTISLAND)
[04:31:05] [PASSED] 0x674E (CRESCENTISLAND)
[04:31:05] [PASSED] 0x674F (CRESCENTISLAND)
[04:31:05] [PASSED] 0x6750 (CRESCENTISLAND)
[04:31:05] [PASSED] 0xD750 (NOVALAKE_P)
[04:31:05] [PASSED] 0xD751 (NOVALAKE_P)
[04:31:05] [PASSED] 0xD752 (NOVALAKE_P)
[04:31:05] [PASSED] 0xD753 (NOVALAKE_P)
[04:31:05] [PASSED] 0xD754 (NOVALAKE_P)
[04:31:05] [PASSED] 0xD755 (NOVALAKE_P)
[04:31:05] [PASSED] 0xD756 (NOVALAKE_P)
[04:31:05] [PASSED] 0xD757 (NOVALAKE_P)
[04:31:05] [PASSED] 0xD75F (NOVALAKE_P)
[04:31:05] =============== [PASSED] check_platform_desc ===============
[04:31:05] ===================== [PASSED] xe_pci ======================
[04:31:05] ============= xe_rtp_tables_test (4 subtests) ==============
[04:31:05] ================== xe_rtp_table_gt_test  ===================
[04:31:05] [PASSED] gt_was/14011060649
[04:31:05] [PASSED] gt_was/14011059788
[04:31:05] [PASSED] gt_was/14015795083
[04:31:05] [PASSED] gt_was/16021867713
[04:31:05] [PASSED] gt_was/14019449301
[04:31:05] [PASSED] gt_was/16028005424
[04:31:05] [PASSED] gt_was/14026578760
[04:31:05] [PASSED] gt_was/1409420604
[04:31:05] [PASSED] gt_was/1408615072
[04:31:05] [PASSED] gt_was/22010523718
[04:31:05] [PASSED] gt_was/14011006942
[04:31:05] [PASSED] gt_was/14014830051
[04:31:05] [PASSED] gt_was/18018781329
[04:31:05] [PASSED] gt_was/1509235366
[04:31:05] [PASSED] gt_was/18018781329
[04:31:05] [PASSED] gt_was/16016694945
[04:31:05] [PASSED] gt_was/14018575942
[04:31:05] [PASSED] gt_was/22016670082
[04:31:05] [PASSED] gt_was/22016670082
[04:31:05] [PASSED] gt_was/14017421178
[04:31:05] [PASSED] gt_was/16025250150
[04:31:05] [PASSED] gt_was/14021871409
[04:31:05] [PASSED] gt_was/16021865536
[04:31:05] [PASSED] gt_was/14021486841
[04:31:05] [PASSED] gt_was/14025160223
[04:31:05] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[04:31:05] [PASSED] gt_was/14025635424
[04:31:05] [PASSED] gt_was/16028005424
[04:31:05] ============== [PASSED] xe_rtp_table_gt_test ===============
[04:31:05] ================== xe_rtp_table_gt_test  ===================
[04:31:05] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[04:31:05] [PASSED] gt_tunings/Tuning: 32B Access Enable
[04:31:05] [PASSED] gt_tunings/Tuning: L3 cache
[04:31:05] [PASSED] gt_tunings/Tuning: L3 cache - media
[04:31:05] [PASSED] gt_tunings/Tuning: Compression Overfetch
[04:31:05] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[04:31:05] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[04:31:05] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[04:31:05] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[04:31:05] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[04:31:05] [PASSED] gt_tunings/Tuning: Stateless compression control
[04:31:05] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[04:31:05] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[04:31:05] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[04:31:05] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[04:31:05] ============== [PASSED] xe_rtp_table_gt_test ===============
[04:31:05] ================== xe_rtp_table_oob_test  ==================
[04:31:05] [PASSED] oob_was/1607983814
[04:31:05] [PASSED] oob_was/16010904313
[04:31:05] [PASSED] oob_was/18022495364
[04:31:05] [PASSED] oob_was/22012773006
[04:31:05] [PASSED] oob_was/14014475959
[04:31:05] [PASSED] oob_was/22011391025
[04:31:05] [PASSED] oob_was/22012727170
[04:31:05] [PASSED] oob_was/22012727685
[04:31:05] [PASSED] oob_was/22016596838
[04:31:05] [PASSED] oob_was/18020744125
[04:31:05] [PASSED] oob_was/1409600907
[04:31:05] [PASSED] oob_was/22014953428
[04:31:05] [PASSED] oob_was/16017236439
[04:31:05] [PASSED] oob_was/14019821291
[04:31:05] [PASSED] oob_was/14015076503
[04:31:05] [PASSED] oob_was/14018913170
[04:31:05] [PASSED] oob_was/14018094691
[04:31:05] [PASSED] oob_was/18024947630
[04:31:05] [PASSED] oob_was/16022287689
[04:31:05] [PASSED] oob_was/13011645652
[04:31:05] [PASSED] oob_was/14022293748
[04:31:05] [PASSED] oob_was/22019794406
[04:31:05] [PASSED] oob_was/22019338487
[04:31:05] [PASSED] oob_was/16023588340
[04:31:05] [PASSED] oob_was/14019789679
[04:31:05] [PASSED] oob_was/14022866841
[04:31:05] [PASSED] oob_was/16021333562
[04:31:05] [PASSED] oob_was/14016712196
[04:31:05] [PASSED] oob_was/14015568240
[04:31:05] [PASSED] oob_was/18013179988
[04:31:05] [PASSED] oob_was/1508761755
[04:31:05] [PASSED] oob_was/16023105232
[04:31:05] [PASSED] oob_was/16026508708
[04:31:05] [PASSED] oob_was/14020001231
[04:31:05] [PASSED] oob_was/16023683509
[04:31:05] [PASSED] oob_was/14025515070
[04:31:05] [PASSED] oob_was/15015404425_disable
[04:31:05] [PASSED] oob_was/16026007364
[04:31:05] [PASSED] oob_was/14020316580
[04:31:05] [PASSED] oob_was/14025883347
[04:31:05] [PASSED] oob_was/16029380221
[04:31:05] ============== [PASSED] xe_rtp_table_oob_test ==============
[04:31:05] ================ xe_rtp_table_dev_oob_test  ================
[04:31:05] [PASSED] device_oob_was/22010954014
[04:31:05] [PASSED] device_oob_was/15015404425
[04:31:05] [PASSED] device_oob_was/22019338487_display
[04:31:05] [PASSED] device_oob_was/14022085890
[04:31:05] [PASSED] device_oob_was/14026539277
[04:31:05] [PASSED] device_oob_was/14026633728
[04:31:05] [PASSED] device_oob_was/14026746987
[04:31:05] [PASSED] device_oob_was/14026779378
[04:31:05] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[04:31:05] =============== [PASSED] xe_rtp_tables_test ================
[04:31:05] =================== xe_rtp (3 subtests) ====================
[04:31:05] =================== xe_rtp_rules_tests  ====================
[04:31:05] [PASSED] no
[04:31:05] [PASSED] yes
[04:31:05] [PASSED] no-and-no
[04:31:05] [PASSED] no-and-yes
[04:31:05] [PASSED] yes-and-no
[04:31:05] [PASSED] yes-and-yes
[04:31:05] [PASSED] no-or-no
[04:31:05] [PASSED] no-or-yes
[04:31:05] [PASSED] yes-or-no
[04:31:05] [PASSED] yes-or-yes
[04:31:05] [PASSED] no-yes-or-yes-no
[04:31:05] [PASSED] no-yes-or-yes-yes
[04:31:05] [PASSED] yes-yes-or-no-yes
[04:31:05] [PASSED] yes-yes-or-yes-yes
[04:31:05] [PASSED] no-no-or-yes-or-no
[04:31:05] [PASSED] or
[04:31:05] [PASSED] or-yes
[04:31:05] [PASSED] or-no
[04:31:05] [PASSED] yes-or
[04:31:05] [PASSED] no-or
[04:31:05] [PASSED] no-or-or-yes
[04:31:05] [PASSED] yes-or-or-no
[04:31:05] [PASSED] no-or-or-no
[04:31:05] [PASSED] missing-context-engine-class
[04:31:05] [PASSED] missing-context-engine-class-or-yes
[04:31:05] [PASSED] missing-context-engine-class-or-or-yes
[04:31:05] =============== [PASSED] xe_rtp_rules_tests ================
[04:31:05] =============== xe_rtp_process_to_sr_tests  ================
[04:31:05] [PASSED] coalesce-same-reg
[04:31:05] [PASSED] coalesce-same-reg-literal-and-func
[04:31:05] [PASSED] no-match-no-add
[04:31:05] [PASSED] two-regs-two-entries
[04:31:05] [PASSED] clr-one-set-other
[04:31:05] [PASSED] set-field
[04:31:05] [PASSED] conflict-duplicate
[04:31:05] [PASSED] conflict-not-disjoint
[04:31:05] [PASSED] conflict-not-disjoint-literal-and-func
[04:31:05] [PASSED] conflict-reg-type
[04:31:05] [PASSED] bad-mcr-reg-forced-to-regular
[04:31:05] [PASSED] bad-regular-reg-forced-to-mcr
[04:31:05] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[04:31:05] ================== xe_rtp_process_tests  ===================
[04:31:05] [PASSED] active1
[04:31:05] [PASSED] active2
[04:31:05] [PASSED] active-inactive
[04:31:05] [PASSED] inactive-active
[04:31:05] [PASSED] inactive-active-inactive
[04:31:05] [PASSED] inactive-inactive-inactive
[04:31:05] ============== [PASSED] xe_rtp_process_tests ===============
[04:31:05] ===================== [PASSED] xe_rtp ======================
[04:31:05] ==================== xe_wa (1 subtest) =====================
[04:31:05] ======================== xe_wa_gt  =========================
[04:31:05] [PASSED] TIGERLAKE B0
[04:31:05] [PASSED] DG1 A0
[04:31:05] [PASSED] DG1 B0
[04:31:05] [PASSED] ALDERLAKE_S A0
[04:31:05] [PASSED] ALDERLAKE_S B0
[04:31:05] [PASSED] ALDERLAKE_S C0
[04:31:05] [PASSED] ALDERLAKE_S D0
[04:31:05] [PASSED] ALDERLAKE_P A0
[04:31:05] [PASSED] ALDERLAKE_P B0
[04:31:05] [PASSED] ALDERLAKE_P C0
[04:31:05] [PASSED] ALDERLAKE_S RPLS D0
[04:31:05] [PASSED] ALDERLAKE_P RPLU E0
[04:31:05] [PASSED] DG2 G10 C0
[04:31:05] [PASSED] DG2 G11 B1
[04:31:05] [PASSED] DG2 G12 A1
[04:31:05] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[04:31:05] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[04:31:05] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[04:31:05] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[04:31:05] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[04:31:05] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[04:31:05] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[04:31:05] ==================== [PASSED] xe_wa_gt =====================
[04:31:05] ====================== [PASSED] xe_wa ======================
[04:31:05] ============================================================
[04:31:05] Testing complete. Ran 719 tests: passed: 701, skipped: 18
[04:31:05] Elapsed time: 36.108s total, 4.257s configuring, 31.184s building, 0.653s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
  2026-06-18  4:31 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-06-18  5:22 ` Patchwork
  2026-06-18 11:05 ` ✗ Xe.CI.FULL: failure " Patchwork
                   ` (23 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-06-18  5:22 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

CI Bug Log - changes from xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3_BAT -> xe-pw-168743v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_8971 -> IGT_8972
  * Linux: xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3 -> xe-pw-168743v1

  IGT_8971: 8971
  IGT_8972: 8972
  xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3: 909e0a88ba7edb191c7d3d3bf23b768a5c2407c3
  xe-pw-168743v1: 168743v1

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
  2026-06-18  4:31 ` ✓ CI.KUnit: success for " Patchwork
  2026-06-18  5:22 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-06-18 11:05 ` Patchwork
  2026-06-18 14:01 ` [PATCH] " Gustavo Sousa
                   ` (22 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-06-18 11:05 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
URL   : https://patchwork.freedesktop.org/series/168743/
State : failure

== Summary ==

CI Bug Log - changes from xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3_FULL -> xe-pw-168743v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-168743v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-168743v1_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-168743v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_lease@setcrtc-implicit-plane@pipe-d-hdmi-a-3:
    - shard-bmg:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-5/igt@kms_lease@setcrtc-implicit-plane@pipe-d-hdmi-a-3.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-5/igt@kms_lease@setcrtc-implicit-plane@pipe-d-hdmi-a-3.html

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

  Here are the changes found in xe-pw-168743v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [PASS][3] -> [FAIL][4] ([Intel XE#3718] / [Intel XE#6078])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
    - shard-bmg:          [PASS][5] -> [FAIL][6] ([Intel XE#6078])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#7059] / [Intel XE#7085])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#1124])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-9/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2328] / [Intel XE#7367])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_bw@linear-tiling-4-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#367])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2887]) +2 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2652]) +8 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2325] / [Intel XE#7358])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2252]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-4/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#373]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html

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

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2390] / [Intel XE#6974])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2320]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-9/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2286] / [Intel XE#6035])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
    - shard-bmg:          [PASS][20] -> [FAIL][21] ([Intel XE#5408] / [Intel XE#6266]) +1 other test fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-10/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#7178] / [Intel XE#7351])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2311]) +10 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrshdr-rgb565-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#6312])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrshdr-rgb565-draw-render.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#7061]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#7905]) +2 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2313]) +18 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7061] / [Intel XE#7356])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html

  * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#7915]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-7/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html

  * igt@kms_lease@setcrtc-implicit-plane:
    - shard-bmg:          [PASS][31] -> [DMESG-WARN][32] ([Intel XE#7774]) +1 other test dmesg-warn
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-5/igt@kms_lease@setcrtc-implicit-plane.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-5/igt@kms_lease@setcrtc-implicit-plane.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#6912] / [Intel XE#7375])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-y-tiled-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#7283]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-modifier.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#1489]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-6/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#3904] / [Intel XE#7342])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2413])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@xe_eudebug@basic-vm-bind-ufence:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#7636]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-ufence.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][41] -> [INCOMPLETE][42] ([Intel XE#6321] / [Intel XE#8355])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#8374])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html

  * igt@xe_exec_multi_queue@many-queues-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#8364]) +10 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-4/igt@xe_exec_multi_queue@many-queues-priority-smem.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#8378]) +2 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate.html

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

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-4/igt@xe_peer2peer@write.html

  * igt@xe_pxp@pxp-stale-queue-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#4733] / [Intel XE#7417])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-bmg:          [PASS][50] -> [FAIL][51] ([Intel XE#6569])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#8339])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority.html

  
#### Possible fixes ####

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [FAIL][53] ([Intel XE#301]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-bmg:          [SKIP][55] ([Intel XE#7308]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-4/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-bmg:          [SKIP][57] ([Intel XE#7915]) -> [PASS][58] +1 other test pass
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-2/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-10/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [FAIL][59] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][61] ([Intel XE#7340]) -> [PASS][62] +1 other test pass
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-new-busy:
    - shard-lnl:          [INCOMPLETE][63] ([Intel XE#2594]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-lnl-1/igt@xe_exec_system_allocator@threads-many-large-execqueues-new-busy.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-7/igt@xe_exec_system_allocator@threads-many-large-execqueues-new-busy.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-bmg:          [ABORT][65] ([Intel XE#8007]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-8/igt@xe_wedged@wedged-mode-toggle.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-10/igt@xe_wedged@wedged-mode-toggle.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen:
    - shard-lnl:          [SKIP][67] ([Intel XE#656] / [Intel XE#7905]) -> [ABORT][68] ([Intel XE#8007])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html
    - shard-bmg:          [SKIP][69] ([Intel XE#2311]) -> [ABORT][70] ([Intel XE#8007])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][71] ([Intel XE#3544] / [Intel XE#7916]) -> [SKIP][72] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-bmg:          [SKIP][73] ([Intel XE#7916]) -> [SKIP][74] ([Intel XE#7915]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-2/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][75] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][76] ([Intel XE#2426] / [Intel XE#5848])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][77] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][78] ([Intel XE#2426] / [Intel XE#5848])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v1/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [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#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [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#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [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#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
  [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
  [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378


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

  * IGT: IGT_8971 -> IGT_8972
  * Linux: xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3 -> xe-pw-168743v1

  IGT_8971: 8971
  IGT_8972: 8972
  xe-5276-909e0a88ba7edb191c7d3d3bf23b768a5c2407c3: 909e0a88ba7edb191c7d3d3bf23b768a5c2407c3
  xe-pw-168743v1: 168743v1

== Logs ==

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

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

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

* Re: [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (2 preceding siblings ...)
  2026-06-18 11:05 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-06-18 14:01 ` Gustavo Sousa
  2026-06-18 16:42 ` Matt Roper
                   ` (21 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Gustavo Sousa @ 2026-06-18 14:01 UTC (permalink / raw)
  To: Varun Gupta, intel-xe; +Cc: matthew.d.roper, stuart.summers

Varun Gupta <varun.gupta@intel.com> writes:

> Add a per-GT debugfs entry 'disable_mtp' that forces thread-group
> preemption granularity on Xe2+ RCS/CCS engines by writing CS_CHICKEN1
> via MI_LRI into the WA BB of each newly created LRC.

Hm.  I think it would probably be better to make this an entry to select
the preemption level instead of simply making it disabled mid-thread
preemption.  So, we could call is "preemption_level" and then allow the
following values:

  - "default": Use the platform's default.
  - "mid-thread": For mid-thread preemption level.
  - "thread-group": For thread group preemption level.
  - "command": For command preemption level.

Furthermore, should we consider tainting the kernel if ever get a write
on that entry for any the last 3 values, since it will deviate from the
default and could be incompatible with some workloads?

>
> Signed-off-by: Varun Gupta <varun.gupta@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_gt_debugfs.c | 32 ++++++++++++++++++++++++++++++
>  drivers/gpu/drm/xe/xe_gt_types.h   |  8 ++++++++
>  drivers/gpu/drm/xe/xe_lrc.c        | 24 ++++++++++++++++++++++
>  3 files changed, 64 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> index f45306308cd6..e8f7ba6fc3c1 100644
> --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> @@ -334,6 +334,37 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
>  }
>  DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
>  
> +static int disable_mtp_get(void *data, u64 *val)
> +{
> +	struct xe_gt *gt = data;
> +
> +	*val = gt->disable_mtp;
> +
> +	return 0;
> +}
> +
> +static int disable_mtp_set(void *data, u64 val)
> +{
> +	struct xe_gt *gt = data;
> +	struct xe_device *xe = gt_to_xe(gt);
> +
> +	if (GRAPHICS_VER(xe) < 20)
> +		return -EOPNOTSUPP;
> +
> +	if (!(gt->info.engine_mask & (XE_HW_ENGINE_RCS_MASK | XE_HW_ENGINE_CCS_MASK)))
> +		return -EOPNOTSUPP;
> +
> +	gt->disable_mtp = !!val;
> +	drm_dbg(&gt_to_xe(gt)->drm, "GT%u: disable_mtp=%u: new LRCs will %s MTP\n",
> +		gt->info.id, !!val, !!val ? "disable" : "enable");
> +
> +	return 0;
> +}
> +DEFINE_DEBUGFS_ATTRIBUTE(disable_mtp_fops,
> +			 disable_mtp_get,
> +			 disable_mtp_set,
> +			 "%llu\n");
> +
>  void xe_gt_debugfs_register(struct xe_gt *gt)
>  {
>  	struct xe_device *xe = gt_to_xe(gt);
> @@ -366,6 +397,7 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
>  	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
>  	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
>  	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
> +	debugfs_create_file("disable_mtp", 0600, root, gt, &disable_mtp_fops);

Wouldn't it be better if we added the entry as part of either
vf_safe_debugfs_list or pf_only_debugfs_list?

I'm just not sure about which of the two it should belong to.

>  
>  	drm_debugfs_create_files(vf_safe_debugfs_list,
>  				 ARRAY_SIZE(vf_safe_debugfs_list),
> diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
> index e5588c88800a..4f6d63b614f9 100644
> --- a/drivers/gpu/drm/xe/xe_gt_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_types.h
> @@ -219,6 +219,14 @@ struct xe_gt {
>  	 */
>  	u32 ccs_mode;
>  
> +	/**
> +	 * @disable_mtp: Force thread-group preemption granularity by disabling
> +	 * Mid-Thread Preemption on newly created LRCs.
> +	 *
> +	 * Xe2+ RCS/CCS only, controlled via debugfs.
> +	 */
> +	bool disable_mtp;
> +
>  	/** @usm: unified shared memory state */
>  	struct {
>  		/**
> diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
> index 3e7c995085d0..893456dad6a5 100644
> --- a/drivers/gpu/drm/xe/xe_lrc.c
> +++ b/drivers/gpu/drm/xe/xe_lrc.c
> @@ -1262,6 +1262,29 @@ static ssize_t setup_invalidate_auxccs_wa(struct xe_lrc *lrc,
>  	return emit(gt, batch) - batch;
>  }
>  
> +static ssize_t setup_disable_mtp_wa(struct xe_lrc *lrc,
> +				    struct xe_hw_engine *hwe,
> +				    u32 *batch, size_t max_len)
> +{
> +	struct xe_gt *gt = lrc->gt;
> +	struct xe_device *xe = gt_to_xe(gt);
> +	u32 *cmd = batch;
> +
> +	if (!gt->disable_mtp || GRAPHICS_VER(xe) < 20 ||
> +	    (hwe->class != XE_ENGINE_CLASS_RENDER &&
> +	     hwe->class != XE_ENGINE_CLASS_COMPUTE))
> +		return 0;
> +
> +	if (xe_gt_WARN_ON(gt, max_len < 3))
> +		return -ENOSPC;
> +
> +	*cmd++ = MI_LOAD_REGISTER_IMM | MI_LRI_LRM_CS_MMIO | MI_LRI_NUM_REGS(1);
> +	*cmd++ = CS_CHICKEN1(0).addr;
> +	*cmd++ = REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, PREEMPT_GPGPU_THREAD_GROUP_LEVEL);

Is this enough?  Reading the Bspec page for CS_CHICKEN1, it appears that
the settings for PREEMPT_GPGPU_LEVEL_MASK depend on the value of
FF_SLICE_CS_CHICKEN1's field "Per Context Preemption Granularity
Control".

> +
> +	return cmd - batch;
> +}
> +
>  struct bo_setup {
>  	ssize_t (*setup)(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
>  			 u32 *batch, size_t max_size);
> @@ -1342,6 +1365,7 @@ int xe_lrc_setup_wa_bb_with_scratch(struct xe_lrc *lrc, struct xe_hw_engine *hwe
>  		{ .setup = setup_timestamp_wa },
>  		{ .setup = setup_invalidate_state_cache_wa },
>  		{ .setup = setup_utilization_wa },
> +		{ .setup = setup_disable_mtp_wa },

This is not really a workaround in the official sense of the term. I
would drop the "_wa" from the function name.

--
Gustavo Sousa

>  		{ .setup = setup_configfs_post_ctx_restore_bb },
>  	};
>  	struct bo_setup_state state = {
> -- 
> 2.43.0

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

* Re: [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (3 preceding siblings ...)
  2026-06-18 14:01 ` [PATCH] " Gustavo Sousa
@ 2026-06-18 16:42 ` Matt Roper
  2026-07-01 17:58 ` [PATCH] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
                   ` (20 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Matt Roper @ 2026-06-18 16:42 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe, stuart.summers, Gustavo Sousa

On Thu, Jun 18, 2026 at 09:54:21AM +0530, Varun Gupta wrote:
> Add a per-GT debugfs entry 'disable_mtp' that forces thread-group
> preemption granularity on Xe2+ RCS/CCS engines by writing CS_CHICKEN1
> via MI_LRI into the WA BB of each newly created LRC.
> 
> Signed-off-by: Varun Gupta <varun.gupta@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_gt_debugfs.c | 32 ++++++++++++++++++++++++++++++
>  drivers/gpu/drm/xe/xe_gt_types.h   |  8 ++++++++
>  drivers/gpu/drm/xe/xe_lrc.c        | 24 ++++++++++++++++++++++
>  3 files changed, 64 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> index f45306308cd6..e8f7ba6fc3c1 100644
> --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> @@ -334,6 +334,37 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
>  }
>  DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
>  
> +static int disable_mtp_get(void *data, u64 *val)
> +{
> +	struct xe_gt *gt = data;
> +
> +	*val = gt->disable_mtp;
> +
> +	return 0;
> +}
> +
> +static int disable_mtp_set(void *data, u64 val)
> +{
> +	struct xe_gt *gt = data;
> +	struct xe_device *xe = gt_to_xe(gt);
> +
> +	if (GRAPHICS_VER(xe) < 20)
> +		return -EOPNOTSUPP;
> +
> +	if (!(gt->info.engine_mask & (XE_HW_ENGINE_RCS_MASK | XE_HW_ENGINE_CCS_MASK)))
> +		return -EOPNOTSUPP;

Would it be better to check for RCS/CCS engines in
xe_gt_debugfs_register() so that we don't even create the debugfs entry
on GTs that it shouldn't apply to?  That would help avoid confusing
users with extra unusable debugfs entries.

> +
> +	gt->disable_mtp = !!val;
> +	drm_dbg(&gt_to_xe(gt)->drm, "GT%u: disable_mtp=%u: new LRCs will %s MTP\n",
> +		gt->info.id, !!val, !!val ? "disable" : "enable");
> +
> +	return 0;
> +}
> +DEFINE_DEBUGFS_ATTRIBUTE(disable_mtp_fops,
> +			 disable_mtp_get,
> +			 disable_mtp_set,
> +			 "%llu\n");
> +
>  void xe_gt_debugfs_register(struct xe_gt *gt)
>  {
>  	struct xe_device *xe = gt_to_xe(gt);
> @@ -366,6 +397,7 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
>  	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
>  	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
>  	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
> +	debugfs_create_file("disable_mtp", 0600, root, gt, &disable_mtp_fops);

In addition to the suggestion above about moving the engine check here,
we should also probably check the FUSE4[20] register to make sure that
MTP support isn't fused off entirely at the hardware level.  If it is,
that would be another reason not to register this file at all.

Or we can go with Gustavo's suggestion, and instead of making this a
"disable mtp" knob, we can make it a "choose gpgpu preemption
granularity" knob instead that can choose from mid-thread, thread-group,
or command preemption.  In that case, we'd still expose the debugfs file
if FUSE4[20] indicated that MTP was fused off, but we'd instead reject
attempts to select MTP as the preemption type.

>  
>  	drm_debugfs_create_files(vf_safe_debugfs_list,
>  				 ARRAY_SIZE(vf_safe_debugfs_list),
> diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
> index e5588c88800a..4f6d63b614f9 100644
> --- a/drivers/gpu/drm/xe/xe_gt_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_types.h
> @@ -219,6 +219,14 @@ struct xe_gt {
>  	 */
>  	u32 ccs_mode;
>  
> +	/**
> +	 * @disable_mtp: Force thread-group preemption granularity by disabling
> +	 * Mid-Thread Preemption on newly created LRCs.
> +	 *
> +	 * Xe2+ RCS/CCS only, controlled via debugfs.
> +	 */
> +	bool disable_mtp;
> +
>  	/** @usm: unified shared memory state */
>  	struct {
>  		/**
> diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
> index 3e7c995085d0..893456dad6a5 100644
> --- a/drivers/gpu/drm/xe/xe_lrc.c
> +++ b/drivers/gpu/drm/xe/xe_lrc.c
> @@ -1262,6 +1262,29 @@ static ssize_t setup_invalidate_auxccs_wa(struct xe_lrc *lrc,
>  	return emit(gt, batch) - batch;
>  }
>  
> +static ssize_t setup_disable_mtp_wa(struct xe_lrc *lrc,
> +				    struct xe_hw_engine *hwe,
> +				    u32 *batch, size_t max_len)
> +{
> +	struct xe_gt *gt = lrc->gt;
> +	struct xe_device *xe = gt_to_xe(gt);
> +	u32 *cmd = batch;
> +
> +	if (!gt->disable_mtp || GRAPHICS_VER(xe) < 20 ||
> +	    (hwe->class != XE_ENGINE_CLASS_RENDER &&
> +	     hwe->class != XE_ENGINE_CLASS_COMPUTE))
> +		return 0;
> +
> +	if (xe_gt_WARN_ON(gt, max_len < 3))
> +		return -ENOSPC;
> +
> +	*cmd++ = MI_LOAD_REGISTER_IMM | MI_LRI_LRM_CS_MMIO | MI_LRI_NUM_REGS(1);
> +	*cmd++ = CS_CHICKEN1(0).addr;
> +	*cmd++ = REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, PREEMPT_GPGPU_THREAD_GROUP_LEVEL);
> +
> +	return cmd - batch;
> +}
> +
>  struct bo_setup {
>  	ssize_t (*setup)(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
>  			 u32 *batch, size_t max_size);
> @@ -1342,6 +1365,7 @@ int xe_lrc_setup_wa_bb_with_scratch(struct xe_lrc *lrc, struct xe_hw_engine *hwe
>  		{ .setup = setup_timestamp_wa },
>  		{ .setup = setup_invalidate_state_cache_wa },
>  		{ .setup = setup_utilization_wa },
> +		{ .setup = setup_disable_mtp_wa },

Putting the programming in here is going to run a special batchbuffer to
reprogram the register every time there's a context switch, which I
think is overkill in this case.  The CS_CHICKEN1 register is already
saved/restored naturally on context switches, so as long as we create
the context with the right setting at the beginning, that setting will
persist for the context automatically after that point.

So I think it would be better if the debugfs interface did one of these
two options:

 * Use xe_lrc_write_ctx_reg() on gt->default_lrc[class] to update the
   golden LRC that serves as the starting point for all newly-created
   contexts.  When new LRCs are created, they make a copy of
   gt->default_lrc[class] and will have whatever settings are stored in
   the golden LRC.

 * Leave the golden LRC unchanged, but if debugfs has adjusted the
   preemption settings, call xe_lrc_write_ctx_reg() in xe_lrc_ctx_init()
   to adjust the value for newly-created LRCs after they're copied from
   the golden context.

That will basically make the debugfs knob something that controls the
behavior of all LRCs created after this point, making it possible to
mix-and-match where different LRCs have different preemption granularity
settings.


Matt

>  		{ .setup = setup_configfs_post_ctx_restore_bb },
>  	};
>  	struct bo_setup_state state = {
> -- 
> 2.43.0
> 

-- 
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation

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

* [PATCH] drm/xe: Add debugfs knob to control GPGPU preemption granularity
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (4 preceding siblings ...)
  2026-06-18 16:42 ` Matt Roper
@ 2026-07-01 17:58 ` Varun Gupta
  2026-07-01 18:19 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2) Patchwork
                   ` (19 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Varun Gupta @ 2026-07-01 17:58 UTC (permalink / raw)
  To: intel-xe; +Cc: matt.roper, rodrigo.vivi, gustavo.sousa, stuart.summers

Add a per-GT debugfs entry 'preemption_level' that controls the GPGPU/
Media preemption granularity for newly created RCS/CCS LRCs on Xe2+.

The knob accepts: "default", "mid-thread", "thread-group", "command",
corresponding to CS_CHICKEN1[2:1].

Per-context control requires FF_SLICE_CS_CHICKEN1[14] (Per Context
Preemption Granularity Control) to be active; without it CS_CHICKEN1[2:1]
is ignored by hardware. Two new RTP entries are added for Xe2+ RCS and
CCS engines to arm this gate bit.

CS_CHICKEN1 is part of the hardware context image and is saved/restored
automatically on every context switch (Bspec: Render Engine Context Image
Layout, DW offset 0x00E2). The preemption level is therefore written
directly into the cloned context image via xe_lrc_write_ctx_reg() in
xe_lrc_ctx_init() for each new LRC.

Because Xe2 CCS engines historically shared the xe2_xcs_offsets layout
with non-compute engines, a dedicated xe2_ccs_offsets layout is introduced
to safely map CS_CHICKEN1 exclusively for Compute contexts.

The debugfs entry is registered only on Xe2+ GTs with RCS/CCS engines
and only for the Physical Function (!IS_SRIOV_VF). If hardware fuses
indicate Mid-Thread Preemption is disabled in silicon, attempts to
select "mid-thread" are rejected with -EPERM under a forcewake lock.
Selecting any non-default value taints the kernel (TAINT_USER) as it
deviates from the platform default.

v2:
  - Dropped the WA BB/MI_LRI path; per Bspec, CS_CHICKEN1 is context
    save/restore state at DW 0x00E2, so we map CTX_CS_CHICKEN1 and program
    it directly in LRC init via xe_lrc_write_ctx_reg(). (Matt)
  - Split Xe2 CCS context offsets into a dedicated xe2_ccs_offsets array
    to map CS_CHICKEN1 without polluting other XCS engines.
  - Converted the debugfs interface from a binary boolean to a
    multi-option string knob ("default", "mid-thread", "thread-group",
    "command"). (Gustavo)
  - Restricted file creation to the Physical Function
    (!IS_SRIOV_VF). (Gustavo)
  - Added kernel tainting (TAINT_USER) when deviating from
    defaults. (Gustavo)
  - Added power-safe hardware fuse check (FUSE4 register 0x9114[20],
    CFEG_WMTP_DISABLE) before allowing MTP selection. (Matt)

Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
 drivers/gpu/drm/xe/regs/xe_lrc_layout.h |  2 +
 drivers/gpu/drm/xe/xe_gt_debugfs.c      | 80 +++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_gt_types.h        | 31 ++++++++++
 drivers/gpu/drm/xe/xe_lrc.c             | 50 ++++++++++++++++
 drivers/gpu/drm/xe/xe_wa.c              | 13 ++++
 5 files changed, 176 insertions(+)

diff --git a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
index 4ab86fc369fd..2236debf5534 100644
--- a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
+++ b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
@@ -37,6 +37,8 @@
 #define CTX_QUEUE_TIMESTAMP		(0xd0 + 1)
 #define CTX_QUEUE_TIMESTAMP_UDW		(0xd2 + 1)
 
+#define CTX_CS_CHICKEN1         (0xe2 + 1)
+
 #define INDIRECT_CTX_RING_HEAD		(0x02 + 1)
 #define INDIRECT_CTX_RING_TAIL		(0x04 + 1)
 #define INDIRECT_CTX_RING_START		(0x06 + 1)
diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index c38bcacb27e4..fa8a2c424803 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -6,10 +6,13 @@
 #include "xe_gt_debugfs.h"
 
 #include <linux/debugfs.h>
+#include <linux/panic.h>
+#include <linux/string.h>
 
 #include <drm/drm_debugfs.h>
 #include <drm/drm_managed.h>
 
+#include "regs/xe_gt_regs.h"
 #include "xe_device.h"
 #include "xe_force_wake.h"
 #include "xe_gt.h"
@@ -23,6 +26,7 @@
 #include "xe_hw_engine.h"
 #include "xe_lrc.h"
 #include "xe_mocs.h"
+#include "xe_mmio.h"
 #include "xe_pat.h"
 #include "xe_pm.h"
 #include "xe_reg_sr.h"
@@ -336,6 +340,79 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
 }
 DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
 
+static const char * const preemption_level_names[] = {
+	[XE_GPGPU_PREEMPT_DEFAULT]      = "default",
+	[XE_GPGPU_PREEMPT_MID_THREAD]   = "mid-thread",
+	[XE_GPGPU_PREEMPT_THREAD_GROUP] = "thread-group",
+	[XE_GPGPU_PREEMPT_COMMAND]      = "command",
+};
+
+static int preemption_level_show(struct seq_file *m, void *unused)
+{
+	struct xe_gt *gt = m->private;
+
+	seq_printf(m, "%s\n", preemption_level_names[READ_ONCE(gt->gpgpu_preempt_level)]);
+
+	return 0;
+}
+
+static ssize_t preemption_level_write(struct file *file,
+				      const char __user *ubuf,
+				      size_t len, loff_t *offp)
+{
+	struct seq_file *m = file->private_data;
+	struct xe_gt *gt = m->private;
+	struct xe_device *xe = gt_to_xe(gt);
+	enum xe_gpgpu_preempt_level new_level;
+	char buf[16];
+	int idx;
+
+	if (*offp)
+		return -EINVAL;
+	if (len >= sizeof(buf))
+		return -EINVAL;
+	if (copy_from_user(buf, ubuf, len))
+		return -EFAULT;
+	buf[len] = '\0';
+
+	idx = sysfs_match_string(preemption_level_names, buf);
+	if (idx < 0)
+		return idx;
+
+	new_level = (enum xe_gpgpu_preempt_level)idx;
+
+	if (new_level == XE_GPGPU_PREEMPT_MID_THREAD) {
+		unsigned int fw_ref;
+		u32 fuse4;
+
+		fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
+		if (!fw_ref)
+			return -ETIMEDOUT;
+
+		fuse4 = xe_mmio_read32(&gt->mmio, XEHP_FUSE4);
+		xe_force_wake_put(gt_to_fw(gt), fw_ref);
+
+		if (fuse4 & CFEG_WMTP_DISABLE) {
+			drm_warn(&xe->drm,
+				 "GT%u: MTP fused off in hardware, cannot select mid-thread\n",
+				 gt->info.id);
+			return -EPERM;
+		}
+	}
+
+	if (new_level != XE_GPGPU_PREEMPT_DEFAULT) {
+		add_taint(TAINT_USER, LOCKDEP_STILL_OK);
+		drm_notice(&xe->drm,
+			   "GT%u: GPGPU preemption overridden to '%s' (applies to new LRCs only)\n",
+			   gt->info.id, preemption_level_names[new_level]);
+	}
+
+	WRITE_ONCE(gt->gpgpu_preempt_level, new_level);
+
+	return len;
+}
+DEFINE_SHOW_STORE_ATTRIBUTE(preemption_level);
+
 void xe_gt_debugfs_register(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
@@ -368,6 +445,9 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
 	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
 	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
 	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
+	if (GRAPHICS_VER(xe) >= 20 && !IS_SRIOV_VF(xe) &&
+	    (gt->info.engine_mask & (XE_HW_ENGINE_RCS_MASK | XE_HW_ENGINE_CCS_MASK)))
+		debugfs_create_file("preemption_level", 0600, root, gt, &preemption_level_fops);
 
 	drm_debugfs_create_files(vf_safe_debugfs_list,
 				 ARRAY_SIZE(vf_safe_debugfs_list),
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index e5588c88800a..b4c677f1047b 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -35,6 +35,33 @@ enum xe_gt_eu_type {
 	XE_GT_EU_TYPE_SIMD16,
 };
 
+/**
+ * enum xe_gpgpu_preempt_level - Per-context GPGPU preemption override mode
+ *
+ * Selects the preemption granularity programmed into CS_CHICKEN1[2:1] for
+ * newly created Xe2+ RCS/CCS LRCs.
+ *
+ * The per-context override is effective only when
+ * FF_SLICE_CS_CHICKEN1[FFSC_PERCTX_PREEMPT_CTRL] is enabled via RTP.
+ *
+ * This setting is GT-scoped and affects only LRCs created after the value is
+ * changed; existing contexts keep their previously programmed value.
+ *
+ * @XE_GPGPU_PREEMPT_DEFAULT: Keep platform default preemption granularity.
+ * @XE_GPGPU_PREEMPT_MID_THREAD: Force mid-thread preemption level.
+ * @XE_GPGPU_PREEMPT_THREAD_GROUP: Force thread-group preemption level.
+ * @XE_GPGPU_PREEMPT_COMMAND: Force command-level preemption.
+ *
+ * Zero-initialized via kzalloc, so XE_GPGPU_PREEMPT_DEFAULT is the safe
+ * default (no override from platform policy).
+ */
+enum xe_gpgpu_preempt_level {
+	XE_GPGPU_PREEMPT_DEFAULT = 0,
+	XE_GPGPU_PREEMPT_MID_THREAD,
+	XE_GPGPU_PREEMPT_THREAD_GROUP,
+	XE_GPGPU_PREEMPT_COMMAND,
+};
+
 #define XE_MAX_DSS_FUSE_REGS		4
 #define XE_MAX_DSS_FUSE_BITS		(32 * XE_MAX_DSS_FUSE_REGS)
 #define XE_MAX_EU_FUSE_REGS		1
@@ -219,6 +246,10 @@ struct xe_gt {
 	 */
 	u32 ccs_mode;
 
+	/**
+	 * @gpgpu_preempt_level: per-GT GPGPU preemption granularity override.
+	 */
+	enum xe_gpgpu_preempt_level gpgpu_preempt_level;
 	/** @usm: unified shared memory state */
 	struct {
 		/**
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3e7c995085d0..00d2739ccda3 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -567,6 +567,20 @@ static const u8 xe2_rcs_offsets[] = {
 	LRI(1, 0),              /* [0x47] */
 	REG(0x0c8),             /* [0x48] R_PWR_CLK_STATE */
 
+	NOP(0x97),              /* Pad from DW 0x4a to 0xe0 */
+	LRI(1, POSTED),         /* [0xe1] */
+	REG16(0x580),           /* [0xe2] CS_CHICKEN1 (value at [0xe3]) */
+
+	0
+};
+
+static const u8 xe2_ccs_offsets[] = {
+	XE2_CTX_COMMON,
+
+	NOP(0xad),              /* Pad from DW 0x34 to 0xe0 */
+	LRI(1, POSTED),         /* [0xe1] */
+	REG16(0x580),           /* [0xe2] CS_CHICKEN1 (value at [0xe3]) */
+
 	0
 };
 
@@ -636,6 +650,13 @@ static const u8 *reg_offsets(struct xe_device *xe, enum xe_engine_class class)
 			return xe2_bcs_offsets;
 		else
 			return gen12_xcs_offsets;
+	} else if (class == XE_ENGINE_CLASS_COMPUTE) {
+		if (GRAPHICS_VER(xe) >= 20)
+			return xe2_ccs_offsets;
+		else if (GRAPHICS_VERx100(xe) >= 1255)
+			return dg2_xcs_offsets;
+		else
+			return gen12_xcs_offsets;
 	} else {
 		if (GRAPHICS_VER(xe) >= 20)
 			return xe2_xcs_offsets;
@@ -1589,6 +1610,35 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
 	if (xe->info.has_asid && vm)
 		xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
 
+	if (GRAPHICS_VER(xe) >= 20 &&
+	    (hwe->class == XE_ENGINE_CLASS_RENDER ||
+	     hwe->class == XE_ENGINE_CLASS_COMPUTE)) {
+		enum xe_gpgpu_preempt_level level = READ_ONCE(gt->gpgpu_preempt_level);
+
+		if (level != XE_GPGPU_PREEMPT_DEFAULT) {
+			u32 level_bits;
+
+			switch (level) {
+			case XE_GPGPU_PREEMPT_MID_THREAD:
+				level_bits = PREEMPT_GPGPU_MID_THREAD_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_THREAD_GROUP:
+				level_bits = PREEMPT_GPGPU_THREAD_GROUP_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_COMMAND:
+				level_bits = PREEMPT_GPGPU_COMMAND_LEVEL;
+				break;
+			default:
+				level_bits = 0;
+				break;
+			}
+
+			xe_lrc_write_ctx_reg(lrc, CTX_CS_CHICKEN1,
+					     REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK,
+							      level_bits));
+		}
+	}
+
 	lrc->desc = LRC_VALID;
 	lrc->desc |= FIELD_PREP(LRC_ADDRESSING_MODE, LRC_LEGACY_64B_CONTEXT);
 	/* TODO: Priority */
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 139434946f8f..431b9e42bba5 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -347,6 +347,19 @@ static const struct xe_rtp_table_sr engine_was = XE_RTP_TABLE_SR(
 	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
 			     FFSC_PERCTX_PREEMPT_CTRL))
 	},
+	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2-RCS"),
+	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
+		       ENGINE_CLASS(RENDER)),
+	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
+			     FFSC_PERCTX_PREEMPT_CTRL))
+	},
+	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2-CCS"),
+	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
+		       ENGINE_CLASS(COMPUTE)),
+	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(0), FFSC_PERCTX_PREEMPT_CTRL,
+			     XE_RTP_ACTION_FLAG(ENGINE_BASE))),
+	  XE_RTP_ENTRY_FLAG(FOREACH_ENGINE),
+	},
 	{ XE_RTP_NAME("18032247524"),
 	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2004),
 		       FUNC(xe_rtp_match_first_render_or_compute)),
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (5 preceding siblings ...)
  2026-07-01 17:58 ` [PATCH] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
@ 2026-07-01 18:19 ` Patchwork
  2026-07-01 19:11 ` ✗ Xe.CI.BAT: failure " Patchwork
                   ` (18 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-01 18:19 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:18:33] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:18:38] 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
../drivers/gpu/drm/xe/xe_pt.c:1420:13: warning: ‘xe_pt_svm_userptr_notifier_lock’ defined but not used [-Wunused-function]
 1420 | static void xe_pt_svm_userptr_notifier_lock(struct xe_vm *vm)
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

[18:19:10] Starting KUnit Kernel (1/1)...
[18:19:10] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:19:10] ================== guc_buf (11 subtests) ===================
[18:19:10] [PASSED] test_smallest
[18:19:10] [PASSED] test_largest
[18:19:10] [PASSED] test_granular
[18:19:10] [PASSED] test_unique
[18:19:10] [PASSED] test_overlap
[18:19:10] [PASSED] test_reusable
[18:19:10] [PASSED] test_too_big
[18:19:10] [PASSED] test_flush
[18:19:10] [PASSED] test_lookup
[18:19:10] [PASSED] test_data
[18:19:10] [PASSED] test_class
[18:19:10] ===================== [PASSED] guc_buf =====================
[18:19:10] =================== guc_dbm (7 subtests) ===================
[18:19:10] [PASSED] test_empty
[18:19:10] [PASSED] test_default
[18:19:10] ======================== test_size  ========================
[18:19:10] [PASSED] 4
[18:19:10] [PASSED] 8
[18:19:10] [PASSED] 32
[18:19:10] [PASSED] 256
[18:19:10] ==================== [PASSED] test_size ====================
[18:19:10] ======================= test_reuse  ========================
[18:19:10] [PASSED] 4
[18:19:10] [PASSED] 8
[18:19:10] [PASSED] 32
[18:19:10] [PASSED] 256
[18:19:10] =================== [PASSED] test_reuse ====================
[18:19:10] =================== test_range_overlap  ====================
[18:19:10] [PASSED] 4
[18:19:10] [PASSED] 8
[18:19:10] [PASSED] 32
[18:19:10] [PASSED] 256
[18:19:10] =============== [PASSED] test_range_overlap ================
[18:19:10] =================== test_range_compact  ====================
[18:19:10] [PASSED] 4
[18:19:10] [PASSED] 8
[18:19:10] [PASSED] 32
[18:19:10] [PASSED] 256
[18:19:10] =============== [PASSED] test_range_compact ================
[18:19:10] ==================== test_range_spare  =====================
[18:19:10] [PASSED] 4
[18:19:10] [PASSED] 8
[18:19:10] [PASSED] 32
[18:19:10] [PASSED] 256
[18:19:10] ================ [PASSED] test_range_spare =================
[18:19:10] ===================== [PASSED] guc_dbm =====================
[18:19:10] =================== guc_idm (6 subtests) ===================
[18:19:10] [PASSED] bad_init
[18:19:10] [PASSED] no_init
[18:19:10] [PASSED] init_fini
[18:19:10] [PASSED] check_used
[18:19:10] [PASSED] check_quota
[18:19:10] [PASSED] check_all
[18:19:10] ===================== [PASSED] guc_idm =====================
[18:19:10] ================== no_relay (3 subtests) ===================
[18:19:10] [PASSED] xe_drops_guc2pf_if_not_ready
[18:19:10] [PASSED] xe_drops_guc2vf_if_not_ready
[18:19:10] [PASSED] xe_rejects_send_if_not_ready
[18:19:10] ==================== [PASSED] no_relay =====================
[18:19:10] ================== pf_relay (14 subtests) ==================
[18:19:10] [PASSED] pf_rejects_guc2pf_too_short
[18:19:10] [PASSED] pf_rejects_guc2pf_too_long
[18:19:10] [PASSED] pf_rejects_guc2pf_no_payload
[18:19:10] [PASSED] pf_fails_no_payload
[18:19:10] [PASSED] pf_fails_bad_origin
[18:19:10] [PASSED] pf_fails_bad_type
[18:19:10] [PASSED] pf_txn_reports_error
[18:19:10] [PASSED] pf_txn_sends_pf2guc
[18:19:10] [PASSED] pf_sends_pf2guc
[18:19:10] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:19:10] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:19:10] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:19:10] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:19:10] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[18:19:10] ==================== [PASSED] pf_relay =====================
[18:19:10] ================== vf_relay (3 subtests) ===================
[18:19:10] [PASSED] vf_rejects_guc2vf_too_short
[18:19:10] [PASSED] vf_rejects_guc2vf_too_long
[18:19:10] [PASSED] vf_rejects_guc2vf_no_payload
[18:19:10] ==================== [PASSED] vf_relay =====================
[18:19:10] ================ pf_gt_config (9 subtests) =================
[18:19:10] [PASSED] fair_contexts_1vf
[18:19:10] [PASSED] fair_doorbells_1vf
[18:19:10] [PASSED] fair_ggtt_1vf
[18:19:10] ====================== fair_vram_1vf  ======================
[18:19:10] [PASSED] 3.50 GiB
[18:19:10] [PASSED] 11.5 GiB
[18:19:10] [PASSED] 15.5 GiB
[18:19:10] [PASSED] 31.5 GiB
[18:19:10] [PASSED] 63.5 GiB
[18:19:10] [PASSED] 1.91 GiB
[18:19:10] ================== [PASSED] fair_vram_1vf ==================
[18:19:10] ================ fair_vram_1vf_admin_only  =================
[18:19:10] [PASSED] 3.50 GiB
[18:19:10] [PASSED] 11.5 GiB
[18:19:10] [PASSED] 15.5 GiB
[18:19:10] [PASSED] 31.5 GiB
[18:19:10] [PASSED] 63.5 GiB
[18:19:10] [PASSED] 1.91 GiB
[18:19:10] ============ [PASSED] fair_vram_1vf_admin_only =============
[18:19:10] ====================== fair_contexts  ======================
[18:19:10] [PASSED] 1 VF
[18:19:10] [PASSED] 2 VFs
[18:19:10] [PASSED] 3 VFs
[18:19:10] [PASSED] 4 VFs
[18:19:10] [PASSED] 5 VFs
[18:19:10] [PASSED] 6 VFs
[18:19:10] [PASSED] 7 VFs
[18:19:10] [PASSED] 8 VFs
[18:19:10] [PASSED] 9 VFs
[18:19:10] [PASSED] 10 VFs
[18:19:10] [PASSED] 11 VFs
[18:19:10] [PASSED] 12 VFs
[18:19:10] [PASSED] 13 VFs
[18:19:10] [PASSED] 14 VFs
[18:19:10] [PASSED] 15 VFs
[18:19:10] [PASSED] 16 VFs
[18:19:10] [PASSED] 17 VFs
[18:19:10] [PASSED] 18 VFs
[18:19:10] [PASSED] 19 VFs
[18:19:10] [PASSED] 20 VFs
[18:19:10] [PASSED] 21 VFs
[18:19:10] [PASSED] 22 VFs
[18:19:10] [PASSED] 23 VFs
[18:19:10] [PASSED] 24 VFs
[18:19:10] [PASSED] 25 VFs
[18:19:10] [PASSED] 26 VFs
[18:19:10] [PASSED] 27 VFs
[18:19:10] [PASSED] 28 VFs
[18:19:10] [PASSED] 29 VFs
[18:19:10] [PASSED] 30 VFs
[18:19:10] [PASSED] 31 VFs
[18:19:10] [PASSED] 32 VFs
[18:19:10] [PASSED] 33 VFs
[18:19:10] [PASSED] 34 VFs
[18:19:10] [PASSED] 35 VFs
[18:19:10] [PASSED] 36 VFs
[18:19:10] [PASSED] 37 VFs
[18:19:10] [PASSED] 38 VFs
[18:19:10] [PASSED] 39 VFs
[18:19:10] [PASSED] 40 VFs
[18:19:10] [PASSED] 41 VFs
[18:19:10] [PASSED] 42 VFs
[18:19:10] [PASSED] 43 VFs
[18:19:10] [PASSED] 44 VFs
[18:19:10] [PASSED] 45 VFs
[18:19:10] [PASSED] 46 VFs
[18:19:10] [PASSED] 47 VFs
[18:19:10] [PASSED] 48 VFs
[18:19:10] [PASSED] 49 VFs
[18:19:10] [PASSED] 50 VFs
[18:19:10] [PASSED] 51 VFs
[18:19:10] [PASSED] 52 VFs
[18:19:10] [PASSED] 53 VFs
[18:19:10] [PASSED] 54 VFs
[18:19:10] [PASSED] 55 VFs
[18:19:10] [PASSED] 56 VFs
[18:19:10] [PASSED] 57 VFs
[18:19:10] [PASSED] 58 VFs
[18:19:10] [PASSED] 59 VFs
[18:19:10] [PASSED] 60 VFs
[18:19:10] [PASSED] 61 VFs
[18:19:10] [PASSED] 62 VFs
[18:19:10] [PASSED] 63 VFs
[18:19:10] ================== [PASSED] fair_contexts ==================
[18:19:10] ===================== fair_doorbells  ======================
[18:19:10] [PASSED] 1 VF
[18:19:10] [PASSED] 2 VFs
[18:19:10] [PASSED] 3 VFs
[18:19:10] [PASSED] 4 VFs
[18:19:10] [PASSED] 5 VFs
[18:19:10] [PASSED] 6 VFs
[18:19:10] [PASSED] 7 VFs
[18:19:10] [PASSED] 8 VFs
[18:19:10] [PASSED] 9 VFs
[18:19:10] [PASSED] 10 VFs
[18:19:10] [PASSED] 11 VFs
[18:19:10] [PASSED] 12 VFs
[18:19:10] [PASSED] 13 VFs
[18:19:10] [PASSED] 14 VFs
[18:19:10] [PASSED] 15 VFs
[18:19:10] [PASSED] 16 VFs
[18:19:10] [PASSED] 17 VFs
[18:19:10] [PASSED] 18 VFs
[18:19:10] [PASSED] 19 VFs
[18:19:10] [PASSED] 20 VFs
[18:19:10] [PASSED] 21 VFs
[18:19:10] [PASSED] 22 VFs
[18:19:10] [PASSED] 23 VFs
[18:19:10] [PASSED] 24 VFs
[18:19:10] [PASSED] 25 VFs
[18:19:10] [PASSED] 26 VFs
[18:19:10] [PASSED] 27 VFs
[18:19:10] [PASSED] 28 VFs
[18:19:10] [PASSED] 29 VFs
[18:19:10] [PASSED] 30 VFs
[18:19:10] [PASSED] 31 VFs
[18:19:10] [PASSED] 32 VFs
[18:19:10] [PASSED] 33 VFs
[18:19:10] [PASSED] 34 VFs
[18:19:10] [PASSED] 35 VFs
[18:19:10] [PASSED] 36 VFs
[18:19:10] [PASSED] 37 VFs
[18:19:10] [PASSED] 38 VFs
[18:19:10] [PASSED] 39 VFs
[18:19:10] [PASSED] 40 VFs
[18:19:10] [PASSED] 41 VFs
[18:19:10] [PASSED] 42 VFs
[18:19:10] [PASSED] 43 VFs
[18:19:10] [PASSED] 44 VFs
[18:19:10] [PASSED] 45 VFs
[18:19:10] [PASSED] 46 VFs
[18:19:10] [PASSED] 47 VFs
[18:19:10] [PASSED] 48 VFs
[18:19:10] [PASSED] 49 VFs
[18:19:10] [PASSED] 50 VFs
[18:19:10] [PASSED] 51 VFs
[18:19:10] [PASSED] 52 VFs
[18:19:10] [PASSED] 53 VFs
[18:19:10] [PASSED] 54 VFs
[18:19:10] [PASSED] 55 VFs
[18:19:10] [PASSED] 56 VFs
[18:19:10] [PASSED] 57 VFs
[18:19:10] [PASSED] 58 VFs
[18:19:10] [PASSED] 59 VFs
[18:19:10] [PASSED] 60 VFs
[18:19:10] [PASSED] 61 VFs
[18:19:10] [PASSED] 62 VFs
[18:19:10] [PASSED] 63 VFs
[18:19:10] ================= [PASSED] fair_doorbells ==================
[18:19:10] ======================== fair_ggtt  ========================
[18:19:10] [PASSED] 1 VF
[18:19:10] [PASSED] 2 VFs
[18:19:10] [PASSED] 3 VFs
[18:19:10] [PASSED] 4 VFs
[18:19:10] [PASSED] 5 VFs
[18:19:10] [PASSED] 6 VFs
[18:19:10] [PASSED] 7 VFs
[18:19:10] [PASSED] 8 VFs
[18:19:10] [PASSED] 9 VFs
[18:19:10] [PASSED] 10 VFs
[18:19:10] [PASSED] 11 VFs
[18:19:10] [PASSED] 12 VFs
[18:19:10] [PASSED] 13 VFs
[18:19:10] [PASSED] 14 VFs
[18:19:10] [PASSED] 15 VFs
[18:19:10] [PASSED] 16 VFs
[18:19:10] [PASSED] 17 VFs
[18:19:10] [PASSED] 18 VFs
[18:19:10] [PASSED] 19 VFs
[18:19:10] [PASSED] 20 VFs
[18:19:10] [PASSED] 21 VFs
[18:19:10] [PASSED] 22 VFs
[18:19:10] [PASSED] 23 VFs
[18:19:10] [PASSED] 24 VFs
[18:19:10] [PASSED] 25 VFs
[18:19:10] [PASSED] 26 VFs
[18:19:10] [PASSED] 27 VFs
[18:19:10] [PASSED] 28 VFs
[18:19:10] [PASSED] 29 VFs
[18:19:10] [PASSED] 30 VFs
[18:19:10] [PASSED] 31 VFs
[18:19:10] [PASSED] 32 VFs
[18:19:10] [PASSED] 33 VFs
[18:19:10] [PASSED] 34 VFs
[18:19:10] [PASSED] 35 VFs
[18:19:10] [PASSED] 36 VFs
[18:19:10] [PASSED] 37 VFs
[18:19:10] [PASSED] 38 VFs
[18:19:10] [PASSED] 39 VFs
[18:19:10] [PASSED] 40 VFs
[18:19:10] [PASSED] 41 VFs
[18:19:10] [PASSED] 42 VFs
[18:19:10] [PASSED] 43 VFs
[18:19:10] [PASSED] 44 VFs
[18:19:10] [PASSED] 45 VFs
[18:19:10] [PASSED] 46 VFs
[18:19:10] [PASSED] 47 VFs
[18:19:10] [PASSED] 48 VFs
[18:19:10] [PASSED] 49 VFs
[18:19:10] [PASSED] 50 VFs
[18:19:10] [PASSED] 51 VFs
[18:19:10] [PASSED] 52 VFs
[18:19:10] [PASSED] 53 VFs
[18:19:10] [PASSED] 54 VFs
[18:19:10] [PASSED] 55 VFs
[18:19:10] [PASSED] 56 VFs
[18:19:10] [PASSED] 57 VFs
[18:19:10] [PASSED] 58 VFs
[18:19:10] [PASSED] 59 VFs
[18:19:10] [PASSED] 60 VFs
[18:19:10] [PASSED] 61 VFs
[18:19:10] [PASSED] 62 VFs
[18:19:10] [PASSED] 63 VFs
[18:19:10] ==================== [PASSED] fair_ggtt ====================
[18:19:10] ======================== fair_vram  ========================
[18:19:10] [PASSED] 1 VF
[18:19:10] [PASSED] 2 VFs
[18:19:10] [PASSED] 3 VFs
[18:19:10] [PASSED] 4 VFs
[18:19:10] [PASSED] 5 VFs
[18:19:10] [PASSED] 6 VFs
[18:19:10] [PASSED] 7 VFs
[18:19:10] [PASSED] 8 VFs
[18:19:10] [PASSED] 9 VFs
[18:19:10] [PASSED] 10 VFs
[18:19:10] [PASSED] 11 VFs
[18:19:10] [PASSED] 12 VFs
[18:19:10] [PASSED] 13 VFs
[18:19:10] [PASSED] 14 VFs
[18:19:10] [PASSED] 15 VFs
[18:19:10] [PASSED] 16 VFs
[18:19:10] [PASSED] 17 VFs
[18:19:10] [PASSED] 18 VFs
[18:19:10] [PASSED] 19 VFs
[18:19:10] [PASSED] 20 VFs
[18:19:10] [PASSED] 21 VFs
[18:19:10] [PASSED] 22 VFs
[18:19:10] [PASSED] 23 VFs
[18:19:10] [PASSED] 24 VFs
[18:19:10] [PASSED] 25 VFs
[18:19:10] [PASSED] 26 VFs
[18:19:10] [PASSED] 27 VFs
[18:19:10] [PASSED] 28 VFs
[18:19:10] [PASSED] 29 VFs
[18:19:10] [PASSED] 30 VFs
[18:19:10] [PASSED] 31 VFs
[18:19:10] [PASSED] 32 VFs
[18:19:10] [PASSED] 33 VFs
[18:19:10] [PASSED] 34 VFs
[18:19:10] [PASSED] 35 VFs
[18:19:10] [PASSED] 36 VFs
[18:19:10] [PASSED] 37 VFs
[18:19:10] [PASSED] 38 VFs
[18:19:10] [PASSED] 39 VFs
[18:19:10] [PASSED] 40 VFs
[18:19:10] [PASSED] 41 VFs
[18:19:10] [PASSED] 42 VFs
[18:19:10] [PASSED] 43 VFs
[18:19:10] [PASSED] 44 VFs
[18:19:10] [PASSED] 45 VFs
[18:19:10] [PASSED] 46 VFs
[18:19:10] [PASSED] 47 VFs
[18:19:10] [PASSED] 48 VFs
[18:19:10] [PASSED] 49 VFs
[18:19:10] [PASSED] 50 VFs
[18:19:10] [PASSED] 51 VFs
[18:19:10] [PASSED] 52 VFs
[18:19:10] [PASSED] 53 VFs
[18:19:10] [PASSED] 54 VFs
[18:19:10] [PASSED] 55 VFs
[18:19:10] [PASSED] 56 VFs
[18:19:10] [PASSED] 57 VFs
[18:19:10] [PASSED] 58 VFs
[18:19:10] [PASSED] 59 VFs
[18:19:10] [PASSED] 60 VFs
[18:19:10] [PASSED] 61 VFs
[18:19:10] [PASSED] 62 VFs
[18:19:10] [PASSED] 63 VFs
[18:19:10] ==================== [PASSED] fair_vram ====================
[18:19:10] ================== [PASSED] pf_gt_config ===================
[18:19:10] ===================== lmtt (1 subtest) =====================
[18:19:10] ======================== test_ops  =========================
[18:19:10] [PASSED] 2-level
[18:19:10] [PASSED] multi-level
[18:19:10] ==================== [PASSED] test_ops =====================
[18:19:10] ====================== [PASSED] lmtt =======================
[18:19:10] ================= pf_service (11 subtests) =================
[18:19:10] [PASSED] pf_negotiate_any
[18:19:10] [PASSED] pf_negotiate_base_match
[18:19:10] [PASSED] pf_negotiate_base_newer
[18:19:10] [PASSED] pf_negotiate_base_next
[18:19:10] [SKIPPED] pf_negotiate_base_older (no older minor)
[18:19:10] [PASSED] pf_negotiate_base_prev
[18:19:10] [PASSED] pf_negotiate_latest_match
[18:19:10] [PASSED] pf_negotiate_latest_newer
[18:19:10] [PASSED] pf_negotiate_latest_next
[18:19:10] [SKIPPED] pf_negotiate_latest_older (no older minor)
[18:19:10] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[18:19:10] =================== [PASSED] pf_service ====================
[18:19:10] ================= xe_guc_g2g (2 subtests) ==================
[18:19:10] ============== xe_live_guc_g2g_kunit_default  ==============
[18:19:10] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[18:19:10] ============== xe_live_guc_g2g_kunit_allmem  ===============
[18:19:10] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[18:19:10] =================== [SKIPPED] xe_guc_g2g ===================
[18:19:10] =================== xe_mocs (2 subtests) ===================
[18:19:10] ================ xe_live_mocs_kernel_kunit  ================
[18:19:10] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:19:10] ================ xe_live_mocs_reset_kunit  =================
[18:19:10] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:19:10] ==================== [SKIPPED] xe_mocs =====================
[18:19:10] ================= xe_migrate (2 subtests) ==================
[18:19:10] ================= xe_migrate_sanity_kunit  =================
[18:19:10] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:19:10] ================== xe_validate_ccs_kunit  ==================
[18:19:10] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:19:10] =================== [SKIPPED] xe_migrate ===================
[18:19:10] ================== xe_dma_buf (1 subtest) ==================
[18:19:10] ==================== xe_dma_buf_kunit  =====================
[18:19:10] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:19:10] =================== [SKIPPED] xe_dma_buf ===================
[18:19:10] ================= xe_bo_shrink (1 subtest) =================
[18:19:10] =================== xe_bo_shrink_kunit  ====================
[18:19:10] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:19:10] ================== [SKIPPED] xe_bo_shrink ==================
[18:19:10] ==================== xe_bo (2 subtests) ====================
[18:19:10] ================== xe_ccs_migrate_kunit  ===================
[18:19:10] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:19:10] ==================== xe_bo_evict_kunit  ====================
[18:19:10] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:19:10] ===================== [SKIPPED] xe_bo ======================
[18:19:10] ==================== args (13 subtests) ====================
[18:19:10] [PASSED] count_args_test
[18:19:10] [PASSED] call_args_example
[18:19:10] [PASSED] call_args_test
[18:19:10] [PASSED] drop_first_arg_example
[18:19:10] [PASSED] drop_first_arg_test
[18:19:10] [PASSED] first_arg_example
[18:19:10] [PASSED] first_arg_test
[18:19:10] [PASSED] last_arg_example
[18:19:10] [PASSED] last_arg_test
[18:19:10] [PASSED] pick_arg_example
[18:19:10] [PASSED] if_args_example
[18:19:10] [PASSED] if_args_test
[18:19:10] [PASSED] sep_comma_example
[18:19:10] ====================== [PASSED] args =======================
[18:19:10] =================== xe_pci (3 subtests) ====================
[18:19:10] ==================== check_graphics_ip  ====================
[18:19:10] [PASSED] 12.00 Xe_LP
[18:19:10] [PASSED] 12.10 Xe_LP+
[18:19:10] [PASSED] 12.55 Xe_HPG
[18:19:10] [PASSED] 12.60 Xe_HPC
[18:19:10] [PASSED] 12.70 Xe_LPG
[18:19:10] [PASSED] 12.71 Xe_LPG
[18:19:10] [PASSED] 12.74 Xe_LPG+
[18:19:10] [PASSED] 20.01 Xe2_HPG
[18:19:10] [PASSED] 20.02 Xe2_HPG
[18:19:10] [PASSED] 20.04 Xe2_LPG
[18:19:10] [PASSED] 30.00 Xe3_LPG
[18:19:10] [PASSED] 30.01 Xe3_LPG
[18:19:10] [PASSED] 30.03 Xe3_LPG
[18:19:10] [PASSED] 30.04 Xe3_LPG
[18:19:10] [PASSED] 30.05 Xe3_LPG
[18:19:10] [PASSED] 35.10 Xe3p_LPG
[18:19:10] [PASSED] 35.11 Xe3p_XPC
[18:19:10] ================ [PASSED] check_graphics_ip ================
[18:19:10] ===================== check_media_ip  ======================
[18:19:10] [PASSED] 12.00 Xe_M
[18:19:10] [PASSED] 12.55 Xe_HPM
[18:19:10] [PASSED] 13.00 Xe_LPM+
[18:19:10] [PASSED] 13.01 Xe2_HPM
[18:19:10] [PASSED] 20.00 Xe2_LPM
[18:19:10] [PASSED] 30.00 Xe3_LPM
[18:19:10] [PASSED] 30.02 Xe3_LPM
[18:19:10] [PASSED] 35.00 Xe3p_LPM
[18:19:10] [PASSED] 35.03 Xe3p_HPM
[18:19:10] ================= [PASSED] check_media_ip ==================
[18:19:10] =================== check_platform_desc  ===================
[18:19:10] [PASSED] 0x9A60 (TIGERLAKE)
[18:19:10] [PASSED] 0x9A68 (TIGERLAKE)
[18:19:10] [PASSED] 0x9A70 (TIGERLAKE)
[18:19:10] [PASSED] 0x9A40 (TIGERLAKE)
[18:19:10] [PASSED] 0x9A49 (TIGERLAKE)
[18:19:10] [PASSED] 0x9A59 (TIGERLAKE)
[18:19:10] [PASSED] 0x9A78 (TIGERLAKE)
[18:19:10] [PASSED] 0x9AC0 (TIGERLAKE)
[18:19:10] [PASSED] 0x9AC9 (TIGERLAKE)
[18:19:10] [PASSED] 0x9AD9 (TIGERLAKE)
[18:19:10] [PASSED] 0x9AF8 (TIGERLAKE)
[18:19:10] [PASSED] 0x4C80 (ROCKETLAKE)
[18:19:10] [PASSED] 0x4C8A (ROCKETLAKE)
[18:19:10] [PASSED] 0x4C8B (ROCKETLAKE)
[18:19:10] [PASSED] 0x4C8C (ROCKETLAKE)
[18:19:10] [PASSED] 0x4C90 (ROCKETLAKE)
[18:19:10] [PASSED] 0x4C9A (ROCKETLAKE)
[18:19:10] [PASSED] 0x4680 (ALDERLAKE_S)
[18:19:10] [PASSED] 0x4682 (ALDERLAKE_S)
[18:19:10] [PASSED] 0x4688 (ALDERLAKE_S)
[18:19:10] [PASSED] 0x468A (ALDERLAKE_S)
[18:19:10] [PASSED] 0x468B (ALDERLAKE_S)
[18:19:10] [PASSED] 0x4690 (ALDERLAKE_S)
[18:19:10] [PASSED] 0x4692 (ALDERLAKE_S)
[18:19:10] [PASSED] 0x4693 (ALDERLAKE_S)
[18:19:10] [PASSED] 0x46A0 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46A1 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46A2 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46A3 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46A6 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46A8 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46AA (ALDERLAKE_P)
[18:19:10] [PASSED] 0x462A (ALDERLAKE_P)
[18:19:10] [PASSED] 0x4626 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x4628 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46B0 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46B1 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46B2 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46B3 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46C0 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46C1 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46C2 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46C3 (ALDERLAKE_P)
[18:19:10] [PASSED] 0x46D0 (ALDERLAKE_N)
[18:19:10] [PASSED] 0x46D1 (ALDERLAKE_N)
[18:19:10] [PASSED] 0x46D2 (ALDERLAKE_N)
[18:19:10] [PASSED] 0x46D3 (ALDERLAKE_N)
[18:19:10] [PASSED] 0x46D4 (ALDERLAKE_N)
[18:19:10] [PASSED] 0xA721 (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA7A1 (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA7A9 (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA7AC (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA7AD (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA720 (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA7A0 (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA7A8 (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA7AA (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA7AB (ALDERLAKE_P)
[18:19:10] [PASSED] 0xA780 (ALDERLAKE_S)
[18:19:10] [PASSED] 0xA781 (ALDERLAKE_S)
[18:19:10] [PASSED] 0xA782 (ALDERLAKE_S)
[18:19:10] [PASSED] 0xA783 (ALDERLAKE_S)
[18:19:10] [PASSED] 0xA788 (ALDERLAKE_S)
[18:19:10] [PASSED] 0xA789 (ALDERLAKE_S)
[18:19:10] [PASSED] 0xA78A (ALDERLAKE_S)
[18:19:10] [PASSED] 0xA78B (ALDERLAKE_S)
[18:19:10] [PASSED] 0x4905 (DG1)
[18:19:10] [PASSED] 0x4906 (DG1)
[18:19:10] [PASSED] 0x4907 (DG1)
[18:19:10] [PASSED] 0x4908 (DG1)
[18:19:10] [PASSED] 0x4909 (DG1)
[18:19:10] [PASSED] 0x56C0 (DG2)
[18:19:10] [PASSED] 0x56C2 (DG2)
[18:19:10] [PASSED] 0x56C1 (DG2)
[18:19:10] [PASSED] 0x7D51 (METEORLAKE)
[18:19:10] [PASSED] 0x7DD1 (METEORLAKE)
[18:19:10] [PASSED] 0x7D41 (METEORLAKE)
[18:19:10] [PASSED] 0x7D67 (METEORLAKE)
[18:19:10] [PASSED] 0xB640 (METEORLAKE)
[18:19:10] [PASSED] 0x56A0 (DG2)
[18:19:10] [PASSED] 0x56A1 (DG2)
[18:19:10] [PASSED] 0x56A2 (DG2)
[18:19:10] [PASSED] 0x56BE (DG2)
[18:19:10] [PASSED] 0x56BF (DG2)
[18:19:10] [PASSED] 0x5690 (DG2)
[18:19:10] [PASSED] 0x5691 (DG2)
[18:19:10] [PASSED] 0x5692 (DG2)
[18:19:10] [PASSED] 0x56A5 (DG2)
[18:19:10] [PASSED] 0x56A6 (DG2)
[18:19:10] [PASSED] 0x56B0 (DG2)
[18:19:10] [PASSED] 0x56B1 (DG2)
[18:19:10] [PASSED] 0x56BA (DG2)
[18:19:10] [PASSED] 0x56BB (DG2)
[18:19:10] [PASSED] 0x56BC (DG2)
[18:19:10] [PASSED] 0x56BD (DG2)
[18:19:10] [PASSED] 0x5693 (DG2)
[18:19:10] [PASSED] 0x5694 (DG2)
[18:19:10] [PASSED] 0x5695 (DG2)
[18:19:10] [PASSED] 0x56A3 (DG2)
[18:19:10] [PASSED] 0x56A4 (DG2)
[18:19:10] [PASSED] 0x56B2 (DG2)
[18:19:10] [PASSED] 0x56B3 (DG2)
[18:19:10] [PASSED] 0x5696 (DG2)
[18:19:10] [PASSED] 0x5697 (DG2)
[18:19:10] [PASSED] 0xB69 (PVC)
[18:19:10] [PASSED] 0xB6E (PVC)
[18:19:10] [PASSED] 0xBD4 (PVC)
[18:19:10] [PASSED] 0xBD5 (PVC)
[18:19:10] [PASSED] 0xBD6 (PVC)
[18:19:10] [PASSED] 0xBD7 (PVC)
[18:19:10] [PASSED] 0xBD8 (PVC)
[18:19:10] [PASSED] 0xBD9 (PVC)
[18:19:10] [PASSED] 0xBDA (PVC)
[18:19:10] [PASSED] 0xBDB (PVC)
[18:19:10] [PASSED] 0xBE0 (PVC)
[18:19:10] [PASSED] 0xBE1 (PVC)
[18:19:10] [PASSED] 0xBE5 (PVC)
[18:19:10] [PASSED] 0x7D40 (METEORLAKE)
[18:19:10] [PASSED] 0x7D45 (METEORLAKE)
[18:19:10] [PASSED] 0x7D55 (METEORLAKE)
[18:19:10] [PASSED] 0x7D60 (METEORLAKE)
[18:19:10] [PASSED] 0x7DD5 (METEORLAKE)
[18:19:10] [PASSED] 0x6420 (LUNARLAKE)
[18:19:10] [PASSED] 0x64A0 (LUNARLAKE)
[18:19:10] [PASSED] 0x64B0 (LUNARLAKE)
[18:19:10] [PASSED] 0xE202 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE209 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE20B (BATTLEMAGE)
[18:19:10] [PASSED] 0xE20C (BATTLEMAGE)
[18:19:10] [PASSED] 0xE20D (BATTLEMAGE)
[18:19:10] [PASSED] 0xE210 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE211 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE212 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE216 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE220 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE221 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE222 (BATTLEMAGE)
[18:19:10] [PASSED] 0xE223 (BATTLEMAGE)
[18:19:10] [PASSED] 0xB080 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB081 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB082 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB083 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB084 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB085 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB086 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB087 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB08F (PANTHERLAKE)
[18:19:10] [PASSED] 0xB090 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB0A0 (PANTHERLAKE)
[18:19:10] [PASSED] 0xB0B0 (PANTHERLAKE)
[18:19:10] [PASSED] 0xFD80 (PANTHERLAKE)
[18:19:10] [PASSED] 0xFD81 (PANTHERLAKE)
[18:19:10] [PASSED] 0xD740 (NOVALAKE_S)
[18:19:10] [PASSED] 0xD741 (NOVALAKE_S)
[18:19:10] [PASSED] 0xD742 (NOVALAKE_S)
[18:19:10] [PASSED] 0xD743 (NOVALAKE_S)
[18:19:10] [PASSED] 0xD745 (NOVALAKE_S)
[18:19:10] [PASSED] 0xD74A (NOVALAKE_S)
[18:19:10] [PASSED] 0xD74B (NOVALAKE_S)
[18:19:10] [PASSED] 0x674C (CRESCENTISLAND)
[18:19:10] [PASSED] 0x674D (CRESCENTISLAND)
[18:19:10] [PASSED] 0x674E (CRESCENTISLAND)
[18:19:10] [PASSED] 0x674F (CRESCENTISLAND)
[18:19:10] [PASSED] 0x6750 (CRESCENTISLAND)
[18:19:10] [PASSED] 0xD750 (NOVALAKE_P)
[18:19:10] [PASSED] 0xD751 (NOVALAKE_P)
[18:19:10] [PASSED] 0xD752 (NOVALAKE_P)
[18:19:10] [PASSED] 0xD753 (NOVALAKE_P)
[18:19:10] [PASSED] 0xD754 (NOVALAKE_P)
[18:19:10] [PASSED] 0xD755 (NOVALAKE_P)
[18:19:10] [PASSED] 0xD756 (NOVALAKE_P)
[18:19:10] [PASSED] 0xD757 (NOVALAKE_P)
[18:19:10] [PASSED] 0xD75F (NOVALAKE_P)
[18:19:10] =============== [PASSED] check_platform_desc ===============
[18:19:10] ===================== [PASSED] xe_pci ======================
[18:19:10] ============= xe_rtp_tables_test (5 subtests) ==============
[18:19:10] ================== xe_rtp_table_gt_test  ===================
[18:19:10] [PASSED] gt_was/14011060649
[18:19:10] [PASSED] gt_was/14011059788
[18:19:10] [PASSED] gt_was/14015795083
[18:19:10] [PASSED] gt_was/16021867713
[18:19:10] [PASSED] gt_was/14019449301
[18:19:10] [PASSED] gt_was/16028005424
[18:19:10] [PASSED] gt_was/14026578760
[18:19:10] [PASSED] gt_was/1409420604
[18:19:10] [PASSED] gt_was/1408615072
[18:19:10] [PASSED] gt_was/22010523718
[18:19:10] [PASSED] gt_was/14011006942
[18:19:10] [PASSED] gt_was/14014830051
[18:19:10] [PASSED] gt_was/18018781329
[18:19:10] [PASSED] gt_was/1509235366
[18:19:10] [PASSED] gt_was/18018781329
[18:19:10] [PASSED] gt_was/16016694945
[18:19:10] [PASSED] gt_was/14018575942
[18:19:10] [PASSED] gt_was/22016670082
[18:19:10] [PASSED] gt_was/22016670082
[18:19:10] [PASSED] gt_was/14017421178
[18:19:10] [PASSED] gt_was/16025250150
[18:19:10] [PASSED] gt_was/14021871409
[18:19:10] [PASSED] gt_was/16021865536
[18:19:10] [PASSED] gt_was/14021486841
[18:19:10] [PASSED] gt_was/14025160223
[18:19:10] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[18:19:10] [PASSED] gt_was/14025635424
[18:19:10] [PASSED] gt_was/16028005424
[18:19:10] ============== [PASSED] xe_rtp_table_gt_test ===============
[18:19:10] ================== xe_rtp_table_gt_test  ===================
[18:19:10] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[18:19:10] [PASSED] gt_tunings/Tuning: 32B Access Enable
[18:19:10] [PASSED] gt_tunings/Tuning: L3 cache
[18:19:10] [PASSED] gt_tunings/Tuning: L3 cache - media
[18:19:10] [PASSED] gt_tunings/Tuning: Compression Overfetch
[18:19:10] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[18:19:10] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[18:19:10] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[18:19:10] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[18:19:10] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[18:19:10] [PASSED] gt_tunings/Tuning: Stateless compression control
[18:19:10] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[18:19:10] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[18:19:10] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[18:19:10] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[18:19:10] ============== [PASSED] xe_rtp_table_gt_test ===============
[18:19:10] ================== xe_rtp_table_oob_test  ==================
[18:19:10] [PASSED] oob_was/1607983814
[18:19:10] [PASSED] oob_was/16010904313
[18:19:10] [PASSED] oob_was/18022495364
[18:19:10] [PASSED] oob_was/22012773006
[18:19:10] [PASSED] oob_was/14014475959
[18:19:10] [PASSED] oob_was/22011391025
[18:19:10] [PASSED] oob_was/22012727170
[18:19:10] [PASSED] oob_was/22012727685
[18:19:10] [PASSED] oob_was/22016596838
[18:19:10] [PASSED] oob_was/18020744125
[18:19:10] [PASSED] oob_was/1409600907
[18:19:10] [PASSED] oob_was/22014953428
[18:19:10] [PASSED] oob_was/16017236439
[18:19:10] [PASSED] oob_was/14019821291
[18:19:10] [PASSED] oob_was/14015076503
[18:19:10] [PASSED] oob_was/14018913170
[18:19:10] [PASSED] oob_was/14018094691
[18:19:10] [PASSED] oob_was/18024947630
[18:19:10] [PASSED] oob_was/16022287689
[18:19:10] [PASSED] oob_was/13011645652
[18:19:10] [PASSED] oob_was/14022293748
[18:19:10] [PASSED] oob_was/22019794406
[18:19:10] [PASSED] oob_was/22019338487
[18:19:10] [PASSED] oob_was/16023588340
[18:19:10] [PASSED] oob_was/14019789679
[18:19:10] [PASSED] oob_was/14022866841
[18:19:10] [PASSED] oob_was/16021333562
[18:19:10] [PASSED] oob_was/14016712196
[18:19:10] [PASSED] oob_was/14015568240
[18:19:10] [PASSED] oob_was/18013179988
[18:19:10] [PASSED] oob_was/1508761755
[18:19:10] [PASSED] oob_was/16023105232
[18:19:10] [PASSED] oob_was/16026508708
[18:19:10] [PASSED] oob_was/14020001231
[18:19:10] [PASSED] oob_was/16023683509
[18:19:10] [PASSED] oob_was/14025515070
[18:19:10] [PASSED] oob_was/15015404425_disable
[18:19:10] [PASSED] oob_was/16026007364
[18:19:10] [PASSED] oob_was/14020316580
[18:19:10] [PASSED] oob_was/14025883347
[18:19:10] [PASSED] oob_was/16029380221
[18:19:10] ============== [PASSED] xe_rtp_table_oob_test ==============
[18:19:10] ================ xe_rtp_table_dev_oob_test  ================
[18:19:10] [PASSED] device_oob_was/22010954014
[18:19:10] [PASSED] device_oob_was/15015404425
[18:19:10] [PASSED] device_oob_was/22019338487_display
[18:19:10] [PASSED] device_oob_was/14022085890
[18:19:10] [PASSED] device_oob_was/14026539277
[18:19:10] [PASSED] device_oob_was/14026633728
[18:19:10] [PASSED] device_oob_was/14026746987
[18:19:10] [PASSED] device_oob_was/14026779378
[18:19:10] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[18:19:10] ========== xe_rtp_table_missing_upper_bound_test  ==========
[18:19:10] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[18:19:10] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[18:19:10] [PASSED] register_whitelist/1806527549
[18:19:10] [PASSED] register_whitelist/allow_read_ctx_timestamp
[18:19:10] [PASSED] register_whitelist/allow_read_queue_timestamp
[18:19:10] [PASSED] register_whitelist/16014440446
[18:19:10] [PASSED] register_whitelist/16017236439
[18:19:10] [PASSED] register_whitelist/16020183090
[18:19:10] [PASSED] register_whitelist/14024997852
[18:19:10] [PASSED] register_whitelist/14024997852
[18:19:10] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[18:19:10] =============== [PASSED] xe_rtp_tables_test ================
[18:19:10] =================== xe_rtp (3 subtests) ====================
[18:19:10] =================== xe_rtp_rules_tests  ====================
[18:19:10] [PASSED] no
[18:19:10] [PASSED] yes
[18:19:10] [PASSED] no-and-no
[18:19:10] [PASSED] no-and-yes
[18:19:10] [PASSED] yes-and-no
[18:19:10] [PASSED] yes-and-yes
[18:19:10] [PASSED] no-or-no
[18:19:10] [PASSED] no-or-yes
[18:19:10] [PASSED] yes-or-no
[18:19:10] [PASSED] yes-or-yes
[18:19:10] [PASSED] no-yes-or-yes-no
[18:19:10] [PASSED] no-yes-or-yes-yes
[18:19:10] [PASSED] yes-yes-or-no-yes
[18:19:10] [PASSED] yes-yes-or-yes-yes
[18:19:10] [PASSED] no-no-or-yes-or-no
[18:19:10] [PASSED] or
[18:19:10] [PASSED] or-yes
[18:19:10] [PASSED] or-no
[18:19:10] [PASSED] yes-or
[18:19:10] [PASSED] no-or
[18:19:10] [PASSED] no-or-or-yes
[18:19:10] [PASSED] yes-or-or-no
[18:19:10] [PASSED] no-or-or-no
[18:19:10] [PASSED] missing-context-engine-class
[18:19:10] [PASSED] missing-context-engine-class-or-yes
[18:19:10] [PASSED] missing-context-engine-class-or-or-yes
[18:19:10] =============== [PASSED] xe_rtp_rules_tests ================
[18:19:10] =============== xe_rtp_process_to_sr_tests  ================
[18:19:10] [PASSED] coalesce-same-reg
[18:19:10] [PASSED] coalesce-same-reg-literal-and-func
[18:19:10] [PASSED] no-match-no-add
[18:19:10] [PASSED] two-regs-two-entries
[18:19:10] [PASSED] clr-one-set-other
[18:19:10] [PASSED] set-field
[18:19:10] [PASSED] conflict-duplicate
[18:19:10] [PASSED] conflict-not-disjoint
[18:19:10] [PASSED] conflict-not-disjoint-literal-and-func
[18:19:10] [PASSED] conflict-reg-type
[18:19:10] [PASSED] bad-mcr-reg-forced-to-regular
[18:19:10] [PASSED] bad-regular-reg-forced-to-mcr
[18:19:10] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:19:10] ================== xe_rtp_process_tests  ===================
[18:19:10] [PASSED] active1
[18:19:10] [PASSED] active2
[18:19:10] [PASSED] active-inactive
[18:19:10] [PASSED] inactive-active
[18:19:10] [PASSED] inactive-active-inactive
[18:19:10] [PASSED] inactive-inactive-inactive
[18:19:10] ============== [PASSED] xe_rtp_process_tests ===============
[18:19:10] ===================== [PASSED] xe_rtp ======================
[18:19:10] ==================== xe_wa (1 subtest) =====================
[18:19:10] ======================== xe_wa_gt  =========================
[18:19:10] [PASSED] TIGERLAKE B0
[18:19:10] [PASSED] DG1 A0
[18:19:10] [PASSED] DG1 B0
[18:19:10] [PASSED] ALDERLAKE_S A0
[18:19:10] [PASSED] ALDERLAKE_S B0
[18:19:10] [PASSED] ALDERLAKE_S C0
[18:19:10] [PASSED] ALDERLAKE_S D0
[18:19:10] [PASSED] ALDERLAKE_P A0
[18:19:10] [PASSED] ALDERLAKE_P B0
[18:19:10] [PASSED] ALDERLAKE_P C0
[18:19:10] [PASSED] ALDERLAKE_S RPLS D0
[18:19:10] [PASSED] ALDERLAKE_P RPLU E0
[18:19:10] [PASSED] DG2 G10 C0
[18:19:10] [PASSED] DG2 G11 B1
[18:19:10] [PASSED] DG2 G12 A1
[18:19:10] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:19:10] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:19:10] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[18:19:10] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[18:19:10] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[18:19:10] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[18:19:10] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[18:19:10] ==================== [PASSED] xe_wa_gt =====================
[18:19:10] ====================== [PASSED] xe_wa ======================
[18:19:10] ============================================================
[18:19:10] Testing complete. Ran 729 tests: passed: 711, skipped: 18
[18:19:10] Elapsed time: 36.745s total, 4.425s configuring, 31.653s building, 0.649s running

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (6 preceding siblings ...)
  2026-07-01 18:19 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2) Patchwork
@ 2026-07-01 19:11 ` Patchwork
  2026-07-02 14:38 ` ✗ Xe.CI.FULL: " Patchwork
                   ` (17 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-01 19:11 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2)
URL   : https://patchwork.freedesktop.org/series/168743/
State : failure

== Summary ==

CI Bug Log - changes from xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b_BAT -> xe-pw-168743v2_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-168743v2_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-168743v2_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 (13 -> 12)
------------------------------

  Missing    (1): bat-bmg-vm 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@xe_module_load@load:
    - bat-bmg-3:          [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-3/igt@xe_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-3/igt@xe_module_load@load.html
    - bat-bmg-2:          [PASS][3] -> [DMESG-FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@xe_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@xe_module_load@load.html
    - bat-bmg-1:          [PASS][5] -> [ABORT][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-1/igt@xe_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-1/igt@xe_module_load@load.html

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

  Here are the changes found in xe-pw-168743v2_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-bmg-2:          [PASS][7] -> [SKIP][8] ([Intel XE#8517])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html

  * igt@xe_exec_basic@twice-bindexecqueue-userptr:
    - bat-bmg-2:          [PASS][9] -> [SKIP][10] ([Intel XE#8480]) +250 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@xe_exec_basic@twice-bindexecqueue-userptr.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@xe_exec_basic@twice-bindexecqueue-userptr.html

  * igt@xe_live_ktest@xe_dma_buf:
    - bat-bmg-2:          [PASS][11] -> [FAIL][12] ([Intel XE#8464]) +6 other tests fail
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html

  * igt@xe_multigpu_svm@mgpu-latency-prefetch:
    - bat-bmg-3:          [PASS][13] -> [SKIP][14] ([Intel XE#6964]) +20 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-3/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-3/igt@xe_multigpu_svm@mgpu-latency-prefetch.html

  * igt@xe_peer2peer@read:
    - bat-bmg-3:          [PASS][15] -> [SKIP][16] ([Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-3/igt@xe_peer2peer@read.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-3/igt@xe_peer2peer@read.html

  * igt@xe_query@multigpu-query-pxp-status:
    - bat-bmg-3:          [PASS][17] -> [SKIP][18] ([Intel XE#8480]) +71 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-3/igt@xe_query@multigpu-query-pxp-status.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-3/igt@xe_query@multigpu-query-pxp-status.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-bmg-2:          [SKIP][19] ([Intel XE#2233]) -> [SKIP][20] ([Intel XE#8480])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - bat-bmg-2:          [SKIP][21] ([Intel XE#2489] / [Intel XE#3419]) -> [SKIP][22] ([Intel XE#8480]) +13 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - bat-bmg-2:          [SKIP][23] ([Intel XE#2482]) -> [SKIP][24] ([Intel XE#8480]) +3 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-bmg-2:          [SKIP][25] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][26] ([Intel XE#8480])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - bat-bmg-2:          [SKIP][27] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][28] ([Intel XE#8480]) +2 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@xe_exec_multi_queue@priority:
    - bat-bmg-2:          [SKIP][29] ([Intel XE#8364]) -> [SKIP][30] ([Intel XE#8480]) +13 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@xe_exec_multi_queue@priority.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-bmg-2:          [SKIP][31] ([Intel XE#2229]) -> [FAIL][32] ([Intel XE#8464])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-bmg-2:          [SKIP][33] ([Intel XE#1420] / [Intel XE#7590]) -> [SKIP][34] ([Intel XE#8480])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-bmg-2:          [SKIP][35] ([Intel XE#2245] / [Intel XE#7590]) -> [SKIP][36] ([Intel XE#8480])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-bmg-2:          [SKIP][37] ([Intel XE#2236] / [Intel XE#7590]) -> [SKIP][38] ([Intel XE#8480])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html

  
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
  [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
  [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8464
  [Intel XE#8480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8480
  [Intel XE#8517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8517


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

  * Linux: xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b -> xe-pw-168743v2

  IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b: a10cc0a3736f20e94703ccb9f9c57b078dcfe94b
  xe-pw-168743v2: 168743v2

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (7 preceding siblings ...)
  2026-07-01 19:11 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-07-02 14:38 ` Patchwork
  2026-07-06  5:35 ` [PATCH v3] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
                   ` (16 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-02 14:38 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2)
URL   : https://patchwork.freedesktop.org/series/168743/
State : failure

== Summary ==

CI Bug Log - changes from xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b_FULL -> xe-pw-168743v2_FULL
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with xe-pw-168743v2_FULL need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-168743v2_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-168743v2_FULL:

### IGT changes ###

#### Warnings ####

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [SKIP][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24]) ([Intel XE#2457] / [Intel XE#7405]) -> ([DMESG-FAIL][25], [DMESG-FAIL][26], [DMESG-FAIL][27], [DMESG-FAIL][28], [DMESG-FAIL][29], [DMESG-FAIL][30], [DMESG-FAIL][31], [DMESG-FAIL][32], [DMESG-FAIL][33], [DMESG-FAIL][34], [DMESG-FAIL][35], [DMESG-FAIL][36], [DMESG-FAIL][37], [DMESG-FAIL][38], [DMESG-FAIL][39], [DMESG-FAIL][40], [DMESG-FAIL][41], [DMESG-FAIL][42], [DMESG-FAIL][43], [DMESG-FAIL][44], [DMESG-FAIL][45], [DMESG-FAIL][46], [DMESG-FAIL][47], [DMESG-FAIL][48], [DMESG-FAIL][49])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-7/igt@xe_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-2/igt@xe_module_load@load.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-7/igt@xe_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-3/igt@xe_module_load@load.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-3/igt@xe_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-8/igt@xe_module_load@load.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-6/igt@xe_module_load@load.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-3/igt@xe_module_load@load.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-5/igt@xe_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-5/igt@xe_module_load@load.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-4/igt@xe_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-4/igt@xe_module_load@load.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-2/igt@xe_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-7/igt@xe_module_load@load.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-2/igt@xe_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-10/igt@xe_module_load@load.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-1/igt@xe_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-9/igt@xe_module_load@load.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-1/igt@xe_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-9/igt@xe_module_load@load.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-8/igt@xe_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-6/igt@xe_module_load@load.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-6/igt@xe_module_load@load.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-bmg-5/igt@xe_module_load@load.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-5/igt@xe_module_load@load.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-6/igt@xe_module_load@load.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-6/igt@xe_module_load@load.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-6/igt@xe_module_load@load.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-3/igt@xe_module_load@load.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-3/igt@xe_module_load@load.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-3/igt@xe_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-4/igt@xe_module_load@load.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-2/igt@xe_module_load@load.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-2/igt@xe_module_load@load.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-2/igt@xe_module_load@load.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-9/igt@xe_module_load@load.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-9/igt@xe_module_load@load.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-9/igt@xe_module_load@load.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-9/igt@xe_module_load@load.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-7/igt@xe_module_load@load.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-7/igt@xe_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-1/igt@xe_module_load@load.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-1/igt@xe_module_load@load.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-1/igt@xe_module_load@load.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-10/igt@xe_module_load@load.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-8/igt@xe_module_load@load.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-8/igt@xe_module_load@load.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-5/igt@xe_module_load@load.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-bmg-5/igt@xe_module_load@load.html

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [FAIL][50] ([Intel XE#301]) -> [PASS][51] +1 other test pass
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset:
    - shard-lnl:          [FAIL][52] ([Intel XE#8058]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v2/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset.html

  
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#8058]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8058


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

  * Linux: xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b -> xe-pw-168743v2

  IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5324-a10cc0a3736f20e94703ccb9f9c57b078dcfe94b: a10cc0a3736f20e94703ccb9f9c57b078dcfe94b
  xe-pw-168743v2: 168743v2

== Logs ==

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

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

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

* [PATCH v3] drm/xe: Add debugfs knob to control GPGPU preemption granularity
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (8 preceding siblings ...)
  2026-07-02 14:38 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-07-06  5:35 ` Varun Gupta
  2026-07-06 12:02 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3) Patchwork
                   ` (15 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Varun Gupta @ 2026-07-06  5:35 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, gustavo.sousa, stuart.summers

Add a per-GT debugfs entry 'preemption_level' that controls the GPGPU/
Media preemption granularity for newly created RCS/CCS LRCs on Xe2+.

The knob accepts: "default", "mid-thread", "thread-group", "command",
corresponding to CS_CHICKEN1[2:1].

Per-context control requires FF_SLICE_CS_CHICKEN1[14] (Per Context
Preemption Granularity Control) to be active; without it CS_CHICKEN1[2:1]
is ignored by hardware. Two new RTP entries are added for Xe2+ RCS and
CCS engines to arm this gate bit.

CS_CHICKEN1 is part of the hardware context image and is saved/restored
automatically on every context switch (Bspec: Render Engine Context Image
Layout, DW offset 0x00E2). The preemption level is therefore written
directly into the cloned context image via xe_lrc_write_ctx_reg() in
xe_lrc_ctx_init() for each new LRC.

Because Xe2 CCS engines historically shared the xe2_xcs_offsets layout
with non-compute engines, a dedicated xe2_ccs_offsets layout is introduced
to safely map CS_CHICKEN1 exclusively for Compute contexts.

The debugfs entry is registered only on Xe2+ GTs with RCS/CCS engines
and only for the Physical Function (!IS_SRIOV_VF). If hardware fuses
indicate Mid-Thread Preemption is disabled in silicon, attempts to
select "mid-thread" are rejected with -EPERM under a forcewake lock.
Selecting any non-default value taints the kernel (TAINT_USER) as it
deviates from the platform default.

v3:
  - Wrapped XEHP_FUSE4 forcewake read with xe_pm_runtime_get/put to
    prevent PCIe aborts/timeouts when the GPU is in D3hot/D3cold. (sashiko)
  - Fixed NOP macro truncation by splitting padding offsets larger than
    0x7f into multiple NOPs, ensuring correct context layout. (sashiko)
  - Converted CTX_CS_CHICKEN1 initialization to a read-modify-write
    sequence to avoid overwriting golden context mask bits. (sashiko)
  - Removed the FF_SLICE_CS_CHICKEN1 workaround for CCS engines, as
    compute engines lack this 3D fixed-function register, which was
    causing GuC "illegal register" panics on initialization.

v2:
  - Dropped the WA BB/MI_LRI path; per Bspec, CS_CHICKEN1 is context
    save/restore state at DW 0x00E2, so we map CTX_CS_CHICKEN1 and program
    it directly in LRC init via xe_lrc_write_ctx_reg(). (Matt)
  - Split Xe2 CCS context offsets into a dedicated xe2_ccs_offsets array
    to map CS_CHICKEN1 without polluting other XCS engines.
  - Converted the debugfs interface from a binary boolean to a
    multi-option string knob ("default", "mid-thread", "thread-group",
    "command"). (Gustavo)
  - Restricted file creation to the Physical Function
    (!IS_SRIOV_VF). (Gustavo)
  - Added kernel tainting (TAINT_USER) when deviating from
    defaults. (Gustavo)
  - Added power-safe hardware fuse check (FUSE4 register 0x9114[20],
    CFEG_WMTP_DISABLE) before allowing MTP selection. (Matt)

Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
 drivers/gpu/drm/xe/regs/xe_lrc_layout.h |  2 +
 drivers/gpu/drm/xe/xe_gt_debugfs.c      | 85 +++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_gt_types.h        | 31 +++++++++
 drivers/gpu/drm/xe/xe_lrc.c             | 52 +++++++++++++++
 drivers/gpu/drm/xe/xe_wa.c              |  6 ++
 5 files changed, 176 insertions(+)

diff --git a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
index 4ab86fc369fd..2236debf5534 100644
--- a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
+++ b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
@@ -37,6 +37,8 @@
 #define CTX_QUEUE_TIMESTAMP		(0xd0 + 1)
 #define CTX_QUEUE_TIMESTAMP_UDW		(0xd2 + 1)
 
+#define CTX_CS_CHICKEN1         (0xe2 + 1)
+
 #define INDIRECT_CTX_RING_HEAD		(0x02 + 1)
 #define INDIRECT_CTX_RING_TAIL		(0x04 + 1)
 #define INDIRECT_CTX_RING_START		(0x06 + 1)
diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index c38bcacb27e4..b41fafe22a76 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -6,10 +6,13 @@
 #include "xe_gt_debugfs.h"
 
 #include <linux/debugfs.h>
+#include <linux/panic.h>
+#include <linux/string.h>
 
 #include <drm/drm_debugfs.h>
 #include <drm/drm_managed.h>
 
+#include "regs/xe_gt_regs.h"
 #include "xe_device.h"
 #include "xe_force_wake.h"
 #include "xe_gt.h"
@@ -23,6 +26,7 @@
 #include "xe_hw_engine.h"
 #include "xe_lrc.h"
 #include "xe_mocs.h"
+#include "xe_mmio.h"
 #include "xe_pat.h"
 #include "xe_pm.h"
 #include "xe_reg_sr.h"
@@ -336,6 +340,84 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
 }
 DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
 
+static const char * const preemption_level_names[] = {
+	[XE_GPGPU_PREEMPT_DEFAULT]      = "default",
+	[XE_GPGPU_PREEMPT_MID_THREAD]   = "mid-thread",
+	[XE_GPGPU_PREEMPT_THREAD_GROUP] = "thread-group",
+	[XE_GPGPU_PREEMPT_COMMAND]      = "command",
+};
+
+static int preemption_level_show(struct seq_file *m, void *unused)
+{
+	struct xe_gt *gt = m->private;
+
+	seq_printf(m, "%s\n", preemption_level_names[READ_ONCE(gt->gpgpu_preempt_level)]);
+
+	return 0;
+}
+
+static ssize_t preemption_level_write(struct file *file,
+				      const char __user *ubuf,
+				      size_t len, loff_t *offp)
+{
+	struct seq_file *m = file->private_data;
+	struct xe_gt *gt = m->private;
+	struct xe_device *xe = gt_to_xe(gt);
+	enum xe_gpgpu_preempt_level new_level;
+	char buf[16];
+	int idx;
+
+	if (*offp)
+		return -EINVAL;
+	if (len >= sizeof(buf))
+		return -EINVAL;
+	if (copy_from_user(buf, ubuf, len))
+		return -EFAULT;
+	buf[len] = '\0';
+
+	idx = sysfs_match_string(preemption_level_names, buf);
+	if (idx < 0)
+		return idx;
+
+	new_level = (enum xe_gpgpu_preempt_level)idx;
+
+	if (new_level == XE_GPGPU_PREEMPT_MID_THREAD) {
+		unsigned int fw_ref;
+		u32 fuse4;
+
+		xe_pm_runtime_get(xe);
+		fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
+		if (!fw_ref) {
+			xe_force_wake_put(gt_to_fw(gt), fw_ref);
+			xe_pm_runtime_put(xe);
+			return -ETIMEDOUT;
+		}
+
+		fuse4 = xe_mmio_read32(&gt->mmio, XEHP_FUSE4);
+		xe_force_wake_put(gt_to_fw(gt), fw_ref);
+		xe_pm_runtime_put(xe);
+
+		if (fuse4 & CFEG_WMTP_DISABLE) {
+			drm_warn(&xe->drm,
+				 "GT%u: MTP fused off in hardware, cannot select mid-thread\n",
+				 gt->info.id);
+			return -EPERM;
+		}
+	}
+
+	if (new_level != XE_GPGPU_PREEMPT_DEFAULT) {
+		add_taint(TAINT_USER, LOCKDEP_STILL_OK);
+		drm_notice(&xe->drm,
+			   "GT%u: GPGPU preemption overridden to '%s' (applies to new LRCs only)\n",
+			   gt->info.id, preemption_level_names[new_level]);
+	}
+
+	WRITE_ONCE(gt->gpgpu_preempt_level, new_level);
+
+	return len;
+}
+DEFINE_SHOW_STORE_ATTRIBUTE(preemption_level);
+
 void xe_gt_debugfs_register(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
@@ -368,6 +450,9 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
 	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
 	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
 	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
+	if (GRAPHICS_VER(xe) >= 20 && !IS_SRIOV_VF(xe) &&
+	    (gt->info.engine_mask & (XE_HW_ENGINE_RCS_MASK | XE_HW_ENGINE_CCS_MASK)))
+		debugfs_create_file("preemption_level", 0600, root, gt, &preemption_level_fops);
 
 	drm_debugfs_create_files(vf_safe_debugfs_list,
 				 ARRAY_SIZE(vf_safe_debugfs_list),
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index e5588c88800a..b4c677f1047b 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -35,6 +35,33 @@ enum xe_gt_eu_type {
 	XE_GT_EU_TYPE_SIMD16,
 };
 
+/**
+ * enum xe_gpgpu_preempt_level - Per-context GPGPU preemption override mode
+ *
+ * Selects the preemption granularity programmed into CS_CHICKEN1[2:1] for
+ * newly created Xe2+ RCS/CCS LRCs.
+ *
+ * The per-context override is effective only when
+ * FF_SLICE_CS_CHICKEN1[FFSC_PERCTX_PREEMPT_CTRL] is enabled via RTP.
+ *
+ * This setting is GT-scoped and affects only LRCs created after the value is
+ * changed; existing contexts keep their previously programmed value.
+ *
+ * @XE_GPGPU_PREEMPT_DEFAULT: Keep platform default preemption granularity.
+ * @XE_GPGPU_PREEMPT_MID_THREAD: Force mid-thread preemption level.
+ * @XE_GPGPU_PREEMPT_THREAD_GROUP: Force thread-group preemption level.
+ * @XE_GPGPU_PREEMPT_COMMAND: Force command-level preemption.
+ *
+ * Zero-initialized via kzalloc, so XE_GPGPU_PREEMPT_DEFAULT is the safe
+ * default (no override from platform policy).
+ */
+enum xe_gpgpu_preempt_level {
+	XE_GPGPU_PREEMPT_DEFAULT = 0,
+	XE_GPGPU_PREEMPT_MID_THREAD,
+	XE_GPGPU_PREEMPT_THREAD_GROUP,
+	XE_GPGPU_PREEMPT_COMMAND,
+};
+
 #define XE_MAX_DSS_FUSE_REGS		4
 #define XE_MAX_DSS_FUSE_BITS		(32 * XE_MAX_DSS_FUSE_REGS)
 #define XE_MAX_EU_FUSE_REGS		1
@@ -219,6 +246,10 @@ struct xe_gt {
 	 */
 	u32 ccs_mode;
 
+	/**
+	 * @gpgpu_preempt_level: per-GT GPGPU preemption granularity override.
+	 */
+	enum xe_gpgpu_preempt_level gpgpu_preempt_level;
 	/** @usm: unified shared memory state */
 	struct {
 		/**
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3e7c995085d0..513f43dbc505 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -567,6 +567,20 @@ static const u8 xe2_rcs_offsets[] = {
 	LRI(1, 0),              /* [0x47] */
 	REG(0x0c8),             /* [0x48] R_PWR_CLK_STATE */
 
+	NOP(0x7f), NOP(0x18),              /* Pad from DW 0x4a to 0xe0 */
+	LRI(1, POSTED),         /* [0xe1] */
+	REG16(0x580),           /* [0xe2] CS_CHICKEN1 (value at [0xe3]) */
+
+	0
+};
+
+static const u8 xe2_ccs_offsets[] = {
+	XE2_CTX_COMMON,
+
+	NOP(0x7f), NOP(0x2e),              /* Pad from DW 0x34 to 0xe0 */
+	LRI(1, POSTED),         /* [0xe1] */
+	REG16(0x580),           /* [0xe2] CS_CHICKEN1 (value at [0xe3]) */
+
 	0
 };
 
@@ -636,6 +650,13 @@ static const u8 *reg_offsets(struct xe_device *xe, enum xe_engine_class class)
 			return xe2_bcs_offsets;
 		else
 			return gen12_xcs_offsets;
+	} else if (class == XE_ENGINE_CLASS_COMPUTE) {
+		if (GRAPHICS_VER(xe) >= 20)
+			return xe2_ccs_offsets;
+		else if (GRAPHICS_VERx100(xe) >= 1255)
+			return dg2_xcs_offsets;
+		else
+			return gen12_xcs_offsets;
 	} else {
 		if (GRAPHICS_VER(xe) >= 20)
 			return xe2_xcs_offsets;
@@ -1589,6 +1610,37 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
 	if (xe->info.has_asid && vm)
 		xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
 
+	if (GRAPHICS_VER(xe) >= 20 &&
+	    (hwe->class == XE_ENGINE_CLASS_RENDER ||
+	     hwe->class == XE_ENGINE_CLASS_COMPUTE)) {
+		enum xe_gpgpu_preempt_level level = READ_ONCE(gt->gpgpu_preempt_level);
+
+		if (level != XE_GPGPU_PREEMPT_DEFAULT) {
+			u32 level_bits;
+			u32 val;
+
+			switch (level) {
+			case XE_GPGPU_PREEMPT_MID_THREAD:
+				level_bits = PREEMPT_GPGPU_MID_THREAD_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_THREAD_GROUP:
+				level_bits = PREEMPT_GPGPU_THREAD_GROUP_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_COMMAND:
+				level_bits = PREEMPT_GPGPU_COMMAND_LEVEL;
+				break;
+			default:
+				level_bits = 0;
+				break;
+			}
+
+			val = xe_lrc_read_ctx_reg(lrc, CTX_CS_CHICKEN1);
+			val &= ~PREEMPT_GPGPU_LEVEL_MASK;
+			val |= REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, level_bits);
+			xe_lrc_write_ctx_reg(lrc, CTX_CS_CHICKEN1, val);
+		}
+	}
+
 	lrc->desc = LRC_VALID;
 	lrc->desc |= FIELD_PREP(LRC_ADDRESSING_MODE, LRC_LEGACY_64B_CONTEXT);
 	/* TODO: Priority */
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 139434946f8f..70072963aba0 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -347,6 +347,12 @@ static const struct xe_rtp_table_sr engine_was = XE_RTP_TABLE_SR(
 	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
 			     FFSC_PERCTX_PREEMPT_CTRL))
 	},
+	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2"),
+	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
+		       ENGINE_CLASS(RENDER)),
+	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
+			     FFSC_PERCTX_PREEMPT_CTRL))
+	},
 	{ XE_RTP_NAME("18032247524"),
 	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2004),
 		       FUNC(xe_rtp_match_first_render_or_compute)),
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (9 preceding siblings ...)
  2026-07-06  5:35 ` [PATCH v3] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
@ 2026-07-06 12:02 ` Patchwork
  2026-07-06 12:47 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (14 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-06 12:02 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:01:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:01:23] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
../drivers/gpu/drm/xe/xe_pt.c:1430:13: warning: ‘xe_pt_svm_userptr_notifier_lock’ defined but not used [-Wunused-function]
 1430 | static void xe_pt_svm_userptr_notifier_lock(struct xe_vm *vm)
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

[12:01:55] Starting KUnit Kernel (1/1)...
[12:01:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:01:55] ================== guc_buf (11 subtests) ===================
[12:01:55] [PASSED] test_smallest
[12:01:55] [PASSED] test_largest
[12:01:55] [PASSED] test_granular
[12:01:55] [PASSED] test_unique
[12:01:55] [PASSED] test_overlap
[12:01:55] [PASSED] test_reusable
[12:01:55] [PASSED] test_too_big
[12:01:55] [PASSED] test_flush
[12:01:55] [PASSED] test_lookup
[12:01:55] [PASSED] test_data
[12:01:55] [PASSED] test_class
[12:01:55] ===================== [PASSED] guc_buf =====================
[12:01:55] =================== guc_dbm (7 subtests) ===================
[12:01:55] [PASSED] test_empty
[12:01:55] [PASSED] test_default
[12:01:55] ======================== test_size  ========================
[12:01:55] [PASSED] 4
[12:01:55] [PASSED] 8
[12:01:55] [PASSED] 32
[12:01:55] [PASSED] 256
[12:01:55] ==================== [PASSED] test_size ====================
[12:01:55] ======================= test_reuse  ========================
[12:01:55] [PASSED] 4
[12:01:55] [PASSED] 8
[12:01:55] [PASSED] 32
[12:01:55] [PASSED] 256
[12:01:55] =================== [PASSED] test_reuse ====================
[12:01:55] =================== test_range_overlap  ====================
[12:01:55] [PASSED] 4
[12:01:55] [PASSED] 8
[12:01:55] [PASSED] 32
[12:01:55] [PASSED] 256
[12:01:55] =============== [PASSED] test_range_overlap ================
[12:01:55] =================== test_range_compact  ====================
[12:01:55] [PASSED] 4
[12:01:55] [PASSED] 8
[12:01:55] [PASSED] 32
[12:01:55] [PASSED] 256
[12:01:55] =============== [PASSED] test_range_compact ================
[12:01:55] ==================== test_range_spare  =====================
[12:01:55] [PASSED] 4
[12:01:55] [PASSED] 8
[12:01:55] [PASSED] 32
[12:01:55] [PASSED] 256
[12:01:55] ================ [PASSED] test_range_spare =================
[12:01:55] ===================== [PASSED] guc_dbm =====================
[12:01:55] =================== guc_idm (6 subtests) ===================
[12:01:55] [PASSED] bad_init
[12:01:55] [PASSED] no_init
[12:01:55] [PASSED] init_fini
[12:01:55] [PASSED] check_used
[12:01:55] [PASSED] check_quota
[12:01:55] [PASSED] check_all
[12:01:55] ===================== [PASSED] guc_idm =====================
[12:01:55] ================== no_relay (3 subtests) ===================
[12:01:55] [PASSED] xe_drops_guc2pf_if_not_ready
[12:01:55] [PASSED] xe_drops_guc2vf_if_not_ready
[12:01:55] [PASSED] xe_rejects_send_if_not_ready
[12:01:55] ==================== [PASSED] no_relay =====================
[12:01:55] ================== pf_relay (14 subtests) ==================
[12:01:55] [PASSED] pf_rejects_guc2pf_too_short
[12:01:55] [PASSED] pf_rejects_guc2pf_too_long
[12:01:55] [PASSED] pf_rejects_guc2pf_no_payload
[12:01:55] [PASSED] pf_fails_no_payload
[12:01:55] [PASSED] pf_fails_bad_origin
[12:01:55] [PASSED] pf_fails_bad_type
[12:01:55] [PASSED] pf_txn_reports_error
[12:01:55] [PASSED] pf_txn_sends_pf2guc
[12:01:55] [PASSED] pf_sends_pf2guc
[12:01:55] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:01:55] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:01:55] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:01:55] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:01:55] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[12:01:55] ==================== [PASSED] pf_relay =====================
[12:01:55] ================== vf_relay (3 subtests) ===================
[12:01:55] [PASSED] vf_rejects_guc2vf_too_short
[12:01:55] [PASSED] vf_rejects_guc2vf_too_long
[12:01:55] [PASSED] vf_rejects_guc2vf_no_payload
[12:01:55] ==================== [PASSED] vf_relay =====================
[12:01:55] ================ pf_gt_config (9 subtests) =================
[12:01:55] [PASSED] fair_contexts_1vf
[12:01:55] [PASSED] fair_doorbells_1vf
[12:01:55] [PASSED] fair_ggtt_1vf
[12:01:55] ====================== fair_vram_1vf  ======================
[12:01:55] [PASSED] 3.50 GiB
[12:01:55] [PASSED] 11.5 GiB
[12:01:55] [PASSED] 15.5 GiB
[12:01:55] [PASSED] 31.5 GiB
[12:01:55] [PASSED] 63.5 GiB
[12:01:55] [PASSED] 1.91 GiB
[12:01:55] ================== [PASSED] fair_vram_1vf ==================
[12:01:55] ================ fair_vram_1vf_admin_only  =================
[12:01:55] [PASSED] 3.50 GiB
[12:01:55] [PASSED] 11.5 GiB
[12:01:55] [PASSED] 15.5 GiB
[12:01:55] [PASSED] 31.5 GiB
[12:01:55] [PASSED] 63.5 GiB
[12:01:55] [PASSED] 1.91 GiB
[12:01:55] ============ [PASSED] fair_vram_1vf_admin_only =============
[12:01:55] ====================== fair_contexts  ======================
[12:01:55] [PASSED] 1 VF
[12:01:55] [PASSED] 2 VFs
[12:01:55] [PASSED] 3 VFs
[12:01:55] [PASSED] 4 VFs
[12:01:55] [PASSED] 5 VFs
[12:01:55] [PASSED] 6 VFs
[12:01:55] [PASSED] 7 VFs
[12:01:55] [PASSED] 8 VFs
[12:01:55] [PASSED] 9 VFs
[12:01:55] [PASSED] 10 VFs
[12:01:55] [PASSED] 11 VFs
[12:01:55] [PASSED] 12 VFs
[12:01:55] [PASSED] 13 VFs
[12:01:55] [PASSED] 14 VFs
[12:01:55] [PASSED] 15 VFs
[12:01:55] [PASSED] 16 VFs
[12:01:55] [PASSED] 17 VFs
[12:01:55] [PASSED] 18 VFs
[12:01:55] [PASSED] 19 VFs
[12:01:55] [PASSED] 20 VFs
[12:01:55] [PASSED] 21 VFs
[12:01:55] [PASSED] 22 VFs
[12:01:55] [PASSED] 23 VFs
[12:01:55] [PASSED] 24 VFs
[12:01:55] [PASSED] 25 VFs
[12:01:55] [PASSED] 26 VFs
[12:01:55] [PASSED] 27 VFs
[12:01:55] [PASSED] 28 VFs
[12:01:55] [PASSED] 29 VFs
[12:01:55] [PASSED] 30 VFs
[12:01:55] [PASSED] 31 VFs
[12:01:55] [PASSED] 32 VFs
[12:01:55] [PASSED] 33 VFs
[12:01:55] [PASSED] 34 VFs
[12:01:55] [PASSED] 35 VFs
[12:01:55] [PASSED] 36 VFs
[12:01:55] [PASSED] 37 VFs
[12:01:55] [PASSED] 38 VFs
[12:01:55] [PASSED] 39 VFs
[12:01:55] [PASSED] 40 VFs
[12:01:55] [PASSED] 41 VFs
[12:01:55] [PASSED] 42 VFs
[12:01:55] [PASSED] 43 VFs
[12:01:55] [PASSED] 44 VFs
[12:01:55] [PASSED] 45 VFs
[12:01:55] [PASSED] 46 VFs
[12:01:55] [PASSED] 47 VFs
[12:01:55] [PASSED] 48 VFs
[12:01:55] [PASSED] 49 VFs
[12:01:55] [PASSED] 50 VFs
[12:01:55] [PASSED] 51 VFs
[12:01:55] [PASSED] 52 VFs
[12:01:55] [PASSED] 53 VFs
[12:01:55] [PASSED] 54 VFs
[12:01:55] [PASSED] 55 VFs
[12:01:55] [PASSED] 56 VFs
[12:01:55] [PASSED] 57 VFs
[12:01:55] [PASSED] 58 VFs
[12:01:55] [PASSED] 59 VFs
[12:01:55] [PASSED] 60 VFs
[12:01:55] [PASSED] 61 VFs
[12:01:55] [PASSED] 62 VFs
[12:01:55] [PASSED] 63 VFs
[12:01:55] ================== [PASSED] fair_contexts ==================
[12:01:55] ===================== fair_doorbells  ======================
[12:01:55] [PASSED] 1 VF
[12:01:55] [PASSED] 2 VFs
[12:01:55] [PASSED] 3 VFs
[12:01:55] [PASSED] 4 VFs
[12:01:55] [PASSED] 5 VFs
[12:01:55] [PASSED] 6 VFs
[12:01:55] [PASSED] 7 VFs
[12:01:55] [PASSED] 8 VFs
[12:01:55] [PASSED] 9 VFs
[12:01:55] [PASSED] 10 VFs
[12:01:55] [PASSED] 11 VFs
[12:01:55] [PASSED] 12 VFs
[12:01:55] [PASSED] 13 VFs
[12:01:55] [PASSED] 14 VFs
[12:01:55] [PASSED] 15 VFs
[12:01:55] [PASSED] 16 VFs
[12:01:55] [PASSED] 17 VFs
[12:01:55] [PASSED] 18 VFs
[12:01:55] [PASSED] 19 VFs
[12:01:55] [PASSED] 20 VFs
[12:01:55] [PASSED] 21 VFs
[12:01:55] [PASSED] 22 VFs
[12:01:55] [PASSED] 23 VFs
[12:01:55] [PASSED] 24 VFs
[12:01:55] [PASSED] 25 VFs
[12:01:55] [PASSED] 26 VFs
[12:01:55] [PASSED] 27 VFs
[12:01:55] [PASSED] 28 VFs
[12:01:55] [PASSED] 29 VFs
[12:01:55] [PASSED] 30 VFs
[12:01:55] [PASSED] 31 VFs
[12:01:55] [PASSED] 32 VFs
[12:01:55] [PASSED] 33 VFs
[12:01:55] [PASSED] 34 VFs
[12:01:55] [PASSED] 35 VFs
[12:01:55] [PASSED] 36 VFs
[12:01:55] [PASSED] 37 VFs
[12:01:55] [PASSED] 38 VFs
[12:01:55] [PASSED] 39 VFs
[12:01:55] [PASSED] 40 VFs
[12:01:55] [PASSED] 41 VFs
[12:01:55] [PASSED] 42 VFs
[12:01:55] [PASSED] 43 VFs
[12:01:55] [PASSED] 44 VFs
[12:01:55] [PASSED] 45 VFs
[12:01:55] [PASSED] 46 VFs
[12:01:55] [PASSED] 47 VFs
[12:01:55] [PASSED] 48 VFs
[12:01:55] [PASSED] 49 VFs
[12:01:55] [PASSED] 50 VFs
[12:01:55] [PASSED] 51 VFs
[12:01:55] [PASSED] 52 VFs
[12:01:55] [PASSED] 53 VFs
[12:01:55] [PASSED] 54 VFs
[12:01:55] [PASSED] 55 VFs
[12:01:55] [PASSED] 56 VFs
[12:01:55] [PASSED] 57 VFs
[12:01:55] [PASSED] 58 VFs
[12:01:55] [PASSED] 59 VFs
[12:01:55] [PASSED] 60 VFs
[12:01:55] [PASSED] 61 VFs
[12:01:55] [PASSED] 62 VFs
[12:01:55] [PASSED] 63 VFs
[12:01:55] ================= [PASSED] fair_doorbells ==================
[12:01:55] ======================== fair_ggtt  ========================
[12:01:55] [PASSED] 1 VF
[12:01:55] [PASSED] 2 VFs
[12:01:55] [PASSED] 3 VFs
[12:01:55] [PASSED] 4 VFs
[12:01:55] [PASSED] 5 VFs
[12:01:55] [PASSED] 6 VFs
[12:01:55] [PASSED] 7 VFs
[12:01:55] [PASSED] 8 VFs
[12:01:55] [PASSED] 9 VFs
[12:01:55] [PASSED] 10 VFs
[12:01:55] [PASSED] 11 VFs
[12:01:55] [PASSED] 12 VFs
[12:01:55] [PASSED] 13 VFs
[12:01:55] [PASSED] 14 VFs
[12:01:55] [PASSED] 15 VFs
[12:01:55] [PASSED] 16 VFs
[12:01:55] [PASSED] 17 VFs
[12:01:55] [PASSED] 18 VFs
[12:01:55] [PASSED] 19 VFs
[12:01:55] [PASSED] 20 VFs
[12:01:55] [PASSED] 21 VFs
[12:01:55] [PASSED] 22 VFs
[12:01:55] [PASSED] 23 VFs
[12:01:55] [PASSED] 24 VFs
[12:01:55] [PASSED] 25 VFs
[12:01:55] [PASSED] 26 VFs
[12:01:55] [PASSED] 27 VFs
[12:01:55] [PASSED] 28 VFs
[12:01:55] [PASSED] 29 VFs
[12:01:55] [PASSED] 30 VFs
[12:01:55] [PASSED] 31 VFs
[12:01:55] [PASSED] 32 VFs
[12:01:55] [PASSED] 33 VFs
[12:01:55] [PASSED] 34 VFs
[12:01:55] [PASSED] 35 VFs
[12:01:55] [PASSED] 36 VFs
[12:01:55] [PASSED] 37 VFs
[12:01:55] [PASSED] 38 VFs
[12:01:55] [PASSED] 39 VFs
[12:01:55] [PASSED] 40 VFs
[12:01:55] [PASSED] 41 VFs
[12:01:55] [PASSED] 42 VFs
[12:01:55] [PASSED] 43 VFs
[12:01:55] [PASSED] 44 VFs
[12:01:55] [PASSED] 45 VFs
[12:01:55] [PASSED] 46 VFs
[12:01:55] [PASSED] 47 VFs
[12:01:55] [PASSED] 48 VFs
[12:01:55] [PASSED] 49 VFs
[12:01:55] [PASSED] 50 VFs
[12:01:55] [PASSED] 51 VFs
[12:01:55] [PASSED] 52 VFs
[12:01:55] [PASSED] 53 VFs
[12:01:55] [PASSED] 54 VFs
[12:01:55] [PASSED] 55 VFs
[12:01:55] [PASSED] 56 VFs
[12:01:55] [PASSED] 57 VFs
[12:01:55] [PASSED] 58 VFs
[12:01:55] [PASSED] 59 VFs
[12:01:55] [PASSED] 60 VFs
[12:01:55] [PASSED] 61 VFs
[12:01:55] [PASSED] 62 VFs
[12:01:55] [PASSED] 63 VFs
[12:01:55] ==================== [PASSED] fair_ggtt ====================
[12:01:55] ======================== fair_vram  ========================
[12:01:55] [PASSED] 1 VF
[12:01:55] [PASSED] 2 VFs
[12:01:55] [PASSED] 3 VFs
[12:01:55] [PASSED] 4 VFs
[12:01:55] [PASSED] 5 VFs
[12:01:55] [PASSED] 6 VFs
[12:01:55] [PASSED] 7 VFs
[12:01:55] [PASSED] 8 VFs
[12:01:55] [PASSED] 9 VFs
[12:01:55] [PASSED] 10 VFs
[12:01:55] [PASSED] 11 VFs
[12:01:55] [PASSED] 12 VFs
[12:01:55] [PASSED] 13 VFs
[12:01:55] [PASSED] 14 VFs
[12:01:55] [PASSED] 15 VFs
[12:01:55] [PASSED] 16 VFs
[12:01:55] [PASSED] 17 VFs
[12:01:55] [PASSED] 18 VFs
[12:01:55] [PASSED] 19 VFs
[12:01:55] [PASSED] 20 VFs
[12:01:55] [PASSED] 21 VFs
[12:01:55] [PASSED] 22 VFs
[12:01:55] [PASSED] 23 VFs
[12:01:55] [PASSED] 24 VFs
[12:01:55] [PASSED] 25 VFs
[12:01:55] [PASSED] 26 VFs
[12:01:55] [PASSED] 27 VFs
[12:01:55] [PASSED] 28 VFs
[12:01:55] [PASSED] 29 VFs
[12:01:55] [PASSED] 30 VFs
[12:01:55] [PASSED] 31 VFs
[12:01:55] [PASSED] 32 VFs
[12:01:55] [PASSED] 33 VFs
[12:01:55] [PASSED] 34 VFs
[12:01:55] [PASSED] 35 VFs
[12:01:55] [PASSED] 36 VFs
[12:01:55] [PASSED] 37 VFs
[12:01:55] [PASSED] 38 VFs
[12:01:55] [PASSED] 39 VFs
[12:01:55] [PASSED] 40 VFs
[12:01:55] [PASSED] 41 VFs
[12:01:55] [PASSED] 42 VFs
[12:01:55] [PASSED] 43 VFs
[12:01:55] [PASSED] 44 VFs
[12:01:55] [PASSED] 45 VFs
[12:01:55] [PASSED] 46 VFs
[12:01:55] [PASSED] 47 VFs
[12:01:55] [PASSED] 48 VFs
[12:01:55] [PASSED] 49 VFs
[12:01:55] [PASSED] 50 VFs
[12:01:55] [PASSED] 51 VFs
[12:01:55] [PASSED] 52 VFs
[12:01:55] [PASSED] 53 VFs
[12:01:55] [PASSED] 54 VFs
[12:01:55] [PASSED] 55 VFs
[12:01:55] [PASSED] 56 VFs
[12:01:55] [PASSED] 57 VFs
[12:01:55] [PASSED] 58 VFs
[12:01:55] [PASSED] 59 VFs
[12:01:55] [PASSED] 60 VFs
[12:01:55] [PASSED] 61 VFs
[12:01:55] [PASSED] 62 VFs
[12:01:55] [PASSED] 63 VFs
[12:01:55] ==================== [PASSED] fair_vram ====================
[12:01:55] ================== [PASSED] pf_gt_config ===================
[12:01:55] ===================== lmtt (1 subtest) =====================
[12:01:55] ======================== test_ops  =========================
[12:01:55] [PASSED] 2-level
[12:01:55] [PASSED] multi-level
[12:01:55] ==================== [PASSED] test_ops =====================
[12:01:55] ====================== [PASSED] lmtt =======================
[12:01:55] ================= pf_service (11 subtests) =================
[12:01:55] [PASSED] pf_negotiate_any
[12:01:55] [PASSED] pf_negotiate_base_match
[12:01:55] [PASSED] pf_negotiate_base_newer
[12:01:55] [PASSED] pf_negotiate_base_next
[12:01:55] [SKIPPED] pf_negotiate_base_older (no older minor)
[12:01:55] [PASSED] pf_negotiate_base_prev
[12:01:55] [PASSED] pf_negotiate_latest_match
[12:01:55] [PASSED] pf_negotiate_latest_newer
[12:01:55] [PASSED] pf_negotiate_latest_next
[12:01:55] [SKIPPED] pf_negotiate_latest_older (no older minor)
[12:01:55] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[12:01:55] =================== [PASSED] pf_service ====================
[12:01:55] ================= xe_guc_g2g (2 subtests) ==================
[12:01:55] ============== xe_live_guc_g2g_kunit_default  ==============
[12:01:55] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:01:55] ============== xe_live_guc_g2g_kunit_allmem  ===============
[12:01:55] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:01:55] =================== [SKIPPED] xe_guc_g2g ===================
[12:01:55] =================== xe_mocs (2 subtests) ===================
[12:01:55] ================ xe_live_mocs_kernel_kunit  ================
[12:01:55] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:01:55] ================ xe_live_mocs_reset_kunit  =================
[12:01:55] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:01:55] ==================== [SKIPPED] xe_mocs =====================
[12:01:55] ================= xe_migrate (2 subtests) ==================
[12:01:55] ================= xe_migrate_sanity_kunit  =================
[12:01:55] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:01:55] ================== xe_validate_ccs_kunit  ==================
[12:01:55] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:01:55] =================== [SKIPPED] xe_migrate ===================
[12:01:55] ================== xe_dma_buf (1 subtest) ==================
[12:01:55] ==================== xe_dma_buf_kunit  =====================
[12:01:55] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:01:55] =================== [SKIPPED] xe_dma_buf ===================
[12:01:55] ================= xe_bo_shrink (1 subtest) =================
[12:01:55] =================== xe_bo_shrink_kunit  ====================
[12:01:55] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:01:55] ================== [SKIPPED] xe_bo_shrink ==================
[12:01:55] ==================== xe_bo (2 subtests) ====================
[12:01:55] ================== xe_ccs_migrate_kunit  ===================
[12:01:55] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:01:55] ==================== xe_bo_evict_kunit  ====================
[12:01:55] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:01:55] ===================== [SKIPPED] xe_bo ======================
[12:01:55] ==================== args (13 subtests) ====================
[12:01:55] [PASSED] count_args_test
[12:01:55] [PASSED] call_args_example
[12:01:55] [PASSED] call_args_test
[12:01:55] [PASSED] drop_first_arg_example
[12:01:55] [PASSED] drop_first_arg_test
[12:01:55] [PASSED] first_arg_example
[12:01:55] [PASSED] first_arg_test
[12:01:55] [PASSED] last_arg_example
[12:01:55] [PASSED] last_arg_test
[12:01:55] [PASSED] pick_arg_example
[12:01:55] [PASSED] if_args_example
[12:01:55] [PASSED] if_args_test
[12:01:55] [PASSED] sep_comma_example
[12:01:55] ====================== [PASSED] args =======================
[12:01:55] =================== xe_pci (3 subtests) ====================
[12:01:55] ==================== check_graphics_ip  ====================
[12:01:55] [PASSED] 12.00 Xe_LP
[12:01:55] [PASSED] 12.10 Xe_LP+
[12:01:55] [PASSED] 12.55 Xe_HPG
[12:01:55] [PASSED] 12.60 Xe_HPC
[12:01:55] [PASSED] 12.70 Xe_LPG
[12:01:55] [PASSED] 12.71 Xe_LPG
[12:01:55] [PASSED] 12.74 Xe_LPG+
[12:01:55] [PASSED] 20.01 Xe2_HPG
[12:01:55] [PASSED] 20.02 Xe2_HPG
[12:01:55] [PASSED] 20.04 Xe2_LPG
[12:01:55] [PASSED] 30.00 Xe3_LPG
[12:01:55] [PASSED] 30.01 Xe3_LPG
[12:01:55] [PASSED] 30.03 Xe3_LPG
[12:01:55] [PASSED] 30.04 Xe3_LPG
[12:01:55] [PASSED] 30.05 Xe3_LPG
[12:01:55] [PASSED] 35.10 Xe3p_LPG
[12:01:55] [PASSED] 35.11 Xe3p_XPC
[12:01:55] ================ [PASSED] check_graphics_ip ================
[12:01:55] ===================== check_media_ip  ======================
[12:01:55] [PASSED] 12.00 Xe_M
[12:01:55] [PASSED] 12.55 Xe_HPM
[12:01:55] [PASSED] 13.00 Xe_LPM+
[12:01:55] [PASSED] 13.01 Xe2_HPM
[12:01:55] [PASSED] 20.00 Xe2_LPM
[12:01:55] [PASSED] 30.00 Xe3_LPM
[12:01:55] [PASSED] 30.02 Xe3_LPM
[12:01:55] [PASSED] 35.00 Xe3p_LPM
[12:01:55] [PASSED] 35.03 Xe3p_HPM
[12:01:55] ================= [PASSED] check_media_ip ==================
[12:01:55] =================== check_platform_desc  ===================
[12:01:55] [PASSED] 0x9A60 (TIGERLAKE)
[12:01:55] [PASSED] 0x9A68 (TIGERLAKE)
[12:01:55] [PASSED] 0x9A70 (TIGERLAKE)
[12:01:55] [PASSED] 0x9A40 (TIGERLAKE)
[12:01:55] [PASSED] 0x9A49 (TIGERLAKE)
[12:01:55] [PASSED] 0x9A59 (TIGERLAKE)
[12:01:55] [PASSED] 0x9A78 (TIGERLAKE)
[12:01:55] [PASSED] 0x9AC0 (TIGERLAKE)
[12:01:55] [PASSED] 0x9AC9 (TIGERLAKE)
[12:01:55] [PASSED] 0x9AD9 (TIGERLAKE)
[12:01:55] [PASSED] 0x9AF8 (TIGERLAKE)
[12:01:55] [PASSED] 0x4C80 (ROCKETLAKE)
[12:01:55] [PASSED] 0x4C8A (ROCKETLAKE)
[12:01:55] [PASSED] 0x4C8B (ROCKETLAKE)
[12:01:55] [PASSED] 0x4C8C (ROCKETLAKE)
[12:01:55] [PASSED] 0x4C90 (ROCKETLAKE)
[12:01:55] [PASSED] 0x4C9A (ROCKETLAKE)
[12:01:55] [PASSED] 0x4680 (ALDERLAKE_S)
[12:01:55] [PASSED] 0x4682 (ALDERLAKE_S)
[12:01:55] [PASSED] 0x4688 (ALDERLAKE_S)
[12:01:55] [PASSED] 0x468A (ALDERLAKE_S)
[12:01:55] [PASSED] 0x468B (ALDERLAKE_S)
[12:01:55] [PASSED] 0x4690 (ALDERLAKE_S)
[12:01:55] [PASSED] 0x4692 (ALDERLAKE_S)
[12:01:55] [PASSED] 0x4693 (ALDERLAKE_S)
[12:01:55] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46AA (ALDERLAKE_P)
[12:01:55] [PASSED] 0x462A (ALDERLAKE_P)
[12:01:55] [PASSED] 0x4626 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x4628 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:01:55] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:01:55] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:01:55] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:01:55] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:01:55] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:01:55] [PASSED] 0xA721 (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA720 (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:01:55] [PASSED] 0xA780 (ALDERLAKE_S)
[12:01:55] [PASSED] 0xA781 (ALDERLAKE_S)
[12:01:55] [PASSED] 0xA782 (ALDERLAKE_S)
[12:01:55] [PASSED] 0xA783 (ALDERLAKE_S)
[12:01:55] [PASSED] 0xA788 (ALDERLAKE_S)
[12:01:55] [PASSED] 0xA789 (ALDERLAKE_S)
[12:01:55] [PASSED] 0xA78A (ALDERLAKE_S)
[12:01:55] [PASSED] 0xA78B (ALDERLAKE_S)
[12:01:55] [PASSED] 0x4905 (DG1)
[12:01:55] [PASSED] 0x4906 (DG1)
[12:01:55] [PASSED] 0x4907 (DG1)
[12:01:55] [PASSED] 0x4908 (DG1)
[12:01:55] [PASSED] 0x4909 (DG1)
[12:01:55] [PASSED] 0x56C0 (DG2)
[12:01:55] [PASSED] 0x56C2 (DG2)
[12:01:55] [PASSED] 0x56C1 (DG2)
[12:01:55] [PASSED] 0x7D51 (METEORLAKE)
[12:01:55] [PASSED] 0x7DD1 (METEORLAKE)
[12:01:55] [PASSED] 0x7D41 (METEORLAKE)
[12:01:55] [PASSED] 0x7D67 (METEORLAKE)
[12:01:55] [PASSED] 0xB640 (METEORLAKE)
[12:01:55] [PASSED] 0x56A0 (DG2)
[12:01:55] [PASSED] 0x56A1 (DG2)
[12:01:55] [PASSED] 0x56A2 (DG2)
[12:01:55] [PASSED] 0x56BE (DG2)
[12:01:55] [PASSED] 0x56BF (DG2)
[12:01:55] [PASSED] 0x5690 (DG2)
[12:01:55] [PASSED] 0x5691 (DG2)
[12:01:55] [PASSED] 0x5692 (DG2)
[12:01:55] [PASSED] 0x56A5 (DG2)
[12:01:55] [PASSED] 0x56A6 (DG2)
[12:01:55] [PASSED] 0x56B0 (DG2)
[12:01:55] [PASSED] 0x56B1 (DG2)
[12:01:55] [PASSED] 0x56BA (DG2)
[12:01:55] [PASSED] 0x56BB (DG2)
[12:01:55] [PASSED] 0x56BC (DG2)
[12:01:55] [PASSED] 0x56BD (DG2)
[12:01:55] [PASSED] 0x5693 (DG2)
[12:01:55] [PASSED] 0x5694 (DG2)
[12:01:55] [PASSED] 0x5695 (DG2)
[12:01:55] [PASSED] 0x56A3 (DG2)
[12:01:55] [PASSED] 0x56A4 (DG2)
[12:01:55] [PASSED] 0x56B2 (DG2)
[12:01:55] [PASSED] 0x56B3 (DG2)
[12:01:55] [PASSED] 0x5696 (DG2)
[12:01:55] [PASSED] 0x5697 (DG2)
[12:01:55] [PASSED] 0xB69 (PVC)
[12:01:55] [PASSED] 0xB6E (PVC)
[12:01:55] [PASSED] 0xBD4 (PVC)
[12:01:55] [PASSED] 0xBD5 (PVC)
[12:01:55] [PASSED] 0xBD6 (PVC)
[12:01:55] [PASSED] 0xBD7 (PVC)
[12:01:55] [PASSED] 0xBD8 (PVC)
[12:01:55] [PASSED] 0xBD9 (PVC)
[12:01:55] [PASSED] 0xBDA (PVC)
[12:01:55] [PASSED] 0xBDB (PVC)
[12:01:55] [PASSED] 0xBE0 (PVC)
[12:01:55] [PASSED] 0xBE1 (PVC)
[12:01:55] [PASSED] 0xBE5 (PVC)
[12:01:55] [PASSED] 0x7D40 (METEORLAKE)
[12:01:55] [PASSED] 0x7D45 (METEORLAKE)
[12:01:55] [PASSED] 0x7D55 (METEORLAKE)
[12:01:55] [PASSED] 0x7D60 (METEORLAKE)
[12:01:55] [PASSED] 0x7DD5 (METEORLAKE)
[12:01:55] [PASSED] 0x6420 (LUNARLAKE)
[12:01:55] [PASSED] 0x64A0 (LUNARLAKE)
[12:01:55] [PASSED] 0x64B0 (LUNARLAKE)
[12:01:55] [PASSED] 0xE202 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE209 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE20B (BATTLEMAGE)
[12:01:55] [PASSED] 0xE20C (BATTLEMAGE)
[12:01:55] [PASSED] 0xE20D (BATTLEMAGE)
[12:01:55] [PASSED] 0xE210 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE211 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE212 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE216 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE220 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE221 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE222 (BATTLEMAGE)
[12:01:55] [PASSED] 0xE223 (BATTLEMAGE)
[12:01:55] [PASSED] 0xB080 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB081 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB082 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB083 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB084 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB085 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB086 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB087 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB08F (PANTHERLAKE)
[12:01:55] [PASSED] 0xB090 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:01:55] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:01:55] [PASSED] 0xFD80 (PANTHERLAKE)
[12:01:55] [PASSED] 0xFD81 (PANTHERLAKE)
[12:01:55] [PASSED] 0xD740 (NOVALAKE_S)
[12:01:55] [PASSED] 0xD741 (NOVALAKE_S)
[12:01:55] [PASSED] 0xD742 (NOVALAKE_S)
[12:01:55] [PASSED] 0xD743 (NOVALAKE_S)
[12:01:55] [PASSED] 0xD745 (NOVALAKE_S)
[12:01:55] [PASSED] 0xD74A (NOVALAKE_S)
[12:01:55] [PASSED] 0xD74B (NOVALAKE_S)
[12:01:55] [PASSED] 0x674C (CRESCENTISLAND)
[12:01:55] [PASSED] 0x674D (CRESCENTISLAND)
[12:01:55] [PASSED] 0x674E (CRESCENTISLAND)
[12:01:55] [PASSED] 0x674F (CRESCENTISLAND)
[12:01:55] [PASSED] 0x6750 (CRESCENTISLAND)
[12:01:55] [PASSED] 0xD750 (NOVALAKE_P)
[12:01:55] [PASSED] 0xD751 (NOVALAKE_P)
[12:01:55] [PASSED] 0xD752 (NOVALAKE_P)
[12:01:55] [PASSED] 0xD753 (NOVALAKE_P)
[12:01:55] [PASSED] 0xD754 (NOVALAKE_P)
[12:01:55] [PASSED] 0xD755 (NOVALAKE_P)
[12:01:55] [PASSED] 0xD756 (NOVALAKE_P)
[12:01:55] [PASSED] 0xD757 (NOVALAKE_P)
[12:01:55] [PASSED] 0xD75F (NOVALAKE_P)
[12:01:55] =============== [PASSED] check_platform_desc ===============
[12:01:55] ===================== [PASSED] xe_pci ======================
[12:01:55] ============= xe_rtp_tables_test (5 subtests) ==============
[12:01:55] ================== xe_rtp_table_gt_test  ===================
[12:01:55] [PASSED] gt_was/14011060649
[12:01:55] [PASSED] gt_was/14011059788
[12:01:55] [PASSED] gt_was/14015795083
[12:01:55] [PASSED] gt_was/16021867713
[12:01:55] [PASSED] gt_was/14019449301
[12:01:55] [PASSED] gt_was/16028005424
[12:01:55] [PASSED] gt_was/14026578760
[12:01:55] [PASSED] gt_was/1409420604
[12:01:55] [PASSED] gt_was/1408615072
[12:01:55] [PASSED] gt_was/22010523718
[12:01:55] [PASSED] gt_was/14011006942
[12:01:55] [PASSED] gt_was/14014830051
[12:01:55] [PASSED] gt_was/18018781329
[12:01:55] [PASSED] gt_was/1509235366
[12:01:55] [PASSED] gt_was/18018781329
[12:01:55] [PASSED] gt_was/16016694945
[12:01:55] [PASSED] gt_was/14018575942
[12:01:55] [PASSED] gt_was/22016670082
[12:01:55] [PASSED] gt_was/22016670082
[12:01:55] [PASSED] gt_was/14017421178
[12:01:55] [PASSED] gt_was/16025250150
[12:01:55] [PASSED] gt_was/14021871409
[12:01:55] [PASSED] gt_was/16021865536
[12:01:55] [PASSED] gt_was/14021486841
[12:01:55] [PASSED] gt_was/14025160223
[12:01:55] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[12:01:55] [PASSED] gt_was/14025635424
[12:01:55] [PASSED] gt_was/16028005424
[12:01:55] ============== [PASSED] xe_rtp_table_gt_test ===============
[12:01:55] ================== xe_rtp_table_gt_test  ===================
[12:01:55] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[12:01:55] [PASSED] gt_tunings/Tuning: 32B Access Enable
[12:01:55] [PASSED] gt_tunings/Tuning: L3 cache
[12:01:55] [PASSED] gt_tunings/Tuning: L3 cache - media
[12:01:55] [PASSED] gt_tunings/Tuning: Compression Overfetch
[12:01:55] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[12:01:55] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[12:01:55] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[12:01:55] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[12:01:55] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[12:01:55] [PASSED] gt_tunings/Tuning: Stateless compression control
[12:01:55] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[12:01:55] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[12:01:55] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[12:01:55] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[12:01:55] ============== [PASSED] xe_rtp_table_gt_test ===============
[12:01:55] ================== xe_rtp_table_oob_test  ==================
[12:01:55] [PASSED] oob_was/1607983814
[12:01:55] [PASSED] oob_was/16010904313
[12:01:55] [PASSED] oob_was/18022495364
[12:01:55] [PASSED] oob_was/22012773006
[12:01:55] [PASSED] oob_was/14014475959
[12:01:55] [PASSED] oob_was/22011391025
[12:01:55] [PASSED] oob_was/22012727170
[12:01:55] [PASSED] oob_was/22012727685
[12:01:55] [PASSED] oob_was/22016596838
[12:01:55] [PASSED] oob_was/18020744125
[12:01:55] [PASSED] oob_was/1409600907
[12:01:55] [PASSED] oob_was/22014953428
[12:01:55] [PASSED] oob_was/16017236439
[12:01:55] [PASSED] oob_was/14019821291
[12:01:55] [PASSED] oob_was/14015076503
[12:01:55] [PASSED] oob_was/14018913170
[12:01:55] [PASSED] oob_was/14018094691
[12:01:55] [PASSED] oob_was/18024947630
[12:01:55] [PASSED] oob_was/16022287689
[12:01:55] [PASSED] oob_was/13011645652
[12:01:55] [PASSED] oob_was/14022293748
[12:01:55] [PASSED] oob_was/22019794406
[12:01:55] [PASSED] oob_was/22019338487
[12:01:55] [PASSED] oob_was/16023588340
[12:01:55] [PASSED] oob_was/14019789679
[12:01:55] [PASSED] oob_was/14022866841
[12:01:55] [PASSED] oob_was/16021333562
[12:01:55] [PASSED] oob_was/14016712196
[12:01:55] [PASSED] oob_was/14015568240
[12:01:55] [PASSED] oob_was/18013179988
[12:01:55] [PASSED] oob_was/1508761755
[12:01:55] [PASSED] oob_was/16023105232
[12:01:55] [PASSED] oob_was/16026508708
[12:01:55] [PASSED] oob_was/14020001231
[12:01:55] [PASSED] oob_was/16023683509
[12:01:55] [PASSED] oob_was/14025515070
[12:01:55] [PASSED] oob_was/15015404425_disable
[12:01:55] [PASSED] oob_was/16026007364
[12:01:55] [PASSED] oob_was/14020316580
[12:01:55] [PASSED] oob_was/14025883347
[12:01:55] [PASSED] oob_was/16029380221
[12:01:55] ============== [PASSED] xe_rtp_table_oob_test ==============
[12:01:55] ================ xe_rtp_table_dev_oob_test  ================
[12:01:55] [PASSED] device_oob_was/22010954014
[12:01:55] [PASSED] device_oob_was/15015404425
[12:01:55] [PASSED] device_oob_was/22019338487_display
[12:01:55] [PASSED] device_oob_was/14022085890
[12:01:55] [PASSED] device_oob_was/14026539277
[12:01:55] [PASSED] device_oob_was/14026633728
[12:01:55] [PASSED] device_oob_was/14026746987
[12:01:55] [PASSED] device_oob_was/14026779378
[12:01:55] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[12:01:55] ========== xe_rtp_table_missing_upper_bound_test  ==========
[12:01:55] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[12:01:55] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[12:01:55] [PASSED] register_whitelist/1806527549
[12:01:55] [PASSED] register_whitelist/allow_read_ctx_timestamp
[12:01:55] [PASSED] register_whitelist/allow_read_queue_timestamp
[12:01:55] [PASSED] register_whitelist/16014440446
[12:01:55] [PASSED] register_whitelist/16017236439
[12:01:55] [PASSED] register_whitelist/16020183090
[12:01:55] [PASSED] register_whitelist/14024997852
[12:01:55] [PASSED] register_whitelist/14024997852
[12:01:55] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[12:01:55] =============== [PASSED] xe_rtp_tables_test ================
[12:01:55] =================== xe_rtp (3 subtests) ====================
[12:01:55] =================== xe_rtp_rules_tests  ====================
[12:01:55] [PASSED] no
[12:01:55] [PASSED] yes
[12:01:55] [PASSED] no-and-no
[12:01:55] [PASSED] no-and-yes
[12:01:55] [PASSED] yes-and-no
[12:01:55] [PASSED] yes-and-yes
[12:01:55] [PASSED] no-or-no
[12:01:55] [PASSED] no-or-yes
[12:01:55] [PASSED] yes-or-no
[12:01:55] [PASSED] yes-or-yes
[12:01:55] [PASSED] no-yes-or-yes-no
[12:01:55] [PASSED] no-yes-or-yes-yes
[12:01:55] [PASSED] yes-yes-or-no-yes
[12:01:55] [PASSED] yes-yes-or-yes-yes
[12:01:55] [PASSED] no-no-or-yes-or-no
[12:01:55] [PASSED] or
[12:01:55] [PASSED] or-yes
[12:01:55] [PASSED] or-no
[12:01:55] [PASSED] yes-or
[12:01:55] [PASSED] no-or
[12:01:55] [PASSED] no-or-or-yes
[12:01:55] [PASSED] yes-or-or-no
[12:01:55] [PASSED] no-or-or-no
[12:01:55] [PASSED] missing-context-engine-class
[12:01:55] [PASSED] missing-context-engine-class-or-yes
[12:01:55] [PASSED] missing-context-engine-class-or-or-yes
[12:01:55] =============== [PASSED] xe_rtp_rules_tests ================
[12:01:55] =============== xe_rtp_process_to_sr_tests  ================
[12:01:55] [PASSED] coalesce-same-reg
[12:01:55] [PASSED] coalesce-same-reg-literal-and-func
[12:01:55] [PASSED] no-match-no-add
[12:01:55] [PASSED] two-regs-two-entries
[12:01:55] [PASSED] clr-one-set-other
[12:01:55] [PASSED] set-field
[12:01:55] [PASSED] conflict-duplicate
[12:01:55] [PASSED] conflict-not-disjoint
[12:01:55] [PASSED] conflict-not-disjoint-literal-and-func
[12:01:55] [PASSED] conflict-reg-type
[12:01:55] [PASSED] bad-mcr-reg-forced-to-regular
[12:01:55] [PASSED] bad-regular-reg-forced-to-mcr
[12:01:55] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:01:55] ================== xe_rtp_process_tests  ===================
[12:01:55] [PASSED] active1
[12:01:55] [PASSED] active2
[12:01:55] [PASSED] active-inactive
[12:01:55] [PASSED] inactive-active
[12:01:55] [PASSED] inactive-active-inactive
[12:01:55] [PASSED] inactive-inactive-inactive
[12:01:55] ============== [PASSED] xe_rtp_process_tests ===============
[12:01:55] ===================== [PASSED] xe_rtp ======================
[12:01:55] ==================== xe_wa (1 subtest) =====================
[12:01:55] ======================== xe_wa_gt  =========================
[12:01:55] [PASSED] TIGERLAKE B0
[12:01:55] [PASSED] DG1 A0
[12:01:55] [PASSED] DG1 B0
[12:01:55] [PASSED] ALDERLAKE_S A0
[12:01:55] [PASSED] ALDERLAKE_S B0
[12:01:55] [PASSED] ALDERLAKE_S C0
[12:01:55] [PASSED] ALDERLAKE_S D0
[12:01:55] [PASSED] ALDERLAKE_P A0
[12:01:55] [PASSED] ALDERLAKE_P B0
[12:01:55] [PASSED] ALDERLAKE_P C0
[12:01:55] [PASSED] ALDERLAKE_S RPLS D0
[12:01:55] [PASSED] ALDERLAKE_P RPLU E0
[12:01:55] [PASSED] DG2 G10 C0
[12:01:55] [PASSED] DG2 G11 B1
[12:01:55] [PASSED] DG2 G12 A1
[12:01:55] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:01:55] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:01:55] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:01:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:01:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:01:55] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:01:55] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:01:55] ==================== [PASSED] xe_wa_gt =====================
[12:01:55] ====================== [PASSED] xe_wa ======================
[12:01:55] ============================================================
[12:01:55] Testing complete. Ran 729 tests: passed: 711, skipped: 18
[12:01:55] Elapsed time: 36.757s total, 4.442s configuring, 31.649s building, 0.652s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (10 preceding siblings ...)
  2026-07-06 12:02 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3) Patchwork
@ 2026-07-06 12:47 ` Patchwork
  2026-07-06 14:02 ` ✓ Xe.CI.FULL: " Patchwork
                   ` (13 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-06 12:47 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

CI Bug Log - changes from xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7_BAT -> xe-pw-168743v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  Additional (2): bat-wcl-1 bat-bmg-2 
  Missing    (2): bat-bmg-vm bat-ptl-vm 

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

  Here are the changes found in xe-pw-168743v3_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@write:
    - bat-bmg-2:          NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@fbdev@write.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-bmg-2:          NOTRUN -> [SKIP][2] ([Intel XE#2233])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-wcl-1:          NOTRUN -> [SKIP][3] ([Intel XE#7245])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - bat-bmg-2:          NOTRUN -> [SKIP][4] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-wcl-1:          NOTRUN -> [SKIP][5] ([Intel XE#8265])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - bat-bmg-2:          NOTRUN -> [SKIP][6] ([Intel XE#2482]) +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-bmg-2:          NOTRUN -> [SKIP][7] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - bat-bmg-2:          NOTRUN -> [SKIP][8] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@xe_evict@evict-small-multi-vm:
    - bat-wcl-1:          NOTRUN -> [SKIP][9] ([Intel XE#7238]) +11 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@xe_evict@evict-small-multi-vm.html

  * igt@xe_exec_balancer@twice-virtual-rebind:
    - bat-wcl-1:          NOTRUN -> [SKIP][10] ([Intel XE#7482]) +17 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@xe_exec_balancer@twice-virtual-rebind.html

  * igt@xe_exec_multi_queue@many-queues-priority:
    - bat-wcl-1:          NOTRUN -> [SKIP][11] ([Intel XE#8364]) +13 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@xe_exec_multi_queue@many-queues-priority.html

  * igt@xe_exec_multi_queue@priority:
    - bat-bmg-2:          NOTRUN -> [SKIP][12] ([Intel XE#8364]) +13 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@xe_exec_multi_queue@priority.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-bmg-2:          NOTRUN -> [SKIP][13] ([Intel XE#2229])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-wcl-1:          NOTRUN -> [SKIP][14] ([Intel XE#7239]) +2 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@vram:
    - bat-wcl-1:          NOTRUN -> [SKIP][15] ([Intel XE#7243])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-bmg-2:          NOTRUN -> [SKIP][16] ([Intel XE#1420] / [Intel XE#7590])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
    - bat-wcl-1:          NOTRUN -> [SKIP][17] ([Intel XE#7247] / [Intel XE#7590])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-bmg-2:          NOTRUN -> [SKIP][18] ([Intel XE#2245] / [Intel XE#7590])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
    - bat-wcl-1:          NOTRUN -> [SKIP][19] ([Intel XE#7242] / [Intel XE#7590])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-bmg-2:          NOTRUN -> [SKIP][20] ([Intel XE#2236] / [Intel XE#7590])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
    - bat-wcl-1:          NOTRUN -> [SKIP][21] ([Intel XE#7248] / [Intel XE#7590])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/bat-wcl-1/igt@xe_pat@pat-index-xelpg.html

  
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
  [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
  [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
  [Intel XE#7238]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7238
  [Intel XE#7239]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7239
  [Intel XE#7242]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7242
  [Intel XE#7243]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7243
  [Intel XE#7245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7245
  [Intel XE#7247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7247
  [Intel XE#7248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7248
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364


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

  * Linux: xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7 -> xe-pw-168743v3

  IGT_8990: 8990
  xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7: cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7
  xe-pw-168743v3: 168743v3

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (11 preceding siblings ...)
  2026-07-06 12:47 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-06 14:02 ` Patchwork
  2026-07-06 14:12 ` [PATCH v4] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
                   ` (12 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-06 14:02 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

CI Bug Log - changes from xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7_FULL -> xe-pw-168743v3_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

New tests
---------

  New tests have been introduced between xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7_FULL and xe-pw-168743v3_FULL:

### New IGT tests (68) ###

  * igt@kms_flip@absolute-wf_vblank-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.19] s

  * igt@kms_flip@absolute-wf_vblank-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.14] s

  * igt@kms_flip@absolute-wf_vblank-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.12] s

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.21] s

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.13] s

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.15] s

  * igt@kms_flip@blocking-absolute-wf_vblank@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.22] s

  * igt@kms_flip@blocking-absolute-wf_vblank@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.17] s

  * igt@kms_flip@blocking-absolute-wf_vblank@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.15] s

  * igt@kms_flip@bo-too-big-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.33] s

  * igt@kms_flip@bo-too-big-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.28] s

  * igt@kms_flip@bo-too-big-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.29] s

  * igt@kms_flip@bo-too-big@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.38] s

  * igt@kms_flip@bo-too-big@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.30] s

  * igt@kms_flip@bo-too-big@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.31] s

  * igt@kms_flip@busy-flip@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.90] s

  * igt@kms_flip@busy-flip@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.83] s

  * igt@kms_flip@busy-flip@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.82] s

  * igt@kms_flip@dpms-off-confusion-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.14] s

  * igt@kms_flip@dpms-off-confusion-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.06] s

  * igt@kms_flip@dpms-off-confusion-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.07] s

  * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.93] s

  * igt@kms_flip@dpms-vs-vblank-race-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.82] s

  * igt@kms_flip@dpms-vs-vblank-race-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.82] s

  * igt@kms_flip@dpms-vs-vblank-race@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [2.01] s

  * igt@kms_flip@dpms-vs-vblank-race@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.89] s

  * igt@kms_flip@dpms-vs-vblank-race@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.87] s

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.47] s

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.42] s

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.40] s

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.96] s

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.82] s

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.84] s

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.12] s

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.05] s

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.06] s

  * igt@kms_flip@flip-vs-modeset-vs-hang@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.88] s

  * igt@kms_flip@flip-vs-panning-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.14] s

  * igt@kms_flip@flip-vs-panning-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.06] s

  * igt@kms_flip@flip-vs-panning-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.08] s

  * igt@kms_flip@flip-vs-panning-vs-hang@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.88] s

  * igt@kms_flip@flip-vs-rmfb-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.12] s

  * igt@kms_flip@flip-vs-rmfb-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.04] s

  * igt@kms_flip@flip-vs-rmfb-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.04] s

  * igt@kms_flip@flip-vs-rmfb@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.13] s

  * igt@kms_flip@flip-vs-rmfb@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.05] s

  * igt@kms_flip@flip-vs-rmfb@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.05] s

  * igt@kms_flip@flip-vs-wf_vblank-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.15] s

  * igt@kms_flip@flip-vs-wf_vblank-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.09] s

  * igt@kms_flip@flip-vs-wf_vblank-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.09] s

  * igt@kms_flip@modeset-vs-vblank-race@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.94] s

  * igt@kms_flip@modeset-vs-vblank-race@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.91] s

  * igt@kms_flip@modeset-vs-vblank-race@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.90] s

  * igt@kms_flip@plain-flip-ts-check-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.40] s

  * igt@kms_flip@plain-flip-ts-check-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.34] s

  * igt@kms_flip@plain-flip-ts-check-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.33] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.96] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.81] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.83] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.99] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.86] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.86] s

  * igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.50] s

  * igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.43] s

  * igt@kms_flip@wf_vblank-ts-check-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.42] s

  * igt@kms_flip@wf_vblank-ts-check@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.51] s

  * igt@kms_flip@wf_vblank-ts-check@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.42] s

  * igt@kms_flip@wf_vblank-ts-check@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.45] s

  

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

  Here are the changes found in xe-pw-168743v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][1] ([Intel XE#1407])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#2327]) +1 other test skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][3] ([Intel XE#1124]) +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#1124]) +10 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#7679])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][6] ([Intel XE#8365])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#367])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#2887]) +4 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2652]) +8 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2887]) +9 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][11] -> [INCOMPLETE][12] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#3432]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2724] / [Intel XE#7449])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color_pipeline@plane-ctm3x4:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#7358])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#373]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2252]) +7 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-bmg:          NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_content_protection@atomic-hdcp14.html

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

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2390] / [Intel XE#6974])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#1424]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2320])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#309] / [Intel XE#7343])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#4354] / [Intel XE#5882])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#8265]) +3 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#8265])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_flip@2x-plain-flip-ts-check@bc-dp2-hdmi-a3:
    - shard-bmg:          [PASS][29] -> [FAIL][30] ([Intel XE#3098]) +1 other test fail
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check@bc-dp2-hdmi-a3.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check@bc-dp2-hdmi-a3.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#1421])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          NOTRUN -> [FAIL][32] ([Intel XE#3149] / [Intel XE#5408] / [Intel XE#6266]) +1 other test fail
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][33] -> [FAIL][34] ([Intel XE#301]) +1 other test fail
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [PASS][35] -> [FAIL][36] ([Intel XE#301] / [Intel XE#3149])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#7179]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#6312]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#7061]) +5 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#656] / [Intel XE#7905]) +8 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#4141]) +13 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2311]) +41 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#7061])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#7865]) +3 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#7399])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#7061] / [Intel XE#7356])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2313]) +48 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#7399])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#7905]) +6 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#7308])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#6911] / [Intel XE#7466]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#4298] / [Intel XE#5873])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#6911] / [Intel XE#7378])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#7283]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#7283])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#4596] / [Intel XE#5854])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#5021] / [Intel XE#7377])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#5020] / [Intel XE#7348])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_pm_dc@dc3co-after-dc6:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#8395]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_pm_dc@dc3co-after-dc6.html

  * igt@kms_pm_dc@dc3co-after-dc6@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#8396])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@kms_pm_dc@dc3co-after-dc6@psr2.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2499])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#1489]) +3 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2387] / [Intel XE#7429])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-sprite-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#1406])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_psr@fbc-pr-sprite-plane-onoff.html

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_psr@psr-sprite-plane-move.html

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

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#3904] / [Intel XE#7342])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2413])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#1435])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1435]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_sharpness_filter@filter-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#6503])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_sharpness_filter@filter-dpms.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#1499])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@kms_vrr@max-min.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#6599])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_configfs@engines-allowed:
    - shard-bmg:          [PASS][79] -> [ABORT][80] ([Intel XE#8007])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-9/igt@xe_configfs@engines-allowed.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-7/igt@xe_configfs@engines-allowed.html

  * igt@xe_eudebug@basic-read-event:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#7636]) +10 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@xe_eudebug@basic-read-event.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#7636]) +2 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-small-external-multi-queue:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#8370]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_evict@evict-small-external-multi-queue.html

  * igt@xe_exec_balancer@many-virtual-userptr-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#7482]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_exec_balancer@many-virtual-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#1392]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@once-multi-queue-invalid-userptr-fault:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#8374]) +3 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_exec_fault_mode@once-multi-queue-invalid-userptr-fault.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#8374]) +5 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html

  * igt@xe_exec_multi_queue@max-queues-dyn-priority:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#8364]) +4 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_exec_multi_queue@max-queues-dyn-priority.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#8364]) +24 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html

  * igt@xe_exec_reset@multi-queue-cat-error-on-secondary:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#8369])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@xe_exec_reset@multi-queue-cat-error-on-secondary.html

  * igt@xe_exec_system_allocator@twice-large-free-race:
    - shard-lnl:          NOTRUN -> [ABORT][93] ([Intel XE#8007])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-1/igt@xe_exec_system_allocator@twice-large-free-race.html

  * igt@xe_exec_threads@threads-multi-queue-cm-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#8378]) +2 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#8378]) +9 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#6281] / [Intel XE#7426])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#2229])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-basic:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#6964])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html

  * igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#6964]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html

  * igt@xe_page_reclaim@invalid-1g:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#7793])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_page_reclaim@invalid-1g.html

  * igt@xe_pat@xa-app-transient-media-off:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#7590])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_pat@xa-app-transient-media-off.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_copy0:
    - shard-bmg:          [PASS][104] -> [FAIL][105] ([Intel XE#8555])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-6/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_copy0.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-7/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_copy0.html

  * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_render0:
    - shard-bmg:          [PASS][106] -> [FAIL][107] ([Intel XE#8554])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-6/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_render0.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-7/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_render0.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][108] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#944]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#7174])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html

  * igt@xe_survivability@runtime-survivability:
    - shard-bmg:          [PASS][111] -> [DMESG-WARN][112] ([Intel XE#6627] / [Intel XE#7419])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-6/igt@xe_survivability@runtime-survivability.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-7/igt@xe_survivability@runtime-survivability.html
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#8415])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-2/igt@xe_survivability@runtime-survivability.html

  
#### Possible fixes ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-lnl:          [FAIL][114] ([Intel XE#3718] / [Intel XE#7265]) -> [PASS][115] +1 other test pass
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-lnl-7/igt@kms_async_flips@alternate-sync-async-flip.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][116] ([Intel XE#7571]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][118] ([Intel XE#3321]) -> [PASS][119] +1 other test pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
    - shard-bmg:          [ABORT][120] ([Intel XE#8007]) -> [PASS][121] +2 other tests pass
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-lnl:          [ABORT][122] ([Intel XE#8007]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-lnl-8/igt@xe_wedged@wedged-mode-toggle.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-1/igt@xe_wedged@wedged-mode-toggle.html

  
#### Warnings ####

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-lnl:          [FAIL][124] ([Intel XE#301]) -> [FAIL][125] ([Intel XE#301] / [Intel XE#3149])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank.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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [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#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
  [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
  [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [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#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#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#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
  [Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
  [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
  [Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415
  [Intel XE#8554]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8554
  [Intel XE#8555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8555
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7 -> xe-pw-168743v3

  IGT_8990: 8990
  xe-5344-cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7: cd2f56e2e0645a8a22ffbc83fdc922c5c4fe7bd7
  xe-pw-168743v3: 168743v3

== Logs ==

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

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

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

* [PATCH v4] drm/xe: Add debugfs knob to control GPGPU preemption granularity
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (12 preceding siblings ...)
  2026-07-06 14:02 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-07-06 14:12 ` Varun Gupta
  2026-07-08 21:08   ` Matt Roper
  2026-07-06 14:49 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4) Patchwork
                   ` (11 subsequent siblings)
  25 siblings, 1 reply; 29+ messages in thread
From: Varun Gupta @ 2026-07-06 14:12 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, gustavo.sousa, stuart.summers

Add a per-GT debugfs entry 'preemption_level' that controls the GPGPU/
Media preemption granularity for newly created RCS/CCS LRCs on Xe2+.

The knob accepts: "default", "mid-thread", "thread-group", "command",
corresponding to CS_CHICKEN1[2:1].

Per-context control requires FF_SLICE_CS_CHICKEN1[14] (Per Context
Preemption Granularity Control) to be active; without it CS_CHICKEN1[2:1]
is ignored by hardware. Two new RTP entries are added for Xe2+ RCS and
CCS engines to arm this gate bit.

CS_CHICKEN1 is part of the hardware context image and is saved/restored
automatically on every context switch (Bspec: Render Engine Context Image
Layout, DW offset 0x00E2). The preemption level is therefore written
directly into the cloned context image via xe_lrc_write_ctx_reg() in
xe_lrc_ctx_init() for each new LRC.

Because Xe2 CCS engines historically shared the xe2_xcs_offsets layout
with non-compute engines, a dedicated xe2_ccs_offsets layout is introduced
to safely map CS_CHICKEN1 exclusively for Compute contexts.

The debugfs entry is registered only on Xe2+ GTs with RCS/CCS engines
and only for the Physical Function (!IS_SRIOV_VF). If hardware fuses
indicate Mid-Thread Preemption is disabled in silicon, attempts to
select "mid-thread" are rejected with -EPERM under a forcewake lock.
Selecting any non-default value taints the kernel (TAINT_USER) as it
deviates from the platform default.

v4
  - Fix incorrect NOP padding in the RCS context layout. (Sashiko)

v3:
  - Wrapped XEHP_FUSE4 forcewake read with xe_pm_runtime_get/put to
    prevent PCIe aborts/timeouts when the GPU is in D3hot/D3cold. (sashiko)
  - Fixed NOP macro truncation by splitting padding offsets larger than
    0x7f into multiple NOPs, ensuring correct context layout. (sashiko)
  - Converted CTX_CS_CHICKEN1 initialization to a read-modify-write
    sequence to avoid overwriting golden context mask bits. (sashiko)
  - Removed the FF_SLICE_CS_CHICKEN1 workaround for CCS engines, as
    compute engines lack this 3D fixed-function register, which was
    causing GuC "illegal register" panics on initialization.

v2:
  - Dropped the WA BB/MI_LRI path; per Bspec, CS_CHICKEN1 is context
    save/restore state at DW 0x00E2, so we map CTX_CS_CHICKEN1 and program
    it directly in LRC init via xe_lrc_write_ctx_reg(). (Matt)
  - Split Xe2 CCS context offsets into a dedicated xe2_ccs_offsets array
    to map CS_CHICKEN1 without polluting other XCS engines.
  - Converted the debugfs interface from a binary boolean to a
    multi-option string knob ("default", "mid-thread", "thread-group",
    "command"). (Gustavo)
  - Restricted file creation to the Physical Function
    (!IS_SRIOV_VF). (Gustavo)
  - Added kernel tainting (TAINT_USER) when deviating from
    defaults. (Gustavo)
  - Added power-safe hardware fuse check (FUSE4 register 0x9114[20],
    CFEG_WMTP_DISABLE) before allowing MTP selection. (Matt)

Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
 drivers/gpu/drm/xe/regs/xe_lrc_layout.h |  2 +
 drivers/gpu/drm/xe/xe_gt_debugfs.c      | 85 +++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_gt_types.h        | 31 +++++++++
 drivers/gpu/drm/xe/xe_lrc.c             | 52 +++++++++++++++
 drivers/gpu/drm/xe/xe_wa.c              |  6 ++
 5 files changed, 176 insertions(+)

diff --git a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
index 4ab86fc369fd..2236debf5534 100644
--- a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
+++ b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
@@ -37,6 +37,8 @@
 #define CTX_QUEUE_TIMESTAMP		(0xd0 + 1)
 #define CTX_QUEUE_TIMESTAMP_UDW		(0xd2 + 1)
 
+#define CTX_CS_CHICKEN1         (0xe2 + 1)
+
 #define INDIRECT_CTX_RING_HEAD		(0x02 + 1)
 #define INDIRECT_CTX_RING_TAIL		(0x04 + 1)
 #define INDIRECT_CTX_RING_START		(0x06 + 1)
diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index c38bcacb27e4..b41fafe22a76 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -6,10 +6,13 @@
 #include "xe_gt_debugfs.h"
 
 #include <linux/debugfs.h>
+#include <linux/panic.h>
+#include <linux/string.h>
 
 #include <drm/drm_debugfs.h>
 #include <drm/drm_managed.h>
 
+#include "regs/xe_gt_regs.h"
 #include "xe_device.h"
 #include "xe_force_wake.h"
 #include "xe_gt.h"
@@ -23,6 +26,7 @@
 #include "xe_hw_engine.h"
 #include "xe_lrc.h"
 #include "xe_mocs.h"
+#include "xe_mmio.h"
 #include "xe_pat.h"
 #include "xe_pm.h"
 #include "xe_reg_sr.h"
@@ -336,6 +340,84 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
 }
 DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
 
+static const char * const preemption_level_names[] = {
+	[XE_GPGPU_PREEMPT_DEFAULT]      = "default",
+	[XE_GPGPU_PREEMPT_MID_THREAD]   = "mid-thread",
+	[XE_GPGPU_PREEMPT_THREAD_GROUP] = "thread-group",
+	[XE_GPGPU_PREEMPT_COMMAND]      = "command",
+};
+
+static int preemption_level_show(struct seq_file *m, void *unused)
+{
+	struct xe_gt *gt = m->private;
+
+	seq_printf(m, "%s\n", preemption_level_names[READ_ONCE(gt->gpgpu_preempt_level)]);
+
+	return 0;
+}
+
+static ssize_t preemption_level_write(struct file *file,
+				      const char __user *ubuf,
+				      size_t len, loff_t *offp)
+{
+	struct seq_file *m = file->private_data;
+	struct xe_gt *gt = m->private;
+	struct xe_device *xe = gt_to_xe(gt);
+	enum xe_gpgpu_preempt_level new_level;
+	char buf[16];
+	int idx;
+
+	if (*offp)
+		return -EINVAL;
+	if (len >= sizeof(buf))
+		return -EINVAL;
+	if (copy_from_user(buf, ubuf, len))
+		return -EFAULT;
+	buf[len] = '\0';
+
+	idx = sysfs_match_string(preemption_level_names, buf);
+	if (idx < 0)
+		return idx;
+
+	new_level = (enum xe_gpgpu_preempt_level)idx;
+
+	if (new_level == XE_GPGPU_PREEMPT_MID_THREAD) {
+		unsigned int fw_ref;
+		u32 fuse4;
+
+		xe_pm_runtime_get(xe);
+		fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
+		if (!fw_ref) {
+			xe_force_wake_put(gt_to_fw(gt), fw_ref);
+			xe_pm_runtime_put(xe);
+			return -ETIMEDOUT;
+		}
+
+		fuse4 = xe_mmio_read32(&gt->mmio, XEHP_FUSE4);
+		xe_force_wake_put(gt_to_fw(gt), fw_ref);
+		xe_pm_runtime_put(xe);
+
+		if (fuse4 & CFEG_WMTP_DISABLE) {
+			drm_warn(&xe->drm,
+				 "GT%u: MTP fused off in hardware, cannot select mid-thread\n",
+				 gt->info.id);
+			return -EPERM;
+		}
+	}
+
+	if (new_level != XE_GPGPU_PREEMPT_DEFAULT) {
+		add_taint(TAINT_USER, LOCKDEP_STILL_OK);
+		drm_notice(&xe->drm,
+			   "GT%u: GPGPU preemption overridden to '%s' (applies to new LRCs only)\n",
+			   gt->info.id, preemption_level_names[new_level]);
+	}
+
+	WRITE_ONCE(gt->gpgpu_preempt_level, new_level);
+
+	return len;
+}
+DEFINE_SHOW_STORE_ATTRIBUTE(preemption_level);
+
 void xe_gt_debugfs_register(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
@@ -368,6 +450,9 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
 	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
 	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
 	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
+	if (GRAPHICS_VER(xe) >= 20 && !IS_SRIOV_VF(xe) &&
+	    (gt->info.engine_mask & (XE_HW_ENGINE_RCS_MASK | XE_HW_ENGINE_CCS_MASK)))
+		debugfs_create_file("preemption_level", 0600, root, gt, &preemption_level_fops);
 
 	drm_debugfs_create_files(vf_safe_debugfs_list,
 				 ARRAY_SIZE(vf_safe_debugfs_list),
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index e5588c88800a..b4c677f1047b 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -35,6 +35,33 @@ enum xe_gt_eu_type {
 	XE_GT_EU_TYPE_SIMD16,
 };
 
+/**
+ * enum xe_gpgpu_preempt_level - Per-context GPGPU preemption override mode
+ *
+ * Selects the preemption granularity programmed into CS_CHICKEN1[2:1] for
+ * newly created Xe2+ RCS/CCS LRCs.
+ *
+ * The per-context override is effective only when
+ * FF_SLICE_CS_CHICKEN1[FFSC_PERCTX_PREEMPT_CTRL] is enabled via RTP.
+ *
+ * This setting is GT-scoped and affects only LRCs created after the value is
+ * changed; existing contexts keep their previously programmed value.
+ *
+ * @XE_GPGPU_PREEMPT_DEFAULT: Keep platform default preemption granularity.
+ * @XE_GPGPU_PREEMPT_MID_THREAD: Force mid-thread preemption level.
+ * @XE_GPGPU_PREEMPT_THREAD_GROUP: Force thread-group preemption level.
+ * @XE_GPGPU_PREEMPT_COMMAND: Force command-level preemption.
+ *
+ * Zero-initialized via kzalloc, so XE_GPGPU_PREEMPT_DEFAULT is the safe
+ * default (no override from platform policy).
+ */
+enum xe_gpgpu_preempt_level {
+	XE_GPGPU_PREEMPT_DEFAULT = 0,
+	XE_GPGPU_PREEMPT_MID_THREAD,
+	XE_GPGPU_PREEMPT_THREAD_GROUP,
+	XE_GPGPU_PREEMPT_COMMAND,
+};
+
 #define XE_MAX_DSS_FUSE_REGS		4
 #define XE_MAX_DSS_FUSE_BITS		(32 * XE_MAX_DSS_FUSE_REGS)
 #define XE_MAX_EU_FUSE_REGS		1
@@ -219,6 +246,10 @@ struct xe_gt {
 	 */
 	u32 ccs_mode;
 
+	/**
+	 * @gpgpu_preempt_level: per-GT GPGPU preemption granularity override.
+	 */
+	enum xe_gpgpu_preempt_level gpgpu_preempt_level;
 	/** @usm: unified shared memory state */
 	struct {
 		/**
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3e7c995085d0..903bbda27384 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -567,6 +567,20 @@ static const u8 xe2_rcs_offsets[] = {
 	LRI(1, 0),              /* [0x47] */
 	REG(0x0c8),             /* [0x48] R_PWR_CLK_STATE */
 
+	NOP(0x7f), NOP(0x1e),              /* Pad from DW 0x44 to 0xe0 */
+	LRI(1, POSTED),         /* [0xe1] */
+	REG16(0x580),           /* [0xe2] CS_CHICKEN1 (value at [0xe3]) */
+
+	0
+};
+
+static const u8 xe2_ccs_offsets[] = {
+	XE2_CTX_COMMON,
+
+	NOP(0x7f), NOP(0x2e),              /* Pad from DW 0x34 to 0xe0 */
+	LRI(1, POSTED),         /* [0xe1] */
+	REG16(0x580),           /* [0xe2] CS_CHICKEN1 (value at [0xe3]) */
+
 	0
 };
 
@@ -636,6 +650,13 @@ static const u8 *reg_offsets(struct xe_device *xe, enum xe_engine_class class)
 			return xe2_bcs_offsets;
 		else
 			return gen12_xcs_offsets;
+	} else if (class == XE_ENGINE_CLASS_COMPUTE) {
+		if (GRAPHICS_VER(xe) >= 20)
+			return xe2_ccs_offsets;
+		else if (GRAPHICS_VERx100(xe) >= 1255)
+			return dg2_xcs_offsets;
+		else
+			return gen12_xcs_offsets;
 	} else {
 		if (GRAPHICS_VER(xe) >= 20)
 			return xe2_xcs_offsets;
@@ -1589,6 +1610,37 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
 	if (xe->info.has_asid && vm)
 		xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
 
+	if (GRAPHICS_VER(xe) >= 20 &&
+	    (hwe->class == XE_ENGINE_CLASS_RENDER ||
+	     hwe->class == XE_ENGINE_CLASS_COMPUTE)) {
+		enum xe_gpgpu_preempt_level level = READ_ONCE(gt->gpgpu_preempt_level);
+
+		if (level != XE_GPGPU_PREEMPT_DEFAULT) {
+			u32 level_bits;
+			u32 val;
+
+			switch (level) {
+			case XE_GPGPU_PREEMPT_MID_THREAD:
+				level_bits = PREEMPT_GPGPU_MID_THREAD_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_THREAD_GROUP:
+				level_bits = PREEMPT_GPGPU_THREAD_GROUP_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_COMMAND:
+				level_bits = PREEMPT_GPGPU_COMMAND_LEVEL;
+				break;
+			default:
+				level_bits = 0;
+				break;
+			}
+
+			val = xe_lrc_read_ctx_reg(lrc, CTX_CS_CHICKEN1);
+			val &= ~PREEMPT_GPGPU_LEVEL_MASK;
+			val |= REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, level_bits);
+			xe_lrc_write_ctx_reg(lrc, CTX_CS_CHICKEN1, val);
+		}
+	}
+
 	lrc->desc = LRC_VALID;
 	lrc->desc |= FIELD_PREP(LRC_ADDRESSING_MODE, LRC_LEGACY_64B_CONTEXT);
 	/* TODO: Priority */
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 139434946f8f..70072963aba0 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -347,6 +347,12 @@ static const struct xe_rtp_table_sr engine_was = XE_RTP_TABLE_SR(
 	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
 			     FFSC_PERCTX_PREEMPT_CTRL))
 	},
+	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2"),
+	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
+		       ENGINE_CLASS(RENDER)),
+	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
+			     FFSC_PERCTX_PREEMPT_CTRL))
+	},
 	{ XE_RTP_NAME("18032247524"),
 	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2004),
 		       FUNC(xe_rtp_match_first_render_or_compute)),
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (13 preceding siblings ...)
  2026-07-06 14:12 ` [PATCH v4] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
@ 2026-07-06 14:49 ` Patchwork
  2026-07-06 15:35 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (10 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-06 14:49 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:47:42] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:47:46] 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
../drivers/gpu/drm/xe/xe_pt.c:1430:13: warning: ‘xe_pt_svm_userptr_notifier_lock’ defined but not used [-Wunused-function]
 1430 | static void xe_pt_svm_userptr_notifier_lock(struct xe_vm *vm)
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

[14:48:18] Starting KUnit Kernel (1/1)...
[14:48:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:48:18] ================== guc_buf (11 subtests) ===================
[14:48:18] [PASSED] test_smallest
[14:48:18] [PASSED] test_largest
[14:48:18] [PASSED] test_granular
[14:48:18] [PASSED] test_unique
[14:48:18] [PASSED] test_overlap
[14:48:18] [PASSED] test_reusable
[14:48:18] [PASSED] test_too_big
[14:48:18] [PASSED] test_flush
[14:48:18] [PASSED] test_lookup
[14:48:18] [PASSED] test_data
[14:48:18] [PASSED] test_class
[14:48:18] ===================== [PASSED] guc_buf =====================
[14:48:18] =================== guc_dbm (7 subtests) ===================
[14:48:18] [PASSED] test_empty
[14:48:18] [PASSED] test_default
[14:48:18] ======================== test_size  ========================
[14:48:18] [PASSED] 4
[14:48:18] [PASSED] 8
[14:48:18] [PASSED] 32
[14:48:18] [PASSED] 256
[14:48:18] ==================== [PASSED] test_size ====================
[14:48:18] ======================= test_reuse  ========================
[14:48:18] [PASSED] 4
[14:48:18] [PASSED] 8
[14:48:18] [PASSED] 32
[14:48:18] [PASSED] 256
[14:48:18] =================== [PASSED] test_reuse ====================
[14:48:18] =================== test_range_overlap  ====================
[14:48:18] [PASSED] 4
[14:48:18] [PASSED] 8
[14:48:18] [PASSED] 32
[14:48:18] [PASSED] 256
[14:48:18] =============== [PASSED] test_range_overlap ================
[14:48:18] =================== test_range_compact  ====================
[14:48:18] [PASSED] 4
[14:48:18] [PASSED] 8
[14:48:18] [PASSED] 32
[14:48:18] [PASSED] 256
[14:48:18] =============== [PASSED] test_range_compact ================
[14:48:18] ==================== test_range_spare  =====================
[14:48:18] [PASSED] 4
[14:48:18] [PASSED] 8
[14:48:18] [PASSED] 32
[14:48:18] [PASSED] 256
[14:48:18] ================ [PASSED] test_range_spare =================
[14:48:18] ===================== [PASSED] guc_dbm =====================
[14:48:18] =================== guc_idm (6 subtests) ===================
[14:48:18] [PASSED] bad_init
[14:48:18] [PASSED] no_init
[14:48:18] [PASSED] init_fini
[14:48:18] [PASSED] check_used
[14:48:18] [PASSED] check_quota
[14:48:18] [PASSED] check_all
[14:48:18] ===================== [PASSED] guc_idm =====================
[14:48:18] ================== no_relay (3 subtests) ===================
[14:48:18] [PASSED] xe_drops_guc2pf_if_not_ready
[14:48:18] [PASSED] xe_drops_guc2vf_if_not_ready
[14:48:18] [PASSED] xe_rejects_send_if_not_ready
[14:48:18] ==================== [PASSED] no_relay =====================
[14:48:18] ================== pf_relay (14 subtests) ==================
[14:48:18] [PASSED] pf_rejects_guc2pf_too_short
[14:48:18] [PASSED] pf_rejects_guc2pf_too_long
[14:48:18] [PASSED] pf_rejects_guc2pf_no_payload
[14:48:18] [PASSED] pf_fails_no_payload
[14:48:18] [PASSED] pf_fails_bad_origin
[14:48:18] [PASSED] pf_fails_bad_type
[14:48:18] [PASSED] pf_txn_reports_error
[14:48:18] [PASSED] pf_txn_sends_pf2guc
[14:48:18] [PASSED] pf_sends_pf2guc
[14:48:18] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:48:18] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:48:18] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:48:18] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:48:18] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:48:18] ==================== [PASSED] pf_relay =====================
[14:48:18] ================== vf_relay (3 subtests) ===================
[14:48:18] [PASSED] vf_rejects_guc2vf_too_short
[14:48:18] [PASSED] vf_rejects_guc2vf_too_long
[14:48:18] [PASSED] vf_rejects_guc2vf_no_payload
[14:48:18] ==================== [PASSED] vf_relay =====================
[14:48:18] ================ pf_gt_config (9 subtests) =================
[14:48:18] [PASSED] fair_contexts_1vf
[14:48:18] [PASSED] fair_doorbells_1vf
[14:48:18] [PASSED] fair_ggtt_1vf
[14:48:18] ====================== fair_vram_1vf  ======================
[14:48:18] [PASSED] 3.50 GiB
[14:48:18] [PASSED] 11.5 GiB
[14:48:18] [PASSED] 15.5 GiB
[14:48:18] [PASSED] 31.5 GiB
[14:48:18] [PASSED] 63.5 GiB
[14:48:18] [PASSED] 1.91 GiB
[14:48:18] ================== [PASSED] fair_vram_1vf ==================
[14:48:18] ================ fair_vram_1vf_admin_only  =================
[14:48:18] [PASSED] 3.50 GiB
[14:48:18] [PASSED] 11.5 GiB
[14:48:18] [PASSED] 15.5 GiB
[14:48:18] [PASSED] 31.5 GiB
[14:48:18] [PASSED] 63.5 GiB
[14:48:18] [PASSED] 1.91 GiB
[14:48:18] ============ [PASSED] fair_vram_1vf_admin_only =============
[14:48:18] ====================== fair_contexts  ======================
[14:48:18] [PASSED] 1 VF
[14:48:18] [PASSED] 2 VFs
[14:48:18] [PASSED] 3 VFs
[14:48:18] [PASSED] 4 VFs
[14:48:18] [PASSED] 5 VFs
[14:48:18] [PASSED] 6 VFs
[14:48:18] [PASSED] 7 VFs
[14:48:18] [PASSED] 8 VFs
[14:48:18] [PASSED] 9 VFs
[14:48:18] [PASSED] 10 VFs
[14:48:18] [PASSED] 11 VFs
[14:48:18] [PASSED] 12 VFs
[14:48:18] [PASSED] 13 VFs
[14:48:18] [PASSED] 14 VFs
[14:48:18] [PASSED] 15 VFs
[14:48:18] [PASSED] 16 VFs
[14:48:18] [PASSED] 17 VFs
[14:48:18] [PASSED] 18 VFs
[14:48:18] [PASSED] 19 VFs
[14:48:18] [PASSED] 20 VFs
[14:48:18] [PASSED] 21 VFs
[14:48:18] [PASSED] 22 VFs
[14:48:18] [PASSED] 23 VFs
[14:48:18] [PASSED] 24 VFs
[14:48:18] [PASSED] 25 VFs
[14:48:18] [PASSED] 26 VFs
[14:48:18] [PASSED] 27 VFs
[14:48:18] [PASSED] 28 VFs
[14:48:18] [PASSED] 29 VFs
[14:48:18] [PASSED] 30 VFs
[14:48:18] [PASSED] 31 VFs
[14:48:18] [PASSED] 32 VFs
[14:48:18] [PASSED] 33 VFs
[14:48:18] [PASSED] 34 VFs
[14:48:18] [PASSED] 35 VFs
[14:48:18] [PASSED] 36 VFs
[14:48:18] [PASSED] 37 VFs
[14:48:18] [PASSED] 38 VFs
[14:48:18] [PASSED] 39 VFs
[14:48:18] [PASSED] 40 VFs
[14:48:18] [PASSED] 41 VFs
[14:48:18] [PASSED] 42 VFs
[14:48:18] [PASSED] 43 VFs
[14:48:18] [PASSED] 44 VFs
[14:48:18] [PASSED] 45 VFs
[14:48:18] [PASSED] 46 VFs
[14:48:18] [PASSED] 47 VFs
[14:48:18] [PASSED] 48 VFs
[14:48:18] [PASSED] 49 VFs
[14:48:18] [PASSED] 50 VFs
[14:48:18] [PASSED] 51 VFs
[14:48:18] [PASSED] 52 VFs
[14:48:18] [PASSED] 53 VFs
[14:48:18] [PASSED] 54 VFs
[14:48:18] [PASSED] 55 VFs
[14:48:18] [PASSED] 56 VFs
[14:48:18] [PASSED] 57 VFs
[14:48:18] [PASSED] 58 VFs
[14:48:18] [PASSED] 59 VFs
[14:48:18] [PASSED] 60 VFs
[14:48:18] [PASSED] 61 VFs
[14:48:18] [PASSED] 62 VFs
[14:48:18] [PASSED] 63 VFs
[14:48:18] ================== [PASSED] fair_contexts ==================
[14:48:18] ===================== fair_doorbells  ======================
[14:48:18] [PASSED] 1 VF
[14:48:18] [PASSED] 2 VFs
[14:48:18] [PASSED] 3 VFs
[14:48:18] [PASSED] 4 VFs
[14:48:18] [PASSED] 5 VFs
[14:48:18] [PASSED] 6 VFs
[14:48:18] [PASSED] 7 VFs
[14:48:18] [PASSED] 8 VFs
[14:48:18] [PASSED] 9 VFs
[14:48:18] [PASSED] 10 VFs
[14:48:18] [PASSED] 11 VFs
[14:48:18] [PASSED] 12 VFs
[14:48:18] [PASSED] 13 VFs
[14:48:18] [PASSED] 14 VFs
[14:48:18] [PASSED] 15 VFs
[14:48:18] [PASSED] 16 VFs
[14:48:18] [PASSED] 17 VFs
[14:48:18] [PASSED] 18 VFs
[14:48:18] [PASSED] 19 VFs
[14:48:18] [PASSED] 20 VFs
[14:48:18] [PASSED] 21 VFs
[14:48:18] [PASSED] 22 VFs
[14:48:18] [PASSED] 23 VFs
[14:48:18] [PASSED] 24 VFs
[14:48:18] [PASSED] 25 VFs
[14:48:18] [PASSED] 26 VFs
[14:48:18] [PASSED] 27 VFs
[14:48:18] [PASSED] 28 VFs
[14:48:18] [PASSED] 29 VFs
[14:48:18] [PASSED] 30 VFs
[14:48:18] [PASSED] 31 VFs
[14:48:18] [PASSED] 32 VFs
[14:48:18] [PASSED] 33 VFs
[14:48:18] [PASSED] 34 VFs
[14:48:18] [PASSED] 35 VFs
[14:48:18] [PASSED] 36 VFs
[14:48:18] [PASSED] 37 VFs
[14:48:18] [PASSED] 38 VFs
[14:48:18] [PASSED] 39 VFs
[14:48:18] [PASSED] 40 VFs
[14:48:18] [PASSED] 41 VFs
[14:48:18] [PASSED] 42 VFs
[14:48:18] [PASSED] 43 VFs
[14:48:18] [PASSED] 44 VFs
[14:48:18] [PASSED] 45 VFs
[14:48:18] [PASSED] 46 VFs
[14:48:18] [PASSED] 47 VFs
[14:48:18] [PASSED] 48 VFs
[14:48:18] [PASSED] 49 VFs
[14:48:18] [PASSED] 50 VFs
[14:48:18] [PASSED] 51 VFs
[14:48:18] [PASSED] 52 VFs
[14:48:18] [PASSED] 53 VFs
[14:48:18] [PASSED] 54 VFs
[14:48:18] [PASSED] 55 VFs
[14:48:18] [PASSED] 56 VFs
[14:48:18] [PASSED] 57 VFs
[14:48:18] [PASSED] 58 VFs
[14:48:18] [PASSED] 59 VFs
[14:48:18] [PASSED] 60 VFs
[14:48:18] [PASSED] 61 VFs
[14:48:18] [PASSED] 62 VFs
[14:48:18] [PASSED] 63 VFs
[14:48:18] ================= [PASSED] fair_doorbells ==================
[14:48:18] ======================== fair_ggtt  ========================
[14:48:18] [PASSED] 1 VF
[14:48:18] [PASSED] 2 VFs
[14:48:18] [PASSED] 3 VFs
[14:48:18] [PASSED] 4 VFs
[14:48:18] [PASSED] 5 VFs
[14:48:18] [PASSED] 6 VFs
[14:48:18] [PASSED] 7 VFs
[14:48:18] [PASSED] 8 VFs
[14:48:18] [PASSED] 9 VFs
[14:48:18] [PASSED] 10 VFs
[14:48:18] [PASSED] 11 VFs
[14:48:18] [PASSED] 12 VFs
[14:48:18] [PASSED] 13 VFs
[14:48:18] [PASSED] 14 VFs
[14:48:18] [PASSED] 15 VFs
[14:48:18] [PASSED] 16 VFs
[14:48:18] [PASSED] 17 VFs
[14:48:18] [PASSED] 18 VFs
[14:48:18] [PASSED] 19 VFs
[14:48:18] [PASSED] 20 VFs
[14:48:18] [PASSED] 21 VFs
[14:48:18] [PASSED] 22 VFs
[14:48:18] [PASSED] 23 VFs
[14:48:18] [PASSED] 24 VFs
[14:48:18] [PASSED] 25 VFs
[14:48:18] [PASSED] 26 VFs
[14:48:18] [PASSED] 27 VFs
[14:48:18] [PASSED] 28 VFs
[14:48:18] [PASSED] 29 VFs
[14:48:18] [PASSED] 30 VFs
[14:48:18] [PASSED] 31 VFs
[14:48:18] [PASSED] 32 VFs
[14:48:18] [PASSED] 33 VFs
[14:48:18] [PASSED] 34 VFs
[14:48:18] [PASSED] 35 VFs
[14:48:18] [PASSED] 36 VFs
[14:48:18] [PASSED] 37 VFs
[14:48:18] [PASSED] 38 VFs
[14:48:18] [PASSED] 39 VFs
[14:48:18] [PASSED] 40 VFs
[14:48:18] [PASSED] 41 VFs
[14:48:18] [PASSED] 42 VFs
[14:48:18] [PASSED] 43 VFs
[14:48:18] [PASSED] 44 VFs
[14:48:18] [PASSED] 45 VFs
[14:48:18] [PASSED] 46 VFs
[14:48:18] [PASSED] 47 VFs
[14:48:18] [PASSED] 48 VFs
[14:48:18] [PASSED] 49 VFs
[14:48:18] [PASSED] 50 VFs
[14:48:18] [PASSED] 51 VFs
[14:48:18] [PASSED] 52 VFs
[14:48:18] [PASSED] 53 VFs
[14:48:18] [PASSED] 54 VFs
[14:48:18] [PASSED] 55 VFs
[14:48:18] [PASSED] 56 VFs
[14:48:18] [PASSED] 57 VFs
[14:48:18] [PASSED] 58 VFs
[14:48:18] [PASSED] 59 VFs
[14:48:18] [PASSED] 60 VFs
[14:48:18] [PASSED] 61 VFs
[14:48:18] [PASSED] 62 VFs
[14:48:18] [PASSED] 63 VFs
[14:48:18] ==================== [PASSED] fair_ggtt ====================
[14:48:18] ======================== fair_vram  ========================
[14:48:18] [PASSED] 1 VF
[14:48:18] [PASSED] 2 VFs
[14:48:18] [PASSED] 3 VFs
[14:48:18] [PASSED] 4 VFs
[14:48:18] [PASSED] 5 VFs
[14:48:18] [PASSED] 6 VFs
[14:48:18] [PASSED] 7 VFs
[14:48:18] [PASSED] 8 VFs
[14:48:18] [PASSED] 9 VFs
[14:48:18] [PASSED] 10 VFs
[14:48:18] [PASSED] 11 VFs
[14:48:18] [PASSED] 12 VFs
[14:48:18] [PASSED] 13 VFs
[14:48:18] [PASSED] 14 VFs
[14:48:18] [PASSED] 15 VFs
[14:48:18] [PASSED] 16 VFs
[14:48:18] [PASSED] 17 VFs
[14:48:18] [PASSED] 18 VFs
[14:48:18] [PASSED] 19 VFs
[14:48:18] [PASSED] 20 VFs
[14:48:18] [PASSED] 21 VFs
[14:48:18] [PASSED] 22 VFs
[14:48:18] [PASSED] 23 VFs
[14:48:18] [PASSED] 24 VFs
[14:48:18] [PASSED] 25 VFs
[14:48:18] [PASSED] 26 VFs
[14:48:18] [PASSED] 27 VFs
[14:48:18] [PASSED] 28 VFs
[14:48:18] [PASSED] 29 VFs
[14:48:18] [PASSED] 30 VFs
[14:48:18] [PASSED] 31 VFs
[14:48:18] [PASSED] 32 VFs
[14:48:18] [PASSED] 33 VFs
[14:48:18] [PASSED] 34 VFs
[14:48:18] [PASSED] 35 VFs
[14:48:18] [PASSED] 36 VFs
[14:48:18] [PASSED] 37 VFs
[14:48:18] [PASSED] 38 VFs
[14:48:18] [PASSED] 39 VFs
[14:48:18] [PASSED] 40 VFs
[14:48:18] [PASSED] 41 VFs
[14:48:18] [PASSED] 42 VFs
[14:48:18] [PASSED] 43 VFs
[14:48:18] [PASSED] 44 VFs
[14:48:18] [PASSED] 45 VFs
[14:48:18] [PASSED] 46 VFs
[14:48:18] [PASSED] 47 VFs
[14:48:18] [PASSED] 48 VFs
[14:48:18] [PASSED] 49 VFs
[14:48:18] [PASSED] 50 VFs
[14:48:18] [PASSED] 51 VFs
[14:48:18] [PASSED] 52 VFs
[14:48:18] [PASSED] 53 VFs
[14:48:18] [PASSED] 54 VFs
[14:48:18] [PASSED] 55 VFs
[14:48:18] [PASSED] 56 VFs
[14:48:18] [PASSED] 57 VFs
[14:48:18] [PASSED] 58 VFs
[14:48:18] [PASSED] 59 VFs
[14:48:18] [PASSED] 60 VFs
[14:48:18] [PASSED] 61 VFs
[14:48:18] [PASSED] 62 VFs
[14:48:18] [PASSED] 63 VFs
[14:48:18] ==================== [PASSED] fair_vram ====================
[14:48:18] ================== [PASSED] pf_gt_config ===================
[14:48:18] ===================== lmtt (1 subtest) =====================
[14:48:18] ======================== test_ops  =========================
[14:48:18] [PASSED] 2-level
[14:48:18] [PASSED] multi-level
[14:48:18] ==================== [PASSED] test_ops =====================
[14:48:18] ====================== [PASSED] lmtt =======================
[14:48:18] ================= pf_service (11 subtests) =================
[14:48:18] [PASSED] pf_negotiate_any
[14:48:18] [PASSED] pf_negotiate_base_match
[14:48:18] [PASSED] pf_negotiate_base_newer
[14:48:18] [PASSED] pf_negotiate_base_next
[14:48:18] [SKIPPED] pf_negotiate_base_older (no older minor)
[14:48:18] [PASSED] pf_negotiate_base_prev
[14:48:18] [PASSED] pf_negotiate_latest_match
[14:48:18] [PASSED] pf_negotiate_latest_newer
[14:48:18] [PASSED] pf_negotiate_latest_next
[14:48:18] [SKIPPED] pf_negotiate_latest_older (no older minor)
[14:48:18] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[14:48:18] =================== [PASSED] pf_service ====================
[14:48:18] ================= xe_guc_g2g (2 subtests) ==================
[14:48:18] ============== xe_live_guc_g2g_kunit_default  ==============
[14:48:18] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:48:18] ============== xe_live_guc_g2g_kunit_allmem  ===============
[14:48:18] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:48:18] =================== [SKIPPED] xe_guc_g2g ===================
[14:48:18] =================== xe_mocs (2 subtests) ===================
[14:48:18] ================ xe_live_mocs_kernel_kunit  ================
[14:48:18] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:48:18] ================ xe_live_mocs_reset_kunit  =================
[14:48:18] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:48:18] ==================== [SKIPPED] xe_mocs =====================
[14:48:18] ================= xe_migrate (2 subtests) ==================
[14:48:18] ================= xe_migrate_sanity_kunit  =================
[14:48:18] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:48:18] ================== xe_validate_ccs_kunit  ==================
[14:48:18] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:48:18] =================== [SKIPPED] xe_migrate ===================
[14:48:18] ================== xe_dma_buf (1 subtest) ==================
[14:48:18] ==================== xe_dma_buf_kunit  =====================
[14:48:18] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:48:18] =================== [SKIPPED] xe_dma_buf ===================
[14:48:18] ================= xe_bo_shrink (1 subtest) =================
[14:48:18] =================== xe_bo_shrink_kunit  ====================
[14:48:18] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:48:18] ================== [SKIPPED] xe_bo_shrink ==================
[14:48:18] ==================== xe_bo (2 subtests) ====================
[14:48:18] ================== xe_ccs_migrate_kunit  ===================
[14:48:18] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:48:18] ==================== xe_bo_evict_kunit  ====================
[14:48:18] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:48:18] ===================== [SKIPPED] xe_bo ======================
[14:48:18] ==================== args (13 subtests) ====================
[14:48:18] [PASSED] count_args_test
[14:48:18] [PASSED] call_args_example
[14:48:18] [PASSED] call_args_test
[14:48:18] [PASSED] drop_first_arg_example
[14:48:18] [PASSED] drop_first_arg_test
[14:48:18] [PASSED] first_arg_example
[14:48:18] [PASSED] first_arg_test
[14:48:18] [PASSED] last_arg_example
[14:48:18] [PASSED] last_arg_test
[14:48:18] [PASSED] pick_arg_example
[14:48:18] [PASSED] if_args_example
[14:48:18] [PASSED] if_args_test
[14:48:18] [PASSED] sep_comma_example
[14:48:18] ====================== [PASSED] args =======================
[14:48:18] =================== xe_pci (3 subtests) ====================
[14:48:18] ==================== check_graphics_ip  ====================
[14:48:18] [PASSED] 12.00 Xe_LP
[14:48:18] [PASSED] 12.10 Xe_LP+
[14:48:18] [PASSED] 12.55 Xe_HPG
[14:48:18] [PASSED] 12.60 Xe_HPC
[14:48:18] [PASSED] 12.70 Xe_LPG
[14:48:18] [PASSED] 12.71 Xe_LPG
[14:48:18] [PASSED] 12.74 Xe_LPG+
[14:48:18] [PASSED] 20.01 Xe2_HPG
[14:48:18] [PASSED] 20.02 Xe2_HPG
[14:48:18] [PASSED] 20.04 Xe2_LPG
[14:48:18] [PASSED] 30.00 Xe3_LPG
[14:48:18] [PASSED] 30.01 Xe3_LPG
[14:48:18] [PASSED] 30.03 Xe3_LPG
[14:48:18] [PASSED] 30.04 Xe3_LPG
[14:48:18] [PASSED] 30.05 Xe3_LPG
[14:48:18] [PASSED] 35.10 Xe3p_LPG
[14:48:18] [PASSED] 35.11 Xe3p_XPC
[14:48:18] ================ [PASSED] check_graphics_ip ================
[14:48:18] ===================== check_media_ip  ======================
[14:48:18] [PASSED] 12.00 Xe_M
[14:48:18] [PASSED] 12.55 Xe_HPM
[14:48:18] [PASSED] 13.00 Xe_LPM+
[14:48:18] [PASSED] 13.01 Xe2_HPM
[14:48:18] [PASSED] 20.00 Xe2_LPM
[14:48:18] [PASSED] 30.00 Xe3_LPM
[14:48:18] [PASSED] 30.02 Xe3_LPM
[14:48:18] [PASSED] 35.00 Xe3p_LPM
[14:48:18] [PASSED] 35.03 Xe3p_HPM
[14:48:18] ================= [PASSED] check_media_ip ==================
[14:48:18] =================== check_platform_desc  ===================
[14:48:18] [PASSED] 0x9A60 (TIGERLAKE)
[14:48:18] [PASSED] 0x9A68 (TIGERLAKE)
[14:48:18] [PASSED] 0x9A70 (TIGERLAKE)
[14:48:18] [PASSED] 0x9A40 (TIGERLAKE)
[14:48:18] [PASSED] 0x9A49 (TIGERLAKE)
[14:48:18] [PASSED] 0x9A59 (TIGERLAKE)
[14:48:18] [PASSED] 0x9A78 (TIGERLAKE)
[14:48:18] [PASSED] 0x9AC0 (TIGERLAKE)
[14:48:18] [PASSED] 0x9AC9 (TIGERLAKE)
[14:48:18] [PASSED] 0x9AD9 (TIGERLAKE)
[14:48:18] [PASSED] 0x9AF8 (TIGERLAKE)
[14:48:18] [PASSED] 0x4C80 (ROCKETLAKE)
[14:48:18] [PASSED] 0x4C8A (ROCKETLAKE)
[14:48:18] [PASSED] 0x4C8B (ROCKETLAKE)
[14:48:18] [PASSED] 0x4C8C (ROCKETLAKE)
[14:48:18] [PASSED] 0x4C90 (ROCKETLAKE)
[14:48:18] [PASSED] 0x4C9A (ROCKETLAKE)
[14:48:18] [PASSED] 0x4680 (ALDERLAKE_S)
[14:48:18] [PASSED] 0x4682 (ALDERLAKE_S)
[14:48:18] [PASSED] 0x4688 (ALDERLAKE_S)
[14:48:18] [PASSED] 0x468A (ALDERLAKE_S)
[14:48:18] [PASSED] 0x468B (ALDERLAKE_S)
[14:48:18] [PASSED] 0x4690 (ALDERLAKE_S)
[14:48:18] [PASSED] 0x4692 (ALDERLAKE_S)
[14:48:18] [PASSED] 0x4693 (ALDERLAKE_S)
[14:48:18] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46AA (ALDERLAKE_P)
[14:48:18] [PASSED] 0x462A (ALDERLAKE_P)
[14:48:18] [PASSED] 0x4626 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x4628 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:48:18] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:48:18] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:48:18] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:48:18] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:48:18] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:48:18] [PASSED] 0xA721 (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA720 (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:48:18] [PASSED] 0xA780 (ALDERLAKE_S)
[14:48:18] [PASSED] 0xA781 (ALDERLAKE_S)
[14:48:18] [PASSED] 0xA782 (ALDERLAKE_S)
[14:48:18] [PASSED] 0xA783 (ALDERLAKE_S)
[14:48:18] [PASSED] 0xA788 (ALDERLAKE_S)
[14:48:18] [PASSED] 0xA789 (ALDERLAKE_S)
[14:48:18] [PASSED] 0xA78A (ALDERLAKE_S)
[14:48:18] [PASSED] 0xA78B (ALDERLAKE_S)
[14:48:18] [PASSED] 0x4905 (DG1)
[14:48:18] [PASSED] 0x4906 (DG1)
[14:48:18] [PASSED] 0x4907 (DG1)
[14:48:18] [PASSED] 0x4908 (DG1)
[14:48:18] [PASSED] 0x4909 (DG1)
[14:48:18] [PASSED] 0x56C0 (DG2)
[14:48:18] [PASSED] 0x56C2 (DG2)
[14:48:18] [PASSED] 0x56C1 (DG2)
[14:48:18] [PASSED] 0x7D51 (METEORLAKE)
[14:48:18] [PASSED] 0x7DD1 (METEORLAKE)
[14:48:18] [PASSED] 0x7D41 (METEORLAKE)
[14:48:18] [PASSED] 0x7D67 (METEORLAKE)
[14:48:18] [PASSED] 0xB640 (METEORLAKE)
[14:48:18] [PASSED] 0x56A0 (DG2)
[14:48:18] [PASSED] 0x56A1 (DG2)
[14:48:18] [PASSED] 0x56A2 (DG2)
[14:48:18] [PASSED] 0x56BE (DG2)
[14:48:18] [PASSED] 0x56BF (DG2)
[14:48:18] [PASSED] 0x5690 (DG2)
[14:48:18] [PASSED] 0x5691 (DG2)
[14:48:18] [PASSED] 0x5692 (DG2)
[14:48:18] [PASSED] 0x56A5 (DG2)
[14:48:18] [PASSED] 0x56A6 (DG2)
[14:48:18] [PASSED] 0x56B0 (DG2)
[14:48:18] [PASSED] 0x56B1 (DG2)
[14:48:18] [PASSED] 0x56BA (DG2)
[14:48:18] [PASSED] 0x56BB (DG2)
[14:48:18] [PASSED] 0x56BC (DG2)
[14:48:18] [PASSED] 0x56BD (DG2)
[14:48:18] [PASSED] 0x5693 (DG2)
[14:48:18] [PASSED] 0x5694 (DG2)
[14:48:18] [PASSED] 0x5695 (DG2)
[14:48:18] [PASSED] 0x56A3 (DG2)
[14:48:18] [PASSED] 0x56A4 (DG2)
[14:48:18] [PASSED] 0x56B2 (DG2)
[14:48:18] [PASSED] 0x56B3 (DG2)
[14:48:18] [PASSED] 0x5696 (DG2)
[14:48:18] [PASSED] 0x5697 (DG2)
[14:48:18] [PASSED] 0xB69 (PVC)
[14:48:18] [PASSED] 0xB6E (PVC)
[14:48:18] [PASSED] 0xBD4 (PVC)
[14:48:18] [PASSED] 0xBD5 (PVC)
[14:48:18] [PASSED] 0xBD6 (PVC)
[14:48:18] [PASSED] 0xBD7 (PVC)
[14:48:18] [PASSED] 0xBD8 (PVC)
[14:48:18] [PASSED] 0xBD9 (PVC)
[14:48:18] [PASSED] 0xBDA (PVC)
[14:48:18] [PASSED] 0xBDB (PVC)
[14:48:18] [PASSED] 0xBE0 (PVC)
[14:48:18] [PASSED] 0xBE1 (PVC)
[14:48:18] [PASSED] 0xBE5 (PVC)
[14:48:18] [PASSED] 0x7D40 (METEORLAKE)
[14:48:18] [PASSED] 0x7D45 (METEORLAKE)
[14:48:18] [PASSED] 0x7D55 (METEORLAKE)
[14:48:18] [PASSED] 0x7D60 (METEORLAKE)
[14:48:18] [PASSED] 0x7DD5 (METEORLAKE)
[14:48:18] [PASSED] 0x6420 (LUNARLAKE)
[14:48:18] [PASSED] 0x64A0 (LUNARLAKE)
[14:48:18] [PASSED] 0x64B0 (LUNARLAKE)
[14:48:18] [PASSED] 0xE202 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE209 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE20B (BATTLEMAGE)
[14:48:18] [PASSED] 0xE20C (BATTLEMAGE)
[14:48:18] [PASSED] 0xE20D (BATTLEMAGE)
[14:48:18] [PASSED] 0xE210 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE211 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE212 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE216 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE220 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE221 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE222 (BATTLEMAGE)
[14:48:18] [PASSED] 0xE223 (BATTLEMAGE)
[14:48:18] [PASSED] 0xB080 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB081 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB082 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB083 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB084 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB085 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB086 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB087 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB08F (PANTHERLAKE)
[14:48:18] [PASSED] 0xB090 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:48:18] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:48:18] [PASSED] 0xFD80 (PANTHERLAKE)
[14:48:18] [PASSED] 0xFD81 (PANTHERLAKE)
[14:48:18] [PASSED] 0xD740 (NOVALAKE_S)
[14:48:18] [PASSED] 0xD741 (NOVALAKE_S)
[14:48:18] [PASSED] 0xD742 (NOVALAKE_S)
[14:48:18] [PASSED] 0xD743 (NOVALAKE_S)
[14:48:18] [PASSED] 0xD745 (NOVALAKE_S)
[14:48:18] [PASSED] 0xD74A (NOVALAKE_S)
[14:48:18] [PASSED] 0xD74B (NOVALAKE_S)
[14:48:18] [PASSED] 0x674C (CRESCENTISLAND)
[14:48:18] [PASSED] 0x674D (CRESCENTISLAND)
[14:48:18] [PASSED] 0x674E (CRESCENTISLAND)
[14:48:18] [PASSED] 0x674F (CRESCENTISLAND)
[14:48:18] [PASSED] 0x6750 (CRESCENTISLAND)
[14:48:18] [PASSED] 0xD750 (NOVALAKE_P)
[14:48:18] [PASSED] 0xD751 (NOVALAKE_P)
[14:48:18] [PASSED] 0xD752 (NOVALAKE_P)
[14:48:18] [PASSED] 0xD753 (NOVALAKE_P)
[14:48:18] [PASSED] 0xD754 (NOVALAKE_P)
[14:48:18] [PASSED] 0xD755 (NOVALAKE_P)
[14:48:18] [PASSED] 0xD756 (NOVALAKE_P)
[14:48:18] [PASSED] 0xD757 (NOVALAKE_P)
[14:48:18] [PASSED] 0xD75F (NOVALAKE_P)
[14:48:18] =============== [PASSED] check_platform_desc ===============
[14:48:18] ===================== [PASSED] xe_pci ======================
[14:48:18] ============= xe_rtp_tables_test (5 subtests) ==============
[14:48:18] ================== xe_rtp_table_gt_test  ===================
[14:48:18] [PASSED] gt_was/14011060649
[14:48:18] [PASSED] gt_was/14011059788
[14:48:18] [PASSED] gt_was/14015795083
[14:48:18] [PASSED] gt_was/16021867713
[14:48:18] [PASSED] gt_was/14019449301
[14:48:18] [PASSED] gt_was/16028005424
[14:48:18] [PASSED] gt_was/14026578760
[14:48:18] [PASSED] gt_was/1409420604
[14:48:18] [PASSED] gt_was/1408615072
[14:48:18] [PASSED] gt_was/22010523718
[14:48:18] [PASSED] gt_was/14011006942
[14:48:18] [PASSED] gt_was/14014830051
[14:48:18] [PASSED] gt_was/18018781329
[14:48:18] [PASSED] gt_was/1509235366
[14:48:18] [PASSED] gt_was/18018781329
[14:48:18] [PASSED] gt_was/16016694945
[14:48:18] [PASSED] gt_was/14018575942
[14:48:18] [PASSED] gt_was/22016670082
[14:48:18] [PASSED] gt_was/22016670082
[14:48:18] [PASSED] gt_was/14017421178
[14:48:18] [PASSED] gt_was/16025250150
[14:48:18] [PASSED] gt_was/14021871409
[14:48:18] [PASSED] gt_was/16021865536
[14:48:18] [PASSED] gt_was/14021486841
[14:48:18] [PASSED] gt_was/14025160223
[14:48:18] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[14:48:18] [PASSED] gt_was/14025635424
[14:48:18] [PASSED] gt_was/16028005424
[14:48:18] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:48:18] ================== xe_rtp_table_gt_test  ===================
[14:48:18] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[14:48:18] [PASSED] gt_tunings/Tuning: 32B Access Enable
[14:48:18] [PASSED] gt_tunings/Tuning: L3 cache
[14:48:18] [PASSED] gt_tunings/Tuning: L3 cache - media
[14:48:18] [PASSED] gt_tunings/Tuning: Compression Overfetch
[14:48:18] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[14:48:18] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[14:48:18] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[14:48:18] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[14:48:18] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[14:48:18] [PASSED] gt_tunings/Tuning: Stateless compression control
[14:48:18] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[14:48:18] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[14:48:18] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[14:48:18] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[14:48:18] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:48:18] ================== xe_rtp_table_oob_test  ==================
[14:48:18] [PASSED] oob_was/1607983814
[14:48:18] [PASSED] oob_was/16010904313
[14:48:18] [PASSED] oob_was/18022495364
[14:48:18] [PASSED] oob_was/22012773006
[14:48:18] [PASSED] oob_was/14014475959
[14:48:18] [PASSED] oob_was/22011391025
[14:48:18] [PASSED] oob_was/22012727170
[14:48:18] [PASSED] oob_was/22012727685
[14:48:18] [PASSED] oob_was/22016596838
[14:48:18] [PASSED] oob_was/18020744125
[14:48:18] [PASSED] oob_was/1409600907
[14:48:18] [PASSED] oob_was/22014953428
[14:48:18] [PASSED] oob_was/16017236439
[14:48:18] [PASSED] oob_was/14019821291
[14:48:18] [PASSED] oob_was/14015076503
[14:48:18] [PASSED] oob_was/14018913170
[14:48:18] [PASSED] oob_was/14018094691
[14:48:18] [PASSED] oob_was/18024947630
[14:48:18] [PASSED] oob_was/16022287689
[14:48:18] [PASSED] oob_was/13011645652
[14:48:18] [PASSED] oob_was/14022293748
[14:48:18] [PASSED] oob_was/22019794406
[14:48:18] [PASSED] oob_was/22019338487
[14:48:18] [PASSED] oob_was/16023588340
[14:48:18] [PASSED] oob_was/14019789679
[14:48:18] [PASSED] oob_was/14022866841
[14:48:18] [PASSED] oob_was/16021333562
[14:48:18] [PASSED] oob_was/14016712196
[14:48:18] [PASSED] oob_was/14015568240
[14:48:18] [PASSED] oob_was/18013179988
[14:48:18] [PASSED] oob_was/1508761755
[14:48:18] [PASSED] oob_was/16023105232
[14:48:18] [PASSED] oob_was/16026508708
[14:48:18] [PASSED] oob_was/14020001231
[14:48:18] [PASSED] oob_was/16023683509
[14:48:18] [PASSED] oob_was/14025515070
[14:48:18] [PASSED] oob_was/15015404425_disable
[14:48:18] [PASSED] oob_was/16026007364
[14:48:18] [PASSED] oob_was/14020316580
[14:48:18] [PASSED] oob_was/14025883347
[14:48:18] [PASSED] oob_was/16029380221
[14:48:18] ============== [PASSED] xe_rtp_table_oob_test ==============
[14:48:18] ================ xe_rtp_table_dev_oob_test  ================
[14:48:18] [PASSED] device_oob_was/22010954014
[14:48:18] [PASSED] device_oob_was/15015404425
[14:48:18] [PASSED] device_oob_was/22019338487_display
[14:48:18] [PASSED] device_oob_was/14022085890
[14:48:18] [PASSED] device_oob_was/14026539277
[14:48:18] [PASSED] device_oob_was/14026633728
[14:48:18] [PASSED] device_oob_was/14026746987
[14:48:18] [PASSED] device_oob_was/14026779378
[14:48:18] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[14:48:18] ========== xe_rtp_table_missing_upper_bound_test  ==========
[14:48:18] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[14:48:18] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[14:48:18] [PASSED] register_whitelist/1806527549
[14:48:18] [PASSED] register_whitelist/allow_read_ctx_timestamp
[14:48:18] [PASSED] register_whitelist/allow_read_queue_timestamp
[14:48:18] [PASSED] register_whitelist/16014440446
[14:48:18] [PASSED] register_whitelist/16017236439
[14:48:18] [PASSED] register_whitelist/16020183090
[14:48:18] [PASSED] register_whitelist/14024997852
[14:48:18] [PASSED] register_whitelist/14024997852
[14:48:18] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[14:48:18] =============== [PASSED] xe_rtp_tables_test ================
[14:48:18] =================== xe_rtp (3 subtests) ====================
[14:48:18] =================== xe_rtp_rules_tests  ====================
[14:48:18] [PASSED] no
[14:48:18] [PASSED] yes
[14:48:18] [PASSED] no-and-no
[14:48:18] [PASSED] no-and-yes
[14:48:18] [PASSED] yes-and-no
[14:48:18] [PASSED] yes-and-yes
[14:48:18] [PASSED] no-or-no
[14:48:18] [PASSED] no-or-yes
[14:48:18] [PASSED] yes-or-no
[14:48:18] [PASSED] yes-or-yes
[14:48:18] [PASSED] no-yes-or-yes-no
[14:48:18] [PASSED] no-yes-or-yes-yes
[14:48:18] [PASSED] yes-yes-or-no-yes
[14:48:18] [PASSED] yes-yes-or-yes-yes
[14:48:18] [PASSED] no-no-or-yes-or-no
[14:48:18] [PASSED] or
[14:48:18] [PASSED] or-yes
[14:48:18] [PASSED] or-no
[14:48:18] [PASSED] yes-or
[14:48:18] [PASSED] no-or
[14:48:18] [PASSED] no-or-or-yes
[14:48:18] [PASSED] yes-or-or-no
[14:48:18] [PASSED] no-or-or-no
[14:48:18] [PASSED] missing-context-engine-class
[14:48:18] [PASSED] missing-context-engine-class-or-yes
[14:48:18] [PASSED] missing-context-engine-class-or-or-yes
[14:48:18] =============== [PASSED] xe_rtp_rules_tests ================
[14:48:18] =============== xe_rtp_process_to_sr_tests  ================
[14:48:18] [PASSED] coalesce-same-reg
[14:48:18] [PASSED] coalesce-same-reg-literal-and-func
[14:48:18] [PASSED] no-match-no-add
[14:48:18] [PASSED] two-regs-two-entries
[14:48:18] [PASSED] clr-one-set-other
[14:48:18] [PASSED] set-field
[14:48:18] [PASSED] conflict-duplicate
[14:48:18] [PASSED] conflict-not-disjoint
[14:48:18] [PASSED] conflict-not-disjoint-literal-and-func
[14:48:18] [PASSED] conflict-reg-type
[14:48:18] [PASSED] bad-mcr-reg-forced-to-regular
[14:48:18] [PASSED] bad-regular-reg-forced-to-mcr
[14:48:18] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:48:18] ================== xe_rtp_process_tests  ===================
[14:48:18] [PASSED] active1
[14:48:18] [PASSED] active2
[14:48:18] [PASSED] active-inactive
[14:48:18] [PASSED] inactive-active
[14:48:18] [PASSED] inactive-active-inactive
[14:48:18] [PASSED] inactive-inactive-inactive
[14:48:18] ============== [PASSED] xe_rtp_process_tests ===============
[14:48:18] ===================== [PASSED] xe_rtp ======================
[14:48:18] ==================== xe_wa (1 subtest) =====================
[14:48:18] ======================== xe_wa_gt  =========================
[14:48:18] [PASSED] TIGERLAKE B0
[14:48:18] [PASSED] DG1 A0
[14:48:18] [PASSED] DG1 B0
[14:48:18] [PASSED] ALDERLAKE_S A0
[14:48:18] [PASSED] ALDERLAKE_S B0
[14:48:18] [PASSED] ALDERLAKE_S C0
[14:48:18] [PASSED] ALDERLAKE_S D0
[14:48:18] [PASSED] ALDERLAKE_P A0
[14:48:18] [PASSED] ALDERLAKE_P B0
[14:48:18] [PASSED] ALDERLAKE_P C0
[14:48:18] [PASSED] ALDERLAKE_S RPLS D0
[14:48:18] [PASSED] ALDERLAKE_P RPLU E0
[14:48:18] [PASSED] DG2 G10 C0
[14:48:18] [PASSED] DG2 G11 B1
[14:48:18] [PASSED] DG2 G12 A1
[14:48:18] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:48:18] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:48:18] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:48:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:48:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:48:18] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:48:18] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:48:18] ==================== [PASSED] xe_wa_gt =====================
[14:48:18] ====================== [PASSED] xe_wa ======================
[14:48:18] ============================================================
[14:48:18] Testing complete. Ran 729 tests: passed: 711, skipped: 18
[14:48:18] Elapsed time: 36.549s total, 4.403s configuring, 31.480s building, 0.647s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (14 preceding siblings ...)
  2026-07-06 14:49 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4) Patchwork
@ 2026-07-06 15:35 ` Patchwork
  2026-07-06 17:31 ` ✓ Xe.CI.FULL: " Patchwork
                   ` (9 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-06 15:35 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

CI Bug Log - changes from xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9_BAT -> xe-pw-168743v4_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (10 -> 13)
------------------------------

  Additional (3): bat-bmg-1 bat-bmg-vm bat-ptl-vm 

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

  Here are the changes found in xe-pw-168743v4_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-bmg-1:          NOTRUN -> [SKIP][1] ([Intel XE#2233])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-bmg-1:          NOTRUN -> [SKIP][2] ([Intel XE#8265])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-1/igt@kms_dsc@dsc-basic.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - bat-bmg-1:          NOTRUN -> [SKIP][3] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@xe_evict@evict-beng-small-cm:
    - bat-ptl-vm:         NOTRUN -> [SKIP][4] ([Intel XE#5764]) +10 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html

  * igt@xe_exec_balancer@no-exec-cm-virtual-basic:
    - bat-ptl-vm:         NOTRUN -> [SKIP][5] ([Intel XE#7482]) +17 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-ptl-vm/igt@xe_exec_balancer@no-exec-cm-virtual-basic.html

  * igt@xe_exec_multi_queue@exec-sanity:
    - bat-bmg-1:          NOTRUN -> [SKIP][6] ([Intel XE#8364]) +13 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-1/igt@xe_exec_multi_queue@exec-sanity.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd:
    - bat-ptl-vm:         NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-ptl-vm/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html

  * igt@xe_exec_multi_queue@many-queues-userptr-invalidate:
    - bat-bmg-vm:         NOTRUN -> [SKIP][8] ([Intel XE#8364]) +13 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-vm/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-bmg-1:          NOTRUN -> [SKIP][9] ([Intel XE#2229])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-ptl-vm:         NOTRUN -> [SKIP][10] ([Intel XE#5775])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@vram:
    - bat-ptl-vm:         NOTRUN -> [SKIP][11] ([Intel XE#5776])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-ptl-vm/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-ptl-vm:         NOTRUN -> [SKIP][12] ([Intel XE#5777] / [Intel XE#7590])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
    - bat-bmg-1:          NOTRUN -> [SKIP][13] ([Intel XE#1420] / [Intel XE#7590])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
    - bat-bmg-vm:         NOTRUN -> [SKIP][14] ([Intel XE#1420] / [Intel XE#7590])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-vm/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-bmg-1:          NOTRUN -> [SKIP][15] ([Intel XE#2245] / [Intel XE#7590])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
    - bat-ptl-vm:         NOTRUN -> [SKIP][16] ([Intel XE#5771] / [Intel XE#7590])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
    - bat-bmg-vm:         NOTRUN -> [SKIP][17] ([Intel XE#2245] / [Intel XE#7590])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-vm/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-ptl-vm:         NOTRUN -> [SKIP][18] ([Intel XE#5780] / [Intel XE#7590])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
    - bat-bmg-1:          NOTRUN -> [SKIP][19] ([Intel XE#2236] / [Intel XE#7590])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
    - bat-bmg-vm:         NOTRUN -> [SKIP][20] ([Intel XE#2236] / [Intel XE#7590])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/bat-bmg-vm/igt@xe_pat@pat-index-xelpg.html

  
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
  [Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
  [Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
  [Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
  [Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
  [Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364


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

  * Linux: xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9 -> xe-pw-168743v4

  IGT_8990: 8990
  xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9: 9179ea89567d036ecc9013cc27af4a367aeb14b9
  xe-pw-168743v4: 168743v4

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (15 preceding siblings ...)
  2026-07-06 15:35 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-06 17:31 ` Patchwork
  2026-07-13 13:54 ` [PATCH v5] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
                   ` (8 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-06 17:31 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

CI Bug Log - changes from xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9_FULL -> xe-pw-168743v4_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

New tests
---------

  New tests have been introduced between xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9_FULL and xe-pw-168743v4_FULL:

### New IGT tests (9) ###

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.21] s

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.13] s

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.13] s

  * igt@kms_flip@flip-vs-rmfb@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.12] s

  * igt@kms_flip@flip-vs-rmfb@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.04] s

  * igt@kms_flip@flip-vs-rmfb@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [4.05] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@a-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [1.00] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@b-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.85] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@c-dp2:
    - Statuses : 1 pass(s)
    - Exec time: [0.85] s

  

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

  Here are the changes found in xe-pw-168743v4_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-lnl:          [PASS][1] -> [FAIL][2] ([Intel XE#3718] / [Intel XE#7265]) +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-lnl-8/igt@kms_async_flips@alternate-sync-async-flip.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-lnl-7/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#1124])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#367])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][5] ([Intel XE#7084] / [Intel XE#8150])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html

  * igt@kms_chamelium_audio@dp-audio-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2252]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_chamelium_audio@dp-audio-after-suspend.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2325] / [Intel XE#7358])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2390] / [Intel XE#6974])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2320]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2286] / [Intel XE#6035])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
    - shard-bmg:          [PASS][11] -> [FAIL][12] ([Intel XE#3149] / [Intel XE#3321]) +1 other test fail
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [PASS][13] -> [FAIL][14] ([Intel XE#3098] / [Intel XE#3149]) +1 other test fail
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [PASS][15] -> [FAIL][16] ([Intel XE#301])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#4141]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#7061] / [Intel XE#7356])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2311]) +8 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2313]) +12 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#7061])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-mmap-wc.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#7283])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [PASS][23] -> [FAIL][24] ([Intel XE#2029] / [Intel XE#7395])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr@fbc-psr2-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_psr@fbc-psr2-suspend.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#3904] / [Intel XE#7342])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@xe_eudebug@basic-vm-bind-extended-discovery:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#7636]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@xe_eudebug@basic-vm-bind-extended-discovery.html

  * igt@xe_exec_basic@multigpu-once-null:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2322] / [Intel XE#7372])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@xe_exec_basic@multigpu-once-null.html

  * igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#8374]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault.html

  * igt@xe_exec_multi_queue@two-queues-basic-smem:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#8364]) +4 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-basic-smem.html

  * igt@xe_exec_system_allocator@twice-large-free-race:
    - shard-lnl:          [PASS][31] -> [ABORT][32] ([Intel XE#8007])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-lnl-3/igt@xe_exec_system_allocator@twice-large-free-race.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-lnl-8/igt@xe_exec_system_allocator@twice-large-free-race.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#8378])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-bmg:          [PASS][34] -> [ABORT][35] ([Intel XE#8007]) +1 other test abort
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@xe_mmap@small-bar.html

  * igt@xe_multigpu_svm@mgpu-latency-copy-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#6964])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html

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

  
#### Possible fixes ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [FAIL][39] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
    - shard-bmg:          [FAIL][41] ([Intel XE#6078]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2:
    - shard-bmg:          [INCOMPLETE][43] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][45] ([Intel XE#7571]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@xe_configfs@gt-types-allowed:
    - shard-bmg:          [ABORT][47] ([Intel XE#8007]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-8/igt@xe_configfs@gt-types-allowed.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-10/igt@xe_configfs@gt-types-allowed.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-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][51] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][52] ([Intel XE#2426] / [Intel XE#5848])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v4/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [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#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [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#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
  [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9 -> xe-pw-168743v4

  IGT_8990: 8990
  xe-5345-9179ea89567d036ecc9013cc27af4a367aeb14b9: 9179ea89567d036ecc9013cc27af4a367aeb14b9
  xe-pw-168743v4: 168743v4

== Logs ==

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

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

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

* Re: [PATCH v4] drm/xe: Add debugfs knob to control GPGPU preemption granularity
  2026-07-06 14:12 ` [PATCH v4] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
@ 2026-07-08 21:08   ` Matt Roper
  0 siblings, 0 replies; 29+ messages in thread
From: Matt Roper @ 2026-07-08 21:08 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe, gustavo.sousa, stuart.summers

On Mon, Jul 06, 2026 at 07:42:43PM +0530, Varun Gupta wrote:
> Add a per-GT debugfs entry 'preemption_level' that controls the GPGPU/
> Media preemption granularity for newly created RCS/CCS LRCs on Xe2+.
> 
> The knob accepts: "default", "mid-thread", "thread-group", "command",
> corresponding to CS_CHICKEN1[2:1].
> 
> Per-context control requires FF_SLICE_CS_CHICKEN1[14] (Per Context
> Preemption Granularity Control) to be active; without it CS_CHICKEN1[2:1]
> is ignored by hardware. Two new RTP entries are added for Xe2+ RCS and

Rather than saying it's ignored by the hardware, I'd say that the
hardware uses a single system-wide preemption control setting from
FF_SLICE_CS_CHICKEN2 instead of per-context settings in each LRC's copy
of CS_CHICKEN1.

> CCS engines to arm this gate bit.
> 
> CS_CHICKEN1 is part of the hardware context image and is saved/restored
> automatically on every context switch (Bspec: Render Engine Context Image
> Layout, DW offset 0x00E2). The preemption level is therefore written
> directly into the cloned context image via xe_lrc_write_ctx_reg() in
> xe_lrc_ctx_init() for each new LRC.
> 
> Because Xe2 CCS engines historically shared the xe2_xcs_offsets layout
> with non-compute engines, a dedicated xe2_ccs_offsets layout is introduced
> to safely map CS_CHICKEN1 exclusively for Compute contexts.
> 
> The debugfs entry is registered only on Xe2+ GTs with RCS/CCS engines
> and only for the Physical Function (!IS_SRIOV_VF). If hardware fuses
> indicate Mid-Thread Preemption is disabled in silicon, attempts to
> select "mid-thread" are rejected with -EPERM under a forcewake lock.
> Selecting any non-default value taints the kernel (TAINT_USER) as it
> deviates from the platform default.

Overall I feel like this commit message is doing a bit too much "what"
explanation and not enough "why."  We can always add debugfs interfaces
to change all kinds of internal things, but what we should explain in
the commit message is *why* this one is important to control, and why
it's important to control in a per-context manner (rather than just
using the system-wide enable/disable controls).

I think there are some things in the "what" explanation above that
aren't fully correct, but I'll leave the comments on those in the code
below.

> 
> v4
>   - Fix incorrect NOP padding in the RCS context layout. (Sashiko)
> 
> v3:
>   - Wrapped XEHP_FUSE4 forcewake read with xe_pm_runtime_get/put to
>     prevent PCIe aborts/timeouts when the GPU is in D3hot/D3cold. (sashiko)
>   - Fixed NOP macro truncation by splitting padding offsets larger than
>     0x7f into multiple NOPs, ensuring correct context layout. (sashiko)
>   - Converted CTX_CS_CHICKEN1 initialization to a read-modify-write
>     sequence to avoid overwriting golden context mask bits. (sashiko)
>   - Removed the FF_SLICE_CS_CHICKEN1 workaround for CCS engines, as
>     compute engines lack this 3D fixed-function register, which was
>     causing GuC "illegal register" panics on initialization.
> 
> v2:
>   - Dropped the WA BB/MI_LRI path; per Bspec, CS_CHICKEN1 is context
>     save/restore state at DW 0x00E2, so we map CTX_CS_CHICKEN1 and program
>     it directly in LRC init via xe_lrc_write_ctx_reg(). (Matt)
>   - Split Xe2 CCS context offsets into a dedicated xe2_ccs_offsets array
>     to map CS_CHICKEN1 without polluting other XCS engines.
>   - Converted the debugfs interface from a binary boolean to a
>     multi-option string knob ("default", "mid-thread", "thread-group",
>     "command"). (Gustavo)
>   - Restricted file creation to the Physical Function
>     (!IS_SRIOV_VF). (Gustavo)
>   - Added kernel tainting (TAINT_USER) when deviating from
>     defaults. (Gustavo)
>   - Added power-safe hardware fuse check (FUSE4 register 0x9114[20],
>     CFEG_WMTP_DISABLE) before allowing MTP selection. (Matt)
> 
> Signed-off-by: Varun Gupta <varun.gupta@intel.com>
> ---
>  drivers/gpu/drm/xe/regs/xe_lrc_layout.h |  2 +
>  drivers/gpu/drm/xe/xe_gt_debugfs.c      | 85 +++++++++++++++++++++++++
>  drivers/gpu/drm/xe/xe_gt_types.h        | 31 +++++++++
>  drivers/gpu/drm/xe/xe_lrc.c             | 52 +++++++++++++++
>  drivers/gpu/drm/xe/xe_wa.c              |  6 ++
>  5 files changed, 176 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
> index 4ab86fc369fd..2236debf5534 100644
> --- a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
> +++ b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
> @@ -37,6 +37,8 @@
>  #define CTX_QUEUE_TIMESTAMP		(0xd0 + 1)
>  #define CTX_QUEUE_TIMESTAMP_UDW		(0xd2 + 1)
>  
> +#define CTX_CS_CHICKEN1         (0xe2 + 1)

Are you sure this is the right offset?  Looking at bspec 65182, I count
CS_CHICKEN1 as being 94 dwords (0x5e in hex) beyond CTX_QUEUE_TIMESTAMP.
So 0xd0 + 0x5e = 0x12e.

Looking on a BMG machine, default_lrc_rcs in debugfs confirms that this
seems to be correct:

        LRC[0x12e]  =  - 0x2580 = 0xffff0001

The 0xe2 value you have here appears to correspond to the location of
one of register TR_NULL_GFX in the LRC:

        LRC[ 0xe2]  =  - 0x4410 = 0x00000000

> +
>  #define INDIRECT_CTX_RING_HEAD		(0x02 + 1)
>  #define INDIRECT_CTX_RING_TAIL		(0x04 + 1)
>  #define INDIRECT_CTX_RING_START		(0x06 + 1)
> diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> index c38bcacb27e4..b41fafe22a76 100644
> --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> @@ -6,10 +6,13 @@
>  #include "xe_gt_debugfs.h"
>  
>  #include <linux/debugfs.h>
> +#include <linux/panic.h>
> +#include <linux/string.h>
>  
>  #include <drm/drm_debugfs.h>
>  #include <drm/drm_managed.h>
>  
> +#include "regs/xe_gt_regs.h"
>  #include "xe_device.h"
>  #include "xe_force_wake.h"
>  #include "xe_gt.h"
> @@ -23,6 +26,7 @@
>  #include "xe_hw_engine.h"
>  #include "xe_lrc.h"
>  #include "xe_mocs.h"
> +#include "xe_mmio.h"
>  #include "xe_pat.h"
>  #include "xe_pm.h"
>  #include "xe_reg_sr.h"
> @@ -336,6 +340,84 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
>  }
>  DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
>  
> +static const char * const preemption_level_names[] = {
> +	[XE_GPGPU_PREEMPT_DEFAULT]      = "default",
> +	[XE_GPGPU_PREEMPT_MID_THREAD]   = "mid-thread",
> +	[XE_GPGPU_PREEMPT_THREAD_GROUP] = "thread-group",
> +	[XE_GPGPU_PREEMPT_COMMAND]      = "command",
> +};
> +
> +static int preemption_level_show(struct seq_file *m, void *unused)
> +{
> +	struct xe_gt *gt = m->private;
> +
> +	seq_printf(m, "%s\n", preemption_level_names[READ_ONCE(gt->gpgpu_preempt_level)]);

Why do we need the READ_ONCE here (and the other READ_ONCE/WRITE_ONCE
uses below)?  It doesn't seem like the compiler optimization /
concurrency cases where these would usually be needed are relevant here.

> +
> +	return 0;
> +}
> +
> +static ssize_t preemption_level_write(struct file *file,
> +				      const char __user *ubuf,
> +				      size_t len, loff_t *offp)
> +{
> +	struct seq_file *m = file->private_data;
> +	struct xe_gt *gt = m->private;
> +	struct xe_device *xe = gt_to_xe(gt);
> +	enum xe_gpgpu_preempt_level new_level;
> +	char buf[16];
> +	int idx;
> +
> +	if (*offp)
> +		return -EINVAL;
> +	if (len >= sizeof(buf))
> +		return -EINVAL;
> +	if (copy_from_user(buf, ubuf, len))
> +		return -EFAULT;
> +	buf[len] = '\0';

I think we can probably use simple_write_to_buffer() for this?

> +
> +	idx = sysfs_match_string(preemption_level_names, buf);
> +	if (idx < 0)
> +		return idx;
> +
> +	new_level = (enum xe_gpgpu_preempt_level)idx;
> +
> +	if (new_level == XE_GPGPU_PREEMPT_MID_THREAD) {
> +		unsigned int fw_ref;
> +		u32 fuse4;
> +
> +		xe_pm_runtime_get(xe);
> +		fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
> +		if (!fw_ref) {
> +			xe_force_wake_put(gt_to_fw(gt), fw_ref);
> +			xe_pm_runtime_put(xe);
> +			return -ETIMEDOUT;
> +		}
> +
> +		fuse4 = xe_mmio_read32(&gt->mmio, XEHP_FUSE4);
> +		xe_force_wake_put(gt_to_fw(gt), fw_ref);
> +		xe_pm_runtime_put(xe);

When possible, we prefer to use scope-based runtime PM and forcewake
these days.  So

        guard(xe_pm_runtime)(xe);
        CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
        if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FW_GT))
                return -ETIMEDOUT;

        fuse4 = xe_mmio_read32(&gt->mmio, XEHP_FUSE4);

and the references will be dropped automatically when the code exits the
current scope.

Although it might be best if we avoid reading the register here at all.
FUSE4 currently gets used a couple times during GT init (CCS engine
fusing and WMTP fusing) and this is a third place it gets used.  It
would be better if we just read the register value a single time during
driver init, stashed the value in gt->info, and then used that stashed
value in each of the three places.  Then we wouldn't need to worry about
powering up the hardware to access a register here at all.

> +
> +		if (fuse4 & CFEG_WMTP_DISABLE) {
> +			drm_warn(&xe->drm,
> +				 "GT%u: MTP fused off in hardware, cannot select mid-thread\n",
> +				 gt->info.id);
> +			return -EPERM;
> +		}
> +	}
> +
> +	if (new_level != XE_GPGPU_PREEMPT_DEFAULT) {
> +		add_taint(TAINT_USER, LOCKDEP_STILL_OK);
> +		drm_notice(&xe->drm,
> +			   "GT%u: GPGPU preemption overridden to '%s' (applies to new LRCs only)\n",
> +			   gt->info.id, preemption_level_names[new_level]);
> +	}
> +
> +	WRITE_ONCE(gt->gpgpu_preempt_level, new_level);
> +
> +	return len;
> +}
> +DEFINE_SHOW_STORE_ATTRIBUTE(preemption_level);
> +
>  void xe_gt_debugfs_register(struct xe_gt *gt)
>  {
>  	struct xe_device *xe = gt_to_xe(gt);
> @@ -368,6 +450,9 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
>  	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
>  	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
>  	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
> +	if (GRAPHICS_VER(xe) >= 20 && !IS_SRIOV_VF(xe) &&

Why do we skip SR-IOV VF here?  Since this is part of the LRC, I think
it should be relevant in that case as well, right?

> +	    (gt->info.engine_mask & (XE_HW_ENGINE_RCS_MASK | XE_HW_ENGINE_CCS_MASK)))

I don't know if this actually works for CCS engines or not; historically
we've only used it to control the RCS engine's GPGPU pipeline.  Although
the bspec lists "RenderCS, ComputeCS" for this register field, the
actual description is RCS-centric.  CS_CHICKEN1 is also only part of the
LRC on the RCS engine, not the CCS engines.  Choosing between
per-context control of preemption of system-wide control of preemption
in FF_SLICE_CS_CHICKEN1 is something that's only supported for the RCS
engine, so that leaves it ambiguous whether the CCS engines pick up
their preemption settings from CS_CHICKEN1 (which doesn't get
saved/restored on those engines) or from FF_SLICE_CS_CHICKEN2 (which
again has an RCS-centric description in the bspec).

If there's no per-context control of preemption for the CCS engines,
then we don't really need a debugfs to control this at all.  People
debugging preemption behavior can just use tools like intel_reg to 
write the global (not per-context) registers directly and we don't need
any special interface to account for the values changing on context
switch.  So we should probably keep this restricted to just the RCS
engine.

> +		debugfs_create_file("preemption_level", 0600, root, gt, &preemption_level_fops);

We might want to call this "gpgpu_preemption_level" since this only
applies to the gpgpu pipeline.  Historically the render pipeline's
preemption granularity (object-level vs command-level) has been
controlled independently from the gpgpu preemption granularity, and
most people are more familiar with the render setting since we've had to
adjust it for various workarounds many times in the past.

>  
>  	drm_debugfs_create_files(vf_safe_debugfs_list,
>  				 ARRAY_SIZE(vf_safe_debugfs_list),
> diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
> index e5588c88800a..b4c677f1047b 100644
> --- a/drivers/gpu/drm/xe/xe_gt_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_types.h
> @@ -35,6 +35,33 @@ enum xe_gt_eu_type {
>  	XE_GT_EU_TYPE_SIMD16,
>  };
>  
> +/**
> + * enum xe_gpgpu_preempt_level - Per-context GPGPU preemption override mode
> + *
> + * Selects the preemption granularity programmed into CS_CHICKEN1[2:1] for
> + * newly created Xe2+ RCS/CCS LRCs.
> + *
> + * The per-context override is effective only when
> + * FF_SLICE_CS_CHICKEN1[FFSC_PERCTX_PREEMPT_CTRL] is enabled via RTP.
> + *
> + * This setting is GT-scoped and affects only LRCs created after the value is
> + * changed; existing contexts keep their previously programmed value.
> + *
> + * @XE_GPGPU_PREEMPT_DEFAULT: Keep platform default preemption granularity.
> + * @XE_GPGPU_PREEMPT_MID_THREAD: Force mid-thread preemption level.
> + * @XE_GPGPU_PREEMPT_THREAD_GROUP: Force thread-group preemption level.
> + * @XE_GPGPU_PREEMPT_COMMAND: Force command-level preemption.
> + *
> + * Zero-initialized via kzalloc, so XE_GPGPU_PREEMPT_DEFAULT is the safe
> + * default (no override from platform policy).
> + */
> +enum xe_gpgpu_preempt_level {
> +	XE_GPGPU_PREEMPT_DEFAULT = 0,
> +	XE_GPGPU_PREEMPT_MID_THREAD,
> +	XE_GPGPU_PREEMPT_THREAD_GROUP,
> +	XE_GPGPU_PREEMPT_COMMAND,
> +};
> +
>  #define XE_MAX_DSS_FUSE_REGS		4
>  #define XE_MAX_DSS_FUSE_BITS		(32 * XE_MAX_DSS_FUSE_REGS)
>  #define XE_MAX_EU_FUSE_REGS		1
> @@ -219,6 +246,10 @@ struct xe_gt {
>  	 */
>  	u32 ccs_mode;
>  
> +	/**
> +	 * @gpgpu_preempt_level: per-GT GPGPU preemption granularity override.
> +	 */
> +	enum xe_gpgpu_preempt_level gpgpu_preempt_level;
>  	/** @usm: unified shared memory state */

Nitpick: missing a blank line between these two.

>  	struct {
>  		/**
> diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
> index 3e7c995085d0..903bbda27384 100644
> --- a/drivers/gpu/drm/xe/xe_lrc.c
> +++ b/drivers/gpu/drm/xe/xe_lrc.c
> @@ -567,6 +567,20 @@ static const u8 xe2_rcs_offsets[] = {
>  	LRI(1, 0),              /* [0x47] */
>  	REG(0x0c8),             /* [0x48] R_PWR_CLK_STATE */
>  
> +	NOP(0x7f), NOP(0x1e),              /* Pad from DW 0x44 to 0xe0 */
> +	LRI(1, POSTED),         /* [0xe1] */
> +	REG16(0x580),           /* [0xe2] CS_CHICKEN1 (value at [0xe3]) */
> +
> +	0
> +};

We shouldn't need to update these *_offsets[] tables.  The sole purpose
of these is to populate a handful of the LRIs at the very beginning of
the LRC so that the very first context switch we do to record the
default context loads something that the hardware recognizes as having
the layout of an LRC.  After that very first "restore inhibit" context
switch, all subsequent context switches will cause the bspec to write
the LRC out to memory in the layout documented in the bspec on pages
like 65182, 55793, 60184, etc.  Registers like CS_CHICKEN1 are late
enough in the LRC that we don't need to mimic the hardware's LRC layout
for the very first context switch, and any changes here have no impact
on the things that happen later in the driver.

Also, as noted above, I don't think this is the right offset.

> +
> +static const u8 xe2_ccs_offsets[] = {
> +	XE2_CTX_COMMON,
> +
> +	NOP(0x7f), NOP(0x2e),              /* Pad from DW 0x34 to 0xe0 */
> +	LRI(1, POSTED),         /* [0xe1] */
> +	REG16(0x580),           /* [0xe2] CS_CHICKEN1 (value at [0xe3]) */
> +
>  	0
>  };

Same comment as above, plus CS_CHICKEN1 doesn't appear to be part of the
LRC at all for CCS engines.


Matt
>  
> @@ -636,6 +650,13 @@ static const u8 *reg_offsets(struct xe_device *xe, enum xe_engine_class class)
>  			return xe2_bcs_offsets;
>  		else
>  			return gen12_xcs_offsets;
> +	} else if (class == XE_ENGINE_CLASS_COMPUTE) {
> +		if (GRAPHICS_VER(xe) >= 20)
> +			return xe2_ccs_offsets;
> +		else if (GRAPHICS_VERx100(xe) >= 1255)
> +			return dg2_xcs_offsets;
> +		else
> +			return gen12_xcs_offsets;
>  	} else {
>  		if (GRAPHICS_VER(xe) >= 20)
>  			return xe2_xcs_offsets;
> @@ -1589,6 +1610,37 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
>  	if (xe->info.has_asid && vm)
>  		xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
>  
> +	if (GRAPHICS_VER(xe) >= 20 &&
> +	    (hwe->class == XE_ENGINE_CLASS_RENDER ||
> +	     hwe->class == XE_ENGINE_CLASS_COMPUTE)) {
> +		enum xe_gpgpu_preempt_level level = READ_ONCE(gt->gpgpu_preempt_level);
> +
> +		if (level != XE_GPGPU_PREEMPT_DEFAULT) {
> +			u32 level_bits;
> +			u32 val;
> +
> +			switch (level) {
> +			case XE_GPGPU_PREEMPT_MID_THREAD:
> +				level_bits = PREEMPT_GPGPU_MID_THREAD_LEVEL;
> +				break;
> +			case XE_GPGPU_PREEMPT_THREAD_GROUP:
> +				level_bits = PREEMPT_GPGPU_THREAD_GROUP_LEVEL;
> +				break;
> +			case XE_GPGPU_PREEMPT_COMMAND:
> +				level_bits = PREEMPT_GPGPU_COMMAND_LEVEL;
> +				break;
> +			default:
> +				level_bits = 0;
> +				break;
> +			}
> +
> +			val = xe_lrc_read_ctx_reg(lrc, CTX_CS_CHICKEN1);
> +			val &= ~PREEMPT_GPGPU_LEVEL_MASK;
> +			val |= REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, level_bits);
> +			xe_lrc_write_ctx_reg(lrc, CTX_CS_CHICKEN1, val);
> +		}
> +	}
> +
>  	lrc->desc = LRC_VALID;
>  	lrc->desc |= FIELD_PREP(LRC_ADDRESSING_MODE, LRC_LEGACY_64B_CONTEXT);
>  	/* TODO: Priority */
> diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
> index 139434946f8f..70072963aba0 100644
> --- a/drivers/gpu/drm/xe/xe_wa.c
> +++ b/drivers/gpu/drm/xe/xe_wa.c
> @@ -347,6 +347,12 @@ static const struct xe_rtp_table_sr engine_was = XE_RTP_TABLE_SR(
>  	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
>  			     FFSC_PERCTX_PREEMPT_CTRL))
>  	},
> +	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2"),
> +	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
> +		       ENGINE_CLASS(RENDER)),
> +	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
> +			     FFSC_PERCTX_PREEMPT_CTRL))
> +	},
>  	{ XE_RTP_NAME("18032247524"),
>  	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2004),
>  		       FUNC(xe_rtp_match_first_render_or_compute)),
> -- 
> 2.43.0
> 

-- 
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation

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

* [PATCH v5] drm/xe: Add debugfs knob to control GPGPU preemption granularity
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (16 preceding siblings ...)
  2026-07-06 17:31 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-07-13 13:54 ` Varun Gupta
  2026-07-13 14:13 ` [PATCH v6] " Varun Gupta
                   ` (7 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Varun Gupta @ 2026-07-13 13:54 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, gustavo.sousa, stuart.summers

Introduce a per-GT debugfs knob, 'gpgpu_preemption_level', to allow
overriding the GPGPU preemption level on a per-context basis for newly
created LRCs.
Add an RTP rule to enable per-context control via FF_SLICE_CS_CHICKEN1,
allowing the preemption level to be programmed directly into the LRC
image at CTX_CS_CHICKEN1 during context initialization.

v5:
  - Use correct offset for CTX_CS_CHICKEN1. (Matt)
  - Restrict to the RCS engine. (Matt)
  - Drop LRC layout table modifications; dummy layouts do not need late
    context registers. (Matt)
  - Stash WMTP fuse state at boot to remove pm/forcewake from debugfs.
    (Matt)
  - Rename debugfs knob to 'gpgpu_preemption_level'. (Matt)
  - Use simple_write_to_buffer() and remove unnecessary READ_ONCE/
    WRITE_ONCE macros. (Matt)
  - Do not restrict debugfs visibility for SR-IOV VFs. (Matt)

v4
  - Fix incorrect NOP padding in the RCS context layout. (Sashiko)

v3:
  - Wrapped XEHP_FUSE4 forcewake read with xe_pm_runtime_get/put to
    prevent PCIe aborts/timeouts when the GPU is in D3hot/D3cold. (sashiko)
  - Fixed NOP macro truncation by splitting padding offsets larger than
    0x7f into multiple NOPs, ensuring correct context layout. (sashiko)
  - Converted CTX_CS_CHICKEN1 initialization to a read-modify-write
    sequence to avoid overwriting golden context mask bits. (sashiko)
  - Removed the FF_SLICE_CS_CHICKEN1 workaround for CCS engines, as
    compute engines lack this 3D fixed-function register, which was
    causing GuC "illegal register" panics on initialization.

v2:
  - Dropped the WA BB/MI_LRI path; per Bspec, CS_CHICKEN1 is context
    save/restore state at DW 0x00E2, so we map CTX_CS_CHICKEN1 and program
    it directly in LRC init via xe_lrc_write_ctx_reg(). (Matt)
  - Split Xe2 CCS context offsets into a dedicated xe2_ccs_offsets array
    to map CS_CHICKEN1 without polluting other XCS engines.
  - Converted the debugfs interface from a binary boolean to a
    multi-option string knob ("default", "mid-thread", "thread-group",
    "command"). (Gustavo)
  - Restricted file creation to the Physical Function
    (!IS_SRIOV_VF). (Gustavo)
  - Added kernel tainting (TAINT_USER) when deviating from
    defaults. (Gustavo)
  - Added power-safe hardware fuse check (FUSE4 register 0x9114[20],
    CFEG_WMTP_DISABLE) before allowing MTP selection. (Matt)

Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
 drivers/gpu/drm/xe/regs/xe_lrc_layout.h |  2 +
 drivers/gpu/drm/xe/xe_gt.c              |  2 +
 drivers/gpu/drm/xe/xe_gt_debugfs.c      | 64 +++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_gt_types.h        | 34 +++++++++++++
 drivers/gpu/drm/xe/xe_lrc.c             | 29 +++++++++++
 drivers/gpu/drm/xe/xe_wa.c              |  6 +++
 6 files changed, 137 insertions(+)

diff --git a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
index 4ab86fc369fd..6f7abc0181b5 100644
--- a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
+++ b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
@@ -37,6 +37,8 @@
 #define CTX_QUEUE_TIMESTAMP		(0xd0 + 1)
 #define CTX_QUEUE_TIMESTAMP_UDW		(0xd2 + 1)
 
+#define CTX_CS_CHICKEN1			(0x12e + 1)
+
 #define INDIRECT_CTX_RING_HEAD		(0x02 + 1)
 #define INDIRECT_CTX_RING_TAIL		(0x04 + 1)
 #define INDIRECT_CTX_RING_START		(0x06 + 1)
diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index 783eb6d631b5..7b502fb7cfce 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -607,6 +607,8 @@ static int gt_init_with_gt_forcewake(struct xe_gt *gt)
 	 * on pre-MTL platforms, reading it there will (correctly) return 0.
 	 */
 	gt->info.gmdid = xe_mmio_read32(&gt->mmio, GMD_ID);
+	gt->info.has_wmtp_disabled = !!(xe_mmio_read32(&gt->mmio, XEHP_FUSE4) &
+		CFEG_WMTP_DISABLE);
 
 	/*
 	 * Wa_14026539277 can't be implemented as a regular GT workaround (i.e.
diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index c38bcacb27e4..f5cfdbf6a62e 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -6,6 +6,8 @@
 #include "xe_gt_debugfs.h"
 
 #include <linux/debugfs.h>
+#include <linux/panic.h>
+#include <linux/string.h>
 
 #include <drm/drm_debugfs.h>
 #include <drm/drm_managed.h>
@@ -336,6 +338,65 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
 }
 DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
 
+static const char * const gpgpu_preemption_level_names[] = {
+	[XE_GPGPU_PREEMPT_DEFAULT]      = "default",
+	[XE_GPGPU_PREEMPT_MID_THREAD]   = "mid-thread",
+	[XE_GPGPU_PREEMPT_THREAD_GROUP] = "thread-group",
+	[XE_GPGPU_PREEMPT_COMMAND]      = "command",
+};
+
+static int gpgpu_preemption_level_show(struct seq_file *m, void *unused)
+{
+	struct xe_gt *gt = m->private;
+
+	seq_printf(m, "%s\n", gpgpu_preemption_level_names[gt->gpgpu_preemption_level]);
+
+	return 0;
+}
+
+static ssize_t gpgpu_preemption_level_write(struct file *file,
+					    const char __user *ubuf,
+					    size_t len, loff_t *offp)
+{
+	struct seq_file *m = file->private_data;
+	struct xe_gt *gt = m->private;
+	enum xe_gpgpu_preempt_level new_level;
+	char buf[16];
+	ssize_t copied;
+	int idx;
+
+	if (*offp)
+		return -EINVAL;
+
+	copied = simple_write_to_buffer(buf, sizeof(buf) - 1, offp, ubuf, len);
+	if (copied < 0)
+		return copied;
+
+	buf[copied] = '\0';
+	idx = sysfs_match_string(gpgpu_preemption_level_names, strim(buf));
+	if (idx < 0)
+		return idx;
+
+	new_level = (enum xe_gpgpu_preempt_level)idx;
+
+	if (new_level == XE_GPGPU_PREEMPT_MID_THREAD && gt->info.has_wmtp_disabled) {
+		xe_gt_warn(gt, "MTP fused off in hardware, cannot select mid-thread\n");
+		return -EPERM;
+	}
+
+	if (new_level != XE_GPGPU_PREEMPT_DEFAULT) {
+		add_taint(TAINT_USER, LOCKDEP_STILL_OK);
+		xe_gt_notice(gt,
+			     "GPGPU preemption overridden to '%s' (applies to new LRCs only)\n",
+			     gpgpu_preemption_level_names[new_level]);
+	}
+
+	gt->gpgpu_preemption_level = new_level;
+
+	return copied;
+}
+DEFINE_SHOW_STORE_ATTRIBUTE(gpgpu_preemption_level);
+
 void xe_gt_debugfs_register(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
@@ -368,6 +429,9 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
 	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
 	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
 	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
+	if (GRAPHICS_VER(xe) >= 20 && (gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK))
+		debugfs_create_file("gpgpu_preemption_level", 0600, root,
+				    gt, &gpgpu_preemption_level_fops);
 
 	drm_debugfs_create_files(vf_safe_debugfs_list,
 				 ARRAY_SIZE(vf_safe_debugfs_list),
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index e5588c88800a..97bd943309b3 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -35,6 +35,33 @@ enum xe_gt_eu_type {
 	XE_GT_EU_TYPE_SIMD16,
 };
 
+/**
+ * enum xe_gpgpu_preempt_level - Per-context GPGPU preemption override mode
+ *
+ * Selects the preemption granularity programmed into CS_CHICKEN1[2:1] for
+ * newly created Xe2+ RCS LRCs.
+ *
+ * The per-context override is effective only when
+ * FF_SLICE_CS_CHICKEN1[FFSC_PERCTX_PREEMPT_CTRL] is enabled via RTP.
+ *
+ * This setting is GT-scoped and affects only LRCs created after the value is
+ * changed; existing contexts keep their previously programmed value.
+ *
+ * @XE_GPGPU_PREEMPT_DEFAULT: Keep platform default preemption granularity.
+ * @XE_GPGPU_PREEMPT_MID_THREAD: Force mid-thread preemption level.
+ * @XE_GPGPU_PREEMPT_THREAD_GROUP: Force thread-group preemption level.
+ * @XE_GPGPU_PREEMPT_COMMAND: Force command-level preemption.
+ *
+ * Zero-initialized via kzalloc, so XE_GPGPU_PREEMPT_DEFAULT is the safe
+ * default (no override from platform policy).
+ */
+enum xe_gpgpu_preempt_level {
+	XE_GPGPU_PREEMPT_DEFAULT = 0,
+	XE_GPGPU_PREEMPT_MID_THREAD,
+	XE_GPGPU_PREEMPT_THREAD_GROUP,
+	XE_GPGPU_PREEMPT_COMMAND,
+};
+
 #define XE_MAX_DSS_FUSE_REGS		4
 #define XE_MAX_DSS_FUSE_BITS		(32 * XE_MAX_DSS_FUSE_REGS)
 #define XE_MAX_EU_FUSE_REGS		1
@@ -151,6 +178,8 @@ struct xe_gt {
 		 * feature.
 		 */
 		u8 has_xe2_blt_instructions:1;
+		/** @info.has_wmtp_disabled: hardware fuse indicates WMTP is disabled */
+		u8 has_wmtp_disabled:1;
 		/**
 		 * @info.num_geometry_xecore_fuse_regs: Number of 32b-bit fuse
 		 * registers the geometry XeCore mask spans.
@@ -219,6 +248,11 @@ struct xe_gt {
 	 */
 	u32 ccs_mode;
 
+	/**
+	 * @gpgpu_preemption_level: per-GT GPGPU preemption granularity override.
+	 */
+	enum xe_gpgpu_preempt_level gpgpu_preemption_level;
+
 	/** @usm: unified shared memory state */
 	struct {
 		/**
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3e7c995085d0..1733bbe65288 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1589,6 +1589,35 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
 	if (xe->info.has_asid && vm)
 		xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
 
+	if (GRAPHICS_VER(xe) >= 20 && hwe->class == XE_ENGINE_CLASS_RENDER) {
+		enum xe_gpgpu_preempt_level level = gt->gpgpu_preemption_level;
+
+		if (level != XE_GPGPU_PREEMPT_DEFAULT) {
+			u32 level_bits;
+			u32 val;
+
+			switch (level) {
+			case XE_GPGPU_PREEMPT_MID_THREAD:
+				level_bits = PREEMPT_GPGPU_MID_THREAD_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_THREAD_GROUP:
+				level_bits = PREEMPT_GPGPU_THREAD_GROUP_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_COMMAND:
+				level_bits = PREEMPT_GPGPU_COMMAND_LEVEL;
+				break;
+			default:
+				level_bits = 0;
+				break;
+			}
+
+			val = xe_lrc_read_ctx_reg(lrc, CTX_CS_CHICKEN1);
+			val &= ~PREEMPT_GPGPU_LEVEL_MASK;
+			val |= REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, level_bits);
+			xe_lrc_write_ctx_reg(lrc, CTX_CS_CHICKEN1, val);
+		}
+	}
+
 	lrc->desc = LRC_VALID;
 	lrc->desc |= FIELD_PREP(LRC_ADDRESSING_MODE, LRC_LEGACY_64B_CONTEXT);
 	/* TODO: Priority */
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 139434946f8f..70072963aba0 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -347,6 +347,12 @@ static const struct xe_rtp_table_sr engine_was = XE_RTP_TABLE_SR(
 	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
 			     FFSC_PERCTX_PREEMPT_CTRL))
 	},
+	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2"),
+	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
+		       ENGINE_CLASS(RENDER)),
+	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
+			     FFSC_PERCTX_PREEMPT_CTRL))
+	},
 	{ XE_RTP_NAME("18032247524"),
 	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2004),
 		       FUNC(xe_rtp_match_first_render_or_compute)),
-- 
2.43.0


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

* [PATCH v6] drm/xe: Add debugfs knob to control GPGPU preemption granularity
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (17 preceding siblings ...)
  2026-07-13 13:54 ` [PATCH v5] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
@ 2026-07-13 14:13 ` Varun Gupta
  2026-07-13 14:29 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6) Patchwork
                   ` (6 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Varun Gupta @ 2026-07-13 14:13 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, gustavo.sousa, stuart.summers

Introduce a per-GT debugfs knob, 'gpgpu_preemption_level', to allow
overriding the GPGPU preemption level on a per-context basis for newly
created LRCs.
Add an RTP rule to enable per-context control via FF_SLICE_CS_CHICKEN1,
allowing the preemption level to be programmed directly into the LRC
image at CTX_CS_CHICKEN1 during context initialization.

v6:
  - Add missing xe_gt_printk.h include to fix compilation failure.

v5:
  - Use correct offset for CTX_CS_CHICKEN1. (Matt)
  - Restrict to the RCS engine. (Matt)
  - Drop LRC layout table modifications; dummy layouts do not need late
    context registers. (Matt)
  - Stash WMTP fuse state at boot to remove pm/forcewake from debugfs.
    (Matt)
  - Rename debugfs knob to 'gpgpu_preemption_level'. (Matt)
  - Use simple_write_to_buffer() and remove unnecessary READ_ONCE/
    WRITE_ONCE macros. (Matt)
  - Do not restrict debugfs visibility for SR-IOV VFs. (Matt)

v4
  - Fix incorrect NOP padding in the RCS context layout. (Sashiko)

v3:
  - Wrapped XEHP_FUSE4 forcewake read with xe_pm_runtime_get/put to
    prevent PCIe aborts/timeouts when the GPU is in D3hot/D3cold. (sashiko)
  - Fixed NOP macro truncation by splitting padding offsets larger than
    0x7f into multiple NOPs, ensuring correct context layout. (sashiko)
  - Converted CTX_CS_CHICKEN1 initialization to a read-modify-write
    sequence to avoid overwriting golden context mask bits. (sashiko)
  - Removed the FF_SLICE_CS_CHICKEN1 workaround for CCS engines, as
    compute engines lack this 3D fixed-function register, which was
    causing GuC "illegal register" panics on initialization.

v2:
  - Dropped the WA BB/MI_LRI path; per Bspec, CS_CHICKEN1 is context
    save/restore state at DW 0x00E2, so we map CTX_CS_CHICKEN1 and program
    it directly in LRC init via xe_lrc_write_ctx_reg(). (Matt)
  - Split Xe2 CCS context offsets into a dedicated xe2_ccs_offsets array
    to map CS_CHICKEN1 without polluting other XCS engines.
  - Converted the debugfs interface from a binary boolean to a
    multi-option string knob ("default", "mid-thread", "thread-group",
    "command"). (Gustavo)
  - Restricted file creation to the Physical Function
    (!IS_SRIOV_VF). (Gustavo)
  - Added kernel tainting (TAINT_USER) when deviating from
    defaults. (Gustavo)
  - Added power-safe hardware fuse check (FUSE4 register 0x9114[20],
    CFEG_WMTP_DISABLE) before allowing MTP selection. (Matt)

Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
 drivers/gpu/drm/xe/regs/xe_lrc_layout.h |  2 +
 drivers/gpu/drm/xe/xe_gt.c              |  2 +
 drivers/gpu/drm/xe/xe_gt_debugfs.c      | 65 +++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_gt_types.h        | 34 +++++++++++++
 drivers/gpu/drm/xe/xe_lrc.c             | 29 +++++++++++
 drivers/gpu/drm/xe/xe_wa.c              |  6 +++
 6 files changed, 138 insertions(+)

diff --git a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
index 4ab86fc369fd..6f7abc0181b5 100644
--- a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
+++ b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
@@ -37,6 +37,8 @@
 #define CTX_QUEUE_TIMESTAMP		(0xd0 + 1)
 #define CTX_QUEUE_TIMESTAMP_UDW		(0xd2 + 1)
 
+#define CTX_CS_CHICKEN1			(0x12e + 1)
+
 #define INDIRECT_CTX_RING_HEAD		(0x02 + 1)
 #define INDIRECT_CTX_RING_TAIL		(0x04 + 1)
 #define INDIRECT_CTX_RING_START		(0x06 + 1)
diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index 783eb6d631b5..7b502fb7cfce 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -607,6 +607,8 @@ static int gt_init_with_gt_forcewake(struct xe_gt *gt)
 	 * on pre-MTL platforms, reading it there will (correctly) return 0.
 	 */
 	gt->info.gmdid = xe_mmio_read32(&gt->mmio, GMD_ID);
+	gt->info.has_wmtp_disabled = !!(xe_mmio_read32(&gt->mmio, XEHP_FUSE4) &
+		CFEG_WMTP_DISABLE);
 
 	/*
 	 * Wa_14026539277 can't be implemented as a regular GT workaround (i.e.
diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index c38bcacb27e4..288590003461 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -6,6 +6,8 @@
 #include "xe_gt_debugfs.h"
 
 #include <linux/debugfs.h>
+#include <linux/panic.h>
+#include <linux/string.h>
 
 #include <drm/drm_debugfs.h>
 #include <drm/drm_managed.h>
@@ -15,6 +17,7 @@
 #include "xe_gt.h"
 #include "xe_gt_mcr.h"
 #include "xe_gt_idle.h"
+#include "xe_gt_printk.h"
 #include "xe_gt_sriov_pf_debugfs.h"
 #include "xe_gt_sriov_vf_debugfs.h"
 #include "xe_gt_stats.h"
@@ -336,6 +339,65 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
 }
 DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
 
+static const char * const gpgpu_preemption_level_names[] = {
+	[XE_GPGPU_PREEMPT_DEFAULT]      = "default",
+	[XE_GPGPU_PREEMPT_MID_THREAD]   = "mid-thread",
+	[XE_GPGPU_PREEMPT_THREAD_GROUP] = "thread-group",
+	[XE_GPGPU_PREEMPT_COMMAND]      = "command",
+};
+
+static int gpgpu_preemption_level_show(struct seq_file *m, void *unused)
+{
+	struct xe_gt *gt = m->private;
+
+	seq_printf(m, "%s\n", gpgpu_preemption_level_names[gt->gpgpu_preemption_level]);
+
+	return 0;
+}
+
+static ssize_t gpgpu_preemption_level_write(struct file *file,
+					    const char __user *ubuf,
+					    size_t len, loff_t *offp)
+{
+	struct seq_file *m = file->private_data;
+	struct xe_gt *gt = m->private;
+	enum xe_gpgpu_preempt_level new_level;
+	char buf[16];
+	ssize_t copied;
+	int idx;
+
+	if (*offp)
+		return -EINVAL;
+
+	copied = simple_write_to_buffer(buf, sizeof(buf) - 1, offp, ubuf, len);
+	if (copied < 0)
+		return copied;
+
+	buf[copied] = '\0';
+	idx = sysfs_match_string(gpgpu_preemption_level_names, strim(buf));
+	if (idx < 0)
+		return idx;
+
+	new_level = (enum xe_gpgpu_preempt_level)idx;
+
+	if (new_level == XE_GPGPU_PREEMPT_MID_THREAD && gt->info.has_wmtp_disabled) {
+		xe_gt_warn(gt, "MTP fused off in hardware, cannot select mid-thread\n");
+		return -EPERM;
+	}
+
+	if (new_level != XE_GPGPU_PREEMPT_DEFAULT) {
+		add_taint(TAINT_USER, LOCKDEP_STILL_OK);
+		xe_gt_notice(gt,
+			     "GPGPU preemption overridden to '%s' (applies to new LRCs only)\n",
+			     gpgpu_preemption_level_names[new_level]);
+	}
+
+	gt->gpgpu_preemption_level = new_level;
+
+	return copied;
+}
+DEFINE_SHOW_STORE_ATTRIBUTE(gpgpu_preemption_level);
+
 void xe_gt_debugfs_register(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
@@ -368,6 +430,9 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
 	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
 	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
 	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
+	if (GRAPHICS_VER(xe) >= 20 && (gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK))
+		debugfs_create_file("gpgpu_preemption_level", 0600, root,
+				    gt, &gpgpu_preemption_level_fops);
 
 	drm_debugfs_create_files(vf_safe_debugfs_list,
 				 ARRAY_SIZE(vf_safe_debugfs_list),
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index e5588c88800a..97bd943309b3 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -35,6 +35,33 @@ enum xe_gt_eu_type {
 	XE_GT_EU_TYPE_SIMD16,
 };
 
+/**
+ * enum xe_gpgpu_preempt_level - Per-context GPGPU preemption override mode
+ *
+ * Selects the preemption granularity programmed into CS_CHICKEN1[2:1] for
+ * newly created Xe2+ RCS LRCs.
+ *
+ * The per-context override is effective only when
+ * FF_SLICE_CS_CHICKEN1[FFSC_PERCTX_PREEMPT_CTRL] is enabled via RTP.
+ *
+ * This setting is GT-scoped and affects only LRCs created after the value is
+ * changed; existing contexts keep their previously programmed value.
+ *
+ * @XE_GPGPU_PREEMPT_DEFAULT: Keep platform default preemption granularity.
+ * @XE_GPGPU_PREEMPT_MID_THREAD: Force mid-thread preemption level.
+ * @XE_GPGPU_PREEMPT_THREAD_GROUP: Force thread-group preemption level.
+ * @XE_GPGPU_PREEMPT_COMMAND: Force command-level preemption.
+ *
+ * Zero-initialized via kzalloc, so XE_GPGPU_PREEMPT_DEFAULT is the safe
+ * default (no override from platform policy).
+ */
+enum xe_gpgpu_preempt_level {
+	XE_GPGPU_PREEMPT_DEFAULT = 0,
+	XE_GPGPU_PREEMPT_MID_THREAD,
+	XE_GPGPU_PREEMPT_THREAD_GROUP,
+	XE_GPGPU_PREEMPT_COMMAND,
+};
+
 #define XE_MAX_DSS_FUSE_REGS		4
 #define XE_MAX_DSS_FUSE_BITS		(32 * XE_MAX_DSS_FUSE_REGS)
 #define XE_MAX_EU_FUSE_REGS		1
@@ -151,6 +178,8 @@ struct xe_gt {
 		 * feature.
 		 */
 		u8 has_xe2_blt_instructions:1;
+		/** @info.has_wmtp_disabled: hardware fuse indicates WMTP is disabled */
+		u8 has_wmtp_disabled:1;
 		/**
 		 * @info.num_geometry_xecore_fuse_regs: Number of 32b-bit fuse
 		 * registers the geometry XeCore mask spans.
@@ -219,6 +248,11 @@ struct xe_gt {
 	 */
 	u32 ccs_mode;
 
+	/**
+	 * @gpgpu_preemption_level: per-GT GPGPU preemption granularity override.
+	 */
+	enum xe_gpgpu_preempt_level gpgpu_preemption_level;
+
 	/** @usm: unified shared memory state */
 	struct {
 		/**
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3e7c995085d0..1733bbe65288 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1589,6 +1589,35 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
 	if (xe->info.has_asid && vm)
 		xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
 
+	if (GRAPHICS_VER(xe) >= 20 && hwe->class == XE_ENGINE_CLASS_RENDER) {
+		enum xe_gpgpu_preempt_level level = gt->gpgpu_preemption_level;
+
+		if (level != XE_GPGPU_PREEMPT_DEFAULT) {
+			u32 level_bits;
+			u32 val;
+
+			switch (level) {
+			case XE_GPGPU_PREEMPT_MID_THREAD:
+				level_bits = PREEMPT_GPGPU_MID_THREAD_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_THREAD_GROUP:
+				level_bits = PREEMPT_GPGPU_THREAD_GROUP_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_COMMAND:
+				level_bits = PREEMPT_GPGPU_COMMAND_LEVEL;
+				break;
+			default:
+				level_bits = 0;
+				break;
+			}
+
+			val = xe_lrc_read_ctx_reg(lrc, CTX_CS_CHICKEN1);
+			val &= ~PREEMPT_GPGPU_LEVEL_MASK;
+			val |= REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, level_bits);
+			xe_lrc_write_ctx_reg(lrc, CTX_CS_CHICKEN1, val);
+		}
+	}
+
 	lrc->desc = LRC_VALID;
 	lrc->desc |= FIELD_PREP(LRC_ADDRESSING_MODE, LRC_LEGACY_64B_CONTEXT);
 	/* TODO: Priority */
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 139434946f8f..70072963aba0 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -347,6 +347,12 @@ static const struct xe_rtp_table_sr engine_was = XE_RTP_TABLE_SR(
 	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
 			     FFSC_PERCTX_PREEMPT_CTRL))
 	},
+	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2"),
+	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
+		       ENGINE_CLASS(RENDER)),
+	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
+			     FFSC_PERCTX_PREEMPT_CTRL))
+	},
 	{ XE_RTP_NAME("18032247524"),
 	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2004),
 		       FUNC(xe_rtp_match_first_render_or_compute)),
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (18 preceding siblings ...)
  2026-07-13 14:13 ` [PATCH v6] " Varun Gupta
@ 2026-07-13 14:29 ` Patchwork
  2026-07-13 15:07 ` ✗ Xe.CI.BAT: failure " Patchwork
                   ` (5 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-13 14:29 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:28:06] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:28:10] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:28:42] Starting KUnit Kernel (1/1)...
[14:28:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:28:42] ================== guc_buf (11 subtests) ===================
[14:28:42] [PASSED] test_smallest
[14:28:42] [PASSED] test_largest
[14:28:42] [PASSED] test_granular
[14:28:42] [PASSED] test_unique
[14:28:42] [PASSED] test_overlap
[14:28:42] [PASSED] test_reusable
[14:28:42] [PASSED] test_too_big
[14:28:42] [PASSED] test_flush
[14:28:42] [PASSED] test_lookup
[14:28:42] [PASSED] test_data
[14:28:42] [PASSED] test_class
[14:28:42] ===================== [PASSED] guc_buf =====================
[14:28:42] =================== guc_dbm (7 subtests) ===================
[14:28:42] [PASSED] test_empty
[14:28:42] [PASSED] test_default
[14:28:42] ======================== test_size  ========================
[14:28:42] [PASSED] 4
[14:28:42] [PASSED] 8
[14:28:42] [PASSED] 32
[14:28:42] [PASSED] 256
[14:28:42] ==================== [PASSED] test_size ====================
[14:28:42] ======================= test_reuse  ========================
[14:28:42] [PASSED] 4
[14:28:42] [PASSED] 8
[14:28:42] [PASSED] 32
[14:28:42] [PASSED] 256
[14:28:42] =================== [PASSED] test_reuse ====================
[14:28:42] =================== test_range_overlap  ====================
[14:28:42] [PASSED] 4
[14:28:42] [PASSED] 8
[14:28:42] [PASSED] 32
[14:28:42] [PASSED] 256
[14:28:42] =============== [PASSED] test_range_overlap ================
[14:28:42] =================== test_range_compact  ====================
[14:28:42] [PASSED] 4
[14:28:42] [PASSED] 8
[14:28:42] [PASSED] 32
[14:28:42] [PASSED] 256
[14:28:42] =============== [PASSED] test_range_compact ================
[14:28:42] ==================== test_range_spare  =====================
[14:28:42] [PASSED] 4
[14:28:42] [PASSED] 8
[14:28:42] [PASSED] 32
[14:28:42] [PASSED] 256
[14:28:42] ================ [PASSED] test_range_spare =================
[14:28:42] ===================== [PASSED] guc_dbm =====================
[14:28:42] =================== guc_idm (6 subtests) ===================
[14:28:42] [PASSED] bad_init
[14:28:42] [PASSED] no_init
[14:28:42] [PASSED] init_fini
[14:28:42] [PASSED] check_used
[14:28:42] [PASSED] check_quota
[14:28:42] [PASSED] check_all
[14:28:42] ===================== [PASSED] guc_idm =====================
[14:28:42] =============== guc_klv_helpers (9 subtests) ===============
[14:28:42] [PASSED] test_count
[14:28:42] [PASSED] test_encode_u32
[14:28:42] [PASSED] test_encode_u64
[14:28:42] [PASSED] test_encode_string
[14:28:42] [PASSED] test_encode_object_raw
[14:28:42] [PASSED] test_encode_object_klv
[14:28:42] [PASSED] test_encode_object_nested
[14:28:42] [PASSED] test_encode_object_basic
[14:28:42] [PASSED] test_print
[14:28:42] ================= [PASSED] guc_klv_helpers =================
[14:28:42] ================== no_relay (3 subtests) ===================
[14:28:42] [PASSED] xe_drops_guc2pf_if_not_ready
[14:28:42] [PASSED] xe_drops_guc2vf_if_not_ready
[14:28:42] [PASSED] xe_rejects_send_if_not_ready
[14:28:42] ==================== [PASSED] no_relay =====================
[14:28:42] ================== pf_relay (14 subtests) ==================
[14:28:42] [PASSED] pf_rejects_guc2pf_too_short
[14:28:42] [PASSED] pf_rejects_guc2pf_too_long
[14:28:42] [PASSED] pf_rejects_guc2pf_no_payload
[14:28:42] [PASSED] pf_fails_no_payload
[14:28:42] [PASSED] pf_fails_bad_origin
[14:28:42] [PASSED] pf_fails_bad_type
[14:28:42] [PASSED] pf_txn_reports_error
[14:28:42] [PASSED] pf_txn_sends_pf2guc
[14:28:42] [PASSED] pf_sends_pf2guc
[14:28:42] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:28:42] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:28:42] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:28:42] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:28:42] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[14:28:42] ==================== [PASSED] pf_relay =====================
[14:28:42] ================== vf_relay (3 subtests) ===================
[14:28:42] [PASSED] vf_rejects_guc2vf_too_short
[14:28:42] [PASSED] vf_rejects_guc2vf_too_long
[14:28:42] [PASSED] vf_rejects_guc2vf_no_payload
[14:28:42] ==================== [PASSED] vf_relay =====================
[14:28:42] ================ pf_gt_config (9 subtests) =================
[14:28:42] [PASSED] fair_contexts_1vf
[14:28:42] [PASSED] fair_doorbells_1vf
[14:28:42] [PASSED] fair_ggtt_1vf
[14:28:42] ====================== fair_vram_1vf  ======================
[14:28:42] [PASSED] 3.50 GiB
[14:28:42] [PASSED] 11.5 GiB
[14:28:42] [PASSED] 15.5 GiB
[14:28:42] [PASSED] 31.5 GiB
[14:28:42] [PASSED] 63.5 GiB
[14:28:42] [PASSED] 1.91 GiB
[14:28:42] ================== [PASSED] fair_vram_1vf ==================
[14:28:42] ================ fair_vram_1vf_admin_only  =================
[14:28:42] [PASSED] 3.50 GiB
[14:28:42] [PASSED] 11.5 GiB
[14:28:42] [PASSED] 15.5 GiB
[14:28:42] [PASSED] 31.5 GiB
[14:28:42] [PASSED] 63.5 GiB
[14:28:42] [PASSED] 1.91 GiB
[14:28:42] ============ [PASSED] fair_vram_1vf_admin_only =============
[14:28:42] ====================== fair_contexts  ======================
[14:28:42] [PASSED] 1 VF
[14:28:42] [PASSED] 2 VFs
[14:28:42] [PASSED] 3 VFs
[14:28:42] [PASSED] 4 VFs
[14:28:42] [PASSED] 5 VFs
[14:28:42] [PASSED] 6 VFs
[14:28:42] [PASSED] 7 VFs
[14:28:42] [PASSED] 8 VFs
[14:28:42] [PASSED] 9 VFs
[14:28:42] [PASSED] 10 VFs
[14:28:42] [PASSED] 11 VFs
[14:28:42] [PASSED] 12 VFs
[14:28:42] [PASSED] 13 VFs
[14:28:42] [PASSED] 14 VFs
[14:28:42] [PASSED] 15 VFs
[14:28:42] [PASSED] 16 VFs
[14:28:42] [PASSED] 17 VFs
[14:28:42] [PASSED] 18 VFs
[14:28:42] [PASSED] 19 VFs
[14:28:42] [PASSED] 20 VFs
[14:28:42] [PASSED] 21 VFs
[14:28:42] [PASSED] 22 VFs
[14:28:42] [PASSED] 23 VFs
[14:28:42] [PASSED] 24 VFs
[14:28:42] [PASSED] 25 VFs
[14:28:42] [PASSED] 26 VFs
[14:28:42] [PASSED] 27 VFs
[14:28:42] [PASSED] 28 VFs
[14:28:42] [PASSED] 29 VFs
[14:28:42] [PASSED] 30 VFs
[14:28:42] [PASSED] 31 VFs
[14:28:42] [PASSED] 32 VFs
[14:28:42] [PASSED] 33 VFs
[14:28:42] [PASSED] 34 VFs
[14:28:42] [PASSED] 35 VFs
[14:28:42] [PASSED] 36 VFs
[14:28:42] [PASSED] 37 VFs
[14:28:42] [PASSED] 38 VFs
[14:28:42] [PASSED] 39 VFs
[14:28:42] [PASSED] 40 VFs
[14:28:42] [PASSED] 41 VFs
[14:28:42] [PASSED] 42 VFs
[14:28:42] [PASSED] 43 VFs
[14:28:42] [PASSED] 44 VFs
[14:28:42] [PASSED] 45 VFs
[14:28:42] [PASSED] 46 VFs
[14:28:42] [PASSED] 47 VFs
[14:28:42] [PASSED] 48 VFs
[14:28:42] [PASSED] 49 VFs
[14:28:42] [PASSED] 50 VFs
[14:28:42] [PASSED] 51 VFs
[14:28:42] [PASSED] 52 VFs
[14:28:42] [PASSED] 53 VFs
[14:28:42] [PASSED] 54 VFs
[14:28:42] [PASSED] 55 VFs
[14:28:42] [PASSED] 56 VFs
[14:28:42] [PASSED] 57 VFs
[14:28:42] [PASSED] 58 VFs
[14:28:42] [PASSED] 59 VFs
[14:28:42] [PASSED] 60 VFs
[14:28:42] [PASSED] 61 VFs
[14:28:42] [PASSED] 62 VFs
[14:28:42] [PASSED] 63 VFs
[14:28:42] ================== [PASSED] fair_contexts ==================
[14:28:42] ===================== fair_doorbells  ======================
[14:28:42] [PASSED] 1 VF
[14:28:42] [PASSED] 2 VFs
[14:28:42] [PASSED] 3 VFs
[14:28:42] [PASSED] 4 VFs
[14:28:42] [PASSED] 5 VFs
[14:28:42] [PASSED] 6 VFs
[14:28:42] [PASSED] 7 VFs
[14:28:42] [PASSED] 8 VFs
[14:28:42] [PASSED] 9 VFs
[14:28:42] [PASSED] 10 VFs
[14:28:42] [PASSED] 11 VFs
[14:28:42] [PASSED] 12 VFs
[14:28:42] [PASSED] 13 VFs
[14:28:42] [PASSED] 14 VFs
[14:28:42] [PASSED] 15 VFs
[14:28:42] [PASSED] 16 VFs
[14:28:42] [PASSED] 17 VFs
[14:28:42] [PASSED] 18 VFs
[14:28:42] [PASSED] 19 VFs
[14:28:42] [PASSED] 20 VFs
[14:28:42] [PASSED] 21 VFs
[14:28:42] [PASSED] 22 VFs
[14:28:42] [PASSED] 23 VFs
[14:28:42] [PASSED] 24 VFs
[14:28:42] [PASSED] 25 VFs
[14:28:42] [PASSED] 26 VFs
[14:28:42] [PASSED] 27 VFs
[14:28:42] [PASSED] 28 VFs
[14:28:42] [PASSED] 29 VFs
[14:28:42] [PASSED] 30 VFs
[14:28:42] [PASSED] 31 VFs
[14:28:42] [PASSED] 32 VFs
[14:28:42] [PASSED] 33 VFs
[14:28:42] [PASSED] 34 VFs
[14:28:42] [PASSED] 35 VFs
[14:28:42] [PASSED] 36 VFs
[14:28:42] [PASSED] 37 VFs
[14:28:42] [PASSED] 38 VFs
[14:28:42] [PASSED] 39 VFs
[14:28:42] [PASSED] 40 VFs
[14:28:42] [PASSED] 41 VFs
[14:28:42] [PASSED] 42 VFs
[14:28:42] [PASSED] 43 VFs
[14:28:42] [PASSED] 44 VFs
[14:28:42] [PASSED] 45 VFs
[14:28:42] [PASSED] 46 VFs
[14:28:42] [PASSED] 47 VFs
[14:28:42] [PASSED] 48 VFs
[14:28:42] [PASSED] 49 VFs
[14:28:42] [PASSED] 50 VFs
[14:28:42] [PASSED] 51 VFs
[14:28:42] [PASSED] 52 VFs
[14:28:42] [PASSED] 53 VFs
[14:28:42] [PASSED] 54 VFs
[14:28:42] [PASSED] 55 VFs
[14:28:42] [PASSED] 56 VFs
[14:28:42] [PASSED] 57 VFs
[14:28:42] [PASSED] 58 VFs
[14:28:42] [PASSED] 59 VFs
[14:28:42] [PASSED] 60 VFs
[14:28:42] [PASSED] 61 VFs
[14:28:42] [PASSED] 62 VFs
[14:28:42] [PASSED] 63 VFs
[14:28:42] ================= [PASSED] fair_doorbells ==================
[14:28:42] ======================== fair_ggtt  ========================
[14:28:42] [PASSED] 1 VF
[14:28:42] [PASSED] 2 VFs
[14:28:42] [PASSED] 3 VFs
[14:28:42] [PASSED] 4 VFs
[14:28:42] [PASSED] 5 VFs
[14:28:42] [PASSED] 6 VFs
[14:28:42] [PASSED] 7 VFs
[14:28:42] [PASSED] 8 VFs
[14:28:42] [PASSED] 9 VFs
[14:28:42] [PASSED] 10 VFs
[14:28:42] [PASSED] 11 VFs
[14:28:42] [PASSED] 12 VFs
[14:28:42] [PASSED] 13 VFs
[14:28:42] [PASSED] 14 VFs
[14:28:42] [PASSED] 15 VFs
[14:28:42] [PASSED] 16 VFs
[14:28:42] [PASSED] 17 VFs
[14:28:42] [PASSED] 18 VFs
[14:28:42] [PASSED] 19 VFs
[14:28:42] [PASSED] 20 VFs
[14:28:42] [PASSED] 21 VFs
[14:28:42] [PASSED] 22 VFs
[14:28:42] [PASSED] 23 VFs
[14:28:42] [PASSED] 24 VFs
[14:28:42] [PASSED] 25 VFs
[14:28:42] [PASSED] 26 VFs
[14:28:42] [PASSED] 27 VFs
[14:28:42] [PASSED] 28 VFs
[14:28:42] [PASSED] 29 VFs
[14:28:42] [PASSED] 30 VFs
[14:28:42] [PASSED] 31 VFs
[14:28:42] [PASSED] 32 VFs
[14:28:42] [PASSED] 33 VFs
[14:28:42] [PASSED] 34 VFs
[14:28:42] [PASSED] 35 VFs
[14:28:42] [PASSED] 36 VFs
[14:28:42] [PASSED] 37 VFs
[14:28:42] [PASSED] 38 VFs
[14:28:42] [PASSED] 39 VFs
[14:28:42] [PASSED] 40 VFs
[14:28:42] [PASSED] 41 VFs
[14:28:42] [PASSED] 42 VFs
[14:28:42] [PASSED] 43 VFs
[14:28:42] [PASSED] 44 VFs
[14:28:42] [PASSED] 45 VFs
[14:28:42] [PASSED] 46 VFs
[14:28:42] [PASSED] 47 VFs
[14:28:42] [PASSED] 48 VFs
[14:28:42] [PASSED] 49 VFs
[14:28:42] [PASSED] 50 VFs
[14:28:42] [PASSED] 51 VFs
[14:28:42] [PASSED] 52 VFs
[14:28:42] [PASSED] 53 VFs
[14:28:42] [PASSED] 54 VFs
[14:28:42] [PASSED] 55 VFs
[14:28:42] [PASSED] 56 VFs
[14:28:42] [PASSED] 57 VFs
[14:28:42] [PASSED] 58 VFs
[14:28:42] [PASSED] 59 VFs
[14:28:42] [PASSED] 60 VFs
[14:28:42] [PASSED] 61 VFs
[14:28:42] [PASSED] 62 VFs
[14:28:42] [PASSED] 63 VFs
[14:28:42] ==================== [PASSED] fair_ggtt ====================
[14:28:42] ======================== fair_vram  ========================
[14:28:42] [PASSED] 1 VF
[14:28:42] [PASSED] 2 VFs
[14:28:42] [PASSED] 3 VFs
[14:28:42] [PASSED] 4 VFs
[14:28:42] [PASSED] 5 VFs
[14:28:42] [PASSED] 6 VFs
[14:28:42] [PASSED] 7 VFs
[14:28:42] [PASSED] 8 VFs
[14:28:42] [PASSED] 9 VFs
[14:28:42] [PASSED] 10 VFs
[14:28:42] [PASSED] 11 VFs
[14:28:42] [PASSED] 12 VFs
[14:28:42] [PASSED] 13 VFs
[14:28:42] [PASSED] 14 VFs
[14:28:42] [PASSED] 15 VFs
[14:28:42] [PASSED] 16 VFs
[14:28:42] [PASSED] 17 VFs
[14:28:42] [PASSED] 18 VFs
[14:28:42] [PASSED] 19 VFs
[14:28:42] [PASSED] 20 VFs
[14:28:42] [PASSED] 21 VFs
[14:28:42] [PASSED] 22 VFs
[14:28:42] [PASSED] 23 VFs
[14:28:42] [PASSED] 24 VFs
[14:28:42] [PASSED] 25 VFs
[14:28:42] [PASSED] 26 VFs
[14:28:42] [PASSED] 27 VFs
[14:28:42] [PASSED] 28 VFs
[14:28:42] [PASSED] 29 VFs
[14:28:42] [PASSED] 30 VFs
[14:28:42] [PASSED] 31 VFs
[14:28:42] [PASSED] 32 VFs
[14:28:42] [PASSED] 33 VFs
[14:28:42] [PASSED] 34 VFs
[14:28:42] [PASSED] 35 VFs
[14:28:42] [PASSED] 36 VFs
[14:28:42] [PASSED] 37 VFs
[14:28:42] [PASSED] 38 VFs
[14:28:42] [PASSED] 39 VFs
[14:28:42] [PASSED] 40 VFs
[14:28:42] [PASSED] 41 VFs
[14:28:42] [PASSED] 42 VFs
[14:28:42] [PASSED] 43 VFs
[14:28:42] [PASSED] 44 VFs
[14:28:42] [PASSED] 45 VFs
[14:28:42] [PASSED] 46 VFs
[14:28:42] [PASSED] 47 VFs
[14:28:42] [PASSED] 48 VFs
[14:28:42] [PASSED] 49 VFs
[14:28:42] [PASSED] 50 VFs
[14:28:42] [PASSED] 51 VFs
[14:28:42] [PASSED] 52 VFs
[14:28:42] [PASSED] 53 VFs
[14:28:42] [PASSED] 54 VFs
[14:28:42] [PASSED] 55 VFs
[14:28:42] [PASSED] 56 VFs
[14:28:42] [PASSED] 57 VFs
[14:28:42] [PASSED] 58 VFs
[14:28:42] [PASSED] 59 VFs
[14:28:42] [PASSED] 60 VFs
[14:28:42] [PASSED] 61 VFs
[14:28:42] [PASSED] 62 VFs
[14:28:42] [PASSED] 63 VFs
[14:28:42] ==================== [PASSED] fair_vram ====================
[14:28:42] ================== [PASSED] pf_gt_config ===================
[14:28:42] ===================== lmtt (1 subtest) =====================
[14:28:42] ======================== test_ops  =========================
[14:28:42] [PASSED] 2-level
[14:28:42] [PASSED] multi-level
[14:28:42] ==================== [PASSED] test_ops =====================
[14:28:42] ====================== [PASSED] lmtt =======================
[14:28:42] ================= sriov_packet (1 subtest) =================
[14:28:42] [PASSED] test_descriptor_init
[14:28:42] ================== [PASSED] sriov_packet ===================
[14:28:42] ================= pf_service (11 subtests) =================
[14:28:42] [PASSED] pf_negotiate_any
[14:28:42] [PASSED] pf_negotiate_base_match
[14:28:42] [PASSED] pf_negotiate_base_newer
[14:28:42] [PASSED] pf_negotiate_base_next
[14:28:42] [SKIPPED] pf_negotiate_base_older (no older minor)
[14:28:42] [PASSED] pf_negotiate_base_prev
[14:28:42] [PASSED] pf_negotiate_latest_match
[14:28:42] [PASSED] pf_negotiate_latest_newer
[14:28:42] [PASSED] pf_negotiate_latest_next
[14:28:42] [SKIPPED] pf_negotiate_latest_older (no older minor)
[14:28:42] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[14:28:42] =================== [PASSED] pf_service ====================
[14:28:42] ================= xe_guc_g2g (2 subtests) ==================
[14:28:42] ============== xe_live_guc_g2g_kunit_default  ==============
[14:28:42] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:28:42] ============== xe_live_guc_g2g_kunit_allmem  ===============
[14:28:42] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:28:42] =================== [SKIPPED] xe_guc_g2g ===================
[14:28:42] =================== xe_mocs (2 subtests) ===================
[14:28:42] ================ xe_live_mocs_kernel_kunit  ================
[14:28:42] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:28:42] ================ xe_live_mocs_reset_kunit  =================
[14:28:42] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:28:42] ==================== [SKIPPED] xe_mocs =====================
[14:28:42] ================= xe_migrate (2 subtests) ==================
[14:28:42] ================= xe_migrate_sanity_kunit  =================
[14:28:42] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:28:42] ================== xe_validate_ccs_kunit  ==================
[14:28:42] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:28:42] =================== [SKIPPED] xe_migrate ===================
[14:28:42] ================== xe_dma_buf (1 subtest) ==================
[14:28:42] ==================== xe_dma_buf_kunit  =====================
[14:28:42] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:28:42] =================== [SKIPPED] xe_dma_buf ===================
[14:28:42] ================= xe_bo_shrink (1 subtest) =================
[14:28:42] =================== xe_bo_shrink_kunit  ====================
[14:28:42] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:28:42] ================== [SKIPPED] xe_bo_shrink ==================
[14:28:42] ==================== xe_bo (2 subtests) ====================
[14:28:42] ================== xe_ccs_migrate_kunit  ===================
[14:28:42] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:28:42] ==================== xe_bo_evict_kunit  ====================
[14:28:42] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:28:42] ===================== [SKIPPED] xe_bo ======================
[14:28:42] ==================== args (13 subtests) ====================
[14:28:42] [PASSED] count_args_test
[14:28:42] [PASSED] call_args_example
[14:28:42] [PASSED] call_args_test
[14:28:42] [PASSED] drop_first_arg_example
[14:28:42] [PASSED] drop_first_arg_test
[14:28:42] [PASSED] first_arg_example
[14:28:42] [PASSED] first_arg_test
[14:28:42] [PASSED] last_arg_example
[14:28:42] [PASSED] last_arg_test
[14:28:42] [PASSED] pick_arg_example
[14:28:42] [PASSED] if_args_example
[14:28:42] [PASSED] if_args_test
[14:28:42] [PASSED] sep_comma_example
[14:28:42] ====================== [PASSED] args =======================
[14:28:42] =================== xe_pci (3 subtests) ====================
[14:28:42] ==================== check_graphics_ip  ====================
[14:28:42] [PASSED] 12.00 Xe_LP
[14:28:42] [PASSED] 12.10 Xe_LP+
[14:28:42] [PASSED] 12.55 Xe_HPG
[14:28:42] [PASSED] 12.60 Xe_HPC
[14:28:42] [PASSED] 12.70 Xe_LPG
[14:28:42] [PASSED] 12.71 Xe_LPG
[14:28:42] [PASSED] 12.74 Xe_LPG+
[14:28:42] [PASSED] 20.01 Xe2_HPG
[14:28:42] [PASSED] 20.02 Xe2_HPG
[14:28:42] [PASSED] 20.04 Xe2_LPG
[14:28:42] [PASSED] 30.00 Xe3_LPG
[14:28:42] [PASSED] 30.01 Xe3_LPG
[14:28:42] [PASSED] 30.03 Xe3_LPG
[14:28:42] [PASSED] 30.04 Xe3_LPG
[14:28:42] [PASSED] 30.05 Xe3_LPG
[14:28:42] [PASSED] 35.10 Xe3p_LPG
[14:28:42] [PASSED] 35.11 Xe3p_XPC
[14:28:42] ================ [PASSED] check_graphics_ip ================
[14:28:42] ===================== check_media_ip  ======================
[14:28:42] [PASSED] 12.00 Xe_M
[14:28:42] [PASSED] 12.55 Xe_HPM
[14:28:42] [PASSED] 13.00 Xe_LPM+
[14:28:42] [PASSED] 13.01 Xe2_HPM
[14:28:42] [PASSED] 20.00 Xe2_LPM
[14:28:42] [PASSED] 30.00 Xe3_LPM
[14:28:42] [PASSED] 30.02 Xe3_LPM
[14:28:42] [PASSED] 35.00 Xe3p_LPM
[14:28:42] [PASSED] 35.03 Xe3p_HPM
[14:28:42] ================= [PASSED] check_media_ip ==================
[14:28:42] =================== check_platform_desc  ===================
[14:28:42] [PASSED] 0x9A60 (TIGERLAKE)
[14:28:42] [PASSED] 0x9A68 (TIGERLAKE)
[14:28:42] [PASSED] 0x9A70 (TIGERLAKE)
[14:28:42] [PASSED] 0x9A40 (TIGERLAKE)
[14:28:42] [PASSED] 0x9A49 (TIGERLAKE)
[14:28:42] [PASSED] 0x9A59 (TIGERLAKE)
[14:28:42] [PASSED] 0x9A78 (TIGERLAKE)
[14:28:42] [PASSED] 0x9AC0 (TIGERLAKE)
[14:28:42] [PASSED] 0x9AC9 (TIGERLAKE)
[14:28:42] [PASSED] 0x9AD9 (TIGERLAKE)
[14:28:42] [PASSED] 0x9AF8 (TIGERLAKE)
[14:28:42] [PASSED] 0x4C80 (ROCKETLAKE)
[14:28:42] [PASSED] 0x4C8A (ROCKETLAKE)
[14:28:42] [PASSED] 0x4C8B (ROCKETLAKE)
[14:28:42] [PASSED] 0x4C8C (ROCKETLAKE)
[14:28:42] [PASSED] 0x4C90 (ROCKETLAKE)
[14:28:42] [PASSED] 0x4C9A (ROCKETLAKE)
[14:28:42] [PASSED] 0x4680 (ALDERLAKE_S)
[14:28:42] [PASSED] 0x4682 (ALDERLAKE_S)
[14:28:42] [PASSED] 0x4688 (ALDERLAKE_S)
[14:28:42] [PASSED] 0x468A (ALDERLAKE_S)
[14:28:42] [PASSED] 0x468B (ALDERLAKE_S)
[14:28:42] [PASSED] 0x4690 (ALDERLAKE_S)
[14:28:42] [PASSED] 0x4692 (ALDERLAKE_S)
[14:28:42] [PASSED] 0x4693 (ALDERLAKE_S)
[14:28:42] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46AA (ALDERLAKE_P)
[14:28:42] [PASSED] 0x462A (ALDERLAKE_P)
[14:28:42] [PASSED] 0x4626 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x4628 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:28:42] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:28:42] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:28:42] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:28:42] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:28:42] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:28:42] [PASSED] 0xA721 (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA720 (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:28:42] [PASSED] 0xA780 (ALDERLAKE_S)
[14:28:42] [PASSED] 0xA781 (ALDERLAKE_S)
[14:28:42] [PASSED] 0xA782 (ALDERLAKE_S)
[14:28:42] [PASSED] 0xA783 (ALDERLAKE_S)
[14:28:42] [PASSED] 0xA788 (ALDERLAKE_S)
[14:28:42] [PASSED] 0xA789 (ALDERLAKE_S)
[14:28:42] [PASSED] 0xA78A (ALDERLAKE_S)
[14:28:42] [PASSED] 0xA78B (ALDERLAKE_S)
[14:28:42] [PASSED] 0x4905 (DG1)
[14:28:42] [PASSED] 0x4906 (DG1)
[14:28:42] [PASSED] 0x4907 (DG1)
[14:28:42] [PASSED] 0x4908 (DG1)
[14:28:42] [PASSED] 0x4909 (DG1)
[14:28:42] [PASSED] 0x56C0 (DG2)
[14:28:42] [PASSED] 0x56C2 (DG2)
[14:28:42] [PASSED] 0x56C1 (DG2)
[14:28:42] [PASSED] 0x7D51 (METEORLAKE)
[14:28:42] [PASSED] 0x7DD1 (METEORLAKE)
[14:28:42] [PASSED] 0x7D41 (METEORLAKE)
[14:28:42] [PASSED] 0x7D67 (METEORLAKE)
[14:28:42] [PASSED] 0xB640 (METEORLAKE)
[14:28:42] [PASSED] 0x56A0 (DG2)
[14:28:42] [PASSED] 0x56A1 (DG2)
[14:28:42] [PASSED] 0x56A2 (DG2)
[14:28:42] [PASSED] 0x56BE (DG2)
[14:28:42] [PASSED] 0x56BF (DG2)
[14:28:42] [PASSED] 0x5690 (DG2)
[14:28:42] [PASSED] 0x5691 (DG2)
[14:28:42] [PASSED] 0x5692 (DG2)
[14:28:42] [PASSED] 0x56A5 (DG2)
[14:28:42] [PASSED] 0x56A6 (DG2)
[14:28:42] [PASSED] 0x56B0 (DG2)
[14:28:42] [PASSED] 0x56B1 (DG2)
[14:28:42] [PASSED] 0x56BA (DG2)
[14:28:42] [PASSED] 0x56BB (DG2)
[14:28:42] [PASSED] 0x56BC (DG2)
[14:28:42] [PASSED] 0x56BD (DG2)
[14:28:42] [PASSED] 0x5693 (DG2)
[14:28:42] [PASSED] 0x5694 (DG2)
[14:28:42] [PASSED] 0x5695 (DG2)
[14:28:42] [PASSED] 0x56A3 (DG2)
[14:28:42] [PASSED] 0x56A4 (DG2)
[14:28:42] [PASSED] 0x56B2 (DG2)
[14:28:42] [PASSED] 0x56B3 (DG2)
[14:28:42] [PASSED] 0x5696 (DG2)
[14:28:42] [PASSED] 0x5697 (DG2)
[14:28:42] [PASSED] 0xB69 (PVC)
[14:28:42] [PASSED] 0xB6E (PVC)
[14:28:42] [PASSED] 0xBD4 (PVC)
[14:28:42] [PASSED] 0xBD5 (PVC)
[14:28:42] [PASSED] 0xBD6 (PVC)
[14:28:42] [PASSED] 0xBD7 (PVC)
[14:28:42] [PASSED] 0xBD8 (PVC)
[14:28:42] [PASSED] 0xBD9 (PVC)
[14:28:42] [PASSED] 0xBDA (PVC)
[14:28:42] [PASSED] 0xBDB (PVC)
[14:28:42] [PASSED] 0xBE0 (PVC)
[14:28:42] [PASSED] 0xBE1 (PVC)
[14:28:42] [PASSED] 0xBE5 (PVC)
[14:28:42] [PASSED] 0x7D40 (METEORLAKE)
[14:28:42] [PASSED] 0x7D45 (METEORLAKE)
[14:28:42] [PASSED] 0x7D55 (METEORLAKE)
[14:28:42] [PASSED] 0x7D60 (METEORLAKE)
[14:28:42] [PASSED] 0x7DD5 (METEORLAKE)
[14:28:42] [PASSED] 0x6420 (LUNARLAKE)
[14:28:42] [PASSED] 0x64A0 (LUNARLAKE)
[14:28:42] [PASSED] 0x64B0 (LUNARLAKE)
[14:28:42] [PASSED] 0xE202 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE209 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE20B (BATTLEMAGE)
[14:28:42] [PASSED] 0xE20C (BATTLEMAGE)
[14:28:42] [PASSED] 0xE20D (BATTLEMAGE)
[14:28:42] [PASSED] 0xE210 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE211 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE212 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE216 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE220 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE221 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE222 (BATTLEMAGE)
[14:28:42] [PASSED] 0xE223 (BATTLEMAGE)
[14:28:42] [PASSED] 0xB080 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB081 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB082 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB083 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB084 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB085 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB086 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB087 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB08F (PANTHERLAKE)
[14:28:42] [PASSED] 0xB090 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:28:42] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:28:42] [PASSED] 0xFD80 (PANTHERLAKE)
[14:28:42] [PASSED] 0xFD81 (PANTHERLAKE)
[14:28:42] [PASSED] 0xD740 (NOVALAKE_S)
[14:28:42] [PASSED] 0xD741 (NOVALAKE_S)
[14:28:42] [PASSED] 0xD742 (NOVALAKE_S)
[14:28:42] [PASSED] 0xD743 (NOVALAKE_S)
[14:28:42] [PASSED] 0xD745 (NOVALAKE_S)
[14:28:42] [PASSED] 0xD74A (NOVALAKE_S)
[14:28:42] [PASSED] 0xD74B (NOVALAKE_S)
[14:28:42] [PASSED] 0x674C (CRESCENTISLAND)
[14:28:42] [PASSED] 0x674D (CRESCENTISLAND)
[14:28:42] [PASSED] 0x674E (CRESCENTISLAND)
[14:28:42] [PASSED] 0x674F (CRESCENTISLAND)
[14:28:42] [PASSED] 0x6750 (CRESCENTISLAND)
[14:28:42] [PASSED] 0xD750 (NOVALAKE_P)
[14:28:42] [PASSED] 0xD751 (NOVALAKE_P)
[14:28:42] [PASSED] 0xD752 (NOVALAKE_P)
[14:28:42] [PASSED] 0xD753 (NOVALAKE_P)
[14:28:42] [PASSED] 0xD754 (NOVALAKE_P)
[14:28:42] [PASSED] 0xD755 (NOVALAKE_P)
[14:28:42] [PASSED] 0xD756 (NOVALAKE_P)
[14:28:42] [PASSED] 0xD757 (NOVALAKE_P)
[14:28:42] [PASSED] 0xD75F (NOVALAKE_P)
[14:28:42] =============== [PASSED] check_platform_desc ===============
[14:28:42] ===================== [PASSED] xe_pci ======================
[14:28:42] ============= xe_rtp_tables_test (5 subtests) ==============
[14:28:42] ================== xe_rtp_table_gt_test  ===================
[14:28:42] [PASSED] gt_was/14011060649
[14:28:42] [PASSED] gt_was/14011059788
[14:28:42] [PASSED] gt_was/14015795083
[14:28:42] [PASSED] gt_was/16021867713
[14:28:42] [PASSED] gt_was/14019449301
[14:28:42] [PASSED] gt_was/16028005424
[14:28:42] [PASSED] gt_was/14026578760
[14:28:42] [PASSED] gt_was/1409420604
[14:28:42] [PASSED] gt_was/1408615072
[14:28:42] [PASSED] gt_was/22010523718
[14:28:42] [PASSED] gt_was/14011006942
[14:28:42] [PASSED] gt_was/14014830051
[14:28:42] [PASSED] gt_was/18018781329
[14:28:42] [PASSED] gt_was/1509235366
[14:28:42] [PASSED] gt_was/18018781329
[14:28:42] [PASSED] gt_was/16016694945
[14:28:42] [PASSED] gt_was/14018575942
[14:28:42] [PASSED] gt_was/22016670082
[14:28:42] [PASSED] gt_was/22016670082
[14:28:42] [PASSED] gt_was/14017421178
[14:28:42] [PASSED] gt_was/16025250150
[14:28:42] [PASSED] gt_was/14021871409
[14:28:42] [PASSED] gt_was/16021865536
[14:28:42] [PASSED] gt_was/14021486841
[14:28:42] [PASSED] gt_was/14025160223
[14:28:42] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[14:28:42] [PASSED] gt_was/14025635424
[14:28:42] [PASSED] gt_was/16028005424
[14:28:42] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:28:42] ================== xe_rtp_table_gt_test  ===================
[14:28:42] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[14:28:42] [PASSED] gt_tunings/Tuning: 32B Access Enable
[14:28:42] [PASSED] gt_tunings/Tuning: L3 cache
[14:28:42] [PASSED] gt_tunings/Tuning: L3 cache - media
[14:28:42] [PASSED] gt_tunings/Tuning: Compression Overfetch
[14:28:42] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[14:28:42] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[14:28:42] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[14:28:42] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[14:28:42] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[14:28:42] [PASSED] gt_tunings/Tuning: Stateless compression control
[14:28:42] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[14:28:42] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[14:28:42] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[14:28:42] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[14:28:42] ============== [PASSED] xe_rtp_table_gt_test ===============
[14:28:42] ================== xe_rtp_table_oob_test  ==================
[14:28:42] [PASSED] oob_was/1607983814
[14:28:42] [PASSED] oob_was/16010904313
[14:28:42] [PASSED] oob_was/18022495364
[14:28:42] [PASSED] oob_was/22012773006
[14:28:42] [PASSED] oob_was/14014475959
[14:28:42] [PASSED] oob_was/22011391025
[14:28:42] [PASSED] oob_was/22012727170
[14:28:42] [PASSED] oob_was/22012727685
[14:28:42] [PASSED] oob_was/22016596838
[14:28:42] [PASSED] oob_was/18020744125
[14:28:42] [PASSED] oob_was/1409600907
[14:28:42] [PASSED] oob_was/22014953428
[14:28:42] [PASSED] oob_was/16017236439
[14:28:42] [PASSED] oob_was/14019821291
[14:28:42] [PASSED] oob_was/14015076503
[14:28:42] [PASSED] oob_was/14018913170
[14:28:42] [PASSED] oob_was/14018094691
[14:28:42] [PASSED] oob_was/18024947630
[14:28:42] [PASSED] oob_was/16022287689
[14:28:42] [PASSED] oob_was/13011645652
[14:28:42] [PASSED] oob_was/14022293748
[14:28:42] [PASSED] oob_was/22019794406
[14:28:42] [PASSED] oob_was/22019338487
[14:28:42] [PASSED] oob_was/16023588340
[14:28:42] [PASSED] oob_was/14019789679
[14:28:42] [PASSED] oob_was/14022866841
[14:28:42] [PASSED] oob_was/16021333562
[14:28:42] [PASSED] oob_was/14016712196
[14:28:42] [PASSED] oob_was/14015568240
[14:28:42] [PASSED] oob_was/18013179988
[14:28:42] [PASSED] oob_was/1508761755
[14:28:42] [PASSED] oob_was/16023105232
[14:28:42] [PASSED] oob_was/16026508708
[14:28:42] [PASSED] oob_was/14020001231
[14:28:42] [PASSED] oob_was/16023683509
[14:28:42] [PASSED] oob_was/14025515070
[14:28:42] [PASSED] oob_was/15015404425_disable
[14:28:42] [PASSED] oob_was/16026007364
[14:28:42] [PASSED] oob_was/14020316580
[14:28:42] [PASSED] oob_was/14025883347
[14:28:42] [PASSED] oob_was/16029380221
[14:28:42] [PASSED] oob_was/22022079272
[14:28:42] [PASSED] oob_was/16029897822
[14:28:42] ============== [PASSED] xe_rtp_table_oob_test ==============
[14:28:42] ================ xe_rtp_table_dev_oob_test  ================
[14:28:42] [PASSED] device_oob_was/22010954014
[14:28:42] [PASSED] device_oob_was/15015404425
[14:28:42] [PASSED] device_oob_was/22019338487_display
[14:28:42] [PASSED] device_oob_was/14022085890
[14:28:42] [PASSED] device_oob_was/14026539277
[14:28:42] [PASSED] device_oob_was/14026633728
[14:28:42] [PASSED] device_oob_was/14026746987
[14:28:42] [PASSED] device_oob_was/14026779378
[14:28:42] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[14:28:42] ========== xe_rtp_table_missing_upper_bound_test  ==========
[14:28:42] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[14:28:42] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[14:28:42] [PASSED] register_whitelist/1806527549
[14:28:42] [PASSED] register_whitelist/allow_read_ctx_timestamp
[14:28:42] [PASSED] register_whitelist/allow_read_queue_timestamp
[14:28:42] [PASSED] register_whitelist/16014440446
[14:28:42] [PASSED] register_whitelist/16017236439
[14:28:42] [PASSED] register_whitelist/16020183090
[14:28:42] [PASSED] register_whitelist/14024997852
[14:28:42] [PASSED] register_whitelist/14024997852
[14:28:42] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[14:28:42] =============== [PASSED] xe_rtp_tables_test ================
[14:28:42] =================== xe_rtp (3 subtests) ====================
[14:28:42] =================== xe_rtp_rules_tests  ====================
[14:28:42] [PASSED] no
[14:28:42] [PASSED] yes
[14:28:42] [PASSED] no-and-no
[14:28:42] [PASSED] no-and-yes
[14:28:42] [PASSED] yes-and-no
[14:28:42] [PASSED] yes-and-yes
[14:28:42] [PASSED] no-or-no
[14:28:42] [PASSED] no-or-yes
[14:28:42] [PASSED] yes-or-no
[14:28:42] [PASSED] yes-or-yes
[14:28:42] [PASSED] no-yes-or-yes-no
[14:28:42] [PASSED] no-yes-or-yes-yes
[14:28:42] [PASSED] yes-yes-or-no-yes
[14:28:42] [PASSED] yes-yes-or-yes-yes
[14:28:42] [PASSED] no-no-or-yes-or-no
[14:28:42] [PASSED] or
[14:28:42] [PASSED] or-yes
[14:28:42] [PASSED] or-no
[14:28:42] [PASSED] yes-or
[14:28:42] [PASSED] no-or
[14:28:42] [PASSED] no-or-or-yes
[14:28:42] [PASSED] yes-or-or-no
[14:28:42] [PASSED] no-or-or-no
[14:28:42] [PASSED] missing-context-engine-class
[14:28:42] [PASSED] missing-context-engine-class-or-yes
[14:28:42] [PASSED] missing-context-engine-class-or-or-yes
[14:28:42] =============== [PASSED] xe_rtp_rules_tests ================
[14:28:42] =============== xe_rtp_process_to_sr_tests  ================
[14:28:42] [PASSED] coalesce-same-reg
[14:28:42] [PASSED] coalesce-same-reg-literal-and-func
[14:28:42] [PASSED] no-match-no-add
[14:28:42] [PASSED] two-regs-two-entries
[14:28:42] [PASSED] clr-one-set-other
[14:28:42] [PASSED] set-field
[14:28:42] [PASSED] conflict-duplicate
[14:28:42] [PASSED] conflict-not-disjoint
[14:28:42] [PASSED] conflict-not-disjoint-literal-and-func
[14:28:42] [PASSED] conflict-reg-type
[14:28:42] [PASSED] bad-mcr-reg-forced-to-regular
[14:28:42] [PASSED] bad-regular-reg-forced-to-mcr
[14:28:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:28:42] ================== xe_rtp_process_tests  ===================
[14:28:42] [PASSED] active1
[14:28:42] [PASSED] active2
[14:28:42] [PASSED] active-inactive
[14:28:42] [PASSED] inactive-active
[14:28:42] [PASSED] inactive-active-inactive
[14:28:42] [PASSED] inactive-inactive-inactive
[14:28:42] ============== [PASSED] xe_rtp_process_tests ===============
[14:28:42] ===================== [PASSED] xe_rtp ======================
[14:28:42] ==================== xe_wa (1 subtest) =====================
[14:28:42] ======================== xe_wa_gt  =========================
[14:28:42] [PASSED] TIGERLAKE B0
[14:28:42] [PASSED] DG1 A0
[14:28:42] [PASSED] DG1 B0
[14:28:42] [PASSED] ALDERLAKE_S A0
[14:28:42] [PASSED] ALDERLAKE_S B0
[14:28:42] [PASSED] ALDERLAKE_S C0
[14:28:42] [PASSED] ALDERLAKE_S D0
[14:28:42] [PASSED] ALDERLAKE_P A0
[14:28:42] [PASSED] ALDERLAKE_P B0
[14:28:42] [PASSED] ALDERLAKE_P C0
[14:28:42] [PASSED] ALDERLAKE_S RPLS D0
[14:28:42] [PASSED] ALDERLAKE_P RPLU E0
[14:28:42] [PASSED] DG2 G10 C0
[14:28:42] [PASSED] DG2 G11 B1
[14:28:42] [PASSED] DG2 G12 A1
[14:28:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:28:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:28:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:28:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:28:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:28:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:28:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:28:42] ==================== [PASSED] xe_wa_gt =====================
[14:28:42] ====================== [PASSED] xe_wa ======================
[14:28:42] ============================================================
[14:28:42] Testing complete. Ran 741 tests: passed: 723, skipped: 18
[14:28:42] Elapsed time: 36.612s total, 4.328s configuring, 31.618s building, 0.647s running

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (19 preceding siblings ...)
  2026-07-13 14:29 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6) Patchwork
@ 2026-07-13 15:07 ` Patchwork
  2026-07-13 18:08 ` ✓ Xe.CI.FULL: success " Patchwork
                   ` (4 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-13 15:07 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6)
URL   : https://patchwork.freedesktop.org/series/168743/
State : failure

== Summary ==

CI Bug Log - changes from xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218_BAT -> xe-pw-168743v6_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-168743v6_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-168743v6_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 (13 -> 13)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-168743v6_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - bat-adlp-7:         [PASS][1] -> [ABORT][2] +1 other test abort
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
    - bat-atsm-2:         [PASS][3] -> [ABORT][4] +1 other test abort
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on.html

  


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

  * IGT: IGT_9003 -> IGT_9005
  * Linux: xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218 -> xe-pw-168743v6

  IGT_9003: 9003
  IGT_9005: 5d0cdd6f2f5d3ad4992da1edf67f22622a8bb153 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218: 83d782d98f4ebb4a10b8ee107e3a389917e0b218
  xe-pw-168743v6: 168743v6

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (20 preceding siblings ...)
  2026-07-13 15:07 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-07-13 18:08 ` Patchwork
  2026-07-14 11:59 ` [PATCH v7] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
                   ` (3 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-13 18:08 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

CI Bug Log - changes from xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218_FULL -> xe-pw-168743v6_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-168743v6_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-bmg:          [PASS][1] -> [ABORT][2] ([Intel XE#8007]) +2 other tests abort
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-1/igt@core_hotunplug@hotrebind-lateclose.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-9/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-bmg:          [PASS][3] -> [FAIL][4] ([Intel XE#3718] / [Intel XE#6078])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
    - shard-bmg:          [PASS][5] -> [FAIL][6] ([Intel XE#6078])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2370])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-bmg:          [PASS][8] -> [INCOMPLETE][9] ([Intel XE#5643] / [Intel XE#6652] / [Intel XE#6819])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-0.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2327]) +2 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#1124]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#1124]) +7 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2328] / [Intel XE#7367])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#8365])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-target-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#367]) +3 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-9/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2652]) +8 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2887]) +6 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-3/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][19] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#3432])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#2887]) +4 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_chamelium_audio@dp-audio-edid:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#373]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_chamelium_audio@dp-audio-edid.html

  * igt@kms_chamelium_color@gamma:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2325] / [Intel XE#7358])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2252]) +3 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@kms_content_protection@dp-mst-type-0.html

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

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#307] / [Intel XE#6974]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-2/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-bmg:          NOTRUN -> [FAIL][28] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#7642])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2321] / [Intel XE#7355])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#1424])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-5/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#8265])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html

  * igt@kms_dsc@dsc-with-output-formats-bigjoiner:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#8265])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2373] / [Intel XE#7448])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-5/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#1421]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [PASS][36] -> [FAIL][37] ([Intel XE#301])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [PASS][38] -> [FAIL][39] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#352])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#7061]) +4 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrshdr-rgb565-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#6312]) +5 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#656] / [Intel XE#7905]) +11 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#4141]) +6 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

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

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#7865]) +10 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#7061]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-8/igt@kms_frontbuffer_tracking@fbchdr-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2313]) +29 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#7905]) +13 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-move.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [PASS][55] -> [SKIP][56] ([Intel XE#1503])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-swap:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#1503])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-2/igt@kms_hdr@static-swap.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#8303]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#599])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#5020] / [Intel XE#7348])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-9/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc3co-vpb-framegap@pr:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#8395]) +3 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-framegap@pr.html

  * igt@kms_pm_dc@dc3co-vpb-framegap@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#8396]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-framegap@psr2.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][66] -> [FAIL][67] ([Intel XE#8399])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#1489]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#4608])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][72] ([Intel XE#4608] / [Intel XE#7304])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2387] / [Intel XE#7429])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@kms_psr2_su@page_flip-xrgb8888.html
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1128] / [Intel XE#7413])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-2/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#7345])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@kms_psr@fbc-psr2-dpms.html

  * igt@kms_psr@fbc-psr2-dpms@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#4609])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@kms_psr@fbc-psr2-dpms@edp-1.html

  * igt@kms_psr@psr2-basic:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-3/igt@kms_psr@psr2-basic.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-lnl:          [PASS][78] -> [SKIP][79] ([Intel XE#8361])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-lnl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#1435])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_sharpness_filter@invalid-filter-with-plane:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#6503]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-plane.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#1499])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-8/igt@kms_vrr@max-min.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][84] -> [INCOMPLETE][85] ([Intel XE#6321] / [Intel XE#8355])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html

  * igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#7482]) +6 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-2/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#1392]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#8374]) +6 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#8374]) +5 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-7/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#8364]) +9 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#8364]) +15 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-4/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html

  * igt@xe_exec_reset@multi-queue-cat-error-on-secondary:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#8369]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@xe_exec_reset@multi-queue-cat-error-on-secondary.html

  * igt@xe_exec_threads@threads-multi-queue-cm-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#8378])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#8378]) +5 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
    - shard-bmg:          NOTRUN -> [ABORT][97] ([Intel XE#8007])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html

  * igt@xe_madvise@atomic-cpu:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#7980])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-7/igt@xe_madvise@atomic-cpu.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-basic:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#6964]) +2 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-4/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#6964])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-6/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html

  * igt@xe_non_msix@walker-interrupt-notification-non-msix:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#7622])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-5/igt@xe_non_msix@walker-interrupt-notification-non-msix.html

  * igt@xe_page_reclaim@binds-1g-partial:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#7793])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@xe_page_reclaim@binds-1g-partial.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2245] / [Intel XE#7590])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-7/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#584] / [Intel XE#7369])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-5/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [PASS][107] -> [FAIL][108] ([Intel XE#6569])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#4273])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-4/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_sriov_scheduling@equal-throughput-normal-priority:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#8339])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-5/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html

  
#### Possible fixes ####

  * igt@xe_ccs@suspend-resume:
    - shard-bmg:          [INCOMPLETE][111] ([Intel XE#8602]) -> [PASS][112] +1 other test pass
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-10/igt@xe_ccs@suspend-resume.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-2/igt@xe_ccs@suspend-resume.html

  * igt@xe_exec_fault_mode@atomic-many:
    - shard-bmg:          [FAIL][113] ([Intel XE#8578]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-6/igt@xe_exec_fault_mode@atomic-many.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-2/igt@xe_exec_fault_mode@atomic-many.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-race-nomemset:
    - shard-lnl:          [ABORT][115] ([Intel XE#8007]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-race-nomemset.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-race-nomemset.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
    - shard-bmg:          [ABORT][117] ([Intel XE#8007]) -> [PASS][118] +2 other tests pass
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-bmg:          [FAIL][119] ([Intel XE#6569]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_wedged@basic-wedged:
    - shard-lnl:          [ABORT][121] ([Intel XE#3119]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-lnl-8/igt@xe_wedged@basic-wedged.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-5/igt@xe_wedged@basic-wedged.html

  
#### Warnings ####

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][123] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][124] ([Intel XE#2509] / [Intel XE#7437])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_vm@out-of-memory:
    - shard-lnl:          [SKIP][125] ([Intel XE#5745] / [Intel XE#7892]) -> [ABORT][126] ([Intel XE#8007])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218/shard-lnl-1/igt@xe_vm@out-of-memory.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v6/shard-lnl-3/igt@xe_vm@out-of-memory.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [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#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643
  [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [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#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
  [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#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
  [Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
  [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
  [Intel XE#8361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8361
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
  [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
  [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
  [Intel XE#8578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8578
  [Intel XE#8602]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8602
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870


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

  * IGT: IGT_9003 -> IGT_9005
  * Linux: xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218 -> xe-pw-168743v6

  IGT_9003: 9003
  IGT_9005: 5d0cdd6f2f5d3ad4992da1edf67f22622a8bb153 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5391-83d782d98f4ebb4a10b8ee107e3a389917e0b218: 83d782d98f4ebb4a10b8ee107e3a389917e0b218
  xe-pw-168743v6: 168743v6

== Logs ==

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

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

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

* [PATCH v7] drm/xe: Add debugfs knob to control GPGPU preemption granularity
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (21 preceding siblings ...)
  2026-07-13 18:08 ` ✓ Xe.CI.FULL: success " Patchwork
@ 2026-07-14 11:59 ` Varun Gupta
  2026-07-15 21:27   ` Gustavo Sousa
  2026-07-14 13:01 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7) Patchwork
                   ` (2 subsequent siblings)
  25 siblings, 1 reply; 29+ messages in thread
From: Varun Gupta @ 2026-07-14 11:59 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, gustavo.sousa, stuart.summers

Introduce a per-GT debugfs knob, 'gpgpu_preemption_level', to allow
overriding the GPGPU preemption level on a per-context basis for newly
created LRCs.
Add an RTP rule to enable per-context control via FF_SLICE_CS_CHICKEN1,
allowing the preemption level to be programmed directly into the LRC
image at CTX_CS_CHICKEN1 during context initialization.

v7:
  - Restrict XEHP_FUSE4 read to Xe2+ primary GTs to prevent invalid
    Media GT accesses and SR-IOV warnings. (Sashiko)

v6:
  - Add missing xe_gt_printk.h include to fix compilation failure.

v5:
  - Use correct offset for CTX_CS_CHICKEN1. (Matt)
  - Restrict to the RCS engine. (Matt)
  - Drop LRC layout table modifications; dummy layouts do not need late
    context registers. (Matt)
  - Stash WMTP fuse state at boot to remove pm/forcewake from debugfs.
    (Matt)
  - Rename debugfs knob to 'gpgpu_preemption_level'. (Matt)
  - Use simple_write_to_buffer() and remove unnecessary READ_ONCE/
    WRITE_ONCE macros. (Matt)
  - Do not restrict debugfs visibility for SR-IOV VFs. (Matt)

v4
  - Fix incorrect NOP padding in the RCS context layout. (Sashiko)

v3:
  - Wrapped XEHP_FUSE4 forcewake read with xe_pm_runtime_get/put to
    prevent PCIe aborts/timeouts when the GPU is in D3hot/D3cold. (sashiko)
  - Fixed NOP macro truncation by splitting padding offsets larger than
    0x7f into multiple NOPs, ensuring correct context layout. (sashiko)
  - Converted CTX_CS_CHICKEN1 initialization to a read-modify-write
    sequence to avoid overwriting golden context mask bits. (sashiko)
  - Removed the FF_SLICE_CS_CHICKEN1 workaround for CCS engines, as
    compute engines lack this 3D fixed-function register, which was
    causing GuC "illegal register" panics on initialization.

v2:
  - Dropped the WA BB/MI_LRI path; per Bspec, CS_CHICKEN1 is context
    save/restore state at DW 0x00E2, so we map CTX_CS_CHICKEN1 and program
    it directly in LRC init via xe_lrc_write_ctx_reg(). (Matt)
  - Split Xe2 CCS context offsets into a dedicated xe2_ccs_offsets array
    to map CS_CHICKEN1 without polluting other XCS engines.
  - Converted the debugfs interface from a binary boolean to a
    multi-option string knob ("default", "mid-thread", "thread-group",
    "command"). (Gustavo)
  - Restricted file creation to the Physical Function
    (!IS_SRIOV_VF). (Gustavo)
  - Added kernel tainting (TAINT_USER) when deviating from
    defaults. (Gustavo)
  - Added power-safe hardware fuse check (FUSE4 register 0x9114[20],
    CFEG_WMTP_DISABLE) before allowing MTP selection. (Matt)

Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
 drivers/gpu/drm/xe/regs/xe_lrc_layout.h |  2 +
 drivers/gpu/drm/xe/xe_gt.c              |  5 ++
 drivers/gpu/drm/xe/xe_gt_debugfs.c      | 65 +++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_gt_types.h        | 34 +++++++++++++
 drivers/gpu/drm/xe/xe_lrc.c             | 29 +++++++++++
 drivers/gpu/drm/xe/xe_wa.c              |  6 +++
 6 files changed, 141 insertions(+)

diff --git a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
index 4ab86fc369fd..6f7abc0181b5 100644
--- a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
+++ b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
@@ -37,6 +37,8 @@
 #define CTX_QUEUE_TIMESTAMP		(0xd0 + 1)
 #define CTX_QUEUE_TIMESTAMP_UDW		(0xd2 + 1)
 
+#define CTX_CS_CHICKEN1			(0x12e + 1)
+
 #define INDIRECT_CTX_RING_HEAD		(0x02 + 1)
 #define INDIRECT_CTX_RING_TAIL		(0x04 + 1)
 #define INDIRECT_CTX_RING_START		(0x06 + 1)
diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index 783eb6d631b5..688cadb9b589 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -607,6 +607,11 @@ static int gt_init_with_gt_forcewake(struct xe_gt *gt)
 	 * on pre-MTL platforms, reading it there will (correctly) return 0.
 	 */
 	gt->info.gmdid = xe_mmio_read32(&gt->mmio, GMD_ID);
+	if (GRAPHICS_VER(gt_to_xe(gt)) >= 20 && xe_gt_is_main_type(gt))
+		gt->info.has_wmtp_disabled = !!(xe_mmio_read32(&gt->mmio, XEHP_FUSE4) &
+			CFEG_WMTP_DISABLE);
+	else
+		gt->info.has_wmtp_disabled = 0;
 
 	/*
 	 * Wa_14026539277 can't be implemented as a regular GT workaround (i.e.
diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index c38bcacb27e4..288590003461 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -6,6 +6,8 @@
 #include "xe_gt_debugfs.h"
 
 #include <linux/debugfs.h>
+#include <linux/panic.h>
+#include <linux/string.h>
 
 #include <drm/drm_debugfs.h>
 #include <drm/drm_managed.h>
@@ -15,6 +17,7 @@
 #include "xe_gt.h"
 #include "xe_gt_mcr.h"
 #include "xe_gt_idle.h"
+#include "xe_gt_printk.h"
 #include "xe_gt_sriov_pf_debugfs.h"
 #include "xe_gt_sriov_vf_debugfs.h"
 #include "xe_gt_stats.h"
@@ -336,6 +339,65 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
 }
 DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
 
+static const char * const gpgpu_preemption_level_names[] = {
+	[XE_GPGPU_PREEMPT_DEFAULT]      = "default",
+	[XE_GPGPU_PREEMPT_MID_THREAD]   = "mid-thread",
+	[XE_GPGPU_PREEMPT_THREAD_GROUP] = "thread-group",
+	[XE_GPGPU_PREEMPT_COMMAND]      = "command",
+};
+
+static int gpgpu_preemption_level_show(struct seq_file *m, void *unused)
+{
+	struct xe_gt *gt = m->private;
+
+	seq_printf(m, "%s\n", gpgpu_preemption_level_names[gt->gpgpu_preemption_level]);
+
+	return 0;
+}
+
+static ssize_t gpgpu_preemption_level_write(struct file *file,
+					    const char __user *ubuf,
+					    size_t len, loff_t *offp)
+{
+	struct seq_file *m = file->private_data;
+	struct xe_gt *gt = m->private;
+	enum xe_gpgpu_preempt_level new_level;
+	char buf[16];
+	ssize_t copied;
+	int idx;
+
+	if (*offp)
+		return -EINVAL;
+
+	copied = simple_write_to_buffer(buf, sizeof(buf) - 1, offp, ubuf, len);
+	if (copied < 0)
+		return copied;
+
+	buf[copied] = '\0';
+	idx = sysfs_match_string(gpgpu_preemption_level_names, strim(buf));
+	if (idx < 0)
+		return idx;
+
+	new_level = (enum xe_gpgpu_preempt_level)idx;
+
+	if (new_level == XE_GPGPU_PREEMPT_MID_THREAD && gt->info.has_wmtp_disabled) {
+		xe_gt_warn(gt, "MTP fused off in hardware, cannot select mid-thread\n");
+		return -EPERM;
+	}
+
+	if (new_level != XE_GPGPU_PREEMPT_DEFAULT) {
+		add_taint(TAINT_USER, LOCKDEP_STILL_OK);
+		xe_gt_notice(gt,
+			     "GPGPU preemption overridden to '%s' (applies to new LRCs only)\n",
+			     gpgpu_preemption_level_names[new_level]);
+	}
+
+	gt->gpgpu_preemption_level = new_level;
+
+	return copied;
+}
+DEFINE_SHOW_STORE_ATTRIBUTE(gpgpu_preemption_level);
+
 void xe_gt_debugfs_register(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
@@ -368,6 +430,9 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
 	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
 	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
 	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);
+	if (GRAPHICS_VER(xe) >= 20 && (gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK))
+		debugfs_create_file("gpgpu_preemption_level", 0600, root,
+				    gt, &gpgpu_preemption_level_fops);
 
 	drm_debugfs_create_files(vf_safe_debugfs_list,
 				 ARRAY_SIZE(vf_safe_debugfs_list),
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index e5588c88800a..97bd943309b3 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -35,6 +35,33 @@ enum xe_gt_eu_type {
 	XE_GT_EU_TYPE_SIMD16,
 };
 
+/**
+ * enum xe_gpgpu_preempt_level - Per-context GPGPU preemption override mode
+ *
+ * Selects the preemption granularity programmed into CS_CHICKEN1[2:1] for
+ * newly created Xe2+ RCS LRCs.
+ *
+ * The per-context override is effective only when
+ * FF_SLICE_CS_CHICKEN1[FFSC_PERCTX_PREEMPT_CTRL] is enabled via RTP.
+ *
+ * This setting is GT-scoped and affects only LRCs created after the value is
+ * changed; existing contexts keep their previously programmed value.
+ *
+ * @XE_GPGPU_PREEMPT_DEFAULT: Keep platform default preemption granularity.
+ * @XE_GPGPU_PREEMPT_MID_THREAD: Force mid-thread preemption level.
+ * @XE_GPGPU_PREEMPT_THREAD_GROUP: Force thread-group preemption level.
+ * @XE_GPGPU_PREEMPT_COMMAND: Force command-level preemption.
+ *
+ * Zero-initialized via kzalloc, so XE_GPGPU_PREEMPT_DEFAULT is the safe
+ * default (no override from platform policy).
+ */
+enum xe_gpgpu_preempt_level {
+	XE_GPGPU_PREEMPT_DEFAULT = 0,
+	XE_GPGPU_PREEMPT_MID_THREAD,
+	XE_GPGPU_PREEMPT_THREAD_GROUP,
+	XE_GPGPU_PREEMPT_COMMAND,
+};
+
 #define XE_MAX_DSS_FUSE_REGS		4
 #define XE_MAX_DSS_FUSE_BITS		(32 * XE_MAX_DSS_FUSE_REGS)
 #define XE_MAX_EU_FUSE_REGS		1
@@ -151,6 +178,8 @@ struct xe_gt {
 		 * feature.
 		 */
 		u8 has_xe2_blt_instructions:1;
+		/** @info.has_wmtp_disabled: hardware fuse indicates WMTP is disabled */
+		u8 has_wmtp_disabled:1;
 		/**
 		 * @info.num_geometry_xecore_fuse_regs: Number of 32b-bit fuse
 		 * registers the geometry XeCore mask spans.
@@ -219,6 +248,11 @@ struct xe_gt {
 	 */
 	u32 ccs_mode;
 
+	/**
+	 * @gpgpu_preemption_level: per-GT GPGPU preemption granularity override.
+	 */
+	enum xe_gpgpu_preempt_level gpgpu_preemption_level;
+
 	/** @usm: unified shared memory state */
 	struct {
 		/**
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 3e7c995085d0..1733bbe65288 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1589,6 +1589,35 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
 	if (xe->info.has_asid && vm)
 		xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
 
+	if (GRAPHICS_VER(xe) >= 20 && hwe->class == XE_ENGINE_CLASS_RENDER) {
+		enum xe_gpgpu_preempt_level level = gt->gpgpu_preemption_level;
+
+		if (level != XE_GPGPU_PREEMPT_DEFAULT) {
+			u32 level_bits;
+			u32 val;
+
+			switch (level) {
+			case XE_GPGPU_PREEMPT_MID_THREAD:
+				level_bits = PREEMPT_GPGPU_MID_THREAD_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_THREAD_GROUP:
+				level_bits = PREEMPT_GPGPU_THREAD_GROUP_LEVEL;
+				break;
+			case XE_GPGPU_PREEMPT_COMMAND:
+				level_bits = PREEMPT_GPGPU_COMMAND_LEVEL;
+				break;
+			default:
+				level_bits = 0;
+				break;
+			}
+
+			val = xe_lrc_read_ctx_reg(lrc, CTX_CS_CHICKEN1);
+			val &= ~PREEMPT_GPGPU_LEVEL_MASK;
+			val |= REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, level_bits);
+			xe_lrc_write_ctx_reg(lrc, CTX_CS_CHICKEN1, val);
+		}
+	}
+
 	lrc->desc = LRC_VALID;
 	lrc->desc |= FIELD_PREP(LRC_ADDRESSING_MODE, LRC_LEGACY_64B_CONTEXT);
 	/* TODO: Priority */
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 139434946f8f..70072963aba0 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -347,6 +347,12 @@ static const struct xe_rtp_table_sr engine_was = XE_RTP_TABLE_SR(
 	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
 			     FFSC_PERCTX_PREEMPT_CTRL))
 	},
+	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2"),
+	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
+		       ENGINE_CLASS(RENDER)),
+	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
+			     FFSC_PERCTX_PREEMPT_CTRL))
+	},
 	{ XE_RTP_NAME("18032247524"),
 	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2004),
 		       FUNC(xe_rtp_match_first_render_or_compute)),
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (22 preceding siblings ...)
  2026-07-14 11:59 ` [PATCH v7] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
@ 2026-07-14 13:01 ` Patchwork
  2026-07-14 13:38 ` ✓ Xe.CI.BAT: " Patchwork
  2026-07-14 18:50 ` ✓ Xe.CI.FULL: " Patchwork
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-14 13:01 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:00:17] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:00:22] 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
[13:00:54] Starting KUnit Kernel (1/1)...
[13:00:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:00:54] ================== guc_buf (11 subtests) ===================
[13:00:54] [PASSED] test_smallest
[13:00:54] [PASSED] test_largest
[13:00:54] [PASSED] test_granular
[13:00:54] [PASSED] test_unique
[13:00:54] [PASSED] test_overlap
[13:00:54] [PASSED] test_reusable
[13:00:54] [PASSED] test_too_big
[13:00:54] [PASSED] test_flush
[13:00:54] [PASSED] test_lookup
[13:00:54] [PASSED] test_data
[13:00:54] [PASSED] test_class
[13:00:54] ===================== [PASSED] guc_buf =====================
[13:00:54] =================== guc_dbm (7 subtests) ===================
[13:00:54] [PASSED] test_empty
[13:00:54] [PASSED] test_default
[13:00:54] ======================== test_size  ========================
[13:00:54] [PASSED] 4
[13:00:54] [PASSED] 8
[13:00:54] [PASSED] 32
[13:00:54] [PASSED] 256
[13:00:54] ==================== [PASSED] test_size ====================
[13:00:54] ======================= test_reuse  ========================
[13:00:54] [PASSED] 4
[13:00:54] [PASSED] 8
[13:00:54] [PASSED] 32
[13:00:54] [PASSED] 256
[13:00:54] =================== [PASSED] test_reuse ====================
[13:00:54] =================== test_range_overlap  ====================
[13:00:54] [PASSED] 4
[13:00:54] [PASSED] 8
[13:00:54] [PASSED] 32
[13:00:54] [PASSED] 256
[13:00:54] =============== [PASSED] test_range_overlap ================
[13:00:54] =================== test_range_compact  ====================
[13:00:54] [PASSED] 4
[13:00:54] [PASSED] 8
[13:00:54] [PASSED] 32
[13:00:54] [PASSED] 256
[13:00:54] =============== [PASSED] test_range_compact ================
[13:00:54] ==================== test_range_spare  =====================
[13:00:54] [PASSED] 4
[13:00:54] [PASSED] 8
[13:00:54] [PASSED] 32
[13:00:54] [PASSED] 256
[13:00:54] ================ [PASSED] test_range_spare =================
[13:00:54] ===================== [PASSED] guc_dbm =====================
[13:00:54] =================== guc_idm (6 subtests) ===================
[13:00:54] [PASSED] bad_init
[13:00:54] [PASSED] no_init
[13:00:54] [PASSED] init_fini
[13:00:54] [PASSED] check_used
[13:00:54] [PASSED] check_quota
[13:00:54] [PASSED] check_all
[13:00:54] ===================== [PASSED] guc_idm =====================
[13:00:54] =============== guc_klv_helpers (9 subtests) ===============
[13:00:54] [PASSED] test_count
[13:00:54] [PASSED] test_encode_u32
[13:00:54] [PASSED] test_encode_u64
[13:00:54] [PASSED] test_encode_string
[13:00:54] [PASSED] test_encode_object_raw
[13:00:54] [PASSED] test_encode_object_klv
[13:00:54] [PASSED] test_encode_object_nested
[13:00:54] [PASSED] test_encode_object_basic
[13:00:54] [PASSED] test_print
[13:00:54] ================= [PASSED] guc_klv_helpers =================
[13:00:54] ================== no_relay (3 subtests) ===================
[13:00:54] [PASSED] xe_drops_guc2pf_if_not_ready
[13:00:54] [PASSED] xe_drops_guc2vf_if_not_ready
[13:00:54] [PASSED] xe_rejects_send_if_not_ready
[13:00:54] ==================== [PASSED] no_relay =====================
[13:00:54] ================== pf_relay (14 subtests) ==================
[13:00:54] [PASSED] pf_rejects_guc2pf_too_short
[13:00:54] [PASSED] pf_rejects_guc2pf_too_long
[13:00:54] [PASSED] pf_rejects_guc2pf_no_payload
[13:00:54] [PASSED] pf_fails_no_payload
[13:00:54] [PASSED] pf_fails_bad_origin
[13:00:54] [PASSED] pf_fails_bad_type
[13:00:54] [PASSED] pf_txn_reports_error
[13:00:54] [PASSED] pf_txn_sends_pf2guc
[13:00:54] [PASSED] pf_sends_pf2guc
[13:00:54] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:00:54] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:00:54] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:00:54] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:00:54] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:00:54] ==================== [PASSED] pf_relay =====================
[13:00:54] ================== vf_relay (3 subtests) ===================
[13:00:54] [PASSED] vf_rejects_guc2vf_too_short
[13:00:54] [PASSED] vf_rejects_guc2vf_too_long
[13:00:54] [PASSED] vf_rejects_guc2vf_no_payload
[13:00:54] ==================== [PASSED] vf_relay =====================
[13:00:54] ================ pf_gt_config (9 subtests) =================
[13:00:54] [PASSED] fair_contexts_1vf
[13:00:54] [PASSED] fair_doorbells_1vf
[13:00:54] [PASSED] fair_ggtt_1vf
[13:00:54] ====================== fair_vram_1vf  ======================
[13:00:54] [PASSED] 3.50 GiB
[13:00:54] [PASSED] 11.5 GiB
[13:00:54] [PASSED] 15.5 GiB
[13:00:54] [PASSED] 31.5 GiB
[13:00:54] [PASSED] 63.5 GiB
[13:00:54] [PASSED] 1.91 GiB
[13:00:54] ================== [PASSED] fair_vram_1vf ==================
[13:00:54] ================ fair_vram_1vf_admin_only  =================
[13:00:54] [PASSED] 3.50 GiB
[13:00:54] [PASSED] 11.5 GiB
[13:00:54] [PASSED] 15.5 GiB
[13:00:54] [PASSED] 31.5 GiB
[13:00:54] [PASSED] 63.5 GiB
[13:00:54] [PASSED] 1.91 GiB
[13:00:54] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:00:54] ====================== fair_contexts  ======================
[13:00:54] [PASSED] 1 VF
[13:00:54] [PASSED] 2 VFs
[13:00:54] [PASSED] 3 VFs
[13:00:54] [PASSED] 4 VFs
[13:00:54] [PASSED] 5 VFs
[13:00:54] [PASSED] 6 VFs
[13:00:54] [PASSED] 7 VFs
[13:00:54] [PASSED] 8 VFs
[13:00:54] [PASSED] 9 VFs
[13:00:54] [PASSED] 10 VFs
[13:00:54] [PASSED] 11 VFs
[13:00:54] [PASSED] 12 VFs
[13:00:54] [PASSED] 13 VFs
[13:00:54] [PASSED] 14 VFs
[13:00:54] [PASSED] 15 VFs
[13:00:54] [PASSED] 16 VFs
[13:00:54] [PASSED] 17 VFs
[13:00:54] [PASSED] 18 VFs
[13:00:54] [PASSED] 19 VFs
[13:00:54] [PASSED] 20 VFs
[13:00:54] [PASSED] 21 VFs
[13:00:54] [PASSED] 22 VFs
[13:00:54] [PASSED] 23 VFs
[13:00:54] [PASSED] 24 VFs
[13:00:54] [PASSED] 25 VFs
[13:00:54] [PASSED] 26 VFs
[13:00:54] [PASSED] 27 VFs
[13:00:54] [PASSED] 28 VFs
[13:00:54] [PASSED] 29 VFs
[13:00:54] [PASSED] 30 VFs
[13:00:54] [PASSED] 31 VFs
[13:00:54] [PASSED] 32 VFs
[13:00:54] [PASSED] 33 VFs
[13:00:54] [PASSED] 34 VFs
[13:00:54] [PASSED] 35 VFs
[13:00:54] [PASSED] 36 VFs
[13:00:54] [PASSED] 37 VFs
[13:00:54] [PASSED] 38 VFs
[13:00:54] [PASSED] 39 VFs
[13:00:54] [PASSED] 40 VFs
[13:00:54] [PASSED] 41 VFs
[13:00:54] [PASSED] 42 VFs
[13:00:54] [PASSED] 43 VFs
[13:00:54] [PASSED] 44 VFs
[13:00:54] [PASSED] 45 VFs
[13:00:54] [PASSED] 46 VFs
[13:00:54] [PASSED] 47 VFs
[13:00:54] [PASSED] 48 VFs
[13:00:54] [PASSED] 49 VFs
[13:00:54] [PASSED] 50 VFs
[13:00:54] [PASSED] 51 VFs
[13:00:54] [PASSED] 52 VFs
[13:00:54] [PASSED] 53 VFs
[13:00:54] [PASSED] 54 VFs
[13:00:54] [PASSED] 55 VFs
[13:00:54] [PASSED] 56 VFs
[13:00:54] [PASSED] 57 VFs
[13:00:54] [PASSED] 58 VFs
[13:00:54] [PASSED] 59 VFs
[13:00:54] [PASSED] 60 VFs
[13:00:54] [PASSED] 61 VFs
[13:00:54] [PASSED] 62 VFs
[13:00:54] [PASSED] 63 VFs
[13:00:54] ================== [PASSED] fair_contexts ==================
[13:00:54] ===================== fair_doorbells  ======================
[13:00:54] [PASSED] 1 VF
[13:00:54] [PASSED] 2 VFs
[13:00:54] [PASSED] 3 VFs
[13:00:54] [PASSED] 4 VFs
[13:00:54] [PASSED] 5 VFs
[13:00:54] [PASSED] 6 VFs
[13:00:54] [PASSED] 7 VFs
[13:00:54] [PASSED] 8 VFs
[13:00:54] [PASSED] 9 VFs
[13:00:54] [PASSED] 10 VFs
[13:00:54] [PASSED] 11 VFs
[13:00:54] [PASSED] 12 VFs
[13:00:54] [PASSED] 13 VFs
[13:00:54] [PASSED] 14 VFs
[13:00:54] [PASSED] 15 VFs
[13:00:54] [PASSED] 16 VFs
[13:00:54] [PASSED] 17 VFs
[13:00:54] [PASSED] 18 VFs
[13:00:54] [PASSED] 19 VFs
[13:00:54] [PASSED] 20 VFs
[13:00:54] [PASSED] 21 VFs
[13:00:54] [PASSED] 22 VFs
[13:00:54] [PASSED] 23 VFs
[13:00:54] [PASSED] 24 VFs
[13:00:54] [PASSED] 25 VFs
[13:00:54] [PASSED] 26 VFs
[13:00:54] [PASSED] 27 VFs
[13:00:54] [PASSED] 28 VFs
[13:00:54] [PASSED] 29 VFs
[13:00:54] [PASSED] 30 VFs
[13:00:54] [PASSED] 31 VFs
[13:00:54] [PASSED] 32 VFs
[13:00:54] [PASSED] 33 VFs
[13:00:54] [PASSED] 34 VFs
[13:00:54] [PASSED] 35 VFs
[13:00:54] [PASSED] 36 VFs
[13:00:54] [PASSED] 37 VFs
[13:00:54] [PASSED] 38 VFs
[13:00:54] [PASSED] 39 VFs
[13:00:54] [PASSED] 40 VFs
[13:00:54] [PASSED] 41 VFs
[13:00:54] [PASSED] 42 VFs
[13:00:54] [PASSED] 43 VFs
[13:00:54] [PASSED] 44 VFs
[13:00:54] [PASSED] 45 VFs
[13:00:54] [PASSED] 46 VFs
[13:00:54] [PASSED] 47 VFs
[13:00:54] [PASSED] 48 VFs
[13:00:54] [PASSED] 49 VFs
[13:00:54] [PASSED] 50 VFs
[13:00:54] [PASSED] 51 VFs
[13:00:54] [PASSED] 52 VFs
[13:00:54] [PASSED] 53 VFs
[13:00:54] [PASSED] 54 VFs
[13:00:54] [PASSED] 55 VFs
[13:00:54] [PASSED] 56 VFs
[13:00:54] [PASSED] 57 VFs
[13:00:54] [PASSED] 58 VFs
[13:00:54] [PASSED] 59 VFs
[13:00:54] [PASSED] 60 VFs
[13:00:54] [PASSED] 61 VFs
[13:00:54] [PASSED] 62 VFs
[13:00:54] [PASSED] 63 VFs
[13:00:54] ================= [PASSED] fair_doorbells ==================
[13:00:54] ======================== fair_ggtt  ========================
[13:00:54] [PASSED] 1 VF
[13:00:54] [PASSED] 2 VFs
[13:00:54] [PASSED] 3 VFs
[13:00:54] [PASSED] 4 VFs
[13:00:54] [PASSED] 5 VFs
[13:00:54] [PASSED] 6 VFs
[13:00:54] [PASSED] 7 VFs
[13:00:54] [PASSED] 8 VFs
[13:00:54] [PASSED] 9 VFs
[13:00:54] [PASSED] 10 VFs
[13:00:54] [PASSED] 11 VFs
[13:00:54] [PASSED] 12 VFs
[13:00:54] [PASSED] 13 VFs
[13:00:54] [PASSED] 14 VFs
[13:00:54] [PASSED] 15 VFs
[13:00:54] [PASSED] 16 VFs
[13:00:54] [PASSED] 17 VFs
[13:00:54] [PASSED] 18 VFs
[13:00:54] [PASSED] 19 VFs
[13:00:54] [PASSED] 20 VFs
[13:00:54] [PASSED] 21 VFs
[13:00:54] [PASSED] 22 VFs
[13:00:54] [PASSED] 23 VFs
[13:00:54] [PASSED] 24 VFs
[13:00:54] [PASSED] 25 VFs
[13:00:54] [PASSED] 26 VFs
[13:00:54] [PASSED] 27 VFs
[13:00:54] [PASSED] 28 VFs
[13:00:54] [PASSED] 29 VFs
[13:00:54] [PASSED] 30 VFs
[13:00:54] [PASSED] 31 VFs
[13:00:54] [PASSED] 32 VFs
[13:00:54] [PASSED] 33 VFs
[13:00:54] [PASSED] 34 VFs
[13:00:54] [PASSED] 35 VFs
[13:00:54] [PASSED] 36 VFs
[13:00:54] [PASSED] 37 VFs
[13:00:54] [PASSED] 38 VFs
[13:00:54] [PASSED] 39 VFs
[13:00:54] [PASSED] 40 VFs
[13:00:54] [PASSED] 41 VFs
[13:00:54] [PASSED] 42 VFs
[13:00:54] [PASSED] 43 VFs
[13:00:54] [PASSED] 44 VFs
[13:00:54] [PASSED] 45 VFs
[13:00:54] [PASSED] 46 VFs
[13:00:54] [PASSED] 47 VFs
[13:00:54] [PASSED] 48 VFs
[13:00:54] [PASSED] 49 VFs
[13:00:54] [PASSED] 50 VFs
[13:00:54] [PASSED] 51 VFs
[13:00:54] [PASSED] 52 VFs
[13:00:54] [PASSED] 53 VFs
[13:00:54] [PASSED] 54 VFs
[13:00:54] [PASSED] 55 VFs
[13:00:54] [PASSED] 56 VFs
[13:00:54] [PASSED] 57 VFs
[13:00:54] [PASSED] 58 VFs
[13:00:54] [PASSED] 59 VFs
[13:00:54] [PASSED] 60 VFs
[13:00:54] [PASSED] 61 VFs
[13:00:54] [PASSED] 62 VFs
[13:00:54] [PASSED] 63 VFs
[13:00:54] ==================== [PASSED] fair_ggtt ====================
[13:00:54] ======================== fair_vram  ========================
[13:00:54] [PASSED] 1 VF
[13:00:54] [PASSED] 2 VFs
[13:00:54] [PASSED] 3 VFs
[13:00:54] [PASSED] 4 VFs
[13:00:54] [PASSED] 5 VFs
[13:00:54] [PASSED] 6 VFs
[13:00:54] [PASSED] 7 VFs
[13:00:54] [PASSED] 8 VFs
[13:00:54] [PASSED] 9 VFs
[13:00:54] [PASSED] 10 VFs
[13:00:54] [PASSED] 11 VFs
[13:00:54] [PASSED] 12 VFs
[13:00:54] [PASSED] 13 VFs
[13:00:54] [PASSED] 14 VFs
[13:00:54] [PASSED] 15 VFs
[13:00:54] [PASSED] 16 VFs
[13:00:54] [PASSED] 17 VFs
[13:00:54] [PASSED] 18 VFs
[13:00:54] [PASSED] 19 VFs
[13:00:54] [PASSED] 20 VFs
[13:00:54] [PASSED] 21 VFs
[13:00:54] [PASSED] 22 VFs
[13:00:54] [PASSED] 23 VFs
[13:00:54] [PASSED] 24 VFs
[13:00:54] [PASSED] 25 VFs
[13:00:54] [PASSED] 26 VFs
[13:00:54] [PASSED] 27 VFs
[13:00:54] [PASSED] 28 VFs
[13:00:54] [PASSED] 29 VFs
[13:00:54] [PASSED] 30 VFs
[13:00:54] [PASSED] 31 VFs
[13:00:54] [PASSED] 32 VFs
[13:00:54] [PASSED] 33 VFs
[13:00:54] [PASSED] 34 VFs
[13:00:54] [PASSED] 35 VFs
[13:00:54] [PASSED] 36 VFs
[13:00:54] [PASSED] 37 VFs
[13:00:54] [PASSED] 38 VFs
[13:00:54] [PASSED] 39 VFs
[13:00:54] [PASSED] 40 VFs
[13:00:54] [PASSED] 41 VFs
[13:00:54] [PASSED] 42 VFs
[13:00:54] [PASSED] 43 VFs
[13:00:54] [PASSED] 44 VFs
[13:00:54] [PASSED] 45 VFs
[13:00:54] [PASSED] 46 VFs
[13:00:54] [PASSED] 47 VFs
[13:00:54] [PASSED] 48 VFs
[13:00:54] [PASSED] 49 VFs
[13:00:54] [PASSED] 50 VFs
[13:00:54] [PASSED] 51 VFs
[13:00:54] [PASSED] 52 VFs
[13:00:54] [PASSED] 53 VFs
[13:00:54] [PASSED] 54 VFs
[13:00:54] [PASSED] 55 VFs
[13:00:54] [PASSED] 56 VFs
[13:00:54] [PASSED] 57 VFs
[13:00:54] [PASSED] 58 VFs
[13:00:54] [PASSED] 59 VFs
[13:00:54] [PASSED] 60 VFs
[13:00:54] [PASSED] 61 VFs
[13:00:54] [PASSED] 62 VFs
[13:00:54] [PASSED] 63 VFs
[13:00:54] ==================== [PASSED] fair_vram ====================
[13:00:54] ================== [PASSED] pf_gt_config ===================
[13:00:54] ===================== lmtt (1 subtest) =====================
[13:00:54] ======================== test_ops  =========================
[13:00:54] [PASSED] 2-level
[13:00:54] [PASSED] multi-level
[13:00:54] ==================== [PASSED] test_ops =====================
[13:00:54] ====================== [PASSED] lmtt =======================
[13:00:54] ================= sriov_packet (1 subtest) =================
[13:00:54] [PASSED] test_descriptor_init
[13:00:54] ================== [PASSED] sriov_packet ===================
[13:00:54] ================= pf_service (11 subtests) =================
[13:00:54] [PASSED] pf_negotiate_any
[13:00:54] [PASSED] pf_negotiate_base_match
[13:00:54] [PASSED] pf_negotiate_base_newer
[13:00:54] [PASSED] pf_negotiate_base_next
[13:00:54] [SKIPPED] pf_negotiate_base_older (no older minor)
[13:00:54] [PASSED] pf_negotiate_base_prev
[13:00:54] [PASSED] pf_negotiate_latest_match
[13:00:54] [PASSED] pf_negotiate_latest_newer
[13:00:54] [PASSED] pf_negotiate_latest_next
[13:00:54] [SKIPPED] pf_negotiate_latest_older (no older minor)
[13:00:54] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[13:00:54] =================== [PASSED] pf_service ====================
[13:00:54] ================= xe_guc_g2g (2 subtests) ==================
[13:00:54] ============== xe_live_guc_g2g_kunit_default  ==============
[13:00:54] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:00:54] ============== xe_live_guc_g2g_kunit_allmem  ===============
[13:00:54] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:00:54] =================== [SKIPPED] xe_guc_g2g ===================
[13:00:54] =================== xe_mocs (2 subtests) ===================
[13:00:54] ================ xe_live_mocs_kernel_kunit  ================
[13:00:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:00:54] ================ xe_live_mocs_reset_kunit  =================
[13:00:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:00:54] ==================== [SKIPPED] xe_mocs =====================
[13:00:54] ================= xe_migrate (2 subtests) ==================
[13:00:54] ================= xe_migrate_sanity_kunit  =================
[13:00:54] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:00:54] ================== xe_validate_ccs_kunit  ==================
[13:00:54] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:00:54] =================== [SKIPPED] xe_migrate ===================
[13:00:54] ================== xe_dma_buf (1 subtest) ==================
[13:00:54] ==================== xe_dma_buf_kunit  =====================
[13:00:54] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:00:54] =================== [SKIPPED] xe_dma_buf ===================
[13:00:54] ================= xe_bo_shrink (1 subtest) =================
[13:00:54] =================== xe_bo_shrink_kunit  ====================
[13:00:54] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:00:54] ================== [SKIPPED] xe_bo_shrink ==================
[13:00:54] ==================== xe_bo (2 subtests) ====================
[13:00:54] ================== xe_ccs_migrate_kunit  ===================
[13:00:54] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:00:54] ==================== xe_bo_evict_kunit  ====================
[13:00:54] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:00:54] ===================== [SKIPPED] xe_bo ======================
[13:00:54] ==================== args (13 subtests) ====================
[13:00:54] [PASSED] count_args_test
[13:00:54] [PASSED] call_args_example
[13:00:54] [PASSED] call_args_test
[13:00:54] [PASSED] drop_first_arg_example
[13:00:54] [PASSED] drop_first_arg_test
[13:00:54] [PASSED] first_arg_example
[13:00:54] [PASSED] first_arg_test
[13:00:54] [PASSED] last_arg_example
[13:00:54] [PASSED] last_arg_test
[13:00:54] [PASSED] pick_arg_example
[13:00:54] [PASSED] if_args_example
[13:00:54] [PASSED] if_args_test
[13:00:54] [PASSED] sep_comma_example
[13:00:54] ====================== [PASSED] args =======================
[13:00:54] =================== xe_pci (3 subtests) ====================
[13:00:54] ==================== check_graphics_ip  ====================
[13:00:54] [PASSED] 12.00 Xe_LP
[13:00:54] [PASSED] 12.10 Xe_LP+
[13:00:54] [PASSED] 12.55 Xe_HPG
[13:00:54] [PASSED] 12.60 Xe_HPC
[13:00:54] [PASSED] 12.70 Xe_LPG
[13:00:54] [PASSED] 12.71 Xe_LPG
[13:00:54] [PASSED] 12.74 Xe_LPG+
[13:00:54] [PASSED] 20.01 Xe2_HPG
[13:00:54] [PASSED] 20.02 Xe2_HPG
[13:00:54] [PASSED] 20.04 Xe2_LPG
[13:00:54] [PASSED] 30.00 Xe3_LPG
[13:00:54] [PASSED] 30.01 Xe3_LPG
[13:00:54] [PASSED] 30.03 Xe3_LPG
[13:00:54] [PASSED] 30.04 Xe3_LPG
[13:00:54] [PASSED] 30.05 Xe3_LPG
[13:00:54] [PASSED] 35.10 Xe3p_LPG
[13:00:54] [PASSED] 35.11 Xe3p_XPC
[13:00:54] ================ [PASSED] check_graphics_ip ================
[13:00:54] ===================== check_media_ip  ======================
[13:00:54] [PASSED] 12.00 Xe_M
[13:00:54] [PASSED] 12.55 Xe_HPM
[13:00:54] [PASSED] 13.00 Xe_LPM+
[13:00:54] [PASSED] 13.01 Xe2_HPM
[13:00:54] [PASSED] 20.00 Xe2_LPM
[13:00:54] [PASSED] 30.00 Xe3_LPM
[13:00:54] [PASSED] 30.02 Xe3_LPM
[13:00:54] [PASSED] 35.00 Xe3p_LPM
[13:00:54] [PASSED] 35.03 Xe3p_HPM
[13:00:54] ================= [PASSED] check_media_ip ==================
[13:00:54] =================== check_platform_desc  ===================
[13:00:54] [PASSED] 0x9A60 (TIGERLAKE)
[13:00:54] [PASSED] 0x9A68 (TIGERLAKE)
[13:00:54] [PASSED] 0x9A70 (TIGERLAKE)
[13:00:54] [PASSED] 0x9A40 (TIGERLAKE)
[13:00:54] [PASSED] 0x9A49 (TIGERLAKE)
[13:00:54] [PASSED] 0x9A59 (TIGERLAKE)
[13:00:54] [PASSED] 0x9A78 (TIGERLAKE)
[13:00:54] [PASSED] 0x9AC0 (TIGERLAKE)
[13:00:54] [PASSED] 0x9AC9 (TIGERLAKE)
[13:00:54] [PASSED] 0x9AD9 (TIGERLAKE)
[13:00:54] [PASSED] 0x9AF8 (TIGERLAKE)
[13:00:54] [PASSED] 0x4C80 (ROCKETLAKE)
[13:00:54] [PASSED] 0x4C8A (ROCKETLAKE)
[13:00:54] [PASSED] 0x4C8B (ROCKETLAKE)
[13:00:54] [PASSED] 0x4C8C (ROCKETLAKE)
[13:00:54] [PASSED] 0x4C90 (ROCKETLAKE)
[13:00:54] [PASSED] 0x4C9A (ROCKETLAKE)
[13:00:54] [PASSED] 0x4680 (ALDERLAKE_S)
[13:00:54] [PASSED] 0x4682 (ALDERLAKE_S)
[13:00:54] [PASSED] 0x4688 (ALDERLAKE_S)
[13:00:54] [PASSED] 0x468A (ALDERLAKE_S)
[13:00:54] [PASSED] 0x468B (ALDERLAKE_S)
[13:00:54] [PASSED] 0x4690 (ALDERLAKE_S)
[13:00:54] [PASSED] 0x4692 (ALDERLAKE_S)
[13:00:54] [PASSED] 0x4693 (ALDERLAKE_S)
[13:00:54] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46AA (ALDERLAKE_P)
[13:00:54] [PASSED] 0x462A (ALDERLAKE_P)
[13:00:54] [PASSED] 0x4626 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x4628 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:00:54] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:00:54] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:00:54] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:00:54] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:00:54] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:00:54] [PASSED] 0xA721 (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA720 (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:00:54] [PASSED] 0xA780 (ALDERLAKE_S)
[13:00:54] [PASSED] 0xA781 (ALDERLAKE_S)
[13:00:54] [PASSED] 0xA782 (ALDERLAKE_S)
[13:00:54] [PASSED] 0xA783 (ALDERLAKE_S)
[13:00:54] [PASSED] 0xA788 (ALDERLAKE_S)
[13:00:54] [PASSED] 0xA789 (ALDERLAKE_S)
[13:00:54] [PASSED] 0xA78A (ALDERLAKE_S)
[13:00:54] [PASSED] 0xA78B (ALDERLAKE_S)
[13:00:54] [PASSED] 0x4905 (DG1)
[13:00:54] [PASSED] 0x4906 (DG1)
[13:00:54] [PASSED] 0x4907 (DG1)
[13:00:54] [PASSED] 0x4908 (DG1)
[13:00:54] [PASSED] 0x4909 (DG1)
[13:00:54] [PASSED] 0x56C0 (DG2)
[13:00:54] [PASSED] 0x56C2 (DG2)
[13:00:54] [PASSED] 0x56C1 (DG2)
[13:00:54] [PASSED] 0x7D51 (METEORLAKE)
[13:00:54] [PASSED] 0x7DD1 (METEORLAKE)
[13:00:54] [PASSED] 0x7D41 (METEORLAKE)
[13:00:54] [PASSED] 0x7D67 (METEORLAKE)
[13:00:54] [PASSED] 0xB640 (METEORLAKE)
[13:00:54] [PASSED] 0x56A0 (DG2)
[13:00:54] [PASSED] 0x56A1 (DG2)
[13:00:54] [PASSED] 0x56A2 (DG2)
[13:00:54] [PASSED] 0x56BE (DG2)
[13:00:54] [PASSED] 0x56BF (DG2)
[13:00:54] [PASSED] 0x5690 (DG2)
[13:00:54] [PASSED] 0x5691 (DG2)
[13:00:54] [PASSED] 0x5692 (DG2)
[13:00:54] [PASSED] 0x56A5 (DG2)
[13:00:54] [PASSED] 0x56A6 (DG2)
[13:00:54] [PASSED] 0x56B0 (DG2)
[13:00:54] [PASSED] 0x56B1 (DG2)
[13:00:54] [PASSED] 0x56BA (DG2)
[13:00:54] [PASSED] 0x56BB (DG2)
[13:00:54] [PASSED] 0x56BC (DG2)
[13:00:54] [PASSED] 0x56BD (DG2)
[13:00:54] [PASSED] 0x5693 (DG2)
[13:00:54] [PASSED] 0x5694 (DG2)
[13:00:54] [PASSED] 0x5695 (DG2)
[13:00:54] [PASSED] 0x56A3 (DG2)
[13:00:54] [PASSED] 0x56A4 (DG2)
[13:00:54] [PASSED] 0x56B2 (DG2)
[13:00:54] [PASSED] 0x56B3 (DG2)
[13:00:54] [PASSED] 0x5696 (DG2)
[13:00:54] [PASSED] 0x5697 (DG2)
[13:00:54] [PASSED] 0xB69 (PVC)
[13:00:54] [PASSED] 0xB6E (PVC)
[13:00:54] [PASSED] 0xBD4 (PVC)
[13:00:54] [PASSED] 0xBD5 (PVC)
[13:00:54] [PASSED] 0xBD6 (PVC)
[13:00:54] [PASSED] 0xBD7 (PVC)
[13:00:54] [PASSED] 0xBD8 (PVC)
[13:00:54] [PASSED] 0xBD9 (PVC)
[13:00:54] [PASSED] 0xBDA (PVC)
[13:00:54] [PASSED] 0xBDB (PVC)
[13:00:54] [PASSED] 0xBE0 (PVC)
[13:00:54] [PASSED] 0xBE1 (PVC)
[13:00:54] [PASSED] 0xBE5 (PVC)
[13:00:54] [PASSED] 0x7D40 (METEORLAKE)
[13:00:54] [PASSED] 0x7D45 (METEORLAKE)
[13:00:54] [PASSED] 0x7D55 (METEORLAKE)
[13:00:54] [PASSED] 0x7D60 (METEORLAKE)
[13:00:54] [PASSED] 0x7DD5 (METEORLAKE)
[13:00:54] [PASSED] 0x6420 (LUNARLAKE)
[13:00:54] [PASSED] 0x64A0 (LUNARLAKE)
[13:00:54] [PASSED] 0x64B0 (LUNARLAKE)
[13:00:54] [PASSED] 0xE202 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE209 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE20B (BATTLEMAGE)
[13:00:54] [PASSED] 0xE20C (BATTLEMAGE)
[13:00:54] [PASSED] 0xE20D (BATTLEMAGE)
[13:00:54] [PASSED] 0xE210 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE211 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE212 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE216 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE220 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE221 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE222 (BATTLEMAGE)
[13:00:54] [PASSED] 0xE223 (BATTLEMAGE)
[13:00:54] [PASSED] 0xB080 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB081 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB082 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB083 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB084 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB085 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB086 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB087 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB08F (PANTHERLAKE)
[13:00:54] [PASSED] 0xB090 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:00:54] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:00:54] [PASSED] 0xFD80 (PANTHERLAKE)
[13:00:54] [PASSED] 0xFD81 (PANTHERLAKE)
[13:00:54] [PASSED] 0xD740 (NOVALAKE_S)
[13:00:54] [PASSED] 0xD741 (NOVALAKE_S)
[13:00:54] [PASSED] 0xD742 (NOVALAKE_S)
[13:00:54] [PASSED] 0xD743 (NOVALAKE_S)
[13:00:54] [PASSED] 0xD745 (NOVALAKE_S)
[13:00:54] [PASSED] 0xD74A (NOVALAKE_S)
[13:00:54] [PASSED] 0xD74B (NOVALAKE_S)
[13:00:54] [PASSED] 0x674C (CRESCENTISLAND)
[13:00:54] [PASSED] 0x674D (CRESCENTISLAND)
[13:00:54] [PASSED] 0x674E (CRESCENTISLAND)
[13:00:54] [PASSED] 0x674F (CRESCENTISLAND)
[13:00:54] [PASSED] 0x6750 (CRESCENTISLAND)
[13:00:54] [PASSED] 0xD750 (NOVALAKE_P)
[13:00:54] [PASSED] 0xD751 (NOVALAKE_P)
[13:00:54] [PASSED] 0xD752 (NOVALAKE_P)
[13:00:54] [PASSED] 0xD753 (NOVALAKE_P)
[13:00:54] [PASSED] 0xD754 (NOVALAKE_P)
[13:00:54] [PASSED] 0xD755 (NOVALAKE_P)
[13:00:54] [PASSED] 0xD756 (NOVALAKE_P)
[13:00:54] [PASSED] 0xD757 (NOVALAKE_P)
[13:00:54] [PASSED] 0xD75F (NOVALAKE_P)
[13:00:54] =============== [PASSED] check_platform_desc ===============
[13:00:54] ===================== [PASSED] xe_pci ======================
[13:00:54] ============= xe_rtp_tables_test (5 subtests) ==============
[13:00:54] ================== xe_rtp_table_gt_test  ===================
[13:00:54] [PASSED] gt_was/14011060649
[13:00:54] [PASSED] gt_was/14011059788
[13:00:54] [PASSED] gt_was/14015795083
[13:00:54] [PASSED] gt_was/16021867713
[13:00:54] [PASSED] gt_was/14019449301
[13:00:54] [PASSED] gt_was/16028005424
[13:00:54] [PASSED] gt_was/14026578760
[13:00:54] [PASSED] gt_was/1409420604
[13:00:54] [PASSED] gt_was/1408615072
[13:00:54] [PASSED] gt_was/22010523718
[13:00:54] [PASSED] gt_was/14011006942
[13:00:54] [PASSED] gt_was/14014830051
[13:00:54] [PASSED] gt_was/18018781329
[13:00:54] [PASSED] gt_was/1509235366
[13:00:54] [PASSED] gt_was/18018781329
[13:00:54] [PASSED] gt_was/16016694945
[13:00:54] [PASSED] gt_was/14018575942
[13:00:54] [PASSED] gt_was/22016670082
[13:00:54] [PASSED] gt_was/22016670082
[13:00:54] [PASSED] gt_was/14017421178
[13:00:54] [PASSED] gt_was/16025250150
[13:00:54] [PASSED] gt_was/14021871409
[13:00:54] [PASSED] gt_was/16021865536
[13:00:54] [PASSED] gt_was/14021486841
[13:00:54] [PASSED] gt_was/14025160223
[13:00:54] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:00:54] [PASSED] gt_was/14025635424
[13:00:54] [PASSED] gt_was/16028005424
[13:00:54] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:00:54] ================== xe_rtp_table_gt_test  ===================
[13:00:54] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:00:54] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:00:54] [PASSED] gt_tunings/Tuning: L3 cache
[13:00:54] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:00:54] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:00:54] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:00:54] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:00:54] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:00:54] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:00:54] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:00:54] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:00:54] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:00:54] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:00:54] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:00:54] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:00:54] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:00:54] ================== xe_rtp_table_oob_test  ==================
[13:00:54] [PASSED] oob_was/1607983814
[13:00:54] [PASSED] oob_was/16010904313
[13:00:54] [PASSED] oob_was/18022495364
[13:00:54] [PASSED] oob_was/22012773006
[13:00:54] [PASSED] oob_was/14014475959
[13:00:54] [PASSED] oob_was/22011391025
[13:00:54] [PASSED] oob_was/22012727170
[13:00:54] [PASSED] oob_was/22012727685
[13:00:54] [PASSED] oob_was/22016596838
[13:00:54] [PASSED] oob_was/18020744125
[13:00:54] [PASSED] oob_was/1409600907
[13:00:54] [PASSED] oob_was/22014953428
[13:00:54] [PASSED] oob_was/16017236439
[13:00:54] [PASSED] oob_was/14019821291
[13:00:54] [PASSED] oob_was/14015076503
[13:00:54] [PASSED] oob_was/14018913170
[13:00:54] [PASSED] oob_was/14018094691
[13:00:54] [PASSED] oob_was/18024947630
[13:00:54] [PASSED] oob_was/16022287689
[13:00:54] [PASSED] oob_was/13011645652
[13:00:54] [PASSED] oob_was/14022293748
[13:00:54] [PASSED] oob_was/22019794406
[13:00:54] [PASSED] oob_was/22019338487
[13:00:54] [PASSED] oob_was/16023588340
[13:00:54] [PASSED] oob_was/14019789679
[13:00:54] [PASSED] oob_was/14022866841
[13:00:54] [PASSED] oob_was/16021333562
[13:00:54] [PASSED] oob_was/14016712196
[13:00:54] [PASSED] oob_was/14015568240
[13:00:54] [PASSED] oob_was/18013179988
[13:00:54] [PASSED] oob_was/1508761755
[13:00:54] [PASSED] oob_was/16023105232
[13:00:54] [PASSED] oob_was/16026508708
[13:00:54] [PASSED] oob_was/14020001231
[13:00:54] [PASSED] oob_was/16023683509
[13:00:54] [PASSED] oob_was/14025515070
[13:00:54] [PASSED] oob_was/15015404425_disable
[13:00:54] [PASSED] oob_was/16026007364
[13:00:54] [PASSED] oob_was/14020316580
[13:00:54] [PASSED] oob_was/14025883347
[13:00:54] [PASSED] oob_was/16029380221
[13:00:54] [PASSED] oob_was/22022079272
[13:00:54] [PASSED] oob_was/16029897822
[13:00:54] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:00:54] ================ xe_rtp_table_dev_oob_test  ================
[13:00:54] [PASSED] device_oob_was/22010954014
[13:00:54] [PASSED] device_oob_was/15015404425
[13:00:54] [PASSED] device_oob_was/22019338487_display
[13:00:54] [PASSED] device_oob_was/14022085890
[13:00:54] [PASSED] device_oob_was/14026539277
[13:00:54] [PASSED] device_oob_was/14026633728
[13:00:54] [PASSED] device_oob_was/14026746987
[13:00:54] [PASSED] device_oob_was/14026779378
[13:00:54] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:00:54] ========== xe_rtp_table_missing_upper_bound_test  ==========
[13:00:54] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[13:00:54] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[13:00:54] [PASSED] register_whitelist/1806527549
[13:00:54] [PASSED] register_whitelist/allow_read_ctx_timestamp
[13:00:54] [PASSED] register_whitelist/allow_read_queue_timestamp
[13:00:54] [PASSED] register_whitelist/16014440446
[13:00:54] [PASSED] register_whitelist/16017236439
[13:00:54] [PASSED] register_whitelist/16020183090
[13:00:54] [PASSED] register_whitelist/14024997852
[13:00:54] [PASSED] register_whitelist/14024997852
[13:00:54] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[13:00:54] =============== [PASSED] xe_rtp_tables_test ================
[13:00:54] =================== xe_rtp (3 subtests) ====================
[13:00:54] =================== xe_rtp_rules_tests  ====================
[13:00:54] [PASSED] no
[13:00:54] [PASSED] yes
[13:00:54] [PASSED] no-and-no
[13:00:54] [PASSED] no-and-yes
[13:00:54] [PASSED] yes-and-no
[13:00:54] [PASSED] yes-and-yes
[13:00:54] [PASSED] no-or-no
[13:00:54] [PASSED] no-or-yes
[13:00:54] [PASSED] yes-or-no
[13:00:54] [PASSED] yes-or-yes
[13:00:54] [PASSED] no-yes-or-yes-no
[13:00:54] [PASSED] no-yes-or-yes-yes
[13:00:54] [PASSED] yes-yes-or-no-yes
[13:00:54] [PASSED] yes-yes-or-yes-yes
[13:00:54] [PASSED] no-no-or-yes-or-no
[13:00:54] [PASSED] or
[13:00:54] [PASSED] or-yes
[13:00:54] [PASSED] or-no
[13:00:54] [PASSED] yes-or
[13:00:54] [PASSED] no-or
[13:00:54] [PASSED] no-or-or-yes
[13:00:54] [PASSED] yes-or-or-no
[13:00:54] [PASSED] no-or-or-no
[13:00:54] [PASSED] missing-context-engine-class
[13:00:54] [PASSED] missing-context-engine-class-or-yes
[13:00:54] [PASSED] missing-context-engine-class-or-or-yes
[13:00:54] =============== [PASSED] xe_rtp_rules_tests ================
[13:00:54] =============== xe_rtp_process_to_sr_tests  ================
[13:00:54] [PASSED] coalesce-same-reg
[13:00:54] [PASSED] coalesce-same-reg-literal-and-func
[13:00:54] [PASSED] no-match-no-add
[13:00:54] [PASSED] two-regs-two-entries
[13:00:54] [PASSED] clr-one-set-other
[13:00:54] [PASSED] set-field
[13:00:54] [PASSED] conflict-duplicate
[13:00:54] [PASSED] conflict-not-disjoint
[13:00:54] [PASSED] conflict-not-disjoint-literal-and-func
[13:00:54] [PASSED] conflict-reg-type
[13:00:54] [PASSED] bad-mcr-reg-forced-to-regular
[13:00:54] [PASSED] bad-regular-reg-forced-to-mcr
[13:00:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:00:54] ================== xe_rtp_process_tests  ===================
[13:00:54] [PASSED] active1
[13:00:54] [PASSED] active2
[13:00:54] [PASSED] active-inactive
[13:00:54] [PASSED] inactive-active
[13:00:54] [PASSED] inactive-active-inactive
[13:00:54] [PASSED] inactive-inactive-inactive
[13:00:54] ============== [PASSED] xe_rtp_process_tests ===============
[13:00:54] ===================== [PASSED] xe_rtp ======================
[13:00:54] ==================== xe_wa (1 subtest) =====================
[13:00:54] ======================== xe_wa_gt  =========================
[13:00:54] [PASSED] TIGERLAKE B0
[13:00:54] [PASSED] DG1 A0
[13:00:54] [PASSED] DG1 B0
[13:00:54] [PASSED] ALDERLAKE_S A0
[13:00:54] [PASSED] ALDERLAKE_S B0
[13:00:54] [PASSED] ALDERLAKE_S C0
[13:00:54] [PASSED] ALDERLAKE_S D0
[13:00:54] [PASSED] ALDERLAKE_P A0
[13:00:54] [PASSED] ALDERLAKE_P B0
[13:00:54] [PASSED] ALDERLAKE_P C0
[13:00:54] [PASSED] ALDERLAKE_S RPLS D0
[13:00:54] [PASSED] ALDERLAKE_P RPLU E0
[13:00:54] [PASSED] DG2 G10 C0
[13:00:54] [PASSED] DG2 G11 B1
[13:00:54] [PASSED] DG2 G12 A1
[13:00:54] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:00:54] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:00:54] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:00:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:00:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:00:54] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:00:54] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:00:54] ==================== [PASSED] xe_wa_gt =====================
[13:00:54] ====================== [PASSED] xe_wa ======================
[13:00:54] ============================================================
[13:00:54] Testing complete. Ran 741 tests: passed: 723, skipped: 18
[13:00:54] Elapsed time: 36.828s total, 4.438s configuring, 31.724s building, 0.637s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (23 preceding siblings ...)
  2026-07-14 13:01 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7) Patchwork
@ 2026-07-14 13:38 ` Patchwork
  2026-07-14 18:50 ` ✓ Xe.CI.FULL: " Patchwork
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-14 13:38 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

CI Bug Log - changes from xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366_BAT -> xe-pw-168743v7_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366 -> xe-pw-168743v7

  IGT_9006: 6380a8af26359dd222e22679442272ded836c463 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366: d3709d2bd13debee032d55c0dd71f145e11ec366
  xe-pw-168743v7: 168743v7

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7)
  2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
                   ` (24 preceding siblings ...)
  2026-07-14 13:38 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-14 18:50 ` Patchwork
  25 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-07-14 18:50 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7)
URL   : https://patchwork.freedesktop.org/series/168743/
State : success

== Summary ==

CI Bug Log - changes from xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366_FULL -> xe-pw-168743v7_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-168743v7_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][1] ([Intel XE#1407])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#2327]) +1 other test skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#1124]) +2 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][4] ([Intel XE#1124]) +2 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#7679])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#367])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#2887])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#3432])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2887]) +7 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#373])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2325] / [Intel XE#7358])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_frames@hdmi-crc-multiple:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2252]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2320]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1424])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#8265])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#4422] / [Intel XE#7442])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#1421])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2311]) +15 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#656] / [Intel XE#7905]) +8 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#7061] / [Intel XE#7356])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#4141]) +6 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#6312] / [Intel XE#651])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#1469] / [Intel XE#7399]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#6312])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#7905]) +8 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-indfb-scaledprimary:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#7865]) +4 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2313]) +19 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#7061]) +4 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#6912] / [Intel XE#7375])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#7283]) +2 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#8303]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#7283])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#5021] / [Intel XE#7377])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#1489]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#1406] / [Intel XE#7345])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#1406] / [Intel XE#4609])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html

  * igt@kms_psr@psr-primary-blt:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_psr@psr-primary-blt.html

  * igt@kms_sharpness_filter@invalid-filter-with-plane:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#6503])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_sharpness_filter@invalid-filter-with-plane.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2426] / [Intel XE#5848])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#1499])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@kms_vrr@flip-dpms.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#1091] / [Intel XE#2849])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_compute@eu-busy-10s:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#6592] / [Intel XE#6645] / [Intel XE#7391])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_compute@eu-busy-10s.html

  * igt@xe_configfs@survivability-mode:
    - shard-bmg:          [PASS][50] -> [ABORT][51] ([Intel XE#8007]) +1 other test abort
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-bmg-3/igt@xe_configfs@survivability-mode.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-7/igt@xe_configfs@survivability-mode.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_evict@evict-threads-small-multi-queue:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#8370])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@xe_evict@evict-threads-small-multi-queue.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html

  * igt@xe_exec_balancer@no-exec-parallel-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#7482]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_exec_balancer@no-exec-parallel-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#1392])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html

  * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#8374])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#8374]) +4 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#8364]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_exec_multi_queue@max-queues-preempt-mode-userptr.html

  * igt@xe_exec_multi_queue@two-queues-basic-smem:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#8364]) +12 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-basic-smem.html

  * igt@xe_exec_threads@threads-multi-queue-cm-fd-basic:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#8378]) +2 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html

  * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#8378]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html

  * igt@xe_gpgpu_fill@offset-4x4:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#7954])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@xe_gpgpu_fill@offset-4x4.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89]) -> ([PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [SKIP][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115]) ([Intel XE#378] / [Intel XE#7405])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-3/igt@xe_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-6/igt@xe_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-6/igt@xe_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-7/igt@xe_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-7/igt@xe_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-1/igt@xe_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-1/igt@xe_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-1/igt@xe_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-2/igt@xe_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-3/igt@xe_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-5/igt@xe_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-3/igt@xe_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-7/igt@xe_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-4/igt@xe_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-8/igt@xe_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-8/igt@xe_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-8/igt@xe_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-4/igt@xe_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-4/igt@xe_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-5/igt@xe_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-5/igt@xe_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-2/igt@xe_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-2/igt@xe_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-4/igt@xe_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-6/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-3/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-4/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-4/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-4/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-4/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-2/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-2/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-1/igt@xe_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-5/igt@xe_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-5/igt@xe_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-5/igt@xe_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-8/igt@xe_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-1/igt@xe_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-1/igt@xe_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-3/igt@xe_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-8/igt@xe_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-3/igt@xe_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-2/igt@xe_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-6/igt@xe_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-6/igt@xe_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-6/igt@xe_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-8/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-latency-basic:
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#6964]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@xe_multigpu_svm@mgpu-latency-basic.html

  * igt@xe_multigpu_svm@mgpu-latency-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#6964])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_multigpu_svm@mgpu-latency-prefetch.html

  * igt@xe_page_reclaim@boundary-split:
    - shard-bmg:          NOTRUN -> [SKIP][118] ([Intel XE#7793])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@xe_page_reclaim@boundary-split.html

  * igt@xe_pm@d3cold-basic:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2284] / [Intel XE#7370])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@xe_pm@d3cold-basic.html

  * igt@xe_prefetch_fault@prefetch-fault-svm:
    - shard-bmg:          NOTRUN -> [SKIP][120] ([Intel XE#7599])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@xe_prefetch_fault@prefetch-fault-svm.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#944])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-8/igt@xe_query@multigpu-query-pxp-status.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#944])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#4273])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_sriov_flr@flr-vfs-parallel.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotunbind-rebind:
    - shard-bmg:          [ABORT][124] ([Intel XE#8007]) -> [PASS][125] +1 other test pass
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-bmg-10/igt@core_hotunplug@hotunbind-rebind.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-2/igt@core_hotunplug@hotunbind-rebind.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-lnl:          [FAIL][126] ([Intel XE#3718] / [Intel XE#7265]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1:
    - shard-lnl:          [FAIL][128] ([Intel XE#7265]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [FAIL][130] ([Intel XE#301]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@xe_exec_reset@long-spin-reuse-many-preempt-media:
    - shard-bmg:          [FAIL][132] ([Intel XE#7850]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-bmg-10/igt@xe_exec_reset@long-spin-reuse-many-preempt-media.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-1/igt@xe_exec_reset@long-spin-reuse-many-preempt-media.html

  * igt@xe_wedged@basic-wedged:
    - shard-lnl:          [ABORT][134] ([Intel XE#3119]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-lnl-2/igt@xe_wedged@basic-wedged.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-lnl-7/igt@xe_wedged@basic-wedged.html

  
#### Warnings ####

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][136] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][137] ([Intel XE#1729] / [Intel XE#7424])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-168743v7/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html

  
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
  [Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
  [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7391
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366 -> xe-pw-168743v7

  IGT_9006: 6380a8af26359dd222e22679442272ded836c463 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5398-d3709d2bd13debee032d55c0dd71f145e11ec366: d3709d2bd13debee032d55c0dd71f145e11ec366
  xe-pw-168743v7: 168743v7

== Logs ==

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

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

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

* Re: [PATCH v7] drm/xe: Add debugfs knob to control GPGPU preemption granularity
  2026-07-14 11:59 ` [PATCH v7] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
@ 2026-07-15 21:27   ` Gustavo Sousa
  0 siblings, 0 replies; 29+ messages in thread
From: Gustavo Sousa @ 2026-07-15 21:27 UTC (permalink / raw)
  To: Varun Gupta, intel-xe; +Cc: matthew.d.roper, stuart.summers

Varun Gupta <varun.gupta@intel.com> writes:

> Introduce a per-GT debugfs knob, 'gpgpu_preemption_level', to allow
> overriding the GPGPU preemption level on a per-context basis for newly
> created LRCs.
> Add an RTP rule to enable per-context control via FF_SLICE_CS_CHICKEN1,
> allowing the preemption level to be programmed directly into the LRC
> image at CTX_CS_CHICKEN1 during context initialization.
>
> v7:
>   - Restrict XEHP_FUSE4 read to Xe2+ primary GTs to prevent invalid
>     Media GT accesses and SR-IOV warnings. (Sashiko)
>
> v6:
>   - Add missing xe_gt_printk.h include to fix compilation failure.
>
> v5:
>   - Use correct offset for CTX_CS_CHICKEN1. (Matt)
>   - Restrict to the RCS engine. (Matt)
>   - Drop LRC layout table modifications; dummy layouts do not need late
>     context registers. (Matt)
>   - Stash WMTP fuse state at boot to remove pm/forcewake from debugfs.
>     (Matt)
>   - Rename debugfs knob to 'gpgpu_preemption_level'. (Matt)
>   - Use simple_write_to_buffer() and remove unnecessary READ_ONCE/
>     WRITE_ONCE macros. (Matt)
>   - Do not restrict debugfs visibility for SR-IOV VFs. (Matt)
>
> v4
>   - Fix incorrect NOP padding in the RCS context layout. (Sashiko)
>
> v3:
>   - Wrapped XEHP_FUSE4 forcewake read with xe_pm_runtime_get/put to
>     prevent PCIe aborts/timeouts when the GPU is in D3hot/D3cold. (sashiko)
>   - Fixed NOP macro truncation by splitting padding offsets larger than
>     0x7f into multiple NOPs, ensuring correct context layout. (sashiko)
>   - Converted CTX_CS_CHICKEN1 initialization to a read-modify-write
>     sequence to avoid overwriting golden context mask bits. (sashiko)
>   - Removed the FF_SLICE_CS_CHICKEN1 workaround for CCS engines, as
>     compute engines lack this 3D fixed-function register, which was
>     causing GuC "illegal register" panics on initialization.
>
> v2:
>   - Dropped the WA BB/MI_LRI path; per Bspec, CS_CHICKEN1 is context
>     save/restore state at DW 0x00E2, so we map CTX_CS_CHICKEN1 and program
>     it directly in LRC init via xe_lrc_write_ctx_reg(). (Matt)
>   - Split Xe2 CCS context offsets into a dedicated xe2_ccs_offsets array
>     to map CS_CHICKEN1 without polluting other XCS engines.
>   - Converted the debugfs interface from a binary boolean to a
>     multi-option string knob ("default", "mid-thread", "thread-group",
>     "command"). (Gustavo)
>   - Restricted file creation to the Physical Function
>     (!IS_SRIOV_VF). (Gustavo)
>   - Added kernel tainting (TAINT_USER) when deviating from
>     defaults. (Gustavo)
>   - Added power-safe hardware fuse check (FUSE4 register 0x9114[20],
>     CFEG_WMTP_DISABLE) before allowing MTP selection. (Matt)
>
> Signed-off-by: Varun Gupta <varun.gupta@intel.com>
> ---
>  drivers/gpu/drm/xe/regs/xe_lrc_layout.h |  2 +
>  drivers/gpu/drm/xe/xe_gt.c              |  5 ++
>  drivers/gpu/drm/xe/xe_gt_debugfs.c      | 65 +++++++++++++++++++++++++
>  drivers/gpu/drm/xe/xe_gt_types.h        | 34 +++++++++++++
>  drivers/gpu/drm/xe/xe_lrc.c             | 29 +++++++++++
>  drivers/gpu/drm/xe/xe_wa.c              |  6 +++
>  6 files changed, 141 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
> index 4ab86fc369fd..6f7abc0181b5 100644
> --- a/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
> +++ b/drivers/gpu/drm/xe/regs/xe_lrc_layout.h
> @@ -37,6 +37,8 @@
>  #define CTX_QUEUE_TIMESTAMP		(0xd0 + 1)
>  #define CTX_QUEUE_TIMESTAMP_UDW		(0xd2 + 1)
>  
> +#define CTX_CS_CHICKEN1			(0x12e + 1)
> +
>  #define INDIRECT_CTX_RING_HEAD		(0x02 + 1)
>  #define INDIRECT_CTX_RING_TAIL		(0x04 + 1)
>  #define INDIRECT_CTX_RING_START		(0x06 + 1)
> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
> index 783eb6d631b5..688cadb9b589 100644
> --- a/drivers/gpu/drm/xe/xe_gt.c
> +++ b/drivers/gpu/drm/xe/xe_gt.c
> @@ -607,6 +607,11 @@ static int gt_init_with_gt_forcewake(struct xe_gt *gt)
>  	 * on pre-MTL platforms, reading it there will (correctly) return 0.
>  	 */
>  	gt->info.gmdid = xe_mmio_read32(&gt->mmio, GMD_ID);

Nitpick: Maybe add a blank line here to dissociate initialization of
has_wmtp_disabled from the comment about GMD_ID above.

> +	if (GRAPHICS_VER(gt_to_xe(gt)) >= 20 && xe_gt_is_main_type(gt))
> +		gt->info.has_wmtp_disabled = !!(xe_mmio_read32(&gt->mmio, XEHP_FUSE4) &
> +			CFEG_WMTP_DISABLE);

I think Matt's suggestion was to stash the value of XEHP_FUSE4 and use
it whenever necessary (there are other users).  But I guess keeping a
has_wmtp_disabled member like done in this patch is fine as well.  We
could do the former in a separate patch if we find it useful (we would
need to check if we would need to deal with other fuse registers as
well).

> +	else
> +		gt->info.has_wmtp_disabled = 0;
>  
>  	/*
>  	 * Wa_14026539277 can't be implemented as a regular GT workaround (i.e.
> diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> index c38bcacb27e4..288590003461 100644
> --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> @@ -6,6 +6,8 @@
>  #include "xe_gt_debugfs.h"
>  
>  #include <linux/debugfs.h>
> +#include <linux/panic.h>
> +#include <linux/string.h>
>  
>  #include <drm/drm_debugfs.h>
>  #include <drm/drm_managed.h>
> @@ -15,6 +17,7 @@
>  #include "xe_gt.h"
>  #include "xe_gt_mcr.h"
>  #include "xe_gt_idle.h"
> +#include "xe_gt_printk.h"
>  #include "xe_gt_sriov_pf_debugfs.h"
>  #include "xe_gt_sriov_vf_debugfs.h"
>  #include "xe_gt_stats.h"
> @@ -336,6 +339,65 @@ static int force_reset_sync_show(struct seq_file *s, void *unused)
>  }
>  DEFINE_SHOW_STORE_ATTRIBUTE(force_reset_sync);
>  
> +static const char * const gpgpu_preemption_level_names[] = {
> +	[XE_GPGPU_PREEMPT_DEFAULT]      = "default",
> +	[XE_GPGPU_PREEMPT_MID_THREAD]   = "mid-thread",
> +	[XE_GPGPU_PREEMPT_THREAD_GROUP] = "thread-group",
> +	[XE_GPGPU_PREEMPT_COMMAND]      = "command",
> +};
> +
> +static int gpgpu_preemption_level_show(struct seq_file *m, void *unused)
> +{
> +	struct xe_gt *gt = m->private;
> +
> +	seq_printf(m, "%s\n", gpgpu_preemption_level_names[gt->gpgpu_preemption_level]);
> +
> +	return 0;
> +}
> +
> +static ssize_t gpgpu_preemption_level_write(struct file *file,
> +					    const char __user *ubuf,
> +					    size_t len, loff_t *offp)
> +{
> +	struct seq_file *m = file->private_data;
> +	struct xe_gt *gt = m->private;
> +	enum xe_gpgpu_preempt_level new_level;
> +	char buf[16];
> +	ssize_t copied;
> +	int idx;
> +
> +	if (*offp)
> +		return -EINVAL;
> +
> +	copied = simple_write_to_buffer(buf, sizeof(buf) - 1, offp, ubuf, len);
> +	if (copied < 0)
> +		return copied;
> +
> +	buf[copied] = '\0';
> +	idx = sysfs_match_string(gpgpu_preemption_level_names, strim(buf));
> +	if (idx < 0)
> +		return idx;
> +
> +	new_level = (enum xe_gpgpu_preempt_level)idx;
> +
> +	if (new_level == XE_GPGPU_PREEMPT_MID_THREAD && gt->info.has_wmtp_disabled) {
> +		xe_gt_warn(gt, "MTP fused off in hardware, cannot select mid-thread\n");
> +		return -EPERM;

I think we should just return -EINVAL here as well with the rationale
that "mid-thread" is an invalid value for the current hardware.

> +	}
> +
> +	if (new_level != XE_GPGPU_PREEMPT_DEFAULT) {
> +		add_taint(TAINT_USER, LOCKDEP_STILL_OK);
> +		xe_gt_notice(gt,
> +			     "GPGPU preemption overridden to '%s' (applies to new LRCs only)\n",
> +			     gpgpu_preemption_level_names[new_level]);
> +	}
> +
> +	gt->gpgpu_preemption_level = new_level;
> +
> +	return copied;
> +}
> +DEFINE_SHOW_STORE_ATTRIBUTE(gpgpu_preemption_level);
> +
>  void xe_gt_debugfs_register(struct xe_gt *gt)
>  {
>  	struct xe_device *xe = gt_to_xe(gt);
> @@ -368,6 +430,9 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
>  	debugfs_create_file("stats", 0600, root, gt, &stats_fops);
>  	debugfs_create_file("force_reset", 0600, root, gt, &force_reset_fops);
>  	debugfs_create_file("force_reset_sync", 0600, root, gt, &force_reset_sync_fops);

Nitpick: Maybe add an blank line here.

> +	if (GRAPHICS_VER(xe) >= 20 && (gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK))
> +		debugfs_create_file("gpgpu_preemption_level", 0600, root,
> +				    gt, &gpgpu_preemption_level_fops);
>  
>  	drm_debugfs_create_files(vf_safe_debugfs_list,
>  				 ARRAY_SIZE(vf_safe_debugfs_list),
> diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
> index e5588c88800a..97bd943309b3 100644
> --- a/drivers/gpu/drm/xe/xe_gt_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_types.h
> @@ -35,6 +35,33 @@ enum xe_gt_eu_type {
>  	XE_GT_EU_TYPE_SIMD16,
>  };
>  
> +/**
> + * enum xe_gpgpu_preempt_level - Per-context GPGPU preemption override mode
> + *
> + * Selects the preemption granularity programmed into CS_CHICKEN1[2:1] for
> + * newly created Xe2+ RCS LRCs.
> + *
> + * The per-context override is effective only when
> + * FF_SLICE_CS_CHICKEN1[FFSC_PERCTX_PREEMPT_CTRL] is enabled via RTP.
> + *
> + * This setting is GT-scoped and affects only LRCs created after the value is
> + * changed; existing contexts keep their previously programmed value.
> + *
> + * @XE_GPGPU_PREEMPT_DEFAULT: Keep platform default preemption granularity.
> + * @XE_GPGPU_PREEMPT_MID_THREAD: Force mid-thread preemption level.
> + * @XE_GPGPU_PREEMPT_THREAD_GROUP: Force thread-group preemption level.
> + * @XE_GPGPU_PREEMPT_COMMAND: Force command-level preemption.
> + *
> + * Zero-initialized via kzalloc, so XE_GPGPU_PREEMPT_DEFAULT is the safe
> + * default (no override from platform policy).
> + */
> +enum xe_gpgpu_preempt_level {
> +	XE_GPGPU_PREEMPT_DEFAULT = 0,
> +	XE_GPGPU_PREEMPT_MID_THREAD,
> +	XE_GPGPU_PREEMPT_THREAD_GROUP,
> +	XE_GPGPU_PREEMPT_COMMAND,
> +};
> +
>  #define XE_MAX_DSS_FUSE_REGS		4
>  #define XE_MAX_DSS_FUSE_BITS		(32 * XE_MAX_DSS_FUSE_REGS)
>  #define XE_MAX_EU_FUSE_REGS		1
> @@ -151,6 +178,8 @@ struct xe_gt {
>  		 * feature.
>  		 */
>  		u8 has_xe2_blt_instructions:1;
> +		/** @info.has_wmtp_disabled: hardware fuse indicates WMTP is disabled */
> +		u8 has_wmtp_disabled:1;
>  		/**
>  		 * @info.num_geometry_xecore_fuse_regs: Number of 32b-bit fuse
>  		 * registers the geometry XeCore mask spans.
> @@ -219,6 +248,11 @@ struct xe_gt {
>  	 */
>  	u32 ccs_mode;
>  
> +	/**
> +	 * @gpgpu_preemption_level: per-GT GPGPU preemption granularity override.
> +	 */
> +	enum xe_gpgpu_preempt_level gpgpu_preemption_level;
> +
>  	/** @usm: unified shared memory state */
>  	struct {
>  		/**
> diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
> index 3e7c995085d0..1733bbe65288 100644
> --- a/drivers/gpu/drm/xe/xe_lrc.c
> +++ b/drivers/gpu/drm/xe/xe_lrc.c
> @@ -1589,6 +1589,35 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
>  	if (xe->info.has_asid && vm)
>  		xe_lrc_write_ctx_reg(lrc, CTX_ASID, vm->usm.asid);
>  
> +	if (GRAPHICS_VER(xe) >= 20 && hwe->class == XE_ENGINE_CLASS_RENDER) {
> +		enum xe_gpgpu_preempt_level level = gt->gpgpu_preemption_level;
> +
> +		if (level != XE_GPGPU_PREEMPT_DEFAULT) {
> +			u32 level_bits;
> +			u32 val;
> +
> +			switch (level) {
> +			case XE_GPGPU_PREEMPT_MID_THREAD:
> +				level_bits = PREEMPT_GPGPU_MID_THREAD_LEVEL;
> +				break;
> +			case XE_GPGPU_PREEMPT_THREAD_GROUP:
> +				level_bits = PREEMPT_GPGPU_THREAD_GROUP_LEVEL;
> +				break;
> +			case XE_GPGPU_PREEMPT_COMMAND:
> +				level_bits = PREEMPT_GPGPU_COMMAND_LEVEL;
> +				break;
> +			default:
> +				level_bits = 0;

If we find an unexpected value, it is probably better to have a warning
(e.g. XE_WARN_ON(true))and avoid programming CS_CHICKEN1.

> +				break;
> +			}
> +
> +			val = xe_lrc_read_ctx_reg(lrc, CTX_CS_CHICKEN1);
> +			val &= ~PREEMPT_GPGPU_LEVEL_MASK;
> +			val |= REG_MASKED_FIELD(PREEMPT_GPGPU_LEVEL_MASK, level_bits);
> +			xe_lrc_write_ctx_reg(lrc, CTX_CS_CHICKEN1, val);
> +		}
> +	}
> +

It would be good to encapsulate this into a function, say
xe_lrc_set_gpgpu_preemption_level(), that is called here. It improves
readability and can also simplify the above logic with some early
returns.

>  	lrc->desc = LRC_VALID;
>  	lrc->desc |= FIELD_PREP(LRC_ADDRESSING_MODE, LRC_LEGACY_64B_CONTEXT);
>  	/* TODO: Priority */
> diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
> index 139434946f8f..70072963aba0 100644
> --- a/drivers/gpu/drm/xe/xe_wa.c
> +++ b/drivers/gpu/drm/xe/xe_wa.c
> @@ -347,6 +347,12 @@ static const struct xe_rtp_table_sr engine_was = XE_RTP_TABLE_SR(
>  	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
>  			     FFSC_PERCTX_PREEMPT_CTRL))
>  	},
> +	{ XE_RTP_NAME("FtrPerCtxtPreemptionGranularityControl-Xe2"),
> +	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED),
> +		       ENGINE_CLASS(RENDER)),
> +	  XE_RTP_ACTIONS(SET(FF_SLICE_CS_CHICKEN1(RENDER_RING_BASE),
> +			     FFSC_PERCTX_PREEMPT_CTRL))
> +	},

We could re-use the "FtrPerCtxtPreemptionGranularityControl" entry by
combining the rules with an "OR":

XE_RTP_RULES(GRAPHICS_VERSION_RANGE(1200, 1250), ENGINE_CLASS(RENDER), OR,
             GRAPHICS_VERSION_RANGE(2000, XE_RTP_END_VERSION_UNDEFINED), ENGINE_CLASS(RENDER))

That said, we are unconditionally changing a hardware default here only
for the sake of having the gpgpu_preemption_level debugfs entry, which
will only be used for debugging scenarios.

I wonder if we should change FFSC_PERCTX_PREEMPT_CTRL only if needed.
Thoughts?

In that case, we could do that via configfs and then this entry would
use FIELD_SET_FUNC() to defined based on the configured value (and the
debugfs entry would also be created conditioned on the configured
value).  In this case, it would make sense to keep this a separate RTP
entry.

Other option would be to try to make the change of
FFSC_PERCTX_PREEMPT_CTRL at runtime at the right places if
gpgpu_preemption_level is set to a non-default value, but I think this
approach is more complex and perhaps the configfs option would be easier
to implement.

--
Gustavo Sousa

>  	{ XE_RTP_NAME("18032247524"),
>  	  XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2004),
>  		       FUNC(xe_rtp_match_first_render_or_compute)),
> -- 
> 2.43.0

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

end of thread, other threads:[~2026-07-15 21:27 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-18  4:24 [PATCH] drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT Varun Gupta
2026-06-18  4:31 ` ✓ CI.KUnit: success for " Patchwork
2026-06-18  5:22 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-18 11:05 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-06-18 14:01 ` [PATCH] " Gustavo Sousa
2026-06-18 16:42 ` Matt Roper
2026-07-01 17:58 ` [PATCH] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
2026-07-01 18:19 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev2) Patchwork
2026-07-01 19:11 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-07-02 14:38 ` ✗ Xe.CI.FULL: " Patchwork
2026-07-06  5:35 ` [PATCH v3] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
2026-07-06 12:02 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev3) Patchwork
2026-07-06 12:47 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-06 14:02 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-06 14:12 ` [PATCH v4] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
2026-07-08 21:08   ` Matt Roper
2026-07-06 14:49 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev4) Patchwork
2026-07-06 15:35 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-06 17:31 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-13 13:54 ` [PATCH v5] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
2026-07-13 14:13 ` [PATCH v6] " Varun Gupta
2026-07-13 14:29 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev6) Patchwork
2026-07-13 15:07 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-07-13 18:08 ` ✓ Xe.CI.FULL: success " Patchwork
2026-07-14 11:59 ` [PATCH v7] drm/xe: Add debugfs knob to control GPGPU preemption granularity Varun Gupta
2026-07-15 21:27   ` Gustavo Sousa
2026-07-14 13:01 ` ✓ CI.KUnit: success for drm/xe: Add debugfs knob to disable Mid-Thread Preemption per GT (rev7) Patchwork
2026-07-14 13:38 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-14 18:50 ` ✓ Xe.CI.FULL: " Patchwork

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