Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs
@ 2026-09-07 13:47 Varun Gupta
  2026-09-07 13:58 ` ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Varun Gupta @ 2026-09-07 13:47 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, tejas.upadhyay

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.

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 | 46 +++++++++++++++++++
 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, 128 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..d7d6f50d8dab 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);
@@ -249,6 +293,8 @@ static const struct drm_info_list vf_safe_debugfs_list[] = {
 static const struct drm_info_list pf_only_debugfs_list[] = {
 	{ "hw_engines", .show = xe_gt_debugfs_show_with_rpm, .data = hw_engines },
 	{ "mocs", .show = xe_gt_debugfs_show_with_rpm, .data = xe_mocs_dump },
+	{ "multi_queue_active_lrca",
+		.show = xe_gt_debugfs_show_with_rpm, .data = multi_queue_active_lrca },
 	{ "pat", .show = xe_gt_debugfs_show_with_rpm, .data = xe_pat_dump },
 	{ "powergate_info", .show = xe_gt_debugfs_show_with_rpm, .data = xe_gt_idle_pg_print },
 	{ "steering", .show = xe_gt_debugfs_show_with_rpm, .data = steering },
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] 6+ messages in thread

* ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3)
  2026-09-07 13:47 [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
@ 2026-09-07 13:58 ` Patchwork
  2026-09-07 14:13 ` [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-09-07 13:58 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add multi_queue_active_lrca debugfs (rev3)
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
[13:56:48] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:56:52] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:57:13] Starting KUnit Kernel (1/1)...
[13:57:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:57:13] ============= refcount_interrupt (4 subtests) ==============
[13:57:13] [PASSED] test_single_irq_change
[13:57:13] [PASSED] test_nested_irq_change
[13:57:13] [PASSED] test_multiple_irq_change
[13:57:13] [PASSED] test_irq_save
[13:57:13] =============== [PASSED] refcount_interrupt ================
[13:57:13] ================= gpu_buddy (14 subtests) ==================
[13:57:13] [PASSED] gpu_test_buddy_alloc_limit
[13:57:13] [PASSED] gpu_test_buddy_alloc_optimistic
[13:57:13] [PASSED] gpu_test_buddy_alloc_pessimistic
[13:57:13] [PASSED] gpu_test_buddy_alloc_pathological
[13:57:13] [PASSED] gpu_test_buddy_alloc_contiguous
[13:57:13] [PASSED] gpu_test_buddy_alloc_clear
[13:57:13] [PASSED] gpu_test_buddy_alloc_range
[13:57:13] [PASSED] gpu_test_buddy_alloc_range_bias
[13:57:14] [PASSED] gpu_test_buddy_fragmentation_performance
[13:57:15] [PASSED] gpu_test_buddy_dirty_tracker_performance
[13:57:15] [PASSED] gpu_test_buddy_alloc_exceeds_max_order
[13:57:15] [PASSED] gpu_test_buddy_offset_aligned_allocation
[13:57:15] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress
[13:57:15] [PASSED] gpu_test_buddy_addr_to_block
[13:57:15] ==================== [PASSED] gpu_buddy ====================
[13:57:15] ============================================================
[13:57:15] Testing complete. Ran 18 tests: passed: 18
[13:57:15] Elapsed time: 26.965s total, 4.372s configuring, 20.625s building, 1.924s 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
[13:57:15] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:57:17] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:57:50] Starting KUnit Kernel (1/1)...
[13:57:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:57:51] ============= refcount_interrupt (4 subtests) ==============
[13:57:51] [PASSED] test_single_irq_change
[13:57:51] [PASSED] test_nested_irq_change
[13:57:51] [PASSED] test_multiple_irq_change
[13:57:51] [PASSED] test_irq_save
[13:57:51] =============== [PASSED] refcount_interrupt ================
[13:57:51] ================== guc_buf (11 subtests) ===================
[13:57:51] [PASSED] test_smallest
[13:57:51] [PASSED] test_largest
[13:57:51] [PASSED] test_granular
[13:57:51] [PASSED] test_unique
[13:57:51] [PASSED] test_overlap
[13:57:51] [PASSED] test_reusable
[13:57:51] [PASSED] test_too_big
[13:57:51] [PASSED] test_flush
[13:57:51] [PASSED] test_lookup
[13:57:51] [PASSED] test_data
[13:57:51] [PASSED] test_class
[13:57:51] ===================== [PASSED] guc_buf =====================
[13:57:51] =================== guc_dbm (7 subtests) ===================
[13:57:51] [PASSED] test_empty
[13:57:51] [PASSED] test_default
[13:57:51] ======================== test_size  ========================
[13:57:51] [PASSED] 4
[13:57:51] [PASSED] 8
[13:57:51] [PASSED] 32
[13:57:51] [PASSED] 256
[13:57:51] ==================== [PASSED] test_size ====================
[13:57:51] ======================= test_reuse  ========================
[13:57:51] [PASSED] 4
[13:57:51] [PASSED] 8
[13:57:51] [PASSED] 32
[13:57:51] [PASSED] 256
[13:57:51] =================== [PASSED] test_reuse ====================
[13:57:51] =================== test_range_overlap  ====================
[13:57:51] [PASSED] 4
[13:57:51] [PASSED] 8
[13:57:51] [PASSED] 32
[13:57:51] [PASSED] 256
[13:57:51] =============== [PASSED] test_range_overlap ================
[13:57:51] =================== test_range_compact  ====================
[13:57:51] [PASSED] 4
[13:57:51] [PASSED] 8
[13:57:51] [PASSED] 32
[13:57:51] [PASSED] 256
[13:57:51] =============== [PASSED] test_range_compact ================
[13:57:51] ==================== test_range_spare  =====================
[13:57:51] [PASSED] 4
[13:57:51] [PASSED] 8
[13:57:51] [PASSED] 32
[13:57:51] [PASSED] 256
[13:57:51] ================ [PASSED] test_range_spare =================
[13:57:51] ===================== [PASSED] guc_dbm =====================
[13:57:51] =================== guc_idm (6 subtests) ===================
[13:57:51] [PASSED] bad_init
[13:57:51] [PASSED] no_init
[13:57:51] [PASSED] init_fini
[13:57:51] [PASSED] check_used
[13:57:51] [PASSED] check_quota
[13:57:51] [PASSED] check_all
[13:57:51] ===================== [PASSED] guc_idm =====================
[13:57:51] =============== guc_klv_helpers (9 subtests) ===============
[13:57:51] [PASSED] test_count
[13:57:51] [PASSED] test_encode_u32
[13:57:51] [PASSED] test_encode_u64
[13:57:51] [PASSED] test_encode_string
[13:57:51] [PASSED] test_encode_object_raw
[13:57:51] [PASSED] test_encode_object_klv
[13:57:51] [PASSED] test_encode_object_nested
[13:57:51] [PASSED] test_encode_object_basic
[13:57:51] [PASSED] test_print
[13:57:51] ================= [PASSED] guc_klv_helpers =================
[13:57:51] =================== xe_log (4 subtests) ====================
[13:57:51] [PASSED] demo_cper
[13:57:51] [PASSED] demo_dmesg
[13:57:51] ======================= test_dmesg  ========================
[13:57:51] [PASSED] test_fatal
[13:57:51] [PASSED] test_fatal_tile
[13:57:51] [PASSED] test_fatal_gt
[13:57:51] [PASSED] test_fatal_comp
[13:57:51] [PASSED] test_fatal_comp_tile
[13:57:51] [PASSED] test_fatal_comp_gt
[13:57:51] [PASSED] test_fatal_all
[13:57:51] [PASSED] test_recoverable
[13:57:51] [PASSED] test_recoverable_tile
[13:57:51] [PASSED] test_recoverable_gt
[13:57:51] [PASSED] test_recoverable_comp
[13:57:51] [PASSED] test_recoverable_comp_tile
[13:57:51] [PASSED] test_recoverable_comp_gt
[13:57:51] [PASSED] test_recoverable_all
[13:57:51] [PASSED] test_info
[13:57:51] [PASSED] test_info_tile
[13:57:51] [PASSED] test_info_gt
[13:57:51] [PASSED] test_info_err
[13:57:51] [PASSED] test_info_comp
[13:57:51] [PASSED] test_info_comp_tile
[13:57:51] [PASSED] test_info_comp_gt
[13:57:51] [PASSED] test_info_all
[13:57:51] [PASSED] test_hw_fatal
[13:57:51] [PASSED] test_hw_recoverable
[13:57:51] [PASSED] test_hw_corrected
[13:57:51] [PASSED] test_hw_informational
[13:57:51] =================== [PASSED] test_dmesg ====================
[13:57:51] ====================== test_invalid  =======================
[13:57:51] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[13:57:51] ================== [SKIPPED] test_invalid ==================
[13:57:51] ===================== [PASSED] xe_log ======================
[13:57:51] ================== no_relay (3 subtests) ===================
[13:57:51] [PASSED] xe_drops_guc2pf_if_not_ready
[13:57:51] [PASSED] xe_drops_guc2vf_if_not_ready
[13:57:51] [PASSED] xe_rejects_send_if_not_ready
[13:57:51] ==================== [PASSED] no_relay =====================
[13:57:51] ================== pf_relay (14 subtests) ==================
[13:57:51] [PASSED] pf_rejects_guc2pf_too_short
[13:57:51] [PASSED] pf_rejects_guc2pf_too_long
[13:57:51] [PASSED] pf_rejects_guc2pf_no_payload
[13:57:51] [PASSED] pf_fails_no_payload
[13:57:51] [PASSED] pf_fails_bad_origin
[13:57:51] [PASSED] pf_fails_bad_type
[13:57:51] [PASSED] pf_txn_reports_error
[13:57:51] [PASSED] pf_txn_sends_pf2guc
[13:57:51] [PASSED] pf_sends_pf2guc
[13:57:51] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:57:51] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:57:51] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:57:51] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:57:51] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:57:51] ==================== [PASSED] pf_relay =====================
[13:57:51] ================== vf_relay (3 subtests) ===================
[13:57:51] [PASSED] vf_rejects_guc2vf_too_short
[13:57:51] [PASSED] vf_rejects_guc2vf_too_long
[13:57:51] [PASSED] vf_rejects_guc2vf_no_payload
[13:57:51] ==================== [PASSED] vf_relay =====================
[13:57:51] ================ pf_gt_config (9 subtests) =================
[13:57:51] [PASSED] fair_contexts_1vf
[13:57:51] [PASSED] fair_doorbells_1vf
[13:57:51] [PASSED] fair_ggtt_1vf
[13:57:51] ====================== fair_vram_1vf  ======================
[13:57:51] [PASSED] 3.50 GiB
[13:57:51] [PASSED] 11.5 GiB
[13:57:51] [PASSED] 15.5 GiB
[13:57:51] [PASSED] 31.5 GiB
[13:57:51] [PASSED] 63.5 GiB
[13:57:51] [PASSED] 1.91 GiB
[13:57:51] ================== [PASSED] fair_vram_1vf ==================
[13:57:51] ================ fair_vram_1vf_admin_only  =================
[13:57:51] [PASSED] 3.50 GiB
[13:57:51] [PASSED] 11.5 GiB
[13:57:51] [PASSED] 15.5 GiB
[13:57:51] [PASSED] 31.5 GiB
[13:57:51] [PASSED] 63.5 GiB
[13:57:51] [PASSED] 1.91 GiB
[13:57:51] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:57:51] ====================== fair_contexts  ======================
[13:57:51] [PASSED] 1 VF
[13:57:51] [PASSED] 2 VFs
[13:57:51] [PASSED] 3 VFs
[13:57:51] [PASSED] 4 VFs
[13:57:51] [PASSED] 5 VFs
[13:57:51] [PASSED] 6 VFs
[13:57:51] [PASSED] 7 VFs
[13:57:51] [PASSED] 8 VFs
[13:57:51] [PASSED] 9 VFs
[13:57:51] [PASSED] 10 VFs
[13:57:51] [PASSED] 11 VFs
[13:57:51] [PASSED] 12 VFs
[13:57:51] [PASSED] 13 VFs
[13:57:51] [PASSED] 14 VFs
[13:57:51] [PASSED] 15 VFs
[13:57:51] [PASSED] 16 VFs
[13:57:51] [PASSED] 17 VFs
[13:57:51] [PASSED] 18 VFs
[13:57:51] [PASSED] 19 VFs
[13:57:51] [PASSED] 20 VFs
[13:57:51] [PASSED] 21 VFs
[13:57:51] [PASSED] 22 VFs
[13:57:51] [PASSED] 23 VFs
[13:57:51] [PASSED] 24 VFs
[13:57:51] [PASSED] 25 VFs
[13:57:51] [PASSED] 26 VFs
[13:57:51] [PASSED] 27 VFs
[13:57:51] [PASSED] 28 VFs
[13:57:51] [PASSED] 29 VFs
[13:57:51] [PASSED] 30 VFs
[13:57:51] [PASSED] 31 VFs
[13:57:51] [PASSED] 32 VFs
[13:57:51] [PASSED] 33 VFs
[13:57:51] [PASSED] 34 VFs
[13:57:51] [PASSED] 35 VFs
[13:57:51] [PASSED] 36 VFs
[13:57:51] [PASSED] 37 VFs
[13:57:51] [PASSED] 38 VFs
[13:57:51] [PASSED] 39 VFs
[13:57:51] [PASSED] 40 VFs
[13:57:51] [PASSED] 41 VFs
[13:57:51] [PASSED] 42 VFs
[13:57:51] [PASSED] 43 VFs
[13:57:51] [PASSED] 44 VFs
[13:57:51] [PASSED] 45 VFs
[13:57:51] [PASSED] 46 VFs
[13:57:51] [PASSED] 47 VFs
[13:57:51] [PASSED] 48 VFs
[13:57:51] [PASSED] 49 VFs
[13:57:51] [PASSED] 50 VFs
[13:57:51] [PASSED] 51 VFs
[13:57:51] [PASSED] 52 VFs
[13:57:51] [PASSED] 53 VFs
[13:57:51] [PASSED] 54 VFs
[13:57:51] [PASSED] 55 VFs
[13:57:51] [PASSED] 56 VFs
[13:57:51] [PASSED] 57 VFs
[13:57:51] [PASSED] 58 VFs
[13:57:51] [PASSED] 59 VFs
[13:57:51] [PASSED] 60 VFs
[13:57:51] [PASSED] 61 VFs
[13:57:51] [PASSED] 62 VFs
[13:57:51] [PASSED] 63 VFs
[13:57:51] ================== [PASSED] fair_contexts ==================
[13:57:51] ===================== fair_doorbells  ======================
[13:57:51] [PASSED] 1 VF
[13:57:51] [PASSED] 2 VFs
[13:57:51] [PASSED] 3 VFs
[13:57:51] [PASSED] 4 VFs
[13:57:51] [PASSED] 5 VFs
[13:57:51] [PASSED] 6 VFs
[13:57:51] [PASSED] 7 VFs
[13:57:51] [PASSED] 8 VFs
[13:57:51] [PASSED] 9 VFs
[13:57:51] [PASSED] 10 VFs
[13:57:51] [PASSED] 11 VFs
[13:57:51] [PASSED] 12 VFs
[13:57:51] [PASSED] 13 VFs
[13:57:51] [PASSED] 14 VFs
[13:57:51] [PASSED] 15 VFs
[13:57:51] [PASSED] 16 VFs
[13:57:51] [PASSED] 17 VFs
[13:57:51] [PASSED] 18 VFs
[13:57:51] [PASSED] 19 VFs
[13:57:51] [PASSED] 20 VFs
[13:57:51] [PASSED] 21 VFs
[13:57:51] [PASSED] 22 VFs
[13:57:51] [PASSED] 23 VFs
[13:57:51] [PASSED] 24 VFs
[13:57:51] [PASSED] 25 VFs
[13:57:51] [PASSED] 26 VFs
[13:57:51] [PASSED] 27 VFs
[13:57:51] [PASSED] 28 VFs
[13:57:51] [PASSED] 29 VFs
[13:57:51] [PASSED] 30 VFs
[13:57:51] [PASSED] 31 VFs
[13:57:51] [PASSED] 32 VFs
[13:57:51] [PASSED] 33 VFs
[13:57:51] [PASSED] 34 VFs
[13:57:51] [PASSED] 35 VFs
[13:57:51] [PASSED] 36 VFs
[13:57:51] [PASSED] 37 VFs
[13:57:51] [PASSED] 38 VFs
[13:57:51] [PASSED] 39 VFs
[13:57:51] [PASSED] 40 VFs
[13:57:51] [PASSED] 41 VFs
[13:57:51] [PASSED] 42 VFs
[13:57:51] [PASSED] 43 VFs
[13:57:51] [PASSED] 44 VFs
[13:57:51] [PASSED] 45 VFs
[13:57:51] [PASSED] 46 VFs
[13:57:51] [PASSED] 47 VFs
[13:57:51] [PASSED] 48 VFs
[13:57:51] [PASSED] 49 VFs
[13:57:51] [PASSED] 50 VFs
[13:57:51] [PASSED] 51 VFs
[13:57:51] [PASSED] 52 VFs
[13:57:51] [PASSED] 53 VFs
[13:57:51] [PASSED] 54 VFs
[13:57:51] [PASSED] 55 VFs
[13:57:51] [PASSED] 56 VFs
[13:57:51] [PASSED] 57 VFs
[13:57:51] [PASSED] 58 VFs
[13:57:51] [PASSED] 59 VFs
[13:57:51] [PASSED] 60 VFs
[13:57:51] [PASSED] 61 VFs
[13:57:51] [PASSED] 62 VFs
[13:57:51] [PASSED] 63 VFs
[13:57:51] ================= [PASSED] fair_doorbells ==================
[13:57:51] ======================== fair_ggtt  ========================
[13:57:51] [PASSED] 1 VF
[13:57:51] [PASSED] 2 VFs
[13:57:51] [PASSED] 3 VFs
[13:57:51] [PASSED] 4 VFs
[13:57:51] [PASSED] 5 VFs
[13:57:51] [PASSED] 6 VFs
[13:57:51] [PASSED] 7 VFs
[13:57:51] [PASSED] 8 VFs
[13:57:51] [PASSED] 9 VFs
[13:57:51] [PASSED] 10 VFs
[13:57:51] [PASSED] 11 VFs
[13:57:51] [PASSED] 12 VFs
[13:57:51] [PASSED] 13 VFs
[13:57:51] [PASSED] 14 VFs
[13:57:51] [PASSED] 15 VFs
[13:57:51] [PASSED] 16 VFs
[13:57:51] [PASSED] 17 VFs
[13:57:51] [PASSED] 18 VFs
[13:57:51] [PASSED] 19 VFs
[13:57:51] [PASSED] 20 VFs
[13:57:51] [PASSED] 21 VFs
[13:57:51] [PASSED] 22 VFs
[13:57:51] [PASSED] 23 VFs
[13:57:51] [PASSED] 24 VFs
[13:57:51] [PASSED] 25 VFs
[13:57:51] [PASSED] 26 VFs
[13:57:51] [PASSED] 27 VFs
[13:57:51] [PASSED] 28 VFs
[13:57:51] [PASSED] 29 VFs
[13:57:51] [PASSED] 30 VFs
[13:57:51] [PASSED] 31 VFs
[13:57:51] [PASSED] 32 VFs
[13:57:51] [PASSED] 33 VFs
[13:57:51] [PASSED] 34 VFs
[13:57:51] [PASSED] 35 VFs
[13:57:51] [PASSED] 36 VFs
[13:57:51] [PASSED] 37 VFs
[13:57:51] [PASSED] 38 VFs
[13:57:51] [PASSED] 39 VFs
[13:57:51] [PASSED] 40 VFs
[13:57:51] [PASSED] 41 VFs
[13:57:51] [PASSED] 42 VFs
[13:57:51] [PASSED] 43 VFs
[13:57:51] [PASSED] 44 VFs
[13:57:51] [PASSED] 45 VFs
[13:57:51] [PASSED] 46 VFs
[13:57:51] [PASSED] 47 VFs
[13:57:51] [PASSED] 48 VFs
[13:57:51] [PASSED] 49 VFs
[13:57:51] [PASSED] 50 VFs
[13:57:51] [PASSED] 51 VFs
[13:57:51] [PASSED] 52 VFs
[13:57:51] [PASSED] 53 VFs
[13:57:51] [PASSED] 54 VFs
[13:57:51] [PASSED] 55 VFs
[13:57:51] [PASSED] 56 VFs
[13:57:51] [PASSED] 57 VFs
[13:57:51] [PASSED] 58 VFs
[13:57:51] [PASSED] 59 VFs
[13:57:51] [PASSED] 60 VFs
[13:57:51] [PASSED] 61 VFs
[13:57:51] [PASSED] 62 VFs
[13:57:51] [PASSED] 63 VFs
[13:57:51] ==================== [PASSED] fair_ggtt ====================
[13:57:51] ======================== fair_vram  ========================
[13:57:51] [PASSED] 1 VF
[13:57:51] [PASSED] 2 VFs
[13:57:51] [PASSED] 3 VFs
[13:57:51] [PASSED] 4 VFs
[13:57:51] [PASSED] 5 VFs
[13:57:51] [PASSED] 6 VFs
[13:57:51] [PASSED] 7 VFs
[13:57:51] [PASSED] 8 VFs
[13:57:51] [PASSED] 9 VFs
[13:57:51] [PASSED] 10 VFs
[13:57:51] [PASSED] 11 VFs
[13:57:51] [PASSED] 12 VFs
[13:57:51] [PASSED] 13 VFs
[13:57:51] [PASSED] 14 VFs
[13:57:51] [PASSED] 15 VFs
[13:57:51] [PASSED] 16 VFs
[13:57:51] [PASSED] 17 VFs
[13:57:51] [PASSED] 18 VFs
[13:57:51] [PASSED] 19 VFs
[13:57:51] [PASSED] 20 VFs
[13:57:51] [PASSED] 21 VFs
[13:57:51] [PASSED] 22 VFs
[13:57:51] [PASSED] 23 VFs
[13:57:51] [PASSED] 24 VFs
[13:57:51] [PASSED] 25 VFs
[13:57:51] [PASSED] 26 VFs
[13:57:51] [PASSED] 27 VFs
[13:57:51] [PASSED] 28 VFs
[13:57:51] [PASSED] 29 VFs
[13:57:51] [PASSED] 30 VFs
[13:57:51] [PASSED] 31 VFs
[13:57:51] [PASSED] 32 VFs
[13:57:51] [PASSED] 33 VFs
[13:57:51] [PASSED] 34 VFs
[13:57:51] [PASSED] 35 VFs
[13:57:51] [PASSED] 36 VFs
[13:57:51] [PASSED] 37 VFs
[13:57:51] [PASSED] 38 VFs
[13:57:51] [PASSED] 39 VFs
[13:57:51] [PASSED] 40 VFs
[13:57:51] [PASSED] 41 VFs
[13:57:51] [PASSED] 42 VFs
[13:57:51] [PASSED] 43 VFs
[13:57:51] [PASSED] 44 VFs
[13:57:51] [PASSED] 45 VFs
[13:57:51] [PASSED] 46 VFs
[13:57:51] [PASSED] 47 VFs
[13:57:51] [PASSED] 48 VFs
[13:57:51] [PASSED] 49 VFs
[13:57:51] [PASSED] 50 VFs
[13:57:51] [PASSED] 51 VFs
[13:57:51] [PASSED] 52 VFs
[13:57:51] [PASSED] 53 VFs
[13:57:51] [PASSED] 54 VFs
[13:57:51] [PASSED] 55 VFs
[13:57:51] [PASSED] 56 VFs
[13:57:51] [PASSED] 57 VFs
[13:57:51] [PASSED] 58 VFs
[13:57:51] [PASSED] 59 VFs
[13:57:51] [PASSED] 60 VFs
[13:57:51] [PASSED] 61 VFs
[13:57:51] [PASSED] 62 VFs
[13:57:51] [PASSED] 63 VFs
[13:57:51] ==================== [PASSED] fair_vram ====================
[13:57:51] ================== [PASSED] pf_gt_config ===================
[13:57:51] ===================== lmtt (1 subtest) =====================
[13:57:51] ======================== test_ops  =========================
[13:57:51] [PASSED] 2-level
[13:57:51] [PASSED] multi-level
[13:57:51] ==================== [PASSED] test_ops =====================
[13:57:51] ====================== [PASSED] lmtt =======================
[13:57:51] ================= sriov_packet (1 subtest) =================
[13:57:51] [PASSED] test_descriptor_init
[13:57:51] ================== [PASSED] sriov_packet ===================
[13:57:51] ================= pf_service (11 subtests) =================
[13:57:51] [PASSED] pf_negotiate_any
[13:57:51] [PASSED] pf_negotiate_base_match
[13:57:51] [PASSED] pf_negotiate_base_newer
[13:57:51] [PASSED] pf_negotiate_base_next
[13:57:51] [SKIPPED] pf_negotiate_base_older (no older minor)
[13:57:51] [PASSED] pf_negotiate_base_prev
[13:57:51] [PASSED] pf_negotiate_latest_match
[13:57:51] [PASSED] pf_negotiate_latest_newer
[13:57:51] [PASSED] pf_negotiate_latest_next
[13:57:51] [SKIPPED] pf_negotiate_latest_older (no older minor)
[13:57:51] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[13:57:51] =================== [PASSED] pf_service ====================
[13:57:51] ================= xe_guc_g2g (2 subtests) ==================
[13:57:51] ============== xe_live_guc_g2g_kunit_default  ==============
[13:57:51] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:57:51] ============== xe_live_guc_g2g_kunit_allmem  ===============
[13:57:51] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:57:51] =================== [SKIPPED] xe_guc_g2g ===================
[13:57:51] =================== xe_mocs (2 subtests) ===================
[13:57:51] ================ xe_live_mocs_kernel_kunit  ================
[13:57:51] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:57:51] ================ xe_live_mocs_reset_kunit  =================
[13:57:51] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:57:51] ==================== [SKIPPED] xe_mocs =====================
[13:57:51] ================= xe_migrate (2 subtests) ==================
[13:57:51] ================= xe_migrate_sanity_kunit  =================
[13:57:51] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:57:51] ================== xe_validate_ccs_kunit  ==================
[13:57:51] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:57:51] =================== [SKIPPED] xe_migrate ===================
[13:57:51] ================== xe_dma_buf (1 subtest) ==================
[13:57:51] ==================== xe_dma_buf_kunit  =====================
[13:57:51] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:57:51] =================== [SKIPPED] xe_dma_buf ===================
[13:57:51] ================= xe_bo_shrink (1 subtest) =================
[13:57:51] =================== xe_bo_shrink_kunit  ====================
[13:57:51] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:57:51] ================== [SKIPPED] xe_bo_shrink ==================
[13:57:51] ==================== xe_bo (2 subtests) ====================
[13:57:51] ================== xe_ccs_migrate_kunit  ===================
[13:57:51] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:57:51] ==================== xe_bo_evict_kunit  ====================
[13:57:51] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:57:51] ===================== [SKIPPED] xe_bo ======================
[13:57:51] =================== xe_any (9 subtests) ====================
[13:57:51] [PASSED] test_to_xe
[13:57:51] [PASSED] test_to_dev
[13:57:51] [PASSED] test_to_pdev
[13:57:51] [PASSED] test_to_drm
[13:57:51] [PASSED] test_if_pdev
[13:57:51] [PASSED] test_if_xe
[13:57:51] [PASSED] test_if_tile
[13:57:51] [PASSED] test_if_gt
[13:57:51] [PASSED] test_to_id
[13:57:51] ===================== [PASSED] xe_any ======================
[13:57:51] ==================== args (13 subtests) ====================
[13:57:51] [PASSED] count_args_test
[13:57:51] [PASSED] call_args_example
[13:57:51] [PASSED] call_args_test
[13:57:51] [PASSED] drop_first_arg_example
[13:57:51] [PASSED] drop_first_arg_test
[13:57:51] [PASSED] first_arg_example
[13:57:51] [PASSED] first_arg_test
[13:57:51] [PASSED] last_arg_example
[13:57:51] [PASSED] last_arg_test
[13:57:51] [PASSED] pick_arg_example
[13:57:51] [PASSED] if_args_example
[13:57:51] [PASSED] if_args_test
[13:57:51] [PASSED] sep_comma_example
[13:57:51] ====================== [PASSED] args =======================
[13:57:51] =================== xe_pci (3 subtests) ====================
[13:57:51] ==================== check_graphics_ip  ====================
[13:57:51] [PASSED] 12.00 Xe_LP
[13:57:51] [PASSED] 12.10 Xe_LP+
[13:57:51] [PASSED] 12.55 Xe_HPG
[13:57:51] [PASSED] 12.60 Xe_HPC
[13:57:51] [PASSED] 12.70 Xe_LPG
[13:57:51] [PASSED] 12.71 Xe_LPG
[13:57:51] [PASSED] 12.74 Xe_LPG+
[13:57:51] [PASSED] 20.01 Xe2_HPG
[13:57:51] [PASSED] 20.02 Xe2_HPG
[13:57:51] [PASSED] 20.04 Xe2_LPG
[13:57:51] [PASSED] 30.00 Xe3_LPG
[13:57:51] [PASSED] 30.01 Xe3_LPG
[13:57:51] [PASSED] 30.03 Xe3_LPG
[13:57:51] [PASSED] 30.04 Xe3_LPG
[13:57:51] [PASSED] 30.05 Xe3_LPG
[13:57:51] [PASSED] 35.10 Xe3p_LPG
[13:57:51] [PASSED] 35.11 Xe3p_XPC
[13:57:51] ================ [PASSED] check_graphics_ip ================
[13:57:51] ===================== check_media_ip  ======================
[13:57:51] [PASSED] 12.00 Xe_M
[13:57:51] [PASSED] 12.55 Xe_HPM
[13:57:51] [PASSED] 13.00 Xe_LPM+
[13:57:51] [PASSED] 13.01 Xe2_HPM
[13:57:51] [PASSED] 20.00 Xe2_LPM
[13:57:51] [PASSED] 30.00 Xe3_LPM
[13:57:51] [PASSED] 30.02 Xe3_LPM
[13:57:51] [PASSED] 35.00 Xe3p_LPM
[13:57:51] [PASSED] 35.03 Xe3p_HPM
[13:57:51] ================= [PASSED] check_media_ip ==================
[13:57:51] =================== check_platform_desc  ===================
[13:57:51] [PASSED] 0x9A60 (TIGERLAKE)
[13:57:51] [PASSED] 0x9A68 (TIGERLAKE)
[13:57:51] [PASSED] 0x9A70 (TIGERLAKE)
[13:57:51] [PASSED] 0x9A40 (TIGERLAKE)
[13:57:51] [PASSED] 0x9A49 (TIGERLAKE)
[13:57:51] [PASSED] 0x9A59 (TIGERLAKE)
[13:57:51] [PASSED] 0x9A78 (TIGERLAKE)
[13:57:51] [PASSED] 0x9AC0 (TIGERLAKE)
[13:57:51] [PASSED] 0x9AC9 (TIGERLAKE)
[13:57:51] [PASSED] 0x9AD9 (TIGERLAKE)
[13:57:51] [PASSED] 0x9AF8 (TIGERLAKE)
[13:57:51] [PASSED] 0x4C80 (ROCKETLAKE)
[13:57:51] [PASSED] 0x4C8A (ROCKETLAKE)
[13:57:51] [PASSED] 0x4C8B (ROCKETLAKE)
[13:57:51] [PASSED] 0x4C8C (ROCKETLAKE)
[13:57:51] [PASSED] 0x4C90 (ROCKETLAKE)
[13:57:51] [PASSED] 0x4C9A (ROCKETLAKE)
[13:57:51] [PASSED] 0x4680 (ALDERLAKE_S)
[13:57:51] [PASSED] 0x4682 (ALDERLAKE_S)
[13:57:51] [PASSED] 0x4688 (ALDERLAKE_S)
[13:57:51] [PASSED] 0x468A (ALDERLAKE_S)
[13:57:51] [PASSED] 0x468B (ALDERLAKE_S)
[13:57:51] [PASSED] 0x4690 (ALDERLAKE_S)
[13:57:51] [PASSED] 0x4692 (ALDERLAKE_S)
[13:57:51] [PASSED] 0x4693 (ALDERLAKE_S)
[13:57:51] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46AA (ALDERLAKE_P)
[13:57:51] [PASSED] 0x462A (ALDERLAKE_P)
[13:57:51] [PASSED] 0x4626 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x4628 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:57:51] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:57:51] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:57:51] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:57:51] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:57:51] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:57:51] [PASSED] 0xA721 (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA720 (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:57:51] [PASSED] 0xA780 (ALDERLAKE_S)
[13:57:51] [PASSED] 0xA781 (ALDERLAKE_S)
[13:57:51] [PASSED] 0xA782 (ALDERLAKE_S)
[13:57:51] [PASSED] 0xA783 (ALDERLAKE_S)
[13:57:51] [PASSED] 0xA788 (ALDERLAKE_S)
[13:57:51] [PASSED] 0xA789 (ALDERLAKE_S)
[13:57:51] [PASSED] 0xA78A (ALDERLAKE_S)
[13:57:51] [PASSED] 0xA78B (ALDERLAKE_S)
[13:57:51] [PASSED] 0x4905 (DG1)
[13:57:51] [PASSED] 0x4906 (DG1)
[13:57:51] [PASSED] 0x4907 (DG1)
[13:57:51] [PASSED] 0x4908 (DG1)
[13:57:51] [PASSED] 0x4909 (DG1)
[13:57:51] [PASSED] 0x56C0 (DG2)
[13:57:51] [PASSED] 0x56C2 (DG2)
[13:57:51] [PASSED] 0x56C1 (DG2)
[13:57:51] [PASSED] 0x7D51 (METEORLAKE)
[13:57:51] [PASSED] 0x7DD1 (METEORLAKE)
[13:57:51] [PASSED] 0x7D41 (METEORLAKE)
[13:57:51] [PASSED] 0x7D67 (METEORLAKE)
[13:57:51] [PASSED] 0xB640 (METEORLAKE)
[13:57:51] [PASSED] 0x56A0 (DG2)
[13:57:51] [PASSED] 0x56A1 (DG2)
[13:57:51] [PASSED] 0x56A2 (DG2)
[13:57:51] [PASSED] 0x56BE (DG2)
[13:57:51] [PASSED] 0x56BF (DG2)
[13:57:51] [PASSED] 0x5690 (DG2)
[13:57:51] [PASSED] 0x5691 (DG2)
[13:57:51] [PASSED] 0x5692 (DG2)
[13:57:51] [PASSED] 0x56A5 (DG2)
[13:57:51] [PASSED] 0x56A6 (DG2)
[13:57:51] [PASSED] 0x56B0 (DG2)
[13:57:51] [PASSED] 0x56B1 (DG2)
[13:57:51] [PASSED] 0x56BA (DG2)
[13:57:51] [PASSED] 0x56BB (DG2)
[13:57:51] [PASSED] 0x56BC (DG2)
[13:57:51] [PASSED] 0x56BD (DG2)
[13:57:51] [PASSED] 0x5693 (DG2)
[13:57:51] [PASSED] 0x5694 (DG2)
[13:57:51] [PASSED] 0x5695 (DG2)
[13:57:51] [PASSED] 0x56A3 (DG2)
[13:57:51] [PASSED] 0x56A4 (DG2)
[13:57:51] [PASSED] 0x56B2 (DG2)
[13:57:51] [PASSED] 0x56B3 (DG2)
[13:57:51] [PASSED] 0x5696 (DG2)
[13:57:51] [PASSED] 0x5697 (DG2)
[13:57:51] [PASSED] 0xB69 (PVC)
[13:57:51] [PASSED] 0xB6E (PVC)
[13:57:51] [PASSED] 0xBD4 (PVC)
[13:57:51] [PASSED] 0xBD5 (PVC)
[13:57:51] [PASSED] 0xBD6 (PVC)
[13:57:51] [PASSED] 0xBD7 (PVC)
[13:57:51] [PASSED] 0xBD8 (PVC)
[13:57:51] [PASSED] 0xBD9 (PVC)
[13:57:51] [PASSED] 0xBDA (PVC)
[13:57:51] [PASSED] 0xBDB (PVC)
[13:57:51] [PASSED] 0xBE0 (PVC)
[13:57:51] [PASSED] 0xBE1 (PVC)
[13:57:51] [PASSED] 0xBE5 (PVC)
[13:57:51] [PASSED] 0x7D40 (METEORLAKE)
[13:57:51] [PASSED] 0x7D45 (METEORLAKE)
[13:57:51] [PASSED] 0x7D55 (METEORLAKE)
[13:57:51] [PASSED] 0x7D60 (METEORLAKE)
[13:57:51] [PASSED] 0x7DD5 (METEORLAKE)
[13:57:51] [PASSED] 0x6420 (LUNARLAKE)
[13:57:51] [PASSED] 0x64A0 (LUNARLAKE)
[13:57:51] [PASSED] 0x64B0 (LUNARLAKE)
[13:57:51] [PASSED] 0xE202 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE209 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE20B (BATTLEMAGE)
[13:57:51] [PASSED] 0xE20C (BATTLEMAGE)
[13:57:51] [PASSED] 0xE20D (BATTLEMAGE)
[13:57:51] [PASSED] 0xE210 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE211 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE212 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE216 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE220 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE221 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE222 (BATTLEMAGE)
[13:57:51] [PASSED] 0xE223 (BATTLEMAGE)
[13:57:51] [PASSED] 0xB080 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB081 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB082 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB083 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB084 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB085 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB086 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB087 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB08F (PANTHERLAKE)
[13:57:51] [PASSED] 0xB090 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:57:51] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:57:51] [PASSED] 0xFD80 (PANTHERLAKE)
[13:57:51] [PASSED] 0xFD81 (PANTHERLAKE)
[13:57:51] [PASSED] 0xD740 (NOVALAKE_S)
[13:57:51] [PASSED] 0xD741 (NOVALAKE_S)
[13:57:51] [PASSED] 0xD742 (NOVALAKE_S)
[13:57:51] [PASSED] 0xD743 (NOVALAKE_S)
[13:57:51] [PASSED] 0xD745 (NOVALAKE_S)
[13:57:51] [PASSED] 0xD74A (NOVALAKE_S)
[13:57:51] [PASSED] 0xD74B (NOVALAKE_S)
[13:57:51] [PASSED] 0x674C (CRESCENTISLAND)
[13:57:51] [PASSED] 0x674D (CRESCENTISLAND)
[13:57:51] [PASSED] 0x674E (CRESCENTISLAND)
[13:57:51] [PASSED] 0x674F (CRESCENTISLAND)
[13:57:51] [PASSED] 0x6750 (CRESCENTISLAND)
[13:57:51] [PASSED] 0xD750 (NOVALAKE_P)
[13:57:51] [PASSED] 0xD751 (NOVALAKE_P)
[13:57:51] [PASSED] 0xD752 (NOVALAKE_P)
[13:57:51] [PASSED] 0xD753 (NOVALAKE_P)
[13:57:51] [PASSED] 0xD754 (NOVALAKE_P)
[13:57:51] [PASSED] 0xD755 (NOVALAKE_P)
[13:57:51] [PASSED] 0xD756 (NOVALAKE_P)
[13:57:51] [PASSED] 0xD757 (NOVALAKE_P)
[13:57:51] [PASSED] 0xD75F (NOVALAKE_P)
[13:57:51] =============== [PASSED] check_platform_desc ===============
[13:57:51] ===================== [PASSED] xe_pci ======================
[13:57:51] ============= xe_rtp_tables_test (5 subtests) ==============
[13:57:51] ================== xe_rtp_table_gt_test  ===================
[13:57:51] [PASSED] gt_was/14011060649
[13:57:51] [PASSED] gt_was/14011059788
[13:57:51] [PASSED] gt_was/14015795083
[13:57:51] [PASSED] gt_was/16021867713
[13:57:51] [PASSED] gt_was/14019449301
[13:57:51] [PASSED] gt_was/16028005424
[13:57:51] [PASSED] gt_was/14026578760
[13:57:51] [PASSED] gt_was/1409420604
[13:57:51] [PASSED] gt_was/1408615072
[13:57:51] [PASSED] gt_was/22010523718
[13:57:51] [PASSED] gt_was/14011006942
[13:57:51] [PASSED] gt_was/14014830051
[13:57:51] [PASSED] gt_was/18018781329
[13:57:51] [PASSED] gt_was/1509235366
[13:57:51] [PASSED] gt_was/18018781329
[13:57:51] [PASSED] gt_was/16016694945
[13:57:51] [PASSED] gt_was/14018575942
[13:57:51] [PASSED] gt_was/22016670082
[13:57:51] [PASSED] gt_was/22016670082
[13:57:51] [PASSED] gt_was/14017421178
[13:57:51] [PASSED] gt_was/16025250150
[13:57:51] [PASSED] gt_was/14021871409
[13:57:51] [PASSED] gt_was/16021865536
[13:57:51] [PASSED] gt_was/14021486841
[13:57:51] [PASSED] gt_was/14025160223
[13:57:51] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:57:51] [PASSED] gt_was/14025635424
[13:57:51] [PASSED] gt_was/16028005424
[13:57:51] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:57:51] ================== xe_rtp_table_gt_test  ===================
[13:57:51] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:57:51] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:57:51] [PASSED] gt_tunings/Tuning: L3 cache
[13:57:51] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:57:51] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:57:51] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:57:51] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:57:51] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:57:51] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:57:51] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:57:51] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:57:51] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:57:51] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:57:51] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:57:51] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:57:51] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:57:51] ================== xe_rtp_table_oob_test  ==================
[13:57:51] [PASSED] oob_was/1607983814
[13:57:51] [PASSED] oob_was/16010904313
[13:57:51] [PASSED] oob_was/18022495364
[13:57:51] [PASSED] oob_was/22012773006
[13:57:51] [PASSED] oob_was/14014475959
[13:57:51] [PASSED] oob_was/22011391025
[13:57:51] [PASSED] oob_was/22012727170
[13:57:51] [PASSED] oob_was/22012727685
[13:57:51] [PASSED] oob_was/22016596838
[13:57:51] [PASSED] oob_was/18020744125
[13:57:51] [PASSED] oob_was/1409600907
[13:57:51] [PASSED] oob_was/22014953428
[13:57:51] [PASSED] oob_was/16017236439
[13:57:51] [PASSED] oob_was/14019821291
[13:57:51] [PASSED] oob_was/14015076503
[13:57:51] [PASSED] oob_was/14018913170
[13:57:51] [PASSED] oob_was/14018094691
[13:57:51] [PASSED] oob_was/18024947630
[13:57:51] [PASSED] oob_was/16022287689
[13:57:51] [PASSED] oob_was/13011645652
[13:57:51] [PASSED] oob_was/14022293748
[13:57:51] [PASSED] oob_was/22019794406
[13:57:51] [PASSED] oob_was/22019338487
[13:57:51] [PASSED] oob_was/16023588340
[13:57:51] [PASSED] oob_was/14019789679
[13:57:51] [PASSED] oob_was/14022866841
[13:57:51] [PASSED] oob_was/16021333562
[13:57:51] [PASSED] oob_was/14016712196
[13:57:51] [PASSED] oob_was/14015568240
[13:57:51] [PASSED] oob_was/18013179988
[13:57:51] [PASSED] oob_was/1508761755
[13:57:51] [PASSED] oob_was/16023105232
[13:57:51] [PASSED] oob_was/16026508708
[13:57:51] [PASSED] oob_was/14020001231
[13:57:51] [PASSED] oob_was/16023683509
[13:57:51] [PASSED] oob_was/14025515070
[13:57:51] [PASSED] oob_was/15015404425_disable
[13:57:51] [PASSED] oob_was/16026007364
[13:57:51] [PASSED] oob_was/14020316580
[13:57:51] [PASSED] oob_was/14025883347
[13:57:51] [PASSED] oob_was/16029380221
[13:57:51] [PASSED] oob_was/22022079272
[13:57:51] [PASSED] oob_was/16029897822
[13:57:51] [PASSED] oob_was/14027054324
[13:57:51] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:57:51] ================ xe_rtp_table_dev_oob_test  ================
[13:57:51] [PASSED] device_oob_was/22010954014
[13:57:51] [PASSED] device_oob_was/15015404425
[13:57:51] [PASSED] device_oob_was/22019338487_display
[13:57:51] [PASSED] device_oob_was/14022085890
[13:57:51] [PASSED] device_oob_was/14026539277
[13:57:51] [PASSED] device_oob_was/14026633728
[13:57:51] [PASSED] device_oob_was/14026746987
[13:57:51] [PASSED] device_oob_was/14026779378
[13:57:51] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:57:51] ========== xe_rtp_table_missing_upper_bound_test  ==========
[13:57:51] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[13:57:51] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[13:57:51] [PASSED] register_whitelist/1806527549
[13:57:51] [PASSED] register_whitelist/allow_read_ctx_timestamp
[13:57:51] [PASSED] register_whitelist/allow_read_queue_timestamp
[13:57:51] [PASSED] register_whitelist/16014440446
[13:57:51] [PASSED] register_whitelist/16017236439
[13:57:51] [PASSED] register_whitelist/16020183090
[13:57:51] [PASSED] register_whitelist/14024997852
[13:57:51] [PASSED] register_whitelist/14024997852
[13:57:51] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[13:57:51] =============== [PASSED] xe_rtp_tables_test ================
[13:57:51] =================== xe_rtp (3 subtests) ====================
[13:57:51] =================== xe_rtp_rules_tests  ====================
[13:57:51] [PASSED] no
[13:57:51] [PASSED] yes
[13:57:51] [PASSED] no-and-no
[13:57:51] [PASSED] no-and-yes
[13:57:51] [PASSED] yes-and-no
[13:57:51] [PASSED] yes-and-yes
[13:57:51] [PASSED] no-or-no
[13:57:51] [PASSED] no-or-yes
[13:57:51] [PASSED] yes-or-no
[13:57:51] [PASSED] yes-or-yes
[13:57:51] [PASSED] no-yes-or-yes-no
[13:57:51] [PASSED] no-yes-or-yes-yes
[13:57:51] [PASSED] yes-yes-or-no-yes
[13:57:51] [PASSED] yes-yes-or-yes-yes
[13:57:51] [PASSED] no-no-or-yes-or-no
[13:57:51] [PASSED] or
[13:57:51] [PASSED] or-yes
[13:57:51] [PASSED] or-no
[13:57:51] [PASSED] yes-or
[13:57:51] [PASSED] no-or
[13:57:51] [PASSED] no-or-or-yes
[13:57:51] [PASSED] yes-or-or-no
[13:57:51] [PASSED] no-or-or-no
[13:57:51] [PASSED] missing-context-engine-class
[13:57:51] [PASSED] missing-context-engine-class-or-yes
[13:57:51] [PASSED] missing-context-engine-class-or-or-yes
[13:57:51] =============== [PASSED] xe_rtp_rules_tests ================
[13:57:51] =============== xe_rtp_process_to_sr_tests  ================
[13:57:51] [PASSED] coalesce-same-reg
[13:57:51] [PASSED] coalesce-same-reg-literal-and-func
[13:57:51] [PASSED] no-match-no-add
[13:57:51] [PASSED] two-regs-two-entries
[13:57:51] [PASSED] clr-one-set-other
[13:57:51] [PASSED] set-field
[13:57:51] [PASSED] conflict-duplicate
[13:57:51] [PASSED] conflict-not-disjoint
[13:57:51] [PASSED] conflict-not-disjoint-literal-and-func
[13:57:51] [PASSED] conflict-reg-type
[13:57:51] [PASSED] bad-mcr-reg-forced-to-regular
[13:57:51] [PASSED] bad-regular-reg-forced-to-mcr
[13:57:51] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:57:51] ================== xe_rtp_process_tests  ===================
[13:57:51] [PASSED] active1
[13:57:51] [PASSED] active2
[13:57:51] [PASSED] active-inactive
[13:57:51] [PASSED] inactive-active
[13:57:51] [PASSED] inactive-active-inactive
[13:57:51] [PASSED] inactive-inactive-inactive
[13:57:51] ============== [PASSED] xe_rtp_process_tests ===============
[13:57:51] ===================== [PASSED] xe_rtp ======================
[13:57:51] ==================== xe_wa (1 subtest) =====================
[13:57:51] ======================== xe_wa_gt  =========================
[13:57:51] [PASSED] TIGERLAKE B0
[13:57:51] [PASSED] DG1 A0
[13:57:51] [PASSED] DG1 B0
[13:57:51] [PASSED] ALDERLAKE_S A0
[13:57:51] [PASSED] ALDERLAKE_S B0
[13:57:51] [PASSED] ALDERLAKE_S C0
[13:57:51] [PASSED] ALDERLAKE_S D0
[13:57:51] [PASSED] ALDERLAKE_P A0
[13:57:51] [PASSED] ALDERLAKE_P B0
[13:57:51] [PASSED] ALDERLAKE_P C0
[13:57:51] [PASSED] ALDERLAKE_S RPLS D0
[13:57:51] [PASSED] ALDERLAKE_P RPLU E0
[13:57:51] [PASSED] DG2 G10 C0
[13:57:51] [PASSED] DG2 G11 B1
[13:57:51] [PASSED] DG2 G12 A1
[13:57:51] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:57:51] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:57:51] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:57:51] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:57:51] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:57:51] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:57:51] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:57:51] ==================== [PASSED] xe_wa_gt =====================
[13:57:51] ====================== [PASSED] xe_wa ======================
[13:57:51] ============================================================
[13:57:51] Testing complete. Ran 793 tests: passed: 765, skipped: 28
[13:57:51] Elapsed time: 36.371s total, 1.851s configuring, 33.804s building, 0.706s 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
[13:57:51] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:57:53] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:58:18] Starting KUnit Kernel (1/1)...
[13:58:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:58:18] ============= refcount_interrupt (4 subtests) ==============
[13:58:18] [PASSED] test_single_irq_change
[13:58:18] [PASSED] test_nested_irq_change
[13:58:18] [PASSED] test_multiple_irq_change
[13:58:18] [PASSED] test_irq_save
[13:58:18] =============== [PASSED] refcount_interrupt ================
[13:58:18] ============ drm_test_pick_cmdline (2 subtests) ============
[13:58:18] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:58:18] =============== drm_test_pick_cmdline_named  ===============
[13:58:18] [PASSED] NTSC
[13:58:18] [PASSED] NTSC-J
[13:58:18] [PASSED] PAL
[13:58:18] [PASSED] PAL-M
[13:58:18] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:58:18] ============== [PASSED] drm_test_pick_cmdline ==============
[13:58:18] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:58:18] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:58:18] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:58:18] =========== drm_validate_clone_mode (2 subtests) ===========
[13:58:18] ============== drm_test_check_in_clone_mode  ===============
[13:58:18] [PASSED] in_clone_mode
[13:58:18] [PASSED] not_in_clone_mode
[13:58:18] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:58:18] =============== drm_test_check_valid_clones  ===============
[13:58:18] [PASSED] not_in_clone_mode
[13:58:18] [PASSED] valid_clone
[13:58:18] [PASSED] invalid_clone
[13:58:18] =========== [PASSED] drm_test_check_valid_clones ===========
[13:58:18] ============= [PASSED] drm_validate_clone_mode =============
[13:58:18] ============= drm_validate_modeset (1 subtest) =============
[13:58:18] [PASSED] drm_test_check_connector_changed_modeset
[13:58:18] ============== [PASSED] drm_validate_modeset ===============
[13:58:18] ====== drm_test_bridge_get_current_state (1 subtest) =======
[13:58:18] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:58:18] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:58:18] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:58:18] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:58:18] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:58:18] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[13:58:18] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:58:18] ============== drm_bridge_alloc (2 subtests) ===============
[13:58:18] [PASSED] drm_test_drm_bridge_alloc_basic
[13:58:18] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:58:18] ================ [PASSED] drm_bridge_alloc =================
[13:58:18] ============= drm_bridge_bus_fmt (5 subtests) ==============
[13:58:18] [PASSED] drm_test_bridge_rgb_yuv_rgb
[13:58:18] [PASSED] drm_test_bridge_must_convert_to_yuv444
[13:58:18] [PASSED] drm_test_bridge_hdmi_auto_rgb
[13:58:18] [PASSED] drm_test_bridge_auto_first
[13:58:18] [PASSED] drm_test_bridge_rgb_yuv_no_path
[13:58:18] =============== [PASSED] drm_bridge_bus_fmt ================
[13:58:18] ============= drm_cmdline_parser (40 subtests) =============
[13:58:18] [PASSED] drm_test_cmdline_force_d_only
[13:58:18] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:58:18] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:58:18] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:58:18] [PASSED] drm_test_cmdline_force_e_only
[13:58:18] [PASSED] drm_test_cmdline_res
[13:58:18] [PASSED] drm_test_cmdline_res_vesa
[13:58:18] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:58:18] [PASSED] drm_test_cmdline_res_rblank
[13:58:18] [PASSED] drm_test_cmdline_res_bpp
[13:58:18] [PASSED] drm_test_cmdline_res_refresh
[13:58:18] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:58:18] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:58:18] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:58:18] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:58:18] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:58:18] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:58:18] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:58:18] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:58:18] [PASSED] drm_test_cmdline_res_margins_force_on
[13:58:18] [PASSED] drm_test_cmdline_res_vesa_margins
[13:58:18] [PASSED] drm_test_cmdline_name
[13:58:18] [PASSED] drm_test_cmdline_name_bpp
[13:58:18] [PASSED] drm_test_cmdline_name_option
[13:58:18] [PASSED] drm_test_cmdline_name_bpp_option
[13:58:18] [PASSED] drm_test_cmdline_rotate_0
[13:58:18] [PASSED] drm_test_cmdline_rotate_90
[13:58:18] [PASSED] drm_test_cmdline_rotate_180
[13:58:18] [PASSED] drm_test_cmdline_rotate_270
[13:58:18] [PASSED] drm_test_cmdline_hmirror
[13:58:18] [PASSED] drm_test_cmdline_vmirror
[13:58:18] [PASSED] drm_test_cmdline_margin_options
[13:58:18] [PASSED] drm_test_cmdline_multiple_options
[13:58:18] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:58:18] [PASSED] drm_test_cmdline_extra_and_option
[13:58:18] [PASSED] drm_test_cmdline_freestanding_options
[13:58:18] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:58:18] [PASSED] drm_test_cmdline_panel_orientation
[13:58:18] ================ drm_test_cmdline_invalid  =================
[13:58:18] [PASSED] margin_only
[13:58:18] [PASSED] interlace_only
[13:58:18] [PASSED] res_missing_x
[13:58:18] [PASSED] res_missing_y
[13:58:18] [PASSED] res_bad_y
[13:58:18] [PASSED] res_missing_y_bpp
[13:58:18] [PASSED] res_bad_bpp
[13:58:18] [PASSED] res_bad_refresh
[13:58:18] [PASSED] res_bpp_refresh_force_on_off
[13:58:18] [PASSED] res_invalid_mode
[13:58:18] [PASSED] res_bpp_wrong_place_mode
[13:58:18] [PASSED] name_bpp_refresh
[13:58:18] [PASSED] name_refresh
[13:58:18] [PASSED] name_refresh_wrong_mode
[13:58:18] [PASSED] name_refresh_invalid_mode
[13:58:18] [PASSED] rotate_multiple
[13:58:18] [PASSED] rotate_invalid_val
[13:58:18] [PASSED] rotate_truncated
[13:58:18] [PASSED] invalid_option
[13:58:18] [PASSED] invalid_tv_option
[13:58:18] [PASSED] truncated_tv_option
[13:58:18] ============ [PASSED] drm_test_cmdline_invalid =============
[13:58:18] =============== drm_test_cmdline_tv_options  ===============
[13:58:18] [PASSED] NTSC
[13:58:18] [PASSED] NTSC_443
[13:58:18] [PASSED] NTSC_J
[13:58:18] [PASSED] PAL
[13:58:18] [PASSED] PAL_M
[13:58:18] [PASSED] PAL_N
[13:58:18] [PASSED] SECAM
[13:58:18] [PASSED] MONO_525
[13:58:18] [PASSED] MONO_625
[13:58:18] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:58:18] =============== [PASSED] drm_cmdline_parser ================
[13:58:18] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:58:18] [PASSED] drm_test_connector_hdmi_init_valid
[13:58:18] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:58:18] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:58:18] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:58:18] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:58:18] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:58:18] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:58:18] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:58:18] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[13:58:18] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:58:18] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:58:18] [PASSED] supported_formats=0x5 yuv420_allowed=1
[13:58:18] [PASSED] supported_formats=0x5 yuv420_allowed=0
[13:58:18] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:58:18] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:58:18] [PASSED] drm_test_connector_hdmi_init_null_product
[13:58:18] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:58:18] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:58:18] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:58:18] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:58:18] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:58:18] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:58:18] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:58:18] ========= drm_test_connector_hdmi_init_type_valid  =========
[13:58:18] [PASSED] HDMI-A
[13:58:18] [PASSED] HDMI-B
[13:58:18] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:58:18] ======== drm_test_connector_hdmi_init_type_invalid  ========
[13:58:18] [PASSED] Unknown
[13:58:18] [PASSED] VGA
[13:58:18] [PASSED] DVI-I
[13:58:18] [PASSED] DVI-D
[13:58:18] [PASSED] DVI-A
[13:58:18] [PASSED] Composite
[13:58:18] [PASSED] SVIDEO
[13:58:18] [PASSED] LVDS
[13:58:18] [PASSED] Component
[13:58:18] [PASSED] DIN
[13:58:18] [PASSED] DP
[13:58:18] [PASSED] TV
[13:58:18] [PASSED] eDP
[13:58:18] [PASSED] Virtual
[13:58:18] [PASSED] DSI
[13:58:18] [PASSED] DPI
[13:58:18] [PASSED] Writeback
[13:58:18] [PASSED] SPI
[13:58:18] [PASSED] USB
[13:58:18] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:58:18] ============ [PASSED] drmm_connector_hdmi_init =============
[13:58:18] ============= drmm_connector_init (3 subtests) =============
[13:58:18] [PASSED] drm_test_drmm_connector_init
[13:58:18] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:58:18] ========= drm_test_drmm_connector_init_type_valid  =========
[13:58:18] [PASSED] Unknown
[13:58:18] [PASSED] VGA
[13:58:18] [PASSED] DVI-I
[13:58:18] [PASSED] DVI-D
[13:58:18] [PASSED] DVI-A
[13:58:18] [PASSED] Composite
[13:58:18] [PASSED] SVIDEO
[13:58:18] [PASSED] LVDS
[13:58:18] [PASSED] Component
[13:58:18] [PASSED] DIN
[13:58:18] [PASSED] DP
[13:58:18] [PASSED] HDMI-A
[13:58:18] [PASSED] HDMI-B
[13:58:18] [PASSED] TV
[13:58:18] [PASSED] eDP
[13:58:18] [PASSED] Virtual
[13:58:18] [PASSED] DSI
[13:58:18] [PASSED] DPI
[13:58:18] [PASSED] Writeback
[13:58:18] [PASSED] SPI
[13:58:18] [PASSED] USB
[13:58:18] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:58:18] =============== [PASSED] drmm_connector_init ===============
[13:58:18] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_init
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:58:18] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[13:58:18] [PASSED] Unknown
[13:58:18] [PASSED] VGA
[13:58:18] [PASSED] DVI-I
[13:58:18] [PASSED] DVI-D
[13:58:18] [PASSED] DVI-A
[13:58:18] [PASSED] Composite
[13:58:18] [PASSED] SVIDEO
[13:58:18] [PASSED] LVDS
[13:58:18] [PASSED] Component
[13:58:18] [PASSED] DIN
[13:58:18] [PASSED] DP
[13:58:18] [PASSED] HDMI-A
[13:58:18] [PASSED] HDMI-B
[13:58:18] [PASSED] TV
[13:58:18] [PASSED] eDP
[13:58:18] [PASSED] Virtual
[13:58:18] [PASSED] DSI
[13:58:18] [PASSED] DPI
[13:58:18] [PASSED] Writeback
[13:58:18] [PASSED] SPI
[13:58:18] [PASSED] USB
[13:58:18] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:58:18] ======== drm_test_drm_connector_dynamic_init_name  =========
[13:58:18] [PASSED] Unknown
[13:58:18] [PASSED] VGA
[13:58:18] [PASSED] DVI-I
[13:58:18] [PASSED] DVI-D
[13:58:18] [PASSED] DVI-A
[13:58:18] [PASSED] Composite
[13:58:18] [PASSED] SVIDEO
[13:58:18] [PASSED] LVDS
[13:58:18] [PASSED] Component
[13:58:18] [PASSED] DIN
[13:58:18] [PASSED] DP
[13:58:18] [PASSED] HDMI-A
[13:58:18] [PASSED] HDMI-B
[13:58:18] [PASSED] TV
[13:58:18] [PASSED] eDP
[13:58:18] [PASSED] Virtual
[13:58:18] [PASSED] DSI
[13:58:18] [PASSED] DPI
[13:58:18] [PASSED] Writeback
[13:58:18] [PASSED] SPI
[13:58:18] [PASSED] USB
[13:58:18] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:58:18] =========== [PASSED] drm_connector_dynamic_init ============
[13:58:18] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:58:18] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:58:18] ======= drm_connector_dynamic_register (7 subtests) ========
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:58:18] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:58:18] ========= [PASSED] drm_connector_dynamic_register ==========
[13:58:18] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:58:18] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:58:18] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:58:18] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:58:18] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:58:18] ========== drm_test_get_tv_mode_from_name_valid  ===========
[13:58:18] [PASSED] NTSC
[13:58:18] [PASSED] NTSC-443
[13:58:18] [PASSED] NTSC-J
[13:58:18] [PASSED] PAL
[13:58:18] [PASSED] PAL-M
[13:58:18] [PASSED] PAL-N
[13:58:18] [PASSED] SECAM
[13:58:18] [PASSED] Mono
[13:58:18] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:58:18] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:58:18] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:58:18] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:58:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:58:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:58:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:58:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:58:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:58:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:58:18] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[13:58:18] [PASSED] VIC 96
[13:58:18] [PASSED] VIC 97
[13:58:18] [PASSED] VIC 101
[13:58:18] [PASSED] VIC 102
[13:58:18] [PASSED] VIC 106
[13:58:18] [PASSED] VIC 107
[13:58:18] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:58:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:58:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:58:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:58:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:58:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:58:18] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:58:18] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:58:18] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[13:58:18] [PASSED] Automatic
[13:58:18] [PASSED] Full
[13:58:18] [PASSED] Limited 16:235
[13:58:18] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:58:18] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:58:18] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:58:18] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:58:18] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[13:58:18] [PASSED] RGB
[13:58:18] [PASSED] YUV 4:2:0
[13:58:18] [PASSED] YUV 4:2:2
[13:58:18] [PASSED] YUV 4:4:4
[13:58:18] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:58:18] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:58:18] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:58:18] ============= drm_damage_helper (21 subtests) ==============
[13:58:18] [PASSED] drm_test_damage_iter_no_damage
[13:58:18] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:58:18] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:58:18] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:58:18] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:58:18] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:58:18] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:58:18] [PASSED] drm_test_damage_iter_simple_damage
[13:58:18] [PASSED] drm_test_damage_iter_single_damage
[13:58:18] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:58:18] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:58:18] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:58:18] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:58:18] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:58:18] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:58:18] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:58:18] [PASSED] drm_test_damage_iter_damage
[13:58:18] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:58:18] [PASSED] drm_test_damage_iter_damage_one_outside
[13:58:18] [PASSED] drm_test_damage_iter_damage_src_moved
[13:58:18] [PASSED] drm_test_damage_iter_damage_not_visible
[13:58:18] ================ [PASSED] drm_damage_helper ================
[13:58:18] ============== drm_dp_mst_helper (3 subtests) ==============
[13:58:18] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[13:58:18] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:58:18] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:58:18] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:58:18] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:58:18] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:58:18] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:58:18] ============== drm_test_dp_mst_calc_pbn_div  ===============
[13:58:18] [PASSED] Link rate 2000000 lane count 4
[13:58:18] [PASSED] Link rate 2000000 lane count 2
[13:58:18] [PASSED] Link rate 2000000 lane count 1
[13:58:18] [PASSED] Link rate 1350000 lane count 4
[13:58:18] [PASSED] Link rate 1350000 lane count 2
[13:58:18] [PASSED] Link rate 1350000 lane count 1
[13:58:18] [PASSED] Link rate 1000000 lane count 4
[13:58:18] [PASSED] Link rate 1000000 lane count 2
[13:58:18] [PASSED] Link rate 1000000 lane count 1
[13:58:18] [PASSED] Link rate 810000 lane count 4
[13:58:18] [PASSED] Link rate 810000 lane count 2
[13:58:18] [PASSED] Link rate 810000 lane count 1
[13:58:18] [PASSED] Link rate 540000 lane count 4
[13:58:18] [PASSED] Link rate 540000 lane count 2
[13:58:18] [PASSED] Link rate 540000 lane count 1
[13:58:18] [PASSED] Link rate 270000 lane count 4
[13:58:18] [PASSED] Link rate 270000 lane count 2
[13:58:18] [PASSED] Link rate 270000 lane count 1
[13:58:18] [PASSED] Link rate 162000 lane count 4
[13:58:18] [PASSED] Link rate 162000 lane count 2
[13:58:18] [PASSED] Link rate 162000 lane count 1
[13:58:18] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:58:18] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[13:58:18] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:58:18] [PASSED] DP_POWER_UP_PHY with port number
[13:58:18] [PASSED] DP_POWER_DOWN_PHY with port number
[13:58:18] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:58:18] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:58:18] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:58:18] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:58:18] [PASSED] DP_QUERY_PAYLOAD with port number
[13:58:18] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:58:18] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:58:18] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:58:18] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:58:18] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:58:18] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:58:18] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:58:18] [PASSED] DP_REMOTE_I2C_READ with port number
[13:58:18] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:58:18] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:58:18] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:58:18] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:58:18] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:58:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:58:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:58:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:58:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:58:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:58:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:58:18] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:58:18] ================ [PASSED] drm_dp_mst_helper ================
[13:58:18] ================== drm_exec (7 subtests) ===================
[13:58:18] [PASSED] sanitycheck
[13:58:18] [PASSED] test_lock
[13:58:18] [PASSED] test_lock_unlock
[13:58:18] [PASSED] test_duplicates
[13:58:18] [PASSED] test_prepare
[13:58:18] [PASSED] test_prepare_array
[13:58:18] [PASSED] test_multiple_loops
[13:58:18] ==================== [PASSED] drm_exec =====================
[13:58:18] =========== drm_format_helper_test (17 subtests) ===========
[13:58:18] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:58:18] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:58:18] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:58:18] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:58:18] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:58:18] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:58:18] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:58:18] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:58:18] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:58:18] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:58:18] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:58:18] ============== drm_test_fb_xrgb8888_to_mono  ===============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:58:18] ==================== drm_test_fb_swab  =====================
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ================ [PASSED] drm_test_fb_swab =================
[13:58:18] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:58:18] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[13:58:18] [PASSED] single_pixel_source_buffer
[13:58:18] [PASSED] single_pixel_clip_rectangle
[13:58:18] [PASSED] well_known_colors
[13:58:18] [PASSED] destination_pitch
[13:58:18] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:58:18] ================= drm_test_fb_clip_offset  =================
[13:58:18] [PASSED] pass through
[13:58:18] [PASSED] horizontal offset
[13:58:18] [PASSED] vertical offset
[13:58:18] [PASSED] horizontal and vertical offset
[13:58:18] [PASSED] horizontal offset (custom pitch)
[13:58:18] [PASSED] vertical offset (custom pitch)
[13:58:18] [PASSED] horizontal and vertical offset (custom pitch)
[13:58:18] ============= [PASSED] drm_test_fb_clip_offset =============
[13:58:18] =================== drm_test_fb_memcpy  ====================
[13:58:18] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:58:18] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:58:18] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:58:18] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:58:18] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:58:18] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:58:18] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:58:18] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:58:18] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:58:18] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:58:18] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:58:18] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:58:18] =============== [PASSED] drm_test_fb_memcpy ================
[13:58:18] ============= [PASSED] drm_format_helper_test ==============
[13:58:18] ================= drm_format (18 subtests) =================
[13:58:18] [PASSED] drm_test_format_block_width_invalid
[13:58:18] [PASSED] drm_test_format_block_width_one_plane
[13:58:18] [PASSED] drm_test_format_block_width_two_plane
[13:58:18] [PASSED] drm_test_format_block_width_three_plane
[13:58:18] [PASSED] drm_test_format_block_width_tiled
[13:58:18] [PASSED] drm_test_format_block_height_invalid
[13:58:18] [PASSED] drm_test_format_block_height_one_plane
[13:58:18] [PASSED] drm_test_format_block_height_two_plane
[13:58:18] [PASSED] drm_test_format_block_height_three_plane
[13:58:18] [PASSED] drm_test_format_block_height_tiled
[13:58:18] [PASSED] drm_test_format_min_pitch_invalid
[13:58:18] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:58:18] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:58:18] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:58:18] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:58:18] [PASSED] drm_test_format_min_pitch_two_plane
[13:58:18] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:58:18] [PASSED] drm_test_format_min_pitch_tiled
[13:58:18] =================== [PASSED] drm_format ====================
[13:58:18] ============== drm_framebuffer (10 subtests) ===============
[13:58:18] ========== drm_test_framebuffer_check_src_coords  ==========
[13:58:18] [PASSED] Success: source fits into fb
[13:58:18] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:58:18] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:58:18] [PASSED] Fail: overflowing fb with source width
[13:58:18] [PASSED] Fail: overflowing fb with source height
[13:58:18] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:58:18] [PASSED] drm_test_framebuffer_cleanup
[13:58:18] =============== drm_test_framebuffer_create  ===============
[13:58:18] [PASSED] ABGR8888 normal sizes
[13:58:18] [PASSED] ABGR8888 max sizes
[13:58:18] [PASSED] ABGR8888 pitch greater than min required
[13:58:18] [PASSED] ABGR8888 pitch less than min required
[13:58:18] [PASSED] ABGR8888 Invalid width
[13:58:18] [PASSED] ABGR8888 Invalid buffer handle
[13:58:18] [PASSED] No pixel format
[13:58:18] [PASSED] ABGR8888 Width 0
[13:58:18] [PASSED] ABGR8888 Height 0
[13:58:18] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:58:18] [PASSED] ABGR8888 Large buffer offset
[13:58:18] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:58:18] [PASSED] ABGR8888 Invalid flag
[13:58:18] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:58:18] [PASSED] ABGR8888 Valid buffer modifier
[13:58:18] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:58:18] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:58:18] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:58:18] [PASSED] NV12 Normal sizes
[13:58:18] [PASSED] NV12 Max sizes
[13:58:18] [PASSED] NV12 Invalid pitch
[13:58:18] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:58:18] [PASSED] NV12 different  modifier per-plane
[13:58:18] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:58:18] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:58:18] [PASSED] NV12 Modifier for inexistent plane
[13:58:18] [PASSED] NV12 Handle for inexistent plane
[13:58:18] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:58:18] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:58:18] [PASSED] YVU420 Normal sizes
[13:58:18] [PASSED] YVU420 Max sizes
[13:58:18] [PASSED] YVU420 Invalid pitch
[13:58:18] [PASSED] YVU420 Different pitches
[13:58:18] [PASSED] YVU420 Different buffer offsets/pitches
[13:58:18] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:58:18] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:58:18] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:58:18] [PASSED] YVU420 Valid modifier
[13:58:18] [PASSED] YVU420 Different modifiers per plane
[13:58:18] [PASSED] YVU420 Modifier for inexistent plane
[13:58:18] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:58:18] [PASSED] X0L2 Normal sizes
[13:58:18] [PASSED] X0L2 Max sizes
[13:58:18] [PASSED] X0L2 Invalid pitch
[13:58:18] [PASSED] X0L2 Pitch greater than minimum required
[13:58:18] [PASSED] X0L2 Handle for inexistent plane
[13:58:18] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:58:18] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:58:18] [PASSED] X0L2 Valid modifier
[13:58:18] [PASSED] X0L2 Modifier for inexistent plane
[13:58:18] =========== [PASSED] drm_test_framebuffer_create ===========
[13:58:18] [PASSED] drm_test_framebuffer_free
[13:58:18] [PASSED] drm_test_framebuffer_init
[13:58:18] [PASSED] drm_test_framebuffer_init_bad_format
[13:58:18] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:58:18] [PASSED] drm_test_framebuffer_lookup
[13:58:18] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:58:18] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:58:18] ================= [PASSED] drm_framebuffer =================
[13:58:18] ================ drm_gem_shmem (8 subtests) ================
[13:58:18] [PASSED] drm_gem_shmem_test_obj_create
[13:58:18] [PASSED] drm_gem_shmem_test_obj_create_private
[13:58:18] [PASSED] drm_gem_shmem_test_pin_pages
[13:58:18] [PASSED] drm_gem_shmem_test_vmap
[13:58:18] [PASSED] drm_gem_shmem_test_get_sg_table
[13:58:18] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:58:18] [PASSED] drm_gem_shmem_test_madvise
[13:58:18] [PASSED] drm_gem_shmem_test_purge
[13:58:18] ================== [PASSED] drm_gem_shmem ==================
[13:58:18] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:58:18] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[13:58:18] [PASSED] Automatic
[13:58:18] [PASSED] Full
[13:58:18] [PASSED] Limited 16:235
[13:58:18] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:58:18] [PASSED] drm_test_check_disable_connector
[13:58:18] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:58:18] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:58:18] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:58:18] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:58:18] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:58:18] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:58:18] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:58:18] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:58:18] [PASSED] drm_test_check_output_bpc_dvi
[13:58:18] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:58:18] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:58:18] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:58:18] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:58:18] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:58:18] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:58:18] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:58:18] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:58:18] ============ drm_test_check_hdmi_color_format  =============
[13:58:18] [PASSED] AUTO -> RGB
[13:58:18] [PASSED] YCBCR422 -> YUV422
[13:58:18] [PASSED] YCBCR420 -> YUV420
[13:58:18] [PASSED] YCBCR444 -> YUV444
[13:58:18] [PASSED] RGB -> RGB
[13:58:18] ======== [PASSED] drm_test_check_hdmi_color_format =========
[13:58:18] ======== drm_test_check_hdmi_color_format_420_only  ========
[13:58:18] [PASSED] RGB should fail
[13:58:18] [PASSED] YUV444 should fail
[13:58:18] [PASSED] YUV422 should fail
[13:58:18] [PASSED] YUV420 should work
[13:58:18] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[13:58:18] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:58:18] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:58:18] [PASSED] drm_test_check_broadcast_rgb_value
[13:58:18] [PASSED] drm_test_check_bpc_8_value
[13:58:18] [PASSED] drm_test_check_bpc_10_value
[13:58:18] [PASSED] drm_test_check_bpc_12_value
[13:58:18] [PASSED] drm_test_check_format_value
[13:58:18] [PASSED] drm_test_check_tmds_char_value
[13:58:18] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:58:18] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[13:58:18] [PASSED] drm_test_check_mode_valid
[13:58:18] [PASSED] drm_test_check_mode_valid_reject
[13:58:18] [PASSED] drm_test_check_mode_valid_reject_rate
[13:58:18] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:58:18] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[13:58:18] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[13:58:18] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[13:58:18] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:58:18] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[13:58:18] [PASSED] drm_test_check_infoframes
[13:58:18] [PASSED] drm_test_check_reject_avi_infoframe
[13:58:18] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[13:58:18] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[13:58:18] [PASSED] drm_test_check_reject_audio_infoframe
[13:58:18] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[13:58:18] ================= drm_managed (2 subtests) =================
[13:58:18] [PASSED] drm_test_managed_release_action
[13:58:18] [PASSED] drm_test_managed_run_action
[13:58:18] =================== [PASSED] drm_managed ===================
[13:58:18] =================== drm_mm (6 subtests) ====================
[13:58:18] [PASSED] drm_test_mm_init
[13:58:18] [PASSED] drm_test_mm_debug
[13:58:18] [PASSED] drm_test_mm_align32
[13:58:18] [PASSED] drm_test_mm_align64
[13:58:18] [PASSED] drm_test_mm_lowest
[13:58:18] [PASSED] drm_test_mm_highest
[13:58:18] ===================== [PASSED] drm_mm ======================
[13:58:18] ============= drm_modes_analog_tv (5 subtests) =============
[13:58:18] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:58:18] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:58:18] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:58:18] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:58:18] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:58:18] =============== [PASSED] drm_modes_analog_tv ===============
[13:58:18] ============== drm_plane_helper (2 subtests) ===============
[13:58:18] =============== drm_test_check_plane_state  ================
[13:58:18] [PASSED] clipping_simple
[13:58:18] [PASSED] clipping_rotate_reflect
[13:58:18] [PASSED] positioning_simple
[13:58:18] [PASSED] upscaling
[13:58:18] [PASSED] downscaling
[13:58:18] [PASSED] rounding1
[13:58:18] [PASSED] rounding2
[13:58:18] [PASSED] rounding3
[13:58:18] [PASSED] rounding4
[13:58:18] =========== [PASSED] drm_test_check_plane_state ============
[13:58:18] =========== drm_test_check_invalid_plane_state  ============
[13:58:18] [PASSED] positioning_invalid
[13:58:18] [PASSED] upscaling_invalid
[13:58:18] [PASSED] downscaling_invalid
[13:58:18] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:58:18] ================ [PASSED] drm_plane_helper =================
[13:58:18] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:58:18] ====== drm_test_connector_helper_tv_get_modes_check  =======
[13:58:18] [PASSED] None
[13:58:18] [PASSED] PAL
[13:58:18] [PASSED] NTSC
[13:58:18] [PASSED] Both, NTSC Default
[13:58:18] [PASSED] Both, PAL Default
[13:58:18] [PASSED] Both, NTSC Default, with PAL on command-line
[13:58:18] [PASSED] Both, PAL Default, with NTSC on command-line
[13:58:18] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:58:18] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:58:18] ================== drm_rect (9 subtests) ===================
[13:58:18] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:58:18] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:58:18] [PASSED] drm_test_rect_clip_scaled_clipped
[13:58:18] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:58:18] ================= drm_test_rect_intersect  =================
[13:58:18] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:58:18] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:58:18] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:58:18] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:58:18] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:58:18] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:58:18] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:58:18] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:58:18] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:58:18] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:58:18] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:58:18] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:58:18] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:58:18] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:58:18] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:58:18] ============= [PASSED] drm_test_rect_intersect =============
[13:58:18] ================ drm_test_rect_calc_hscale  ================
[13:58:18] [PASSED] normal use
[13:58:18] [PASSED] out of max range
[13:58:18] [PASSED] out of min range
[13:58:18] [PASSED] zero dst
[13:58:18] [PASSED] negative src
[13:58:18] [PASSED] negative dst
[13:58:18] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:58:18] ================ drm_test_rect_calc_vscale  ================
[13:58:18] [PASSED] normal use
[13:58:18] [PASSED] out of max range
[13:58:18] [PASSED] out of min range
[13:58:18] [PASSED] zero dst
[13:58:18] [PASSED] negative src
[13:58:18] [PASSED] negative dst
[13:58:18] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:58:18] ================== drm_test_rect_rotate  ===================
[13:58:18] [PASSED] reflect-x
[13:58:18] [PASSED] reflect-y
[13:58:18] [PASSED] rotate-0
[13:58:18] [PASSED] rotate-90
[13:58:18] [PASSED] rotate-180
[13:58:18] [PASSED] rotate-270
[13:58:18] ============== [PASSED] drm_test_rect_rotate ===============
[13:58:18] ================ drm_test_rect_rotate_inv  =================
[13:58:18] [PASSED] reflect-x
[13:58:18] [PASSED] reflect-y
[13:58:18] [PASSED] rotate-0
[13:58:18] [PASSED] rotate-90
[13:58:18] [PASSED] rotate-180
[13:58:18] [PASSED] rotate-270
[13:58:18] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:58:18] ==================== [PASSED] drm_rect =====================
[13:58:18] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:58:18] ============ drm_test_sysfb_build_fourcc_list  =============
[13:58:18] [PASSED] no native formats
[13:58:18] [PASSED] XRGB8888 as native format
[13:58:18] [PASSED] remove duplicates
[13:58:18] [PASSED] convert alpha formats
[13:58:18] [PASSED] random formats
[13:58:18] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:58:18] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:58:18] ================== drm_fixp (2 subtests) ===================
[13:58:18] [PASSED] drm_test_int2fixp
[13:58:18] [PASSED] drm_test_sm2fixp
[13:58:18] ==================== [PASSED] drm_fixp =====================
[13:58:18] ============================================================
[13:58:18] Testing complete. Ran 641 tests: passed: 641
[13:58:18] Elapsed time: 26.902s total, 1.838s configuring, 24.898s building, 0.136s 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
[13:58:18] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:58: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
[13:58:30] Starting KUnit Kernel (1/1)...
[13:58:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:58:30] ============= refcount_interrupt (4 subtests) ==============
[13:58:30] [PASSED] test_single_irq_change
[13:58:30] [PASSED] test_nested_irq_change
[13:58:30] [PASSED] test_multiple_irq_change
[13:58:30] [PASSED] test_irq_save
[13:58:30] =============== [PASSED] refcount_interrupt ================
[13:58:30] ================= ttm_device (5 subtests) ==================
[13:58:30] [PASSED] ttm_device_init_basic
[13:58:30] [PASSED] ttm_device_init_multiple
[13:58:30] [PASSED] ttm_device_fini_basic
[13:58:30] [PASSED] ttm_device_init_no_vma_man
[13:58:30] ================== ttm_device_init_pools  ==================
[13:58:30] [PASSED] No DMA allocations, no DMA32 required
[13:58:30] [PASSED] DMA allocations, DMA32 required
[13:58:30] [PASSED] No DMA allocations, DMA32 required
[13:58:30] [PASSED] DMA allocations, no DMA32 required
[13:58:30] ============== [PASSED] ttm_device_init_pools ==============
[13:58:30] =================== [PASSED] ttm_device ====================
[13:58:30] ================== ttm_pool (8 subtests) ===================
[13:58:30] ================== ttm_pool_alloc_basic  ===================
[13:58:30] [PASSED] One page
[13:58:30] [PASSED] More than one page
[13:58:30] [PASSED] Above the allocation limit
[13:58:30] [PASSED] One page, with coherent DMA mappings enabled
[13:58:30] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:58:30] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:58:30] ============== ttm_pool_alloc_basic_dma_addr  ==============
[13:58:30] [PASSED] One page
[13:58:30] [PASSED] More than one page
[13:58:30] [PASSED] Above the allocation limit
[13:58:30] [PASSED] One page, with coherent DMA mappings enabled
[13:58:30] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:58:30] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:58:30] [PASSED] ttm_pool_alloc_order_caching_match
[13:58:30] [PASSED] ttm_pool_alloc_caching_mismatch
[13:58:30] [PASSED] ttm_pool_alloc_order_mismatch
[13:58:30] [PASSED] ttm_pool_free_dma_alloc
[13:58:30] [PASSED] ttm_pool_free_no_dma_alloc
[13:58:30] [PASSED] ttm_pool_fini_basic
[13:58:30] ==================== [PASSED] ttm_pool =====================
[13:58:30] ================ ttm_resource (8 subtests) =================
[13:58:30] ================= ttm_resource_init_basic  =================
[13:58:30] [PASSED] Init resource in TTM_PL_SYSTEM
[13:58:30] [PASSED] Init resource in TTM_PL_VRAM
[13:58:30] [PASSED] Init resource in a private placement
[13:58:30] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:58:30] ============= [PASSED] ttm_resource_init_basic =============
[13:58:30] [PASSED] ttm_resource_init_pinned
[13:58:30] [PASSED] ttm_resource_fini_basic
[13:58:30] [PASSED] ttm_resource_manager_init_basic
[13:58:30] [PASSED] ttm_resource_manager_usage_basic
[13:58:30] [PASSED] ttm_resource_manager_set_used_basic
[13:58:30] [PASSED] ttm_sys_man_alloc_basic
[13:58:30] [PASSED] ttm_sys_man_free_basic
[13:58:30] ================== [PASSED] ttm_resource ===================
[13:58:30] =================== ttm_tt (15 subtests) ===================
[13:58:30] ==================== ttm_tt_init_basic  ====================
[13:58:30] [PASSED] Page-aligned size
[13:58:30] [PASSED] Extra pages requested
[13:58:30] ================ [PASSED] ttm_tt_init_basic ================
[13:58:30] [PASSED] ttm_tt_init_misaligned
[13:58:30] [PASSED] ttm_tt_fini_basic
[13:58:30] [PASSED] ttm_tt_fini_sg
[13:58:30] [PASSED] ttm_tt_fini_shmem
[13:58:30] [PASSED] ttm_tt_create_basic
[13:58:30] [PASSED] ttm_tt_create_invalid_bo_type
[13:58:30] [PASSED] ttm_tt_create_ttm_exists
[13:58:30] [PASSED] ttm_tt_create_failed
[13:58:30] [PASSED] ttm_tt_destroy_basic
[13:58:30] [PASSED] ttm_tt_populate_null_ttm
[13:58:30] [PASSED] ttm_tt_populate_populated_ttm
[13:58:30] [PASSED] ttm_tt_unpopulate_basic
[13:58:30] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:58:30] [PASSED] ttm_tt_swapin_basic
[13:58:30] ===================== [PASSED] ttm_tt ======================
[13:58:30] =================== ttm_bo (14 subtests) ===================
[13:58:30] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[13:58:30] [PASSED] Cannot be interrupted and sleeps
[13:58:30] [PASSED] Cannot be interrupted, locks straight away
[13:58:30] [PASSED] Can be interrupted, sleeps
[13:58:30] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:58:30] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:58:30] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:58:30] [PASSED] ttm_bo_reserve_double_resv
[13:58:30] [PASSED] ttm_bo_reserve_interrupted
[13:58:30] [PASSED] ttm_bo_reserve_deadlock
[13:58:30] [PASSED] ttm_bo_unreserve_basic
[13:58:30] [PASSED] ttm_bo_unreserve_pinned
[13:58:30] [PASSED] ttm_bo_unreserve_bulk
[13:58:30] [PASSED] ttm_bo_fini_basic
[13:58:30] [PASSED] ttm_bo_fini_shared_resv
[13:58:30] [PASSED] ttm_bo_pin_basic
[13:58:30] [PASSED] ttm_bo_pin_unpin_resource
[13:58:30] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:58:30] ===================== [PASSED] ttm_bo ======================
[13:58:30] ============== ttm_bo_validate (22 subtests) ===============
[13:58:30] ============== ttm_bo_init_reserved_sys_man  ===============
[13:58:30] [PASSED] Buffer object for userspace
[13:58:30] [PASSED] Kernel buffer object
[13:58:30] [PASSED] Shared buffer object
[13:58:30] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:58:30] ============== ttm_bo_init_reserved_mock_man  ==============
[13:58:30] [PASSED] Buffer object for userspace
[13:58:30] [PASSED] Kernel buffer object
[13:58:30] [PASSED] Shared buffer object
[13:58:30] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:58:30] [PASSED] ttm_bo_init_reserved_resv
[13:58:30] ================== ttm_bo_validate_basic  ==================
[13:58:30] [PASSED] Buffer object for userspace
[13:58:30] [PASSED] Kernel buffer object
[13:58:30] [PASSED] Shared buffer object
[13:58:30] ============== [PASSED] ttm_bo_validate_basic ==============
[13:58:30] [PASSED] ttm_bo_validate_invalid_placement
[13:58:30] ============= ttm_bo_validate_same_placement  ==============
[13:58:30] [PASSED] System manager
[13:58:30] [PASSED] VRAM manager
[13:58:30] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:58:30] [PASSED] ttm_bo_validate_failed_alloc
[13:58:30] [PASSED] ttm_bo_validate_pinned
[13:58:30] [PASSED] ttm_bo_validate_busy_placement
[13:58:30] ================ ttm_bo_validate_multihop  =================
[13:58:30] [PASSED] Buffer object for userspace
[13:58:30] [PASSED] Kernel buffer object
[13:58:30] [PASSED] Shared buffer object
[13:58:30] ============ [PASSED] ttm_bo_validate_multihop =============
[13:58:30] ========== ttm_bo_validate_no_placement_signaled  ==========
[13:58:30] [PASSED] Buffer object in system domain, no page vector
[13:58:30] [PASSED] Buffer object in system domain with an existing page vector
[13:58:30] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:58:30] ======== ttm_bo_validate_no_placement_not_signaled  ========
[13:58:30] [PASSED] Buffer object for userspace
[13:58:30] [PASSED] Kernel buffer object
[13:58:30] [PASSED] Shared buffer object
[13:58:30] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:58:30] [PASSED] ttm_bo_validate_move_fence_signaled
[13:58:30] ========= ttm_bo_validate_move_fence_not_signaled  =========
[13:58:30] [PASSED] Waits for GPU
[13:58:30] [PASSED] Tries to lock straight away
[13:58:30] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:58:30] [PASSED] ttm_bo_validate_swapout
[13:58:30] [PASSED] ttm_bo_validate_happy_evict
[13:58:30] [PASSED] ttm_bo_validate_all_pinned_evict
[13:58:30] [PASSED] ttm_bo_validate_allowed_only_evict
[13:58:30] [PASSED] ttm_bo_validate_deleted_evict
[13:58:30] [PASSED] ttm_bo_validate_busy_domain_evict
[13:58:30] [PASSED] ttm_bo_validate_evict_gutting
[13:58:30] [PASSED] ttm_bo_validate_recrusive_evict
[13:58:30] ================= [PASSED] ttm_bo_validate =================
[13:58:30] ============================================================
[13:58:30] Testing complete. Ran 106 tests: passed: 106
[13:58:30] Elapsed time: 12.164s total, 1.838s configuring, 10.111s building, 0.179s running

+ for kcfg in "${kunitconfigs[@]}"
+ [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]]
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[13:58:31] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:58:32] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:58:41] Starting KUnit Kernel (1/1)...
[13:58:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:58:41] ============= refcount_interrupt (4 subtests) ==============
[13:58:41] [PASSED] test_single_irq_change
[13:58:41] [PASSED] test_nested_irq_change
[13:58:41] [PASSED] test_multiple_irq_change
[13:58:41] [PASSED] test_irq_save
[13:58:41] =============== [PASSED] refcount_interrupt ================
[13:58:41] =============== dma-buf-fence (12 subtests) ================
[13:58:41] [PASSED] test_sanitycheck
[13:58:41] [PASSED] test_signaling
[13:58:41] [PASSED] test_add_callback
[13:58:41] [PASSED] test_late_add_callback
[13:58:41] [PASSED] test_rm_callback
[13:58:41] [PASSED] test_late_rm_callback
[13:58:41] [PASSED] test_status
[13:58:41] [PASSED] test_error
[13:58:41] [PASSED] test_wait
[13:58:41] [PASSED] test_wait_timeout
[13:58:41] [PASSED] test_stub
[13:58:41] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[13:58:41] ================== [PASSED] dma-buf-fence ==================
[13:58:41] ============ dma-buf-fence-chain (11 subtests) =============
[13:58:41] [PASSED] test_sanitycheck
[13:58:41] [PASSED] test_find_seqno
[13:58:41] [PASSED] test_find_signaled
[13:58:41] [PASSED] test_find_out_of_order
[13:58:46] [PASSED] test_find_gap
[13:58:46] [PASSED] test_find_race
[13:58:46] [PASSED] test_signal_forward
[13:58:46] [PASSED] test_signal_backward
[13:58:46] [PASSED] test_wait_forward
[13:58:46] [PASSED] test_wait_backward
[13:58:46] [PASSED] test_wait_random
[13:58:46] =============== [PASSED] dma-buf-fence-chain ===============
[13:58:46] ============ dma-buf-fence-unwrap (10 subtests) ============
[13:58:46] [PASSED] test_sanitycheck
[13:58:46] [PASSED] test_unwrap_array
[13:58:46] [PASSED] test_unwrap_chain
[13:58:46] [PASSED] test_unwrap_chain_array
[13:58:46] [PASSED] test_unwrap_merge
[13:58:46] [PASSED] test_unwrap_merge_duplicate
[13:58:46] [PASSED] test_unwrap_merge_seqno
[13:58:46] [PASSED] test_unwrap_merge_order
[13:58:46] [PASSED] test_unwrap_merge_complex
[13:58:46] [PASSED] test_unwrap_merge_complex_seqno
[13:58:46] ============== [PASSED] dma-buf-fence-unwrap ===============
[13:58:46] ================ dma-buf-resv (5 subtests) =================
[13:58:46] [PASSED] test_sanitycheck
[13:58:46] ===================== test_signaling  ======================
[13:58:46] [PASSED] kernel
[13:58:46] [PASSED] write
[13:58:46] [PASSED] read
[13:58:46] [PASSED] bookkeep
[13:58:46] ================= [PASSED] test_signaling ==================
[13:58:46] ====================== test_for_each  ======================
[13:58:46] [PASSED] kernel
[13:58:46] [PASSED] write
[13:58:46] [PASSED] read
[13:58:46] [PASSED] bookkeep
[13:58:46] ================== [PASSED] test_for_each ==================
[13:58:46] ================= test_for_each_unlocked  ==================
[13:58:46] [PASSED] kernel
[13:58:46] [PASSED] write
[13:58:46] [PASSED] read
[13:58:46] [PASSED] bookkeep
[13:58:46] ============= [PASSED] test_for_each_unlocked ==============
[13:58:46] ===================== test_get_fences  =====================
[13:58:46] [PASSED] kernel
[13:58:46] [PASSED] write
[13:58:46] [PASSED] read
[13:58:46] [PASSED] bookkeep
[13:58:46] ================= [PASSED] test_get_fences =================
[13:58:46] ================== [PASSED] dma-buf-resv ===================
[13:58:46] ============================================================
[13:58:46] Testing complete. Ran 54 tests: passed: 53, skipped: 1
[13:58:46] Elapsed time: 15.900s total, 1.846s configuring, 8.732s building, 5.269s running

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



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

* RE: [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs
  2026-09-07 13:47 [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
  2026-09-07 13:58 ` ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
