Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] drm/xe/tests: Fix subplatform selection
@ 2026-09-05 20:01 Michal Wajdeczko
  2026-09-05 20:01 ` [PATCH 1/2] drm/xe/tests: Fix default " Michal Wajdeczko
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2026-09-05 20:01 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko, Gustavo Sousa

Sashiko pointed out that in some cases we could wrongly select a pointer
to a sentinel element of subplatform descriptors list instead of NULL.

While around, make default subplatform selection future proof.

[1] https://lore.kernel.org/intel-xe/20260904171419.E21DF1F00A3D@smtp.kernel.org/

Cc: Gustavo Sousa <gustavo.sousa@intel.com>

Michal Wajdeczko (2):
  drm/xe/tests: Fix default subplatform selection
  drm/xe/tests: Fix subplatform selection

 drivers/gpu/drm/xe/tests/xe_pci.c | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

-- 
2.47.1


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

* [PATCH 1/2] drm/xe/tests: Fix default subplatform selection
  2026-09-05 20:01 [PATCH 0/2] drm/xe/tests: Fix subplatform selection Michal Wajdeczko
@ 2026-09-05 20:01 ` Michal Wajdeczko
  2026-09-09 19:04   ` Gustavo Sousa
  2026-09-05 20:01 ` [PATCH 2/2] drm/xe/tests: Fix " Michal Wajdeczko
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Michal Wajdeczko @ 2026-09-05 20:01 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko, Gustavo Sousa

If a test does not specify details about the fake device it wants
to create, our helper selects the device descriptor from the first
entry from the pciidlist and uses NULL for the subplatform descriptor.
While this works fine today, as the first device is a TGL which does
not have any subplatforms, it will be broken if we reorder pciidlist.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
Cc: Gustavo Sousa <gustavo.sousa@intel.com>
---
 drivers/gpu/drm/xe/tests/xe_pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
index bb0393475524..a82cab7a2b86 100644
--- a/drivers/gpu/drm/xe/tests/xe_pci.c
+++ b/drivers/gpu/drm/xe/tests/xe_pci.c
@@ -351,7 +351,7 @@ int xe_pci_fake_device_init(struct xe_device *xe)
 
 	if (!data) {
 		desc = (const void *)ent->driver_data;
-		subplatform_desc = NULL;
+		subplatform_desc = desc->subplatforms;
 		goto done;
 	}
 
-- 
2.47.1


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

* [PATCH 2/2] drm/xe/tests: Fix subplatform selection
  2026-09-05 20:01 [PATCH 0/2] drm/xe/tests: Fix subplatform selection Michal Wajdeczko
  2026-09-05 20:01 ` [PATCH 1/2] drm/xe/tests: Fix default " Michal Wajdeczko
@ 2026-09-05 20:01 ` Michal Wajdeczko
  2026-09-09 19:13   ` Gustavo Sousa
  2026-09-05 20:10 ` ✓ CI.KUnit: success for " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Michal Wajdeczko @ 2026-09-05 20:01 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko, Gustavo Sousa

If a test does not specify subplatform details about the fake device
it wants to create, our helper may select a sentinel of the subplatform
descriptors list instead of the first available subplatform.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
Cc: Gustavo Sousa <gustavo.sousa@intel.com>
---
 drivers/gpu/drm/xe/tests/xe_pci.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
index a82cab7a2b86..8ab4270cf5d8 100644
--- a/drivers/gpu/drm/xe/tests/xe_pci.c
+++ b/drivers/gpu/drm/xe/tests/xe_pci.c
@@ -364,13 +364,23 @@ int xe_pci_fake_device_init(struct xe_device *xe)
 	if (!ent->device)
 		return -ENODEV;
 
+	if (data->subplatform == XE_SUBPLATFORM_NONE) {
+		subplatform_desc = NULL;
+		goto done;
+	}
+
+	if (data->subplatform == XE_SUBPLATFORM_UNINITIALIZED) {
+		subplatform_desc = desc->subplatforms;
+		goto done;
+	}
+
 	for (subplatform_desc = desc->subplatforms;
 	     subplatform_desc && subplatform_desc->subplatform;
 	     subplatform_desc++)
 		if (subplatform_desc->subplatform == data->subplatform)
 			break;
 
