* [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ
@ 2024-06-06 13:06 Michal Wajdeczko
2024-06-06 13:06 ` [PATCH v2 1/2] drm/xe/guc: Split g2h worker function Michal Wajdeczko
` (9 more replies)
0 siblings, 10 replies; 14+ messages in thread
From: Michal Wajdeczko @ 2024-06-06 13:06 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko
v1: https://patchwork.freedesktop.org/series/134523/#rev1
v2: use code from g2h worker instead of g2h irq handler (Matt)
Michal Wajdeczko (2):
drm/xe/guc: Split g2h worker function
drm/xe/guc: Allow CTB G2H processing without G2H IRQ
drivers/gpu/drm/xe/xe_guc_ct.c | 53 ++++++++++++++++++++++++++--
drivers/gpu/drm/xe/xe_guc_ct_types.h | 2 ++
2 files changed, 53 insertions(+), 2 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 1/2] drm/xe/guc: Split g2h worker function
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
@ 2024-06-06 13:06 ` Michal Wajdeczko
2024-06-06 16:10 ` Matthew Brost
2024-06-06 13:06 ` [PATCH v2 2/2] drm/xe/guc: Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
` (8 subsequent siblings)
9 siblings, 1 reply; 14+ messages in thread
From: Michal Wajdeczko @ 2024-06-06 13:06 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Matthew Brost
In the next patch we will want to perform the same steps that
g2h worker function is doing but from the different worker.
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/xe/xe_guc_ct.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index c1f258348f5c..08cf355e2e56 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -1260,9 +1260,8 @@ static int dequeue_one_g2h(struct xe_guc_ct *ct)
return 1;
}
-static void g2h_worker_func(struct work_struct *w)
+static void receive_g2h(struct xe_guc_ct *ct)
{
- struct xe_guc_ct *ct = container_of(w, struct xe_guc_ct, g2h_worker);
struct xe_gt *gt = ct_to_gt(ct);
bool ongoing;
int ret;
@@ -1311,6 +1310,13 @@ static void g2h_worker_func(struct work_struct *w)
xe_pm_runtime_put(ct_to_xe(ct));
}
+static void g2h_worker_func(struct work_struct *w)
+{
+ struct xe_guc_ct *ct = container_of(w, struct xe_guc_ct, g2h_worker);
+
+ receive_g2h(ct);
+}
+
static void guc_ctb_snapshot_capture(struct xe_device *xe, struct guc_ctb *ctb,
struct guc_ctb_snapshot *snapshot,
bool atomic)
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v2 2/2] drm/xe/guc: Allow CTB G2H processing without G2H IRQ
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
2024-06-06 13:06 ` [PATCH v2 1/2] drm/xe/guc: Split g2h worker function Michal Wajdeczko
@ 2024-06-06 13:06 ` Michal Wajdeczko
2024-06-06 16:14 ` Matthew Brost
2024-06-06 13:36 ` ✓ CI.Patch_applied: success for Allow CTB G2H processing without G2H IRQ (rev2) Patchwork
` (7 subsequent siblings)
9 siblings, 1 reply; 14+ messages in thread
From: Michal Wajdeczko @ 2024-06-06 13:06 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Matthew Brost
During early initialization, in the xe_guc_min_load_for_hwconfig()
function, we are successfully enabling CTB communication, but it
will only allow us to send non-blocking H2G messages, as due to
not yet enabled IRQs, including G2H IRQs, we will not notice any
new G2H message sent by the GuC, including replies to our blocking
H2G request messages. And those successful replies are mandatory
for the VF drivers to continue normal operations.
As attempt to workaround this driver initialization ordering issue,
introduce special safe-mode CTB worker, that will periodically
trigger G2H processing, like original IRQ handler, in case no
MSI/MSIX IRQs were enabled on the driver yet. Once we detect that
IRQ were enabled, we will stop this worker.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
v2: use code from g2h worker instead of g2h irq handler (Matt)
---
drivers/gpu/drm/xe/xe_guc_ct.c | 43 ++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc_ct_types.h | 2 ++
2 files changed, 45 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index 08cf355e2e56..936b63483e96 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -126,7 +126,9 @@ static void guc_ct_fini(struct drm_device *drm, void *arg)
xa_destroy(&ct->fence_lookup);
}
+static void receive_g2h(struct xe_guc_ct *ct);
static void g2h_worker_func(struct work_struct *w);
+static void safe_mode_worker_func(struct work_struct *w);
static void primelockdep(struct xe_guc_ct *ct)
{
@@ -155,6 +157,7 @@ int xe_guc_ct_init(struct xe_guc_ct *ct)
spin_lock_init(&ct->fast_lock);
xa_init(&ct->fence_lookup);
INIT_WORK(&ct->g2h_worker, g2h_worker_func);
+ INIT_DELAYED_WORK(&ct->safe_mode_worker, safe_mode_worker_func);
init_waitqueue_head(&ct->wq);
init_waitqueue_head(&ct->g2h_fence_wq);
@@ -321,6 +324,42 @@ static void xe_guc_ct_set_state(struct xe_guc_ct *ct,
mutex_unlock(&ct->lock);
}
+static bool ct_needs_safe_mode(struct xe_guc_ct *ct)
+{
+ return !pci_dev_msi_enabled(to_pci_dev(ct_to_xe(ct)->drm.dev));
+}
+
+static bool ct_restart_safe_mode_worker(struct xe_guc_ct *ct)
+{
+ if (!ct_needs_safe_mode(ct))
+ return false;
+
+ queue_delayed_work(ct->g2h_wq, &ct->safe_mode_worker, HZ / 10);
+ return true;
+}
+
+static void safe_mode_worker_func(struct work_struct *w)
+{
+ struct xe_guc_ct *ct = container_of(w, struct xe_guc_ct, safe_mode_worker.work);
+
+ receive_g2h(ct);
+
+ if (!ct_restart_safe_mode_worker(ct))
+ xe_gt_dbg(ct_to_gt(ct), "GuC CT safe-mode canceled\n");
+}
+
+static void ct_enter_safe_mode(struct xe_guc_ct *ct)
+{
+ if (ct_restart_safe_mode_worker(ct))
+ xe_gt_dbg(ct_to_gt(ct), "GuC CT safe-mode enabled\n");
+}
+
+static void ct_exit_safe_mode(struct xe_guc_ct *ct)
+{
+ if (cancel_delayed_work_sync(&ct->safe_mode_worker))
+ xe_gt_dbg(ct_to_gt(ct), "GuC CT safe-mode disabled\n");
+}
+
int xe_guc_ct_enable(struct xe_guc_ct *ct)
{
struct xe_device *xe = ct_to_xe(ct);
@@ -350,6 +389,9 @@ int xe_guc_ct_enable(struct xe_guc_ct *ct)
wake_up_all(&ct->wq);
xe_gt_dbg(gt, "GuC CT communication channel enabled\n");
+ if (ct_needs_safe_mode(ct))
+ ct_enter_safe_mode(ct);
+
return 0;
err_out:
@@ -373,6 +415,7 @@ static void stop_g2h_handler(struct xe_guc_ct *ct)
void xe_guc_ct_disable(struct xe_guc_ct *ct)
{
xe_guc_ct_set_state(ct, XE_GUC_CT_STATE_DISABLED);
+ ct_exit_safe_mode(ct);
stop_g2h_handler(ct);
}
diff --git a/drivers/gpu/drm/xe/xe_guc_ct_types.h b/drivers/gpu/drm/xe/xe_guc_ct_types.h
index fede4c6e93cb..761cb9031298 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct_types.h
+++ b/drivers/gpu/drm/xe/xe_guc_ct_types.h
@@ -110,6 +110,8 @@ struct xe_guc_ct {
u32 g2h_outstanding;
/** @g2h_worker: worker to process G2H messages */
struct work_struct g2h_worker;
+ /** @safe_mode_worker: worker to check G2H messages with IRQ disabled */
+ struct delayed_work safe_mode_worker;
/** @state: CT state */
enum xe_guc_ct_state state;
/** @fence_seqno: G2H fence seqno - 16 bits used by CT */
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✓ CI.Patch_applied: success for Allow CTB G2H processing without G2H IRQ (rev2)
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
2024-06-06 13:06 ` [PATCH v2 1/2] drm/xe/guc: Split g2h worker function Michal Wajdeczko
2024-06-06 13:06 ` [PATCH v2 2/2] drm/xe/guc: Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
@ 2024-06-06 13:36 ` Patchwork
2024-06-06 13:37 ` ✓ CI.checkpatch: " Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-06 13:36 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Allow CTB G2H processing without G2H IRQ (rev2)
URL : https://patchwork.freedesktop.org/series/134523/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 2163887f734a drm-tip: 2024y-06m-06d-13h-26m-51s UTC integration manifest
=== git am output follows ===
Applying: drm/xe/guc: Split g2h worker function
Applying: drm/xe/guc: Allow CTB G2H processing without G2H IRQ
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.checkpatch: success for Allow CTB G2H processing without G2H IRQ (rev2)
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
` (2 preceding siblings ...)
2024-06-06 13:36 ` ✓ CI.Patch_applied: success for Allow CTB G2H processing without G2H IRQ (rev2) Patchwork
@ 2024-06-06 13:37 ` Patchwork
2024-06-06 13:38 ` ✓ CI.KUnit: " Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-06 13:37 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Allow CTB G2H processing without G2H IRQ (rev2)
URL : https://patchwork.freedesktop.org/series/134523/
State : success
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 2ffa198f883869d0289fb818ee27dc718b43a391
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Thu Jun 6 15:06:39 2024 +0200
drm/xe/guc: Allow CTB G2H processing without G2H IRQ
During early initialization, in the xe_guc_min_load_for_hwconfig()
function, we are successfully enabling CTB communication, but it
will only allow us to send non-blocking H2G messages, as due to
not yet enabled IRQs, including G2H IRQs, we will not notice any
new G2H message sent by the GuC, including replies to our blocking
H2G request messages. And those successful replies are mandatory
for the VF drivers to continue normal operations.
As attempt to workaround this driver initialization ordering issue,
introduce special safe-mode CTB worker, that will periodically
trigger G2H processing, like original IRQ handler, in case no
MSI/MSIX IRQs were enabled on the driver yet. Once we detect that
IRQ were enabled, we will stop this worker.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
+ /mt/dim checkpatch 2163887f734af2f0a812a322e1a53ef6d62bf3d5 drm-intel
8dcfe4221b3c drm/xe/guc: Split g2h worker function
2ffa198f8838 drm/xe/guc: Allow CTB G2H processing without G2H IRQ
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for Allow CTB G2H processing without G2H IRQ (rev2)
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
` (3 preceding siblings ...)
2024-06-06 13:37 ` ✓ CI.checkpatch: " Patchwork
@ 2024-06-06 13:38 ` Patchwork
2024-06-06 13:49 ` ✓ CI.Build: " Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-06 13:38 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Allow CTB G2H processing without G2H IRQ (rev2)
URL : https://patchwork.freedesktop.org/series/134523/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:37:10] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:37:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[13:37:39] Starting KUnit Kernel (1/1)...
[13:37:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:37:40] =================== guc_dbm (7 subtests) ===================
[13:37:40] [PASSED] test_empty
[13:37:40] [PASSED] test_default
[13:37:40] ======================== test_size ========================
[13:37:40] [PASSED] 4
[13:37:40] [PASSED] 8
[13:37:40] [PASSED] 32
[13:37:40] [PASSED] 256
[13:37:40] ==================== [PASSED] test_size ====================
[13:37:40] ======================= test_reuse ========================
[13:37:40] [PASSED] 4
[13:37:40] [PASSED] 8
[13:37:40] [PASSED] 32
[13:37:40] [PASSED] 256
[13:37:40] =================== [PASSED] test_reuse ====================
[13:37:40] =================== test_range_overlap ====================
[13:37:40] [PASSED] 4
[13:37:40] [PASSED] 8
[13:37:40] [PASSED] 32
[13:37:40] [PASSED] 256
[13:37:40] =============== [PASSED] test_range_overlap ================
[13:37:40] =================== test_range_compact ====================
[13:37:40] [PASSED] 4
[13:37:40] [PASSED] 8
[13:37:40] [PASSED] 32
[13:37:40] [PASSED] 256
[13:37:40] =============== [PASSED] test_range_compact ================
[13:37:40] ==================== test_range_spare =====================
[13:37:40] [PASSED] 4
[13:37:40] [PASSED] 8
[13:37:40] [PASSED] 32
[13:37:40] [PASSED] 256
[13:37:40] ================ [PASSED] test_range_spare =================
[13:37:40] ===================== [PASSED] guc_dbm =====================
[13:37:40] =================== guc_idm (6 subtests) ===================
[13:37:40] [PASSED] bad_init
[13:37:40] [PASSED] no_init
[13:37:40] [PASSED] init_fini
[13:37:40] [PASSED] check_used
[13:37:40] [PASSED] check_quota
[13:37:40] [PASSED] check_all
[13:37:40] ===================== [PASSED] guc_idm =====================
[13:37:40] ================== no_relay (3 subtests) ===================
[13:37:40] [PASSED] xe_drops_guc2pf_if_not_ready
[13:37:40] [PASSED] xe_drops_guc2vf_if_not_ready
[13:37:40] [PASSED] xe_rejects_send_if_not_ready
[13:37:40] ==================== [PASSED] no_relay =====================
[13:37:40] ================== pf_relay (14 subtests) ==================
[13:37:40] [PASSED] pf_rejects_guc2pf_too_short
[13:37:40] [PASSED] pf_rejects_guc2pf_too_long
[13:37:40] [PASSED] pf_rejects_guc2pf_no_payload
[13:37:40] [PASSED] pf_fails_no_payload
[13:37:40] [PASSED] pf_fails_bad_origin
[13:37:40] [PASSED] pf_fails_bad_type
[13:37:40] [PASSED] pf_txn_reports_error
[13:37:40] [PASSED] pf_txn_sends_pf2guc
[13:37:40] [PASSED] pf_sends_pf2guc
[13:37:40] [SKIPPED] pf_loopback_nop
[13:37:40] [SKIPPED] pf_loopback_echo
[13:37:40] [SKIPPED] pf_loopback_fail
[13:37:40] [SKIPPED] pf_loopback_busy
[13:37:40] [SKIPPED] pf_loopback_retry
[13:37:40] ==================== [PASSED] pf_relay =====================
[13:37:40] ================== vf_relay (3 subtests) ===================
[13:37:40] [PASSED] vf_rejects_guc2vf_too_short
[13:37:40] [PASSED] vf_rejects_guc2vf_too_long
[13:37:40] [PASSED] vf_rejects_guc2vf_no_payload
[13:37:40] ==================== [PASSED] vf_relay =====================
[13:37:40] ================= pf_service (11 subtests) =================
[13:37:40] [PASSED] pf_negotiate_any
[13:37:40] [PASSED] pf_negotiate_base_match
[13:37:40] [PASSED] pf_negotiate_base_newer
[13:37:40] [PASSED] pf_negotiate_base_next
[13:37:40] [SKIPPED] pf_negotiate_base_older
[13:37:40] [PASSED] pf_negotiate_base_prev
[13:37:40] [PASSED] pf_negotiate_latest_match
[13:37:40] [PASSED] pf_negotiate_latest_newer
[13:37:40] [PASSED] pf_negotiate_latest_next
[13:37:40] [SKIPPED] pf_negotiate_latest_older
[13:37:40] [SKIPPED] pf_negotiate_latest_prev
[13:37:40] =================== [PASSED] pf_service ====================
[13:37:40] ===================== lmtt (1 subtest) =====================
[13:37:40] ======================== test_ops =========================
[13:37:40] [PASSED] 2-level
[13:37:40] [PASSED] multi-level
[13:37:40] ==================== [PASSED] test_ops =====================
[13:37:40] ====================== [PASSED] lmtt =======================
[13:37:40] ==================== xe_bo (2 subtests) ====================
[13:37:40] [SKIPPED] xe_ccs_migrate_kunit
[13:37:40] [SKIPPED] xe_bo_evict_kunit
[13:37:40] ===================== [SKIPPED] xe_bo ======================
[13:37:40] ================== xe_dma_buf (1 subtest) ==================
[13:37:40] [SKIPPED] xe_dma_buf_kunit
[13:37:40] =================== [SKIPPED] xe_dma_buf ===================
[13:37:40] ================== xe_migrate (1 subtest) ==================
[13:37:40] [SKIPPED] xe_migrate_sanity_kunit
[13:37:40] =================== [SKIPPED] xe_migrate ===================
[13:37:40] =================== xe_mocs (2 subtests) ===================
[13:37:40] [SKIPPED] xe_live_mocs_kernel_kunit
[13:37:40] [SKIPPED] xe_live_mocs_reset_kunit
[13:37:40] ==================== [SKIPPED] xe_mocs =====================
[13:37:40] ==================== args (11 subtests) ====================
[13:37:40] [PASSED] count_args_test
[13:37:40] [PASSED] call_args_example
[13:37:40] [PASSED] call_args_test
[13:37:40] [PASSED] drop_first_arg_example
[13:37:40] [PASSED] drop_first_arg_test
[13:37:40] [PASSED] first_arg_example
[13:37:40] [PASSED] first_arg_test
[13:37:40] [PASSED] last_arg_example
[13:37:40] [PASSED] last_arg_test
[13:37:40] [PASSED] pick_arg_example
[13:37:40] [PASSED] sep_comma_example
[13:37:40] ====================== [PASSED] args =======================
[13:37:40] =================== xe_pci (2 subtests) ====================
[13:37:40] [PASSED] xe_gmdid_graphics_ip
[13:37:40] [PASSED] xe_gmdid_media_ip
[13:37:40] ===================== [PASSED] xe_pci ======================
[13:37:40] ==================== xe_rtp (1 subtest) ====================
[13:37:40] ================== xe_rtp_process_tests ===================
[13:37:40] [PASSED] coalesce-same-reg
[13:37:40] [PASSED] no-match-no-add
[13:37:40] [PASSED] no-match-no-add-multiple-rules
[13:37:40] [PASSED] two-regs-two-entries
[13:37:40] [PASSED] clr-one-set-other
[13:37:40] [PASSED] set-field
[13:37:40] [PASSED] conflict-duplicate
[13:37:40] [PASSED] conflict-not-disjoint
[13:37:40] [PASSED] conflict-reg-type
[13:37:40] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[13:37:40] ===================== [PASSED] xe_rtp ======================
[13:37:40] ==================== xe_wa (1 subtest) =====================
[13:37:40] ======================== xe_wa_gt =========================
[13:37:40] [PASSED] TIGERLAKE (B0)
[13:37:40] [PASSED] DG1 (A0)
[13:37:40] [PASSED] DG1 (B0)
[13:37:40] [PASSED] ALDERLAKE_S (A0)
[13:37:40] [PASSED] ALDERLAKE_S (B0)
[13:37:40] [PASSED] ALDERLAKE_S (C0)
[13:37:40] [PASSED] ALDERLAKE_S (D0)
[13:37:40] [PASSED] ALDERLAKE_P (A0)
[13:37:40] [PASSED] ALDERLAKE_P (B0)
[13:37:40] [PASSED] ALDERLAKE_P (C0)
[13:37:40] [PASSED] ALDERLAKE_S_RPLS (D0)
[13:37:40] [PASSED] ALDERLAKE_P_RPLU (E0)
[13:37:40] [PASSED] DG2_G10 (C0)
[13:37:40] [PASSED] DG2_G11 (B1)
[13:37:40] [PASSED] DG2_G12 (A1)
[13:37:40] [PASSED] METEORLAKE (g:A0, m:A0)
[13:37:40] [PASSED] METEORLAKE (g:A0, m:A0)
[13:37:40] [PASSED] METEORLAKE (g:A0, m:A0)
[13:37:40] [PASSED] LUNARLAKE (g:A0, m:A0)
[13:37:40] [PASSED] LUNARLAKE (g:B0, m:A0)
[13:37:40] ==================== [PASSED] xe_wa_gt =====================
[13:37:40] ====================== [PASSED] xe_wa ======================
[13:37:40] ============================================================
[13:37:40] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[13:37:40] Elapsed time: 29.741s total, 4.286s configuring, 25.184s building, 0.219s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:37:40] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:37:42] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[13:38:03] Starting KUnit Kernel (1/1)...
[13:38:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:38:03] ============ drm_test_pick_cmdline (2 subtests) ============
[13:38:03] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:38:03] =============== drm_test_pick_cmdline_named ===============
[13:38:03] [PASSED] NTSC
[13:38:03] [PASSED] NTSC-J
[13:38:03] [PASSED] PAL
[13:38:03] [PASSED] PAL-M
[13:38:03] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:38:03] ============== [PASSED] drm_test_pick_cmdline ==============
[13:38:03] ================== drm_buddy (7 subtests) ==================
[13:38:03] [PASSED] drm_test_buddy_alloc_limit
[13:38:03] [PASSED] drm_test_buddy_alloc_optimistic
[13:38:03] [PASSED] drm_test_buddy_alloc_pessimistic
[13:38:03] [PASSED] drm_test_buddy_alloc_pathological
[13:38:03] [PASSED] drm_test_buddy_alloc_contiguous
[13:38:03] [PASSED] drm_test_buddy_alloc_clear
[13:38:03] [PASSED] drm_test_buddy_alloc_range_bias
[13:38:03] ==================== [PASSED] drm_buddy ====================
[13:38:03] ============= drm_cmdline_parser (40 subtests) =============
[13:38:03] [PASSED] drm_test_cmdline_force_d_only
[13:38:03] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:38:03] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:38:03] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:38:03] [PASSED] drm_test_cmdline_force_e_only
[13:38:03] [PASSED] drm_test_cmdline_res
[13:38:03] [PASSED] drm_test_cmdline_res_vesa
[13:38:03] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:38:03] [PASSED] drm_test_cmdline_res_rblank
[13:38:03] [PASSED] drm_test_cmdline_res_bpp
[13:38:03] [PASSED] drm_test_cmdline_res_refresh
[13:38:03] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:38:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:38:03] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:38:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:38:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:38:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:38:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:38:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:38:03] [PASSED] drm_test_cmdline_res_margins_force_on
[13:38:03] [PASSED] drm_test_cmdline_res_vesa_margins
[13:38:03] [PASSED] drm_test_cmdline_name
[13:38:03] [PASSED] drm_test_cmdline_name_bpp
[13:38:03] [PASSED] drm_test_cmdline_name_option
[13:38:03] [PASSED] drm_test_cmdline_name_bpp_option
[13:38:03] [PASSED] drm_test_cmdline_rotate_0
[13:38:03] [PASSED] drm_test_cmdline_rotate_90
[13:38:03] [PASSED] drm_test_cmdline_rotate_180
[13:38:03] [PASSED] drm_test_cmdline_rotate_270
[13:38:03] [PASSED] drm_test_cmdline_hmirror
[13:38:03] [PASSED] drm_test_cmdline_vmirror
[13:38:03] [PASSED] drm_test_cmdline_margin_options
[13:38:03] [PASSED] drm_test_cmdline_multiple_options
[13:38:03] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:38:03] [PASSED] drm_test_cmdline_extra_and_option
[13:38:03] [PASSED] drm_test_cmdline_freestanding_options
[13:38:03] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:38:03] [PASSED] drm_test_cmdline_panel_orientation
[13:38:03] ================ drm_test_cmdline_invalid =================
[13:38:03] [PASSED] margin_only
[13:38:03] [PASSED] interlace_only
[13:38:03] [PASSED] res_missing_x
[13:38:03] [PASSED] res_missing_y
[13:38:03] [PASSED] res_bad_y
[13:38:03] [PASSED] res_missing_y_bpp
[13:38:03] [PASSED] res_bad_bpp
[13:38:03] [PASSED] res_bad_refresh
[13:38:03] [PASSED] res_bpp_refresh_force_on_off
[13:38:03] [PASSED] res_invalid_mode
[13:38:03] [PASSED] res_bpp_wrong_place_mode
[13:38:03] [PASSED] name_bpp_refresh
[13:38:03] [PASSED] name_refresh
[13:38:03] [PASSED] name_refresh_wrong_mode
[13:38:03] [PASSED] name_refresh_invalid_mode
[13:38:03] [PASSED] rotate_multiple
[13:38:03] [PASSED] rotate_invalid_val
[13:38:03] [PASSED] rotate_truncated
[13:38:03] [PASSED] invalid_option
[13:38:03] [PASSED] invalid_tv_option
[13:38:03] [PASSED] truncated_tv_option
[13:38:03] ============ [PASSED] drm_test_cmdline_invalid =============
[13:38:03] =============== drm_test_cmdline_tv_options ===============
[13:38:03] [PASSED] NTSC
[13:38:03] [PASSED] NTSC_443
[13:38:03] [PASSED] NTSC_J
[13:38:03] [PASSED] PAL
[13:38:03] [PASSED] PAL_M
[13:38:03] [PASSED] PAL_N
[13:38:03] [PASSED] SECAM
[13:38:03] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:38:03] =============== [PASSED] drm_cmdline_parser ================
[13:38:03] ========== drmm_connector_hdmi_init (19 subtests) ==========
[13:38:03] [PASSED] drm_test_connector_hdmi_init_valid
[13:38:03] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:38:03] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:38:03] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:38:03] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:38:03] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:38:03] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:38:03] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:38:03] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:38:03] [PASSED] drm_test_connector_hdmi_init_null_product
[13:38:03] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:38:03] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:38:03] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:38:03] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:38:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:38:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:38:03] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:38:03] ========= drm_test_connector_hdmi_init_type_valid =========
[13:38:03] [PASSED] HDMI-A
[13:38:03] [PASSED] HDMI-B
[13:38:03] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:38:03] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:38:03] [PASSED] Unknown
[13:38:03] [PASSED] VGA
[13:38:03] [PASSED] DVI-I
[13:38:03] [PASSED] DVI-D
[13:38:03] [PASSED] DVI-A
[13:38:03] [PASSED] Composite
[13:38:03] [PASSED] SVIDEO
[13:38:03] [PASSED] LVDS
[13:38:03] [PASSED] Component
[13:38:03] [PASSED] DIN
[13:38:03] [PASSED] DP
[13:38:03] [PASSED] TV
[13:38:03] [PASSED] eDP
[13:38:03] [PASSED] Virtual
[13:38:03] [PASSED] DSI
[13:38:03] [PASSED] DPI
[13:38:03] [PASSED] Writeback
[13:38:03] [PASSED] SPI
[13:38:03] [PASSED] USB
[13:38:03] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:38:03] ============ [PASSED] drmm_connector_hdmi_init =============
[13:38:03] ============= drmm_connector_init (3 subtests) =============
[13:38:03] [PASSED] drm_test_drmm_connector_init
[13:38:03] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:38:03] ========= drm_test_drmm_connector_init_type_valid =========
[13:38:03] [PASSED] Unknown
[13:38:03] [PASSED] VGA
[13:38:03] [PASSED] DVI-I
[13:38:03] [PASSED] DVI-D
[13:38:03] [PASSED] DVI-A
[13:38:03] [PASSED] Composite
[13:38:03] [PASSED] SVIDEO
[13:38:03] [PASSED] LVDS
[13:38:03] [PASSED] Component
[13:38:03] [PASSED] DIN
[13:38:03] [PASSED] DP
[13:38:03] [PASSED] HDMI-A
[13:38:03] [PASSED] HDMI-B
[13:38:03] [PASSED] TV
[13:38:03] [PASSED] eDP
[13:38:03] [PASSED] Virtual
[13:38:03] [PASSED] DSI
[13:38:03] [PASSED] DPI
[13:38:03] [PASSED] Writeback
[13:38:03] [PASSED] SPI
[13:38:03] [PASSED] USB
[13:38:03] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:38:03] =============== [PASSED] drmm_connector_init ===============
[13:38:03] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:38:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:38:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:38:03] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:38:03] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:38:03] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:38:03] [PASSED] NTSC
[13:38:03] [PASSED] NTSC-443
[13:38:03] [PASSED] NTSC-J
[13:38:03] [PASSED] PAL
[13:38:03] [PASSED] PAL-M
[13:38:03] [PASSED] PAL-N
[13:38:03] [PASSED] SECAM
[13:38:03] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:38:03] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:38:03] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:38:03] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:38:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:38:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:38:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:38:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:38:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:38:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:38:03] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:38:03] [PASSED] VIC 96
[13:38:03] [PASSED] VIC 97
[13:38:03] [PASSED] VIC 101
[13:38:03] [PASSED] VIC 102
[13:38:03] [PASSED] VIC 106
[13:38:03] [PASSED] VIC 107
[13:38:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:38:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:38:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:38:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:38:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:38:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:38:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:38:03] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:38:03] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:38:03] [PASSED] Automatic
[13:38:03] [PASSED] Full
[13:38:03] [PASSED] Limited 16:235
[13:38:03] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:38:03] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:38:03] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:38:03] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:38:03] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:38:03] [PASSED] RGB
[13:38:03] [PASSED] YUV 4:2:0
[13:38:03] [PASSED] YUV 4:2:2
[13:38:03] [PASSED] YUV 4:4:4
[13:38:03] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:38:03] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:38:03] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:38:03] ============= drm_damage_helper (21 subtests) ==============
[13:38:03] [PASSED] drm_test_damage_iter_no_damage
[13:38:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:38:03] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:38:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:38:03] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:38:03] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:38:03] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:38:03] [PASSED] drm_test_damage_iter_simple_damage
[13:38:03] [PASSED] drm_test_damage_iter_single_damage
[13:38:03] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:38:03] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:38:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:38:03] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:38:03] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:38:03] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:38:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:38:03] [PASSED] drm_test_damage_iter_damage
[13:38:03] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:38:03] [PASSED] drm_test_damage_iter_damage_one_outside
[13:38:03] [PASSED] drm_test_damage_iter_damage_src_moved
[13:38:03] [PASSED] drm_test_damage_iter_damage_not_visible
[13:38:03] ================ [PASSED] drm_damage_helper ================
[13:38:03] ============== drm_dp_mst_helper (3 subtests) ==============
[13:38:03] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:38:03] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:38:03] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:38:03] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:38:03] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:38:03] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:38:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:38:03] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:38:03] [PASSED] Link rate 2000000 lane count 4
[13:38:03] [PASSED] Link rate 2000000 lane count 2
[13:38:03] [PASSED] Link rate 2000000 lane count 1
[13:38:03] [PASSED] Link rate 1350000 lane count 4
[13:38:03] [PASSED] Link rate 1350000 lane count 2
[13:38:03] [PASSED] Link rate 1350000 lane count 1
[13:38:03] [PASSED] Link rate 1000000 lane count 4
[13:38:03] [PASSED] Link rate 1000000 lane count 2
[13:38:03] [PASSED] Link rate 1000000 lane count 1
[13:38:03] [PASSED] Link rate 810000 lane count 4
[13:38:03] [PASSED] Link rate 810000 lane count 2
[13:38:03] [PASSED] Link rate 810000 lane count 1
[13:38:03] [PASSED] Link rate 540000 lane count 4
[13:38:03] [PASSED] Link rate 540000 lane count 2
[13:38:03] [PASSED] Link rate 540000 lane count 1
[13:38:03] [PASSED] Link rate 270000 lane count 4
[13:38:03] [PASSED] Link rate 270000 lane count 2
[13:38:03] [PASSED] Link rate 270000 lane count 1
[13:38:03] [PASSED] Link rate 162000 lane count 4
[13:38:03] [PASSED] Link rate 162000 lane count 2
[13:38:03] [PASSED] Link rate 162000 lane count 1
[13:38:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:38:03] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:38:03] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:38:03] [PASSED] DP_POWER_UP_PHY with port number
[13:38:03] [PASSED] DP_POWER_DOWN_PHY with port number
[13:38:03] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:38:03] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:38:03] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:38:03] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:38:03] [PASSED] DP_QUERY_PAYLOAD with port number
[13:38:03] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:38:03] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:38:03] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:38:03] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:38:03] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:38:03] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:38:03] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:38:03] [PASSED] DP_REMOTE_I2C_READ with port number
[13:38:03] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:38:03] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:38:03] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:38:03] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:38:03] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:38:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:38:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:38:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:38:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:38:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:38:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:38:03] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:38:03] ================ [PASSED] drm_dp_mst_helper ================
[13:38:03] ================== drm_exec (7 subtests) ===================
[13:38:03] [PASSED] sanitycheck
[13:38:03] [PASSED] test_lock
[13:38:03] [PASSED] test_lock_unlock
[13:38:03] [PASSED] test_duplicates
[13:38:03] [PASSED] test_prepare
[13:38:03] [PASSED] test_prepare_array
[13:38:03] [PASSED] test_multiple_loops
[13:38:03] ==================== [PASSED] drm_exec =====================
[13:38:03] =========== drm_format_helper_test (17 subtests) ===========
[13:38:03] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:38:03] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:38:03] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:38:03] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:38:03] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:38:03] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:38:03] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:38:03] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:38:03] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:38:03] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:38:03] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:38:03] ==================== drm_test_fb_swab =====================
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ================ [PASSED] drm_test_fb_swab =================
[13:38:03] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:38:03] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:38:03] [PASSED] single_pixel_source_buffer
[13:38:03] [PASSED] single_pixel_clip_rectangle
[13:38:03] [PASSED] well_known_colors
[13:38:03] [PASSED] destination_pitch
[13:38:03] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:38:03] ================= drm_test_fb_clip_offset =================
[13:38:03] [PASSED] pass through
[13:38:03] [PASSED] horizontal offset
[13:38:03] [PASSED] vertical offset
[13:38:03] [PASSED] horizontal and vertical offset
[13:38:03] [PASSED] horizontal offset (custom pitch)
[13:38:03] [PASSED] vertical offset (custom pitch)
[13:38:03] [PASSED] horizontal and vertical offset (custom pitch)
[13:38:03] ============= [PASSED] drm_test_fb_clip_offset =============
[13:38:03] ============== drm_test_fb_build_fourcc_list ==============
[13:38:03] [PASSED] no native formats
[13:38:03] [PASSED] XRGB8888 as native format
[13:38:03] [PASSED] remove duplicates
[13:38:03] [PASSED] convert alpha formats
[13:38:03] [PASSED] random formats
[13:38:03] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[13:38:03] =================== drm_test_fb_memcpy ====================
[13:38:03] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:38:03] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:38:03] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:38:03] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:38:03] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:38:03] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:38:03] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:38:03] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:38:03] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:38:03] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:38:03] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:38:03] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:38:03] =============== [PASSED] drm_test_fb_memcpy ================
[13:38:03] ============= [PASSED] drm_format_helper_test ==============
[13:38:03] ================= drm_format (18 subtests) =================
[13:38:03] [PASSED] drm_test_format_block_width_invalid
[13:38:03] [PASSED] drm_test_format_block_width_one_plane
[13:38:03] [PASSED] drm_test_format_block_width_two_plane
[13:38:03] [PASSED] drm_test_format_block_width_three_plane
[13:38:03] [PASSED] drm_test_format_block_width_tiled
[13:38:03] [PASSED] drm_test_format_block_height_invalid
[13:38:03] [PASSED] drm_test_format_block_height_one_plane
[13:38:03] [PASSED] drm_test_format_block_height_two_plane
[13:38:03] [PASSED] drm_test_format_block_height_three_plane
[13:38:03] [PASSED] drm_test_format_block_height_tiled
[13:38:03] [PASSED] drm_test_format_min_pitch_invalid
[13:38:03] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:38:03] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:38:03] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:38:03] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:38:03] [PASSED] drm_test_format_min_pitch_two_plane
[13:38:03] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:38:03] [PASSED] drm_test_format_min_pitch_tiled
[13:38:03] =================== [PASSED] drm_format ====================
[13:38:03] =============== drm_framebuffer (1 subtest) ================
[13:38:03] =============== drm_test_framebuffer_create ===============
[13:38:03] [PASSED] ABGR8888 normal sizes
[13:38:03] [PASSED] ABGR8888 max sizes
[13:38:03] [PASSED] ABGR8888 pitch greater than min required
[13:38:03] [PASSED] ABGR8888 pitch less than min required
[13:38:03] [PASSED] ABGR8888 Invalid width
[13:38:03] [PASSED] ABGR8888 Invalid buffer handle
[13:38:03] [PASSED] No pixel format
[13:38:03] [PASSED] ABGR8888 Width 0
[13:38:03] [PASSED] ABGR8888 Height 0
[13:38:03] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:38:03] [PASSED] ABGR8888 Large buffer offset
[13:38:03] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:38:03] [PASSED] ABGR8888 Valid buffer modifier
[13:38:03] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:38:03] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:38:03] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:38:03] [PASSED] NV12 Normal sizes
[13:38:03] [PASSED] NV12 Max sizes
[13:38:03] [PASSED] NV12 Invalid pitch
[13:38:03] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:38:03] [PASSED] NV12 different modifier per-plane
[13:38:03] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:38:03] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:38:03] [PASSED] NV12 Modifier for inexistent plane
[13:38:03] [PASSED] NV12 Handle for inexistent plane
[13:38:03] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:38:03] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:38:03] [PASSED] YVU420 Normal sizes
[13:38:03] [PASSED] YVU420 Max sizes
[13:38:03] [PASSED] YVU420 Invalid pitch
[13:38:03] [PASSED] YVU420 Different pitches
[13:38:03] [PASSED] YVU420 Different buffer offsets/pitches
[13:38:03] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:38:03] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:38:03] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:38:03] [PASSED] YVU420 Valid modifier
[13:38:03] [PASSED] YVU420 Different modifiers per plane
[13:38:03] [PASSED] YVU420 Modifier for inexistent plane
[13:38:03] [PASSED] X0L2 Normal sizes
[13:38:03] [PASSED] X0L2 Max sizes
[13:38:03] [PASSED] X0L2 Invalid pitch
[13:38:03] [PASSED] X0L2 Pitch greater than minimum required
[13:38:03] [PASSED] X0L2 Handle for inexistent plane
[13:38:03] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:38:03] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:38:03] [PASSED] X0L2 Valid modifier
[13:38:03] [PASSED] X0L2 Modifier for inexistent plane
[13:38:03] =========== [PASSED] drm_test_framebuffer_create ===========
[13:38:03] ================= [PASSED] drm_framebuffer =================
[13:38:03] ================ drm_gem_shmem (8 subtests) ================
[13:38:03] [PASSED] drm_gem_shmem_test_obj_create
[13:38:03] [PASSED] drm_gem_shmem_test_obj_create_private
[13:38:03] [PASSED] drm_gem_shmem_test_pin_pages
[13:38:03] [PASSED] drm_gem_shmem_test_vmap
[13:38:03] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:38:03] [PASSED] drm_gem_shmem_test_get_sg_table
[13:38:03] [PASSED] drm_gem_shmem_test_madvise
[13:38:03] [PASSED] drm_gem_shmem_test_purge
[13:38:03] ================== [PASSED] drm_gem_shmem ==================
[13:38:03] === drm_atomic_helper_connector_hdmi_check (22 subtests) ===
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:38:03] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:38:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[13:38:03] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[13:38:03] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:38:03] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:38:03] [PASSED] drm_test_check_output_bpc_dvi
[13:38:03] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:38:03] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:38:03] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:38:03] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:38:03] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:38:03] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:38:03] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:38:03] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:38:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:38:03] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:38:03] [PASSED] drm_test_check_broadcast_rgb_value
[13:38:03] [PASSED] drm_test_check_bpc_8_value
[13:38:03] [PASSED] drm_test_check_bpc_10_value
[13:38:03] [PASSED] drm_test_check_bpc_12_value
[13:38:03] [PASSED] drm_test_check_format_value
[13:38:03] [PASSED] drm_test_check_tmds_char_value
[13:38:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:38:03] ================= drm_managed (2 subtests) =================
[13:38:03] [PASSED] drm_test_managed_release_action
[13:38:03] [PASSED] drm_test_managed_run_action
[13:38:03] =================== [PASSED] drm_managed ===================
[13:38:03] =================== drm_mm (6 subtests) ====================
[13:38:03] [PASSED] drm_test_mm_init
[13:38:03] [PASSED] drm_test_mm_debug
[13:38:03] [PASSED] drm_test_mm_align32
[13:38:03] [PASSED] drm_test_mm_align64
[13:38:03] [PASSED] drm_test_mm_lowest
[13:38:03] [PASSED] drm_test_mm_highest
[13:38:03] ===================== [PASSED] drm_mm ======================
[13:38:03] ============= drm_modes_analog_tv (4 subtests) =============
[13:38:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:38:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:38:03] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:38:03] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:38:03] =============== [PASSED] drm_modes_analog_tv ===============
[13:38:03] ============== drm_plane_helper (2 subtests) ===============
[13:38:03] =============== drm_test_check_plane_state ================
[13:38:03] [PASSED] clipping_simple
[13:38:03] [PASSED] clipping_rotate_reflect
[13:38:03] [PASSED] positioning_simple
[13:38:03] [PASSED] upscaling
[13:38:03] [PASSED] downscaling
[13:38:03] [PASSED] rounding1
[13:38:03] [PASSED] rounding2
[13:38:03] [PASSED] rounding3
[13:38:03] [PASSED] rounding4
[13:38:03] =========== [PASSED] drm_test_check_plane_state ============
[13:38:03] =========== drm_test_check_invalid_plane_state ============
[13:38:03] [PASSED] positioning_invalid
[13:38:03] [PASSED] upscaling_invalid
[13:38:03] [PASSED] downscaling_invalid
[13:38:03] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:38:03] ================ [PASSED] drm_plane_helper =================
stty: 'standard input': Inappropriate ioctl for device
[13:38:03] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:38:03] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:38:03] [PASSED] None
[13:38:03] [PASSED] PAL
[13:38:03] [PASSED] NTSC
[13:38:03] [PASSED] Both, NTSC Default
[13:38:03] [PASSED] Both, PAL Default
[13:38:03] [PASSED] Both, NTSC Default, with PAL on command-line
[13:38:03] [PASSED] Both, PAL Default, with NTSC on command-line
[13:38:03] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:38:03] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:38:03] ================== drm_rect (9 subtests) ===================
[13:38:03] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:38:03] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:38:03] [PASSED] drm_test_rect_clip_scaled_clipped
[13:38:03] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:38:03] ================= drm_test_rect_intersect =================
[13:38:03] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:38:03] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:38:03] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:38:03] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:38:03] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:38:03] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:38:03] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:38:03] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:38:03] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:38:03] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:38:03] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:38:03] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:38:03] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:38:03] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:38:03] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:38:03] ============= [PASSED] drm_test_rect_intersect =============
[13:38:03] ================ drm_test_rect_calc_hscale ================
[13:38:03] [PASSED] normal use
[13:38:03] [PASSED] out of max range
[13:38:03] [PASSED] out of min range
[13:38:03] [PASSED] zero dst
[13:38:03] [PASSED] negative src
[13:38:03] [PASSED] negative dst
[13:38:03] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:38:03] ================ drm_test_rect_calc_vscale ================
[13:38:03] [PASSED] normal use
[13:38:03] [PASSED] out of max range
[13:38:03] [PASSED] out of min range
[13:38:03] [PASSED] zero dst
[13:38:03] [PASSED] negative src
[13:38:03] [PASSED] negative dst
[13:38:03] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:38:03] ================== drm_test_rect_rotate ===================
[13:38:03] [PASSED] reflect-x
[13:38:03] [PASSED] reflect-y
[13:38:03] [PASSED] rotate-0
[13:38:03] [PASSED] rotate-90
[13:38:03] [PASSED] rotate-180
[13:38:03] [PASSED] rotate-270
[13:38:03] ============== [PASSED] drm_test_rect_rotate ===============
[13:38:03] ================ drm_test_rect_rotate_inv =================
[13:38:03] [PASSED] reflect-x
[13:38:03] [PASSED] reflect-y
[13:38:03] [PASSED] rotate-0
[13:38:03] [PASSED] rotate-90
[13:38:03] [PASSED] rotate-180
[13:38:03] [PASSED] rotate-270
[13:38:03] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:38:03] ==================== [PASSED] drm_rect =====================
[13:38:03] ============================================================
[13:38:03] Testing complete. Ran 511 tests: passed: 511
[13:38:03] Elapsed time: 23.307s total, 1.728s configuring, 21.402s building, 0.149s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.Build: success for Allow CTB G2H processing without G2H IRQ (rev2)
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
` (4 preceding siblings ...)
2024-06-06 13:38 ` ✓ CI.KUnit: " Patchwork
@ 2024-06-06 13:49 ` Patchwork
2024-06-06 13:49 ` ✗ CI.Hooks: failure " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-06 13:49 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Allow CTB G2H processing without G2H IRQ (rev2)
URL : https://patchwork.freedesktop.org/series/134523/
State : success
== Summary ==
lib/modules/6.10.0-rc2-xe/kernel/sound/core/seq/
lib/modules/6.10.0-rc2-xe/kernel/sound/core/seq/snd-seq.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-seq-device.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-hwdep.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-pcm.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-compress.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-timer.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soundcore.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/common/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/common/snd-soc-acpi-intel-match.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/amd/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/amd/snd-acp-config.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-tgl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-mlink.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-cnl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-lnl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-common.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-generic.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-mtl.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/snd-sof-amd-renoir.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/snd-sof-amd-acp.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-utils.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-pci.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-probes.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/xtensa/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/snd-soc-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/snd-soc-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/codecs/
lib/modules/6.10.0-rc2-xe/kernel/sound/soc/codecs/snd-soc-hdac-hda.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-intel-sdw-acpi.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ext/
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ext/snd-hda-ext-core.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-intel-dspcfg.ko
lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-hda-core.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/msr.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/cpuid.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha512-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/crct10dif-pclmul.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/ghash-clmulni-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha1-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/crc32-pclmul.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha256-ssse3.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/aesni-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/polyval-clmulni.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/intel/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/intel/intel-cstate.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/
lib/modules/6.10.0-rc2-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/cmac.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/ccm.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/cryptd.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.10.0-rc2-xe/build
lib/modules/6.10.0-rc2-xe/modules.alias.bin
lib/modules/6.10.0-rc2-xe/modules.builtin
lib/modules/6.10.0-rc2-xe/modules.softdep
lib/modules/6.10.0-rc2-xe/modules.alias
lib/modules/6.10.0-rc2-xe/modules.order
lib/modules/6.10.0-rc2-xe/modules.symbols
lib/modules/6.10.0-rc2-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1717681763:package_x86_64_nodebug\r\e[0K'
+ sync
^[[0Ksection_end:1717681763:package_x86_64_nodebug
^[[0K
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.Hooks: failure for Allow CTB G2H processing without G2H IRQ (rev2)
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
` (5 preceding siblings ...)
2024-06-06 13:49 ` ✓ CI.Build: " Patchwork
@ 2024-06-06 13:49 ` Patchwork
2024-06-06 13:51 ` ✓ CI.checksparse: success " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-06 13:49 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Allow CTB G2H processing without G2H IRQ (rev2)
URL : https://patchwork.freedesktop.org/series/134523/
State : failure
== Summary ==
run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
GEN Makefile
UPD include/generated/compile.h
UPD include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool
UPD include/generated/utsrelease.h
HOSTCC /workspace/kernel/build64-default/tools/objtool/fixdep.o
CALL ../scripts/checksyscalls.sh
HOSTLD /workspace/kernel/build64-default/tools/objtool/fixdep-in.o
LINK /workspace/kernel/build64-default/tools/objtool/fixdep
INSTALL libsubcmd_headers
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
LD /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
AR /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
CC /workspace/kernel/build64-default/tools/objtool/weak.o
CC /workspace/kernel/build64-default/tools/objtool/check.o
CC /workspace/kernel/build64-default/tools/objtool/special.o
CC /workspace/kernel/build64-default/tools/objtool/builtin-check.o
CC /workspace/kernel/build64-default/tools/objtool/elf.o
CC /workspace/kernel/build64-default/tools/objtool/objtool.o
CC /workspace/kernel/build64-default/tools/objtool/orc_gen.o
CC /workspace/kernel/build64-default/tools/objtool/orc_dump.o
CC /workspace/kernel/build64-default/tools/objtool/libstring.o
CC /workspace/kernel/build64-default/tools/objtool/libctype.o
CC /workspace/kernel/build64-default/tools/objtool/str_error_r.o
CC /workspace/kernel/build64-default/tools/objtool/librbtree.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
LD /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
LD /workspace/kernel/build64-default/tools/objtool/objtool-in.o
LINK /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default M=drivers/gpu/drm/xe W=1
make[1]: Entering directory '/workspace/kernel/build64-default'
../scripts/Makefile.build:41: drivers/gpu/drm/xe/Makefile: No such file or directory
make[3]: *** No rule to make target 'drivers/gpu/drm/xe/Makefile'. Stop.
make[2]: *** [/workspace/kernel/Makefile:1934: drivers/gpu/drm/xe] Error 2
make[1]: *** [/workspace/kernel/Makefile:240: __sub-make] Error 2
make[1]: Leaving directory '/workspace/kernel/build64-default'
make: *** [Makefile:240: __sub-make] Error 2
run-parts: /workspace/ci/hooks/10-build-W1 exited with return code 2
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.checksparse: success for Allow CTB G2H processing without G2H IRQ (rev2)
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
` (6 preceding siblings ...)
2024-06-06 13:49 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-06-06 13:51 ` Patchwork
2024-06-06 20:08 ` ✗ CI.FULL: failure " Patchwork
2024-06-07 20:18 ` [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Cavitt, Jonathan
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-06-06 13:51 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Allow CTB G2H processing without G2H IRQ (rev2)
URL : https://patchwork.freedesktop.org/series/134523/
State : success
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 2163887f734af2f0a812a322e1a53ef6d62bf3d5
Sparse version: 0.6.1 (Ubuntu: 0.6.1-2build1)
Fast mode used, each commit won't be checked separately.
Okay!
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 1/2] drm/xe/guc: Split g2h worker function
2024-06-06 13:06 ` [PATCH v2 1/2] drm/xe/guc: Split g2h worker function Michal Wajdeczko
@ 2024-06-06 16:10 ` Matthew Brost
0 siblings, 0 replies; 14+ messages in thread
From: Matthew Brost @ 2024-06-06 16:10 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
On Thu, Jun 06, 2024 at 03:06:38PM +0200, Michal Wajdeczko wrote:
> In the next patch we will want to perform the same steps that
> g2h worker function is doing but from the different worker.
>
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_ct.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
> index c1f258348f5c..08cf355e2e56 100644
> --- a/drivers/gpu/drm/xe/xe_guc_ct.c
> +++ b/drivers/gpu/drm/xe/xe_guc_ct.c
> @@ -1260,9 +1260,8 @@ static int dequeue_one_g2h(struct xe_guc_ct *ct)
> return 1;
> }
>
> -static void g2h_worker_func(struct work_struct *w)
> +static void receive_g2h(struct xe_guc_ct *ct)
> {
> - struct xe_guc_ct *ct = container_of(w, struct xe_guc_ct, g2h_worker);
> struct xe_gt *gt = ct_to_gt(ct);
> bool ongoing;
> int ret;
> @@ -1311,6 +1310,13 @@ static void g2h_worker_func(struct work_struct *w)
> xe_pm_runtime_put(ct_to_xe(ct));
> }
>
> +static void g2h_worker_func(struct work_struct *w)
> +{
> + struct xe_guc_ct *ct = container_of(w, struct xe_guc_ct, g2h_worker);
> +
> + receive_g2h(ct);
> +}
> +
> static void guc_ctb_snapshot_capture(struct xe_device *xe, struct guc_ctb *ctb,
> struct guc_ctb_snapshot *snapshot,
> bool atomic)
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 2/2] drm/xe/guc: Allow CTB G2H processing without G2H IRQ
2024-06-06 13:06 ` [PATCH v2 2/2] drm/xe/guc: Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
@ 2024-06-06 16:14 ` Matthew Brost
0 siblings, 0 replies; 14+ messages in thread
From: Matthew Brost @ 2024-06-06 16:14 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
On Thu, Jun 06, 2024 at 03:06:39PM +0200, Michal Wajdeczko wrote:
> During early initialization, in the xe_guc_min_load_for_hwconfig()
> function, we are successfully enabling CTB communication, but it
> will only allow us to send non-blocking H2G messages, as due to
> not yet enabled IRQs, including G2H IRQs, we will not notice any
> new G2H message sent by the GuC, including replies to our blocking
> H2G request messages. And those successful replies are mandatory
> for the VF drivers to continue normal operations.
>
> As attempt to workaround this driver initialization ordering issue,
> introduce special safe-mode CTB worker, that will periodically
> trigger G2H processing, like original IRQ handler, in case no
> MSI/MSIX IRQs were enabled on the driver yet. Once we detect that
> IRQ were enabled, we will stop this worker.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
This seems like a fairly reasonable workaround to carry until if / when
we can get the driver load ordering correct. Also it has potential use
on platform bringup if IRQs are broken.
With all of this:
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> ---
> v2: use code from g2h worker instead of g2h irq handler (Matt)
> ---
> drivers/gpu/drm/xe/xe_guc_ct.c | 43 ++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_guc_ct_types.h | 2 ++
> 2 files changed, 45 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
> index 08cf355e2e56..936b63483e96 100644
> --- a/drivers/gpu/drm/xe/xe_guc_ct.c
> +++ b/drivers/gpu/drm/xe/xe_guc_ct.c
> @@ -126,7 +126,9 @@ static void guc_ct_fini(struct drm_device *drm, void *arg)
> xa_destroy(&ct->fence_lookup);
> }
>
> +static void receive_g2h(struct xe_guc_ct *ct);
> static void g2h_worker_func(struct work_struct *w);
> +static void safe_mode_worker_func(struct work_struct *w);
>
> static void primelockdep(struct xe_guc_ct *ct)
> {
> @@ -155,6 +157,7 @@ int xe_guc_ct_init(struct xe_guc_ct *ct)
> spin_lock_init(&ct->fast_lock);
> xa_init(&ct->fence_lookup);
> INIT_WORK(&ct->g2h_worker, g2h_worker_func);
> + INIT_DELAYED_WORK(&ct->safe_mode_worker, safe_mode_worker_func);
> init_waitqueue_head(&ct->wq);
> init_waitqueue_head(&ct->g2h_fence_wq);
>
> @@ -321,6 +324,42 @@ static void xe_guc_ct_set_state(struct xe_guc_ct *ct,
> mutex_unlock(&ct->lock);
> }
>
> +static bool ct_needs_safe_mode(struct xe_guc_ct *ct)
> +{
> + return !pci_dev_msi_enabled(to_pci_dev(ct_to_xe(ct)->drm.dev));
> +}
> +
> +static bool ct_restart_safe_mode_worker(struct xe_guc_ct *ct)
> +{
> + if (!ct_needs_safe_mode(ct))
> + return false;
> +
> + queue_delayed_work(ct->g2h_wq, &ct->safe_mode_worker, HZ / 10);
> + return true;
> +}
> +
> +static void safe_mode_worker_func(struct work_struct *w)
> +{
> + struct xe_guc_ct *ct = container_of(w, struct xe_guc_ct, safe_mode_worker.work);
> +
> + receive_g2h(ct);
> +
> + if (!ct_restart_safe_mode_worker(ct))
> + xe_gt_dbg(ct_to_gt(ct), "GuC CT safe-mode canceled\n");
> +}
> +
> +static void ct_enter_safe_mode(struct xe_guc_ct *ct)
> +{
> + if (ct_restart_safe_mode_worker(ct))
> + xe_gt_dbg(ct_to_gt(ct), "GuC CT safe-mode enabled\n");
> +}
> +
> +static void ct_exit_safe_mode(struct xe_guc_ct *ct)
> +{
> + if (cancel_delayed_work_sync(&ct->safe_mode_worker))
> + xe_gt_dbg(ct_to_gt(ct), "GuC CT safe-mode disabled\n");
> +}
> +
> int xe_guc_ct_enable(struct xe_guc_ct *ct)
> {
> struct xe_device *xe = ct_to_xe(ct);
> @@ -350,6 +389,9 @@ int xe_guc_ct_enable(struct xe_guc_ct *ct)
> wake_up_all(&ct->wq);
> xe_gt_dbg(gt, "GuC CT communication channel enabled\n");
>
> + if (ct_needs_safe_mode(ct))
> + ct_enter_safe_mode(ct);
> +
> return 0;
>
> err_out:
> @@ -373,6 +415,7 @@ static void stop_g2h_handler(struct xe_guc_ct *ct)
> void xe_guc_ct_disable(struct xe_guc_ct *ct)
> {
> xe_guc_ct_set_state(ct, XE_GUC_CT_STATE_DISABLED);
> + ct_exit_safe_mode(ct);
> stop_g2h_handler(ct);
> }
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_ct_types.h b/drivers/gpu/drm/xe/xe_guc_ct_types.h
> index fede4c6e93cb..761cb9031298 100644
> --- a/drivers/gpu/drm/xe/xe_guc_ct_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_ct_types.h
> @@ -110,6 +110,8 @@ struct xe_guc_ct {
> u32 g2h_outstanding;
> /** @g2h_worker: worker to process G2H messages */
> struct work_struct g2h_worker;
> + /** @safe_mode_worker: worker to check G2H messages with IRQ disabled */
> + struct delayed_work safe_mode_worker;
> /** @state: CT state */
> enum xe_guc_ct_state state;
> /** @fence_seqno: G2H fence seqno - 16 bits used by CT */
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.FULL: failure for Allow CTB G2H processing without G2H IRQ (rev2)
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
` (7 preceding siblings ...)
2024-06-06 13:51 ` ✓ CI.checksparse: success " Patchwork
@ 2024-06-06 20:08 ` Patchwork
2024-06-07 10:19 ` Michal Wajdeczko
2024-06-07 20:18 ` [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Cavitt, Jonathan
9 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2024-06-06 20:08 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 77855 bytes --]
== Series Details ==
Series: Allow CTB G2H processing without G2H IRQ (rev2)
URL : https://patchwork.freedesktop.org/series/134523/
State : failure
== Summary ==
CI Bug Log - changes from xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03_full -> xe-pw-134523v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-134523v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-134523v2_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 (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-134523v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6.html
#### Warnings ####
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [DMESG-WARN][4] ([Intel XE#1214]) -> [DMESG-WARN][5] +1 other test dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_hotunplug@hotunplug-rescan:
- {shard-lnl}: NOTRUN -> [DMESG-WARN][6] +2 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-1/igt@core_hotunplug@hotunplug-rescan.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- {shard-lnl}: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* {igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0}:
- shard-adlp: NOTRUN -> [WARN][9] +1 other test warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- {shard-lnl}: NOTRUN -> [DMESG-FAIL][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-2/igt@xe_pm@s2idle-vm-bind-prefetch.html
Known issues
------------
Here are the changes found in xe-pw-134523v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#660])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y:
- shard-adlp: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#1214] / [Intel XE#324]) +2 other tests dmesg-warn
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [FAIL][14] ([Intel XE#1204])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124] / [Intel XE#1201])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: NOTRUN -> [FAIL][16] ([Intel XE#1231])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#1124] / [Intel XE#1201]) +9 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#610])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#367])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +19 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#787]) +29 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_chamelium_hpd@common-hpd-after-hibernate:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#307])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#308])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#309]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#323])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1214] / [Intel XE#282]) +5 other tests dmesg-warn
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-466/igt@kms_cursor_legacy@forked-move@pipe-b.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-adlp: NOTRUN -> [DMESG-WARN][30] ([Intel XE#1214] / [Intel XE#877]) +1 other test dmesg-warn
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#776])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#703])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#1138] / [Intel XE#1201])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#1135] / [Intel XE#1201])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#310])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][36] ([Intel XE#1195]) +1 other test incomplete
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#656]) +23 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#651]) +12 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [FAIL][39] ([Intel XE#1861]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#653])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_panel_fitting@legacy:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#455]) +20 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [FAIL][43] ([Intel XE#2028])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-adlp: NOTRUN -> [INCOMPLETE][44] ([Intel XE#1035] / [Intel XE#1195])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: NOTRUN -> [DMESG-FAIL][45] ([Intel XE#1608] / [Intel XE#2034]) +1 other test dmesg-fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: [PASS][46] -> [FAIL][47] ([Intel XE#361]) +2 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#1211]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#1201]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#1122] / [Intel XE#1201])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#929]) +11 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [FAIL][54] ([Intel XE#294]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-adlp: NOTRUN -> [FAIL][55] ([Intel XE#1874]) +3 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#362])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [DMESG-FAIL][58] ([Intel XE#1608]) +6 other tests dmesg-fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#1932])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_ccs@block-copy-compressed-inc-dimension:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_ccs@block-copy-compressed-inc-dimension.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#1447])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#1126] / [Intel XE#1201])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-464/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#261]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [PASS][66] -> [TIMEOUT][67] ([Intel XE#1473])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-434/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-small:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_evict@evict-small.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#688])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#1392]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#288]) +18 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
- shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#1081])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-hang-rebind-err:
- shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#1256]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-435/igt@xe_exec_threads@threads-hang-rebind-err.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-464/igt@xe_exec_threads@threads-hang-rebind-err.html
* igt@xe_module_load@force-load:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#378])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_module_load@force-load.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#1948])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s4-basic-exec:
- shard-adlp: [PASS][80] -> [DMESG-WARN][81] ([Intel XE#1214]) +1 other test dmesg-warn
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-6/igt@xe_pm@s4-basic-exec.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-4/igt@xe_pm@s4-basic-exec.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_query@multigpu-query-invalid-query.html
#### Possible fixes ####
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [DMESG-WARN][83] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][85] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][86] +9 other tests pass
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][87] ([Intel XE#282]) -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- {shard-lnl}: [FAIL][89] -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@single-bo@pipe-a:
- shard-dg2-set2: [DMESG-WARN][91] ([Intel XE#1214] / [Intel XE#877]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-434/igt@kms_cursor_legacy@single-bo@pipe-a.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@kms_cursor_legacy@single-bo@pipe-a.html
* igt@kms_flip@wf_vblank-ts-check:
- {shard-lnl}: [FAIL][93] ([Intel XE#480] / [Intel XE#886]) -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_pm_dc@dc6-psr:
- {shard-lnl}: [FAIL][95] ([Intel XE#1430]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- {shard-lnl}: [SKIP][97] ([Intel XE#1211]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-1/igt@kms_pm_rpm@legacy-planes-dpms.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-7/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- {shard-lnl}: [INCOMPLETE][99] -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate:
- {shard-lnl}: [INCOMPLETE][101] ([Intel XE#1330]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-3/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-2/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race:
- {shard-lnl}: [ABORT][103] ([Intel XE#1761]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-invalid-fault:
- {shard-lnl}: [DMESG-WARN][105] ([Intel XE#1638]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-8/igt@xe_exec_fault_mode@many-invalid-fault.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-6/igt@xe_exec_fault_mode@many-invalid-fault.html
* igt@xe_gt_freq@freq_fixed_exec:
- shard-adlp: [FAIL][107] ([Intel XE#1414]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@xe_gt_freq@freq_fixed_exec.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_gt_freq@freq_fixed_exec.html
* igt@xe_gt_freq@freq_low_max:
- {shard-lnl}: [FAIL][109] ([Intel XE#1045]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-2/igt@xe_gt_freq@freq_low_max.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-1/igt@xe_gt_freq@freq_low_max.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-adlp: [DMESG-WARN][111] ([Intel XE#1214]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@xe_pm@s4-vm-bind-userptr.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-4/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-adlp: [FAIL][113] ([Intel XE#958]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@xe_pm_residency@toggle-gt-c6.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@xe_pm_residency@toggle-gt-c6.html
- {shard-lnl}: [FAIL][115] ([Intel XE#958]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-2/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer:
- {shard-lnl}: [FAIL][117] ([Intel XE#1081]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-3/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-8/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events:
- shard-adlp: [DMESG-WARN][119] ([Intel XE#1033] / [Intel XE#1214]) -> [DMESG-WARN][120] ([Intel XE#1033] / [Intel XE#1214] / [Intel XE#324])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@kms_async_flips@async-flip-with-page-flip-events.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][121] ([Intel XE#316]) -> [SKIP][122] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][123] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][124] ([Intel XE#316]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-270.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][125] ([Intel XE#324]) -> [FAIL][126] ([Intel XE#1204])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [FAIL][127] ([Intel XE#1231]) -> [DMESG-FAIL][128] ([Intel XE#324])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][129] ([Intel XE#1124]) -> [SKIP][130] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][131] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][132] ([Intel XE#1124]) +11 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][133] ([Intel XE#367]) -> [SKIP][134] ([Intel XE#1201] / [Intel XE#367])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][136] ([Intel XE#367]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][138] ([Intel XE#787]) +69 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][139] ([Intel XE#787]) -> [SKIP][140] ([Intel XE#1201] / [Intel XE#787]) +55 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][142] ([Intel XE#1252])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][143] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][145] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][146] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][147] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][148] ([Intel XE#314])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: [SKIP][149] ([Intel XE#306]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#306])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][152] ([Intel XE#306])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_chamelium_color@degamma.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2-set2: [SKIP][153] ([Intel XE#373]) -> [SKIP][154] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][155] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][156] ([Intel XE#373]) +11 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][157] ([Intel XE#308]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][160] ([Intel XE#308])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: [INCOMPLETE][161] ([Intel XE#1195]) -> [DMESG-WARN][162] ([Intel XE#1214] / [Intel XE#282])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-463/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][164] ([Intel XE#323]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-dg2-set2: [DMESG-WARN][165] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][166] ([Intel XE#282]) +9 other tests dmesg-warn
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [DMESG-WARN][167] ([Intel XE#282]) -> [DMESG-WARN][168] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@single-bo:
- shard-dg2-set2: [DMESG-WARN][169] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877]) -> [DMESG-WARN][170] ([Intel XE#1214] / [Intel XE#282])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-434/igt@kms_cursor_legacy@single-bo.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@kms_cursor_legacy@single-bo.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4:
- shard-dg2-set2: [SKIP][171] ([Intel XE#455] / [Intel XE#929]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6:
- shard-dg2-set2: [SKIP][173] ([Intel XE#1927]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#1927])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][175] ([i915#3804]) -> [SKIP][176] ([Intel XE#1201] / [i915#3804])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][178] ([Intel XE#776])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][179] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][180] ([Intel XE#1135]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_feature_discovery@psr1.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-FAIL][181] ([Intel XE#1608]) -> [INCOMPLETE][182] ([Intel XE#1195] / [Intel XE#927])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [DMESG-FAIL][183] ([Intel XE#1608]) -> [INCOMPLETE][184] ([Intel XE#1195])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][186] ([Intel XE#455]) +15 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][187] ([Intel XE#651]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#651]) +15 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][189] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][190] ([Intel XE#651]) +30 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][191] ([Intel XE#653]) -> [SKIP][192] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][193] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][194] ([Intel XE#653]) +29 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#605]) -> [SKIP][196] ([Intel XE#605])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][197] ([Intel XE#455]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-adlp: [INCOMPLETE][199] ([Intel XE#1195] / [Intel XE#927]) -> [DMESG-FAIL][200] ([Intel XE#1608])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-adlp: [INCOMPLETE][201] ([Intel XE#1195]) -> [DMESG-FAIL][202] ([Intel XE#1608])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][203] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][204] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][206] ([Intel XE#498]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][207] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6:
- shard-dg2-set2: [SKIP][209] ([Intel XE#498]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][211] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][212] ([Intel XE#305]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][214] ([Intel XE#305] / [Intel XE#455]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][215] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][217] ([Intel XE#305]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][219] ([Intel XE#870]) -> [SKIP][220] ([Intel XE#1201] / [Intel XE#870])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][221] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][222] ([Intel XE#1129])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][223] ([Intel XE#929]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][226] ([Intel XE#1122])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_psr2_su@page_flip-xrgb8888.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][227] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][228] ([Intel XE#929]) +18 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][229] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][230] ([Intel XE#1127])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][232] ([Intel XE#327]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-adlp: [INCOMPLETE][233] ([Intel XE#1034] / [Intel XE#1195] / [Intel XE#927]) -> [DMESG-FAIL][234] ([Intel XE#1608])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@kms_vblank@ts-continuation-suspend.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-adlp: [INCOMPLETE][235] ([Intel XE#1034] / [Intel XE#1195]) -> [DMESG-FAIL][236] ([Intel XE#1608])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2-set2: [SKIP][237] ([Intel XE#756]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#756])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_writeback@writeback-check-output.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1091]) -> [SKIP][240] ([Intel XE#1091] / [Intel XE#1201])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-on.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][241] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][242] ([Intel XE#1280] / [Intel XE#455]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][243] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][244] ([Intel XE#1123])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1126]) -> [SKIP][246] ([Intel XE#1126] / [Intel XE#1201])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [INCOMPLETE][247] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [DMESG-FAIL][248] ([Intel XE#482])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][250] ([Intel XE#288]) +23 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
- shard-dg2-set2: [SKIP][251] ([Intel XE#288]) -> [SKIP][252] ([Intel XE#1201] / [Intel XE#288]) +11 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][253] ([Intel XE#1201] / [Intel XE#255]) -> [SKIP][254] ([Intel XE#255])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_huc_copy@huc_copy.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_mocs:
- shard-adlp: [FAIL][255] ([Intel XE#1999]) -> [SKIP][256] ([Intel XE#1192] / [Intel XE#1201])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-6/igt@xe_live_ktest@xe_mocs.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-4/igt@xe_live_ktest@xe_mocs.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][257] ([Intel XE#977]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#977])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][259] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][260] ([Intel XE#979])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][261] ([Intel XE#366]) -> [SKIP][262] ([Intel XE#1201] / [Intel XE#366])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-adlp: [INCOMPLETE][263] ([Intel XE#1195]) -> [DMESG-FAIL][264] ([Intel XE#1608] / [Intel XE#2034])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@xe_pm@s2idle-vm-bind-userptr.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-basic-exec:
- shard-adlp: [INCOMPLETE][265] ([Intel XE#1195] / [Intel XE#1358]) -> [DMESG-FAIL][266] ([Intel XE#1608])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@xe_pm@s3-basic-exec.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][267] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][268] ([Intel XE#366]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-adlp: [DMESG-WARN][269] ([Intel XE#1214]) -> [ABORT][270] ([Intel XE#1358])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@xe_pm@s4-d3hot-basic-exec.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-9/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-adlp: [DMESG-WARN][271] ([Intel XE#1214]) -> [INCOMPLETE][272] ([Intel XE#1195])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-2/igt@xe_pm@s4-vm-bind-prefetch.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-9/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][273] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][274] ([Intel XE#944]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][275] ([Intel XE#944]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#944])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [DMESG-FAIL][277] ([Intel XE#1760]) -> [DMESG-WARN][278] ([Intel XE#1214] / [Intel XE#1760])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-464/igt@xe_wedged@wedged-at-any-timeout.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-463/igt@xe_wedged@wedged-at-any-timeout.html
- shard-adlp: [DMESG-FAIL][279] ([Intel XE#1760]) -> [DMESG-WARN][280] ([Intel XE#1214] / [Intel XE#1760])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-2/igt@xe_wedged@wedged-at-any-timeout.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[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#1414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1414
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608
[Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
[Intel XE#1817]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1817
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1927
[Intel XE#1932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1932
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2023
[Intel XE#2024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2024
[Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
[Intel XE#2034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2034
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[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#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[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#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[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#660]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/660
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927
[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#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* Linux: xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03 -> xe-pw-134523v2
IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03: b8a4e08086ace055e193245cd77a6182936d9f03
xe-pw-134523v2: 134523v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/index.html
[-- Attachment #2: Type: text/html, Size: 101759 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ CI.FULL: failure for Allow CTB G2H processing without G2H IRQ (rev2)
2024-06-06 20:08 ` ✗ CI.FULL: failure " Patchwork
@ 2024-06-07 10:19 ` Michal Wajdeczko
0 siblings, 0 replies; 14+ messages in thread
From: Michal Wajdeczko @ 2024-06-07 10:19 UTC (permalink / raw)
To: intel-xe
On 06.06.2024 22:08, Patchwork wrote:
> == Series Details ==
>
> Series: Allow CTB G2H processing without G2H IRQ (rev2)
> URL : https://patchwork.freedesktop.org/series/134523/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03_full -> xe-pw-134523v2_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with xe-pw-134523v2_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-134523v2_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 (3 -> 3)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in xe-pw-134523v2_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
unrelated
>
> * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1:
> - shard-adlp: NOTRUN -> [FAIL][1]
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1.html
(kms_pipe_crc_basic:915) igt_core-INFO: [cmd] rtcwake: wakeup from "mem"
using /dev/rtc0 at Thu Jun 6 19:28:09 2024
(kms_pipe_crc_basic:915) igt_core-WARNING: [cmd] rtcwake: write error
(kms_pipe_crc_basic:915) igt_aux-WARNING: rtcwake failed with 1
failures:
last_failed_dev: 0000:00:1f.6
0000:00:1f.6
last_failed_errno: -2
-2
last_failed_step: suspend
suspend
>
> * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6:
> - shard-dg2-set2: [PASS][2] -> [DMESG-WARN][3]
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6.html
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6.html
<3> [72.375275] xe 0000:00:02.0: [drm] *ERROR* DC state mismatch (0x2 ->
0x0)
<4> [72.375364] ------------[ cut here ]------------
<4> [72.375372] xe 0000:00:02.0: Unexpected DBuf power power state
(0x00000000, expected 0x00000001)
>
>
> #### Warnings ####
>
> * igt@kms_pipe_crc_basic@suspend-read-crc:
> - shard-dg2-set2: [DMESG-WARN][4] ([Intel XE#1214]) -> [DMESG-WARN][5] +1 other test dmesg-warn
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
>
>
> #### Suppressed ####
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * igt@core_hotunplug@hotunplug-rescan:
> - {shard-lnl}: NOTRUN -> [DMESG-WARN][6] +2 other tests dmesg-warn
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-1/igt@core_hotunplug@hotunplug-rescan.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
> - {shard-lnl}: [PASS][7] -> [FAIL][8]
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
>
> * {igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0}:
> - shard-adlp: NOTRUN -> [WARN][9] +1 other test warn
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
>
> * igt@xe_pm@s2idle-vm-bind-prefetch:
> - {shard-lnl}: NOTRUN -> [DMESG-FAIL][10]
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-2/igt@xe_pm@s2idle-vm-bind-prefetch.html
>
>
> Known issues
> ------------
>
> Here are the changes found in xe-pw-134523v2_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
> - shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#660])
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
>
> * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y:
> - shard-adlp: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#1214] / [Intel XE#324]) +2 other tests dmesg-warn
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y.html
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
> - shard-adlp: NOTRUN -> [FAIL][14] ([Intel XE#1204])
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124] / [Intel XE#1201])
> [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
> - shard-adlp: NOTRUN -> [FAIL][16] ([Intel XE#1231])
> [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
> - shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#1124] / [Intel XE#1201]) +9 other tests skip
> [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
> - shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#610])
> [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
>
> * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
> - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#367])
> [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
>
> * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
> - shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
> [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
>
> * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
> - shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +19 other tests skip
> [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
>
> * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-1:
> - shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#787]) +29 other tests skip
> [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-1.html
>
> * igt@kms_chamelium_hpd@common-hpd-after-hibernate:
> - shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
> [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
>
> * igt@kms_content_protection@dp-mst-type-1:
> - shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#307])
> [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_content_protection@dp-mst-type-1.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#308])
> [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
> - shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#309]) +3 other tests skip
> [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
>
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> - shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#323])
> [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>
> * igt@kms_cursor_legacy@forked-move@pipe-b:
> - shard-dg2-set2: [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1214] / [Intel XE#282]) +5 other tests dmesg-warn
> [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-466/igt@kms_cursor_legacy@forked-move@pipe-b.html
> [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_cursor_legacy@forked-move@pipe-b.html
>
> * igt@kms_cursor_legacy@torture-move@pipe-a:
> - shard-adlp: NOTRUN -> [DMESG-WARN][30] ([Intel XE#1214] / [Intel XE#877]) +1 other test dmesg-warn
> [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_cursor_legacy@torture-move@pipe-a.html
>
> * igt@kms_fbcon_fbt@psr-suspend:
> - shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#776])
> [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_fbcon_fbt@psr-suspend.html
>
> * igt@kms_feature_discovery@display-3x:
> - shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#703])
> [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_feature_discovery@display-3x.html
>
> * igt@kms_feature_discovery@display-4x:
> - shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#1138] / [Intel XE#1201])
> [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_feature_discovery@display-4x.html
>
> * igt@kms_feature_discovery@psr2:
> - shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#1135] / [Intel XE#1201])
> [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_feature_discovery@psr2.html
>
> * igt@kms_flip@2x-flip-vs-suspend:
> - shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#310])
> [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_flip@2x-flip-vs-suspend.html
>
> * igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
> - shard-dg2-set2: NOTRUN -> [INCOMPLETE][36] ([Intel XE#1195]) +1 other test incomplete
> [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
> - shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#656]) +23 other tests skip
> [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
>
> * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
> - shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#651]) +12 other tests skip
> [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
> - shard-adlp: NOTRUN -> [FAIL][39] ([Intel XE#1861]) +1 other test fail
> [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
> - shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip
> [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
> - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#653])
> [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
>
> * igt@kms_panel_fitting@legacy:
> - shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#455]) +20 other tests skip
> [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_panel_fitting@legacy.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1:
> - shard-adlp: NOTRUN -> [FAIL][43] ([Intel XE#2028])
> [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1.html
>
> * igt@kms_plane@pixel-format-source-clamping:
> - shard-adlp: NOTRUN -> [INCOMPLETE][44] ([Intel XE#1035] / [Intel XE#1195])
> [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_plane@pixel-format-source-clamping.html
>
> * igt@kms_plane@plane-panning-bottom-right-suspend:
> - shard-adlp: NOTRUN -> [DMESG-FAIL][45] ([Intel XE#1608] / [Intel XE#2034]) +1 other test dmesg-fail
> [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
>
> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
> - shard-dg2-set2: [PASS][46] -> [FAIL][47] ([Intel XE#361]) +2 other tests fail
> [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
> [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
>
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
> - shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
> [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
>
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
> - shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
> [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
>
> * igt@kms_pm_rpm@legacy-planes-dpms:
> - shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#1211]) +1 other test skip
> [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_pm_rpm@legacy-planes-dpms.html
>
> * igt@kms_psr2_sf@cursor-plane-update-sf:
> - shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#1201]) +4 other tests skip
> [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_psr2_sf@cursor-plane-update-sf.html
>
> * igt@kms_psr2_su@page_flip-xrgb8888:
> - shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#1122] / [Intel XE#1201])
> [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
>
> * igt@kms_psr@psr-sprite-plane-onoff:
> - shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#929]) +11 other tests skip
> [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_psr@psr-sprite-plane-onoff.html
>
> * igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1:
> - shard-adlp: NOTRUN -> [FAIL][54] ([Intel XE#294]) +1 other test fail
> [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1.html
>
> * igt@kms_rotation_crc@multiplane-rotation:
> - shard-adlp: NOTRUN -> [FAIL][55] ([Intel XE#1874]) +3 other tests fail
> [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_rotation_crc@multiplane-rotation.html
>
> * igt@kms_rotation_crc@sprite-rotation-90:
> - shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
> [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_rotation_crc@sprite-rotation-90.html
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> - shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#362])
> [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>
> * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1:
> - shard-adlp: NOTRUN -> [DMESG-FAIL][58] ([Intel XE#1608]) +6 other tests dmesg-fail
> [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-off:
> - shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#1932])
> [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
>
> * igt@xe_ccs@block-copy-compressed-inc-dimension:
> - shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488])
> [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_ccs@block-copy-compressed-inc-dimension.html
>
> * igt@xe_compute@ccs-mode-compute-kernel:
> - shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#1447])
> [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_compute@ccs-mode-compute-kernel.html
>
> * igt@xe_copy_basic@mem-set-linear-0x369:
> - shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#1126] / [Intel XE#1201])
> [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_copy_basic@mem-set-linear-0x369.html
>
> * igt@xe_evict@evict-beng-cm-threads-large:
> - shard-dg2-set2: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
> [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html
> [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-464/igt@xe_evict@evict-beng-cm-threads-large.html
>
> * igt@xe_evict@evict-beng-large-external-cm:
> - shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#261]) +5 other tests skip
> [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_evict@evict-beng-large-external-cm.html
>
> * igt@xe_evict@evict-beng-threads-large:
> - shard-dg2-set2: [PASS][66] -> [TIMEOUT][67] ([Intel XE#1473])
> [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html
> [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-434/igt@xe_evict@evict-beng-threads-large.html
>
> * igt@xe_evict@evict-small:
> - shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688])
> [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_evict@evict-small.html
>
> * igt@xe_evict_ccs@evict-overcommit-simple:
> - shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#688])
> [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_evict_ccs@evict-overcommit-simple.html
>
> * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
> - shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#1392]) +7 other tests skip
> [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
>
> * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch:
> - shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#288]) +18 other tests skip
> [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html
>
> * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
> - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip
> [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
>
> * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race:
> - shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#1081])
> [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
> [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate-race.html
>
> * igt@xe_exec_threads@threads-hang-rebind-err:
> - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#1256]) +1 other test fail
> [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-435/igt@xe_exec_threads@threads-hang-rebind-err.html
> [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-464/igt@xe_exec_threads@threads-hang-rebind-err.html
>
> * igt@xe_module_load@force-load:
> - shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#378])
> [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_module_load@force-load.html
>
> * igt@xe_pm@d3cold-multiple-execs:
> - shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip
> [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_pm@d3cold-multiple-execs.html
>
> * igt@xe_pm@d3hot-mmap-vram:
> - shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#1948])
> [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_pm@d3hot-mmap-vram.html
>
> * igt@xe_pm@s4-basic-exec:
> - shard-adlp: [PASS][80] -> [DMESG-WARN][81] ([Intel XE#1214]) +1 other test dmesg-warn
> [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-6/igt@xe_pm@s4-basic-exec.html
> [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-4/igt@xe_pm@s4-basic-exec.html
>
> * igt@xe_query@multigpu-query-invalid-query:
> - shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
> [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_query@multigpu-query-invalid-query.html
>
>
> #### Possible fixes ####
>
> * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
> - shard-dg2-set2: [DMESG-WARN][83] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][84]
> [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
> [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
>
> * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
> - shard-dg2-set2: [DMESG-WARN][85] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][86] +9 other tests pass
> [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
> [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
> - shard-dg2-set2: [DMESG-WARN][87] ([Intel XE#282]) -> [PASS][88] +1 other test pass
> [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
> [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> - {shard-lnl}: [FAIL][89] -> [PASS][90]
> [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>
> * igt@kms_cursor_legacy@single-bo@pipe-a:
> - shard-dg2-set2: [DMESG-WARN][91] ([Intel XE#1214] / [Intel XE#877]) -> [PASS][92]
> [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-434/igt@kms_cursor_legacy@single-bo@pipe-a.html
> [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@kms_cursor_legacy@single-bo@pipe-a.html
>
> * igt@kms_flip@wf_vblank-ts-check:
> - {shard-lnl}: [FAIL][93] ([Intel XE#480] / [Intel XE#886]) -> [PASS][94] +1 other test pass
> [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html
> [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check.html
>
> * igt@kms_pm_dc@dc6-psr:
> - {shard-lnl}: [FAIL][95] ([Intel XE#1430]) -> [PASS][96]
> [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
> [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
>
> * igt@kms_pm_rpm@legacy-planes-dpms:
> - {shard-lnl}: [SKIP][97] ([Intel XE#1211]) -> [PASS][98]
> [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-1/igt@kms_pm_rpm@legacy-planes-dpms.html
> [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-7/igt@kms_pm_rpm@legacy-planes-dpms.html
>
> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
> - {shard-lnl}: [INCOMPLETE][99] -> [PASS][100]
> [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
> [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
>
> * igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate:
> - {shard-lnl}: [INCOMPLETE][101] ([Intel XE#1330]) -> [PASS][102]
> [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-3/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
> [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-2/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
>
> * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race:
> - {shard-lnl}: [ABORT][103] ([Intel XE#1761]) -> [PASS][104]
> [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html
> [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html
>
> * igt@xe_exec_fault_mode@many-invalid-fault:
> - {shard-lnl}: [DMESG-WARN][105] ([Intel XE#1638]) -> [PASS][106]
> [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-8/igt@xe_exec_fault_mode@many-invalid-fault.html
> [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-6/igt@xe_exec_fault_mode@many-invalid-fault.html
>
> * igt@xe_gt_freq@freq_fixed_exec:
> - shard-adlp: [FAIL][107] ([Intel XE#1414]) -> [PASS][108]
> [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@xe_gt_freq@freq_fixed_exec.html
> [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@xe_gt_freq@freq_fixed_exec.html
>
> * igt@xe_gt_freq@freq_low_max:
> - {shard-lnl}: [FAIL][109] ([Intel XE#1045]) -> [PASS][110]
> [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-2/igt@xe_gt_freq@freq_low_max.html
> [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-1/igt@xe_gt_freq@freq_low_max.html
>
> * igt@xe_pm@s4-vm-bind-userptr:
> - shard-adlp: [DMESG-WARN][111] ([Intel XE#1214]) -> [PASS][112]
> [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@xe_pm@s4-vm-bind-userptr.html
> [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-4/igt@xe_pm@s4-vm-bind-userptr.html
>
> * igt@xe_pm_residency@toggle-gt-c6:
> - shard-adlp: [FAIL][113] ([Intel XE#958]) -> [PASS][114]
> [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@xe_pm_residency@toggle-gt-c6.html
> [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@xe_pm_residency@toggle-gt-c6.html
> - {shard-lnl}: [FAIL][115] ([Intel XE#958]) -> [PASS][116]
> [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
> [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-2/igt@xe_pm_residency@toggle-gt-c6.html
>
> * igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer:
> - {shard-lnl}: [FAIL][117] ([Intel XE#1081]) -> [PASS][118]
> [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-lnl-3/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
> [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-lnl-8/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
>
>
> #### Warnings ####
>
> * igt@kms_async_flips@async-flip-with-page-flip-events:
> - shard-adlp: [DMESG-WARN][119] ([Intel XE#1033] / [Intel XE#1214]) -> [DMESG-WARN][120] ([Intel XE#1033] / [Intel XE#1214] / [Intel XE#324])
> [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@kms_async_flips@async-flip-with-page-flip-events.html
> [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events.html
>
> * igt@kms_big_fb@linear-16bpp-rotate-270:
> - shard-dg2-set2: [SKIP][121] ([Intel XE#316]) -> [SKIP][122] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
> [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
> [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-270.html
>
> * igt@kms_big_fb@linear-8bpp-rotate-270:
> - shard-dg2-set2: [SKIP][123] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][124] ([Intel XE#316]) +5 other tests skip
> [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-270.html
> [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
>
> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> - shard-adlp: [DMESG-FAIL][125] ([Intel XE#324]) -> [FAIL][126] ([Intel XE#1204])
> [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>
> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> - shard-adlp: [FAIL][127] ([Intel XE#1231]) -> [DMESG-FAIL][128] ([Intel XE#324])
> [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>
> * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
> - shard-dg2-set2: [SKIP][129] ([Intel XE#1124]) -> [SKIP][130] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip
> [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
> [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> - shard-dg2-set2: [SKIP][131] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][132] ([Intel XE#1124]) +11 other tests skip
> [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>
> * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
> - shard-dg2-set2: [SKIP][133] ([Intel XE#367]) -> [SKIP][134] ([Intel XE#1201] / [Intel XE#367])
> [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
> [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
>
> * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
> - shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][136] ([Intel XE#367]) +2 other tests skip
> [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
> [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
>
> * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
> - shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][138] ([Intel XE#787]) +69 other tests skip
> [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
> [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
>
> * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
> - shard-dg2-set2: [SKIP][139] ([Intel XE#787]) -> [SKIP][140] ([Intel XE#1201] / [Intel XE#787]) +55 other tests skip
> [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
> [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
>
> * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
> - shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][142] ([Intel XE#1252])
> [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
> [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
>
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
> - shard-dg2-set2: [SKIP][143] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip
> [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
> [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
>
> * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
> - shard-dg2-set2: [SKIP][145] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][146] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip
> [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
> [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
>
> * igt@kms_cdclk@mode-transition-all-outputs:
> - shard-dg2-set2: [SKIP][147] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][148] ([Intel XE#314])
> [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
> [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html
>
> * igt@kms_chamelium_color@ctm-negative:
> - shard-dg2-set2: [SKIP][149] ([Intel XE#306]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#306])
> [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html
> [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_chamelium_color@ctm-negative.html
>
> * igt@kms_chamelium_color@degamma:
> - shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][152] ([Intel XE#306])
> [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_chamelium_color@degamma.html
> [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_chamelium_color@degamma.html
>
> * igt@kms_chamelium_frames@hdmi-crc-multiple:
> - shard-dg2-set2: [SKIP][153] ([Intel XE#373]) -> [SKIP][154] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
> [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-multiple.html
> [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-multiple.html
>
> * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
> - shard-dg2-set2: [SKIP][155] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][156] ([Intel XE#373]) +11 other tests skip
> [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
> [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
>
> * igt@kms_cursor_crc@cursor-random-512x512:
> - shard-dg2-set2: [SKIP][157] ([Intel XE#308]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
> [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
> [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x512.html
>
> * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
> - shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][160] ([Intel XE#308])
> [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
> [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
>
> * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
> - shard-dg2-set2: [INCOMPLETE][161] ([Intel XE#1195]) -> [DMESG-WARN][162] ([Intel XE#1214] / [Intel XE#282])
> [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-463/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
> [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
>
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> - shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][164] ([Intel XE#323]) +1 other test skip
> [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
> [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>
> * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
> - shard-dg2-set2: [DMESG-WARN][165] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][166] ([Intel XE#282]) +9 other tests dmesg-warn
> [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
> [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> - shard-dg2-set2: [DMESG-WARN][167] ([Intel XE#282]) -> [DMESG-WARN][168] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
> [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@single-bo:
> - shard-dg2-set2: [DMESG-WARN][169] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877]) -> [DMESG-WARN][170] ([Intel XE#1214] / [Intel XE#282])
> [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-434/igt@kms_cursor_legacy@single-bo.html
> [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-435/igt@kms_cursor_legacy@single-bo.html
>
> * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4:
> - shard-dg2-set2: [SKIP][171] ([Intel XE#455] / [Intel XE#929]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929])
> [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
> [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html
>
> * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6:
> - shard-dg2-set2: [SKIP][173] ([Intel XE#1927]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#1927])
> [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
> [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html
>
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
> - shard-dg2-set2: [SKIP][175] ([i915#3804]) -> [SKIP][176] ([Intel XE#1201] / [i915#3804])
> [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
> [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
>
> * igt@kms_fbcon_fbt@psr-suspend:
> - shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][178] ([Intel XE#776])
> [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
> [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
>
> * igt@kms_feature_discovery@psr1:
> - shard-dg2-set2: [SKIP][179] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][180] ([Intel XE#1135]) +1 other test skip
> [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_feature_discovery@psr1.html
> [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_feature_discovery@psr1.html
>
> * igt@kms_flip@flip-vs-suspend-interruptible:
> - shard-adlp: [DMESG-FAIL][181] ([Intel XE#1608]) -> [INCOMPLETE][182] ([Intel XE#1195] / [Intel XE#927])
> [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
> [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
>
> * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
> - shard-adlp: [DMESG-FAIL][183] ([Intel XE#1608]) -> [INCOMPLETE][184] ([Intel XE#1195])
> [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
> [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
> - shard-dg2-set2: [SKIP][185] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][186] ([Intel XE#455]) +15 other tests skip
> [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
> [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
>
> * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
> - shard-dg2-set2: [SKIP][187] ([Intel XE#651]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#651]) +15 other tests skip
> [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
> [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
> - shard-dg2-set2: [SKIP][189] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][190] ([Intel XE#651]) +30 other tests skip
> [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
> [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
> - shard-dg2-set2: [SKIP][191] ([Intel XE#653]) -> [SKIP][192] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip
> [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
> [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
> - shard-dg2-set2: [SKIP][193] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][194] ([Intel XE#653]) +29 other tests skip
> [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
> [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
>
> * igt@kms_getfb@getfb-reject-ccs:
> - shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#605]) -> [SKIP][196] ([Intel XE#605])
> [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html
> [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
>
> * igt@kms_hdr@invalid-hdr:
> - shard-dg2-set2: [SKIP][197] ([Intel XE#455]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip
> [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
> [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc:
> - shard-adlp: [INCOMPLETE][199] ([Intel XE#1195] / [Intel XE#927]) -> [DMESG-FAIL][200] ([Intel XE#1608])
> [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
> [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
> - shard-adlp: [INCOMPLETE][201] ([Intel XE#1195]) -> [DMESG-FAIL][202] ([Intel XE#1608])
> [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
> [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
>
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
> - shard-dg2-set2: [SKIP][203] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][204] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
> [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
> [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
>
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
> - shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][206] ([Intel XE#498]) +2 other tests skip
> [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
> [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
>
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
> - shard-dg2-set2: [SKIP][207] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
> [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
> [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
>
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6:
> - shard-dg2-set2: [SKIP][209] ([Intel XE#498]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
> [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html
> [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6:
> - shard-dg2-set2: [SKIP][211] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][212] ([Intel XE#305]) +2 other tests skip
> [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html
> [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6:
> - shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][214] ([Intel XE#305] / [Intel XE#455]) +1 other test skip
> [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html
> [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-6.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
> - shard-dg2-set2: [SKIP][215] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
> [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
> [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6:
> - shard-dg2-set2: [SKIP][217] ([Intel XE#305]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
> [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
> [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
>
> * igt@kms_pm_backlight@basic-brightness:
> - shard-dg2-set2: [SKIP][219] ([Intel XE#870]) -> [SKIP][220] ([Intel XE#1201] / [Intel XE#870])
> [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
> [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_pm_backlight@basic-brightness.html
>
> * igt@kms_pm_dc@dc6-psr:
> - shard-dg2-set2: [SKIP][221] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][222] ([Intel XE#1129])
> [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html
> [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
>
> * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
> - shard-dg2-set2: [SKIP][223] ([Intel XE#929]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
> [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
> [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
>
> * igt@kms_psr2_su@page_flip-xrgb8888:
> - shard-dg2-set2: [SKIP][225] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][226] ([Intel XE#1122])
> [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_psr2_su@page_flip-xrgb8888.html
> [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html
>
> * igt@kms_psr@fbc-psr2-sprite-plane-move:
> - shard-dg2-set2: [SKIP][227] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][228] ([Intel XE#929]) +18 other tests skip
> [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html
> [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
>
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
> - shard-dg2-set2: [SKIP][229] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][230] ([Intel XE#1127])
> [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
> [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
>
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
> - shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][232] ([Intel XE#327]) +1 other test skip
> [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
> [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
>
> * igt@kms_vblank@ts-continuation-suspend:
> - shard-adlp: [INCOMPLETE][233] ([Intel XE#1034] / [Intel XE#1195] / [Intel XE#927]) -> [DMESG-FAIL][234] ([Intel XE#1608])
> [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@kms_vblank@ts-continuation-suspend.html
> [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend.html
>
> * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
> - shard-adlp: [INCOMPLETE][235] ([Intel XE#1034] / [Intel XE#1195]) -> [DMESG-FAIL][236] ([Intel XE#1608])
> [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
> [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
>
> * igt@kms_writeback@writeback-check-output:
> - shard-dg2-set2: [SKIP][237] ([Intel XE#756]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#756])
> [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
> [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@kms_writeback@writeback-check-output.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-on:
> - shard-dg2-set2: [SKIP][239] ([Intel XE#1091]) -> [SKIP][240] ([Intel XE#1091] / [Intel XE#1201])
> [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-on.html
> [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-on.html
>
> * igt@xe_compute_preempt@compute-preempt:
> - shard-dg2-set2: [SKIP][241] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][242] ([Intel XE#1280] / [Intel XE#455]) +3 other tests skip
> [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
> [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
>
> * igt@xe_copy_basic@mem-copy-linear-0x369:
> - shard-dg2-set2: [SKIP][243] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][244] ([Intel XE#1123])
> [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html
> [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
>
> * igt@xe_copy_basic@mem-set-linear-0xfffe:
> - shard-dg2-set2: [SKIP][245] ([Intel XE#1126]) -> [SKIP][246] ([Intel XE#1126] / [Intel XE#1201])
> [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
> [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html
>
> * igt@xe_evict@evict-mixed-threads-large:
> - shard-dg2-set2: [INCOMPLETE][247] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [DMESG-FAIL][248] ([Intel XE#482])
> [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
> [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
>
> * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
> - shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][250] ([Intel XE#288]) +23 other tests skip
> [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
> [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
>
> * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
> - shard-dg2-set2: [SKIP][251] ([Intel XE#288]) -> [SKIP][252] ([Intel XE#1201] / [Intel XE#288]) +11 other tests skip
> [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
> [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
>
> * igt@xe_huc_copy@huc_copy:
> - shard-dg2-set2: [SKIP][253] ([Intel XE#1201] / [Intel XE#255]) -> [SKIP][254] ([Intel XE#255])
> [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_huc_copy@huc_copy.html
> [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_huc_copy@huc_copy.html
>
> * igt@xe_live_ktest@xe_mocs:
> - shard-adlp: [FAIL][255] ([Intel XE#1999]) -> [SKIP][256] ([Intel XE#1192] / [Intel XE#1201])
> [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-6/igt@xe_live_ktest@xe_mocs.html
> [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-4/igt@xe_live_ktest@xe_mocs.html
>
> * igt@xe_pat@pat-index-xe2:
> - shard-dg2-set2: [SKIP][257] ([Intel XE#977]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#977])
> [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
> [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
>
> * igt@xe_pat@pat-index-xehpc:
> - shard-dg2-set2: [SKIP][259] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][260] ([Intel XE#979])
> [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html
> [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
>
> * igt@xe_pm@d3cold-mmap-vram:
> - shard-dg2-set2: [SKIP][261] ([Intel XE#366]) -> [SKIP][262] ([Intel XE#1201] / [Intel XE#366])
> [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
> [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html
>
> * igt@xe_pm@s2idle-vm-bind-userptr:
> - shard-adlp: [INCOMPLETE][263] ([Intel XE#1195]) -> [DMESG-FAIL][264] ([Intel XE#1608] / [Intel XE#2034])
> [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-1/igt@xe_pm@s2idle-vm-bind-userptr.html
> [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-userptr.html
>
> * igt@xe_pm@s3-basic-exec:
> - shard-adlp: [INCOMPLETE][265] ([Intel XE#1195] / [Intel XE#1358]) -> [DMESG-FAIL][266] ([Intel XE#1608])
> [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-9/igt@xe_pm@s3-basic-exec.html
> [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-8/igt@xe_pm@s3-basic-exec.html
>
> * igt@xe_pm@s3-d3cold-basic-exec:
> - shard-dg2-set2: [SKIP][267] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][268] ([Intel XE#366]) +1 other test skip
> [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html
> [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
>
> * igt@xe_pm@s4-d3hot-basic-exec:
> - shard-adlp: [DMESG-WARN][269] ([Intel XE#1214]) -> [ABORT][270] ([Intel XE#1358])
> [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-4/igt@xe_pm@s4-d3hot-basic-exec.html
> [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-9/igt@xe_pm@s4-d3hot-basic-exec.html
>
> * igt@xe_pm@s4-vm-bind-prefetch:
> - shard-adlp: [DMESG-WARN][271] ([Intel XE#1214]) -> [INCOMPLETE][272] ([Intel XE#1195])
> [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-2/igt@xe_pm@s4-vm-bind-prefetch.html
> [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-9/igt@xe_pm@s4-vm-bind-prefetch.html
>
> * igt@xe_query@multigpu-query-engines:
> - shard-dg2-set2: [SKIP][273] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][274] ([Intel XE#944]) +3 other tests skip
> [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
> [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
>
> * igt@xe_query@multigpu-query-uc-fw-version-guc:
> - shard-dg2-set2: [SKIP][275] ([Intel XE#944]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#944])
> [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html
> [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
>
> * igt@xe_wedged@wedged-at-any-timeout:
> - shard-dg2-set2: [DMESG-FAIL][277] ([Intel XE#1760]) -> [DMESG-WARN][278] ([Intel XE#1214] / [Intel XE#1760])
> [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-dg2-464/igt@xe_wedged@wedged-at-any-timeout.html
> [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-dg2-463/igt@xe_wedged@wedged-at-any-timeout.html
> - shard-adlp: [DMESG-FAIL][279] ([Intel XE#1760]) -> [DMESG-WARN][280] ([Intel XE#1214] / [Intel XE#1760])
> [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03/shard-adlp-2/igt@xe_wedged@wedged-at-any-timeout.html
> [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/shard-adlp-1/igt@xe_wedged@wedged-at-any-timeout.html
>
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
> [Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034
> [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
> [Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
> [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
> [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
> [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
> [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#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
> [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
> [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
> [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
> [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
> [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
> [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
> [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
> [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
> [Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256
> [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
> [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
> [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
> [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
> [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
> [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#1414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1414
> [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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
> [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
> [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
> [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
> [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
> [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
> [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
> [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
> [Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608
> [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
> [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
> [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
> [Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
> [Intel XE#1817]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1817
> [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
> [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
> [Intel XE#1927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1927
> [Intel XE#1932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1932
> [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
> [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
> [Intel XE#2023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2023
> [Intel XE#2024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2024
> [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
> [Intel XE#2034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2034
> [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
> [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
> [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
> [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
> [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
> [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
> [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#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
> [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
> [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#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
> [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
> [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
> [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
> [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
> [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#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
> [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
> [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
> [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482
> [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
> [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
> [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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
> [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
> [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#660]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/660
> [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
> [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
> [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
> [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
> [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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
> [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
> [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
> [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
> [Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927
> [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#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
> [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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
>
>
> Build changes
> -------------
>
> * Linux: xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03 -> xe-pw-134523v2
>
> IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-1408-b8a4e08086ace055e193245cd77a6182936d9f03: b8a4e08086ace055e193245cd77a6182936d9f03
> xe-pw-134523v2: 134523v2
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134523v2/index.html
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
` (8 preceding siblings ...)
2024-06-06 20:08 ` ✗ CI.FULL: failure " Patchwork
@ 2024-06-07 20:18 ` Cavitt, Jonathan
9 siblings, 0 replies; 14+ messages in thread
From: Cavitt, Jonathan @ 2024-06-07 20:18 UTC (permalink / raw)
To: Wajdeczko, Michal, intel-xe@lists.freedesktop.org
Cc: Wajdeczko, Michal, Cavitt, Jonathan
-----Original Message-----
From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Michal Wajdeczko
Sent: Thursday, June 6, 2024 6:07 AM
To: intel-xe@lists.freedesktop.org
Cc: Wajdeczko, Michal <Michal.Wajdeczko@intel.com>
Subject: [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ
>
> v1: https://patchwork.freedesktop.org/series/134523/#rev1
> v2: use code from g2h worker instead of g2h irq handler (Matt)
I read through both patches, and agree with both of them. Following
Reviewed-by applies to both.
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt
>
> Michal Wajdeczko (2):
> drm/xe/guc: Split g2h worker function
> drm/xe/guc: Allow CTB G2H processing without G2H IRQ
>
> drivers/gpu/drm/xe/xe_guc_ct.c | 53 ++++++++++++++++++++++++++--
> drivers/gpu/drm/xe/xe_guc_ct_types.h | 2 ++
> 2 files changed, 53 insertions(+), 2 deletions(-)
>
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-06-07 20:18 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-06 13:06 [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
2024-06-06 13:06 ` [PATCH v2 1/2] drm/xe/guc: Split g2h worker function Michal Wajdeczko
2024-06-06 16:10 ` Matthew Brost
2024-06-06 13:06 ` [PATCH v2 2/2] drm/xe/guc: Allow CTB G2H processing without G2H IRQ Michal Wajdeczko
2024-06-06 16:14 ` Matthew Brost
2024-06-06 13:36 ` ✓ CI.Patch_applied: success for Allow CTB G2H processing without G2H IRQ (rev2) Patchwork
2024-06-06 13:37 ` ✓ CI.checkpatch: " Patchwork
2024-06-06 13:38 ` ✓ CI.KUnit: " Patchwork
2024-06-06 13:49 ` ✓ CI.Build: " Patchwork
2024-06-06 13:49 ` ✗ CI.Hooks: failure " Patchwork
2024-06-06 13:51 ` ✓ CI.checksparse: success " Patchwork
2024-06-06 20:08 ` ✗ CI.FULL: failure " Patchwork
2024-06-07 10:19 ` Michal Wajdeczko
2024-06-07 20:18 ` [PATCH v2 0/2] Allow CTB G2H processing without G2H IRQ Cavitt, Jonathan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox