intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs
@ 2026-09-08  3:34 Varun Gupta
  2026-09-08  3:42 ` ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev4) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Varun Gupta @ 2026-09-08  3:34 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, tejas.upadhyay, gustavo.sousa

Add a per-GT debugfs file, multi_queue_active_lrca, that prints, for
every engine supporting multi-queue, the currently active queue ID
(CSMQDEBUG) and the LRCA of the exec queue occupying that slot within
the running multi-queue group.

RING_CURRENT_LRCA only reports the primary queue's LRCA for the group
and does not update to reflect the active queue in multi-queue mode,
which makes it hard to tell which queue is actually running when
debugging multi-queue CSB/context-switch issues. Resolve the active
LRCA by matching the primary LRCA against each queue's group and
picking the queue at the reported active_id position.

v4:
 - Extracted multi_queue_active_lrca into a dedicated
   multi_queue_debugfs_list to prevent debugfs node registration on
   platforms lacking multi-queue support entirely, via
   xe_gt_has_multi_queue() gating. (Tejas)
v3:
 - Use xe_exec_queue_get_lrc() instead of raw pointer dereference to
   safely handle concurrent multi-queue group creation and avoid race
   conditions (Sashiko)
v2:
 - Maintain alphabetical order for includes and
   pf_only_debugfs_list (Tejas)
 - Export and reuse xe_lrc_get_multi_queue_active_queue_id() instead
   of duplicate MMIO read (Tejas)

Bspec: 60321, 73976
Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_debugfs.c | 54 ++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_guc_submit.c | 73 ++++++++++++++++++++++++++++++
 drivers/gpu/drm/xe/xe_guc_submit.h |  5 ++
 drivers/gpu/drm/xe/xe_lrc.c        |  6 +--
 drivers/gpu/drm/xe/xe_lrc.h        |  1 +
 5 files changed, 136 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index 361a70234d1f..bb09e70ee44c 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -13,6 +13,7 @@
 #include <drm/drm_managed.h>
 #include <linux/math.h>
 
+#include "regs/xe_engine_regs.h"
 #include "regs/xe_gt_regs.h"
 #include "xe_device.h"
 #include "xe_force_wake.h"
@@ -25,6 +26,7 @@
 #include "xe_gt_stats.h"
 #include "xe_gt_topology.h"
 #include "xe_guc_hwconfig.h"
+#include "xe_guc_submit.h"
 #include "xe_hw_engine.h"
 #include "xe_lrc.h"
 #include "xe_mmio.h"
@@ -130,6 +132,48 @@ static int hw_engines(struct xe_gt *gt, struct drm_printer *p)
 	return 0;
 }
 
+static int multi_queue_active_lrca(struct xe_gt *gt, struct drm_printer *p)
+{
+	struct xe_guc *guc = &gt->uc.guc;
+	struct xe_hw_engine *hwe;
+	enum xe_hw_engine_id id;
+
+	for_each_hw_engine(hwe, gt, id) {
+		u32 cur_lrca, active_id, lrca;
+		unsigned int fw_ref;
+
+		if (!xe_gt_supports_multi_queue(gt, hwe->class))
+			continue;
+
+		/*
+		 * Forcewake is dropped before xe_guc_submit_active_multi_queue_lrca()
+		 * below, which takes guc->submission_state.lock, to avoid holding a
+		 * GT forcewake ref across a mutex acquired elsewhere in the opposite
+		 * order.
+		 */
+		fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FORCEWAKE_ALL);
+		if (!xe_force_wake_ref_has_domain(fw_ref, XE_FORCEWAKE_ALL)) {
+			drm_printf(p, "%s\tforcewake failed, skipping\n", hwe->name);
+			xe_force_wake_put(gt_to_fw(gt), fw_ref);
+			continue;
+		}
+
+		cur_lrca = xe_mmio_read32(&gt->mmio,
+					  RING_CURRENT_LRCA(hwe->mmio_base));
+		active_id = xe_lrc_get_multi_queue_active_queue_id(hwe);
+
+		xe_force_wake_put(gt_to_fw(gt), fw_ref);
+
+		lrca = xe_guc_submit_active_multi_queue_lrca(guc, hwe, cur_lrca,
+							     active_id);
+
+		drm_printf(p, "%s\tactive_queue_id %u\tcurrent_lrca 0x%08x\tactive_lrca 0x%08x\n",
+			   hwe->name, active_id, cur_lrca, lrca);
+	}
+
+	return 0;
+}
+
 static int steering(struct xe_gt *gt, struct drm_printer *p)
 {
 	xe_gt_mcr_steering_dump(gt, p);
@@ -254,6 +298,11 @@ static const struct drm_info_list pf_only_debugfs_list[] = {
 	{ "steering", .show = xe_gt_debugfs_show_with_rpm, .data = steering },
 };
 
+static const struct drm_info_list multi_queue_debugfs_list[] = {
+	{ "multi_queue_active_lrca",
+		.show = xe_gt_debugfs_show_with_rpm, .data = multi_queue_active_lrca },
+};
+
 static ssize_t write_to_gt_call(const char __user *userbuf, size_t count, loff_t *ppos,
 				void (*call)(struct xe_gt *), struct xe_gt *gt)
 {
@@ -521,6 +570,11 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
 					 ARRAY_SIZE(pf_only_debugfs_list),
 					 root, minor);
 
+	if (!IS_SRIOV_VF(xe) && xe_gt_has_multi_queue(gt))
+		drm_debugfs_create_files(multi_queue_debugfs_list,
+					 ARRAY_SIZE(multi_queue_debugfs_list),
+					 root, minor);
+
 	if (xe_gt_is_main_type(gt) && !IS_DGFX(xe) && !IS_SRIOV_VF(xe))
 		debugfs_create_file("gt_ia_bias", 0600, root, gt, &gt_ia_bias_fops);
 
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 99d8c807ff05..a39dcb85e3f4 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -3853,6 +3853,79 @@ bool xe_guc_has_registered_mlrc_queues(struct xe_guc *guc)
 	return false;
 }
 
+/**
+ * xe_guc_submit_active_multi_queue_lrca() - Resolve the LRCA of the active
+ * queue in the multi-queue group currently running on an engine.
+ * @guc: the &xe_guc managing the exec queues
+ * @hwe: the &xe_hw_engine whose active queue is being resolved
+ * @cur_lrca: value read from RING_CURRENT_LRCA, identifies the running group
+ * @active_id: current Active Queue ID read from CSMQDEBUG (position in group)
+ *
+ * The running group is identified by matching @cur_lrca against the group's
+ * primary LRCA; @active_id then selects the active queue within that group.
+ *
+ * Return: the LRCA of the active queue, or 0 if no matching queue is found.
+ */
+u32 xe_guc_submit_active_multi_queue_lrca(struct xe_guc *guc,
+					  struct xe_hw_engine *hwe,
+					  u32 cur_lrca, u32 active_id)
+{
+	struct xe_exec_queue *q;
+	unsigned long index;
+	u32 lrca = 0;
+
+	/*
+	 * submission_state.lock also protects exec_queue teardown: an exec
+	 * queue is removed from exec_queue_lookup before its group/primary
+	 * are freed, so any q found in the xarray below has a live group
+	 * and primary for as long as we hold the lock.
+	 */
+	guard(mutex)(&guc->submission_state.lock);
+
+	xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) {
+		struct xe_exec_queue_group *group = q->multi_queue.group;
+		struct xe_lrc *active_lrc;
+		struct xe_lrc *primary_lrc;
+
+		if (!q->multi_queue.valid || !group || !group->primary)
+			continue;
+		/*
+		 * Multi-queue exec queues are bound to a hw engine class;
+		 * GuC dynamically schedules them onto one of the class's
+		 * physical instances, so there is no fixed queue-to-instance
+		 * mapping to filter on here.
+		 */
+		if (q->class != hwe->class)
+			continue;
+		if (q->multi_queue.pos != active_id)
+			continue;
+		/*
+		 * LRCAs are page-aligned (4K) addresses in GGTT; the low
+		 * bits reported by RING_CURRENT_LRCA are not meaningful, so
+		 * only compare bits [31:12].
+		 */
+		primary_lrc = xe_exec_queue_get_lrc(group->primary, 0);
+		if (!primary_lrc)
+			continue;
+
+		if ((xe_lrc_ggtt_addr(primary_lrc) ^ cur_lrca) & GENMASK(31, 12)) {
+			xe_lrc_put(primary_lrc);
+			continue;
+		}
+
+		active_lrc = xe_exec_queue_get_lrc(q, 0);
+		xe_lrc_put(primary_lrc);
+		if (!active_lrc)
+			continue;
+
+		lrca = xe_lrc_ggtt_addr(active_lrc);
+		xe_lrc_put(active_lrc);
+		break;
+	}
+
+	return lrca;
+}
+
 /**
  * xe_guc_contexts_hwsp_rebase - Re-compute GGTT references within all
  * exec queues registered to given GuC.
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.h b/drivers/gpu/drm/xe/xe_guc_submit.h
index ccade320dc69..29abf07d8f04 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.h
+++ b/drivers/gpu/drm/xe/xe_guc_submit.h
@@ -11,6 +11,7 @@
 struct drm_printer;
 struct xe_exec_queue;
 struct xe_guc;
+struct xe_hw_engine;
 
 int xe_guc_submit_init(struct xe_guc *guc, unsigned int num_ids);
 int xe_guc_submit_enable(struct xe_guc *guc);
@@ -55,6 +56,10 @@ void xe_guc_register_vf_exec_queue(struct xe_exec_queue *q, int ctx_type);
 
 bool xe_guc_has_registered_mlrc_queues(struct xe_guc *guc);
 
+u32 xe_guc_submit_active_multi_queue_lrca(struct xe_guc *guc,
+					  struct xe_hw_engine *hwe,
+					  u32 cur_lrca, u32 active_id);
+
 int xe_guc_contexts_hwsp_rebase(struct xe_guc *guc, void *scratch);
 
 #endif
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 25fe9dbc9141..f1cf1463f1b2 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -2705,7 +2705,7 @@ static u64 get_queue_timestamp(struct xe_hw_engine *hwe)
 				   RING_QUEUE_TIMESTAMP(hwe->mmio_base));
 }
 
-static u32 get_multi_queue_active_queue_id(struct xe_hw_engine *hwe)
+u32 xe_lrc_get_multi_queue_active_queue_id(struct xe_hw_engine *hwe)
 {
 	u32 val = xe_mmio_read32(&hwe->gt->mmio,
 				 RING_CSMQDEBUG(hwe->mmio_base));
@@ -2739,14 +2739,14 @@ static u64 xe_lrc_multi_queue_timestamp(struct xe_lrc *lrc)
 	if (!hwe)
 		return xe_lrc_queue_timestamp(lrc);
 
-	if (get_multi_queue_active_queue_id(hwe) != lrc->multi_queue.pos)
+	if (xe_lrc_get_multi_queue_active_queue_id(hwe) != lrc->multi_queue.pos)
 		return xe_lrc_queue_timestamp(lrc);
 
 	/* queue is active, so store the queue timestamp register */
 	reg_queue_ts = get_queue_timestamp(hwe);
 
 	/* double check queue and primary queue are both still active */
-	if (get_multi_queue_active_queue_id(hwe) != lrc->multi_queue.pos ||
+	if (xe_lrc_get_multi_queue_active_queue_id(hwe) != lrc->multi_queue.pos ||
 	    !context_active(primary_lrc))
 		return xe_lrc_queue_timestamp(lrc);
 
diff --git a/drivers/gpu/drm/xe/xe_lrc.h b/drivers/gpu/drm/xe/xe_lrc.h
index 7be5e3da8bc8..a8ff4e59a1f4 100644
--- a/drivers/gpu/drm/xe/xe_lrc.h
+++ b/drivers/gpu/drm/xe/xe_lrc.h
@@ -158,6 +158,7 @@ int xe_lrc_lookup_default_reg_value(struct xe_gt *gt,
 u32 *xe_lrc_emit_hwe_state_instructions(struct xe_exec_queue *q, u32 *cs);
 
 void xe_lrc_set_multi_queue_priority(struct xe_lrc *lrc, enum xe_multi_queue_priority priority);
+u32 xe_lrc_get_multi_queue_active_queue_id(struct xe_hw_engine *hwe);
 
 struct xe_lrc_snapshot *xe_lrc_snapshot_capture(struct xe_lrc *lrc);
 void xe_lrc_snapshot_capture_delayed(struct xe_lrc_snapshot *snapshot);
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev4)
  2026-09-08  3:34 [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
@ 2026-09-08  3:42 ` Patchwork
  2026-09-08  4:28 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-09-08  3:42 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add multi_queue_active_lrca debugfs (rev4)
