* [PATCH v4 1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const
@ 2025-08-27 18:09 Harish Chegondi
2025-08-27 18:09 ` [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG Harish Chegondi
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Harish Chegondi @ 2025-08-27 18:09 UTC (permalink / raw)
To: intel-xe; +Cc: Harish Chegondi, Matt Atwood
Make gt, input parameter to xe_gt_mcr_get_dss_steering(), a
constant. This would allow xe_gt_mcr_get_dss_steering() to
be called from functions that have gt as const to struct xe_gt.
v4: Rebase
v2: Rebase
Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
---
drivers/gpu/drm/xe/xe_gt_mcr.c | 2 +-
drivers/gpu/drm/xe/xe_gt_mcr.h | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_mcr.c b/drivers/gpu/drm/xe/xe_gt_mcr.c
index 683ac021a06d..8fb1cae91724 100644
--- a/drivers/gpu/drm/xe/xe_gt_mcr.c
+++ b/drivers/gpu/drm/xe/xe_gt_mcr.c
@@ -362,7 +362,7 @@ static unsigned int dss_per_group(struct xe_gt *gt)
* @group: pointer to storage for steering group ID
* @instance: pointer to storage for steering instance ID
*/
-void xe_gt_mcr_get_dss_steering(struct xe_gt *gt, unsigned int dss, u16 *group, u16 *instance)
+void xe_gt_mcr_get_dss_steering(const struct xe_gt *gt, unsigned int dss, u16 *group, u16 *instance)
{
xe_gt_assert(gt, dss < XE_MAX_DSS_FUSE_BITS);
diff --git a/drivers/gpu/drm/xe/xe_gt_mcr.h b/drivers/gpu/drm/xe/xe_gt_mcr.h
index bc06520befab..283a1c9770e2 100644
--- a/drivers/gpu/drm/xe/xe_gt_mcr.h
+++ b/drivers/gpu/drm/xe/xe_gt_mcr.h
@@ -31,7 +31,8 @@ bool xe_gt_mcr_get_nonterminated_steering(struct xe_gt *gt,
u8 *group, u8 *instance);
void xe_gt_mcr_steering_dump(struct xe_gt *gt, struct drm_printer *p);
-void xe_gt_mcr_get_dss_steering(struct xe_gt *gt, unsigned int dss, u16 *group, u16 *instance);
+void xe_gt_mcr_get_dss_steering(const struct xe_gt *gt,
+ unsigned int dss, u16 *group, u16 *instance);
u32 xe_gt_mcr_steering_info_to_dss_id(struct xe_gt *gt, u16 group, u16 instance);
/*
--
2.48.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG
2025-08-27 18:09 [PATCH v4 1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const Harish Chegondi
@ 2025-08-27 18:09 ` Harish Chegondi
2025-08-27 20:11 ` Lucas De Marchi
2025-08-27 18:16 ` ✓ CI.KUnit: success for series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 9+ messages in thread
From: Harish Chegondi @ 2025-08-27 18:09 UTC (permalink / raw)
To: intel-xe; +Cc: Harish Chegondi, Matt Atwood
Add Wa_18041344222 for Xe2_HPG that requires disabling
the perf mode for subslice count for eustall sampling
when the enabled slices are discontiguous.
v4: Rebase
v3: Skip the workaround for SRIOV VF
v2: Add Bspec references (Matt A)
Rebase
Bspec: 79483, 56024
Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
---
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 1 +
drivers/gpu/drm/xe/xe_gt_topology.c | 17 +++++++++++++++++
drivers/gpu/drm/xe/xe_gt_topology.h | 1 +
drivers/gpu/drm/xe/xe_rtp.c | 6 ++++++
drivers/gpu/drm/xe/xe_rtp.h | 2 ++
drivers/gpu/drm/xe/xe_wa.c | 7 +++++++
6 files changed, 34 insertions(+)
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index f96b2e2b3064..06cb6b02ec64 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -522,6 +522,7 @@
#define TDL_CHICKEN XE_REG_MCR(0xe5f4, XE_REG_OPTION_MASKED)
#define QID_WAIT_FOR_THREAD_NOT_RUN_DISABLE REG_BIT(12)
+#define EUSTALL_PERF_SAMPLING_DISABLE REG_BIT(5)
#define LSC_CHICKEN_BIT_0 XE_REG_MCR(0xe7c8)
#define DISABLE_D8_D16_COASLESCE REG_BIT(30)
diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
index a0baa560dd71..0ed7dc9044a5 100644
--- a/drivers/gpu/drm/xe/xe_gt_topology.c
+++ b/drivers/gpu/drm/xe/xe_gt_topology.c
@@ -12,6 +12,7 @@
#include "regs/xe_gt_regs.h"
#include "xe_assert.h"
#include "xe_gt.h"
+#include "xe_gt_mcr.h"
#include "xe_gt_printk.h"
#include "xe_mmio.h"
#include "xe_wa.h"
@@ -328,3 +329,19 @@ bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss)
{
return test_bit(dss, gt->fuse_topo.c_dss_mask);
}
+
+bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt)
+{
+ unsigned int xecore;
+ int last_group = -1;
+ u16 group, instance;
+
+ for_each_dss_steering(xecore, gt, group, instance) {
+ if (last_group != group) {
+ if (group - last_group > 1)
+ return true;
+ last_group = group;
+ }
+ }
+ return false;
+}
diff --git a/drivers/gpu/drm/xe/xe_gt_topology.h b/drivers/gpu/drm/xe/xe_gt_topology.h
index c8140704ad4c..fd08b382e259 100644
--- a/drivers/gpu/drm/xe/xe_gt_topology.h
+++ b/drivers/gpu/drm/xe/xe_gt_topology.h
@@ -47,4 +47,5 @@ xe_gt_topology_has_dss_in_quadrant(struct xe_gt *gt, int quad);
bool xe_gt_has_geometry_dss(struct xe_gt *gt, unsigned int dss);
bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss);
+bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt);
#endif /* _XE_GT_TOPOLOGY_H_ */
diff --git a/drivers/gpu/drm/xe/xe_rtp.c b/drivers/gpu/drm/xe/xe_rtp.c
index 47ea1521dc80..b5f430d59f80 100644
--- a/drivers/gpu/drm/xe/xe_rtp.c
+++ b/drivers/gpu/drm/xe/xe_rtp.c
@@ -370,3 +370,9 @@ bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
{
return xe_configfs_get_psmi_enabled(to_pci_dev(gt_to_xe(gt)->drm.dev));
}
+
+bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
+ const struct xe_hw_engine *hwe)
+{
+ return xe_gt_has_discontiguous_dss_groups(gt);
+}
diff --git a/drivers/gpu/drm/xe/xe_rtp.h b/drivers/gpu/drm/xe/xe_rtp.h
index 7951fefdbe04..d0adb29db7dd 100644
--- a/drivers/gpu/drm/xe/xe_rtp.h
+++ b/drivers/gpu/drm/xe/xe_rtp.h
@@ -480,4 +480,6 @@ bool xe_rtp_match_not_sriov_vf(const struct xe_gt *gt,
bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
const struct xe_hw_engine *hwe);
+bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
+ const struct xe_hw_engine *hwe);
#endif
diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
index 52c7df4c3afd..1d4efaca110e 100644
--- a/drivers/gpu/drm/xe/xe_wa.c
+++ b/drivers/gpu/drm/xe/xe_wa.c
@@ -612,6 +612,13 @@ static const struct xe_rtp_entry_sr engine_was[] = {
FUNC(xe_rtp_match_first_render_or_compute)),
XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, RES_CHK_SPR_DIS))
},
+ { XE_RTP_NAME("18041344222"),
+ XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2002),
+ FUNC(xe_rtp_match_first_render_or_compute),
+ FUNC(xe_rtp_match_not_sriov_vf),
+ FUNC(xe_rtp_match_gt_has_discontiguous_dss_groups)),
+ XE_RTP_ACTIONS(SET(TDL_CHICKEN, EUSTALL_PERF_SAMPLING_DISABLE))
+ },
/* Xe2_LPM */
--
2.48.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const
2025-08-27 18:09 [PATCH v4 1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const Harish Chegondi
2025-08-27 18:09 ` [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG Harish Chegondi
@ 2025-08-27 18:16 ` Patchwork
2025-08-27 18:54 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-27 20:05 ` ✗ Xe.CI.Full: failure " Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-08-27 18:16 UTC (permalink / raw)
To: Harish Chegondi; +Cc: intel-xe
== Series Details ==
Series: series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const
URL : https://patchwork.freedesktop.org/series/153577/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:15:07] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:15:12] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[18:15:40] Starting KUnit Kernel (1/1)...
[18:15:40] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:15:41] ================== guc_buf (11 subtests) ===================
[18:15:41] [PASSED] test_smallest
[18:15:41] [PASSED] test_largest
[18:15:41] [PASSED] test_granular
[18:15:41] [PASSED] test_unique
[18:15:41] [PASSED] test_overlap
[18:15:41] [PASSED] test_reusable
[18:15:41] [PASSED] test_too_big
[18:15:41] [PASSED] test_flush
[18:15:41] [PASSED] test_lookup
[18:15:41] [PASSED] test_data
[18:15:41] [PASSED] test_class
[18:15:41] ===================== [PASSED] guc_buf =====================
[18:15:41] =================== guc_dbm (7 subtests) ===================
[18:15:41] [PASSED] test_empty
[18:15:41] [PASSED] test_default
[18:15:41] ======================== test_size ========================
[18:15:41] [PASSED] 4
[18:15:41] [PASSED] 8
[18:15:41] [PASSED] 32
[18:15:41] [PASSED] 256
[18:15:41] ==================== [PASSED] test_size ====================
[18:15:41] ======================= test_reuse ========================
[18:15:41] [PASSED] 4
[18:15:41] [PASSED] 8
[18:15:41] [PASSED] 32
[18:15:41] [PASSED] 256
[18:15:41] =================== [PASSED] test_reuse ====================
[18:15:41] =================== test_range_overlap ====================
[18:15:41] [PASSED] 4
[18:15:41] [PASSED] 8
[18:15:41] [PASSED] 32
[18:15:41] [PASSED] 256
[18:15:41] =============== [PASSED] test_range_overlap ================
[18:15:41] =================== test_range_compact ====================
[18:15:41] [PASSED] 4
[18:15:41] [PASSED] 8
[18:15:41] [PASSED] 32
[18:15:41] [PASSED] 256
[18:15:41] =============== [PASSED] test_range_compact ================
[18:15:41] ==================== test_range_spare =====================
[18:15:41] [PASSED] 4
[18:15:41] [PASSED] 8
[18:15:41] [PASSED] 32
[18:15:41] [PASSED] 256
[18:15:41] ================ [PASSED] test_range_spare =================
[18:15:41] ===================== [PASSED] guc_dbm =====================
[18:15:41] =================== guc_idm (6 subtests) ===================
[18:15:41] [PASSED] bad_init
[18:15:41] [PASSED] no_init
[18:15:41] [PASSED] init_fini
[18:15:41] [PASSED] check_used
[18:15:41] [PASSED] check_quota
[18:15:41] [PASSED] check_all
[18:15:41] ===================== [PASSED] guc_idm =====================
[18:15:41] ================== no_relay (3 subtests) ===================
[18:15:41] [PASSED] xe_drops_guc2pf_if_not_ready
[18:15:41] [PASSED] xe_drops_guc2vf_if_not_ready
[18:15:41] [PASSED] xe_rejects_send_if_not_ready
[18:15:41] ==================== [PASSED] no_relay =====================
[18:15:41] ================== pf_relay (14 subtests) ==================
[18:15:41] [PASSED] pf_rejects_guc2pf_too_short
[18:15:41] [PASSED] pf_rejects_guc2pf_too_long
[18:15:41] [PASSED] pf_rejects_guc2pf_no_payload
[18:15:41] [PASSED] pf_fails_no_payload
[18:15:41] [PASSED] pf_fails_bad_origin
[18:15:41] [PASSED] pf_fails_bad_type
[18:15:41] [PASSED] pf_txn_reports_error
[18:15:41] [PASSED] pf_txn_sends_pf2guc
[18:15:41] [PASSED] pf_sends_pf2guc
[18:15:41] [SKIPPED] pf_loopback_nop
[18:15:41] [SKIPPED] pf_loopback_echo
[18:15:41] [SKIPPED] pf_loopback_fail
[18:15:41] [SKIPPED] pf_loopback_busy
[18:15:41] [SKIPPED] pf_loopback_retry
[18:15:41] ==================== [PASSED] pf_relay =====================
[18:15:41] ================== vf_relay (3 subtests) ===================
[18:15:41] [PASSED] vf_rejects_guc2vf_too_short
[18:15:41] [PASSED] vf_rejects_guc2vf_too_long
[18:15:41] [PASSED] vf_rejects_guc2vf_no_payload
[18:15:41] ==================== [PASSED] vf_relay =====================
[18:15:41] ===================== lmtt (1 subtest) =====================
[18:15:41] ======================== test_ops =========================
[18:15:41] [PASSED] 2-level
[18:15:41] [PASSED] multi-level
[18:15:41] ==================== [PASSED] test_ops =====================
[18:15:41] ====================== [PASSED] lmtt =======================
[18:15:41] ================= pf_service (11 subtests) =================
[18:15:41] [PASSED] pf_negotiate_any
[18:15:41] [PASSED] pf_negotiate_base_match
[18:15:41] [PASSED] pf_negotiate_base_newer
[18:15:41] [PASSED] pf_negotiate_base_next
[18:15:41] [SKIPPED] pf_negotiate_base_older
[18:15:41] [PASSED] pf_negotiate_base_prev
[18:15:41] [PASSED] pf_negotiate_latest_match
[18:15:41] [PASSED] pf_negotiate_latest_newer
[18:15:41] [PASSED] pf_negotiate_latest_next
[18:15:41] [SKIPPED] pf_negotiate_latest_older
[18:15:41] [SKIPPED] pf_negotiate_latest_prev
[18:15:41] =================== [PASSED] pf_service ====================
[18:15:41] =================== xe_mocs (2 subtests) ===================
[18:15:41] ================ xe_live_mocs_kernel_kunit ================
[18:15:41] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:15:41] ================ xe_live_mocs_reset_kunit =================
[18:15:41] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:15:41] ==================== [SKIPPED] xe_mocs =====================
[18:15:41] ================= xe_migrate (2 subtests) ==================
[18:15:41] ================= xe_migrate_sanity_kunit =================
[18:15:41] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:15:41] ================== xe_validate_ccs_kunit ==================
[18:15:41] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:15:41] =================== [SKIPPED] xe_migrate ===================
[18:15:41] ================== xe_dma_buf (1 subtest) ==================
[18:15:41] ==================== xe_dma_buf_kunit =====================
[18:15:41] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:15:41] =================== [SKIPPED] xe_dma_buf ===================
[18:15:41] ================= xe_bo_shrink (1 subtest) =================
[18:15:41] =================== xe_bo_shrink_kunit ====================
[18:15:41] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:15:41] ================== [SKIPPED] xe_bo_shrink ==================
[18:15:41] ==================== xe_bo (2 subtests) ====================
[18:15:41] ================== xe_ccs_migrate_kunit ===================
[18:15:41] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:15:41] ==================== xe_bo_evict_kunit ====================
[18:15:41] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:15:41] ===================== [SKIPPED] xe_bo ======================
[18:15:41] ==================== args (11 subtests) ====================
[18:15:41] [PASSED] count_args_test
[18:15:41] [PASSED] call_args_example
[18:15:41] [PASSED] call_args_test
[18:15:41] [PASSED] drop_first_arg_example
[18:15:41] [PASSED] drop_first_arg_test
[18:15:41] [PASSED] first_arg_example
[18:15:41] [PASSED] first_arg_test
[18:15:41] [PASSED] last_arg_example
[18:15:41] [PASSED] last_arg_test
[18:15:41] [PASSED] pick_arg_example
[18:15:41] [PASSED] sep_comma_example
[18:15:41] ====================== [PASSED] args =======================
[18:15:41] =================== xe_pci (3 subtests) ====================
[18:15:41] ==================== check_graphics_ip ====================
[18:15:41] [PASSED] 12.70 Xe_LPG
[18:15:41] [PASSED] 12.71 Xe_LPG
[18:15:41] [PASSED] 12.74 Xe_LPG+
[18:15:41] [PASSED] 20.01 Xe2_HPG
[18:15:41] [PASSED] 20.02 Xe2_HPG
[18:15:41] [PASSED] 20.04 Xe2_LPG
[18:15:41] [PASSED] 30.00 Xe3_LPG
[18:15:41] [PASSED] 30.01 Xe3_LPG
[18:15:41] [PASSED] 30.03 Xe3_LPG
[18:15:41] ================ [PASSED] check_graphics_ip ================
[18:15:41] ===================== check_media_ip ======================
[18:15:41] [PASSED] 13.00 Xe_LPM+
[18:15:41] [PASSED] 13.01 Xe2_HPM
[18:15:41] [PASSED] 20.00 Xe2_LPM
[18:15:41] [PASSED] 30.00 Xe3_LPM
[18:15:41] [PASSED] 30.02 Xe3_LPM
[18:15:41] ================= [PASSED] check_media_ip ==================
[18:15:41] ================= check_platform_gt_count =================
[18:15:41] [PASSED] 0x9A60 (TIGERLAKE)
[18:15:41] [PASSED] 0x9A68 (TIGERLAKE)
[18:15:41] [PASSED] 0x9A70 (TIGERLAKE)
[18:15:41] [PASSED] 0x9A40 (TIGERLAKE)
[18:15:41] [PASSED] 0x9A49 (TIGERLAKE)
[18:15:41] [PASSED] 0x9A59 (TIGERLAKE)
[18:15:41] [PASSED] 0x9A78 (TIGERLAKE)
[18:15:41] [PASSED] 0x9AC0 (TIGERLAKE)
[18:15:41] [PASSED] 0x9AC9 (TIGERLAKE)
[18:15:41] [PASSED] 0x9AD9 (TIGERLAKE)
[18:15:41] [PASSED] 0x9AF8 (TIGERLAKE)
[18:15:41] [PASSED] 0x4C80 (ROCKETLAKE)
[18:15:41] [PASSED] 0x4C8A (ROCKETLAKE)
[18:15:41] [PASSED] 0x4C8B (ROCKETLAKE)
[18:15:41] [PASSED] 0x4C8C (ROCKETLAKE)
[18:15:41] [PASSED] 0x4C90 (ROCKETLAKE)
[18:15:41] [PASSED] 0x4C9A (ROCKETLAKE)
[18:15:41] [PASSED] 0x4680 (ALDERLAKE_S)
[18:15:41] [PASSED] 0x4682 (ALDERLAKE_S)
[18:15:41] [PASSED] 0x4688 (ALDERLAKE_S)
[18:15:41] [PASSED] 0x468A (ALDERLAKE_S)
[18:15:41] [PASSED] 0x468B (ALDERLAKE_S)
[18:15:41] [PASSED] 0x4690 (ALDERLAKE_S)
[18:15:41] [PASSED] 0x4692 (ALDERLAKE_S)
[18:15:41] [PASSED] 0x4693 (ALDERLAKE_S)
[18:15:41] [PASSED] 0x46A0 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46A1 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46A2 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46A3 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46A6 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46A8 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46AA (ALDERLAKE_P)
[18:15:41] [PASSED] 0x462A (ALDERLAKE_P)
[18:15:41] [PASSED] 0x4626 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x4628 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46B0 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46B1 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46B2 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46B3 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46C0 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46C1 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46C2 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46C3 (ALDERLAKE_P)
[18:15:41] [PASSED] 0x46D0 (ALDERLAKE_N)
[18:15:41] [PASSED] 0x46D1 (ALDERLAKE_N)
[18:15:41] [PASSED] 0x46D2 (ALDERLAKE_N)
[18:15:41] [PASSED] 0x46D3 (ALDERLAKE_N)
[18:15:41] [PASSED] 0x46D4 (ALDERLAKE_N)
[18:15:41] [PASSED] 0xA721 (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA7A1 (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA7A9 (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA7AC (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA7AD (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA720 (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA7A0 (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA7A8 (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA7AA (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA7AB (ALDERLAKE_P)
[18:15:41] [PASSED] 0xA780 (ALDERLAKE_S)
[18:15:41] [PASSED] 0xA781 (ALDERLAKE_S)
[18:15:41] [PASSED] 0xA782 (ALDERLAKE_S)
[18:15:41] [PASSED] 0xA783 (ALDERLAKE_S)
[18:15:41] [PASSED] 0xA788 (ALDERLAKE_S)
[18:15:41] [PASSED] 0xA789 (ALDERLAKE_S)
[18:15:41] [PASSED] 0xA78A (ALDERLAKE_S)
[18:15:41] [PASSED] 0xA78B (ALDERLAKE_S)
[18:15:41] [PASSED] 0x4905 (DG1)
[18:15:41] [PASSED] 0x4906 (DG1)
[18:15:41] [PASSED] 0x4907 (DG1)
[18:15:41] [PASSED] 0x4908 (DG1)
[18:15:41] [PASSED] 0x4909 (DG1)
[18:15:41] [PASSED] 0x56C0 (DG2)
[18:15:41] [PASSED] 0x56C2 (DG2)
[18:15:41] [PASSED] 0x56C1 (DG2)
[18:15:41] [PASSED] 0x7D51 (METEORLAKE)
[18:15:41] [PASSED] 0x7DD1 (METEORLAKE)
[18:15:41] [PASSED] 0x7D41 (METEORLAKE)
[18:15:41] [PASSED] 0x7D67 (METEORLAKE)
[18:15:41] [PASSED] 0xB640 (METEORLAKE)
[18:15:41] [PASSED] 0x56A0 (DG2)
[18:15:41] [PASSED] 0x56A1 (DG2)
[18:15:41] [PASSED] 0x56A2 (DG2)
[18:15:41] [PASSED] 0x56BE (DG2)
[18:15:41] [PASSED] 0x56BF (DG2)
[18:15:41] [PASSED] 0x5690 (DG2)
[18:15:41] [PASSED] 0x5691 (DG2)
[18:15:41] [PASSED] 0x5692 (DG2)
[18:15:41] [PASSED] 0x56A5 (DG2)
[18:15:41] [PASSED] 0x56A6 (DG2)
[18:15:41] [PASSED] 0x56B0 (DG2)
[18:15:41] [PASSED] 0x56B1 (DG2)
[18:15:41] [PASSED] 0x56BA (DG2)
[18:15:41] [PASSED] 0x56BB (DG2)
[18:15:41] [PASSED] 0x56BC (DG2)
[18:15:41] [PASSED] 0x56BD (DG2)
[18:15:41] [PASSED] 0x5693 (DG2)
[18:15:41] [PASSED] 0x5694 (DG2)
[18:15:41] [PASSED] 0x5695 (DG2)
[18:15:41] [PASSED] 0x56A3 (DG2)
[18:15:41] [PASSED] 0x56A4 (DG2)
[18:15:41] [PASSED] 0x56B2 (DG2)
[18:15:41] [PASSED] 0x56B3 (DG2)
[18:15:41] [PASSED] 0x5696 (DG2)
[18:15:41] [PASSED] 0x5697 (DG2)
[18:15:41] [PASSED] 0xB69 (PVC)
[18:15:41] [PASSED] 0xB6E (PVC)
[18:15:41] [PASSED] 0xBD4 (PVC)
[18:15:41] [PASSED] 0xBD5 (PVC)
[18:15:41] [PASSED] 0xBD6 (PVC)
[18:15:41] [PASSED] 0xBD7 (PVC)
[18:15:41] [PASSED] 0xBD8 (PVC)
[18:15:41] [PASSED] 0xBD9 (PVC)
[18:15:41] [PASSED] 0xBDA (PVC)
[18:15:41] [PASSED] 0xBDB (PVC)
[18:15:41] [PASSED] 0xBE0 (PVC)
[18:15:41] [PASSED] 0xBE1 (PVC)
[18:15:41] [PASSED] 0xBE5 (PVC)
[18:15:41] [PASSED] 0x7D40 (METEORLAKE)
[18:15:41] [PASSED] 0x7D45 (METEORLAKE)
[18:15:41] [PASSED] 0x7D55 (METEORLAKE)
[18:15:41] [PASSED] 0x7D60 (METEORLAKE)
[18:15:41] [PASSED] 0x7DD5 (METEORLAKE)
[18:15:41] [PASSED] 0x6420 (LUNARLAKE)
[18:15:41] [PASSED] 0x64A0 (LUNARLAKE)
[18:15:41] [PASSED] 0x64B0 (LUNARLAKE)
[18:15:41] [PASSED] 0xE202 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE209 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE20B (BATTLEMAGE)
[18:15:41] [PASSED] 0xE20C (BATTLEMAGE)
[18:15:41] [PASSED] 0xE20D (BATTLEMAGE)
[18:15:41] [PASSED] 0xE210 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE211 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE212 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE216 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE220 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE221 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE222 (BATTLEMAGE)
[18:15:41] [PASSED] 0xE223 (BATTLEMAGE)
[18:15:41] [PASSED] 0xB080 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB081 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB082 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB083 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB084 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB085 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB086 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB087 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB08F (PANTHERLAKE)
[18:15:41] [PASSED] 0xB090 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB0A0 (PANTHERLAKE)
[18:15:41] [PASSED] 0xB0B0 (PANTHERLAKE)
[18:15:41] [PASSED] 0xFD80 (PANTHERLAKE)
[18:15:41] [PASSED] 0xFD81 (PANTHERLAKE)
[18:15:41] ============= [PASSED] check_platform_gt_count =============
[18:15:41] ===================== [PASSED] xe_pci ======================
[18:15:41] =================== xe_rtp (2 subtests) ====================
[18:15:41] =============== xe_rtp_process_to_sr_tests ================
[18:15:41] [PASSED] coalesce-same-reg
[18:15:41] [PASSED] no-match-no-add
[18:15:41] [PASSED] match-or
[18:15:41] [PASSED] match-or-xfail
[18:15:41] [PASSED] no-match-no-add-multiple-rules
[18:15:41] [PASSED] two-regs-two-entries
[18:15:41] [PASSED] clr-one-set-other
[18:15:41] [PASSED] set-field
[18:15:41] [PASSED] conflict-duplicate
[18:15:41] [PASSED] conflict-not-disjoint
[18:15:41] [PASSED] conflict-reg-type
[18:15:41] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:15:41] ================== xe_rtp_process_tests ===================
[18:15:41] [PASSED] active1
[18:15:41] [PASSED] active2
[18:15:41] [PASSED] active-inactive
[18:15:41] [PASSED] inactive-active
[18:15:41] [PASSED] inactive-1st_or_active-inactive
[18:15:41] [PASSED] inactive-2nd_or_active-inactive
[18:15:41] [PASSED] inactive-last_or_active-inactive
[18:15:41] [PASSED] inactive-no_or_active-inactive
[18:15:41] ============== [PASSED] xe_rtp_process_tests ===============
[18:15:41] ===================== [PASSED] xe_rtp ======================
[18:15:41] ==================== xe_wa (1 subtest) =====================
[18:15:41] ======================== xe_wa_gt =========================
[18:15:41] [PASSED] TIGERLAKE (B0)
[18:15:41] [PASSED] DG1 (A0)
[18:15:41] [PASSED] DG1 (B0)
[18:15:41] [PASSED] ALDERLAKE_S (A0)
[18:15:41] [PASSED] ALDERLAKE_S (B0)
[18:15:41] [PASSED] ALDERLAKE_S (C0)
[18:15:41] [PASSED] ALDERLAKE_S (D0)
[18:15:41] [PASSED] ALDERLAKE_P (A0)
[18:15:41] [PASSED] ALDERLAKE_P (B0)
[18:15:41] [PASSED] ALDERLAKE_P (C0)
[18:15:41] [PASSED] ALDERLAKE_S_RPLS (D0)
[18:15:41] [PASSED] ALDERLAKE_P_RPLU (E0)
[18:15:41] [PASSED] DG2_G10 (C0)
[18:15:41] [PASSED] DG2_G11 (B1)
[18:15:41] [PASSED] DG2_G12 (A1)
[18:15:41] [PASSED] METEORLAKE (g:A0, m:A0)
[18:15:41] [PASSED] METEORLAKE (g:A0, m:A0)
[18:15:41] [PASSED] METEORLAKE (g:A0, m:A0)
[18:15:41] [PASSED] LUNARLAKE (g:A0, m:A0)
[18:15:41] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[18:15:41] [PASSED] BATTLEMAGE (g:A0, m:A1)
[18:15:41] [PASSED] PANTHERLAKE (g:A0, m:A0)
[18:15:41] ==================== [PASSED] xe_wa_gt =====================
[18:15:41] ====================== [PASSED] xe_wa ======================
[18:15:41] ============================================================
[18:15:41] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[18:15:41] Elapsed time: 33.423s total, 4.176s configuring, 28.881s building, 0.322s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:15:41] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:15:43] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[18:16:06] Starting KUnit Kernel (1/1)...
[18:16:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:16:06] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[18:16:06] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[18:16:06] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[18:16:06] =========== drm_validate_clone_mode (2 subtests) ===========
[18:16:06] ============== drm_test_check_in_clone_mode ===============
[18:16:06] [PASSED] in_clone_mode
[18:16:06] [PASSED] not_in_clone_mode
[18:16:06] ========== [PASSED] drm_test_check_in_clone_mode ===========
[18:16:06] =============== drm_test_check_valid_clones ===============
[18:16:06] [PASSED] not_in_clone_mode
[18:16:06] [PASSED] valid_clone
[18:16:06] [PASSED] invalid_clone
[18:16:06] =========== [PASSED] drm_test_check_valid_clones ===========
[18:16:06] ============= [PASSED] drm_validate_clone_mode =============
[18:16:06] ============= drm_validate_modeset (1 subtest) =============
[18:16:06] [PASSED] drm_test_check_connector_changed_modeset
[18:16:06] ============== [PASSED] drm_validate_modeset ===============
[18:16:06] ====== drm_test_bridge_get_current_state (2 subtests) ======
[18:16:06] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[18:16:06] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[18:16:06] ======== [PASSED] drm_test_bridge_get_current_state ========
[18:16:06] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[18:16:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[18:16:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[18:16:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[18:16:06] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[18:16:06] ============== drm_bridge_alloc (2 subtests) ===============
[18:16:06] [PASSED] drm_test_drm_bridge_alloc_basic
[18:16:06] [PASSED] drm_test_drm_bridge_alloc_get_put
[18:16:06] ================ [PASSED] drm_bridge_alloc =================
[18:16:06] ================== drm_buddy (7 subtests) ==================
[18:16:06] [PASSED] drm_test_buddy_alloc_limit
[18:16:06] [PASSED] drm_test_buddy_alloc_optimistic
[18:16:06] [PASSED] drm_test_buddy_alloc_pessimistic
[18:16:06] [PASSED] drm_test_buddy_alloc_pathological
[18:16:06] [PASSED] drm_test_buddy_alloc_contiguous
[18:16:06] [PASSED] drm_test_buddy_alloc_clear
[18:16:06] [PASSED] drm_test_buddy_alloc_range_bias
[18:16:06] ==================== [PASSED] drm_buddy ====================
[18:16:06] ============= drm_cmdline_parser (40 subtests) =============
[18:16:06] [PASSED] drm_test_cmdline_force_d_only
[18:16:06] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:16:06] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:16:06] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:16:06] [PASSED] drm_test_cmdline_force_e_only
[18:16:06] [PASSED] drm_test_cmdline_res
[18:16:06] [PASSED] drm_test_cmdline_res_vesa
[18:16:06] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:16:06] [PASSED] drm_test_cmdline_res_rblank
[18:16:06] [PASSED] drm_test_cmdline_res_bpp
[18:16:06] [PASSED] drm_test_cmdline_res_refresh
[18:16:06] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:16:06] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:16:06] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:16:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:16:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:16:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:16:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:16:06] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:16:06] [PASSED] drm_test_cmdline_res_margins_force_on
[18:16:06] [PASSED] drm_test_cmdline_res_vesa_margins
[18:16:06] [PASSED] drm_test_cmdline_name
[18:16:06] [PASSED] drm_test_cmdline_name_bpp
[18:16:06] [PASSED] drm_test_cmdline_name_option
[18:16:06] [PASSED] drm_test_cmdline_name_bpp_option
[18:16:06] [PASSED] drm_test_cmdline_rotate_0
[18:16:06] [PASSED] drm_test_cmdline_rotate_90
[18:16:06] [PASSED] drm_test_cmdline_rotate_180
[18:16:06] [PASSED] drm_test_cmdline_rotate_270
[18:16:06] [PASSED] drm_test_cmdline_hmirror
[18:16:06] [PASSED] drm_test_cmdline_vmirror
[18:16:06] [PASSED] drm_test_cmdline_margin_options
[18:16:06] [PASSED] drm_test_cmdline_multiple_options
[18:16:06] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:16:06] [PASSED] drm_test_cmdline_extra_and_option
[18:16:06] [PASSED] drm_test_cmdline_freestanding_options
[18:16:06] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:16:06] [PASSED] drm_test_cmdline_panel_orientation
[18:16:06] ================ drm_test_cmdline_invalid =================
[18:16:06] [PASSED] margin_only
[18:16:06] [PASSED] interlace_only
[18:16:06] [PASSED] res_missing_x
[18:16:06] [PASSED] res_missing_y
[18:16:06] [PASSED] res_bad_y
[18:16:06] [PASSED] res_missing_y_bpp
[18:16:06] [PASSED] res_bad_bpp
[18:16:06] [PASSED] res_bad_refresh
[18:16:06] [PASSED] res_bpp_refresh_force_on_off
[18:16:06] [PASSED] res_invalid_mode
[18:16:06] [PASSED] res_bpp_wrong_place_mode
[18:16:06] [PASSED] name_bpp_refresh
[18:16:06] [PASSED] name_refresh
[18:16:06] [PASSED] name_refresh_wrong_mode
[18:16:06] [PASSED] name_refresh_invalid_mode
[18:16:06] [PASSED] rotate_multiple
[18:16:06] [PASSED] rotate_invalid_val
[18:16:06] [PASSED] rotate_truncated
[18:16:06] [PASSED] invalid_option
[18:16:06] [PASSED] invalid_tv_option
[18:16:06] [PASSED] truncated_tv_option
[18:16:06] ============ [PASSED] drm_test_cmdline_invalid =============
[18:16:06] =============== drm_test_cmdline_tv_options ===============
[18:16:06] [PASSED] NTSC
[18:16:06] [PASSED] NTSC_443
[18:16:06] [PASSED] NTSC_J
[18:16:06] [PASSED] PAL
[18:16:06] [PASSED] PAL_M
[18:16:06] [PASSED] PAL_N
[18:16:06] [PASSED] SECAM
[18:16:06] [PASSED] MONO_525
[18:16:06] [PASSED] MONO_625
[18:16:06] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:16:06] =============== [PASSED] drm_cmdline_parser ================
[18:16:06] ========== drmm_connector_hdmi_init (20 subtests) ==========
[18:16:06] [PASSED] drm_test_connector_hdmi_init_valid
[18:16:06] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:16:06] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:16:06] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:16:06] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:16:06] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:16:06] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:16:06] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:16:06] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:16:06] [PASSED] supported_formats=0x9 yuv420_allowed=1
[18:16:06] [PASSED] supported_formats=0x9 yuv420_allowed=0
[18:16:06] [PASSED] supported_formats=0x3 yuv420_allowed=1
[18:16:06] [PASSED] supported_formats=0x3 yuv420_allowed=0
[18:16:06] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:16:06] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:16:06] [PASSED] drm_test_connector_hdmi_init_null_product
[18:16:06] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:16:06] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:16:06] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:16:06] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:16:06] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:16:06] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:16:06] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:16:06] ========= drm_test_connector_hdmi_init_type_valid =========
[18:16:06] [PASSED] HDMI-A
[18:16:06] [PASSED] HDMI-B
[18:16:06] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:16:06] ======== drm_test_connector_hdmi_init_type_invalid ========
[18:16:06] [PASSED] Unknown
[18:16:06] [PASSED] VGA
[18:16:06] [PASSED] DVI-I
[18:16:06] [PASSED] DVI-D
[18:16:06] [PASSED] DVI-A
[18:16:06] [PASSED] Composite
[18:16:06] [PASSED] SVIDEO
[18:16:06] [PASSED] LVDS
[18:16:06] [PASSED] Component
[18:16:06] [PASSED] DIN
[18:16:06] [PASSED] DP
[18:16:06] [PASSED] TV
[18:16:06] [PASSED] eDP
[18:16:06] [PASSED] Virtual
[18:16:06] [PASSED] DSI
[18:16:06] [PASSED] DPI
[18:16:06] [PASSED] Writeback
[18:16:06] [PASSED] SPI
[18:16:06] [PASSED] USB
[18:16:06] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:16:06] ============ [PASSED] drmm_connector_hdmi_init =============
[18:16:06] ============= drmm_connector_init (3 subtests) =============
[18:16:06] [PASSED] drm_test_drmm_connector_init
[18:16:06] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:16:06] ========= drm_test_drmm_connector_init_type_valid =========
[18:16:06] [PASSED] Unknown
[18:16:06] [PASSED] VGA
[18:16:06] [PASSED] DVI-I
[18:16:06] [PASSED] DVI-D
[18:16:06] [PASSED] DVI-A
[18:16:06] [PASSED] Composite
[18:16:06] [PASSED] SVIDEO
[18:16:06] [PASSED] LVDS
[18:16:06] [PASSED] Component
[18:16:06] [PASSED] DIN
[18:16:06] [PASSED] DP
[18:16:06] [PASSED] HDMI-A
[18:16:06] [PASSED] HDMI-B
[18:16:06] [PASSED] TV
[18:16:06] [PASSED] eDP
[18:16:06] [PASSED] Virtual
[18:16:06] [PASSED] DSI
[18:16:06] [PASSED] DPI
[18:16:06] [PASSED] Writeback
[18:16:06] [PASSED] SPI
[18:16:06] [PASSED] USB
[18:16:06] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:16:06] =============== [PASSED] drmm_connector_init ===============
[18:16:06] ========= drm_connector_dynamic_init (6 subtests) ==========
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_init
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_init_properties
[18:16:06] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[18:16:06] [PASSED] Unknown
[18:16:06] [PASSED] VGA
[18:16:06] [PASSED] DVI-I
[18:16:06] [PASSED] DVI-D
[18:16:06] [PASSED] DVI-A
[18:16:06] [PASSED] Composite
[18:16:06] [PASSED] SVIDEO
[18:16:06] [PASSED] LVDS
[18:16:06] [PASSED] Component
[18:16:06] [PASSED] DIN
[18:16:06] [PASSED] DP
[18:16:06] [PASSED] HDMI-A
[18:16:06] [PASSED] HDMI-B
[18:16:06] [PASSED] TV
[18:16:06] [PASSED] eDP
[18:16:06] [PASSED] Virtual
[18:16:06] [PASSED] DSI
[18:16:06] [PASSED] DPI
[18:16:06] [PASSED] Writeback
[18:16:06] [PASSED] SPI
[18:16:06] [PASSED] USB
[18:16:06] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[18:16:06] ======== drm_test_drm_connector_dynamic_init_name =========
[18:16:06] [PASSED] Unknown
[18:16:06] [PASSED] VGA
[18:16:06] [PASSED] DVI-I
[18:16:06] [PASSED] DVI-D
[18:16:06] [PASSED] DVI-A
[18:16:06] [PASSED] Composite
[18:16:06] [PASSED] SVIDEO
[18:16:06] [PASSED] LVDS
[18:16:06] [PASSED] Component
[18:16:06] [PASSED] DIN
[18:16:06] [PASSED] DP
[18:16:06] [PASSED] HDMI-A
[18:16:06] [PASSED] HDMI-B
[18:16:06] [PASSED] TV
[18:16:06] [PASSED] eDP
[18:16:06] [PASSED] Virtual
[18:16:06] [PASSED] DSI
[18:16:06] [PASSED] DPI
[18:16:06] [PASSED] Writeback
[18:16:06] [PASSED] SPI
[18:16:06] [PASSED] USB
[18:16:06] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[18:16:06] =========== [PASSED] drm_connector_dynamic_init ============
[18:16:06] ==== drm_connector_dynamic_register_early (4 subtests) =====
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[18:16:06] ====== [PASSED] drm_connector_dynamic_register_early =======
[18:16:06] ======= drm_connector_dynamic_register (7 subtests) ========
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[18:16:06] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[18:16:06] ========= [PASSED] drm_connector_dynamic_register ==========
[18:16:06] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:16:06] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:16:06] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:16:06] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:16:06] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:16:06] ========== drm_test_get_tv_mode_from_name_valid ===========
[18:16:06] [PASSED] NTSC
[18:16:06] [PASSED] NTSC-443
[18:16:06] [PASSED] NTSC-J
[18:16:06] [PASSED] PAL
[18:16:06] [PASSED] PAL-M
[18:16:06] [PASSED] PAL-N
[18:16:06] [PASSED] SECAM
[18:16:06] [PASSED] Mono
[18:16:06] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:16:06] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:16:06] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:16:06] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:16:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:16:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:16:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:16:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:16:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:16:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:16:06] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[18:16:06] [PASSED] VIC 96
[18:16:06] [PASSED] VIC 97
[18:16:06] [PASSED] VIC 101
[18:16:06] [PASSED] VIC 102
[18:16:06] [PASSED] VIC 106
[18:16:06] [PASSED] VIC 107
[18:16:06] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:16:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:16:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:16:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:16:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:16:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:16:06] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:16:06] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:16:06] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[18:16:06] [PASSED] Automatic
[18:16:06] [PASSED] Full
[18:16:06] [PASSED] Limited 16:235
[18:16:06] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:16:06] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:16:06] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:16:06] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:16:06] === drm_test_drm_hdmi_connector_get_output_format_name ====
[18:16:06] [PASSED] RGB
[18:16:06] [PASSED] YUV 4:2:0
[18:16:06] [PASSED] YUV 4:2:2
[18:16:06] [PASSED] YUV 4:4:4
[18:16:06] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:16:06] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:16:06] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:16:06] ============= drm_damage_helper (21 subtests) ==============
[18:16:06] [PASSED] drm_test_damage_iter_no_damage
[18:16:06] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:16:06] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:16:06] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:16:06] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:16:06] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:16:06] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:16:06] [PASSED] drm_test_damage_iter_simple_damage
[18:16:06] [PASSED] drm_test_damage_iter_single_damage
[18:16:06] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:16:06] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:16:06] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:16:06] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:16:06] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:16:06] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:16:06] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:16:06] [PASSED] drm_test_damage_iter_damage
[18:16:06] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:16:06] [PASSED] drm_test_damage_iter_damage_one_outside
[18:16:06] [PASSED] drm_test_damage_iter_damage_src_moved
[18:16:06] [PASSED] drm_test_damage_iter_damage_not_visible
[18:16:06] ================ [PASSED] drm_damage_helper ================
[18:16:06] ============== drm_dp_mst_helper (3 subtests) ==============
[18:16:06] ============== drm_test_dp_mst_calc_pbn_mode ==============
[18:16:06] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:16:06] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:16:06] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:16:06] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:16:06] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:16:06] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:16:06] ============== drm_test_dp_mst_calc_pbn_div ===============
[18:16:06] [PASSED] Link rate 2000000 lane count 4
[18:16:06] [PASSED] Link rate 2000000 lane count 2
[18:16:06] [PASSED] Link rate 2000000 lane count 1
[18:16:06] [PASSED] Link rate 1350000 lane count 4
[18:16:06] [PASSED] Link rate 1350000 lane count 2
[18:16:06] [PASSED] Link rate 1350000 lane count 1
[18:16:06] [PASSED] Link rate 1000000 lane count 4
[18:16:06] [PASSED] Link rate 1000000 lane count 2
[18:16:06] [PASSED] Link rate 1000000 lane count 1
[18:16:06] [PASSED] Link rate 810000 lane count 4
[18:16:06] [PASSED] Link rate 810000 lane count 2
[18:16:06] [PASSED] Link rate 810000 lane count 1
[18:16:06] [PASSED] Link rate 540000 lane count 4
[18:16:06] [PASSED] Link rate 540000 lane count 2
[18:16:06] [PASSED] Link rate 540000 lane count 1
[18:16:06] [PASSED] Link rate 270000 lane count 4
[18:16:06] [PASSED] Link rate 270000 lane count 2
[18:16:06] [PASSED] Link rate 270000 lane count 1
[18:16:06] [PASSED] Link rate 162000 lane count 4
[18:16:06] [PASSED] Link rate 162000 lane count 2
[18:16:06] [PASSED] Link rate 162000 lane count 1
[18:16:06] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:16:06] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[18:16:06] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:16:06] [PASSED] DP_POWER_UP_PHY with port number
[18:16:06] [PASSED] DP_POWER_DOWN_PHY with port number
[18:16:06] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:16:06] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:16:06] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:16:06] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:16:06] [PASSED] DP_QUERY_PAYLOAD with port number
[18:16:06] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:16:06] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:16:06] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:16:06] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:16:06] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:16:06] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:16:06] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:16:06] [PASSED] DP_REMOTE_I2C_READ with port number
[18:16:06] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:16:06] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:16:06] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:16:06] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:16:06] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:16:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:16:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:16:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:16:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:16:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:16:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:16:06] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:16:06] ================ [PASSED] drm_dp_mst_helper ================
[18:16:06] ================== drm_exec (7 subtests) ===================
[18:16:06] [PASSED] sanitycheck
[18:16:06] [PASSED] test_lock
[18:16:06] [PASSED] test_lock_unlock
[18:16:06] [PASSED] test_duplicates
[18:16:06] [PASSED] test_prepare
[18:16:06] [PASSED] test_prepare_array
[18:16:06] [PASSED] test_multiple_loops
[18:16:06] ==================== [PASSED] drm_exec =====================
[18:16:06] =========== drm_format_helper_test (17 subtests) ===========
[18:16:06] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:16:06] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:16:06] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:16:06] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:16:06] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:16:06] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:16:06] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:16:06] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[18:16:06] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:16:06] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:16:06] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:16:06] ============== drm_test_fb_xrgb8888_to_mono ===============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:16:06] ==================== drm_test_fb_swab =====================
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ================ [PASSED] drm_test_fb_swab =================
[18:16:06] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:16:06] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[18:16:06] [PASSED] single_pixel_source_buffer
[18:16:06] [PASSED] single_pixel_clip_rectangle
[18:16:06] [PASSED] well_known_colors
[18:16:06] [PASSED] destination_pitch
[18:16:06] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:16:06] ================= drm_test_fb_clip_offset =================
[18:16:06] [PASSED] pass through
[18:16:06] [PASSED] horizontal offset
[18:16:06] [PASSED] vertical offset
[18:16:06] [PASSED] horizontal and vertical offset
[18:16:06] [PASSED] horizontal offset (custom pitch)
[18:16:06] [PASSED] vertical offset (custom pitch)
[18:16:06] [PASSED] horizontal and vertical offset (custom pitch)
[18:16:06] ============= [PASSED] drm_test_fb_clip_offset =============
[18:16:06] =================== drm_test_fb_memcpy ====================
[18:16:06] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:16:06] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:16:06] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:16:06] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:16:06] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:16:06] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:16:06] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:16:06] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:16:06] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:16:06] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:16:06] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:16:06] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:16:06] =============== [PASSED] drm_test_fb_memcpy ================
[18:16:06] ============= [PASSED] drm_format_helper_test ==============
[18:16:06] ================= drm_format (18 subtests) =================
[18:16:06] [PASSED] drm_test_format_block_width_invalid
[18:16:06] [PASSED] drm_test_format_block_width_one_plane
[18:16:06] [PASSED] drm_test_format_block_width_two_plane
[18:16:06] [PASSED] drm_test_format_block_width_three_plane
[18:16:06] [PASSED] drm_test_format_block_width_tiled
[18:16:06] [PASSED] drm_test_format_block_height_invalid
[18:16:06] [PASSED] drm_test_format_block_height_one_plane
[18:16:06] [PASSED] drm_test_format_block_height_two_plane
[18:16:06] [PASSED] drm_test_format_block_height_three_plane
[18:16:06] [PASSED] drm_test_format_block_height_tiled
[18:16:06] [PASSED] drm_test_format_min_pitch_invalid
[18:16:06] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:16:06] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:16:06] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:16:06] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:16:06] [PASSED] drm_test_format_min_pitch_two_plane
[18:16:06] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:16:06] [PASSED] drm_test_format_min_pitch_tiled
[18:16:06] =================== [PASSED] drm_format ====================
[18:16:06] ============== drm_framebuffer (10 subtests) ===============
[18:16:06] ========== drm_test_framebuffer_check_src_coords ==========
[18:16:06] [PASSED] Success: source fits into fb
[18:16:06] [PASSED] Fail: overflowing fb with x-axis coordinate
[18:16:06] [PASSED] Fail: overflowing fb with y-axis coordinate
[18:16:06] [PASSED] Fail: overflowing fb with source width
[18:16:06] [PASSED] Fail: overflowing fb with source height
[18:16:06] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[18:16:06] [PASSED] drm_test_framebuffer_cleanup
[18:16:06] =============== drm_test_framebuffer_create ===============
[18:16:06] [PASSED] ABGR8888 normal sizes
[18:16:06] [PASSED] ABGR8888 max sizes
[18:16:06] [PASSED] ABGR8888 pitch greater than min required
[18:16:06] [PASSED] ABGR8888 pitch less than min required
[18:16:06] [PASSED] ABGR8888 Invalid width
[18:16:06] [PASSED] ABGR8888 Invalid buffer handle
[18:16:06] [PASSED] No pixel format
[18:16:06] [PASSED] ABGR8888 Width 0
[18:16:06] [PASSED] ABGR8888 Height 0
[18:16:06] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:16:06] [PASSED] ABGR8888 Large buffer offset
[18:16:06] [PASSED] ABGR8888 Buffer offset for inexistent plane
[18:16:06] [PASSED] ABGR8888 Invalid flag
[18:16:06] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:16:06] [PASSED] ABGR8888 Valid buffer modifier
[18:16:06] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:16:06] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:16:06] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:16:06] [PASSED] NV12 Normal sizes
[18:16:06] [PASSED] NV12 Max sizes
[18:16:06] [PASSED] NV12 Invalid pitch
[18:16:06] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:16:06] [PASSED] NV12 different modifier per-plane
[18:16:06] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:16:06] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:16:06] [PASSED] NV12 Modifier for inexistent plane
[18:16:06] [PASSED] NV12 Handle for inexistent plane
[18:16:06] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:16:06] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:16:06] [PASSED] YVU420 Normal sizes
[18:16:06] [PASSED] YVU420 Max sizes
[18:16:06] [PASSED] YVU420 Invalid pitch
[18:16:06] [PASSED] YVU420 Different pitches
[18:16:06] [PASSED] YVU420 Different buffer offsets/pitches
[18:16:06] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:16:06] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:16:06] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:16:06] [PASSED] YVU420 Valid modifier
[18:16:06] [PASSED] YVU420 Different modifiers per plane
[18:16:06] [PASSED] YVU420 Modifier for inexistent plane
[18:16:06] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[18:16:06] [PASSED] X0L2 Normal sizes
[18:16:06] [PASSED] X0L2 Max sizes
[18:16:06] [PASSED] X0L2 Invalid pitch
[18:16:06] [PASSED] X0L2 Pitch greater than minimum required
[18:16:06] [PASSED] X0L2 Handle for inexistent plane
[18:16:06] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:16:06] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:16:06] [PASSED] X0L2 Valid modifier
[18:16:06] [PASSED] X0L2 Modifier for inexistent plane
[18:16:06] =========== [PASSED] drm_test_framebuffer_create ===========
[18:16:06] [PASSED] drm_test_framebuffer_free
[18:16:06] [PASSED] drm_test_framebuffer_init
[18:16:06] [PASSED] drm_test_framebuffer_init_bad_format
[18:16:06] [PASSED] drm_test_framebuffer_init_dev_mismatch
[18:16:06] [PASSED] drm_test_framebuffer_lookup
[18:16:06] [PASSED] drm_test_framebuffer_lookup_inexistent
[18:16:06] [PASSED] drm_test_framebuffer_modifiers_not_supported
[18:16:06] ================= [PASSED] drm_framebuffer =================
[18:16:06] ================ drm_gem_shmem (8 subtests) ================
[18:16:06] [PASSED] drm_gem_shmem_test_obj_create
[18:16:06] [PASSED] drm_gem_shmem_test_obj_create_private
[18:16:06] [PASSED] drm_gem_shmem_test_pin_pages
[18:16:06] [PASSED] drm_gem_shmem_test_vmap
[18:16:06] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:16:06] [PASSED] drm_gem_shmem_test_get_sg_table
[18:16:06] [PASSED] drm_gem_shmem_test_madvise
[18:16:06] [PASSED] drm_gem_shmem_test_purge
[18:16:06] ================== [PASSED] drm_gem_shmem ==================
[18:16:06] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:16:06] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[18:16:06] [PASSED] Automatic
[18:16:06] [PASSED] Full
[18:16:06] [PASSED] Limited 16:235
[18:16:06] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:16:06] [PASSED] drm_test_check_disable_connector
[18:16:06] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:16:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[18:16:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[18:16:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[18:16:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[18:16:06] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[18:16:06] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:16:06] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:16:06] [PASSED] drm_test_check_output_bpc_dvi
[18:16:06] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:16:06] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:16:06] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:16:06] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:16:06] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:16:06] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:16:06] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:16:06] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:16:06] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:16:06] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:16:06] [PASSED] drm_test_check_broadcast_rgb_value
[18:16:06] [PASSED] drm_test_check_bpc_8_value
[18:16:06] [PASSED] drm_test_check_bpc_10_value
[18:16:06] [PASSED] drm_test_check_bpc_12_value
[18:16:06] [PASSED] drm_test_check_format_value
[18:16:06] [PASSED] drm_test_check_tmds_char_value
[18:16:06] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:16:06] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[18:16:06] [PASSED] drm_test_check_mode_valid
[18:16:06] [PASSED] drm_test_check_mode_valid_reject
[18:16:06] [PASSED] drm_test_check_mode_valid_reject_rate
[18:16:06] [PASSED] drm_test_check_mode_valid_reject_max_clock
[18:16:06] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[18:16:06] ================= drm_managed (2 subtests) =================
[18:16:06] [PASSED] drm_test_managed_release_action
[18:16:06] [PASSED] drm_test_managed_run_action
[18:16:06] =================== [PASSED] drm_managed ===================
[18:16:06] =================== drm_mm (6 subtests) ====================
[18:16:06] [PASSED] drm_test_mm_init
[18:16:06] [PASSED] drm_test_mm_debug
[18:16:06] [PASSED] drm_test_mm_align32
[18:16:06] [PASSED] drm_test_mm_align64
[18:16:06] [PASSED] drm_test_mm_lowest
[18:16:06] [PASSED] drm_test_mm_highest
[18:16:06] ===================== [PASSED] drm_mm ======================
[18:16:06] ============= drm_modes_analog_tv (5 subtests) =============
[18:16:06] [PASSED] drm_test_modes_analog_tv_mono_576i
[18:16:06] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:16:06] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:16:06] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:16:06] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:16:06] =============== [PASSED] drm_modes_analog_tv ===============
[18:16:06] ============== drm_plane_helper (2 subtests) ===============
[18:16:06] =============== drm_test_check_plane_state ================
[18:16:06] [PASSED] clipping_simple
[18:16:06] [PASSED] clipping_rotate_reflect
[18:16:06] [PASSED] positioning_simple
[18:16:06] [PASSED] upscaling
[18:16:06] [PASSED] downscaling
[18:16:06] [PASSED] rounding1
[18:16:06] [PASSED] rounding2
[18:16:06] [PASSED] rounding3
[18:16:06] [PASSED] rounding4
[18:16:06] =========== [PASSED] drm_test_check_plane_state ============
[18:16:06] =========== drm_test_check_invalid_plane_state ============
[18:16:06] [PASSED] positioning_invalid
[18:16:06] [PASSED] upscaling_invalid
[18:16:06] [PASSED] downscaling_invalid
[18:16:06] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:16:06] ================ [PASSED] drm_plane_helper =================
[18:16:06] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:16:06] ====== drm_test_connector_helper_tv_get_modes_check =======
[18:16:06] [PASSED] None
[18:16:06] [PASSED] PAL
[18:16:06] [PASSED] NTSC
[18:16:06] [PASSED] Both, NTSC Default
[18:16:06] [PASSED] Both, PAL Default
[18:16:06] [PASSED] Both, NTSC Default, with PAL on command-line
[18:16:06] [PASSED] Both, PAL Default, with NTSC on command-line
[18:16:06] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:16:06] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:16:06] ================== drm_rect (9 subtests) ===================
[18:16:06] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:16:06] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:16:06] [PASSED] drm_test_rect_clip_scaled_clipped
[18:16:06] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:16:06] ================= drm_test_rect_intersect =================
[18:16:06] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:16:06] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:16:06] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:16:06] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:16:06] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:16:06] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:16:06] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:16:06] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:16:06] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:16:06] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:16:06] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:16:06] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:16:06] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:16:06] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:16:06] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:16:06] ============= [PASSED] drm_test_rect_intersect =============
[18:16:06] ================ drm_test_rect_calc_hscale ================
[18:16:06] [PASSED] normal use
[18:16:06] [PASSED] out of max range
[18:16:06] [PASSED] out of min range
[18:16:06] [PASSED] zero dst
[18:16:06] [PASSED] negative src
[18:16:06] [PASSED] negative dst
[18:16:06] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:16:06] ================ drm_test_rect_calc_vscale ================
[18:16:06] [PASSED] normal use
[18:16:06] [PASSED] out of max range
[18:16:06] [PASSED] out of min range
[18:16:06] [PASSED] zero dst
[18:16:06] [PASSED] negative src
[18:16:06] [PASSED] negative dst
[18:16:06] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:16:06] ================== drm_test_rect_rotate ===================
[18:16:06] [PASSED] reflect-x
[18:16:06] [PASSED] reflect-y
[18:16:06] [PASSED] rotate-0
[18:16:06] [PASSED] rotate-90
[18:16:06] [PASSED] rotate-180
[18:16:06] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[18:16:06] ============== [PASSED] drm_test_rect_rotate ===============
[18:16:06] ================ drm_test_rect_rotate_inv =================
[18:16:06] [PASSED] reflect-x
[18:16:06] [PASSED] reflect-y
[18:16:06] [PASSED] rotate-0
[18:16:06] [PASSED] rotate-90
[18:16:06] [PASSED] rotate-180
[18:16:06] [PASSED] rotate-270
[18:16:06] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:16:06] ==================== [PASSED] drm_rect =====================
[18:16:06] ============ drm_sysfb_modeset_test (1 subtest) ============
[18:16:06] ============ drm_test_sysfb_build_fourcc_list =============
[18:16:06] [PASSED] no native formats
[18:16:06] [PASSED] XRGB8888 as native format
[18:16:06] [PASSED] remove duplicates
[18:16:06] [PASSED] convert alpha formats
[18:16:06] [PASSED] random formats
[18:16:06] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[18:16:06] ============= [PASSED] drm_sysfb_modeset_test ==============
[18:16:06] ============================================================
[18:16:06] Testing complete. Ran 616 tests: passed: 616
[18:16:06] Elapsed time: 24.895s total, 1.678s configuring, 22.999s building, 0.178s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[18:16:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:16:08] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[18:16:16] Starting KUnit Kernel (1/1)...
[18:16:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:16:16] ================= ttm_device (5 subtests) ==================
[18:16:16] [PASSED] ttm_device_init_basic
[18:16:16] [PASSED] ttm_device_init_multiple
[18:16:16] [PASSED] ttm_device_fini_basic
[18:16:16] [PASSED] ttm_device_init_no_vma_man
[18:16:16] ================== ttm_device_init_pools ==================
[18:16:16] [PASSED] No DMA allocations, no DMA32 required
[18:16:16] [PASSED] DMA allocations, DMA32 required
[18:16:16] [PASSED] No DMA allocations, DMA32 required
[18:16:16] [PASSED] DMA allocations, no DMA32 required
[18:16:16] ============== [PASSED] ttm_device_init_pools ==============
[18:16:16] =================== [PASSED] ttm_device ====================
[18:16:16] ================== ttm_pool (8 subtests) ===================
[18:16:16] ================== ttm_pool_alloc_basic ===================
[18:16:16] [PASSED] One page
[18:16:16] [PASSED] More than one page
[18:16:16] [PASSED] Above the allocation limit
[18:16:16] [PASSED] One page, with coherent DMA mappings enabled
[18:16:16] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:16:16] ============== [PASSED] ttm_pool_alloc_basic ===============
[18:16:16] ============== ttm_pool_alloc_basic_dma_addr ==============
[18:16:16] [PASSED] One page
[18:16:16] [PASSED] More than one page
[18:16:16] [PASSED] Above the allocation limit
[18:16:16] [PASSED] One page, with coherent DMA mappings enabled
[18:16:16] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:16:16] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[18:16:16] [PASSED] ttm_pool_alloc_order_caching_match
[18:16:16] [PASSED] ttm_pool_alloc_caching_mismatch
[18:16:16] [PASSED] ttm_pool_alloc_order_mismatch
[18:16:16] [PASSED] ttm_pool_free_dma_alloc
[18:16:16] [PASSED] ttm_pool_free_no_dma_alloc
[18:16:16] [PASSED] ttm_pool_fini_basic
[18:16:16] ==================== [PASSED] ttm_pool =====================
[18:16:16] ================ ttm_resource (8 subtests) =================
[18:16:16] ================= ttm_resource_init_basic =================
[18:16:16] [PASSED] Init resource in TTM_PL_SYSTEM
[18:16:16] [PASSED] Init resource in TTM_PL_VRAM
[18:16:16] [PASSED] Init resource in a private placement
[18:16:16] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[18:16:16] ============= [PASSED] ttm_resource_init_basic =============
[18:16:16] [PASSED] ttm_resource_init_pinned
[18:16:16] [PASSED] ttm_resource_fini_basic
[18:16:16] [PASSED] ttm_resource_manager_init_basic
[18:16:16] [PASSED] ttm_resource_manager_usage_basic
[18:16:16] [PASSED] ttm_resource_manager_set_used_basic
[18:16:16] [PASSED] ttm_sys_man_alloc_basic
[18:16:16] [PASSED] ttm_sys_man_free_basic
[18:16:16] ================== [PASSED] ttm_resource ===================
[18:16:16] =================== ttm_tt (15 subtests) ===================
[18:16:16] ==================== ttm_tt_init_basic ====================
[18:16:16] [PASSED] Page-aligned size
[18:16:16] [PASSED] Extra pages requested
[18:16:16] ================ [PASSED] ttm_tt_init_basic ================
[18:16:16] [PASSED] ttm_tt_init_misaligned
[18:16:16] [PASSED] ttm_tt_fini_basic
[18:16:16] [PASSED] ttm_tt_fini_sg
[18:16:16] [PASSED] ttm_tt_fini_shmem
[18:16:16] [PASSED] ttm_tt_create_basic
[18:16:16] [PASSED] ttm_tt_create_invalid_bo_type
[18:16:16] [PASSED] ttm_tt_create_ttm_exists
[18:16:16] [PASSED] ttm_tt_create_failed
[18:16:16] [PASSED] ttm_tt_destroy_basic
[18:16:16] [PASSED] ttm_tt_populate_null_ttm
[18:16:16] [PASSED] ttm_tt_populate_populated_ttm
[18:16:16] [PASSED] ttm_tt_unpopulate_basic
[18:16:16] [PASSED] ttm_tt_unpopulate_empty_ttm
[18:16:16] [PASSED] ttm_tt_swapin_basic
[18:16:16] ===================== [PASSED] ttm_tt ======================
[18:16:16] =================== ttm_bo (14 subtests) ===================
[18:16:16] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[18:16:16] [PASSED] Cannot be interrupted and sleeps
[18:16:16] [PASSED] Cannot be interrupted, locks straight away
[18:16:16] [PASSED] Can be interrupted, sleeps
[18:16:16] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[18:16:16] [PASSED] ttm_bo_reserve_locked_no_sleep
[18:16:16] [PASSED] ttm_bo_reserve_no_wait_ticket
[18:16:16] [PASSED] ttm_bo_reserve_double_resv
[18:16:16] [PASSED] ttm_bo_reserve_interrupted
[18:16:16] [PASSED] ttm_bo_reserve_deadlock
[18:16:16] [PASSED] ttm_bo_unreserve_basic
[18:16:16] [PASSED] ttm_bo_unreserve_pinned
[18:16:16] [PASSED] ttm_bo_unreserve_bulk
[18:16:16] [PASSED] ttm_bo_put_basic
[18:16:16] [PASSED] ttm_bo_put_shared_resv
[18:16:16] [PASSED] ttm_bo_pin_basic
[18:16:16] [PASSED] ttm_bo_pin_unpin_resource
[18:16:16] [PASSED] ttm_bo_multiple_pin_one_unpin
[18:16:16] ===================== [PASSED] ttm_bo ======================
[18:16:16] ============== ttm_bo_validate (21 subtests) ===============
[18:16:16] ============== ttm_bo_init_reserved_sys_man ===============
[18:16:16] [PASSED] Buffer object for userspace
[18:16:16] [PASSED] Kernel buffer object
[18:16:16] [PASSED] Shared buffer object
[18:16:16] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[18:16:16] ============== ttm_bo_init_reserved_mock_man ==============
[18:16:16] [PASSED] Buffer object for userspace
[18:16:16] [PASSED] Kernel buffer object
[18:16:16] [PASSED] Shared buffer object
[18:16:16] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[18:16:16] [PASSED] ttm_bo_init_reserved_resv
[18:16:16] ================== ttm_bo_validate_basic ==================
[18:16:16] [PASSED] Buffer object for userspace
[18:16:16] [PASSED] Kernel buffer object
[18:16:16] [PASSED] Shared buffer object
[18:16:16] ============== [PASSED] ttm_bo_validate_basic ==============
[18:16:16] [PASSED] ttm_bo_validate_invalid_placement
[18:16:16] ============= ttm_bo_validate_same_placement ==============
[18:16:16] [PASSED] System manager
[18:16:16] [PASSED] VRAM manager
[18:16:16] ========= [PASSED] ttm_bo_validate_same_placement ==========
[18:16:16] [PASSED] ttm_bo_validate_failed_alloc
[18:16:16] [PASSED] ttm_bo_validate_pinned
[18:16:16] [PASSED] ttm_bo_validate_busy_placement
[18:16:16] ================ ttm_bo_validate_multihop =================
[18:16:16] [PASSED] Buffer object for userspace
[18:16:16] [PASSED] Kernel buffer object
[18:16:16] [PASSED] Shared buffer object
[18:16:16] ============ [PASSED] ttm_bo_validate_multihop =============
[18:16:16] ========== ttm_bo_validate_no_placement_signaled ==========
[18:16:16] [PASSED] Buffer object in system domain, no page vector
[18:16:16] [PASSED] Buffer object in system domain with an existing page vector
[18:16:16] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[18:16:16] ======== ttm_bo_validate_no_placement_not_signaled ========
[18:16:16] [PASSED] Buffer object for userspace
[18:16:16] [PASSED] Kernel buffer object
[18:16:16] [PASSED] Shared buffer object
[18:16:16] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[18:16:16] [PASSED] ttm_bo_validate_move_fence_signaled
[18:16:16] ========= ttm_bo_validate_move_fence_not_signaled =========
[18:16:16] [PASSED] Waits for GPU
[18:16:16] [PASSED] Tries to lock straight away
[18:16:16] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[18:16:16] [PASSED] ttm_bo_validate_happy_evict
[18:16:16] [PASSED] ttm_bo_validate_all_pinned_evict
[18:16:16] [PASSED] ttm_bo_validate_allowed_only_evict
[18:16:16] [PASSED] ttm_bo_validate_deleted_evict
[18:16:16] [PASSED] ttm_bo_validate_busy_domain_evict
[18:16:16] [PASSED] ttm_bo_validate_evict_gutting
[18:16:16] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[18:16:16] ================= [PASSED] ttm_bo_validate =================
[18:16:16] ============================================================
[18:16:16] Testing complete. Ran 101 tests: passed: 101
[18:16:16] Elapsed time: 9.904s total, 1.717s configuring, 7.971s building, 0.184s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const
2025-08-27 18:09 [PATCH v4 1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const Harish Chegondi
2025-08-27 18:09 ` [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG Harish Chegondi
2025-08-27 18:16 ` ✓ CI.KUnit: success for series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const Patchwork
@ 2025-08-27 18:54 ` Patchwork
2025-08-27 20:05 ` ✗ Xe.CI.Full: failure " Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-08-27 18:54 UTC (permalink / raw)
To: Harish Chegondi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2226 bytes --]
== Series Details ==
Series: series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const
URL : https://patchwork.freedesktop.org/series/153577/
State : success
== Summary ==
CI Bug Log - changes from xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578_BAT -> xe-pw-153577v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-153577v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@a-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* IGT: IGT_8511 -> IGT_8512
* Linux: xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578 -> xe-pw-153577v1
IGT_8511: 8511
IGT_8512: 8512
xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578: 3a2760f3080e5188b19cdb4640cec5eb0926d578
xe-pw-153577v1: 153577v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/index.html
[-- Attachment #2: Type: text/html, Size: 2837 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const
2025-08-27 18:09 [PATCH v4 1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const Harish Chegondi
` (2 preceding siblings ...)
2025-08-27 18:54 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-27 20:05 ` Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-08-27 20:05 UTC (permalink / raw)
To: Harish Chegondi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 168268 bytes --]
== Series Details ==
Series: series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const
URL : https://patchwork.freedesktop.org/series/153577/
State : failure
== Summary ==
CI Bug Log - changes from xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578_FULL -> xe-pw-153577v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153577v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153577v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-153577v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_threads@threads-bal-mixed-userptr-invalidate-race:
- shard-adlp: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_exec_threads@threads-bal-mixed-userptr-invalidate-race.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_exec_threads@threads-bal-mixed-userptr-invalidate-race.html
* igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode1:
- shard-adlp: [PASS][3] -> [FAIL][4] +6 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_decode1.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
Known issues
------------
Here are the changes found in xe-pw-153577v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@read:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#2134])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@fbdev@read.html
* igt@fbdev@unaligned-write:
- shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#2134])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@fbdev@unaligned-write.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@fbdev@unaligned-write.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][10] ([Intel XE#911]) +3 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: NOTRUN -> [DMESG-WARN][11] ([Intel XE#4543]) +9 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
* igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1:
- shard-adlp: [PASS][12] -> [FAIL][13] ([Intel XE#3884])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#664])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3279])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +14 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3658])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2327])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-0:
- shard-adlp: NOTRUN -> [DMESG-FAIL][21] ([Intel XE#4543]) +1 other test dmesg-fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#316]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#610])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1428])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [PASS][26] -> [DMESG-FAIL][27] ([Intel XE#4543]) +9 other tests dmesg-fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#619])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +8 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2191]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#2191]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#367])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#367])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#367]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1512])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-8/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][40] -> [SKIP][41] ([Intel XE#2351] / [Intel XE#4208]) +14 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +13 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#787]) +50 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2887]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#2907])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#3442])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +33 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#3432]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#3432]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#2907]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#787]) +230 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][53] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][54] ([Intel XE#2705] / [Intel XE#4212])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][55] ([Intel XE#3124])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_cdclk@mode-transition:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#4417] / [Intel XE#455])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#4417]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#373]) +9 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#306])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#306])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@kms_chamelium_color@ctm-max.html
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#306]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2252]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#373]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#373]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2341])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@kms_content_protection@content-type-change.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#3278])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2390])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#307]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#307])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#307])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][71] ([Intel XE#1178])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#3304])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#1178]) +1 other test fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#2321]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#308]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1424]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#308])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2320])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#4208] / [i915#2575]) +56 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#2291]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#309]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][83] -> [DMESG-WARN][84] ([Intel XE#5354])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#309]) +8 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1508])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#4331]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4294])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4331])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_feature_discovery@chamelium:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#701])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#1138])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1138])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#310]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1421]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#2316]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_flip@2x-plain-flip-interruptible.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@dpms-vs-vblank-race:
- shard-bmg: NOTRUN -> [FAIL][97] ([Intel XE#3098]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_flip@dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: NOTRUN -> [FAIL][98] ([Intel XE#301] / [Intel XE#3149])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: NOTRUN -> [FAIL][99] ([Intel XE#301])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [PASS][100] -> [DMESG-WARN][101] ([Intel XE#4543]) +12 other tests dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-bmg: [PASS][102] -> [INCOMPLETE][103] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1401]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2293] / [Intel XE#2380])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2293])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1397] / [Intel XE#1745])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1397])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#455]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2311]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2351] / [Intel XE#4208]) +15 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#656]) +38 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#5390]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#651]) +14 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#651]) +13 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][117] ([Intel XE#651]) +17 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#653]) +9 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2313]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][120] ([Intel XE#656]) +44 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#653]) +14 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2312]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1503])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2925])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#346])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#346])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#346])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#346])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#3012])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_lease@lease-invalid-crtc:
- shard-dg2-set2: [PASS][130] -> [SKIP][131] ([Intel XE#4208] / [i915#2575]) +98 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_lease@lease-invalid-crtc.html
* igt@kms_panel_fitting@legacy:
- shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#455]) +21 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#599]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#2763]) +7 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2938])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#870]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3309])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@kms_pm_dc@dc5-retention-flops.html
- shard-adlp: NOTRUN -> [SKIP][138] ([Intel XE#3309])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][139] -> [FAIL][140] ([Intel XE#718])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: NOTRUN -> [SKIP][141] ([Intel XE#734])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1406] / [Intel XE#4208]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1406] / [Intel XE#2893]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1122] / [Intel XE#1406])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1406]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1406] / [Intel XE#4609])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html
* igt@kms_psr@pr-primary-page-flip:
- shard-adlp: NOTRUN -> [SKIP][154] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +15 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-adlp: NOTRUN -> [SKIP][156] ([Intel XE#3414])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@kms_rotation_crc@primary-rotation-270.html
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#3414] / [Intel XE#3904])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#3414])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][159] ([Intel XE#1127])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1127])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-adlp: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-suspend.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@xe_ccs@block-copy-compressed-inc-dimension:
- shard-adlp: NOTRUN -> [SKIP][163] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@xe_ccs@block-copy-compressed-inc-dimension.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [FAIL][164] ([Intel XE#5890])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-adlp: NOTRUN -> [SKIP][165] ([Intel XE#1123])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-adlp: NOTRUN -> [SKIP][166] ([Intel XE#1126])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eu_stall@non-blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][167] ([Intel XE#5626])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_eu_stall@non-blocking-re-enable.html
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#5626])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@xe_eu_stall@non-blocking-re-enable.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#4837]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#4837]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_eudebug_online@resume-dss.html
* igt@xe_eudebug_online@single-step-one:
- shard-adlp: NOTRUN -> [SKIP][171] ([Intel XE#4837] / [Intel XE#5565]) +14 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#688]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_evict@evict-beng-large-cm.html
- shard-adlp: NOTRUN -> [SKIP][173] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_evict@evict-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][174] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-adlp: NOTRUN -> [SKIP][175] ([Intel XE#5563] / [Intel XE#688])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-dg2-set2: [PASS][176] -> [SKIP][177] ([Intel XE#1392]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1392]) +7 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#1392]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][180] ([Intel XE#1392] / [Intel XE#5575]) +7 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#2322]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#288]) +11 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@once-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][183] ([Intel XE#288] / [Intel XE#5561]) +30 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_exec_fault_mode@once-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#4208]) +275 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-adlp: [PASS][185] -> [ABORT][186] ([Intel XE#5729])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_exec_reset@gt-reset-stress.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#4837]) +11 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@process-many-execqueues-free:
- shard-adlp: NOTRUN -> [SKIP][188] ([Intel XE#4915]) +271 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@xe_exec_system_allocator@process-many-execqueues-free.html
* igt@xe_exec_system_allocator@process-many-stride-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#4943]) +14 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_exec_system_allocator@process-many-stride-mmap-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#4943]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge.html
* igt@xe_exec_system_allocator@twice-malloc-fork-read:
- shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#4915]) +114 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@xe_exec_system_allocator@twice-malloc-fork-read.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-lnl: NOTRUN -> [ABORT][192] ([Intel XE#4917] / [Intel XE#5466])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-adlp: NOTRUN -> [ABORT][193] ([Intel XE#4917] / [Intel XE#5530])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-lnl: NOTRUN -> [ABORT][194] ([Intel XE#4757])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_live_ktest@xe_bo.html
- shard-adlp: NOTRUN -> [SKIP][196] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#2229]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#2229])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
- shard-adlp: NOTRUN -> [SKIP][199] ([Intel XE#2229])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-adlp: NOTRUN -> [SKIP][200] ([Intel XE#2229] / [Intel XE#5488])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@pci-membarrier-bad-object:
- shard-adlp: NOTRUN -> [SKIP][201] ([Intel XE#5100]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_mmap@pci-membarrier-bad-object.html
- shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#5100])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_mmap@pci-membarrier-bad-object.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: NOTRUN -> [FAIL][203] ([Intel XE#4208])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [PASS][204] -> [FAIL][205] ([Intel XE#4208])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_module_load@reload.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_module_load@reload.html
* igt@xe_noexec_ping_pong:
- shard-adlp: NOTRUN -> [SKIP][206] ([Intel XE#379] / [Intel XE#5613])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@xe_noexec_ping_pong.html
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#379])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@xe_noexec_ping_pong.html
* igt@xe_oa@buffer-size:
- shard-adlp: NOTRUN -> [SKIP][208] ([Intel XE#5103])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_oa@buffer-size.html
* igt@xe_oa@non-zero-reason:
- shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#3573]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@xe_oa@non-zero-reason.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-adlp: NOTRUN -> [SKIP][210] ([Intel XE#3573]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_pat@pat-index-xe2:
- shard-adlp: NOTRUN -> [SKIP][211] ([Intel XE#977])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-adlp: NOTRUN -> [SKIP][212] ([Intel XE#979])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#979])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-i2c:
- shard-adlp: NOTRUN -> [SKIP][214] ([Intel XE#5694])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#2284] / [Intel XE#366])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3hot-i2c:
- shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#5742])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@xe_pm@d3hot-i2c.html
- shard-adlp: NOTRUN -> [SKIP][217] ([Intel XE#5742])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s3-exec-after:
- shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#584])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#2284] / [Intel XE#366])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_pm@s4-d3cold-basic-exec.html
- shard-adlp: NOTRUN -> [SKIP][220] ([Intel XE#2284] / [Intel XE#366])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][221] ([Intel XE#579])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [PASS][222] -> [ABORT][223] ([Intel XE#3970])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][224] ([Intel XE#4733]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-adlp: NOTRUN -> [SKIP][225] ([Intel XE#4733] / [Intel XE#5594]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][226] ([Intel XE#944])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#944]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-adlp: NOTRUN -> [SKIP][228] ([Intel XE#944]) +5 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@xe_query@multigpu-query-uc-fw-version-huc.html
- shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#944])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#4130]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-dg2-set2: NOTRUN -> [SKIP][231] ([Intel XE#4130])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#3342])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [PASS][233] -> [SKIP][234] ([Intel XE#4208]) +190 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [FAIL][235] ([Intel XE#4208]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@nullptr:
- shard-dg2-set2: [SKIP][237] ([Intel XE#2134]) -> [PASS][238] +1 other test pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@fbdev@nullptr.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@fbdev@nullptr.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][239] ([Intel XE#4543]) -> [PASS][240] +3 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][241] ([Intel XE#3124]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][243] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [SKIP][245] ([Intel XE#2291]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: [SKIP][247] ([Intel XE#2316]) -> [PASS][248] +5 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3:
- shard-bmg: [INCOMPLETE][249] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][250] +1 other test pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
- shard-adlp: [DMESG-WARN][251] ([Intel XE#4543]) -> [PASS][252] +5 other tests pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][253] ([Intel XE#301]) -> [PASS][254] +2 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][255] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][256] +4 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-adlp: [DMESG-FAIL][257] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][259] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][260] +11 other tests pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][261] ([Intel XE#1503]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][263] ([Intel XE#3012]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][265] ([Intel XE#4596]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][267] ([Intel XE#718]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [SKIP][269] ([Intel XE#4208] / [i915#2575]) -> [PASS][270] +117 other tests pass
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-180.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][271] ([Intel XE#1435]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][273] ([Intel XE#4459]) -> [PASS][274] +1 other test pass
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][275] ([Intel XE#2142]) -> [PASS][276] +1 other test pass
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [SKIP][277] ([Intel XE#4208]) -> [PASS][278] +247 other tests pass
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_module_load@load:
- shard-lnl: ([SKIP][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [ABORT][289], [ABORT][290], [ABORT][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303]) ([Intel XE#378]) -> ([PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-8/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-1/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-3/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-8/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-8/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-7/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-2/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-4/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-lnl-5/igt@xe_module_load@load.html
- shard-bmg: ([PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [SKIP][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354]) ([Intel XE#2457]) -> ([PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-1/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-1/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-1/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-5/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-3/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-5/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-3/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-3/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-2/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-8/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@xe_module_load@load.html
- shard-adlp: ([PASS][378], [PASS][379], [SKIP][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [ABORT][386], [ABORT][387], [ABORT][388], [ABORT][389], [ABORT][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@xe_module_load@load.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@xe_module_load@load.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_module_load@load.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@xe_module_load@load.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@xe_module_load@load.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@xe_module_load@load.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_module_load@load.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_module_load@load.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@xe_module_load@load.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-9/igt@xe_module_load@load.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@xe_module_load@load.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-6/igt@xe_module_load@load.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_module_load@load.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_module_load@load.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_module_load@load.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_module_load@load.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@xe_module_load@load.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_module_load@load.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-8/igt@xe_module_load@load.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-1/igt@xe_module_load@load.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@xe_module_load@load.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-2/igt@xe_module_load@load.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_module_load@load.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-4/igt@xe_module_load@load.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-adlp-3/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [SKIP][448], [PASS][449], [PASS][450], [PASS][451]) ([Intel XE#378]) -> ([PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [PASS][472], [PASS][473], [PASS][474], [PASS][475], [PASS][476])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_module_load@load.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_module_load@load.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_module_load@load.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_module_load@load.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_module_load@load.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_module_load@load.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_module_load@load.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_module_load@load.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_module_load@load.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_module_load@load.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_module_load@load.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_module_load@load.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_module_load@load.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@xe_module_load@load.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@xe_module_load@load.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_module_load@load.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@xe_module_load@load.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@xe_module_load@load.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_module_load@load.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_module_load@load.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_module_load@load.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@xe_module_load@load.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@xe_module_load@load.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_module_load@load.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_module_load@load.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_module_load@load.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_module_load@load.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_module_load@load.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_module_load@load.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_module_load@load.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_module_load@load.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_module_load@load.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_module_load@load.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_module_load@load.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@xe_module_load@load.html
* igt@xe_vm@bind-array-enobufs:
- shard-dg2-set2: [DMESG-FAIL][477] ([Intel XE#3876]) -> [PASS][478]
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_vm@bind-array-enobufs.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][479] ([Intel XE#4208] / [i915#2575]) -> [SKIP][480] ([Intel XE#623])
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][481] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][482] ([Intel XE#316])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][483] ([Intel XE#316]) -> [SKIP][484] ([Intel XE#4208])
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][485] ([Intel XE#4208]) -> [SKIP][486] ([Intel XE#316]) +2 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][487] ([Intel XE#316]) -> [SKIP][488] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][489] ([Intel XE#1124]) -> [SKIP][490] ([Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][491] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][492] ([Intel XE#1124]) +8 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][493] ([Intel XE#4208]) -> [SKIP][494] ([Intel XE#610])
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][495] ([Intel XE#4208]) -> [SKIP][496] ([Intel XE#1124]) +9 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][497] ([Intel XE#1124]) -> [SKIP][498] ([Intel XE#4208]) +10 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][499] ([Intel XE#4208] / [i915#2575]) -> [SKIP][500] ([Intel XE#367]) +4 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][501] ([Intel XE#367]) -> [SKIP][502] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][503] ([Intel XE#2907]) -> [SKIP][504] ([Intel XE#4208]) +2 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][505] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][506] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][507] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][508] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][509] ([Intel XE#4208]) -> [SKIP][510] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][511] ([Intel XE#3442]) -> [SKIP][512] ([Intel XE#4208])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [SKIP][513] ([Intel XE#2351] / [Intel XE#4208]) -> [INCOMPLETE][514] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][515] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][516] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][517] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [INCOMPLETE][518] ([Intel XE#2705] / [Intel XE#4212])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][519] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [DMESG-WARN][520] ([Intel XE#1727] / [Intel XE#3113])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][521] ([Intel XE#4208]) -> [SKIP][522] ([Intel XE#2907])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][523] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][524] ([Intel XE#4208]) +8 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][525] ([Intel XE#4418]) -> [SKIP][526] ([Intel XE#2351] / [Intel XE#4208])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: [SKIP][527] ([Intel XE#306]) -> [SKIP][528] ([Intel XE#4208] / [i915#2575])
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][529] ([Intel XE#4208] / [i915#2575]) -> [SKIP][530] ([Intel XE#306]) +2 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][531] ([Intel XE#373]) -> [SKIP][532] ([Intel XE#4208] / [i915#2575]) +5 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][533] ([Intel XE#4208] / [i915#2575]) -> [SKIP][534] ([Intel XE#373]) +10 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][535] ([Intel XE#307]) -> [SKIP][536] ([Intel XE#4208] / [i915#2575])
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [SKIP][537] ([Intel XE#4208] / [i915#2575]) -> [FAIL][538] ([Intel XE#1178]) +2 other tests fail
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_content_protection@lic-type-0.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_content_protection@lic-type-0.html
- shard-bmg: [SKIP][539] ([Intel XE#2341]) -> [FAIL][540] ([Intel XE#1178])
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][541] ([Intel XE#308]) -> [SKIP][542] ([Intel XE#4208] / [i915#2575])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][543] ([Intel XE#4208] / [i915#2575]) -> [SKIP][544] ([Intel XE#308]) +1 other test skip
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: [SKIP][545] ([Intel XE#4208] / [i915#2575]) -> [SKIP][546] ([Intel XE#455]) +8 other tests skip
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-max-size.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][547] ([Intel XE#4208] / [i915#2575]) -> [SKIP][548] ([Intel XE#323])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][549] ([Intel XE#323]) -> [SKIP][550] ([Intel XE#4208] / [i915#2575])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-set2: [SKIP][551] ([Intel XE#4356]) -> [SKIP][552] ([Intel XE#4208])
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_dp_link_training@uhbr-sst.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][553] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][554] ([Intel XE#455]) +1 other test skip
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_dsc@dsc-basic.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][555] ([Intel XE#455]) -> [SKIP][556] ([Intel XE#2351] / [Intel XE#4208])
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_dsc@dsc-with-bpc-formats.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][557] ([Intel XE#4208]) -> [SKIP][558] ([Intel XE#455]) +5 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: [SKIP][559] ([Intel XE#4422]) -> [SKIP][560] ([Intel XE#4208])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][561] ([Intel XE#776]) -> [SKIP][562] ([Intel XE#4208])
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][563] ([Intel XE#4208] / [i915#2575]) -> [SKIP][564] ([Intel XE#701])
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][565] ([Intel XE#1138]) -> [SKIP][566] ([Intel XE#4208] / [i915#2575])
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_feature_discovery@display-4x.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][567] ([Intel XE#1137]) -> [SKIP][568] ([Intel XE#4208] / [i915#2575])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][569] ([Intel XE#1135]) -> [SKIP][570] ([Intel XE#4208] / [i915#2575])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_feature_discovery@psr2.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_feature_discovery@psr2.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][571] ([Intel XE#455]) -> [SKIP][572] ([Intel XE#4208]) +1 other test skip
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][573] ([Intel XE#651]) -> [SKIP][574] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][575] ([Intel XE#2311]) -> [SKIP][576] ([Intel XE#2312]) +10 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][577] ([Intel XE#651]) -> [SKIP][578] ([Intel XE#4208]) +24 other tests skip
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][579] ([Intel XE#2312]) -> [SKIP][580] ([Intel XE#2311]) +10 other tests skip
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][581] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][582] ([Intel XE#651]) +14 other tests skip
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][583] ([Intel XE#5390]) -> [SKIP][584] ([Intel XE#2312]) +5 other tests skip
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][585] ([Intel XE#2312]) -> [SKIP][586] ([Intel XE#5390]) +3 other tests skip
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][587] ([Intel XE#658]) -> [SKIP][588] ([Intel XE#2351] / [Intel XE#4208])
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][589] ([Intel XE#4208]) -> [SKIP][590] ([Intel XE#651]) +24 other tests skip
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][591] ([Intel XE#4208]) -> [SKIP][592] ([Intel XE#653]) +26 other tests skip
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][593] ([Intel XE#2312]) -> [SKIP][594] ([Intel XE#2313]) +12 other tests skip
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][595] ([Intel XE#653]) -> [SKIP][596] ([Intel XE#4208]) +17 other tests skip
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][597] ([Intel XE#2313]) -> [SKIP][598] ([Intel XE#2312]) +11 other tests skip
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][599] ([Intel XE#653]) -> [SKIP][600] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][601] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][602] ([Intel XE#658])
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][603] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][604] ([Intel XE#653]) +6 other tests skip
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][605] ([Intel XE#346]) -> [SKIP][606] ([Intel XE#4208])
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_joiner@basic-big-joiner.html
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][607] ([Intel XE#2925]) -> [SKIP][608] ([Intel XE#4208])
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: [SKIP][609] ([Intel XE#4208]) -> [SKIP][610] ([Intel XE#4298])
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_joiner@basic-max-non-joiner.html
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][611] ([Intel XE#4208]) -> [SKIP][612] ([Intel XE#2925])
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][613] ([Intel XE#5021]) -> [SKIP][614] ([Intel XE#4596])
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2-set2: [SKIP][615] ([Intel XE#5021]) -> [SKIP][616] ([Intel XE#4208] / [i915#2575])
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-yf.html
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][617] ([Intel XE#4208]) -> [SKIP][618] ([Intel XE#2938])
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][619] ([Intel XE#870]) -> [SKIP][620] ([Intel XE#4208])
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_pm_backlight@fade.html
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][621] ([Intel XE#1122]) -> [SKIP][622] ([Intel XE#2351] / [Intel XE#4208])
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_pm_dc@dc3co-vpb-simulation.html
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][623] ([Intel XE#1129]) -> [SKIP][624] ([Intel XE#4208])
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][625] ([Intel XE#4208]) -> [SKIP][626] ([Intel XE#908])
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][627] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][628] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][629] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][630] ([Intel XE#1406] / [Intel XE#4208]) +9 other tests skip
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][631] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][632] ([Intel XE#1122] / [Intel XE#1406]) +2 other tests skip
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg2-set2: [SKIP][633] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][634] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][635] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][636] ([Intel XE#1406] / [Intel XE#4208]) +12 other tests skip
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][637] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][638] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[638]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][639] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][640] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[639]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr@psr-dpms.html
[640]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][641] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][642] ([Intel XE#1406] / [Intel XE#2939])
[641]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[642]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][643] ([Intel XE#3414]) -> [SKIP][644] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[643]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html
[644]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][645] ([Intel XE#1127]) -> [SKIP][646] ([Intel XE#4208] / [i915#2575])
[645]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[646]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][647] ([Intel XE#4208] / [i915#2575]) -> [SKIP][648] ([Intel XE#3414]) +1 other test skip
[647]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[648]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][649] ([Intel XE#1729]) -> [SKIP][650] ([Intel XE#4208] / [i915#2575])
[649]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[650]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][651] ([Intel XE#4208] / [i915#2575]) -> [SKIP][652] ([Intel XE#330])
[651]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html
[652]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][653] ([Intel XE#455]) -> [SKIP][654] ([Intel XE#4208] / [i915#2575]) +5 other tests skip
[653]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_vrr@flip-dpms.html
[654]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][655] ([Intel XE#4208] / [i915#2575]) -> [SKIP][656] ([Intel XE#2168])
[655]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_vrr@lobf.html
[656]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@kms_vrr@lobf.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram:
- shard-dg2-set2: [SKIP][657] ([Intel XE#4208]) -> [FAIL][658] ([Intel XE#5890])
[657]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
[658]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][659] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][660] ([Intel XE#4208])
[659]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[660]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][661] ([Intel XE#4208]) -> [SKIP][662] ([Intel XE#1123])
[661]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[662]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][663] ([Intel XE#1123]) -> [SKIP][664] ([Intel XE#4208])
[663]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[664]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][665] ([Intel XE#1126]) -> [SKIP][666] ([Intel XE#4208]) +1 other test skip
[665]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
[666]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-dg2-set2: [SKIP][667] ([Intel XE#4208]) -> [SKIP][668] ([Intel XE#5626])
[667]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_eu_stall@blocking-re-enable.html
[668]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][669] ([Intel XE#4208]) -> [SKIP][670] ([Intel XE#4837]) +20 other tests skip
[669]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_eudebug@basic-close.html
[670]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-dg2-set2: [SKIP][671] ([Intel XE#4837]) -> [SKIP][672] ([Intel XE#4208]) +14 other tests skip
[671]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_eudebug@vm-bind-clear-faultable.html
[672]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [SKIP][673] ([Intel XE#1392]) -> [SKIP][674] ([Intel XE#4208]) +3 other tests skip
[673]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[674]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-dg2-set2: [SKIP][675] ([Intel XE#4208]) -> [SKIP][676] ([Intel XE#1392])
[675]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
[676]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][677] ([Intel XE#288]) -> [SKIP][678] ([Intel XE#4208]) +30 other tests skip
[677]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html
[678]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: [SKIP][679] ([Intel XE#4208]) -> [SKIP][680] ([Intel XE#288]) +35 other tests skip
[679]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
[680]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][681] ([Intel XE#2360]) -> [SKIP][682] ([Intel XE#4208])
[681]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[682]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [DMESG-WARN][683] ([Intel XE#3876]) -> [SKIP][684] ([Intel XE#4208])
[683]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
[684]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset:
- shard-dg2-set2: [SKIP][685] ([Intel XE#4208]) -> [SKIP][686] ([Intel XE#4915]) +312 other tests skip
[685]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
[686]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-dg2-set2: [SKIP][687] ([Intel XE#4915]) -> [SKIP][688] ([Intel XE#4208]) +262 other tests skip
[687]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
[688]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [SKIP][689] ([Intel XE#4208]) -> [ABORT][690] ([Intel XE#4917])
[689]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[690]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][691] ([Intel XE#4208]) -> [SKIP][692] ([Intel XE#255])
[691]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
[692]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@xe_huc_copy@huc_copy.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][693] ([Intel XE#4208]) -> [SKIP][694] ([Intel XE#3573]) +12 other tests skip
[693]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
[694]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-dg2-set2: [SKIP][695] ([Intel XE#4208]) -> [SKIP][696] ([Intel XE#5103])
[695]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_oa@mmio-triggered-reports-read.html
[696]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][697] ([Intel XE#3573]) -> [SKIP][698] ([Intel XE#4208]) +10 other tests skip
[697]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_oa@polling-small-buf.html
[698]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_oa@polling-small-buf.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][699] ([Intel XE#4208]) -> [SKIP][700] ([Intel XE#977])
[699]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
[700]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][701] ([Intel XE#979]) -> [SKIP][702] ([Intel XE#4208])
[701]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html
[702]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][703] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][704] ([Intel XE#4208])
[703]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_pm@d3cold-basic.html
[704]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][705] ([Intel XE#4208]) -> [SKIP][706] ([Intel XE#2284])
[705]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pm@d3cold-mocs.html
[706]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-463/igt@xe_pm@d3cold-mocs.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-dg2-set2: [SKIP][707] ([Intel XE#4208]) -> [SKIP][708] ([Intel XE#4650])
[707]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[708]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-dg2-set2: [SKIP][709] ([Intel XE#4733]) -> [SKIP][710] ([Intel XE#4208])
[709]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_pxp@display-black-pxp-fb.html
[710]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-dg2-set2: [SKIP][711] ([Intel XE#4208]) -> [SKIP][712] ([Intel XE#4733]) +2 other tests skip
[711]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
[712]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][713] ([Intel XE#4208]) -> [SKIP][714] ([Intel XE#944]) +1 other test skip
[713]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[714]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-433/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: [SKIP][715] ([Intel XE#944]) -> [SKIP][716] ([Intel XE#4208]) +2 other tests skip
[715]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_query@multigpu-query-invalid-extension.html
[716]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-435/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_render_copy@render-stress-0-copies:
- shard-dg2-set2: [SKIP][717] ([Intel XE#4208]) -> [SKIP][718] ([Intel XE#4814])
[717]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_render_copy@render-stress-0-copies.html
[718]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-432/igt@xe_render_copy@render-stress-0-copies.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: [SKIP][719] ([Intel XE#4208]) -> [SKIP][720] ([Intel XE#4130])
[719]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html
[720]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-466/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-dg2-set2: [SKIP][721] ([Intel XE#4130]) -> [SKIP][722] ([Intel XE#4208])
[721]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
[722]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5613
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5729
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[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#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8511 -> IGT_8512
* Linux: xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578 -> xe-pw-153577v1
IGT_8511: 8511
IGT_8512: 8512
xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578: 3a2760f3080e5188b19cdb4640cec5eb0926d578
xe-pw-153577v1: 153577v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153577v1/index.html
[-- Attachment #2: Type: text/html, Size: 209139 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG
2025-08-27 18:09 ` [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG Harish Chegondi
@ 2025-08-27 20:11 ` Lucas De Marchi
2025-08-28 22:04 ` Harish Chegondi
0 siblings, 1 reply; 9+ messages in thread
From: Lucas De Marchi @ 2025-08-27 20:11 UTC (permalink / raw)
To: Harish Chegondi; +Cc: intel-xe, Matt Atwood
On Wed, Aug 27, 2025 at 11:09:35AM -0700, Harish Chegondi wrote:
>Add Wa_18041344222 for Xe2_HPG that requires disabling
>the perf mode for subslice count for eustall sampling
>when the enabled slices are discontiguous.
>
>v4: Rebase
this changelog is not very useful, is it?
>v3: Skip the workaround for SRIOV VF
>v2: Add Bspec references (Matt A)
> Rebase
>
>Bspec: 79483, 56024
>Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
>Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
>---
> drivers/gpu/drm/xe/regs/xe_gt_regs.h | 1 +
> drivers/gpu/drm/xe/xe_gt_topology.c | 17 +++++++++++++++++
> drivers/gpu/drm/xe/xe_gt_topology.h | 1 +
> drivers/gpu/drm/xe/xe_rtp.c | 6 ++++++
> drivers/gpu/drm/xe/xe_rtp.h | 2 ++
> drivers/gpu/drm/xe/xe_wa.c | 7 +++++++
> 6 files changed, 34 insertions(+)
>
>diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>index f96b2e2b3064..06cb6b02ec64 100644
>--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>@@ -522,6 +522,7 @@
>
> #define TDL_CHICKEN XE_REG_MCR(0xe5f4, XE_REG_OPTION_MASKED)
> #define QID_WAIT_FOR_THREAD_NOT_RUN_DISABLE REG_BIT(12)
>+#define EUSTALL_PERF_SAMPLING_DISABLE REG_BIT(5)
>
> #define LSC_CHICKEN_BIT_0 XE_REG_MCR(0xe7c8)
> #define DISABLE_D8_D16_COASLESCE REG_BIT(30)
>diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
>index a0baa560dd71..0ed7dc9044a5 100644
>--- a/drivers/gpu/drm/xe/xe_gt_topology.c
>+++ b/drivers/gpu/drm/xe/xe_gt_topology.c
>@@ -12,6 +12,7 @@
> #include "regs/xe_gt_regs.h"
> #include "xe_assert.h"
> #include "xe_gt.h"
>+#include "xe_gt_mcr.h"
> #include "xe_gt_printk.h"
> #include "xe_mmio.h"
> #include "xe_wa.h"
>@@ -328,3 +329,19 @@ bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss)
> {
> return test_bit(dss, gt->fuse_topo.c_dss_mask);
> }
>+
>+bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt)
>+{
>+ unsigned int xecore;
>+ int last_group = -1;
>+ u16 group, instance;
>+
>+ for_each_dss_steering(xecore, gt, group, instance) {
>+ if (last_group != group) {
>+ if (group - last_group > 1)
>+ return true;
>+ last_group = group;
>+ }
>+ }
>+ return false;
>+}
>diff --git a/drivers/gpu/drm/xe/xe_gt_topology.h b/drivers/gpu/drm/xe/xe_gt_topology.h
>index c8140704ad4c..fd08b382e259 100644
>--- a/drivers/gpu/drm/xe/xe_gt_topology.h
>+++ b/drivers/gpu/drm/xe/xe_gt_topology.h
>@@ -47,4 +47,5 @@ xe_gt_topology_has_dss_in_quadrant(struct xe_gt *gt, int quad);
> bool xe_gt_has_geometry_dss(struct xe_gt *gt, unsigned int dss);
> bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss);
>
>+bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt);
mind the newline
> #endif /* _XE_GT_TOPOLOGY_H_ */
>diff --git a/drivers/gpu/drm/xe/xe_rtp.c b/drivers/gpu/drm/xe/xe_rtp.c
>index 47ea1521dc80..b5f430d59f80 100644
>--- a/drivers/gpu/drm/xe/xe_rtp.c
>+++ b/drivers/gpu/drm/xe/xe_rtp.c
>@@ -370,3 +370,9 @@ bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
> {
> return xe_configfs_get_psmi_enabled(to_pci_dev(gt_to_xe(gt)->drm.dev));
> }
>+
>+bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
>+ const struct xe_hw_engine *hwe)
>+{
>+ return xe_gt_has_discontiguous_dss_groups(gt);
>+}
>diff --git a/drivers/gpu/drm/xe/xe_rtp.h b/drivers/gpu/drm/xe/xe_rtp.h
>index 7951fefdbe04..d0adb29db7dd 100644
>--- a/drivers/gpu/drm/xe/xe_rtp.h
>+++ b/drivers/gpu/drm/xe/xe_rtp.h
>@@ -480,4 +480,6 @@ bool xe_rtp_match_not_sriov_vf(const struct xe_gt *gt,
> bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
> const struct xe_hw_engine *hwe);
>
>+bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
>+ const struct xe_hw_engine *hwe);
ditto
> #endif
>diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
>index 52c7df4c3afd..1d4efaca110e 100644
>--- a/drivers/gpu/drm/xe/xe_wa.c
>+++ b/drivers/gpu/drm/xe/xe_wa.c
>@@ -612,6 +612,13 @@ static const struct xe_rtp_entry_sr engine_was[] = {
> FUNC(xe_rtp_match_first_render_or_compute)),
> XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, RES_CHK_SPR_DIS))
> },
>+ { XE_RTP_NAME("18041344222"),
>+ XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2002),
>+ FUNC(xe_rtp_match_first_render_or_compute),
>+ FUNC(xe_rtp_match_not_sriov_vf),
>+ FUNC(xe_rtp_match_gt_has_discontiguous_dss_groups)),
>+ XE_RTP_ACTIONS(SET(TDL_CHICKEN, EUSTALL_PERF_SAMPLING_DISABLE))
>+ },
>
> /* Xe2_LPM */
>
>--
>2.48.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG
2025-08-27 20:11 ` Lucas De Marchi
@ 2025-08-28 22:04 ` Harish Chegondi
2025-08-29 15:40 ` Lucas De Marchi
0 siblings, 1 reply; 9+ messages in thread
From: Harish Chegondi @ 2025-08-28 22:04 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe, Matt Atwood
On Wed, Aug 27, 2025 at 03:11:35PM -0500, Lucas De Marchi wrote:
> On Wed, Aug 27, 2025 at 11:09:35AM -0700, Harish Chegondi wrote:
> > Add Wa_18041344222 for Xe2_HPG that requires disabling
> > the perf mode for subslice count for eustall sampling
> > when the enabled slices are discontiguous.
> >
> > v4: Rebase
>
> this changelog is not very useful, is it?
I wanted to let the reviewer know that v4 is just a rebase and no
other changes made. Should I remove the changelog or add more details ?
>
> > v3: Skip the workaround for SRIOV VF
> > v2: Add Bspec references (Matt A)
> > Rebase
> >
> > Bspec: 79483, 56024
> > Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
> > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
> > ---
> > drivers/gpu/drm/xe/regs/xe_gt_regs.h | 1 +
> > drivers/gpu/drm/xe/xe_gt_topology.c | 17 +++++++++++++++++
> > drivers/gpu/drm/xe/xe_gt_topology.h | 1 +
> > drivers/gpu/drm/xe/xe_rtp.c | 6 ++++++
> > drivers/gpu/drm/xe/xe_rtp.h | 2 ++
> > drivers/gpu/drm/xe/xe_wa.c | 7 +++++++
> > 6 files changed, 34 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > index f96b2e2b3064..06cb6b02ec64 100644
> > --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > @@ -522,6 +522,7 @@
> >
> > #define TDL_CHICKEN XE_REG_MCR(0xe5f4, XE_REG_OPTION_MASKED)
> > #define QID_WAIT_FOR_THREAD_NOT_RUN_DISABLE REG_BIT(12)
> > +#define EUSTALL_PERF_SAMPLING_DISABLE REG_BIT(5)
> >
> > #define LSC_CHICKEN_BIT_0 XE_REG_MCR(0xe7c8)
> > #define DISABLE_D8_D16_COASLESCE REG_BIT(30)
> > diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
> > index a0baa560dd71..0ed7dc9044a5 100644
> > --- a/drivers/gpu/drm/xe/xe_gt_topology.c
> > +++ b/drivers/gpu/drm/xe/xe_gt_topology.c
> > @@ -12,6 +12,7 @@
> > #include "regs/xe_gt_regs.h"
> > #include "xe_assert.h"
> > #include "xe_gt.h"
> > +#include "xe_gt_mcr.h"
> > #include "xe_gt_printk.h"
> > #include "xe_mmio.h"
> > #include "xe_wa.h"
> > @@ -328,3 +329,19 @@ bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss)
> > {
> > return test_bit(dss, gt->fuse_topo.c_dss_mask);
> > }
> > +
> > +bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt)
> > +{
> > + unsigned int xecore;
> > + int last_group = -1;
> > + u16 group, instance;
> > +
> > + for_each_dss_steering(xecore, gt, group, instance) {
> > + if (last_group != group) {
> > + if (group - last_group > 1)
> > + return true;
> > + last_group = group;
> > + }
> > + }
> > + return false;
> > +}
> > diff --git a/drivers/gpu/drm/xe/xe_gt_topology.h b/drivers/gpu/drm/xe/xe_gt_topology.h
> > index c8140704ad4c..fd08b382e259 100644
> > --- a/drivers/gpu/drm/xe/xe_gt_topology.h
> > +++ b/drivers/gpu/drm/xe/xe_gt_topology.h
> > @@ -47,4 +47,5 @@ xe_gt_topology_has_dss_in_quadrant(struct xe_gt *gt, int quad);
> > bool xe_gt_has_geometry_dss(struct xe_gt *gt, unsigned int dss);
> > bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss);
> >
> > +bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt);
>
> mind the newline
Will remove
>
> > #endif /* _XE_GT_TOPOLOGY_H_ */
> > diff --git a/drivers/gpu/drm/xe/xe_rtp.c b/drivers/gpu/drm/xe/xe_rtp.c
> > index 47ea1521dc80..b5f430d59f80 100644
> > --- a/drivers/gpu/drm/xe/xe_rtp.c
> > +++ b/drivers/gpu/drm/xe/xe_rtp.c
> > @@ -370,3 +370,9 @@ bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
> > {
> > return xe_configfs_get_psmi_enabled(to_pci_dev(gt_to_xe(gt)->drm.dev));
> > }
> > +
> > +bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
> > + const struct xe_hw_engine *hwe)
> > +{
> > + return xe_gt_has_discontiguous_dss_groups(gt);
> > +}
> > diff --git a/drivers/gpu/drm/xe/xe_rtp.h b/drivers/gpu/drm/xe/xe_rtp.h
> > index 7951fefdbe04..d0adb29db7dd 100644
> > --- a/drivers/gpu/drm/xe/xe_rtp.h
> > +++ b/drivers/gpu/drm/xe/xe_rtp.h
> > @@ -480,4 +480,6 @@ bool xe_rtp_match_not_sriov_vf(const struct xe_gt *gt,
> > bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
> > const struct xe_hw_engine *hwe);
> >
> > +bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
> > + const struct xe_hw_engine *hwe);
>
> ditto
Will remove.
Thanks
Harish.
>
> > #endif
> > diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
> > index 52c7df4c3afd..1d4efaca110e 100644
> > --- a/drivers/gpu/drm/xe/xe_wa.c
> > +++ b/drivers/gpu/drm/xe/xe_wa.c
> > @@ -612,6 +612,13 @@ static const struct xe_rtp_entry_sr engine_was[] = {
> > FUNC(xe_rtp_match_first_render_or_compute)),
> > XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, RES_CHK_SPR_DIS))
> > },
> > + { XE_RTP_NAME("18041344222"),
> > + XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2002),
> > + FUNC(xe_rtp_match_first_render_or_compute),
> > + FUNC(xe_rtp_match_not_sriov_vf),
> > + FUNC(xe_rtp_match_gt_has_discontiguous_dss_groups)),
> > + XE_RTP_ACTIONS(SET(TDL_CHICKEN, EUSTALL_PERF_SAMPLING_DISABLE))
> > + },
> >
> > /* Xe2_LPM */
> >
> > --
> > 2.48.1
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG
2025-08-28 22:04 ` Harish Chegondi
@ 2025-08-29 15:40 ` Lucas De Marchi
2025-08-29 19:28 ` Harish Chegondi
0 siblings, 1 reply; 9+ messages in thread
From: Lucas De Marchi @ 2025-08-29 15:40 UTC (permalink / raw)
To: Harish Chegondi; +Cc: intel-xe, Matt Atwood
On Thu, Aug 28, 2025 at 03:04:24PM -0700, Harish Chegondi wrote:
>On Wed, Aug 27, 2025 at 03:11:35PM -0500, Lucas De Marchi wrote:
>> On Wed, Aug 27, 2025 at 11:09:35AM -0700, Harish Chegondi wrote:
>> > Add Wa_18041344222 for Xe2_HPG that requires disabling
>> > the perf mode for subslice count for eustall sampling
>> > when the enabled slices are discontiguous.
>> >
>> > v4: Rebase
>>
>> this changelog is not very useful, is it?
>I wanted to let the reviewer know that v4 is just a rebase and no
>other changes made. Should I remove the changelog or add more details ?
well... if you didn't have to change, there's no reason to add any info,
is there? You may be re-sending to solve trivial conflicts on the rebase
or because some other patches in the series change. We don't have to
look back at commits 5 years from now and see things like:
v2: Rebase
v3: Rebase
...
v42: Rebase
It's just noise.
I'm even of the opinion that this should be below the '---' so it
doesn't end up in the final commit. But that would be a heated topic for
another discussion.
Lucas De Marchi
>>
>> > v3: Skip the workaround for SRIOV VF
>> > v2: Add Bspec references (Matt A)
>> > Rebase
>> >
>> > Bspec: 79483, 56024
>> > Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
>> > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
>> > ---
>> > drivers/gpu/drm/xe/regs/xe_gt_regs.h | 1 +
>> > drivers/gpu/drm/xe/xe_gt_topology.c | 17 +++++++++++++++++
>> > drivers/gpu/drm/xe/xe_gt_topology.h | 1 +
>> > drivers/gpu/drm/xe/xe_rtp.c | 6 ++++++
>> > drivers/gpu/drm/xe/xe_rtp.h | 2 ++
>> > drivers/gpu/drm/xe/xe_wa.c | 7 +++++++
>> > 6 files changed, 34 insertions(+)
>> >
>> > diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>> > index f96b2e2b3064..06cb6b02ec64 100644
>> > --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>> > +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
>> > @@ -522,6 +522,7 @@
>> >
>> > #define TDL_CHICKEN XE_REG_MCR(0xe5f4, XE_REG_OPTION_MASKED)
>> > #define QID_WAIT_FOR_THREAD_NOT_RUN_DISABLE REG_BIT(12)
>> > +#define EUSTALL_PERF_SAMPLING_DISABLE REG_BIT(5)
>> >
>> > #define LSC_CHICKEN_BIT_0 XE_REG_MCR(0xe7c8)
>> > #define DISABLE_D8_D16_COASLESCE REG_BIT(30)
>> > diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
>> > index a0baa560dd71..0ed7dc9044a5 100644
>> > --- a/drivers/gpu/drm/xe/xe_gt_topology.c
>> > +++ b/drivers/gpu/drm/xe/xe_gt_topology.c
>> > @@ -12,6 +12,7 @@
>> > #include "regs/xe_gt_regs.h"
>> > #include "xe_assert.h"
>> > #include "xe_gt.h"
>> > +#include "xe_gt_mcr.h"
>> > #include "xe_gt_printk.h"
>> > #include "xe_mmio.h"
>> > #include "xe_wa.h"
>> > @@ -328,3 +329,19 @@ bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss)
>> > {
>> > return test_bit(dss, gt->fuse_topo.c_dss_mask);
>> > }
>> > +
>> > +bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt)
>> > +{
>> > + unsigned int xecore;
>> > + int last_group = -1;
>> > + u16 group, instance;
>> > +
>> > + for_each_dss_steering(xecore, gt, group, instance) {
>> > + if (last_group != group) {
>> > + if (group - last_group > 1)
>> > + return true;
>> > + last_group = group;
>> > + }
>> > + }
>> > + return false;
>> > +}
>> > diff --git a/drivers/gpu/drm/xe/xe_gt_topology.h b/drivers/gpu/drm/xe/xe_gt_topology.h
>> > index c8140704ad4c..fd08b382e259 100644
>> > --- a/drivers/gpu/drm/xe/xe_gt_topology.h
>> > +++ b/drivers/gpu/drm/xe/xe_gt_topology.h
>> > @@ -47,4 +47,5 @@ xe_gt_topology_has_dss_in_quadrant(struct xe_gt *gt, int quad);
>> > bool xe_gt_has_geometry_dss(struct xe_gt *gt, unsigned int dss);
>> > bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss);
>> >
>> > +bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt);
>>
>> mind the newline
>Will remove
>>
>> > #endif /* _XE_GT_TOPOLOGY_H_ */
>> > diff --git a/drivers/gpu/drm/xe/xe_rtp.c b/drivers/gpu/drm/xe/xe_rtp.c
>> > index 47ea1521dc80..b5f430d59f80 100644
>> > --- a/drivers/gpu/drm/xe/xe_rtp.c
>> > +++ b/drivers/gpu/drm/xe/xe_rtp.c
>> > @@ -370,3 +370,9 @@ bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
>> > {
>> > return xe_configfs_get_psmi_enabled(to_pci_dev(gt_to_xe(gt)->drm.dev));
>> > }
>> > +
>> > +bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
>> > + const struct xe_hw_engine *hwe)
>> > +{
>> > + return xe_gt_has_discontiguous_dss_groups(gt);
>> > +}
>> > diff --git a/drivers/gpu/drm/xe/xe_rtp.h b/drivers/gpu/drm/xe/xe_rtp.h
>> > index 7951fefdbe04..d0adb29db7dd 100644
>> > --- a/drivers/gpu/drm/xe/xe_rtp.h
>> > +++ b/drivers/gpu/drm/xe/xe_rtp.h
>> > @@ -480,4 +480,6 @@ bool xe_rtp_match_not_sriov_vf(const struct xe_gt *gt,
>> > bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
>> > const struct xe_hw_engine *hwe);
>> >
>> > +bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
>> > + const struct xe_hw_engine *hwe);
>>
>> ditto
>Will remove.
>
>
>Thanks
>Harish.
>
>>
>> > #endif
>> > diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
>> > index 52c7df4c3afd..1d4efaca110e 100644
>> > --- a/drivers/gpu/drm/xe/xe_wa.c
>> > +++ b/drivers/gpu/drm/xe/xe_wa.c
>> > @@ -612,6 +612,13 @@ static const struct xe_rtp_entry_sr engine_was[] = {
>> > FUNC(xe_rtp_match_first_render_or_compute)),
>> > XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, RES_CHK_SPR_DIS))
>> > },
>> > + { XE_RTP_NAME("18041344222"),
>> > + XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2002),
>> > + FUNC(xe_rtp_match_first_render_or_compute),
>> > + FUNC(xe_rtp_match_not_sriov_vf),
>> > + FUNC(xe_rtp_match_gt_has_discontiguous_dss_groups)),
>> > + XE_RTP_ACTIONS(SET(TDL_CHICKEN, EUSTALL_PERF_SAMPLING_DISABLE))
>> > + },
>> >
>> > /* Xe2_LPM */
>> >
>> > --
>> > 2.48.1
>> >
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG
2025-08-29 15:40 ` Lucas De Marchi
@ 2025-08-29 19:28 ` Harish Chegondi
0 siblings, 0 replies; 9+ messages in thread
From: Harish Chegondi @ 2025-08-29 19:28 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe, Matt Atwood
On Fri, Aug 29, 2025 at 10:40:20AM -0500, Lucas De Marchi wrote:
> On Thu, Aug 28, 2025 at 03:04:24PM -0700, Harish Chegondi wrote:
> > On Wed, Aug 27, 2025 at 03:11:35PM -0500, Lucas De Marchi wrote:
> > > On Wed, Aug 27, 2025 at 11:09:35AM -0700, Harish Chegondi wrote:
> > > > Add Wa_18041344222 for Xe2_HPG that requires disabling
> > > > the perf mode for subslice count for eustall sampling
> > > > when the enabled slices are discontiguous.
> > > >
> > > > v4: Rebase
> > >
> > > this changelog is not very useful, is it?
> > I wanted to let the reviewer know that v4 is just a rebase and no
> > other changes made. Should I remove the changelog or add more details ?
>
> well... if you didn't have to change, there's no reason to add any info,
> is there? You may be re-sending to solve trivial conflicts on the rebase
> or because some other patches in the series change. We don't have to
> look back at commits 5 years from now and see things like:
>
> v2: Rebase
> v3: Rebase
> ...
> v42: Rebase
>
> It's just noise.
Makes sense. I will remove the lines from the changelog which indicate
only rebase in that version of the patch. Will that be okay with you?
>
> I'm even of the opinion that this should be below the '---' so it
> doesn't end up in the final commit. But that would be a heated topic for
> another discussion.
I think I read about this somewhere else too. I will try moving the
changelog below '--'
>
> Lucas De Marchi
Thanks
Harish.
>
> > >
> > > > v3: Skip the workaround for SRIOV VF
> > > > v2: Add Bspec references (Matt A)
> > > > Rebase
> > > >
> > > > Bspec: 79483, 56024
> > > > Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com>
> > > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
> > > > ---
> > > > drivers/gpu/drm/xe/regs/xe_gt_regs.h | 1 +
> > > > drivers/gpu/drm/xe/xe_gt_topology.c | 17 +++++++++++++++++
> > > > drivers/gpu/drm/xe/xe_gt_topology.h | 1 +
> > > > drivers/gpu/drm/xe/xe_rtp.c | 6 ++++++
> > > > drivers/gpu/drm/xe/xe_rtp.h | 2 ++
> > > > drivers/gpu/drm/xe/xe_wa.c | 7 +++++++
> > > > 6 files changed, 34 insertions(+)
> > > >
> > > > diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > > > index f96b2e2b3064..06cb6b02ec64 100644
> > > > --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > > > +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> > > > @@ -522,6 +522,7 @@
> > > >
> > > > #define TDL_CHICKEN XE_REG_MCR(0xe5f4, XE_REG_OPTION_MASKED)
> > > > #define QID_WAIT_FOR_THREAD_NOT_RUN_DISABLE REG_BIT(12)
> > > > +#define EUSTALL_PERF_SAMPLING_DISABLE REG_BIT(5)
> > > >
> > > > #define LSC_CHICKEN_BIT_0 XE_REG_MCR(0xe7c8)
> > > > #define DISABLE_D8_D16_COASLESCE REG_BIT(30)
> > > > diff --git a/drivers/gpu/drm/xe/xe_gt_topology.c b/drivers/gpu/drm/xe/xe_gt_topology.c
> > > > index a0baa560dd71..0ed7dc9044a5 100644
> > > > --- a/drivers/gpu/drm/xe/xe_gt_topology.c
> > > > +++ b/drivers/gpu/drm/xe/xe_gt_topology.c
> > > > @@ -12,6 +12,7 @@
> > > > #include "regs/xe_gt_regs.h"
> > > > #include "xe_assert.h"
> > > > #include "xe_gt.h"
> > > > +#include "xe_gt_mcr.h"
> > > > #include "xe_gt_printk.h"
> > > > #include "xe_mmio.h"
> > > > #include "xe_wa.h"
> > > > @@ -328,3 +329,19 @@ bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss)
> > > > {
> > > > return test_bit(dss, gt->fuse_topo.c_dss_mask);
> > > > }
> > > > +
> > > > +bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt)
> > > > +{
> > > > + unsigned int xecore;
> > > > + int last_group = -1;
> > > > + u16 group, instance;
> > > > +
> > > > + for_each_dss_steering(xecore, gt, group, instance) {
> > > > + if (last_group != group) {
> > > > + if (group - last_group > 1)
> > > > + return true;
> > > > + last_group = group;
> > > > + }
> > > > + }
> > > > + return false;
> > > > +}
> > > > diff --git a/drivers/gpu/drm/xe/xe_gt_topology.h b/drivers/gpu/drm/xe/xe_gt_topology.h
> > > > index c8140704ad4c..fd08b382e259 100644
> > > > --- a/drivers/gpu/drm/xe/xe_gt_topology.h
> > > > +++ b/drivers/gpu/drm/xe/xe_gt_topology.h
> > > > @@ -47,4 +47,5 @@ xe_gt_topology_has_dss_in_quadrant(struct xe_gt *gt, int quad);
> > > > bool xe_gt_has_geometry_dss(struct xe_gt *gt, unsigned int dss);
> > > > bool xe_gt_has_compute_dss(struct xe_gt *gt, unsigned int dss);
> > > >
> > > > +bool xe_gt_has_discontiguous_dss_groups(const struct xe_gt *gt);
> > >
> > > mind the newline
> > Will remove
> > >
> > > > #endif /* _XE_GT_TOPOLOGY_H_ */
> > > > diff --git a/drivers/gpu/drm/xe/xe_rtp.c b/drivers/gpu/drm/xe/xe_rtp.c
> > > > index 47ea1521dc80..b5f430d59f80 100644
> > > > --- a/drivers/gpu/drm/xe/xe_rtp.c
> > > > +++ b/drivers/gpu/drm/xe/xe_rtp.c
> > > > @@ -370,3 +370,9 @@ bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
> > > > {
> > > > return xe_configfs_get_psmi_enabled(to_pci_dev(gt_to_xe(gt)->drm.dev));
> > > > }
> > > > +
> > > > +bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
> > > > + const struct xe_hw_engine *hwe)
> > > > +{
> > > > + return xe_gt_has_discontiguous_dss_groups(gt);
> > > > +}
> > > > diff --git a/drivers/gpu/drm/xe/xe_rtp.h b/drivers/gpu/drm/xe/xe_rtp.h
> > > > index 7951fefdbe04..d0adb29db7dd 100644
> > > > --- a/drivers/gpu/drm/xe/xe_rtp.h
> > > > +++ b/drivers/gpu/drm/xe/xe_rtp.h
> > > > @@ -480,4 +480,6 @@ bool xe_rtp_match_not_sriov_vf(const struct xe_gt *gt,
> > > > bool xe_rtp_match_psmi_enabled(const struct xe_gt *gt,
> > > > const struct xe_hw_engine *hwe);
> > > >
> > > > +bool xe_rtp_match_gt_has_discontiguous_dss_groups(const struct xe_gt *gt,
> > > > + const struct xe_hw_engine *hwe);
> > >
> > > ditto
> > Will remove.
> >
> >
> > Thanks
> > Harish.
> >
> > >
> > > > #endif
> > > > diff --git a/drivers/gpu/drm/xe/xe_wa.c b/drivers/gpu/drm/xe/xe_wa.c
> > > > index 52c7df4c3afd..1d4efaca110e 100644
> > > > --- a/drivers/gpu/drm/xe/xe_wa.c
> > > > +++ b/drivers/gpu/drm/xe/xe_wa.c
> > > > @@ -612,6 +612,13 @@ static const struct xe_rtp_entry_sr engine_was[] = {
> > > > FUNC(xe_rtp_match_first_render_or_compute)),
> > > > XE_RTP_ACTIONS(SET(TDL_TSL_CHICKEN, RES_CHK_SPR_DIS))
> > > > },
> > > > + { XE_RTP_NAME("18041344222"),
> > > > + XE_RTP_RULES(GRAPHICS_VERSION_RANGE(2001, 2002),
> > > > + FUNC(xe_rtp_match_first_render_or_compute),
> > > > + FUNC(xe_rtp_match_not_sriov_vf),
> > > > + FUNC(xe_rtp_match_gt_has_discontiguous_dss_groups)),
> > > > + XE_RTP_ACTIONS(SET(TDL_CHICKEN, EUSTALL_PERF_SAMPLING_DISABLE))
> > > > + },
> > > >
> > > > /* Xe2_LPM */
> > > >
> > > > --
> > > > 2.48.1
> > > >
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-08-29 19:29 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-27 18:09 [PATCH v4 1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const Harish Chegondi
2025-08-27 18:09 ` [PATCH v4 2/2] drm/xe/xe2hpg: Add Wa_18041344222 for Xe2_HPG Harish Chegondi
2025-08-27 20:11 ` Lucas De Marchi
2025-08-28 22:04 ` Harish Chegondi
2025-08-29 15:40 ` Lucas De Marchi
2025-08-29 19:28 ` Harish Chegondi
2025-08-27 18:16 ` ✓ CI.KUnit: success for series starting with [v4,1/2] drm/xe/mcr: Make xe_gt_mcr_get_dss_steering() input gt a const Patchwork
2025-08-27 18:54 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-27 20:05 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).