-	if (data->subplatform != XE_SUBPLATFORM_NONE && !subplatform_desc)
+	if (!subplatform_desc || !subplatform_desc->subplatform)
 		return -ENODEV;
 
 done:
-- 
2.47.1


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

* ✓ CI.KUnit: success for drm/xe/tests: Fix subplatform selection
  2026-09-05 20:01 [PATCH 0/2] drm/xe/tests: Fix subplatform selection Michal Wajdeczko
  2026-09-05 20:01 ` [PATCH 1/2] drm/xe/tests: Fix default " Michal Wajdeczko
  2026-09-05 20:01 ` [PATCH 2/2] drm/xe/tests: Fix " Michal Wajdeczko
@ 2026-09-05 20:10 ` Patchwork
  2026-09-05 20:53 ` ✓ Xe.CI.BAT: " Patchwork
  2026-09-05 21:52 ` ✓ Xe.CI.FULL: " Patchwork
  4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-09-05 20:10 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

== Series Details ==

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/tests: Fix subplatform selection
  2026-09-05 20:01 [PATCH 0/2] drm/xe/tests: Fix subplatform selection Michal Wajdeczko
                   ` (2 preceding siblings ...)
  2026-09-05 20:10 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-09-05 20:53 ` Patchwork
  2026-09-05 21:52 ` ✓ Xe.CI.FULL: " Patchwork
  4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-09-05 20:53 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/tests: Fix subplatform selection
URL   : https://patchwork.freedesktop.org/series/173450/
State : success

== Summary ==

CI Bug Log - changes from xe-5694-313da1cc22491f07075c7ae36372343aa235d11e_BAT -> xe-pw-173450v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (14 -> 12)
------------------------------

  Missing    (2): bat-nvls-2 bat-ptl-vm 


Changes
-------

  No changes found


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

  * Linux: xe-5694-313da1cc22491f07075c7ae36372343aa235d11e -> xe-pw-173450v1

  IGT_9084: 9084
  xe-5694-313da1cc22491f07075c7ae36372343aa235d11e: 313da1cc22491f07075c7ae36372343aa235d11e
  xe-pw-173450v1: 173450v1

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/xe/tests: Fix subplatform selection
  2026-09-05 20:01 [PATCH 0/2] drm/xe/tests: Fix subplatform selection Michal Wajdeczko
                   ` (3 preceding siblings ...)
  2026-09-05 20:53 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-09-05 21:52 ` Patchwork
  4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-09-05 21:52 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/tests: Fix subplatform selection
URL   : https://patchwork.freedesktop.org/series/173450/
State : success

== Summary ==