URL   : https://patchwork.freedesktop.org/series/173220/
State : success

== Summary ==

+ trap cleanup EXIT
+ kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig')
+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig
[03:40:52] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[03:40: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
[03:41:16] Starting KUnit Kernel (1/1)...
[03:41:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[03:41:16] ============= refcount_interrupt (4 subtests) ==============
[03:41:16] [PASSED] test_single_irq_change
[03:41:16] [PASSED] test_nested_irq_change
[03:41:16] [PASSED] test_multiple_irq_change
[03:41:16] [PASSED] test_irq_save
[03:41:16] =============== [PASSED] refcount_interrupt ================
[03:41:16] ================= gpu_buddy (14 subtests) ==================
[03:41:16] [PASSED] gpu_test_buddy_alloc_limit
[03:41:16] [PASSED] gpu_test_buddy_alloc_optimistic
[03:41:16] [PASSED] gpu_test_buddy_alloc_pessimistic
[03:41:16] [PASSED] gpu_test_buddy_alloc_pathological
[03:41:16] [PASSED] gpu_test_buddy_alloc_contiguous
[03:41:16] [PASSED] gpu_test_buddy_alloc_clear
[03:41:16] [PASSED] gpu_test_buddy_alloc_range
[03:41:17] [PASSED] gpu_test_buddy_alloc_range_bias
[03:41:18] [PASSED] gpu_test_buddy_fragmentation_performance
[03:41:18] [PASSED] gpu_test_buddy_dirty_tracker_performance
[03:41:18] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[03:41:18] [PASSED] gpu_test_buddy_offset_aligned_allocation
[03:41:18] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[03:41:18] [PASSED] gpu_test_buddy_addr_to_block
[03:41:18] ==================== [PASSED] gpu_buddy ====================
[03:41:18] ============================================================
[03:41:18] Testing complete. Ran 18 tests: passed: 18
[03:41:18] Elapsed time: 26.705s total, 4.404s configuring, 20.383s building, 1.872s running

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

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

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

+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[03:42:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[03:42:36] 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
[03:42:45] Starting KUnit Kernel (1/1)...
[03:42:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[03:42:45] ============= refcount_interrupt (4 subtests) ==============
[03:42:45] [PASSED] test_single_irq_change
[03:42:45] [PASSED] test_nested_irq_change
[03:42:45] [PASSED] test_multiple_irq_change
[03:42:45] [PASSED] test_irq_save
[03:42:45] =============== [PASSED] refcount_interrupt ================
[03:42:45] =============== dma-buf-fence (12 subtests) ================
[03:42:45] [PASSED] test_sanitycheck
[03:42:45] [PASSED] test_signaling
[03:42:45] [PASSED] test_add_callback
[03:42:45] [PASSED] test_late_add_callback
[03:42:45] [PASSED] test_rm_callback
[03:42:45] [PASSED] test_late_rm_callback
[03:42:45] [PASSED] test_status
[03:42:45] [PASSED] test_error
[03:42:45] [PASSED] test_wait
[03:42:45] [PASSED] test_wait_timeout
[03:42:45] [PASSED] test_stub
[03:42:45] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[03:42:45] ================== [PASSED] dma-buf-fence ==================
[03:42:45] ============ dma-buf-fence-chain (11 subtests) =============
[03:42:45] [PASSED] test_sanitycheck
[03:42:45] [PASSED] test_find_seqno
[03:42:45] [PASSED] test_find_signaled
[03:42:45] [PASSED] test_find_out_of_order
[03:42:50] [PASSED] test_find_gap
[03:42:50] [PASSED] test_find_race
[03:42:50] [PASSED] test_signal_forward
[03:42:50] [PASSED] test_signal_backward
[03:42:50] [PASSED] test_wait_forward
[03:42:50] [PASSED] test_wait_backward
[03:42:50] [PASSED] test_wait_random
[03:42:50] =============== [PASSED] dma-buf-fence-chain ===============
[03:42:50] ============ dma-buf-fence-unwrap (10 subtests) ============
[03:42:50] [PASSED] test_sanitycheck
[03:42:50] [PASSED] test_unwrap_array
[03:42:50] [PASSED] test_unwrap_chain
[03:42:50] [PASSED] test_unwrap_chain_array
[03:42:50] [PASSED] test_unwrap_merge
[03:42:50] [PASSED] test_unwrap_merge_duplicate
[03:42:50] [PASSED] test_unwrap_merge_seqno
[03:42:50] [PASSED] test_unwrap_merge_order
[03:42:50] [PASSED] test_unwrap_merge_complex
[03:42:50] [PASSED] test_unwrap_merge_complex_seqno
[03:42:50] ============== [PASSED] dma-buf-fence-unwrap ===============
[03:42:50] ================ dma-buf-resv (5 subtests) =================
[03:42:50] [PASSED] test_sanitycheck
[03:42:50] ===================== test_signaling  ======================
[03:42:50] [PASSED] kernel
[03:42:50] [PASSED] write
[03:42:50] [PASSED] read
[03:42:50] [PASSED] bookkeep
[03:42:50] ================= [PASSED] test_signaling ==================
[03:42:50] ====================== test_for_each  ======================
[03:42:50] [PASSED] kernel
[03:42:50] [PASSED] write
[03:42:50] [PASSED] read
[03:42:50] [PASSED] bookkeep
[03:42:50] ================== [PASSED] test_for_each ==================
[03:42:50] ================= test_for_each_unlocked  ==================
[03:42:50] [PASSED] kernel
[03:42:50] [PASSED] write
[03:42:50] [PASSED] read
[03:42:50] [PASSED] bookkeep
[03:42:50] ============= [PASSED] test_for_each_unlocked ==============
[03:42:50] ===================== test_get_fences  =====================
[03:42:50] [PASSED] kernel
[03:42:50] [PASSED] write
[03:42:50] [PASSED] read
[03:42:50] [PASSED] bookkeep
[03:42:50] ================= [PASSED] test_get_fences =================
[03:42:50] ================== [PASSED] dma-buf-resv ===================
[03:42:50] ============================================================
[03:42:50] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[03:42:50] Elapsed time: 15.809s total, 1.800s configuring, 8.687s building, 5.283s running

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Add multi_queue_active_lrca debugfs (rev4)
  2026-09-08  3:34 [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
  2026-09-08  3:42 ` ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev4) Patchwork
@ 2026-09-08  4:28 ` Patchwork
  2026-09-08  5:44 ` ✓ Xe.CI.FULL: " Patchwork
  2026-09-08 14:42 ` [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-09-08  4:28 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add multi_queue_active_lrca debugfs (rev4)
URL   : https://patchwork.freedesktop.org/series/173220/
State : success

== Summary ==

CI Bug Log - changes from xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095_BAT -> xe-pw-173220v4_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@xe_waitfence@reltime:
    - bat-ptl-2:          [FAIL][1] ([Intel XE#9115]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095/bat-ptl-2/igt@xe_waitfence@reltime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/bat-ptl-2/igt@xe_waitfence@reltime.html

  
  [Intel XE#9115]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9115


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

  * Linux: xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095 -> xe-pw-173220v4

  IGT_9085: 9085
  xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095: 303ba83101bce8edfa88f91dc82d2697f596c095
  xe-pw-173220v4: 173220v4

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/xe: Add multi_queue_active_lrca debugfs (rev4)
  2026-09-08  3:34 [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
  2026-09-08  3:42 ` ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev4) Patchwork
  2026-09-08  4:28 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-09-08  5:44 ` Patchwork
  2026-09-08 14:42 ` [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-09-08  5:44 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add multi_queue_active_lrca debugfs (rev4)
URL   : https://patchwork.freedesktop.org/series/173220/
State : success

== Summary ==

CI Bug Log - changes from xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095_FULL -> xe-pw-173220v4_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-173220v4_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-lnl:          NOTRUN -> [SKIP][1] ([Intel XE#3279])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][2] ([Intel XE#1407]) +2 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-addfb-size-overflow:
    - shard-lnl:          NOTRUN -> [SKIP][3] ([Intel XE#9125]) +27 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_big_fb@x-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][4] ([Intel XE#1124]) +9 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#1467] / [Intel XE#7367])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#7679])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html

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

  * igt@kms_bw@linear-tiling-4-displays-target-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#8365]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-target-1920x1080p.html

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

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#2887]) +14 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html

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

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

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#306] / [Intel XE#7358]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#7358])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_chamelium_color_pipeline@plane-lut1d.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2252]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#373]) +11 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_color_pipeline@plane-lut1d:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#7006])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_color_pipeline@plane-lut1d.html

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

  * igt@kms_content_protection@uevent:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#7642]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2320])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#1424]) +4 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#309] / [Intel XE#7343]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#323] / [Intel XE#6035])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#4354] / [Intel XE#5870])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#8265]) +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#703] / [Intel XE#7448])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@vrr:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#8586])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_feature_discovery@vrr.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#1421]) +9 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-lnl:          [PASS][33] -> [FAIL][34] ([Intel XE#301])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-panning-vs-hang:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#2482])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_flip@flip-vs-panning-vs-hang.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-lnl:          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-173220v4/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#1397] / [Intel XE#7385] / [Intel XE#9144]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#7179])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html

  * igt@kms_force_connector_basic@force-edid:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#352])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_force_connector_basic@force-edid.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#6312] / [Intel XE#651]) +7 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#656] / [Intel XE#7905]) +36 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2311]) +15 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#4141]) +2 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#7061] / [Intel XE#7356])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#6312]) +14 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#7399])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#7865]) +26 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#2548] / [Intel XE#7779]) +16 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2313]) +14 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#7905]) +44 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#7061]) +7 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-render.html

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

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#7779]) +25 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#3374] / [Intel XE#3544])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#1503])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#6900] / [Intel XE#7362]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#6911] / [Intel XE#7466])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#7591])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#8303]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#7283]) +4 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#7283]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html

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

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

  * igt@kms_plane_multiple@tiling-yf:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#5020] / [Intel XE#7348])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html

  * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +3 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#6813])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_pm_rpm@package-g7.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#4886])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#4608]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html

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

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#4608] / [Intel XE#7304]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1489]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#2893] / [Intel XE#7304]) +4 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#1489]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr-cursor-plane-move:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#7345]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@fbc-psr2-primary-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html

  * igt@kms_psr@pr-no-drrs:
    - shard-lnl:          NOTRUN -> [SKIP][84] ([Intel XE#1406]) +2 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_psr@pr-no-drrs.html

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

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#7795])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#1127] / [Intel XE#5813])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#2330] / [Intel XE#5813])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#1435] / [Intel XE#9142])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#1499])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#1447] / [Intel XE#7471])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@xe_compute@ccs-mode-basic.html

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

  * igt@xe_cw_post_sync@walker-post-sync:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#8608])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@xe_cw_post_sync@walker-post-sync.html

  * igt@xe_evict@evict-beng-cm-threads-small:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#6540] / [Intel XE#688]) +12 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html

  * igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#7482]) +23 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html

  * igt@xe_exec_basic@multigpu-no-exec-null-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#1392]) +9 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-imm:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#8374]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-userptr-imm.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#8374]) +20 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html

  * igt@xe_exec_multi_queue@many-queues-dyn-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#8364]) +6 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@xe_exec_multi_queue@many-queues-dyn-priority-smem.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#8364]) +36 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr.html

  * igt@xe_exec_reset@cm-multi-queue-close-execqueues:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#8369])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html

  * igt@xe_exec_reset@multi-queue-gt-reset:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#8369]) +2 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@xe_exec_reset@multi-queue-gt-reset.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#6196])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html

  * igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#8378]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#8378]) +11 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early:
    - shard-bmg:          [PASS][108] -> [ABORT][109] ([Intel XE#8007])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html

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

  * igt@xe_mmap@pci-membarrier:
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) +2 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_mmap@pci-membarrier.html

  * igt@xe_multigpu_svm@mgpu-migration-basic:
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#6964]) +4 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_multigpu_svm@mgpu-migration-basic.html

  * igt@xe_noexec_ping_pong@basic:
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#6259] / [Intel XE#7324] / [Intel XE#7406])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@xe_noexec_ping_pong@basic.html

  * igt@xe_page_reclaim@invalid-1g:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#7793])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@xe_page_reclaim@invalid-1g.html

  * igt@xe_page_reclaim@prl-max-entries:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#7793]) +2 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@xe_page_reclaim@prl-max-entries.html

  * igt@xe_pat@pat-index-xelp:
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#7590] / [Intel XE#977])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@xe_pat@pat-index-xelp.html

  * igt@xe_peer2peer@write:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#1061] / [Intel XE#7326] / [Intel XE#7353])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_peer2peer@write.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#584] / [Intel XE#7369]) +2 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm_residency@aspm_link_residency:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#7271])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@xe_pm_residency@aspm_link_residency.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#4650] / [Intel XE#7347])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_prefetch_fault@prefetch-fault:
    - shard-lnl:          NOTRUN -> [SKIP][121] ([Intel XE#7599])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@xe_prefetch_fault@prefetch-fault.html

  * igt@xe_query@multigpu-query-engines:
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#944]) +2 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-bmg:          NOTRUN -> [SKIP][123] ([Intel XE#944])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled:
    - shard-lnl:          NOTRUN -> [SKIP][124] ([Intel XE#7174])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-7/igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled.html

  * igt@xe_sriov_auto_provisioning@exclusive-ranges:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#4130] / [Intel XE#7366]) +2 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@xe_sriov_auto_provisioning@exclusive-ranges.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-lnl:          NOTRUN -> [SKIP][126] ([Intel XE#3342])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-5/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority:
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#8339]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-1/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority.html

  * igt@xe_sriov_vram@vf-access-provisioned:
    - shard-lnl:          NOTRUN -> [SKIP][128] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_sriov_vram@vf-access-provisioned.html

  * igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#7892]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-6/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html

  
#### Possible fixes ####

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][130] ([Intel XE#1503]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-2/igt@kms_hdr@invalid-hdr.html

  * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
    - shard-lnl:          [FAIL][132] ([Intel XE#9096]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095/shard-lnl-5/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-lnl-3/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html

  * igt@xe_module_load@many-reload:
    - shard-bmg:          [ABORT][134] ([Intel XE#8007]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095/shard-bmg-7/igt@xe_module_load@many-reload.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-3/igt@xe_module_load@many-reload.html

  
#### Warnings ####

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][136] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][137] ([Intel XE#2426] / [Intel XE#5848])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_exec_reset@gt-reset-fault-injection:
    - shard-bmg:          [ABORT][138] ([Intel XE#9131] / [Intel XE#9145]) -> [ABORT][139] ([Intel XE#9145])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095/shard-bmg-8/igt@xe_exec_reset@gt-reset-fault-injection.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v4/shard-bmg-7/igt@xe_exec_reset@gt-reset-fault-injection.html

  
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [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#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [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#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4886
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [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#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
  [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
  [Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#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#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
  [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#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
  [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#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [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#7271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7271
  [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#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
  [Intel XE#7324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7324
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
  [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#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
  [Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [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#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#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
  [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
  [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#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
  [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
  [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#7406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7406
  [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408
  [Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
  [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#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [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#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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [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#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
  [Intel XE#8608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8608
  [Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096
  [Intel XE#9125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9125
  [Intel XE#9131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9131
  [Intel XE#9142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9142
  [Intel XE#9144]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9144
  [Intel XE#9145]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9145
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977


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

  * Linux: xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095 -> xe-pw-173220v4

  IGT_9085: 9085
  xe-5701-303ba83101bce8edfa88f91dc82d2697f596c095: 303ba83101bce8edfa88f91dc82d2697f596c095
  xe-pw-173220v4: 173220v4

== Logs ==

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

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

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

* RE: [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs
  2026-09-08  3:34 [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
                   ` (2 preceding siblings ...)
  2026-09-08  5:44 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-09-08 14:42 ` Upadhyay, Tejas
  3 siblings, 0 replies; 5+ messages in thread
From: Upadhyay, Tejas @ 2026-09-08 14:42 UTC (permalink / raw)
  To: Gupta, Varun, intel-xe@lists.freedesktop.org
  Cc: Roper, Matthew D, Sousa, Gustavo



> -----Original Message-----
> From: Gupta, Varun <varun.gupta@intel.com>
> Sent: 08 September 2026 09:04
> To: intel-xe@lists.freedesktop.org
> Cc: Roper, Matthew D <matthew.d.roper@intel.com>; Upadhyay, Tejas
> <tejas.upadhyay@intel.com>; Sousa, Gustavo <gustavo.sousa@intel.com>
> Subject: [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs
> 
> Add a per-GT debugfs file, multi_queue_active_lrca, that prints, for every
> engine supporting multi-queue, the currently active queue ID
> (CSMQDEBUG) and the LRCA of the exec queue occupying that slot within the
> running multi-queue group.
> 
> RING_CURRENT_LRCA only reports the primary queue's LRCA for the group
> and does not update to reflect the active queue in multi-queue mode, which
> makes it hard to tell which queue is actually running when debugging multi-
> queue CSB/context-switch issues. Resolve the active LRCA by matching the
> primary LRCA against each queue's group and picking the queue at the
> reported active_id position.
> 
> v4:
>  - Extracted multi_queue_active_lrca into a dedicated
>    multi_queue_debugfs_list to prevent debugfs node registration on
>    platforms lacking multi-queue support entirely, via
>    xe_gt_has_multi_queue() gating. (Tejas)
> v3:
>  - Use xe_exec_queue_get_lrc() instead of raw pointer dereference to
>    safely handle concurrent multi-queue group creation and avoid race
>    conditions (Sashiko)
> v2:
>  - Maintain alphabetical order for includes and
>    pf_only_debugfs_list (Tejas)
>  - Export and reuse xe_lrc_get_multi_queue_active_queue_id() instead
>    of duplicate MMIO read (Tejas)
> 
> Bspec: 60321, 73976
> Signed-off-by: Varun Gupta <varun.gupta@intel.com>

Reviewed-by: Tejas Upadhyay <tejas.upadhyay@intel.com>

Tejas
> ---
>  drivers/gpu/drm/xe/xe_gt_debugfs.c | 54 ++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_guc_submit.c | 73
> ++++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_guc_submit.h |  5 ++
>  drivers/gpu/drm/xe/xe_lrc.c        |  6 +--
>  drivers/gpu/drm/xe/xe_lrc.h        |  1 +
>  5 files changed, 136 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c
> b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> index 361a70234d1f..bb09e70ee44c 100644
> --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> @@ -13,6 +13,7 @@
>  #include <drm/drm_managed.h>
>  #include <linux/math.h>
> 
> +#include "regs/xe_engine_regs.h"
>  #include "regs/xe_gt_regs.h"
>  #include "xe_device.h"
>  #include "xe_force_wake.h"
> @@ -25,6 +26,7 @@
>  #include "xe_gt_stats.h"
>  #include "xe_gt_topology.h"
>  #include "xe_guc_hwconfig.h"
> +#include "xe_guc_submit.h"
>  #include "xe_hw_engine.h"
>  #include "xe_lrc.h"
>  #include "xe_mmio.h"
> @@ -130,6 +132,48 @@ static int hw_engines(struct xe_gt *gt, struct
> drm_printer *p)
>  	return 0;
>  }
> 
> +static int multi_queue_active_lrca(struct xe_gt *gt, struct drm_printer
> +*p) {
> +	struct xe_guc *guc = &gt->uc.guc;
> +	struct xe_hw_engine *hwe;
> +	enum xe_hw_engine_id id;
> +
> +	for_each_hw_engine(hwe, gt, id) {
> +		u32 cur_lrca, active_id, lrca;
> +		unsigned int fw_ref;
> +
> +		if (!xe_gt_supports_multi_queue(gt, hwe->class))
> +			continue;
> +
> +		/*
> +		 * Forcewake is dropped before
> xe_guc_submit_active_multi_queue_lrca()
> +		 * below, which takes guc->submission_state.lock, to avoid
> holding a
> +		 * GT forcewake ref across a mutex acquired elsewhere in the
> opposite
> +		 * order.
> +		 */
> +		fw_ref = xe_force_wake_get(gt_to_fw(gt),
> XE_FORCEWAKE_ALL);
> +		if (!xe_force_wake_ref_has_domain(fw_ref,
> XE_FORCEWAKE_ALL)) {
> +			drm_printf(p, "%s\tforcewake failed, skipping\n",
> hwe->name);
> +			xe_force_wake_put(gt_to_fw(gt), fw_ref);
> +			continue;
> +		}
> +
> +		cur_lrca = xe_mmio_read32(&gt->mmio,
> +					  RING_CURRENT_LRCA(hwe-
> >mmio_base));
> +		active_id = xe_lrc_get_multi_queue_active_queue_id(hwe);
> +
> +		xe_force_wake_put(gt_to_fw(gt), fw_ref);
> +
> +		lrca = xe_guc_submit_active_multi_queue_lrca(guc, hwe,
> cur_lrca,
> +							     active_id);
> +
> +		drm_printf(p, "%s\tactive_queue_id %u\tcurrent_lrca
> 0x%08x\tactive_lrca 0x%08x\n",
> +			   hwe->name, active_id, cur_lrca, lrca);
> +	}
> +
> +	return 0;
> +}
> +
>  static int steering(struct xe_gt *gt, struct drm_printer *p)  {
>  	xe_gt_mcr_steering_dump(gt, p);
> @@ -254,6 +298,11 @@ static const struct drm_info_list
> pf_only_debugfs_list[] = {
>  	{ "steering", .show = xe_gt_debugfs_show_with_rpm, .data = steering
> },  };
> 
> +static const struct drm_info_list multi_queue_debugfs_list[] = {
> +	{ "multi_queue_active_lrca",
> +		.show = xe_gt_debugfs_show_with_rpm, .data =
> multi_queue_active_lrca
> +}, };
> +
>  static ssize_t write_to_gt_call(const char __user *userbuf, size_t count, loff_t
> *ppos,
>  				void (*call)(struct xe_gt *), struct xe_gt *gt)  {
> @@ -521,6 +570,11 @@ void xe_gt_debugfs_register(struct xe_gt *gt)
>  					 ARRAY_SIZE(pf_only_debugfs_list),
>  					 root, minor);
> 
> +	if (!IS_SRIOV_VF(xe) && xe_gt_has_multi_queue(gt))
> +		drm_debugfs_create_files(multi_queue_debugfs_list,
> +
> ARRAY_SIZE(multi_queue_debugfs_list),
> +					 root, minor);
> +
>  	if (xe_gt_is_main_type(gt) && !IS_DGFX(xe) && !IS_SRIOV_VF(xe))
>  		debugfs_create_file("gt_ia_bias", 0600, root, gt,
> &gt_ia_bias_fops);
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 99d8c807ff05..a39dcb85e3f4 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -3853,6 +3853,79 @@ bool xe_guc_has_registered_mlrc_queues(struct
> xe_guc *guc)
>  	return false;
>  }
> 
> +/**
> + * xe_guc_submit_active_multi_queue_lrca() - Resolve the LRCA of the
> +active
> + * queue in the multi-queue group currently running on an engine.
> + * @guc: the &xe_guc managing the exec queues
> + * @hwe: the &xe_hw_engine whose active queue is being resolved
> + * @cur_lrca: value read from RING_CURRENT_LRCA, identifies the running
> +group
> + * @active_id: current Active Queue ID read from CSMQDEBUG (position in
> +group)
> + *
> + * The running group is identified by matching @cur_lrca against the
> +group's
> + * primary LRCA; @active_id then selects the active queue within that group.
> + *
> + * Return: the LRCA of the active queue, or 0 if no matching queue is found.
> + */
> +u32 xe_guc_submit_active_multi_queue_lrca(struct xe_guc *guc,
> +					  struct xe_hw_engine *hwe,
> +					  u32 cur_lrca, u32 active_id)
> +{
> +	struct xe_exec_queue *q;
> +	unsigned long index;
> +	u32 lrca = 0;
> +
> +	/*
> +	 * submission_state.lock also protects exec_queue teardown: an exec
> +	 * queue is removed from exec_queue_lookup before its
> group/primary
> +	 * are freed, so any q found in the xarray below has a live group
> +	 * and primary for as long as we hold the lock.
> +	 */
> +	guard(mutex)(&guc->submission_state.lock);
> +
> +	xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) {
> +		struct xe_exec_queue_group *group = q->multi_queue.group;
> +		struct xe_lrc *active_lrc;
> +		struct xe_lrc *primary_lrc;
> +
> +		if (!q->multi_queue.valid || !group || !group->primary)
> +			continue;
> +		/*
> +		 * Multi-queue exec queues are bound to a hw engine class;
> +		 * GuC dynamically schedules them onto one of the class's
> +		 * physical instances, so there is no fixed queue-to-instance
> +		 * mapping to filter on here.
> +		 */
> +		if (q->class != hwe->class)
> +			continue;
> +		if (q->multi_queue.pos != active_id)
> +			continue;
> +		/*
> +		 * LRCAs are page-aligned (4K) addresses in GGTT; the low
> +		 * bits reported by RING_CURRENT_LRCA are not meaningful,
> so
> +		 * only compare bits [31:12].
> +		 */
> +		primary_lrc = xe_exec_queue_get_lrc(group->primary, 0);
> +		if (!primary_lrc)
> +			continue;
> +
> +		if ((xe_lrc_ggtt_addr(primary_lrc) ^ cur_lrca) & GENMASK(31,
> 12)) {
> +			xe_lrc_put(primary_lrc);
> +			continue;
> +		}
> +
> +		active_lrc = xe_exec_queue_get_lrc(q, 0);
> +		xe_lrc_put(primary_lrc);
> +		if (!active_lrc)
> +			continue;
> +
> +		lrca = xe_lrc_ggtt_addr(active_lrc);
> +		xe_lrc_put(active_lrc);
> +		break;
> +	}
> +
> +	return lrca;
> +}
> +
>  /**
>   * xe_guc_contexts_hwsp_rebase - Re-compute GGTT references within all
>   * exec queues registered to given GuC.
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.h
> b/drivers/gpu/drm/xe/xe_guc_submit.h
> index ccade320dc69..29abf07d8f04 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.h
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.h
> @@ -11,6 +11,7 @@
>  struct drm_printer;
>  struct xe_exec_queue;
>  struct xe_guc;
> +struct xe_hw_engine;
> 
>  int xe_guc_submit_init(struct xe_guc *guc, unsigned int num_ids);  int
> xe_guc_submit_enable(struct xe_guc *guc); @@ -55,6 +56,10 @@ void
> xe_guc_register_vf_exec_queue(struct xe_exec_queue *q, int ctx_type);
> 
>  bool xe_guc_has_registered_mlrc_queues(struct xe_guc *guc);
> 
> +u32 xe_guc_submit_active_multi_queue_lrca(struct xe_guc *guc,
> +					  struct xe_hw_engine *hwe,
> +					  u32 cur_lrca, u32 active_id);
> +
>  int xe_guc_contexts_hwsp_rebase(struct xe_guc *guc, void *scratch);
> 
>  #endif
> diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c index
> 25fe9dbc9141..f1cf1463f1b2 100644
> --- a/drivers/gpu/drm/xe/xe_lrc.c
> +++ b/drivers/gpu/drm/xe/xe_lrc.c
> @@ -2705,7 +2705,7 @@ static u64 get_queue_timestamp(struct
> xe_hw_engine *hwe)
>  				   RING_QUEUE_TIMESTAMP(hwe-
> >mmio_base));
>  }
> 
> -static u32 get_multi_queue_active_queue_id(struct xe_hw_engine *hwe)
> +u32 xe_lrc_get_multi_queue_active_queue_id(struct xe_hw_engine *hwe)
>  {
>  	u32 val = xe_mmio_read32(&hwe->gt->mmio,
>  				 RING_CSMQDEBUG(hwe->mmio_base));
> @@ -2739,14 +2739,14 @@ static u64
> xe_lrc_multi_queue_timestamp(struct xe_lrc *lrc)
>  	if (!hwe)
>  		return xe_lrc_queue_timestamp(lrc);
> 
> -	if (get_multi_queue_active_queue_id(hwe) != lrc->multi_queue.pos)
> +	if (xe_lrc_get_multi_queue_active_queue_id(hwe) !=
> +lrc->multi_queue.pos)
>  		return xe_lrc_queue_timestamp(lrc);
> 
>  	/* queue is active, so store the queue timestamp register */
>  	reg_queue_ts = get_queue_timestamp(hwe);
> 
>  	/* double check queue and primary queue are both still active */
> -	if (get_multi_queue_active_queue_id(hwe) != lrc->multi_queue.pos ||
> +	if (xe_lrc_get_multi_queue_active_queue_id(hwe) !=
> +lrc->multi_queue.pos ||
>  	    !context_active(primary_lrc))
>  		return xe_lrc_queue_timestamp(lrc);
> 
> diff --git a/drivers/gpu/drm/xe/xe_lrc.h b/drivers/gpu/drm/xe/xe_lrc.h index
> 7be5e3da8bc8..a8ff4e59a1f4 100644
> --- a/drivers/gpu/drm/xe/xe_lrc.h
> +++ b/drivers/gpu/drm/xe/xe_lrc.h
> @@ -158,6 +158,7 @@ int xe_lrc_lookup_default_reg_value(struct xe_gt *gt,
>  u32 *xe_lrc_emit_hwe_state_instructions(struct xe_exec_queue *q, u32 *cs);
> 
>  void xe_lrc_set_multi_queue_priority(struct xe_lrc *lrc, enum
> xe_multi_queue_priority priority);
> +u32 xe_lrc_get_multi_queue_active_queue_id(struct xe_hw_engine *hwe);
> 
>  struct xe_lrc_snapshot *xe_lrc_snapshot_capture(struct xe_lrc *lrc);  void
> xe_lrc_snapshot_capture_delayed(struct xe_lrc_snapshot *snapshot);
> --
> 2.43.0


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

end of thread, other threads:[~2026-09-08 14:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-08  3:34 [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
2026-09-08  3:42 ` ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev4) Patchwork
2026-09-08  4:28 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-08  5:44 ` ✓ Xe.CI.FULL: " Patchwork
2026-09-08 14:42 ` [PATCH v4] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).