@ 2026-09-07 14:13 ` Upadhyay, Tejas
  2026-09-07 14:47 ` ✓ Xe.CI.BAT: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Upadhyay, Tejas @ 2026-09-07 14:13 UTC (permalink / raw)
  To: Gupta, Varun, intel-xe@lists.freedesktop.org; +Cc: Roper, Matthew D



> -----Original Message-----
> From: Gupta, Varun <varun.gupta@intel.com>
> Sent: 07 September 2026 19:17
> To: intel-xe@lists.freedesktop.org
> Cc: Roper, Matthew D <matthew.d.roper@intel.com>; Upadhyay, Tejas
> <tejas.upadhyay@intel.com>
> Subject: [PATCH v3] 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.
> 
> 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)

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

Tejas
> 
> Bspec: 60321, 73976
> Signed-off-by: Varun Gupta <varun.gupta@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_gt_debugfs.c | 46 +++++++++++++++++++
> 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, 128 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..d7d6f50d8dab 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);
> @@ -249,6 +293,8 @@ static const struct drm_info_list
> vf_safe_debugfs_list[] = {  static const struct drm_info_list
> pf_only_debugfs_list[] = {
>  	{ "hw_engines", .show = xe_gt_debugfs_show_with_rpm, .data =
> hw_engines },
>  	{ "mocs", .show = xe_gt_debugfs_show_with_rpm, .data =
> xe_mocs_dump },
> +	{ "multi_queue_active_lrca",
> +		.show = xe_gt_debugfs_show_with_rpm, .data =
> multi_queue_active_lrca
> +},
>  	{ "pat", .show = xe_gt_debugfs_show_with_rpm, .data =
> xe_pat_dump },
>  	{ "powergate_info", .show = xe_gt_debugfs_show_with_rpm, .data =
> xe_gt_idle_pg_print },
>  	{ "steering", .show = xe_gt_debugfs_show_with_rpm, .data = steering
> }, 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] 6+ messages in thread

* ✓ Xe.CI.BAT: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3)
  2026-09-07 13:47 [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
  2026-09-07 13:58 ` ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
  2026-09-07 14:13 ` [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas
@ 2026-09-07 14:47 ` Patchwork
  2026-09-07 15:58 ` [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas
  2026-09-07 17:09 ` ✓ Xe.CI.FULL: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-09-07 14:47 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db_BAT -> xe-pw-173220v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db -> xe-pw-173220v3

  IGT_9084: 9084
  xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db: c60540b13d7bacc21848ed94fd368a968454d5db
  xe-pw-173220v3: 173220v3

== Logs ==

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

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

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

* RE: [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs
  2026-09-07 13:47 [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
                   ` (2 preceding siblings ...)
  2026-09-07 14:47 ` ✓ Xe.CI.BAT: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
@ 2026-09-07 15:58 ` Upadhyay, Tejas
  2026-09-07 17:09 ` ✓ Xe.CI.FULL: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Upadhyay, Tejas @ 2026-09-07 15:58 UTC (permalink / raw)
  To: Gupta, Varun, intel-xe@lists.freedesktop.org; +Cc: Roper, Matthew D



> -----Original Message-----
> From: Gupta, Varun <varun.gupta@intel.com>
> Sent: 07 September 2026 19:17
> To: intel-xe@lists.freedesktop.org
> Cc: Roper, Matthew D <matthew.d.roper@intel.com>; Upadhyay, Tejas
> <tejas.upadhyay@intel.com>
> Subject: [PATCH v3] 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.
> 
> 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)

Please also make sure this isn't visible on non-multiqueue supported platform. Because there it has no meaning, correct!

Tejas

> 
> Bspec: 60321, 73976
> Signed-off-by: Varun Gupta <varun.gupta@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_gt_debugfs.c | 46 +++++++++++++++++++
> 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, 128 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..d7d6f50d8dab 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);
> @@ -249,6 +293,8 @@ static const struct drm_info_list
> vf_safe_debugfs_list[] = {  static const struct drm_info_list
> pf_only_debugfs_list[] = {
>  	{ "hw_engines", .show = xe_gt_debugfs_show_with_rpm, .data =
> hw_engines },
>  	{ "mocs", .show = xe_gt_debugfs_show_with_rpm, .data =
> xe_mocs_dump },
> +	{ "multi_queue_active_lrca",
> +		.show = xe_gt_debugfs_show_with_rpm, .data =
> multi_queue_active_lrca
> +},
>  	{ "pat", .show = xe_gt_debugfs_show_with_rpm, .data =
> xe_pat_dump },
>  	{ "powergate_info", .show = xe_gt_debugfs_show_with_rpm, .data =
> xe_gt_idle_pg_print },
>  	{ "steering", .show = xe_gt_debugfs_show_with_rpm, .data = steering
> }, 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] 6+ messages in thread

* ✓ Xe.CI.FULL: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3)
  2026-09-07 13:47 [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
                   ` (3 preceding siblings ...)
  2026-09-07 15:58 ` [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas
@ 2026-09-07 17:09 ` Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-09-07 17:09 UTC (permalink / raw)
  To: Varun Gupta; +Cc: intel-xe

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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db_FULL -> xe-pw-173220v3_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-173220v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][2] ([Intel XE#3658] / [Intel XE#7360])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

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

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

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#1428] / [Intel XE#7387])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

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

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

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

  * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#367]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2887]) +9 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#2669] / [Intel XE#7389]) +2 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][13] ([Intel XE#7084] / [Intel XE#8150])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#2887]) +6 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#7008])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_audio@dp-audio-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2252]) +3 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_chamelium_audio@dp-audio-after-suspend.html

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

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#306] / [Intel XE#7358]) +2 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_chamelium_color@ctm-red-to-blue.html

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

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#373]) +4 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_sharpness_filter@filter-basic:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#6507])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_chamelium_sharpness_filter@filter-basic.html

  * igt@kms_color@deep-color:
    - shard-lnl:          [PASS][23] -> [SKIP][24] ([Intel XE#1511] / [Intel XE#3297])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_color@deep-color.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_color@deep-color.html

  * igt@kms_color@legacy-gamma-reset:
    - shard-lnl:          [PASS][25] -> [SKIP][26] ([Intel XE#3297])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_color@legacy-gamma-reset.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_color@legacy-gamma-reset.html

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

  * igt@kms_color_pipeline@plane-lut1d-lut1d:
    - shard-lnl:          [PASS][28] -> [SKIP][29] ([Intel XE#7006])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_color_pipeline@plane-lut1d-lut1d.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_color_pipeline@plane-lut1d-lut1d.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-plane-1:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#6969]) +7 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-plane-1.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-plane-2:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#6969] / [Intel XE#7006])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-plane-2.html

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

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

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

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2320]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#1424]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-tearing-position-change:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#9125]) +32 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_cursor_crc@cursor-tearing-position-change.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#309] / [Intel XE#7343]) +3 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#1508])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#4331] / [Intel XE#7227])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#8265])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#8265])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html

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

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#4156] / [Intel XE#7425])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-3/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#8680])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_fbcon_fbt@psr-suspend.html

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

  * igt@kms_feature_discovery@dp-mst:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#1137] / [Intel XE#2375])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@dsc:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#8586])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-3/igt@kms_feature_discovery@dsc.html

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

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2374] / [Intel XE#6128])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#1421]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - shard-lnl:          [PASS][52] -> [SKIP][53] ([Intel XE#2482]) +2 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_flip@basic-flip-vs-modeset.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
    - shard-lnl:          NOTRUN -> [FAIL][54] ([Intel XE#6266])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html

  * igt@kms_flip@flip-vs-dpms-on-nop:
    - shard-lnl:          [PASS][55] -> [SKIP][56] ([Intel XE#9132])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_flip@flip-vs-dpms-on-nop.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_flip@flip-vs-dpms-on-nop.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#7179])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
    - shard-lnl:          [PASS][59] -> [SKIP][60] ([Intel XE#1745] / [Intel XE#9144])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#7178] / [Intel XE#7349])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#1745] / [Intel XE#9144])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html

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

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#352])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#6312] / [Intel XE#651]) +5 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#4141]) +11 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
    - shard-lnl:          [PASS][69] -> [SKIP][70] ([Intel XE#7779])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#656] / [Intel XE#7905]) +22 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][72] ([Intel XE#7779]) +24 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html

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

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#2548] / [Intel XE#7779]) +18 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2311]) +30 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#7905]) +22 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#2313]) +34 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#7865]) +13 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
    - shard-lnl:          [PASS][80] -> [SKIP][81] ([Intel XE#2548] / [Intel XE#7779]) +12 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html

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

  * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#7061]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#7061]) +3 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-render.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#1470])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html

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

  * igt@kms_invalid_mode@bad-vsync-end:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#2568])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_invalid_mode@bad-vsync-end.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#7086] / [Intel XE#7390])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_joiner@basic-force-big-joiner.html

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

  * igt@kms_lease@lease-unleased-crtc:
    - shard-lnl:          [PASS][90] -> [SKIP][91] ([Intel XE#9125]) +36 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_lease@lease-unleased-crtc.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_lease@lease-unleased-crtc.html

  * igt@kms_mst@mst-suspend-read-crc:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#8348])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_mst@mst-suspend-read-crc.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-y-tiled-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#7283]) +2 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#7283]) +3 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html

  * igt@kms_plane@planar-pixel-format-settings:
    - shard-lnl:          [PASS][96] -> [SKIP][97] ([Intel XE#7780] / [Intel XE#9125])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_plane@planar-pixel-format-settings.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane@planar-pixel-format-settings.html

  * igt@kms_plane@plane-panning-top-left:
    - shard-lnl:          [PASS][98] -> [SKIP][99] ([Intel XE#9128])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_plane@plane-panning-top-left.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane@plane-panning-top-left.html

  * igt@kms_plane@plane-position-covered:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#9128]) +1 other test skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane@plane-position-covered.html

  * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#599] / [Intel XE#7382]) +2 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html

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

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-lnl:          [PASS][104] -> [SKIP][105] ([Intel XE#2763] / [Intel XE#6886]) +5 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
    - shard-lnl:          [PASS][106] -> [SKIP][107] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +5 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html

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

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

  * igt@kms_plane_scaling@planes-upscale-factor-0-25:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html

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

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#1131])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_pm_dc@dc5-dpms-negative.html

  * igt@kms_pm_dc@dc5-pageflip-negative:
    - shard-lnl:          [PASS][113] -> [SKIP][114] ([Intel XE#6927] / [Intel XE#8854])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_pm_dc@dc5-pageflip-negative.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_pm_dc@dc5-pageflip-negative.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#7794])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@drm-resources-equal:
    - shard-lnl:          [PASS][116] -> [SKIP][117] ([Intel XE#7106])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_pm_rpm@drm-resources-equal.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_pm_rpm@drm-resources-equal.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-lnl:          NOTRUN -> [SKIP][121] ([Intel XE#1489])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

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

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-lnl:          [PASS][123] -> [SKIP][124] ([Intel XE#1489]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#1128] / [Intel XE#7413])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@kms_psr2_su@page_flip-xrgb8888.html

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

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

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-lnl:          NOTRUN -> [SKIP][128] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-render.html

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

  * igt@kms_psr@psr-dpms:
    - shard-lnl:          [PASS][130] -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_psr@psr-dpms.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr@psr-dpms.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-lnl:          [PASS][132] -> [SKIP][133] ([Intel XE#7795])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [SKIP][134] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#2330] / [Intel XE#5813])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_setmode@basic:
    - shard-lnl:          [PASS][136] -> [SKIP][137] ([Intel XE#1435] / [Intel XE#9142])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_setmode@basic.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_setmode@basic.html

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

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#362] / [Intel XE#5848])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@lobf:
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#1499])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_vrr@lobf.html

  * igt@kms_vrr@lobf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#7638])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@kms_vrr@lobf@pipe-a-edp-1.html

  * igt@xe_ccs@vm-bind-fault-mode-decompress:
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#7644])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@xe_ccs@vm-bind-fault-mode-decompress.html

  * igt@xe_evict@evict-small-external-multi-queue-cm:
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#8370])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-3/igt@xe_evict@evict-small-external-multi-queue-cm.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
    - shard-lnl:          NOTRUN -> [SKIP][144] ([Intel XE#6540] / [Intel XE#688]) +6 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html

  * igt@xe_exec_balancer@no-exec-cm-parallel-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][145] ([Intel XE#7482]) +13 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@xe_exec_balancer@no-exec-cm-parallel-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][146] ([Intel XE#1392]) +6 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html

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

  * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][148] ([Intel XE#8374]) +9 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html

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

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][150] ([Intel XE#8364]) +19 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][151] ([Intel XE#8364]) +21 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate.html

  * igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][152] ([Intel XE#9041])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-9/igt@xe_exec_reset@gt-stress-reset-mixed-engine-usage.html

  * igt@xe_exec_reset@multi-queue-close-execqueues:
    - shard-bmg:          NOTRUN -> [SKIP][153] ([Intel XE#8369]) +1 other test skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@xe_exec_reset@multi-queue-close-execqueues.html

  * igt@xe_exec_reset@multi-queue-gt-reset:
    - shard-lnl:          NOTRUN -> [SKIP][154] ([Intel XE#8369])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@xe_exec_reset@multi-queue-gt-reset.html

  * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
    - shard-lnl:          [PASS][155] -> [FAIL][156] ([Intel XE#9096])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-3/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
    - shard-bmg:          [PASS][157] -> [FAIL][158] ([Intel XE#9096])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-bmg-1/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-10/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html

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

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

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

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182]) -> ([PASS][183], [PASS][184], [SKIP][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204]) ([Intel XE#378] / [Intel XE#7405])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@xe_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-2/igt@xe_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-3/igt@xe_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-3/igt@xe_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-3/igt@xe_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@xe_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@xe_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@xe_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-1/igt@xe_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-1/igt@xe_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-1/igt@xe_module_load@load.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@xe_module_load@load.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-7/igt@xe_module_load@load.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-7/igt@xe_module_load@load.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-2/igt@xe_module_load@load.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-2/igt@xe_module_load@load.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@xe_module_load@load.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@xe_module_load@load.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-7/igt@xe_module_load@load.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@xe_module_load@load.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@xe_module_load@load.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_module_load@load.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@xe_module_load@load.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@xe_module_load@load.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@xe_module_load@load.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_module_load@load.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-1/igt@xe_module_load@load.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_module_load@load.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@xe_module_load@load.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@xe_module_load@load.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-1/igt@xe_module_load@load.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-1/igt@xe_module_load@load.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-4/igt@xe_module_load@load.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-4/igt@xe_module_load@load.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@xe_module_load@load.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@xe_module_load@load.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@xe_module_load@load.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@xe_module_load@load.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@xe_module_load@load.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@xe_module_load@load.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-4/igt@xe_module_load@load.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@xe_module_load@load.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
    - shard-lnl:          NOTRUN -> [SKIP][205] ([Intel XE#6964]) +2 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html

  * igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][206] ([Intel XE#6964])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html

  * igt@xe_page_reclaim@basic-mixed:
    - shard-lnl:          NOTRUN -> [SKIP][207] ([Intel XE#7793])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_page_reclaim@basic-mixed.html

  * igt@xe_page_reclaim@prl-invalidate-full:
    - shard-bmg:          NOTRUN -> [SKIP][208] ([Intel XE#7793])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@xe_page_reclaim@prl-invalidate-full.html

  * igt@xe_pat@xa-app-transient-media-off:
    - shard-bmg:          NOTRUN -> [SKIP][209] ([Intel XE#7590]) +1 other test skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-3/igt@xe_pat@xa-app-transient-media-off.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][210] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@xe_pm@s3-d3cold-basic-exec.html

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

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-lnl:          NOTRUN -> [SKIP][212] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7456])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html

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

  * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][214] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html

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

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

  * igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled:
    - shard-lnl:          NOTRUN -> [SKIP][217] ([Intel XE#7174]) +1 other test skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-lnl:          NOTRUN -> [DMESG-WARN][218] ([Intel XE#8963])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-3/igt@xe_wedged@wedged-at-any-timeout.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-bmg:          [ABORT][219] ([Intel XE#8007]) -> [PASS][220] +1 other test pass
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-bmg-3/igt@core_hotunplug@hotrebind-lateclose.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-3/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
    - shard-bmg:          [INCOMPLETE][221] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][222]
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html

  * igt@kms_color@gamma:
    - shard-lnl:          [SKIP][223] ([Intel XE#3297]) -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_color@gamma.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_color@gamma.html

  * igt@kms_cursor_edge_walk@256x256-right-edge:
    - shard-lnl:          [SKIP][225] ([Intel XE#9125]) -> [PASS][226] +27 other tests pass
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_cursor_edge_walk@256x256-right-edge.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_cursor_edge_walk@256x256-right-edge.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][227] ([Intel XE#7809]) -> [PASS][228]
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-lnl:          [FAIL][229] ([Intel XE#7949] / [i915#4767]) -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-2/igt@kms_fbcon_fbt@fbc-suspend.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-4/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@busy-flip:
    - shard-lnl:          [SKIP][231] ([Intel XE#2482]) -> [PASS][232] +2 other tests pass
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_flip@busy-flip.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_flip@busy-flip.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
    - shard-lnl:          [SKIP][233] ([Intel XE#1745] / [Intel XE#9144]) -> [PASS][234]
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
    - shard-lnl:          [SKIP][235] ([Intel XE#7779]) -> [PASS][236]
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-lnl:          [SKIP][237] ([Intel XE#2548] / [Intel XE#7779]) -> [PASS][238] +6 other tests pass
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_invalid_mode@bad-vtotal:
    - shard-lnl:          [SKIP][239] ([Intel XE#2568]) -> [PASS][240]
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_invalid_mode@bad-vtotal.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_invalid_mode@bad-vtotal.html

  * igt@kms_plane@plane-panning-bottom-right:
    - shard-lnl:          [SKIP][241] ([Intel XE#9128]) -> [PASS][242] +1 other test pass
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_plane@plane-panning-bottom-right.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_plane@plane-panning-bottom-right.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a:
    - shard-lnl:          [SKIP][243] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][244] +3 other tests pass
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-lnl:          [SKIP][245] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [PASS][246] +3 other tests pass
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

  * igt@kms_pm_dc@dc5-dpms-suspend-resume:
    - shard-lnl:          [FAIL][247] ([Intel XE#8399]) -> [PASS][248]
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_pm_dc@dc5-dpms-suspend-resume.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_pm_dc@dc5-dpms-suspend-resume.html

  * igt@kms_properties@plane-properties-legacy:
    - shard-lnl:          [SKIP][249] ([Intel XE#9129]) -> [PASS][250]
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_properties@plane-properties-legacy.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_properties@plane-properties-legacy.html

  * igt@kms_psr@psr-no-drrs:
    - shard-lnl:          [SKIP][251] ([Intel XE#2850] / [Intel XE#929]) -> [PASS][252] +2 other tests pass
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_psr@psr-no-drrs.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_psr@psr-no-drrs.html

  
#### Warnings ####

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-lnl:          [SKIP][253] ([Intel XE#3279]) -> [SKIP][254] ([Intel XE#9125])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-lnl:          [SKIP][255] ([Intel XE#9125]) -> [SKIP][256] ([Intel XE#1407])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [SKIP][257] ([Intel XE#1407]) -> [SKIP][258] ([Intel XE#9125]) +5 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-lnl:          [SKIP][259] ([Intel XE#9125]) -> [SKIP][260] ([Intel XE#7059] / [Intel XE#7085])
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-lnl:          [SKIP][261] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][262] ([Intel XE#9125])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-lnl:          [SKIP][263] ([Intel XE#9125]) -> [SKIP][264] ([Intel XE#1124]) +5 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-lnl:          [SKIP][265] ([Intel XE#1124]) -> [SKIP][266] ([Intel XE#9125]) +8 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p:
    - shard-lnl:          [SKIP][267] ([Intel XE#9125]) -> [SKIP][268] ([Intel XE#7679])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
    - shard-lnl:          [SKIP][269] ([Intel XE#7679]) -> [SKIP][270] ([Intel XE#9125])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
    - shard-lnl:          [SKIP][271] ([Intel XE#8365]) -> [SKIP][272] ([Intel XE#9125]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
    - shard-lnl:          [SKIP][273] ([Intel XE#9125]) -> [SKIP][274] ([Intel XE#8365]) +1 other test skip
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-target-3840x2160p:
    - shard-lnl:          [SKIP][275] ([Intel XE#367]) -> [SKIP][276] ([Intel XE#9125])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          [SKIP][277] ([Intel XE#2887]) -> [SKIP][278] ([Intel XE#9125]) +11 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-lnl:          [SKIP][279] ([Intel XE#9125]) -> [SKIP][280] ([Intel XE#2669] / [Intel XE#7389])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-lnl:          [SKIP][281] ([Intel XE#3432]) -> [SKIP][282] ([Intel XE#9125]) +1 other test skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
    - shard-lnl:          [SKIP][283] ([Intel XE#9125]) -> [SKIP][284] ([Intel XE#2887]) +7 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_color_pipeline@plane-lut3d-green-only:
    - shard-lnl:          [SKIP][285] ([Intel XE#7006]) -> [SKIP][286] ([Intel XE#6969] / [Intel XE#7006])
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_color_pipeline@plane-lut3d-green-only.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-lnl:          [SKIP][287] ([Intel XE#307] / [Intel XE#6974]) -> [SKIP][288] ([Intel XE#9125])
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-lnl:          [SKIP][289] ([Intel XE#9125]) -> [SKIP][290] ([Intel XE#307] / [Intel XE#6974])
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-lnl:          [SKIP][291] ([Intel XE#9125]) -> [SKIP][292] ([Intel XE#6974])
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@srm:
    - shard-lnl:          [SKIP][293] ([Intel XE#7642]) -> [SKIP][294] ([Intel XE#9125])
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_content_protection@srm.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-lnl:          [SKIP][295] ([Intel XE#9125]) -> [SKIP][296] ([Intel XE#1424]) +1 other test skip
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-lnl:          [SKIP][297] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][298] ([Intel XE#9125]) +1 other test skip
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-lnl:          [SKIP][299] ([Intel XE#9125]) -> [SKIP][300] ([Intel XE#2321] / [Intel XE#7355])
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_cursor_crc@cursor-random-512x512.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x85:
    - shard-lnl:          [SKIP][301] ([Intel XE#1424]) -> [SKIP][302] ([Intel XE#9125])
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-lnl:          [SKIP][303] ([Intel XE#9125]) -> [SKIP][304] ([Intel XE#309] / [Intel XE#7343])
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-lnl:          [SKIP][305] ([Intel XE#323] / [Intel XE#6035]) -> [SKIP][306] ([Intel XE#9125])
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-lnl:          [SKIP][307] ([Intel XE#9125]) -> [SKIP][308] ([Intel XE#4354] / [Intel XE#5882])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_dp_link_training@non-uhbr-mst.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-lnl:          [SKIP][309] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][310] ([Intel XE#9125])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-lnl:          [SKIP][311] ([Intel XE#9125]) -> [SKIP][312] ([Intel XE#8265]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_dsc@dsc-fractional-bpp.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
    - shard-lnl:          [SKIP][313] ([Intel XE#8265]) -> [SKIP][314] ([Intel XE#9125]) +2 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [SKIP][315] ([Intel XE#2482]) -> [FAIL][316] ([Intel XE#6266])
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
    - shard-lnl:          [SKIP][317] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) -> [SKIP][318] ([Intel XE#1745] / [Intel XE#9144])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
    - shard-lnl:          [SKIP][319] ([Intel XE#1745] / [Intel XE#9144]) -> [SKIP][320] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          [SKIP][321] ([Intel XE#6312]) -> [SKIP][322] ([Intel XE#7779]) +5 other tests skip
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-lnl:          [SKIP][323] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][324] ([Intel XE#7779]) +4 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-lnl:          [SKIP][325] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][326] ([Intel XE#2548] / [Intel XE#7779]) +33 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
    - shard-lnl:          [SKIP][327] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][328] ([Intel XE#656] / [Intel XE#7905]) +19 other tests skip
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
    - shard-lnl:          [SKIP][329] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][330] ([Intel XE#2548] / [Intel XE#7779]) +9 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
    - shard-lnl:          [SKIP][331] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][332] ([Intel XE#6312] / [Intel XE#651]) +7 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff:
    - shard-lnl:          [SKIP][333] ([Intel XE#7779]) -> [SKIP][334] ([Intel XE#6312]) +9 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render:
    - shard-lnl:          [SKIP][335] ([Intel XE#7905]) -> [SKIP][336] ([Intel XE#7779]) +33 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-blt:
    - shard-lnl:          [SKIP][337] ([Intel XE#7779]) -> [SKIP][338] ([Intel XE#7061])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-blt.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-lnl:          [SKIP][339] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][340] ([Intel XE#1469] / [Intel XE#7399])
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-lnl:          [SKIP][341] ([Intel XE#7865]) -> [SKIP][342] ([Intel XE#7779]) +22 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render:
    - shard-lnl:          [SKIP][343] ([Intel XE#7779]) -> [SKIP][344] ([Intel XE#7905]) +22 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend:
    - shard-lnl:          [SKIP][345] ([Intel XE#7779]) -> [SKIP][346] ([Intel XE#7865]) +13 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html

  * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt:
    - shard-lnl:          [SKIP][347] ([Intel XE#7061]) -> [SKIP][348] ([Intel XE#7779]) +4 other tests skip
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html

  * igt@kms_hdr@static-toggle:
    - shard-lnl:          [SKIP][349] ([Intel XE#9125]) -> [SKIP][350] ([Intel XE#1503])
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_hdr@static-toggle.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_hdr@static-toggle.html

  * igt@kms_plane_lowres@tiling-none:
    - shard-lnl:          [SKIP][351] ([Intel XE#599] / [Intel XE#7382]) -> [SKIP][352] ([Intel XE#9125])
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_plane_lowres@tiling-none.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane_lowres@tiling-none.html

  * igt@kms_plane_lowres@tiling-x:
    - shard-lnl:          [SKIP][353] ([Intel XE#9125]) -> [SKIP][354] ([Intel XE#599] / [Intel XE#7382])
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_plane_lowres@tiling-x.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_plane_lowres@tiling-x.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-lnl:          [SKIP][355] ([Intel XE#9125]) -> [SKIP][356] ([Intel XE#4596] / [Intel XE#5854])
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-x.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-lnl:          [SKIP][357] ([Intel XE#4596] / [Intel XE#5854]) -> [SKIP][358] ([Intel XE#9125])
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-yf.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-lnl:          [SKIP][359] ([Intel XE#9125]) -> [SKIP][360] ([Intel XE#5020] / [Intel XE#7348])
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_plane_multiple@tiling-yf.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
    - shard-lnl:          [SKIP][361] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][362] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +3 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-lnl:          [SKIP][363] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [SKIP][364] ([Intel XE#2763] / [Intel XE#6886]) +1 other test skip
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [SKIP][365] ([Intel XE#7778]) -> [FAIL][366] ([Intel XE#2029] / [Intel XE#7395])
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-lnl:          [SKIP][367] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [SKIP][368] ([Intel XE#1489]) +1 other test skip
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-lnl:          [SKIP][369] ([Intel XE#1489]) -> [SKIP][370] ([Intel XE#2893] / [Intel XE#7304]) +3 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-lnl:          [SKIP][371] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][372] ([Intel XE#1489]) +2 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-pr-no-drrs:
    - shard-lnl:          [SKIP][373] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][374] ([Intel XE#1406]) +3 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_psr@fbc-pr-no-drrs.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_psr@fbc-pr-no-drrs.html

  * igt@kms_psr@fbc-psr2-sprite-blt:
    - shard-lnl:          [SKIP][375] ([Intel XE#1406] / [Intel XE#7345]) -> [SKIP][376] ([Intel XE#2850] / [Intel XE#929])
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-blt.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-blt.html

  * igt@kms_psr@pr-cursor-plane-move:
    - shard-lnl:          [SKIP][377] ([Intel XE#1406]) -> [SKIP][378] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_psr@pr-cursor-plane-move.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-lnl:          [SKIP][379] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][380] ([Intel XE#9125]) +1 other test skip
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-270.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-lnl:          [SKIP][381] ([Intel XE#1127] / [Intel XE#5813]) -> [SKIP][382] ([Intel XE#9125])
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-lnl:          [SKIP][383] ([Intel XE#9125]) -> [SKIP][384] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][385] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][386] ([Intel XE#2426] / [Intel XE#5848])
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-lnl:          [SKIP][387] ([Intel XE#9125]) -> [SKIP][388] ([Intel XE#1499])
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@xe_exec_reset@gt-reset-fault-injection:
    - shard-bmg:          [ABORT][389] ([Intel XE#9131] / [Intel XE#9145]) -> [DMESG-WARN][390] ([Intel XE#9130])
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-bmg-10/igt@xe_exec_reset@gt-reset-fault-injection.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-bmg-7/igt@xe_exec_reset@gt-reset-fault-injection.html

  * igt@xe_wedged@basic-wedged:
    - shard-lnl:          [DMESG-WARN][391] ([Intel XE#8963]) -> [ABORT][392] ([Intel XE#8963])
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db/shard-lnl-1/igt@xe_wedged@basic-wedged.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173220v3/shard-lnl-5/igt@xe_wedged@basic-wedged.html

  
  [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [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#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1511]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1511
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [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#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [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#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [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#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
  [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#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
  [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
  [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#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
  [Intel XE#7106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7106
  [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#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [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#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
  [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#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#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#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
  [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
  [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
  [Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390
  [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7456]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7456
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7638
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
  [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#7778]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7778
  [Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
  [Intel XE#7780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7780
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7949]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7949
  [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348
  [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#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
  [Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
  [Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#8854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8854
  [Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
  [Intel XE#9041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9041
  [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#9128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9128
  [Intel XE#9129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9129
  [Intel XE#9130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9130
  [Intel XE#9131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9131
  [Intel XE#9132]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9132
  [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
  [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767


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

  * Linux: xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db -> xe-pw-173220v3

  IGT_9084: 9084
  xe-5697-c60540b13d7bacc21848ed94fd368a968454d5db: c60540b13d7bacc21848ed94fd368a968454d5db
  xe-pw-173220v3: 173220v3

== Logs ==

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

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

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

end of thread, other threads:[~2026-09-07 17:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-07 13:47 [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Varun Gupta
2026-09-07 13:58 ` ✓ CI.KUnit: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
2026-09-07 14:13 ` [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas
2026-09-07 14:47 ` ✓ Xe.CI.BAT: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork
2026-09-07 15:58 ` [PATCH v3] drm/xe: Add multi_queue_active_lrca debugfs Upadhyay, Tejas
2026-09-07 17:09 ` ✓ Xe.CI.FULL: success for drm/xe: Add multi_queue_active_lrca debugfs (rev3) Patchwork

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