CI Bug Log - changes from xe-5694-313da1cc22491f07075c7ae36372343aa235d11e_FULL -> xe-pw-173450v1_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-173450v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-read:
    - shard-lnl:          NOTRUN -> [SKIP][1] ([Intel XE#1125] / [Intel XE#7312])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@intel_hwmon@hwmon-read.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2:
    - shard-bmg:          [PASS][2] -> [INCOMPLETE][3] ([Intel XE#8174]) +1 other test incomplete
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html

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

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#1124]) +2 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

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

  * igt@kms_bw@connected-linear-tiling-1-displays-target-2160x1440p:
    - shard-lnl:          [PASS][7] -> [SKIP][8] ([Intel XE#9125]) +11 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_bw@connected-linear-tiling-1-displays-target-2160x1440p.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_bw@connected-linear-tiling-1-displays-target-2160x1440p.html

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

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

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#3432])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/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][12] ([Intel XE#2887]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_chamelium_audio@dp-audio-after-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#2252])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-2/igt@kms_chamelium_audio@dp-audio-after-suspend.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#306] / [Intel XE#7358])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_chamelium_color@ctm-red-to-blue.html

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

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#373]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_chamelium_frames@hdmi-frame-dump.html

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

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

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#1424]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html

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

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

  * igt@kms_dp_aux_dev@basic:
    - shard-lnl:          [PASS][22] -> [SKIP][23] ([Intel XE#3009])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_dp_aux_dev@basic.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_dp_aux_dev@basic.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#4422] / [Intel XE#7442])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@psr:
    - shard-lnl:          [PASS][25] -> [SKIP][26] ([Intel XE#8680])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_fbcon_fbt@psr.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_fbcon_fbt@psr.html

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

  * igt@kms_feature_discovery@psr1:
    - shard-lnl:          [PASS][28] -> [SKIP][29] ([Intel XE#1135])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_feature_discovery@psr1.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#1421]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@bo-too-big-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#2482]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_flip@bo-too-big-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [PASS][32] -> [FAIL][33] ([Intel XE#301])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip@flip-vs-panning-interruptible:
    - shard-lnl:          [PASS][34] -> [SKIP][35] ([Intel XE#2482]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_flip@flip-vs-panning-interruptible.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_flip@flip-vs-panning-interruptible.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling:
    - shard-lnl:          [PASS][37] -> [SKIP][38] ([Intel XE#1745] / [Intel XE#9144])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#4141])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

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

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#2548] / [Intel XE#7779]) +12 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-lnl:          [PASS][44] -> [SKIP][45] ([Intel XE#7779]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2313])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#7779]) +16 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-lnl:          [PASS][50] -> [SKIP][51] ([Intel XE#2548] / [Intel XE#7779]) +5 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

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

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

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [PASS][54] -> [SKIP][55] ([Intel XE#1503])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-10/igt@kms_hdr@invalid-hdr.html

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

  * igt@kms_invalid_mode@bad-htotal:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#2568])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_invalid_mode@bad-htotal.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-lnl:          [PASS][58] -> [SKIP][59] ([Intel XE#2568])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_invalid_mode@clock-too-high.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#6900] / [Intel XE#7362])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_joiner@basic-force-ultra-joiner.html

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

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#9125]) +22 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html

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

  * igt@kms_plane@plane-position-hole:
    - shard-lnl:          [PASS][64] -> [SKIP][65] ([Intel XE#9128])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_plane@plane-position-hole.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_plane@plane-position-hole.html

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

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

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

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
    - shard-lnl:          [PASS][69] -> [SKIP][70] ([Intel XE#2763] / [Intel XE#6886]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
    - shard-lnl:          [PASS][71] -> [SKIP][72] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#2763] / [Intel XE#6886]) +5 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html

  * igt@kms_pm_backlight@fade:
    - shard-lnl:          [PASS][74] -> [SKIP][75] ([Intel XE#870])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_pm_backlight@fade.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#7794])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#4608])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#4608] / [Intel XE#7304])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#2893] / [Intel XE#7304])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#1489])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-lnl:          [PASS][81] -> [SKIP][82] ([Intel XE#1489])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html

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

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

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#2850] / [Intel XE#929])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@fbc-psr2-primary-page-flip:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#7345])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-page-flip.html

  * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html

  * igt@kms_psr@psr2-basic:
    - shard-lnl:          [PASS][88] -> [SKIP][89] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_psr@psr2-basic.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_psr@psr2-basic.html

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

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

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

  * igt@xe_exec_fault_mode@atomic-many:
    - shard-bmg:          [PASS][93] -> [FAIL][94] ([Intel XE#8578])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-bmg-6/igt@xe_exec_fault_mode@atomic-many.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-5/igt@xe_exec_fault_mode@atomic-many.html

  * igt@xe_exec_fault_mode@once-multi-queue:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#8374]) +1 other test skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue.html

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

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

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd-smem:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#8364]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd-smem.html

  * igt@xe_exec_reset@multi-queue-close-execqueues:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#8369])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@xe_exec_reset@multi-queue-close-execqueues.html

  * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
    - shard-lnl:          [PASS][100] -> [FAIL][101] ([Intel XE#9096])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-5/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html

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

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

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#6964]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html

  * igt@xe_page_reclaim@prl-invalidate-full:
    - shard-lnl:          NOTRUN -> [SKIP][106] ([Intel XE#7793]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@xe_page_reclaim@prl-invalidate-full.html

  * igt@xe_pat@l2-flush-opt-svm-pat-restrict:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#7590] / [Intel XE#7772])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-2/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#1948])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-2/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@xe_pm@s3-vm-bind-unbind-all.html

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

  * igt@xe_prefetch_fault@prefetch-fault:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#7599])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-1/igt@xe_prefetch_fault@prefetch-fault.html

  * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#4733] / [Intel XE#7417])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-1/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#944])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_sriov_admin@default-sched-attributes-vfs-disabled:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#7174])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-1/igt@xe_sriov_admin@default-sched-attributes-vfs-disabled.html

  
#### Possible fixes ####

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][115] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][116] +1 other test pass
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_color@deep-color:
    - shard-lnl:          [SKIP][117] ([Intel XE#1511] / [Intel XE#3297]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_color@deep-color.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_color@deep-color.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - shard-lnl:          [SKIP][119] ([Intel XE#2482]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_flip@basic-flip-vs-modeset.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
    - shard-lnl:          [SKIP][121] ([Intel XE#1745] / [Intel XE#9144]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
    - shard-lnl:          [SKIP][123] ([Intel XE#7779]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
    - shard-lnl:          [SKIP][125] ([Intel XE#2548] / [Intel XE#7779]) -> [PASS][126] +3 other tests pass
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_lease@lease-unleased-crtc:
    - shard-lnl:          [SKIP][127] ([Intel XE#9125]) -> [PASS][128] +9 other tests pass
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_lease@lease-unleased-crtc.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_lease@lease-unleased-crtc.html

  * igt@kms_plane@planar-pixel-format-settings:
    - shard-lnl:          [SKIP][129] ([Intel XE#7780] / [Intel XE#9125]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_plane@planar-pixel-format-settings.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_plane@planar-pixel-format-settings.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-lnl:          [SKIP][131] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][132] +3 other tests pass
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/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:          [SKIP][133] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [PASS][134] +3 other tests pass
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html

  * igt@kms_pm_rpm@drm-resources-equal:
    - shard-lnl:          [SKIP][135] ([Intel XE#7106]) -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_pm_rpm@drm-resources-equal.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_pm_rpm@drm-resources-equal.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-lnl:          [SKIP][137] ([Intel XE#1489]) -> [PASS][138]
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-lnl:          [SKIP][139] ([Intel XE#2850] / [Intel XE#929]) -> [PASS][140] +1 other test pass
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_psr@psr-sprite-plane-onoff.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][141] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][142]
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html

  
#### Warnings ####

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-lnl:          [SKIP][143] ([Intel XE#9125]) -> [SKIP][144] ([Intel XE#3279])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-lnl:          [SKIP][145] ([Intel XE#1407]) -> [SKIP][146] ([Intel XE#9125])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [SKIP][147] ([Intel XE#9125]) -> [SKIP][148] ([Intel XE#1407]) +1 other test skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-lnl:          [SKIP][149] ([Intel XE#1124]) -> [SKIP][150] ([Intel XE#9125]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-lnl:          [SKIP][151] ([Intel XE#1477] / [Intel XE#7361]) -> [SKIP][152] ([Intel XE#9125])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-lnl:          [SKIP][153] ([Intel XE#9125]) -> [SKIP][154] ([Intel XE#1124]) +2 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
    - shard-lnl:          [SKIP][155] ([Intel XE#9125]) -> [SKIP][156] ([Intel XE#7679])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          [SKIP][157] ([Intel XE#9125]) -> [SKIP][158] ([Intel XE#2887]) +3 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          [SKIP][159] ([Intel XE#2887]) -> [SKIP][160] ([Intel XE#9125]) +2 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-lnl:          [SKIP][161] ([Intel XE#2669] / [Intel XE#7389]) -> [SKIP][162] ([Intel XE#9125])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
    - shard-lnl:          [SKIP][163] ([Intel XE#9125]) -> [SKIP][164] ([Intel XE#3432])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
    - shard-lnl:          [SKIP][165] ([Intel XE#3432]) -> [SKIP][166] ([Intel XE#9125]) +1 other test skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-lnl:          [SKIP][167] ([Intel XE#4417] / [Intel XE#5447]) -> [SKIP][168] ([Intel XE#9125])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_cdclk@mode-transition.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_cdclk@mode-transition.html

  * igt@kms_content_protection@srm:
    - shard-lnl:          [SKIP][169] ([Intel XE#9125]) -> [SKIP][170] ([Intel XE#7642])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_content_protection@srm.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@suspend-resume:
    - shard-lnl:          [SKIP][171] ([Intel XE#7642]) -> [SKIP][172] ([Intel XE#9125]) +1 other test skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_content_protection@suspend-resume.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_content_protection@suspend-resume.html

  * igt@kms_cursor_crc@cursor-rapid-movement-256x85:
    - shard-lnl:          [SKIP][173] ([Intel XE#9125]) -> [SKIP][174] ([Intel XE#1424])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-lnl:          [SKIP][175] ([Intel XE#1424]) -> [SKIP][176] ([Intel XE#9125]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-lnl:          [SKIP][177] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][178] ([Intel XE#9125]) +1 other test skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-lnl:          [SKIP][179] ([Intel XE#323] / [Intel XE#6035]) -> [SKIP][180] ([Intel XE#9125])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-lnl:          [SKIP][181] ([Intel XE#9125]) -> [SKIP][182] ([Intel XE#323] / [Intel XE#6035])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-lnl:          [SKIP][183] ([Intel XE#9125]) -> [SKIP][184] ([Intel XE#4354] / [Intel XE#7386])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_dp_link_training@uhbr-mst.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
    - shard-lnl:          [SKIP][185] ([Intel XE#8265]) -> [SKIP][186] ([Intel XE#9125])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
    - shard-lnl:          [SKIP][187] ([Intel XE#9125]) -> [SKIP][188] ([Intel XE#8265])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-lnl:          [ABORT][189] ([Intel XE#9154]) -> [FAIL][190] ([Intel XE#7949])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-3/igt@kms_fbcon_fbt@psr-suspend.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
    - shard-lnl:          [SKIP][191] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) -> [SKIP][192] ([Intel XE#1745] / [Intel XE#9144])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-lnl:          [SKIP][193] ([Intel XE#7779]) -> [SKIP][194] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-shrfb-plflip-blt:
    - shard-lnl:          [SKIP][195] ([Intel XE#6312]) -> [SKIP][196] ([Intel XE#7779]) +6 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-shrfb-plflip-blt.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          [SKIP][197] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][198] ([Intel XE#2548] / [Intel XE#7779]) +12 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-lnl:          [SKIP][199] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][200] ([Intel XE#656] / [Intel XE#7905]) +11 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
    - shard-lnl:          [SKIP][201] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][202] ([Intel XE#2548] / [Intel XE#7779]) +4 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-blt:
    - shard-lnl:          [SKIP][203] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][204] ([Intel XE#7779]) +1 other test skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-blt.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy:
    - shard-lnl:          [SKIP][205] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][206] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-move:
    - shard-lnl:          [SKIP][207] ([Intel XE#7779]) -> [SKIP][208] ([Intel XE#6312])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-move.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-lnl:          [SKIP][209] ([Intel XE#7905]) -> [SKIP][210] ([Intel XE#7779]) +15 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff:
    - shard-lnl:          [SKIP][211] ([Intel XE#7779]) -> [SKIP][212] ([Intel XE#7905]) +10 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-msflip-blt:
    - shard-lnl:          [SKIP][213] ([Intel XE#7779]) -> [SKIP][214] ([Intel XE#7865]) +8 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-msflip-blt.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render:
    - shard-lnl:          [SKIP][215] ([Intel XE#7061]) -> [SKIP][216] ([Intel XE#7779])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt:
    - shard-lnl:          [SKIP][217] ([Intel XE#7865]) -> [SKIP][218] ([Intel XE#7779]) +5 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt:
    - shard-lnl:          [SKIP][219] ([Intel XE#7779]) -> [SKIP][220] ([Intel XE#7061]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][221] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][222] ([Intel XE#3544])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-lnl:          [SKIP][223] ([Intel XE#4596] / [Intel XE#5854]) -> [SKIP][224] ([Intel XE#9125])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_plane_multiple@2x-tiling-none.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
    - shard-lnl:          [SKIP][225] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][226] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +1 other test skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-lnl:          [SKIP][227] ([Intel XE#1489]) -> [SKIP][228] ([Intel XE#2893] / [Intel XE#7304])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
    - shard-lnl:          [SKIP][229] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][230] ([Intel XE#1489])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-lnl:          [SKIP][231] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [SKIP][232] ([Intel XE#1489])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-lnl:          [SKIP][233] ([Intel XE#1489]) -> [SKIP][234] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-pr-dpms:
    - shard-lnl:          [SKIP][235] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][236] ([Intel XE#1406])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_psr@fbc-pr-dpms.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_psr@fbc-pr-dpms.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-lnl:          [SKIP][237] ([Intel XE#1406] / [Intel XE#7345]) -> [SKIP][238] ([Intel XE#2850] / [Intel XE#929])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-blt.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@pr-sprite-blt:
    - shard-lnl:          [SKIP][239] ([Intel XE#1406]) -> [SKIP][240] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_psr@pr-sprite-blt.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_psr@pr-sprite-blt.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-lnl:          [SKIP][241] ([Intel XE#9125]) -> [SKIP][242] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][243] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][244] ([Intel XE#1729] / [Intel XE#7424])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@lobf-dc3co:
    - shard-lnl:          [SKIP][245] ([Intel XE#8397]) -> [SKIP][246] ([Intel XE#9125])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-5/igt@kms_vrr@lobf-dc3co.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@kms_vrr@lobf-dc3co.html

  * igt@xe_exec_reset@gt-reset-fault-injection:
    - shard-lnl:          [ABORT][247] ([Intel XE#9140] / [Intel XE#9145]) -> [DMESG-WARN][248] ([Intel XE#9130])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5694-313da1cc22491f07075c7ae36372343aa235d11e/shard-lnl-1/igt@xe_exec_reset@gt-reset-fault-injection.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173450v1/shard-lnl-6/igt@xe_exec_reset@gt-reset-fault-injection.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [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#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [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#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [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#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [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#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5447
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
  [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#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [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#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [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#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312
  [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
  [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#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [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#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
  [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
  [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#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408
  [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#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [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#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687
  [Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772
  [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#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#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8174
  [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#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
  [Intel XE#8578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8578
  [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#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#9130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9130
  [Intel XE#9140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9140
  [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#9154]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9154
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-5694-313da1cc22491f07075c7ae36372343aa235d11e -> xe-pw-173450v1

  IGT_9084: 9084
  xe-5694-313da1cc22491f07075c7ae36372343aa235d11e: 313da1cc22491f07075c7ae36372343aa235d11e
  xe-pw-173450v1: 173450v1

== Logs ==

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

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

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

* Re: [PATCH 1/2] drm/xe/tests: Fix default subplatform selection
  2026-09-05 20:01 ` [PATCH 1/2] drm/xe/tests: Fix default " Michal Wajdeczko
@ 2026-09-09 19:04   ` Gustavo Sousa
  2026-09-09 19:22     ` Michal Wajdeczko
  0 siblings, 1 reply; 10+ messages in thread
From: Gustavo Sousa @ 2026-09-09 19:04 UTC (permalink / raw)
  To: Michal Wajdeczko, intel-xe; +Cc: Michal Wajdeczko

Michal Wajdeczko <michal.wajdeczko@intel.com> writes:

> If a test does not specify details about the fake device it wants
> to create, our helper selects the device descriptor from the first
> entry from the pciidlist and uses NULL for the subplatform descriptor.
> While this works fine today, as the first device is a TGL which does
> not have any subplatforms, it will be broken if we reorder pciidlist.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> Cc: Gustavo Sousa <gustavo.sousa@intel.com>
> ---
>  drivers/gpu/drm/xe/tests/xe_pci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
> index bb0393475524..a82cab7a2b86 100644
> --- a/drivers/gpu/drm/xe/tests/xe_pci.c
> +++ b/drivers/gpu/drm/xe/tests/xe_pci.c
> @@ -351,7 +351,7 @@ int xe_pci_fake_device_init(struct xe_device *xe)
>  
>  	if (!data) {
>  		desc = (const void *)ent->driver_data;

Should we add a comment here that subplatform_desc will be either NULL
or the first declared subplatform?

In any case,

Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

> -		subplatform_desc = NULL;
> +		subplatform_desc = desc->subplatforms;
>  		goto done;
>  	}
>  
> -- 
> 2.47.1

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

* Re: [PATCH 2/2] drm/xe/tests: Fix subplatform selection
  2026-09-05 20:01 ` [PATCH 2/2] drm/xe/tests: Fix " Michal Wajdeczko
@ 2026-09-09 19:13   ` Gustavo Sousa
  2026-09-09 19:35     ` Michal Wajdeczko
  0 siblings, 1 reply; 10+ messages in thread
From: Gustavo Sousa @ 2026-09-09 19:13 UTC (permalink / raw)
  To: Michal Wajdeczko, intel-xe; +Cc: Michal Wajdeczko

Michal Wajdeczko <michal.wajdeczko@intel.com> writes:

> If a test does not specify subplatform details about the fake device
> it wants to create, our helper may select a sentinel of the subplatform
> descriptors list instead of the first available subplatform.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> Cc: Gustavo Sousa <gustavo.sousa@intel.com>
> ---
>  drivers/gpu/drm/xe/tests/xe_pci.c | 12 +++++++++++-
>  1 file changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
> index a82cab7a2b86..8ab4270cf5d8 100644
> --- a/drivers/gpu/drm/xe/tests/xe_pci.c
> +++ b/drivers/gpu/drm/xe/tests/xe_pci.c
> @@ -364,13 +364,23 @@ int xe_pci_fake_device_init(struct xe_device *xe)
>  	if (!ent->device)
>  		return -ENODEV;
>  
> +	if (data->subplatform == XE_SUBPLATFORM_NONE) {
> +		subplatform_desc = NULL;
> +		goto done;
> +	}
> +
> +	if (data->subplatform == XE_SUBPLATFORM_UNINITIALIZED) {

I guess here as well, subplatform_desc will be either NULL or the first
one, but if we add a comment in patch #1, I think we don't need to
repeat ourselves.

Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

On a side note, orthogonal to this patch: I wonder if it is okay to match
no subplatform when the device descriptor defines a list of
subplatforms.  The current behavior is that find_subplatform() returns
NULL and doesn't complain.

--
Gustavo Sousa

> +		subplatform_desc = desc->subplatforms;
> +		goto done;
> +	}
> +
>  	for (subplatform_desc = desc->subplatforms;
>  	     subplatform_desc && subplatform_desc->subplatform;
>  	     subplatform_desc++)
>  		if (subplatform_desc->subplatform == data->subplatform)
>  			break;
>  
> -	if (data->subplatform != XE_SUBPLATFORM_NONE && !subplatform_desc)
> +	if (!subplatform_desc || !subplatform_desc->subplatform)
>  		return -ENODEV;
>  
>  done:
> -- 
> 2.47.1

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

* Re: [PATCH 1/2] drm/xe/tests: Fix default subplatform selection
  2026-09-09 19:04   ` Gustavo Sousa
@ 2026-09-09 19:22     ` Michal Wajdeczko
  0 siblings, 0 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2026-09-09 19:22 UTC (permalink / raw)
  To: Gustavo Sousa, intel-xe



On 9/9/2026 9:04 PM, Gustavo Sousa wrote:
> Michal Wajdeczko <michal.wajdeczko@intel.com> writes:
> 
>> If a test does not specify details about the fake device it wants
>> to create, our helper selects the device descriptor from the first
>> entry from the pciidlist and uses NULL for the subplatform descriptor.
>> While this works fine today, as the first device is a TGL which does
>> not have any subplatforms, it will be broken if we reorder pciidlist.
>>
>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> ---
>> Cc: Gustavo Sousa <gustavo.sousa@intel.com>
>> ---
>>  drivers/gpu/drm/xe/tests/xe_pci.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
>> index bb0393475524..a82cab7a2b86 100644
>> --- a/drivers/gpu/drm/xe/tests/xe_pci.c
>> +++ b/drivers/gpu/drm/xe/tests/xe_pci.c
>> @@ -351,7 +351,7 @@ int xe_pci_fake_device_init(struct xe_device *xe)
>>  
>>  	if (!data) {
>>  		desc = (const void *)ent->driver_data;
> 
> Should we add a comment here that subplatform_desc will be either NULL
> or the first declared subplatform?

hmm, but from the pure C language POV the "desc->subplatforms" will be the
first declared subplatform or NULL, and we shouldn't document obvious code

likewise, we also don't have a comment that "desc" is the first platform
from our pciid list ..

> 
> In any case,
> 
> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

thanks!

> 
>> -		subplatform_desc = NULL;
>> +		subplatform_desc = desc->subplatforms;
>>  		goto done;
>>  	}
>>  
>> -- 
>> 2.47.1


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

* Re: [PATCH 2/2] drm/xe/tests: Fix subplatform selection
  2026-09-09 19:13   ` Gustavo Sousa
@ 2026-09-09 19:35     ` Michal Wajdeczko
  0 siblings, 0 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2026-09-09 19:35 UTC (permalink / raw)
  To: Gustavo Sousa, intel-xe



On 9/9/2026 9:13 PM, Gustavo Sousa wrote:
> Michal Wajdeczko <michal.wajdeczko@intel.com> writes:
> 
>> If a test does not specify subplatform details about the fake device
>> it wants to create, our helper may select a sentinel of the subplatform
>> descriptors list instead of the first available subplatform.
>>
>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> ---
>> Cc: Gustavo Sousa <gustavo.sousa@intel.com>
>> ---
>>  drivers/gpu/drm/xe/tests/xe_pci.c | 12 +++++++++++-
>>  1 file changed, 11 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/tests/xe_pci.c b/drivers/gpu/drm/xe/tests/xe_pci.c
>> index a82cab7a2b86..8ab4270cf5d8 100644
>> --- a/drivers/gpu/drm/xe/tests/xe_pci.c
>> +++ b/drivers/gpu/drm/xe/tests/xe_pci.c
>> @@ -364,13 +364,23 @@ int xe_pci_fake_device_init(struct xe_device *xe)
>>  	if (!ent->device)
>>  		return -ENODEV;
>>  
>> +	if (data->subplatform == XE_SUBPLATFORM_NONE) {
>> +		subplatform_desc = NULL;
>> +		goto done;
>> +	}
>> +
>> +	if (data->subplatform == XE_SUBPLATFORM_UNINITIALIZED) {
> 
> I guess here as well, subplatform_desc will be either NULL or the first
> one, but if we add a comment in patch #1, I think we don't need to
> repeat ourselves.

IMO code is not so complex that it would require a comment 

> 
> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

thanks!

> 
> On a side note, orthogonal to this patch: I wonder if it is okay to match
> no subplatform when the device descriptor defines a list of
> subplatforms.  The current behavior is that find_subplatform() returns
> NULL and doesn't complain.

it was complaining in the past, but that was removed by

commit 64c9ae213d2ab1cce824841518e9539f597ee91e

    drm/xe/kunit: Handle fake device creation for all platform/subplatform cases

to support special case of ADLP (but maybe ADLP descriptor should be fixed instead? 

> 
> --
> Gustavo Sousa
> 
>> +		subplatform_desc = desc->subplatforms;
>> +		goto done;
>> +	}
>> +
>>  	for (subplatform_desc = desc->subplatforms;
>>  	     subplatform_desc && subplatform_desc->subplatform;
>>  	     subplatform_desc++)
>>  		if (subplatform_desc->subplatform == data->subplatform)
>>  			break;
>>  
>> -	if (data->subplatform != XE_SUBPLATFORM_NONE && !subplatform_desc)
>> +	if (!subplatform_desc || !subplatform_desc->subplatform)
>>  		return -ENODEV;
>>  
>>  done:
>> -- 
>> 2.47.1


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

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

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-05 20:01 [PATCH 0/2] drm/xe/tests: Fix subplatform selection Michal Wajdeczko
2026-09-05 20:01 ` [PATCH 1/2] drm/xe/tests: Fix default " Michal Wajdeczko
2026-09-09 19:04   ` Gustavo Sousa
2026-09-09 19:22     ` Michal Wajdeczko
2026-09-05 20:01 ` [PATCH 2/2] drm/xe/tests: Fix " Michal Wajdeczko
2026-09-09 19:13   ` Gustavo Sousa
2026-09-09 19:35     ` Michal Wajdeczko
2026-09-05 20:10 ` ✓ CI.KUnit: success for " Patchwork
2026-09-05 20:53 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-05 21:52 ` ✓ Xe.CI.FULL: " Patchwork

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