* [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error.
@ 2025-06-24 1:17 Zhanjun Dong
2025-06-24 1:24 ` ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3) Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Zhanjun Dong @ 2025-06-24 1:17 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong, Jonathan Cavitt, Michal Wajdeczko, Stuart Summers
Disable GuC communication on Xe micro controller hardware initialization
error.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4917
---
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Stuart Summers <stuart.summers@intel.com>
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Change list:
v6: Skip disable ct on xe_guc_enable_communication error
v5: Set wedge is excessive action, revert back to disable ct
v4: Fix typo and add new line
v3: v2 CI re-run
v2: Remove unnecessary jump to err-out
Drop disable ct, switch to set wedge
---
drivers/gpu/drm/xe/xe_guc.c | 5 +++++
drivers/gpu/drm/xe/xe_guc.h | 1 +
drivers/gpu/drm/xe/xe_uc.c | 19 ++++++++++++++-----
3 files changed, 20 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
index 209e5d53c290..9d7175b16cc7 100644
--- a/drivers/gpu/drm/xe/xe_guc.c
+++ b/drivers/gpu/drm/xe/xe_guc.c
@@ -1230,6 +1230,11 @@ int xe_guc_enable_communication(struct xe_guc *guc)
return 0;
}
+void xe_guc_disable_communication(struct xe_guc *guc)
+{
+ xe_guc_ct_disable(&guc->ct);
+}
+
int xe_guc_suspend(struct xe_guc *guc)
{
struct xe_gt *gt = guc_to_gt(guc);
diff --git a/drivers/gpu/drm/xe/xe_guc.h b/drivers/gpu/drm/xe/xe_guc.h
index 58338be44558..285c19929f8c 100644
--- a/drivers/gpu/drm/xe/xe_guc.h
+++ b/drivers/gpu/drm/xe/xe_guc.h
@@ -33,6 +33,7 @@ int xe_guc_reset(struct xe_guc *guc);
int xe_guc_upload(struct xe_guc *guc);
int xe_guc_min_load_for_hwconfig(struct xe_guc *guc);
int xe_guc_enable_communication(struct xe_guc *guc);
+void xe_guc_disable_communication(struct xe_guc *guc);
int xe_guc_suspend(struct xe_guc *guc);
void xe_guc_notify(struct xe_guc *guc);
int xe_guc_auth_huc(struct xe_guc *guc, u32 rsa_addr);
diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c
index 3a8751a8b92d..d74bfc7a85d1 100644
--- a/drivers/gpu/drm/xe/xe_uc.c
+++ b/drivers/gpu/drm/xe/xe_uc.c
@@ -13,6 +13,7 @@
#include "xe_gt_printk.h"
#include "xe_gt_sriov_vf.h"
#include "xe_guc.h"
+#include "xe_guc_ct.h"
#include "xe_guc_pc.h"
#include "xe_guc_engine_activity.h"
#include "xe_huc.h"
@@ -161,15 +162,19 @@ static int vf_uc_init_hw(struct xe_uc *uc)
err = xe_gt_sriov_vf_connect(uc_to_gt(uc));
if (err)
- return err;
+ goto err_out;
uc->guc.submission_state.enabled = true;
err = xe_gt_record_default_lrcs(uc_to_gt(uc));
if (err)
- return err;
+ goto err_out;
return 0;
+
+err_out:
+ xe_guc_disable_communication(&uc->guc);
+ return err;
}
/*
@@ -201,15 +206,15 @@ int xe_uc_init_hw(struct xe_uc *uc)
ret = xe_gt_record_default_lrcs(uc_to_gt(uc));
if (ret)
- return ret;
+ goto err_out;
ret = xe_guc_post_load_init(&uc->guc);
if (ret)
- return ret;
+ goto err_out;
ret = xe_guc_pc_start(&uc->guc.pc);
if (ret)
- return ret;
+ goto err_out;
xe_guc_engine_activity_enable_stats(&uc->guc);
@@ -221,6 +226,10 @@ int xe_uc_init_hw(struct xe_uc *uc)
xe_gsc_load_start(&uc->gsc);
return 0;
+
+err_out:
+ xe_guc_disable_communication(&uc->guc);
+ return ret;
}
int xe_uc_fini_hw(struct xe_uc *uc)
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3)
2025-06-24 1:17 [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Zhanjun Dong
@ 2025-06-24 1:24 ` Patchwork
2025-06-24 5:22 ` ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4) Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-24 1:24 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
== Series Details ==
Series: drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3)
URL : https://patchwork.freedesktop.org/series/150488/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:22:55] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:23:00] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:23:27] Starting KUnit Kernel (1/1)...
[01:23:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:23:27] ================== guc_buf (11 subtests) ===================
[01:23:27] [PASSED] test_smallest
[01:23:27] [PASSED] test_largest
[01:23:27] [PASSED] test_granular
[01:23:27] [PASSED] test_unique
[01:23:27] [PASSED] test_overlap
[01:23:27] [PASSED] test_reusable
[01:23:27] [PASSED] test_too_big
[01:23:27] [PASSED] test_flush
[01:23:27] [PASSED] test_lookup
[01:23:27] [PASSED] test_data
[01:23:27] [PASSED] test_class
[01:23:27] ===================== [PASSED] guc_buf =====================
[01:23:27] =================== guc_dbm (7 subtests) ===================
[01:23:27] [PASSED] test_empty
[01:23:27] [PASSED] test_default
[01:23:27] ======================== test_size ========================
[01:23:27] [PASSED] 4
[01:23:27] [PASSED] 8
[01:23:27] [PASSED] 32
[01:23:27] [PASSED] 256
[01:23:27] ==================== [PASSED] test_size ====================
[01:23:27] ======================= test_reuse ========================
[01:23:27] [PASSED] 4
[01:23:27] [PASSED] 8
[01:23:27] [PASSED] 32
[01:23:27] [PASSED] 256
[01:23:27] =================== [PASSED] test_reuse ====================
[01:23:27] =================== test_range_overlap ====================
[01:23:27] [PASSED] 4
[01:23:27] [PASSED] 8
[01:23:27] [PASSED] 32
[01:23:27] [PASSED] 256
[01:23:27] =============== [PASSED] test_range_overlap ================
[01:23:27] =================== test_range_compact ====================
[01:23:27] [PASSED] 4
[01:23:27] [PASSED] 8
[01:23:27] [PASSED] 32
[01:23:27] [PASSED] 256
[01:23:27] =============== [PASSED] test_range_compact ================
[01:23:27] ==================== test_range_spare =====================
[01:23:27] [PASSED] 4
[01:23:27] [PASSED] 8
[01:23:27] [PASSED] 32
[01:23:27] [PASSED] 256
[01:23:27] ================ [PASSED] test_range_spare =================
[01:23:27] ===================== [PASSED] guc_dbm =====================
[01:23:27] =================== guc_idm (6 subtests) ===================
[01:23:27] [PASSED] bad_init
[01:23:27] [PASSED] no_init
[01:23:27] [PASSED] init_fini
[01:23:27] [PASSED] check_used
[01:23:27] [PASSED] check_quota
[01:23:27] [PASSED] check_all
[01:23:27] ===================== [PASSED] guc_idm =====================
[01:23:27] ================== no_relay (3 subtests) ===================
[01:23:27] [PASSED] xe_drops_guc2pf_if_not_ready
[01:23:27] [PASSED] xe_drops_guc2vf_if_not_ready
[01:23:27] [PASSED] xe_rejects_send_if_not_ready
[01:23:27] ==================== [PASSED] no_relay =====================
[01:23:27] ================== pf_relay (14 subtests) ==================
[01:23:27] [PASSED] pf_rejects_guc2pf_too_short
[01:23:27] [PASSED] pf_rejects_guc2pf_too_long
[01:23:27] [PASSED] pf_rejects_guc2pf_no_payload
[01:23:27] [PASSED] pf_fails_no_payload
[01:23:27] [PASSED] pf_fails_bad_origin
[01:23:27] [PASSED] pf_fails_bad_type
[01:23:27] [PASSED] pf_txn_reports_error
[01:23:27] [PASSED] pf_txn_sends_pf2guc
[01:23:27] [PASSED] pf_sends_pf2guc
[01:23:27] [SKIPPED] pf_loopback_nop
[01:23:27] [SKIPPED] pf_loopback_echo
[01:23:27] [SKIPPED] pf_loopback_fail
[01:23:27] [SKIPPED] pf_loopback_busy
[01:23:27] [SKIPPED] pf_loopback_retry
[01:23:27] ==================== [PASSED] pf_relay =====================
[01:23:27] ================== vf_relay (3 subtests) ===================
[01:23:27] [PASSED] vf_rejects_guc2vf_too_short
[01:23:27] [PASSED] vf_rejects_guc2vf_too_long
[01:23:27] [PASSED] vf_rejects_guc2vf_no_payload
[01:23:27] ==================== [PASSED] vf_relay =====================
[01:23:27] ================= pf_service (11 subtests) =================
[01:23:27] [PASSED] pf_negotiate_any
[01:23:27] [PASSED] pf_negotiate_base_match
[01:23:27] [PASSED] pf_negotiate_base_newer
[01:23:27] [PASSED] pf_negotiate_base_next
[01:23:27] [SKIPPED] pf_negotiate_base_older
[01:23:27] [PASSED] pf_negotiate_base_prev
[01:23:27] [PASSED] pf_negotiate_latest_match
[01:23:27] [PASSED] pf_negotiate_latest_newer
[01:23:27] [PASSED] pf_negotiate_latest_next
[01:23:27] [SKIPPED] pf_negotiate_latest_older
[01:23:27] [SKIPPED] pf_negotiate_latest_prev
[01:23:27] =================== [PASSED] pf_service ====================
[01:23:27] ===================== lmtt (1 subtest) =====================
[01:23:27] ======================== test_ops =========================
[01:23:27] [PASSED] 2-level
[01:23:27] [PASSED] multi-level
[01:23:27] ==================== [PASSED] test_ops =====================
[01:23:27] ====================== [PASSED] lmtt =======================
[01:23:27] =================== xe_mocs (2 subtests) ===================
[01:23:27] ================ xe_live_mocs_kernel_kunit ================
[01:23:27] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:23:27] ================ xe_live_mocs_reset_kunit =================
[01:23:27] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:23:27] ==================== [SKIPPED] xe_mocs =====================
[01:23:27] ================= xe_migrate (2 subtests) ==================
[01:23:27] ================= xe_migrate_sanity_kunit =================
[01:23:27] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:23:27] ================== xe_validate_ccs_kunit ==================
[01:23:27] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:23:27] =================== [SKIPPED] xe_migrate ===================
[01:23:27] ================== xe_dma_buf (1 subtest) ==================
[01:23:27] ==================== xe_dma_buf_kunit =====================
[01:23:27] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:23:27] =================== [SKIPPED] xe_dma_buf ===================
[01:23:27] ================= xe_bo_shrink (1 subtest) =================
[01:23:27] =================== xe_bo_shrink_kunit ====================
[01:23:27] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:23:27] ================== [SKIPPED] xe_bo_shrink ==================
[01:23:27] ==================== xe_bo (2 subtests) ====================
[01:23:27] ================== xe_ccs_migrate_kunit ===================
[01:23:27] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:23:27] ==================== xe_bo_evict_kunit ====================
[01:23:27] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:23:27] ===================== [SKIPPED] xe_bo ======================
[01:23:27] ==================== args (11 subtests) ====================
[01:23:27] [PASSED] count_args_test
[01:23:27] [PASSED] call_args_example
[01:23:27] [PASSED] call_args_test
[01:23:27] [PASSED] drop_first_arg_example
[01:23:27] [PASSED] drop_first_arg_test
[01:23:27] [PASSED] first_arg_example
[01:23:27] [PASSED] first_arg_test
[01:23:27] [PASSED] last_arg_example
[01:23:27] [PASSED] last_arg_test
[01:23:27] [PASSED] pick_arg_example
[01:23:27] [PASSED] sep_comma_example
[01:23:27] ====================== [PASSED] args =======================
[01:23:27] =================== xe_pci (2 subtests) ====================
[01:23:27] ==================== check_graphics_ip ====================
[01:23:27] [PASSED] 12.70 Xe_LPG
[01:23:27] [PASSED] 12.71 Xe_LPG
[01:23:27] [PASSED] 12.74 Xe_LPG+
[01:23:27] [PASSED] 20.01 Xe2_HPG
[01:23:27] [PASSED] 20.02 Xe2_HPG
[01:23:27] [PASSED] 20.04 Xe2_LPG
[01:23:27] [PASSED] 30.00 Xe3_LPG
[01:23:27] [PASSED] 30.01 Xe3_LPG
[01:23:27] [PASSED] 30.03 Xe3_LPG
[01:23:27] ================ [PASSED] check_graphics_ip ================
[01:23:27] ===================== check_media_ip ======================
[01:23:27] [PASSED] 13.00 Xe_LPM+
[01:23:27] [PASSED] 13.01 Xe2_HPM
[01:23:27] [PASSED] 20.00 Xe2_LPM
[01:23:27] [PASSED] 30.00 Xe3_LPM
[01:23:27] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[01:23:27] ================= [PASSED] check_media_ip ==================
[01:23:27] ===================== [PASSED] xe_pci ======================
[01:23:27] =================== xe_rtp (2 subtests) ====================
[01:23:27] =============== xe_rtp_process_to_sr_tests ================
[01:23:27] [PASSED] coalesce-same-reg
[01:23:27] [PASSED] no-match-no-add
[01:23:27] [PASSED] match-or
[01:23:27] [PASSED] match-or-xfail
[01:23:27] [PASSED] no-match-no-add-multiple-rules
[01:23:27] [PASSED] two-regs-two-entries
[01:23:27] [PASSED] clr-one-set-other
[01:23:27] [PASSED] set-field
[01:23:27] [PASSED] conflict-duplicate
[01:23:27] [PASSED] conflict-not-disjoint
[01:23:27] [PASSED] conflict-reg-type
[01:23:27] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:23:27] ================== xe_rtp_process_tests ===================
[01:23:27] [PASSED] active1
[01:23:27] [PASSED] active2
[01:23:27] [PASSED] active-inactive
[01:23:27] [PASSED] inactive-active
[01:23:27] [PASSED] inactive-1st_or_active-inactive
[01:23:27] [PASSED] inactive-2nd_or_active-inactive
[01:23:27] [PASSED] inactive-last_or_active-inactive
[01:23:27] [PASSED] inactive-no_or_active-inactive
[01:23:27] ============== [PASSED] xe_rtp_process_tests ===============
[01:23:27] ===================== [PASSED] xe_rtp ======================
[01:23:27] ==================== xe_wa (1 subtest) =====================
[01:23:27] ======================== xe_wa_gt =========================
[01:23:27] [PASSED] TIGERLAKE (B0)
[01:23:27] [PASSED] DG1 (A0)
[01:23:27] [PASSED] DG1 (B0)
[01:23:27] [PASSED] ALDERLAKE_S (A0)
[01:23:27] [PASSED] ALDERLAKE_S (B0)
[01:23:27] [PASSED] ALDERLAKE_S (C0)
[01:23:27] [PASSED] ALDERLAKE_S (D0)
[01:23:27] [PASSED] ALDERLAKE_P (A0)
[01:23:27] [PASSED] ALDERLAKE_P (B0)
[01:23:27] [PASSED] ALDERLAKE_P (C0)
[01:23:27] [PASSED] ALDERLAKE_S_RPLS (D0)
[01:23:27] [PASSED] ALDERLAKE_P_RPLU (E0)
[01:23:27] [PASSED] DG2_G10 (C0)
[01:23:27] [PASSED] DG2_G11 (B1)
[01:23:27] [PASSED] DG2_G12 (A1)
[01:23:27] [PASSED] METEORLAKE (g:A0, m:A0)
[01:23:27] [PASSED] METEORLAKE (g:A0, m:A0)
[01:23:27] [PASSED] METEORLAKE (g:A0, m:A0)
[01:23:27] [PASSED] LUNARLAKE (g:A0, m:A0)
[01:23:27] [PASSED] LUNARLAKE (g:B0, m:A0)
[01:23:27] [PASSED] BATTLEMAGE (g:A0, m:A1)
[01:23:27] ==================== [PASSED] xe_wa_gt =====================
[01:23:27] ====================== [PASSED] xe_wa ======================
[01:23:27] ============================================================
[01:23:27] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[01:23:27] Elapsed time: 31.389s total, 4.203s configuring, 26.870s building, 0.298s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:23:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:23:29] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:23:50] Starting KUnit Kernel (1/1)...
[01:23:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:23:50] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:23:50] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:23:50] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:23:50] =========== drm_validate_clone_mode (2 subtests) ===========
[01:23:50] ============== drm_test_check_in_clone_mode ===============
[01:23:50] [PASSED] in_clone_mode
[01:23:50] [PASSED] not_in_clone_mode
[01:23:50] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:23:50] =============== drm_test_check_valid_clones ===============
[01:23:50] [PASSED] not_in_clone_mode
[01:23:50] [PASSED] valid_clone
[01:23:50] [PASSED] invalid_clone
[01:23:50] =========== [PASSED] drm_test_check_valid_clones ===========
[01:23:50] ============= [PASSED] drm_validate_clone_mode =============
[01:23:50] ============= drm_validate_modeset (1 subtest) =============
[01:23:50] [PASSED] drm_test_check_connector_changed_modeset
[01:23:50] ============== [PASSED] drm_validate_modeset ===============
[01:23:50] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:23:50] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:23:50] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:23:50] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:23:50] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:23:50] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:23:50] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:23:50] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:23:50] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:23:50] ============== drm_bridge_alloc (2 subtests) ===============
[01:23:50] [PASSED] drm_test_drm_bridge_alloc_basic
[01:23:50] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:23:50] ================ [PASSED] drm_bridge_alloc =================
[01:23:50] ================== drm_buddy (7 subtests) ==================
[01:23:50] [PASSED] drm_test_buddy_alloc_limit
[01:23:50] [PASSED] drm_test_buddy_alloc_optimistic
[01:23:50] [PASSED] drm_test_buddy_alloc_pessimistic
[01:23:50] [PASSED] drm_test_buddy_alloc_pathological
[01:23:50] [PASSED] drm_test_buddy_alloc_contiguous
[01:23:50] [PASSED] drm_test_buddy_alloc_clear
[01:23:50] [PASSED] drm_test_buddy_alloc_range_bias
[01:23:50] ==================== [PASSED] drm_buddy ====================
[01:23:50] ============= drm_cmdline_parser (40 subtests) =============
[01:23:50] [PASSED] drm_test_cmdline_force_d_only
[01:23:50] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:23:50] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:23:50] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:23:50] [PASSED] drm_test_cmdline_force_e_only
[01:23:50] [PASSED] drm_test_cmdline_res
[01:23:50] [PASSED] drm_test_cmdline_res_vesa
[01:23:50] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:23:50] [PASSED] drm_test_cmdline_res_rblank
[01:23:50] [PASSED] drm_test_cmdline_res_bpp
[01:23:50] [PASSED] drm_test_cmdline_res_refresh
[01:23:50] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:23:50] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:23:50] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:23:50] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:23:50] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:23:50] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:23:50] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:23:50] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:23:50] [PASSED] drm_test_cmdline_res_margins_force_on
[01:23:50] [PASSED] drm_test_cmdline_res_vesa_margins
[01:23:50] [PASSED] drm_test_cmdline_name
[01:23:50] [PASSED] drm_test_cmdline_name_bpp
[01:23:50] [PASSED] drm_test_cmdline_name_option
[01:23:50] [PASSED] drm_test_cmdline_name_bpp_option
[01:23:50] [PASSED] drm_test_cmdline_rotate_0
[01:23:50] [PASSED] drm_test_cmdline_rotate_90
[01:23:50] [PASSED] drm_test_cmdline_rotate_180
[01:23:50] [PASSED] drm_test_cmdline_rotate_270
[01:23:50] [PASSED] drm_test_cmdline_hmirror
[01:23:50] [PASSED] drm_test_cmdline_vmirror
[01:23:50] [PASSED] drm_test_cmdline_margin_options
[01:23:50] [PASSED] drm_test_cmdline_multiple_options
[01:23:50] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:23:50] [PASSED] drm_test_cmdline_extra_and_option
[01:23:50] [PASSED] drm_test_cmdline_freestanding_options
[01:23:50] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:23:50] [PASSED] drm_test_cmdline_panel_orientation
[01:23:50] ================ drm_test_cmdline_invalid =================
[01:23:50] [PASSED] margin_only
[01:23:50] [PASSED] interlace_only
[01:23:50] [PASSED] res_missing_x
[01:23:50] [PASSED] res_missing_y
[01:23:50] [PASSED] res_bad_y
[01:23:50] [PASSED] res_missing_y_bpp
[01:23:50] [PASSED] res_bad_bpp
[01:23:50] [PASSED] res_bad_refresh
[01:23:50] [PASSED] res_bpp_refresh_force_on_off
[01:23:50] [PASSED] res_invalid_mode
[01:23:50] [PASSED] res_bpp_wrong_place_mode
[01:23:50] [PASSED] name_bpp_refresh
[01:23:50] [PASSED] name_refresh
[01:23:50] [PASSED] name_refresh_wrong_mode
[01:23:50] [PASSED] name_refresh_invalid_mode
[01:23:50] [PASSED] rotate_multiple
[01:23:50] [PASSED] rotate_invalid_val
[01:23:50] [PASSED] rotate_truncated
[01:23:50] [PASSED] invalid_option
[01:23:50] [PASSED] invalid_tv_option
[01:23:50] [PASSED] truncated_tv_option
[01:23:50] ============ [PASSED] drm_test_cmdline_invalid =============
[01:23:50] =============== drm_test_cmdline_tv_options ===============
[01:23:50] [PASSED] NTSC
[01:23:50] [PASSED] NTSC_443
[01:23:50] [PASSED] NTSC_J
[01:23:50] [PASSED] PAL
[01:23:50] [PASSED] PAL_M
[01:23:50] [PASSED] PAL_N
[01:23:50] [PASSED] SECAM
[01:23:50] [PASSED] MONO_525
[01:23:50] [PASSED] MONO_625
[01:23:50] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:23:50] =============== [PASSED] drm_cmdline_parser ================
[01:23:50] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:23:50] [PASSED] drm_test_connector_hdmi_init_valid
[01:23:50] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:23:50] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:23:50] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:23:50] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:23:50] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:23:50] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:23:50] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:23:50] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:23:50] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:23:50] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:23:50] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:23:50] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:23:50] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:23:50] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:23:50] [PASSED] drm_test_connector_hdmi_init_null_product
[01:23:50] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:23:50] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:23:50] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:23:50] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:23:50] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:23:50] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:23:50] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:23:50] ========= drm_test_connector_hdmi_init_type_valid =========
[01:23:50] [PASSED] HDMI-A
[01:23:50] [PASSED] HDMI-B
[01:23:50] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:23:50] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:23:50] [PASSED] Unknown
[01:23:50] [PASSED] VGA
[01:23:50] [PASSED] DVI-I
[01:23:50] [PASSED] DVI-D
[01:23:50] [PASSED] DVI-A
[01:23:50] [PASSED] Composite
[01:23:50] [PASSED] SVIDEO
[01:23:50] [PASSED] LVDS
[01:23:50] [PASSED] Component
[01:23:50] [PASSED] DIN
[01:23:50] [PASSED] DP
[01:23:50] [PASSED] TV
[01:23:50] [PASSED] eDP
[01:23:50] [PASSED] Virtual
[01:23:50] [PASSED] DSI
[01:23:50] [PASSED] DPI
[01:23:50] [PASSED] Writeback
[01:23:50] [PASSED] SPI
[01:23:50] [PASSED] USB
[01:23:50] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:23:50] ============ [PASSED] drmm_connector_hdmi_init =============
[01:23:50] ============= drmm_connector_init (3 subtests) =============
[01:23:50] [PASSED] drm_test_drmm_connector_init
[01:23:50] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:23:50] ========= drm_test_drmm_connector_init_type_valid =========
[01:23:50] [PASSED] Unknown
[01:23:50] [PASSED] VGA
[01:23:50] [PASSED] DVI-I
[01:23:50] [PASSED] DVI-D
[01:23:50] [PASSED] DVI-A
[01:23:50] [PASSED] Composite
[01:23:50] [PASSED] SVIDEO
[01:23:50] [PASSED] LVDS
[01:23:50] [PASSED] Component
[01:23:50] [PASSED] DIN
[01:23:50] [PASSED] DP
[01:23:50] [PASSED] HDMI-A
[01:23:50] [PASSED] HDMI-B
[01:23:50] [PASSED] TV
[01:23:50] [PASSED] eDP
[01:23:50] [PASSED] Virtual
[01:23:50] [PASSED] DSI
[01:23:50] [PASSED] DPI
[01:23:50] [PASSED] Writeback
[01:23:50] [PASSED] SPI
[01:23:50] [PASSED] USB
[01:23:50] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:23:50] =============== [PASSED] drmm_connector_init ===============
[01:23:50] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_init
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:23:50] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:23:50] [PASSED] Unknown
[01:23:50] [PASSED] VGA
[01:23:50] [PASSED] DVI-I
[01:23:50] [PASSED] DVI-D
[01:23:50] [PASSED] DVI-A
[01:23:50] [PASSED] Composite
[01:23:50] [PASSED] SVIDEO
[01:23:50] [PASSED] LVDS
[01:23:50] [PASSED] Component
[01:23:50] [PASSED] DIN
[01:23:50] [PASSED] DP
[01:23:50] [PASSED] HDMI-A
[01:23:50] [PASSED] HDMI-B
[01:23:50] [PASSED] TV
[01:23:50] [PASSED] eDP
[01:23:50] [PASSED] Virtual
[01:23:50] [PASSED] DSI
[01:23:50] [PASSED] DPI
[01:23:50] [PASSED] Writeback
[01:23:50] [PASSED] SPI
[01:23:50] [PASSED] USB
[01:23:50] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:23:50] ======== drm_test_drm_connector_dynamic_init_name =========
[01:23:50] [PASSED] Unknown
[01:23:50] [PASSED] VGA
[01:23:50] [PASSED] DVI-I
[01:23:50] [PASSED] DVI-D
[01:23:50] [PASSED] DVI-A
[01:23:50] [PASSED] Composite
[01:23:50] [PASSED] SVIDEO
[01:23:50] [PASSED] LVDS
[01:23:50] [PASSED] Component
[01:23:50] [PASSED] DIN
[01:23:50] [PASSED] DP
[01:23:50] [PASSED] HDMI-A
[01:23:50] [PASSED] HDMI-B
[01:23:50] [PASSED] TV
[01:23:50] [PASSED] eDP
[01:23:50] [PASSED] Virtual
[01:23:50] [PASSED] DSI
[01:23:50] [PASSED] DPI
[01:23:50] [PASSED] Writeback
[01:23:50] [PASSED] SPI
[01:23:50] [PASSED] USB
[01:23:50] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:23:50] =========== [PASSED] drm_connector_dynamic_init ============
[01:23:50] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:23:50] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:23:50] ======= drm_connector_dynamic_register (7 subtests) ========
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:23:50] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:23:50] ========= [PASSED] drm_connector_dynamic_register ==========
[01:23:50] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:23:50] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:23:50] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:23:50] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:23:50] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:23:50] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:23:50] [PASSED] NTSC
[01:23:50] [PASSED] NTSC-443
[01:23:50] [PASSED] NTSC-J
[01:23:50] [PASSED] PAL
[01:23:50] [PASSED] PAL-M
[01:23:50] [PASSED] PAL-N
[01:23:50] [PASSED] SECAM
[01:23:50] [PASSED] Mono
[01:23:50] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:23:50] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:23:50] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:23:50] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:23:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:23:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:23:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:23:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:23:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:23:50] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:23:50] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:23:50] [PASSED] VIC 96
[01:23:50] [PASSED] VIC 97
[01:23:50] [PASSED] VIC 101
[01:23:50] [PASSED] VIC 102
[01:23:50] [PASSED] VIC 106
[01:23:50] [PASSED] VIC 107
[01:23:50] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:23:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:23:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:23:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:23:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:23:50] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:23:50] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:23:50] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:23:50] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:23:50] [PASSED] Automatic
[01:23:50] [PASSED] Full
[01:23:50] [PASSED] Limited 16:235
[01:23:50] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:23:50] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:23:50] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:23:50] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:23:50] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:23:50] [PASSED] RGB
[01:23:50] [PASSED] YUV 4:2:0
[01:23:50] [PASSED] YUV 4:2:2
[01:23:50] [PASSED] YUV 4:4:4
[01:23:50] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:23:50] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:23:50] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:23:50] ============= drm_damage_helper (21 subtests) ==============
[01:23:50] [PASSED] drm_test_damage_iter_no_damage
[01:23:50] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:23:50] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:23:50] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:23:50] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:23:50] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:23:50] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:23:50] [PASSED] drm_test_damage_iter_simple_damage
[01:23:50] [PASSED] drm_test_damage_iter_single_damage
[01:23:50] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:23:50] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:23:50] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:23:50] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:23:50] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:23:50] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:23:50] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:23:50] [PASSED] drm_test_damage_iter_damage
[01:23:50] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:23:50] [PASSED] drm_test_damage_iter_damage_one_outside
[01:23:50] [PASSED] drm_test_damage_iter_damage_src_moved
[01:23:50] [PASSED] drm_test_damage_iter_damage_not_visible
[01:23:50] ================ [PASSED] drm_damage_helper ================
[01:23:50] ============== drm_dp_mst_helper (3 subtests) ==============
[01:23:50] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:23:50] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:23:50] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:23:50] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:23:50] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:23:50] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:23:50] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:23:50] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:23:50] [PASSED] Link rate 2000000 lane count 4
[01:23:50] [PASSED] Link rate 2000000 lane count 2
[01:23:50] [PASSED] Link rate 2000000 lane count 1
[01:23:50] [PASSED] Link rate 1350000 lane count 4
[01:23:50] [PASSED] Link rate 1350000 lane count 2
[01:23:50] [PASSED] Link rate 1350000 lane count 1
[01:23:50] [PASSED] Link rate 1000000 lane count 4
[01:23:50] [PASSED] Link rate 1000000 lane count 2
[01:23:50] [PASSED] Link rate 1000000 lane count 1
[01:23:50] [PASSED] Link rate 810000 lane count 4
[01:23:50] [PASSED] Link rate 810000 lane count 2
[01:23:50] [PASSED] Link rate 810000 lane count 1
[01:23:50] [PASSED] Link rate 540000 lane count 4
[01:23:50] [PASSED] Link rate 540000 lane count 2
[01:23:50] [PASSED] Link rate 540000 lane count 1
[01:23:50] [PASSED] Link rate 270000 lane count 4
[01:23:50] [PASSED] Link rate 270000 lane count 2
[01:23:50] [PASSED] Link rate 270000 lane count 1
[01:23:50] [PASSED] Link rate 162000 lane count 4
[01:23:50] [PASSED] Link rate 162000 lane count 2
[01:23:50] [PASSED] Link rate 162000 lane count 1
[01:23:50] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:23:50] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:23:50] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:23:50] [PASSED] DP_POWER_UP_PHY with port number
[01:23:50] [PASSED] DP_POWER_DOWN_PHY with port number
[01:23:50] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:23:50] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:23:50] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:23:50] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:23:50] [PASSED] DP_QUERY_PAYLOAD with port number
[01:23:50] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:23:50] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:23:50] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:23:50] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:23:50] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:23:50] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:23:50] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:23:50] [PASSED] DP_REMOTE_I2C_READ with port number
[01:23:50] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:23:50] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:23:50] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:23:50] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:23:50] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:23:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:23:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:23:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:23:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:23:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:23:50] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:23:50] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:23:50] ================ [PASSED] drm_dp_mst_helper ================
[01:23:50] ================== drm_exec (7 subtests) ===================
[01:23:50] [PASSED] sanitycheck
[01:23:50] [PASSED] test_lock
[01:23:50] [PASSED] test_lock_unlock
[01:23:50] [PASSED] test_duplicates
[01:23:50] [PASSED] test_prepare
[01:23:50] [PASSED] test_prepare_array
[01:23:50] [PASSED] test_multiple_loops
[01:23:50] ==================== [PASSED] drm_exec =====================
[01:23:50] =========== drm_format_helper_test (17 subtests) ===========
[01:23:50] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:23:50] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:23:50] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:23:50] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:23:50] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:23:50] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:23:50] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:23:50] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:23:50] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:23:50] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:23:50] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:23:50] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:23:50] ==================== drm_test_fb_swab =====================
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ================ [PASSED] drm_test_fb_swab =================
[01:23:50] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:23:50] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:23:50] [PASSED] single_pixel_source_buffer
[01:23:50] [PASSED] single_pixel_clip_rectangle
[01:23:50] [PASSED] well_known_colors
[01:23:50] [PASSED] destination_pitch
[01:23:50] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:23:50] ================= drm_test_fb_clip_offset =================
[01:23:50] [PASSED] pass through
[01:23:50] [PASSED] horizontal offset
[01:23:50] [PASSED] vertical offset
[01:23:50] [PASSED] horizontal and vertical offset
[01:23:50] [PASSED] horizontal offset (custom pitch)
[01:23:50] [PASSED] vertical offset (custom pitch)
[01:23:50] [PASSED] horizontal and vertical offset (custom pitch)
[01:23:50] ============= [PASSED] drm_test_fb_clip_offset =============
[01:23:50] =================== drm_test_fb_memcpy ====================
[01:23:50] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:23:50] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:23:50] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:23:50] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:23:50] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:23:50] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:23:50] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:23:50] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:23:50] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:23:50] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:23:50] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:23:50] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:23:50] =============== [PASSED] drm_test_fb_memcpy ================
[01:23:50] ============= [PASSED] drm_format_helper_test ==============
[01:23:50] ================= drm_format (18 subtests) =================
[01:23:50] [PASSED] drm_test_format_block_width_invalid
[01:23:50] [PASSED] drm_test_format_block_width_one_plane
[01:23:50] [PASSED] drm_test_format_block_width_two_plane
[01:23:50] [PASSED] drm_test_format_block_width_three_plane
[01:23:50] [PASSED] drm_test_format_block_width_tiled
[01:23:50] [PASSED] drm_test_format_block_height_invalid
[01:23:50] [PASSED] drm_test_format_block_height_one_plane
[01:23:50] [PASSED] drm_test_format_block_height_two_plane
[01:23:50] [PASSED] drm_test_format_block_height_three_plane
[01:23:50] [PASSED] drm_test_format_block_height_tiled
[01:23:50] [PASSED] drm_test_format_min_pitch_invalid
[01:23:50] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:23:50] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:23:50] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:23:50] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:23:50] [PASSED] drm_test_format_min_pitch_two_plane
[01:23:50] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:23:50] [PASSED] drm_test_format_min_pitch_tiled
[01:23:50] =================== [PASSED] drm_format ====================
[01:23:50] ============== drm_framebuffer (10 subtests) ===============
[01:23:50] ========== drm_test_framebuffer_check_src_coords ==========
[01:23:50] [PASSED] Success: source fits into fb
[01:23:50] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:23:50] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:23:50] [PASSED] Fail: overflowing fb with source width
[01:23:50] [PASSED] Fail: overflowing fb with source height
[01:23:50] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:23:50] [PASSED] drm_test_framebuffer_cleanup
[01:23:50] =============== drm_test_framebuffer_create ===============
[01:23:50] [PASSED] ABGR8888 normal sizes
[01:23:50] [PASSED] ABGR8888 max sizes
[01:23:50] [PASSED] ABGR8888 pitch greater than min required
[01:23:50] [PASSED] ABGR8888 pitch less than min required
[01:23:50] [PASSED] ABGR8888 Invalid width
[01:23:50] [PASSED] ABGR8888 Invalid buffer handle
[01:23:50] [PASSED] No pixel format
[01:23:50] [PASSED] ABGR8888 Width 0
[01:23:50] [PASSED] ABGR8888 Height 0
[01:23:50] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:23:50] [PASSED] ABGR8888 Large buffer offset
[01:23:50] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:23:50] [PASSED] ABGR8888 Invalid flag
[01:23:50] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:23:50] [PASSED] ABGR8888 Valid buffer modifier
[01:23:50] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:23:50] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:23:50] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:23:50] [PASSED] NV12 Normal sizes
[01:23:50] [PASSED] NV12 Max sizes
[01:23:50] [PASSED] NV12 Invalid pitch
[01:23:50] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:23:50] [PASSED] NV12 different modifier per-plane
[01:23:50] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:23:50] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:23:50] [PASSED] NV12 Modifier for inexistent plane
[01:23:50] [PASSED] NV12 Handle for inexistent plane
[01:23:50] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:23:50] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:23:50] [PASSED] YVU420 Normal sizes
[01:23:50] [PASSED] YVU420 Max sizes
[01:23:50] [PASSED] YVU420 Invalid pitch
[01:23:50] [PASSED] YVU420 Different pitches
[01:23:50] [PASSED] YVU420 Different buffer offsets/pitches
[01:23:50] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:23:50] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:23:50] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:23:50] [PASSED] YVU420 Valid modifier
[01:23:50] [PASSED] YVU420 Different modifiers per plane
[01:23:50] [PASSED] YVU420 Modifier for inexistent plane
[01:23:50] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:23:51] [PASSED] X0L2 Normal sizes
[01:23:51] [PASSED] X0L2 Max sizes
[01:23:51] [PASSED] X0L2 Invalid pitch
[01:23:51] [PASSED] X0L2 Pitch greater than minimum required
[01:23:51] [PASSED] X0L2 Handle for inexistent plane
[01:23:51] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:23:51] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:23:51] [PASSED] X0L2 Valid modifier
[01:23:51] [PASSED] X0L2 Modifier for inexistent plane
[01:23:51] =========== [PASSED] drm_test_framebuffer_create ===========
[01:23:51] [PASSED] drm_test_framebuffer_free
[01:23:51] [PASSED] drm_test_framebuffer_init
[01:23:51] [PASSED] drm_test_framebuffer_init_bad_format
[01:23:51] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:23:51] [PASSED] drm_test_framebuffer_lookup
[01:23:51] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:23:51] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:23:51] ================= [PASSED] drm_framebuffer =================
[01:23:51] ================ drm_gem_shmem (8 subtests) ================
[01:23:51] [PASSED] drm_gem_shmem_test_obj_create
[01:23:51] [PASSED] drm_gem_shmem_test_obj_create_private
[01:23:51] [PASSED] drm_gem_shmem_test_pin_pages
[01:23:51] [PASSED] drm_gem_shmem_test_vmap
[01:23:51] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:23:51] [PASSED] drm_gem_shmem_test_get_sg_table
[01:23:51] [PASSED] drm_gem_shmem_test_madvise
[01:23:51] [PASSED] drm_gem_shmem_test_purge
[01:23:51] ================== [PASSED] drm_gem_shmem ==================
[01:23:51] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:23:51] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:23:51] [PASSED] Automatic
[01:23:51] [PASSED] Full
[01:23:51] [PASSED] Limited 16:235
[01:23:51] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:23:51] [PASSED] drm_test_check_disable_connector
[01:23:51] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:23:51] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:23:51] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:23:51] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:23:51] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:23:51] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:23:51] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:23:51] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:23:51] [PASSED] drm_test_check_output_bpc_dvi
[01:23:51] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:23:51] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:23:51] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:23:51] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:23:51] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:23:51] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:23:51] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:23:51] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:23:51] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:23:51] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:23:51] [PASSED] drm_test_check_broadcast_rgb_value
[01:23:51] [PASSED] drm_test_check_bpc_8_value
[01:23:51] [PASSED] drm_test_check_bpc_10_value
[01:23:51] [PASSED] drm_test_check_bpc_12_value
[01:23:51] [PASSED] drm_test_check_format_value
[01:23:51] [PASSED] drm_test_check_tmds_char_value
[01:23:51] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:23:51] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:23:51] [PASSED] drm_test_check_mode_valid
[01:23:51] [PASSED] drm_test_check_mode_valid_reject
[01:23:51] [PASSED] drm_test_check_mode_valid_reject_rate
[01:23:51] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:23:51] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:23:51] ================= drm_managed (2 subtests) =================
[01:23:51] [PASSED] drm_test_managed_release_action
[01:23:51] [PASSED] drm_test_managed_run_action
[01:23:51] =================== [PASSED] drm_managed ===================
[01:23:51] =================== drm_mm (6 subtests) ====================
[01:23:51] [PASSED] drm_test_mm_init
[01:23:51] [PASSED] drm_test_mm_debug
[01:23:51] [PASSED] drm_test_mm_align32
[01:23:51] [PASSED] drm_test_mm_align64
[01:23:51] [PASSED] drm_test_mm_lowest
[01:23:51] [PASSED] drm_test_mm_highest
[01:23:51] ===================== [PASSED] drm_mm ======================
[01:23:51] ============= drm_modes_analog_tv (5 subtests) =============
[01:23:51] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:23:51] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:23:51] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:23:51] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:23:51] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:23:51] =============== [PASSED] drm_modes_analog_tv ===============
[01:23:51] ============== drm_plane_helper (2 subtests) ===============
[01:23:51] =============== drm_test_check_plane_state ================
[01:23:51] [PASSED] clipping_simple
[01:23:51] [PASSED] clipping_rotate_reflect
[01:23:51] [PASSED] positioning_simple
[01:23:51] [PASSED] upscaling
[01:23:51] [PASSED] downscaling
[01:23:51] [PASSED] rounding1
[01:23:51] [PASSED] rounding2
[01:23:51] [PASSED] rounding3
[01:23:51] [PASSED] rounding4
[01:23:51] =========== [PASSED] drm_test_check_plane_state ============
[01:23:51] =========== drm_test_check_invalid_plane_state ============
[01:23:51] [PASSED] positioning_invalid
[01:23:51] [PASSED] upscaling_invalid
[01:23:51] [PASSED] downscaling_invalid
[01:23:51] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:23:51] ================ [PASSED] drm_plane_helper =================
[01:23:51] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:23:51] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:23:51] [PASSED] None
[01:23:51] [PASSED] PAL
[01:23:51] [PASSED] NTSC
[01:23:51] [PASSED] Both, NTSC Default
[01:23:51] [PASSED] Both, PAL Default
[01:23:51] [PASSED] Both, NTSC Default, with PAL on command-line
[01:23:51] [PASSED] Both, PAL Default, with NTSC on command-line
[01:23:51] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:23:51] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:23:51] ================== drm_rect (9 subtests) ===================
[01:23:51] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:23:51] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:23:51] [PASSED] drm_test_rect_clip_scaled_clipped
[01:23:51] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:23:51] ================= drm_test_rect_intersect =================
[01:23:51] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:23:51] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:23:51] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:23:51] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:23:51] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:23:51] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:23:51] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:23:51] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:23:51] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:23:51] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:23:51] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:23:51] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:23:51] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:23:51] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:23:51] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:23:51] ============= [PASSED] drm_test_rect_intersect =============
[01:23:51] ================ drm_test_rect_calc_hscale ================
[01:23:51] [PASSED] normal use
[01:23:51] [PASSED] out of max range
[01:23:51] [PASSED] out of min range
[01:23:51] [PASSED] zero dst
[01:23:51] [PASSED] negative src
[01:23:51] [PASSED] negative dst
[01:23:51] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:23:51] ================ drm_test_rect_calc_vscale ================
[01:23:51] [PASSED] normal use
[01:23:51] [PASSED] out of max range
[01:23:51] [PASSED] out of min range
[01:23:51] [PASSED] zero dst
[01:23:51] [PASSED] negative src
[01:23:51] [PASSED] negative dst
[01:23:51] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:23:51] ================== drm_test_rect_rotate ===================
[01:23:51] [PASSED] reflect-x
[01:23:51] [PASSED] reflect-y
[01:23:51] [PASSED] rotate-0
[01:23:51] [PASSED] rotate-90
[01:23:51] [PASSED] rotate-180
[01:23:51] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[01:23:51] ============== [PASSED] drm_test_rect_rotate ===============
[01:23:51] ================ drm_test_rect_rotate_inv =================
[01:23:51] [PASSED] reflect-x
[01:23:51] [PASSED] reflect-y
[01:23:51] [PASSED] rotate-0
[01:23:51] [PASSED] rotate-90
[01:23:51] [PASSED] rotate-180
[01:23:51] [PASSED] rotate-270
[01:23:51] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:23:51] ==================== [PASSED] drm_rect =====================
[01:23:51] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:23:51] ============ drm_test_sysfb_build_fourcc_list =============
[01:23:51] [PASSED] no native formats
[01:23:51] [PASSED] XRGB8888 as native format
[01:23:51] [PASSED] remove duplicates
[01:23:51] [PASSED] convert alpha formats
[01:23:51] [PASSED] random formats
[01:23:51] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:23:51] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:23:51] ============================================================
[01:23:51] Testing complete. Ran 616 tests: passed: 616
[01:23:51] Elapsed time: 23.565s total, 1.634s configuring, 21.712s building, 0.188s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:23:51] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:23:52] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:24:00] Starting KUnit Kernel (1/1)...
[01:24:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:24:00] ================= ttm_device (5 subtests) ==================
[01:24:00] [PASSED] ttm_device_init_basic
[01:24:00] [PASSED] ttm_device_init_multiple
[01:24:00] [PASSED] ttm_device_fini_basic
[01:24:00] [PASSED] ttm_device_init_no_vma_man
[01:24:00] ================== ttm_device_init_pools ==================
[01:24:00] [PASSED] No DMA allocations, no DMA32 required
[01:24:00] [PASSED] DMA allocations, DMA32 required
[01:24:00] [PASSED] No DMA allocations, DMA32 required
[01:24:00] [PASSED] DMA allocations, no DMA32 required
[01:24:00] ============== [PASSED] ttm_device_init_pools ==============
[01:24:00] =================== [PASSED] ttm_device ====================
[01:24:00] ================== ttm_pool (8 subtests) ===================
[01:24:00] ================== ttm_pool_alloc_basic ===================
[01:24:00] [PASSED] One page
[01:24:00] [PASSED] More than one page
[01:24:00] [PASSED] Above the allocation limit
[01:24:00] [PASSED] One page, with coherent DMA mappings enabled
[01:24:00] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:24:00] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:24:00] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:24:00] [PASSED] One page
[01:24:00] [PASSED] More than one page
[01:24:00] [PASSED] Above the allocation limit
[01:24:00] [PASSED] One page, with coherent DMA mappings enabled
[01:24:00] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:24:00] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:24:00] [PASSED] ttm_pool_alloc_order_caching_match
[01:24:00] [PASSED] ttm_pool_alloc_caching_mismatch
[01:24:00] [PASSED] ttm_pool_alloc_order_mismatch
[01:24:00] [PASSED] ttm_pool_free_dma_alloc
[01:24:00] [PASSED] ttm_pool_free_no_dma_alloc
[01:24:00] [PASSED] ttm_pool_fini_basic
[01:24:00] ==================== [PASSED] ttm_pool =====================
[01:24:00] ================ ttm_resource (8 subtests) =================
[01:24:00] ================= ttm_resource_init_basic =================
[01:24:00] [PASSED] Init resource in TTM_PL_SYSTEM
[01:24:00] [PASSED] Init resource in TTM_PL_VRAM
[01:24:00] [PASSED] Init resource in a private placement
[01:24:00] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:24:00] ============= [PASSED] ttm_resource_init_basic =============
[01:24:00] [PASSED] ttm_resource_init_pinned
[01:24:00] [PASSED] ttm_resource_fini_basic
[01:24:00] [PASSED] ttm_resource_manager_init_basic
[01:24:00] [PASSED] ttm_resource_manager_usage_basic
[01:24:00] [PASSED] ttm_resource_manager_set_used_basic
[01:24:00] [PASSED] ttm_sys_man_alloc_basic
[01:24:00] [PASSED] ttm_sys_man_free_basic
[01:24:00] ================== [PASSED] ttm_resource ===================
[01:24:00] =================== ttm_tt (15 subtests) ===================
[01:24:00] ==================== ttm_tt_init_basic ====================
[01:24:00] [PASSED] Page-aligned size
[01:24:00] [PASSED] Extra pages requested
[01:24:00] ================ [PASSED] ttm_tt_init_basic ================
[01:24:00] [PASSED] ttm_tt_init_misaligned
[01:24:00] [PASSED] ttm_tt_fini_basic
[01:24:00] [PASSED] ttm_tt_fini_sg
[01:24:00] [PASSED] ttm_tt_fini_shmem
[01:24:00] [PASSED] ttm_tt_create_basic
[01:24:00] [PASSED] ttm_tt_create_invalid_bo_type
[01:24:00] [PASSED] ttm_tt_create_ttm_exists
[01:24:00] [PASSED] ttm_tt_create_failed
[01:24:00] [PASSED] ttm_tt_destroy_basic
[01:24:00] [PASSED] ttm_tt_populate_null_ttm
[01:24:00] [PASSED] ttm_tt_populate_populated_ttm
[01:24:00] [PASSED] ttm_tt_unpopulate_basic
[01:24:00] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:24:00] [PASSED] ttm_tt_swapin_basic
[01:24:00] ===================== [PASSED] ttm_tt ======================
[01:24:00] =================== ttm_bo (14 subtests) ===================
[01:24:00] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:24:00] [PASSED] Cannot be interrupted and sleeps
[01:24:00] [PASSED] Cannot be interrupted, locks straight away
[01:24:00] [PASSED] Can be interrupted, sleeps
[01:24:00] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:24:00] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:24:00] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:24:00] [PASSED] ttm_bo_reserve_double_resv
[01:24:00] [PASSED] ttm_bo_reserve_interrupted
[01:24:00] [PASSED] ttm_bo_reserve_deadlock
[01:24:00] [PASSED] ttm_bo_unreserve_basic
[01:24:00] [PASSED] ttm_bo_unreserve_pinned
[01:24:00] [PASSED] ttm_bo_unreserve_bulk
[01:24:00] [PASSED] ttm_bo_put_basic
[01:24:00] [PASSED] ttm_bo_put_shared_resv
[01:24:00] [PASSED] ttm_bo_pin_basic
[01:24:00] [PASSED] ttm_bo_pin_unpin_resource
[01:24:00] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:24:00] ===================== [PASSED] ttm_bo ======================
[01:24:00] ============== ttm_bo_validate (22 subtests) ===============
[01:24:00] ============== ttm_bo_init_reserved_sys_man ===============
[01:24:00] [PASSED] Buffer object for userspace
[01:24:00] [PASSED] Kernel buffer object
[01:24:00] [PASSED] Shared buffer object
[01:24:00] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:24:00] ============== ttm_bo_init_reserved_mock_man ==============
[01:24:00] [PASSED] Buffer object for userspace
[01:24:00] [PASSED] Kernel buffer object
[01:24:00] [PASSED] Shared buffer object
[01:24:00] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:24:00] [PASSED] ttm_bo_init_reserved_resv
[01:24:00] ================== ttm_bo_validate_basic ==================
[01:24:00] [PASSED] Buffer object for userspace
[01:24:00] [PASSED] Kernel buffer object
[01:24:00] [PASSED] Shared buffer object
[01:24:00] ============== [PASSED] ttm_bo_validate_basic ==============
[01:24:00] [PASSED] ttm_bo_validate_invalid_placement
[01:24:00] ============= ttm_bo_validate_same_placement ==============
[01:24:00] [PASSED] System manager
[01:24:00] [PASSED] VRAM manager
[01:24:00] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:24:00] [PASSED] ttm_bo_validate_failed_alloc
[01:24:00] [PASSED] ttm_bo_validate_pinned
[01:24:00] [PASSED] ttm_bo_validate_busy_placement
[01:24:00] ================ ttm_bo_validate_multihop =================
[01:24:00] [PASSED] Buffer object for userspace
[01:24:00] [PASSED] Kernel buffer object
[01:24:00] [PASSED] Shared buffer object
[01:24:00] ============ [PASSED] ttm_bo_validate_multihop =============
[01:24:00] ========== ttm_bo_validate_no_placement_signaled ==========
[01:24:00] [PASSED] Buffer object in system domain, no page vector
[01:24:00] [PASSED] Buffer object in system domain with an existing page vector
[01:24:00] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:24:00] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:24:00] [PASSED] Buffer object for userspace
[01:24:00] [PASSED] Kernel buffer object
[01:24:00] [PASSED] Shared buffer object
[01:24:00] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:24:00] [PASSED] ttm_bo_validate_move_fence_signaled
[01:24:00] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:24:00] [PASSED] Waits for GPU
[01:24:00] [PASSED] Tries to lock straight away
[01:24:01] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:24:01] [PASSED] ttm_bo_validate_swapout
[01:24:01] [PASSED] ttm_bo_validate_happy_evict
[01:24:01] [PASSED] ttm_bo_validate_all_pinned_evict
[01:24:01] [PASSED] ttm_bo_validate_allowed_only_evict
[01:24:01] [PASSED] ttm_bo_validate_deleted_evict
[01:24:01] [PASSED] ttm_bo_validate_busy_domain_evict
[01:24:01] [PASSED] ttm_bo_validate_evict_gutting
[01:24:01] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:24:01] ================= [PASSED] ttm_bo_validate =================
[01:24:01] ============================================================
[01:24:01] Testing complete. Ran 102 tests: passed: 102
[01:24:01] Elapsed time: 10.113s total, 1.657s configuring, 7.838s building, 0.528s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4)
2025-06-24 1:17 [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Zhanjun Dong
2025-06-24 1:24 ` ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3) Patchwork
@ 2025-06-24 5:22 ` Patchwork
2025-06-24 6:50 ` ✗ Xe.CI.Full: failure for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3) Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-24 5:22 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
== Series Details ==
Series: drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4)
URL : https://patchwork.freedesktop.org/series/150488/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[05:20:54] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:20:58] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[05:21:25] Starting KUnit Kernel (1/1)...
[05:21:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:21:26] ================== guc_buf (11 subtests) ===================
[05:21:26] [PASSED] test_smallest
[05:21:26] [PASSED] test_largest
[05:21:26] [PASSED] test_granular
[05:21:26] [PASSED] test_unique
[05:21:26] [PASSED] test_overlap
[05:21:26] [PASSED] test_reusable
[05:21:26] [PASSED] test_too_big
[05:21:26] [PASSED] test_flush
[05:21:26] [PASSED] test_lookup
[05:21:26] [PASSED] test_data
[05:21:26] [PASSED] test_class
[05:21:26] ===================== [PASSED] guc_buf =====================
[05:21:26] =================== guc_dbm (7 subtests) ===================
[05:21:26] [PASSED] test_empty
[05:21:26] [PASSED] test_default
[05:21:26] ======================== test_size ========================
[05:21:26] [PASSED] 4
[05:21:26] [PASSED] 8
[05:21:26] [PASSED] 32
[05:21:26] [PASSED] 256
[05:21:26] ==================== [PASSED] test_size ====================
[05:21:26] ======================= test_reuse ========================
[05:21:26] [PASSED] 4
[05:21:26] [PASSED] 8
[05:21:26] [PASSED] 32
[05:21:26] [PASSED] 256
[05:21:26] =================== [PASSED] test_reuse ====================
[05:21:26] =================== test_range_overlap ====================
[05:21:26] [PASSED] 4
[05:21:26] [PASSED] 8
[05:21:26] [PASSED] 32
[05:21:26] [PASSED] 256
[05:21:26] =============== [PASSED] test_range_overlap ================
[05:21:26] =================== test_range_compact ====================
[05:21:26] [PASSED] 4
[05:21:26] [PASSED] 8
[05:21:26] [PASSED] 32
[05:21:26] [PASSED] 256
[05:21:26] =============== [PASSED] test_range_compact ================
[05:21:26] ==================== test_range_spare =====================
[05:21:26] [PASSED] 4
[05:21:26] [PASSED] 8
[05:21:26] [PASSED] 32
[05:21:26] [PASSED] 256
[05:21:26] ================ [PASSED] test_range_spare =================
[05:21:26] ===================== [PASSED] guc_dbm =====================
[05:21:26] =================== guc_idm (6 subtests) ===================
[05:21:26] [PASSED] bad_init
[05:21:26] [PASSED] no_init
[05:21:26] [PASSED] init_fini
[05:21:26] [PASSED] check_used
[05:21:26] [PASSED] check_quota
[05:21:26] [PASSED] check_all
[05:21:26] ===================== [PASSED] guc_idm =====================
[05:21:26] ================== no_relay (3 subtests) ===================
[05:21:26] [PASSED] xe_drops_guc2pf_if_not_ready
[05:21:26] [PASSED] xe_drops_guc2vf_if_not_ready
[05:21:26] [PASSED] xe_rejects_send_if_not_ready
[05:21:26] ==================== [PASSED] no_relay =====================
[05:21:26] ================== pf_relay (14 subtests) ==================
[05:21:26] [PASSED] pf_rejects_guc2pf_too_short
[05:21:26] [PASSED] pf_rejects_guc2pf_too_long
[05:21:26] [PASSED] pf_rejects_guc2pf_no_payload
[05:21:26] [PASSED] pf_fails_no_payload
[05:21:26] [PASSED] pf_fails_bad_origin
[05:21:26] [PASSED] pf_fails_bad_type
[05:21:26] [PASSED] pf_txn_reports_error
[05:21:26] [PASSED] pf_txn_sends_pf2guc
[05:21:26] [PASSED] pf_sends_pf2guc
[05:21:26] [SKIPPED] pf_loopback_nop
[05:21:26] [SKIPPED] pf_loopback_echo
[05:21:26] [SKIPPED] pf_loopback_fail
[05:21:26] [SKIPPED] pf_loopback_busy
[05:21:26] [SKIPPED] pf_loopback_retry
[05:21:26] ==================== [PASSED] pf_relay =====================
[05:21:26] ================== vf_relay (3 subtests) ===================
[05:21:26] [PASSED] vf_rejects_guc2vf_too_short
[05:21:26] [PASSED] vf_rejects_guc2vf_too_long
[05:21:26] [PASSED] vf_rejects_guc2vf_no_payload
[05:21:26] ==================== [PASSED] vf_relay =====================
[05:21:26] ================= pf_service (11 subtests) =================
[05:21:26] [PASSED] pf_negotiate_any
[05:21:26] [PASSED] pf_negotiate_base_match
[05:21:26] [PASSED] pf_negotiate_base_newer
[05:21:26] [PASSED] pf_negotiate_base_next
[05:21:26] [SKIPPED] pf_negotiate_base_older
[05:21:26] [PASSED] pf_negotiate_base_prev
[05:21:26] [PASSED] pf_negotiate_latest_match
[05:21:26] [PASSED] pf_negotiate_latest_newer
[05:21:26] [PASSED] pf_negotiate_latest_next
[05:21:26] [SKIPPED] pf_negotiate_latest_older
[05:21:26] [SKIPPED] pf_negotiate_latest_prev
[05:21:26] =================== [PASSED] pf_service ====================
[05:21:26] ===================== lmtt (1 subtest) =====================
[05:21:26] ======================== test_ops =========================
[05:21:26] [PASSED] 2-level
[05:21:26] [PASSED] multi-level
[05:21:26] ==================== [PASSED] test_ops =====================
[05:21:26] ====================== [PASSED] lmtt =======================
[05:21:26] =================== xe_mocs (2 subtests) ===================
[05:21:26] ================ xe_live_mocs_kernel_kunit ================
[05:21:26] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[05:21:26] ================ xe_live_mocs_reset_kunit =================
[05:21:26] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[05:21:26] ==================== [SKIPPED] xe_mocs =====================
[05:21:26] ================= xe_migrate (2 subtests) ==================
[05:21:26] ================= xe_migrate_sanity_kunit =================
[05:21:26] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[05:21:26] ================== xe_validate_ccs_kunit ==================
[05:21:26] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[05:21:26] =================== [SKIPPED] xe_migrate ===================
[05:21:26] ================== xe_dma_buf (1 subtest) ==================
[05:21:26] ==================== xe_dma_buf_kunit =====================
[05:21:26] ================ [SKIPPED] xe_dma_buf_kunit ================
[05:21:26] =================== [SKIPPED] xe_dma_buf ===================
[05:21:26] ================= xe_bo_shrink (1 subtest) =================
[05:21:26] =================== xe_bo_shrink_kunit ====================
[05:21:26] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[05:21:26] ================== [SKIPPED] xe_bo_shrink ==================
[05:21:26] ==================== xe_bo (2 subtests) ====================
[05:21:26] ================== xe_ccs_migrate_kunit ===================
[05:21:26] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[05:21:26] ==================== xe_bo_evict_kunit ====================
[05:21:26] =============== [SKIPPED] xe_bo_evict_kunit ================
[05:21:26] ===================== [SKIPPED] xe_bo ======================
[05:21:26] ==================== args (11 subtests) ====================
[05:21:26] [PASSED] count_args_test
[05:21:26] [PASSED] call_args_example
[05:21:26] [PASSED] call_args_test
[05:21:26] [PASSED] drop_first_arg_example
[05:21:26] [PASSED] drop_first_arg_test
[05:21:26] [PASSED] first_arg_example
[05:21:26] [PASSED] first_arg_test
[05:21:26] [PASSED] last_arg_example
[05:21:26] [PASSED] last_arg_test
[05:21:26] [PASSED] pick_arg_example
[05:21:26] [PASSED] sep_comma_example
[05:21:26] ====================== [PASSED] args =======================
[05:21:26] =================== xe_pci (2 subtests) ====================
[05:21:26] ==================== check_graphics_ip ====================
[05:21:26] [PASSED] 12.70 Xe_LPG
[05:21:26] [PASSED] 12.71 Xe_LPG
[05:21:26] [PASSED] 12.74 Xe_LPG+
[05:21:26] [PASSED] 20.01 Xe2_HPG
[05:21:26] [PASSED] 20.02 Xe2_HPG
[05:21:26] [PASSED] 20.04 Xe2_LPG
[05:21:26] [PASSED] 30.00 Xe3_LPG
[05:21:26] [PASSED] 30.01 Xe3_LPG
[05:21:26] [PASSED] 30.03 Xe3_LPG
[05:21:26] ================ [PASSED] check_graphics_ip ================
[05:21:26] ===================== check_media_ip ======================
[05:21:26] [PASSED] 13.00 Xe_LPM+
[05:21:26] [PASSED] 13.01 Xe2_HPM
[05:21:26] [PASSED] 20.00 Xe2_LPM
[05:21:26] [PASSED] 30.00 Xe3_LPM
[05:21:26] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[05:21:26] ================= [PASSED] check_media_ip ==================
[05:21:26] ===================== [PASSED] xe_pci ======================
[05:21:26] =================== xe_rtp (2 subtests) ====================
[05:21:26] =============== xe_rtp_process_to_sr_tests ================
[05:21:26] [PASSED] coalesce-same-reg
[05:21:26] [PASSED] no-match-no-add
[05:21:26] [PASSED] match-or
[05:21:26] [PASSED] match-or-xfail
[05:21:26] [PASSED] no-match-no-add-multiple-rules
[05:21:26] [PASSED] two-regs-two-entries
[05:21:26] [PASSED] clr-one-set-other
[05:21:26] [PASSED] set-field
[05:21:26] [PASSED] conflict-duplicate
[05:21:26] [PASSED] conflict-not-disjoint
[05:21:26] [PASSED] conflict-reg-type
[05:21:26] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[05:21:26] ================== xe_rtp_process_tests ===================
[05:21:26] [PASSED] active1
[05:21:26] [PASSED] active2
[05:21:26] [PASSED] active-inactive
[05:21:26] [PASSED] inactive-active
[05:21:26] [PASSED] inactive-1st_or_active-inactive
[05:21:26] [PASSED] inactive-2nd_or_active-inactive
[05:21:26] [PASSED] inactive-last_or_active-inactive
[05:21:26] [PASSED] inactive-no_or_active-inactive
[05:21:26] ============== [PASSED] xe_rtp_process_tests ===============
[05:21:26] ===================== [PASSED] xe_rtp ======================
[05:21:26] ==================== xe_wa (1 subtest) =====================
[05:21:26] ======================== xe_wa_gt =========================
[05:21:26] [PASSED] TIGERLAKE (B0)
[05:21:26] [PASSED] DG1 (A0)
[05:21:26] [PASSED] DG1 (B0)
[05:21:26] [PASSED] ALDERLAKE_S (A0)
[05:21:26] [PASSED] ALDERLAKE_S (B0)
[05:21:26] [PASSED] ALDERLAKE_S (C0)
[05:21:26] [PASSED] ALDERLAKE_S (D0)
[05:21:26] [PASSED] ALDERLAKE_P (A0)
[05:21:26] [PASSED] ALDERLAKE_P (B0)
[05:21:26] [PASSED] ALDERLAKE_P (C0)
[05:21:26] [PASSED] ALDERLAKE_S_RPLS (D0)
[05:21:26] [PASSED] ALDERLAKE_P_RPLU (E0)
[05:21:26] [PASSED] DG2_G10 (C0)
[05:21:26] [PASSED] DG2_G11 (B1)
[05:21:26] [PASSED] DG2_G12 (A1)
[05:21:26] [PASSED] METEORLAKE (g:A0, m:A0)
[05:21:26] [PASSED] METEORLAKE (g:A0, m:A0)
[05:21:26] [PASSED] METEORLAKE (g:A0, m:A0)
[05:21:26] [PASSED] LUNARLAKE (g:A0, m:A0)
[05:21:26] [PASSED] LUNARLAKE (g:B0, m:A0)
[05:21:26] [PASSED] BATTLEMAGE (g:A0, m:A1)
[05:21:26] ==================== [PASSED] xe_wa_gt =====================
[05:21:26] ====================== [PASSED] xe_wa ======================
[05:21:26] ============================================================
[05:21:26] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[05:21:26] Elapsed time: 31.394s total, 4.185s configuring, 26.892s building, 0.290s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[05:21:26] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:21:27] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[05:21:49] Starting KUnit Kernel (1/1)...
[05:21:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:21:49] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[05:21:49] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[05:21:49] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[05:21:49] =========== drm_validate_clone_mode (2 subtests) ===========
[05:21:49] ============== drm_test_check_in_clone_mode ===============
[05:21:49] [PASSED] in_clone_mode
[05:21:49] [PASSED] not_in_clone_mode
[05:21:49] ========== [PASSED] drm_test_check_in_clone_mode ===========
[05:21:49] =============== drm_test_check_valid_clones ===============
[05:21:49] [PASSED] not_in_clone_mode
[05:21:49] [PASSED] valid_clone
[05:21:49] [PASSED] invalid_clone
[05:21:49] =========== [PASSED] drm_test_check_valid_clones ===========
[05:21:49] ============= [PASSED] drm_validate_clone_mode =============
[05:21:49] ============= drm_validate_modeset (1 subtest) =============
[05:21:49] [PASSED] drm_test_check_connector_changed_modeset
[05:21:49] ============== [PASSED] drm_validate_modeset ===============
[05:21:49] ====== drm_test_bridge_get_current_state (2 subtests) ======
[05:21:49] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[05:21:49] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[05:21:49] ======== [PASSED] drm_test_bridge_get_current_state ========
[05:21:49] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[05:21:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[05:21:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[05:21:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[05:21:49] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[05:21:49] ============== drm_bridge_alloc (2 subtests) ===============
[05:21:49] [PASSED] drm_test_drm_bridge_alloc_basic
[05:21:49] [PASSED] drm_test_drm_bridge_alloc_get_put
[05:21:49] ================ [PASSED] drm_bridge_alloc =================
[05:21:49] ================== drm_buddy (7 subtests) ==================
[05:21:49] [PASSED] drm_test_buddy_alloc_limit
[05:21:49] [PASSED] drm_test_buddy_alloc_optimistic
[05:21:49] [PASSED] drm_test_buddy_alloc_pessimistic
[05:21:49] [PASSED] drm_test_buddy_alloc_pathological
[05:21:49] [PASSED] drm_test_buddy_alloc_contiguous
[05:21:49] [PASSED] drm_test_buddy_alloc_clear
[05:21:49] [PASSED] drm_test_buddy_alloc_range_bias
[05:21:49] ==================== [PASSED] drm_buddy ====================
[05:21:49] ============= drm_cmdline_parser (40 subtests) =============
[05:21:49] [PASSED] drm_test_cmdline_force_d_only
[05:21:49] [PASSED] drm_test_cmdline_force_D_only_dvi
[05:21:49] [PASSED] drm_test_cmdline_force_D_only_hdmi
[05:21:49] [PASSED] drm_test_cmdline_force_D_only_not_digital
[05:21:49] [PASSED] drm_test_cmdline_force_e_only
[05:21:49] [PASSED] drm_test_cmdline_res
[05:21:49] [PASSED] drm_test_cmdline_res_vesa
[05:21:49] [PASSED] drm_test_cmdline_res_vesa_rblank
[05:21:49] [PASSED] drm_test_cmdline_res_rblank
[05:21:49] [PASSED] drm_test_cmdline_res_bpp
[05:21:49] [PASSED] drm_test_cmdline_res_refresh
[05:21:49] [PASSED] drm_test_cmdline_res_bpp_refresh
[05:21:49] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[05:21:49] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[05:21:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[05:21:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[05:21:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[05:21:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[05:21:49] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[05:21:49] [PASSED] drm_test_cmdline_res_margins_force_on
[05:21:49] [PASSED] drm_test_cmdline_res_vesa_margins
[05:21:49] [PASSED] drm_test_cmdline_name
[05:21:49] [PASSED] drm_test_cmdline_name_bpp
[05:21:49] [PASSED] drm_test_cmdline_name_option
[05:21:49] [PASSED] drm_test_cmdline_name_bpp_option
[05:21:49] [PASSED] drm_test_cmdline_rotate_0
[05:21:49] [PASSED] drm_test_cmdline_rotate_90
[05:21:49] [PASSED] drm_test_cmdline_rotate_180
[05:21:49] [PASSED] drm_test_cmdline_rotate_270
[05:21:49] [PASSED] drm_test_cmdline_hmirror
[05:21:49] [PASSED] drm_test_cmdline_vmirror
[05:21:49] [PASSED] drm_test_cmdline_margin_options
[05:21:49] [PASSED] drm_test_cmdline_multiple_options
[05:21:49] [PASSED] drm_test_cmdline_bpp_extra_and_option
[05:21:49] [PASSED] drm_test_cmdline_extra_and_option
[05:21:49] [PASSED] drm_test_cmdline_freestanding_options
[05:21:49] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[05:21:49] [PASSED] drm_test_cmdline_panel_orientation
[05:21:49] ================ drm_test_cmdline_invalid =================
[05:21:49] [PASSED] margin_only
[05:21:49] [PASSED] interlace_only
[05:21:49] [PASSED] res_missing_x
[05:21:49] [PASSED] res_missing_y
[05:21:49] [PASSED] res_bad_y
[05:21:49] [PASSED] res_missing_y_bpp
[05:21:49] [PASSED] res_bad_bpp
[05:21:49] [PASSED] res_bad_refresh
[05:21:49] [PASSED] res_bpp_refresh_force_on_off
[05:21:49] [PASSED] res_invalid_mode
[05:21:49] [PASSED] res_bpp_wrong_place_mode
[05:21:49] [PASSED] name_bpp_refresh
[05:21:49] [PASSED] name_refresh
[05:21:49] [PASSED] name_refresh_wrong_mode
[05:21:49] [PASSED] name_refresh_invalid_mode
[05:21:49] [PASSED] rotate_multiple
[05:21:49] [PASSED] rotate_invalid_val
[05:21:49] [PASSED] rotate_truncated
[05:21:49] [PASSED] invalid_option
[05:21:49] [PASSED] invalid_tv_option
[05:21:49] [PASSED] truncated_tv_option
[05:21:49] ============ [PASSED] drm_test_cmdline_invalid =============
[05:21:49] =============== drm_test_cmdline_tv_options ===============
[05:21:49] [PASSED] NTSC
[05:21:49] [PASSED] NTSC_443
[05:21:49] [PASSED] NTSC_J
[05:21:49] [PASSED] PAL
[05:21:49] [PASSED] PAL_M
[05:21:49] [PASSED] PAL_N
[05:21:49] [PASSED] SECAM
[05:21:49] [PASSED] MONO_525
[05:21:49] [PASSED] MONO_625
[05:21:49] =========== [PASSED] drm_test_cmdline_tv_options ===========
[05:21:49] =============== [PASSED] drm_cmdline_parser ================
[05:21:49] ========== drmm_connector_hdmi_init (20 subtests) ==========
[05:21:49] [PASSED] drm_test_connector_hdmi_init_valid
[05:21:49] [PASSED] drm_test_connector_hdmi_init_bpc_8
[05:21:49] [PASSED] drm_test_connector_hdmi_init_bpc_10
[05:21:49] [PASSED] drm_test_connector_hdmi_init_bpc_12
[05:21:49] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[05:21:49] [PASSED] drm_test_connector_hdmi_init_bpc_null
[05:21:49] [PASSED] drm_test_connector_hdmi_init_formats_empty
[05:21:49] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[05:21:49] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:21:49] [PASSED] supported_formats=0x9 yuv420_allowed=1
[05:21:49] [PASSED] supported_formats=0x9 yuv420_allowed=0
[05:21:49] [PASSED] supported_formats=0x3 yuv420_allowed=1
[05:21:49] [PASSED] supported_formats=0x3 yuv420_allowed=0
[05:21:49] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:21:49] [PASSED] drm_test_connector_hdmi_init_null_ddc
[05:21:49] [PASSED] drm_test_connector_hdmi_init_null_product
[05:21:49] [PASSED] drm_test_connector_hdmi_init_null_vendor
[05:21:49] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[05:21:49] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[05:21:49] [PASSED] drm_test_connector_hdmi_init_product_valid
[05:21:49] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[05:21:49] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[05:21:49] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[05:21:49] ========= drm_test_connector_hdmi_init_type_valid =========
[05:21:49] [PASSED] HDMI-A
[05:21:49] [PASSED] HDMI-B
[05:21:49] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[05:21:49] ======== drm_test_connector_hdmi_init_type_invalid ========
[05:21:49] [PASSED] Unknown
[05:21:49] [PASSED] VGA
[05:21:49] [PASSED] DVI-I
[05:21:49] [PASSED] DVI-D
[05:21:49] [PASSED] DVI-A
[05:21:49] [PASSED] Composite
[05:21:49] [PASSED] SVIDEO
[05:21:49] [PASSED] LVDS
[05:21:49] [PASSED] Component
[05:21:49] [PASSED] DIN
[05:21:49] [PASSED] DP
[05:21:49] [PASSED] TV
[05:21:49] [PASSED] eDP
[05:21:49] [PASSED] Virtual
[05:21:49] [PASSED] DSI
[05:21:49] [PASSED] DPI
[05:21:49] [PASSED] Writeback
[05:21:49] [PASSED] SPI
[05:21:49] [PASSED] USB
[05:21:49] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[05:21:49] ============ [PASSED] drmm_connector_hdmi_init =============
[05:21:49] ============= drmm_connector_init (3 subtests) =============
[05:21:49] [PASSED] drm_test_drmm_connector_init
[05:21:49] [PASSED] drm_test_drmm_connector_init_null_ddc
[05:21:49] ========= drm_test_drmm_connector_init_type_valid =========
[05:21:49] [PASSED] Unknown
[05:21:49] [PASSED] VGA
[05:21:49] [PASSED] DVI-I
[05:21:49] [PASSED] DVI-D
[05:21:49] [PASSED] DVI-A
[05:21:49] [PASSED] Composite
[05:21:49] [PASSED] SVIDEO
[05:21:49] [PASSED] LVDS
[05:21:49] [PASSED] Component
[05:21:49] [PASSED] DIN
[05:21:49] [PASSED] DP
[05:21:49] [PASSED] HDMI-A
[05:21:49] [PASSED] HDMI-B
[05:21:49] [PASSED] TV
[05:21:49] [PASSED] eDP
[05:21:49] [PASSED] Virtual
[05:21:49] [PASSED] DSI
[05:21:49] [PASSED] DPI
[05:21:49] [PASSED] Writeback
[05:21:49] [PASSED] SPI
[05:21:49] [PASSED] USB
[05:21:49] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[05:21:49] =============== [PASSED] drmm_connector_init ===============
[05:21:49] ========= drm_connector_dynamic_init (6 subtests) ==========
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_init
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_init_properties
[05:21:49] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[05:21:49] [PASSED] Unknown
[05:21:49] [PASSED] VGA
[05:21:49] [PASSED] DVI-I
[05:21:49] [PASSED] DVI-D
[05:21:49] [PASSED] DVI-A
[05:21:49] [PASSED] Composite
[05:21:49] [PASSED] SVIDEO
[05:21:49] [PASSED] LVDS
[05:21:49] [PASSED] Component
[05:21:49] [PASSED] DIN
[05:21:49] [PASSED] DP
[05:21:49] [PASSED] HDMI-A
[05:21:49] [PASSED] HDMI-B
[05:21:49] [PASSED] TV
[05:21:49] [PASSED] eDP
[05:21:49] [PASSED] Virtual
[05:21:49] [PASSED] DSI
[05:21:49] [PASSED] DPI
[05:21:49] [PASSED] Writeback
[05:21:49] [PASSED] SPI
[05:21:49] [PASSED] USB
[05:21:49] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[05:21:49] ======== drm_test_drm_connector_dynamic_init_name =========
[05:21:49] [PASSED] Unknown
[05:21:49] [PASSED] VGA
[05:21:49] [PASSED] DVI-I
[05:21:49] [PASSED] DVI-D
[05:21:49] [PASSED] DVI-A
[05:21:49] [PASSED] Composite
[05:21:49] [PASSED] SVIDEO
[05:21:49] [PASSED] LVDS
[05:21:49] [PASSED] Component
[05:21:49] [PASSED] DIN
[05:21:49] [PASSED] DP
[05:21:49] [PASSED] HDMI-A
[05:21:49] [PASSED] HDMI-B
[05:21:49] [PASSED] TV
[05:21:49] [PASSED] eDP
[05:21:49] [PASSED] Virtual
[05:21:49] [PASSED] DSI
[05:21:49] [PASSED] DPI
[05:21:49] [PASSED] Writeback
[05:21:49] [PASSED] SPI
[05:21:49] [PASSED] USB
[05:21:49] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[05:21:49] =========== [PASSED] drm_connector_dynamic_init ============
[05:21:49] ==== drm_connector_dynamic_register_early (4 subtests) =====
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[05:21:49] ====== [PASSED] drm_connector_dynamic_register_early =======
[05:21:49] ======= drm_connector_dynamic_register (7 subtests) ========
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[05:21:49] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[05:21:49] ========= [PASSED] drm_connector_dynamic_register ==========
[05:21:49] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[05:21:49] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[05:21:49] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[05:21:49] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[05:21:49] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[05:21:49] ========== drm_test_get_tv_mode_from_name_valid ===========
[05:21:49] [PASSED] NTSC
[05:21:49] [PASSED] NTSC-443
[05:21:49] [PASSED] NTSC-J
[05:21:49] [PASSED] PAL
[05:21:49] [PASSED] PAL-M
[05:21:49] [PASSED] PAL-N
[05:21:49] [PASSED] SECAM
[05:21:49] [PASSED] Mono
[05:21:49] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[05:21:49] [PASSED] drm_test_get_tv_mode_from_name_truncated
[05:21:49] ============ [PASSED] drm_get_tv_mode_from_name ============
[05:21:49] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[05:21:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[05:21:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[05:21:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[05:21:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[05:21:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[05:21:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[05:21:49] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[05:21:49] [PASSED] VIC 96
[05:21:49] [PASSED] VIC 97
[05:21:49] [PASSED] VIC 101
[05:21:49] [PASSED] VIC 102
[05:21:49] [PASSED] VIC 106
[05:21:49] [PASSED] VIC 107
[05:21:49] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[05:21:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[05:21:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[05:21:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[05:21:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[05:21:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[05:21:49] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[05:21:49] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[05:21:49] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[05:21:49] [PASSED] Automatic
[05:21:49] [PASSED] Full
[05:21:49] [PASSED] Limited 16:235
[05:21:49] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[05:21:49] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[05:21:49] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[05:21:49] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[05:21:49] === drm_test_drm_hdmi_connector_get_output_format_name ====
[05:21:49] [PASSED] RGB
[05:21:49] [PASSED] YUV 4:2:0
[05:21:49] [PASSED] YUV 4:2:2
[05:21:49] [PASSED] YUV 4:4:4
[05:21:49] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[05:21:49] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[05:21:49] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[05:21:49] ============= drm_damage_helper (21 subtests) ==============
[05:21:49] [PASSED] drm_test_damage_iter_no_damage
[05:21:49] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[05:21:49] [PASSED] drm_test_damage_iter_no_damage_src_moved
[05:21:49] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[05:21:49] [PASSED] drm_test_damage_iter_no_damage_not_visible
[05:21:49] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[05:21:49] [PASSED] drm_test_damage_iter_no_damage_no_fb
[05:21:49] [PASSED] drm_test_damage_iter_simple_damage
[05:21:49] [PASSED] drm_test_damage_iter_single_damage
[05:21:49] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[05:21:49] [PASSED] drm_test_damage_iter_single_damage_outside_src
[05:21:49] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[05:21:49] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[05:21:49] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[05:21:49] [PASSED] drm_test_damage_iter_single_damage_src_moved
[05:21:49] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[05:21:49] [PASSED] drm_test_damage_iter_damage
[05:21:49] [PASSED] drm_test_damage_iter_damage_one_intersect
[05:21:49] [PASSED] drm_test_damage_iter_damage_one_outside
[05:21:49] [PASSED] drm_test_damage_iter_damage_src_moved
[05:21:49] [PASSED] drm_test_damage_iter_damage_not_visible
[05:21:49] ================ [PASSED] drm_damage_helper ================
[05:21:49] ============== drm_dp_mst_helper (3 subtests) ==============
[05:21:49] ============== drm_test_dp_mst_calc_pbn_mode ==============
[05:21:49] [PASSED] Clock 154000 BPP 30 DSC disabled
[05:21:49] [PASSED] Clock 234000 BPP 30 DSC disabled
[05:21:49] [PASSED] Clock 297000 BPP 24 DSC disabled
[05:21:49] [PASSED] Clock 332880 BPP 24 DSC enabled
[05:21:49] [PASSED] Clock 324540 BPP 24 DSC enabled
[05:21:49] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[05:21:49] ============== drm_test_dp_mst_calc_pbn_div ===============
[05:21:49] [PASSED] Link rate 2000000 lane count 4
[05:21:49] [PASSED] Link rate 2000000 lane count 2
[05:21:49] [PASSED] Link rate 2000000 lane count 1
[05:21:49] [PASSED] Link rate 1350000 lane count 4
[05:21:49] [PASSED] Link rate 1350000 lane count 2
[05:21:49] [PASSED] Link rate 1350000 lane count 1
[05:21:49] [PASSED] Link rate 1000000 lane count 4
[05:21:49] [PASSED] Link rate 1000000 lane count 2
[05:21:49] [PASSED] Link rate 1000000 lane count 1
[05:21:49] [PASSED] Link rate 810000 lane count 4
[05:21:49] [PASSED] Link rate 810000 lane count 2
[05:21:49] [PASSED] Link rate 810000 lane count 1
[05:21:49] [PASSED] Link rate 540000 lane count 4
[05:21:49] [PASSED] Link rate 540000 lane count 2
[05:21:49] [PASSED] Link rate 540000 lane count 1
[05:21:49] [PASSED] Link rate 270000 lane count 4
[05:21:49] [PASSED] Link rate 270000 lane count 2
[05:21:49] [PASSED] Link rate 270000 lane count 1
[05:21:49] [PASSED] Link rate 162000 lane count 4
[05:21:49] [PASSED] Link rate 162000 lane count 2
[05:21:49] [PASSED] Link rate 162000 lane count 1
[05:21:49] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[05:21:49] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[05:21:49] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[05:21:49] [PASSED] DP_POWER_UP_PHY with port number
[05:21:49] [PASSED] DP_POWER_DOWN_PHY with port number
[05:21:49] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[05:21:49] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[05:21:49] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[05:21:49] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[05:21:49] [PASSED] DP_QUERY_PAYLOAD with port number
[05:21:49] [PASSED] DP_QUERY_PAYLOAD with VCPI
[05:21:49] [PASSED] DP_REMOTE_DPCD_READ with port number
[05:21:49] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[05:21:49] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[05:21:49] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[05:21:49] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[05:21:49] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[05:21:49] [PASSED] DP_REMOTE_I2C_READ with port number
[05:21:49] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[05:21:49] [PASSED] DP_REMOTE_I2C_READ with transactions array
[05:21:49] [PASSED] DP_REMOTE_I2C_WRITE with port number
[05:21:49] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[05:21:49] [PASSED] DP_REMOTE_I2C_WRITE with data array
[05:21:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[05:21:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[05:21:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[05:21:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[05:21:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[05:21:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[05:21:49] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[05:21:49] ================ [PASSED] drm_dp_mst_helper ================
[05:21:49] ================== drm_exec (7 subtests) ===================
[05:21:49] [PASSED] sanitycheck
[05:21:49] [PASSED] test_lock
[05:21:49] [PASSED] test_lock_unlock
[05:21:49] [PASSED] test_duplicates
[05:21:49] [PASSED] test_prepare
[05:21:49] [PASSED] test_prepare_array
[05:21:49] [PASSED] test_multiple_loops
[05:21:49] ==================== [PASSED] drm_exec =====================
[05:21:49] =========== drm_format_helper_test (17 subtests) ===========
[05:21:49] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[05:21:49] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[05:21:49] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[05:21:49] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[05:21:49] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[05:21:49] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[05:21:49] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[05:21:49] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[05:21:49] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[05:21:49] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[05:21:49] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[05:21:49] ============== drm_test_fb_xrgb8888_to_mono ===============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[05:21:49] ==================== drm_test_fb_swab =====================
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ================ [PASSED] drm_test_fb_swab =================
[05:21:49] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[05:21:49] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[05:21:49] [PASSED] single_pixel_source_buffer
[05:21:49] [PASSED] single_pixel_clip_rectangle
[05:21:49] [PASSED] well_known_colors
[05:21:49] [PASSED] destination_pitch
[05:21:49] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[05:21:49] ================= drm_test_fb_clip_offset =================
[05:21:49] [PASSED] pass through
[05:21:49] [PASSED] horizontal offset
[05:21:49] [PASSED] vertical offset
[05:21:49] [PASSED] horizontal and vertical offset
[05:21:49] [PASSED] horizontal offset (custom pitch)
[05:21:49] [PASSED] vertical offset (custom pitch)
[05:21:49] [PASSED] horizontal and vertical offset (custom pitch)
[05:21:49] ============= [PASSED] drm_test_fb_clip_offset =============
[05:21:49] =================== drm_test_fb_memcpy ====================
[05:21:49] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[05:21:49] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[05:21:49] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[05:21:49] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[05:21:49] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[05:21:49] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[05:21:49] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[05:21:49] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[05:21:49] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[05:21:49] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[05:21:49] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[05:21:49] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[05:21:49] =============== [PASSED] drm_test_fb_memcpy ================
[05:21:49] ============= [PASSED] drm_format_helper_test ==============
[05:21:49] ================= drm_format (18 subtests) =================
[05:21:49] [PASSED] drm_test_format_block_width_invalid
[05:21:49] [PASSED] drm_test_format_block_width_one_plane
[05:21:49] [PASSED] drm_test_format_block_width_two_plane
[05:21:49] [PASSED] drm_test_format_block_width_three_plane
[05:21:49] [PASSED] drm_test_format_block_width_tiled
[05:21:49] [PASSED] drm_test_format_block_height_invalid
[05:21:49] [PASSED] drm_test_format_block_height_one_plane
[05:21:49] [PASSED] drm_test_format_block_height_two_plane
[05:21:49] [PASSED] drm_test_format_block_height_three_plane
[05:21:49] [PASSED] drm_test_format_block_height_tiled
[05:21:49] [PASSED] drm_test_format_min_pitch_invalid
[05:21:49] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[05:21:49] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[05:21:49] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[05:21:49] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[05:21:49] [PASSED] drm_test_format_min_pitch_two_plane
[05:21:49] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[05:21:49] [PASSED] drm_test_format_min_pitch_tiled
[05:21:49] =================== [PASSED] drm_format ====================
[05:21:49] ============== drm_framebuffer (10 subtests) ===============
[05:21:49] ========== drm_test_framebuffer_check_src_coords ==========
[05:21:49] [PASSED] Success: source fits into fb
[05:21:49] [PASSED] Fail: overflowing fb with x-axis coordinate
[05:21:49] [PASSED] Fail: overflowing fb with y-axis coordinate
[05:21:49] [PASSED] Fail: overflowing fb with source width
[05:21:49] [PASSED] Fail: overflowing fb with source height
[05:21:49] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[05:21:49] [PASSED] drm_test_framebuffer_cleanup
[05:21:49] =============== drm_test_framebuffer_create ===============
[05:21:49] [PASSED] ABGR8888 normal sizes
[05:21:49] [PASSED] ABGR8888 max sizes
[05:21:49] [PASSED] ABGR8888 pitch greater than min required
[05:21:49] [PASSED] ABGR8888 pitch less than min required
[05:21:49] [PASSED] ABGR8888 Invalid width
[05:21:49] [PASSED] ABGR8888 Invalid buffer handle
[05:21:49] [PASSED] No pixel format
[05:21:49] [PASSED] ABGR8888 Width 0
[05:21:49] [PASSED] ABGR8888 Height 0
[05:21:49] [PASSED] ABGR8888 Out of bound height * pitch combination
[05:21:49] [PASSED] ABGR8888 Large buffer offset
[05:21:49] [PASSED] ABGR8888 Buffer offset for inexistent plane
[05:21:49] [PASSED] ABGR8888 Invalid flag
[05:21:49] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[05:21:49] [PASSED] ABGR8888 Valid buffer modifier
[05:21:49] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[05:21:49] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[05:21:49] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[05:21:49] [PASSED] NV12 Normal sizes
[05:21:49] [PASSED] NV12 Max sizes
[05:21:49] [PASSED] NV12 Invalid pitch
[05:21:49] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[05:21:49] [PASSED] NV12 different modifier per-plane
[05:21:49] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[05:21:49] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[05:21:49] [PASSED] NV12 Modifier for inexistent plane
[05:21:49] [PASSED] NV12 Handle for inexistent plane
[05:21:49] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[05:21:49] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[05:21:49] [PASSED] YVU420 Normal sizes
[05:21:49] [PASSED] YVU420 Max sizes
[05:21:49] [PASSED] YVU420 Invalid pitch
[05:21:49] [PASSED] YVU420 Different pitches
[05:21:49] [PASSED] YVU420 Different buffer offsets/pitches
[05:21:49] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[05:21:49] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[05:21:49] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[05:21:49] [PASSED] YVU420 Valid modifier
[05:21:49] [PASSED] YVU420 Different modifiers per plane
[05:21:49] [PASSED] YVU420 Modifier for inexistent plane
[05:21:49] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[05:21:49] [PASSED] X0L2 Normal sizes
[05:21:49] [PASSED] X0L2 Max sizes
[05:21:49] [PASSED] X0L2 Invalid pitch
[05:21:49] [PASSED] X0L2 Pitch greater than minimum required
[05:21:49] [PASSED] X0L2 Handle for inexistent plane
[05:21:49] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[05:21:49] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[05:21:49] [PASSED] X0L2 Valid modifier
[05:21:49] [PASSED] X0L2 Modifier for inexistent plane
[05:21:49] =========== [PASSED] drm_test_framebuffer_create ===========
[05:21:49] [PASSED] drm_test_framebuffer_free
[05:21:49] [PASSED] drm_test_framebuffer_init
[05:21:49] [PASSED] drm_test_framebuffer_init_bad_format
[05:21:49] [PASSED] drm_test_framebuffer_init_dev_mismatch
[05:21:49] [PASSED] drm_test_framebuffer_lookup
[05:21:49] [PASSED] drm_test_framebuffer_lookup_inexistent
[05:21:49] [PASSED] drm_test_framebuffer_modifiers_not_supported
[05:21:49] ================= [PASSED] drm_framebuffer =================
[05:21:49] ================ drm_gem_shmem (8 subtests) ================
[05:21:49] [PASSED] drm_gem_shmem_test_obj_create
[05:21:49] [PASSED] drm_gem_shmem_test_obj_create_private
[05:21:49] [PASSED] drm_gem_shmem_test_pin_pages
[05:21:49] [PASSED] drm_gem_shmem_test_vmap
[05:21:49] [PASSED] drm_gem_shmem_test_get_pages_sgt
[05:21:49] [PASSED] drm_gem_shmem_test_get_sg_table
[05:21:49] [PASSED] drm_gem_shmem_test_madvise
[05:21:49] [PASSED] drm_gem_shmem_test_purge
[05:21:49] ================== [PASSED] drm_gem_shmem ==================
[05:21:49] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[05:21:49] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[05:21:49] [PASSED] Automatic
[05:21:49] [PASSED] Full
[05:21:49] [PASSED] Limited 16:235
[05:21:49] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[05:21:49] [PASSED] drm_test_check_disable_connector
[05:21:49] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[05:21:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[05:21:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[05:21:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[05:21:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[05:21:49] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[05:21:49] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[05:21:49] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[05:21:49] [PASSED] drm_test_check_output_bpc_dvi
[05:21:49] [PASSED] drm_test_check_output_bpc_format_vic_1
[05:21:49] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[05:21:49] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[05:21:49] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[05:21:49] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[05:21:49] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[05:21:49] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[05:21:49] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[05:21:49] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[05:21:49] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[05:21:49] [PASSED] drm_test_check_broadcast_rgb_value
[05:21:49] [PASSED] drm_test_check_bpc_8_value
[05:21:49] [PASSED] drm_test_check_bpc_10_value
[05:21:49] [PASSED] drm_test_check_bpc_12_value
[05:21:49] [PASSED] drm_test_check_format_value
[05:21:49] [PASSED] drm_test_check_tmds_char_value
[05:21:49] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[05:21:49] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[05:21:49] [PASSED] drm_test_check_mode_valid
[05:21:49] [PASSED] drm_test_check_mode_valid_reject
[05:21:49] [PASSED] drm_test_check_mode_valid_reject_rate
[05:21:49] [PASSED] drm_test_check_mode_valid_reject_max_clock
[05:21:49] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[05:21:49] ================= drm_managed (2 subtests) =================
[05:21:49] [PASSED] drm_test_managed_release_action
[05:21:49] [PASSED] drm_test_managed_run_action
[05:21:49] =================== [PASSED] drm_managed ===================
[05:21:49] =================== drm_mm (6 subtests) ====================
[05:21:49] [PASSED] drm_test_mm_init
[05:21:49] [PASSED] drm_test_mm_debug
[05:21:49] [PASSED] drm_test_mm_align32
[05:21:49] [PASSED] drm_test_mm_align64
[05:21:49] [PASSED] drm_test_mm_lowest
[05:21:49] [PASSED] drm_test_mm_highest
[05:21:49] ===================== [PASSED] drm_mm ======================
[05:21:49] ============= drm_modes_analog_tv (5 subtests) =============
[05:21:49] [PASSED] drm_test_modes_analog_tv_mono_576i
[05:21:49] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[05:21:49] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[05:21:49] [PASSED] drm_test_modes_analog_tv_pal_576i
[05:21:49] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[05:21:49] =============== [PASSED] drm_modes_analog_tv ===============
[05:21:49] ============== drm_plane_helper (2 subtests) ===============
[05:21:49] =============== drm_test_check_plane_state ================
[05:21:49] [PASSED] clipping_simple
[05:21:49] [PASSED] clipping_rotate_reflect
[05:21:49] [PASSED] positioning_simple
[05:21:49] [PASSED] upscaling
[05:21:49] [PASSED] downscaling
[05:21:49] [PASSED] rounding1
[05:21:49] [PASSED] rounding2
[05:21:49] [PASSED] rounding3
[05:21:49] [PASSED] rounding4
[05:21:49] =========== [PASSED] drm_test_check_plane_state ============
[05:21:49] =========== drm_test_check_invalid_plane_state ============
[05:21:49] [PASSED] positioning_invalid
[05:21:49] [PASSED] upscaling_invalid
[05:21:49] [PASSED] downscaling_invalid
[05:21:49] ======= [PASSED] drm_test_check_invalid_plane_state ========
[05:21:49] ================ [PASSED] drm_plane_helper =================
[05:21:49] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[05:21:49] ====== drm_test_connector_helper_tv_get_modes_check =======
[05:21:49] [PASSED] None
[05:21:49] [PASSED] PAL
[05:21:49] [PASSED] NTSC
[05:21:49] [PASSED] Both, NTSC Default
[05:21:49] [PASSED] Both, PAL Default
[05:21:49] [PASSED] Both, NTSC Default, with PAL on command-line
[05:21:49] [PASSED] Both, PAL Default, with NTSC on command-line
[05:21:49] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[05:21:49] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[05:21:49] ================== drm_rect (9 subtests) ===================
[05:21:49] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[05:21:49] [PASSED] drm_test_rect_clip_scaled_not_clipped
[05:21:49] [PASSED] drm_test_rect_clip_scaled_clipped
[05:21:49] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[05:21:49] ================= drm_test_rect_intersect =================
[05:21:49] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[05:21:49] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[05:21:49] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[05:21:49] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[05:21:49] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[05:21:49] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[05:21:49] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[05:21:49] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[05:21:49] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[05:21:49] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[05:21:49] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[05:21:49] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[05:21:49] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[05:21:49] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[05:21:49] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[05:21:49] ============= [PASSED] drm_test_rect_intersect =============
[05:21:49] ================ drm_test_rect_calc_hscale ================
[05:21:49] [PASSED] normal use
[05:21:49] [PASSED] out of max range
[05:21:49] [PASSED] out of min range
[05:21:49] [PASSED] zero dst
[05:21:49] [PASSED] negative src
[05:21:49] [PASSED] negative dst
[05:21:49] ============ [PASSED] drm_test_rect_calc_hscale ============
[05:21:49] ================ drm_test_rect_calc_vscale ================
[05:21:49] [PASSED] normal use
[05:21:49] [PASSED] out of max range
[05:21:49] [PASSED] out of min range
[05:21:49] [PASSED] zero dst
[05:21:49] [PASSED] negative src
[05:21:49] [PASSED] negative dst
[05:21:49] ============ [PASSED] drm_test_rect_calc_vscale ============
[05:21:49] ================== drm_test_rect_rotate ===================
[05:21:49] [PASSED] reflect-x
[05:21:49] [PASSED] reflect-y
[05:21:49] [PASSED] rotate-0
[05:21:49] [PASSED] rotate-90
[05:21:49] [PASSED] rotate-180
[05:21:49] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[05:21:49] ============== [PASSED] drm_test_rect_rotate ===============
[05:21:49] ================ drm_test_rect_rotate_inv =================
[05:21:49] [PASSED] reflect-x
[05:21:49] [PASSED] reflect-y
[05:21:49] [PASSED] rotate-0
[05:21:49] [PASSED] rotate-90
[05:21:49] [PASSED] rotate-180
[05:21:49] [PASSED] rotate-270
[05:21:49] ============ [PASSED] drm_test_rect_rotate_inv =============
[05:21:49] ==================== [PASSED] drm_rect =====================
[05:21:49] ============ drm_sysfb_modeset_test (1 subtest) ============
[05:21:49] ============ drm_test_sysfb_build_fourcc_list =============
[05:21:49] [PASSED] no native formats
[05:21:49] [PASSED] XRGB8888 as native format
[05:21:49] [PASSED] remove duplicates
[05:21:49] [PASSED] convert alpha formats
[05:21:49] [PASSED] random formats
[05:21:49] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[05:21:49] ============= [PASSED] drm_sysfb_modeset_test ==============
[05:21:49] ============================================================
[05:21:49] Testing complete. Ran 616 tests: passed: 616
[05:21:49] Elapsed time: 23.546s total, 1.665s configuring, 21.713s building, 0.147s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[05:21:49] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:21:51] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[05:21:59] Starting KUnit Kernel (1/1)...
[05:21:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:21:59] ================= ttm_device (5 subtests) ==================
[05:21:59] [PASSED] ttm_device_init_basic
[05:21:59] [PASSED] ttm_device_init_multiple
[05:21:59] [PASSED] ttm_device_fini_basic
[05:21:59] [PASSED] ttm_device_init_no_vma_man
[05:21:59] ================== ttm_device_init_pools ==================
[05:21:59] [PASSED] No DMA allocations, no DMA32 required
[05:21:59] [PASSED] DMA allocations, DMA32 required
[05:21:59] [PASSED] No DMA allocations, DMA32 required
[05:21:59] [PASSED] DMA allocations, no DMA32 required
[05:21:59] ============== [PASSED] ttm_device_init_pools ==============
[05:21:59] =================== [PASSED] ttm_device ====================
[05:21:59] ================== ttm_pool (8 subtests) ===================
[05:21:59] ================== ttm_pool_alloc_basic ===================
[05:21:59] [PASSED] One page
[05:21:59] [PASSED] More than one page
[05:21:59] [PASSED] Above the allocation limit
[05:21:59] [PASSED] One page, with coherent DMA mappings enabled
[05:21:59] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:21:59] ============== [PASSED] ttm_pool_alloc_basic ===============
[05:21:59] ============== ttm_pool_alloc_basic_dma_addr ==============
[05:21:59] [PASSED] One page
[05:21:59] [PASSED] More than one page
[05:21:59] [PASSED] Above the allocation limit
[05:21:59] [PASSED] One page, with coherent DMA mappings enabled
[05:21:59] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:21:59] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[05:21:59] [PASSED] ttm_pool_alloc_order_caching_match
[05:21:59] [PASSED] ttm_pool_alloc_caching_mismatch
[05:21:59] [PASSED] ttm_pool_alloc_order_mismatch
[05:21:59] [PASSED] ttm_pool_free_dma_alloc
[05:21:59] [PASSED] ttm_pool_free_no_dma_alloc
[05:21:59] [PASSED] ttm_pool_fini_basic
[05:21:59] ==================== [PASSED] ttm_pool =====================
[05:21:59] ================ ttm_resource (8 subtests) =================
[05:21:59] ================= ttm_resource_init_basic =================
[05:21:59] [PASSED] Init resource in TTM_PL_SYSTEM
[05:21:59] [PASSED] Init resource in TTM_PL_VRAM
[05:21:59] [PASSED] Init resource in a private placement
[05:21:59] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[05:21:59] ============= [PASSED] ttm_resource_init_basic =============
[05:21:59] [PASSED] ttm_resource_init_pinned
[05:21:59] [PASSED] ttm_resource_fini_basic
[05:21:59] [PASSED] ttm_resource_manager_init_basic
[05:21:59] [PASSED] ttm_resource_manager_usage_basic
[05:21:59] [PASSED] ttm_resource_manager_set_used_basic
[05:21:59] [PASSED] ttm_sys_man_alloc_basic
[05:21:59] [PASSED] ttm_sys_man_free_basic
[05:21:59] ================== [PASSED] ttm_resource ===================
[05:21:59] =================== ttm_tt (15 subtests) ===================
[05:21:59] ==================== ttm_tt_init_basic ====================
[05:21:59] [PASSED] Page-aligned size
[05:21:59] [PASSED] Extra pages requested
[05:21:59] ================ [PASSED] ttm_tt_init_basic ================
[05:21:59] [PASSED] ttm_tt_init_misaligned
[05:21:59] [PASSED] ttm_tt_fini_basic
[05:21:59] [PASSED] ttm_tt_fini_sg
[05:21:59] [PASSED] ttm_tt_fini_shmem
[05:21:59] [PASSED] ttm_tt_create_basic
[05:21:59] [PASSED] ttm_tt_create_invalid_bo_type
[05:21:59] [PASSED] ttm_tt_create_ttm_exists
[05:21:59] [PASSED] ttm_tt_create_failed
[05:21:59] [PASSED] ttm_tt_destroy_basic
[05:21:59] [PASSED] ttm_tt_populate_null_ttm
[05:21:59] [PASSED] ttm_tt_populate_populated_ttm
[05:21:59] [PASSED] ttm_tt_unpopulate_basic
[05:21:59] [PASSED] ttm_tt_unpopulate_empty_ttm
[05:21:59] [PASSED] ttm_tt_swapin_basic
[05:21:59] ===================== [PASSED] ttm_tt ======================
[05:21:59] =================== ttm_bo (14 subtests) ===================
[05:21:59] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[05:21:59] [PASSED] Cannot be interrupted and sleeps
[05:21:59] [PASSED] Cannot be interrupted, locks straight away
[05:21:59] [PASSED] Can be interrupted, sleeps
[05:21:59] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[05:21:59] [PASSED] ttm_bo_reserve_locked_no_sleep
[05:21:59] [PASSED] ttm_bo_reserve_no_wait_ticket
[05:21:59] [PASSED] ttm_bo_reserve_double_resv
[05:21:59] [PASSED] ttm_bo_reserve_interrupted
[05:21:59] [PASSED] ttm_bo_reserve_deadlock
[05:21:59] [PASSED] ttm_bo_unreserve_basic
[05:21:59] [PASSED] ttm_bo_unreserve_pinned
[05:21:59] [PASSED] ttm_bo_unreserve_bulk
[05:21:59] [PASSED] ttm_bo_put_basic
[05:21:59] [PASSED] ttm_bo_put_shared_resv
[05:21:59] [PASSED] ttm_bo_pin_basic
[05:21:59] [PASSED] ttm_bo_pin_unpin_resource
[05:21:59] [PASSED] ttm_bo_multiple_pin_one_unpin
[05:21:59] ===================== [PASSED] ttm_bo ======================
[05:21:59] ============== ttm_bo_validate (22 subtests) ===============
[05:21:59] ============== ttm_bo_init_reserved_sys_man ===============
[05:21:59] [PASSED] Buffer object for userspace
[05:21:59] [PASSED] Kernel buffer object
[05:21:59] [PASSED] Shared buffer object
[05:21:59] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[05:21:59] ============== ttm_bo_init_reserved_mock_man ==============
[05:21:59] [PASSED] Buffer object for userspace
[05:21:59] [PASSED] Kernel buffer object
[05:21:59] [PASSED] Shared buffer object
[05:21:59] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[05:21:59] [PASSED] ttm_bo_init_reserved_resv
[05:21:59] ================== ttm_bo_validate_basic ==================
[05:21:59] [PASSED] Buffer object for userspace
[05:21:59] [PASSED] Kernel buffer object
[05:21:59] [PASSED] Shared buffer object
[05:21:59] ============== [PASSED] ttm_bo_validate_basic ==============
[05:21:59] [PASSED] ttm_bo_validate_invalid_placement
[05:21:59] ============= ttm_bo_validate_same_placement ==============
[05:21:59] [PASSED] System manager
[05:21:59] [PASSED] VRAM manager
[05:21:59] ========= [PASSED] ttm_bo_validate_same_placement ==========
[05:21:59] [PASSED] ttm_bo_validate_failed_alloc
[05:21:59] [PASSED] ttm_bo_validate_pinned
[05:21:59] [PASSED] ttm_bo_validate_busy_placement
[05:21:59] ================ ttm_bo_validate_multihop =================
[05:21:59] [PASSED] Buffer object for userspace
[05:21:59] [PASSED] Kernel buffer object
[05:21:59] [PASSED] Shared buffer object
[05:21:59] ============ [PASSED] ttm_bo_validate_multihop =============
[05:21:59] ========== ttm_bo_validate_no_placement_signaled ==========
[05:21:59] [PASSED] Buffer object in system domain, no page vector
[05:21:59] [PASSED] Buffer object in system domain with an existing page vector
[05:21:59] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[05:21:59] ======== ttm_bo_validate_no_placement_not_signaled ========
[05:21:59] [PASSED] Buffer object for userspace
[05:21:59] [PASSED] Kernel buffer object
[05:21:59] [PASSED] Shared buffer object
[05:21:59] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[05:21:59] [PASSED] ttm_bo_validate_move_fence_signaled
[05:21:59] ========= ttm_bo_validate_move_fence_not_signaled =========
[05:21:59] [PASSED] Waits for GPU
[05:21:59] [PASSED] Tries to lock straight away
[05:21:59] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[05:21:59] [PASSED] ttm_bo_validate_swapout
[05:21:59] [PASSED] ttm_bo_validate_happy_evict
[05:21:59] [PASSED] ttm_bo_validate_all_pinned_evict
[05:21:59] [PASSED] ttm_bo_validate_allowed_only_evict
[05:21:59] [PASSED] ttm_bo_validate_deleted_evict
[05:21:59] [PASSED] ttm_bo_validate_busy_domain_evict
[05:21:59] [PASSED] ttm_bo_validate_evict_gutting
[05:21:59] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[05:21:59] ================= [PASSED] ttm_bo_validate =================
[05:21:59] ============================================================
[05:21:59] Testing complete. Ran 102 tests: passed: 102
[05:22:00] Elapsed time: 10.084s total, 1.673s configuring, 7.793s building, 0.517s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3)
2025-06-24 1:17 [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Zhanjun Dong
2025-06-24 1:24 ` ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3) Patchwork
2025-06-24 5:22 ` ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4) Patchwork
@ 2025-06-24 6:50 ` Patchwork
2025-06-24 7:31 ` ✗ Xe.CI.Full: failure for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4) Patchwork
2025-06-24 20:15 ` [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Michal Wajdeczko
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-24 6:50 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 70704 bytes --]
== Series Details ==
Series: drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3)
URL : https://patchwork.freedesktop.org/series/150488/
State : failure
== Summary ==
CI Bug Log - changes from xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738_FULL -> xe-pw-150488v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150488v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150488v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150488v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@xe_wedged@wedged-mode-toggle.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html
Known issues
------------
Here are the changes found in xe-pw-150488v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-adlp: [PASS][3] -> [FAIL][4] ([Intel XE#827]) +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@kms_async_flips@alternate-sync-async-flip.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-9/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#3767]) +15 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#3768])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [PASS][7] -> [FAIL][8] ([Intel XE#3908]) +3 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][12] ([Intel XE#316])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2328])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: [PASS][16] -> [DMESG-FAIL][17] ([Intel XE#4543]) +3 other tests dmesg-fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#2191])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#787]) +139 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#787]) +14 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2907])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +20 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#3862])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][27] ([Intel XE#3862])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3432])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#2907])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#4416]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#306])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@gamma:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#306])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2252]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#373])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#373])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][39] ([Intel XE#1178]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-463/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#307])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#1178])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2321]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2291]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#4302])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#4354])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#4354])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-sst.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2244])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#310]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2316])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2316]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][55] -> [FAIL][56] ([Intel XE#886]) +1 other test fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [PASS][57] -> [FAIL][58] ([Intel XE#301]) +5 other tests fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#455]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#455]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x:
- shard-adlp: [PASS][61] -> [FAIL][62] ([Intel XE#1874])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2311]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#651]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2312])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#651]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#653]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#653]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2313])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#656]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1503])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#1503])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_hdr@static-swap.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-6/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4298])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4596])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#5020])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#2571])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#870])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1489]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#1489])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1489])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#1122])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_psr@psr2-basic.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#2939])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#3414] / [Intel XE#3904])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#3414])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][89] -> [FAIL][90] ([Intel XE#2883]) +3 other tests fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-463/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
* igt@xe_eudebug@discovery-race-sigint:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#4837]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@xe_eudebug@discovery-race-sigint.html
* igt@xe_eudebug@read-metadata:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#4837]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_eudebug@read-metadata.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4837]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#688])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2322]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#1392]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [PASS][97] -> [SKIP][98] ([Intel XE#1392]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#288]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-fault:
- shard-adlp: NOTRUN -> [SKIP][100] ([Intel XE#288]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#4943])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read-after:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#4915]) +62 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read-after.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#5018])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-ro-dontunmap:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#4915]) +41 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-ro-dontunmap.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#4650])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#4733])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
#### Possible fixes ####
* igt@kms_addfb_basic@unused-offsets:
- shard-dg2-set2: [SKIP][110] ([i915#6077]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_addfb_basic@unused-offsets.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_addfb_basic@unused-offsets.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [FAIL][112] ([Intel XE#3908]) -> [PASS][113] +1 other test pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][114] ([Intel XE#4543]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][116] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][118] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][120] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][122] -> [PASS][123] +13 other tests pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-64x64.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][124] ([Intel XE#2291]) -> [PASS][125] +8 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][126] ([Intel XE#2316]) -> [PASS][127] +7 other tests pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][128] ([Intel XE#301]) -> [PASS][129] +3 other tests pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp4:
- shard-dg2-set2: [FAIL][130] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [DMESG-WARN][132] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][133] +2 other tests pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][134] ([Intel XE#783]) -> [PASS][135] +3 other tests pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [SKIP][136] ([Intel XE#1503]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [SKIP][138] ([Intel XE#829]) -> [PASS][139] +5 other tests pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_plane_lowres@tiling-x.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][140] ([Intel XE#4596]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][142] ([Intel XE#1435]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [SKIP][144] ([Intel XE#1392]) -> [PASS][145] +7 other tests pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [DMESG-WARN][146] ([Intel XE#3876]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][148] ([Intel XE#4937]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [SKIP][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175]) ([Intel XE#378]) -> ([PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-5/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-2/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-2/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-2/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-2/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-3/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-3/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-3/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-7/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-7/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-7/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-5/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-6/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-5/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-6/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-6/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-6/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-4/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-4/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-4/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-8/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-8/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-8/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-4/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-4/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-3/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-3/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-8/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-1/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-3/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-7/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-7/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-2/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-2/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-2/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-8/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-6/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-6/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-6/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-5/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-4/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-8/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-4/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-5/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-5/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-lnl-7/igt@xe_module_load@load.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [FAIL][200] ([Intel XE#4208]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_module_load@reload-no-display.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-bmg: [ABORT][202] -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@xe_pm@s4-vm-bind-prefetch.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@xe_pm@s4-vm-bind-prefetch.html
#### Warnings ####
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][204] ([Intel XE#829]) -> [SKIP][205] ([Intel XE#316])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2-set2: [SKIP][206] ([Intel XE#829]) -> [SKIP][207] ([Intel XE#1124])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][208] -> [SKIP][209] ([Intel XE#367])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][210] ([Intel XE#829]) -> [SKIP][211] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][212] ([Intel XE#829]) -> [SKIP][213] ([Intel XE#2907])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][214] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][215] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-dg2-set2: [SKIP][216] -> [SKIP][217] ([Intel XE#373]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][218] ([Intel XE#2341]) -> [FAIL][219] ([Intel XE#1178])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_content_protection@srm.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-7/igt@kms_content_protection@srm.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][220] -> [SKIP][221] ([Intel XE#455]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][222] ([Intel XE#783]) -> [SKIP][223] ([Intel XE#651]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][224] ([Intel XE#2311]) -> [SKIP][225] ([Intel XE#2312]) +14 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][226] ([Intel XE#2312]) -> [SKIP][227] ([Intel XE#2311]) +16 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][228] ([Intel XE#2312]) -> [SKIP][229] ([Intel XE#4141]) +6 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][230] ([Intel XE#4141]) -> [SKIP][231] ([Intel XE#2312]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][232] ([Intel XE#2313]) -> [SKIP][233] ([Intel XE#2312]) +13 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][234] ([Intel XE#2312]) -> [SKIP][235] ([Intel XE#2313]) +18 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][236] ([Intel XE#783]) -> [SKIP][237] ([Intel XE#653]) +4 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: [SKIP][238] -> [SKIP][239] ([Intel XE#2925])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: [FAIL][240] ([Intel XE#3325]) -> [SKIP][241] ([Intel XE#734])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][242] -> [SKIP][243] ([Intel XE#1489])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][244] -> [SKIP][245] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_psr@pr-sprite-blt.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-435/igt@kms_psr@pr-sprite-blt.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][246] ([Intel XE#362]) -> [SKIP][247] ([Intel XE#1500])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [DMESG-WARN][268], [PASS][269], [PASS][270], [SKIP][271], [PASS][272], [PASS][273]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173]) -> ([PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [SKIP][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299]) ([Intel XE#378])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-2/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-4/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-4/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-2/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-3/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-1/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-6/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-9/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-6/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-2/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-4/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-8/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-4/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-1/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-9/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-6/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-9/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-2/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-6/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-1/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-1/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-3/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-3/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/shard-adlp-3/igt@xe_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* Linux: xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738 -> xe-pw-150488v3
IGT_8422: 9b9c9136b17a2ed0680fb9589d51446c03698b37 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738: c86140bb02edc8e529f095ebf15e8d466fa15738
xe-pw-150488v3: 150488v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v3/index.html
[-- Attachment #2: Type: text/html, Size: 80798 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4)
2025-06-24 1:17 [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Zhanjun Dong
` (2 preceding siblings ...)
2025-06-24 6:50 ` ✗ Xe.CI.Full: failure for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3) Patchwork
@ 2025-06-24 7:31 ` Patchwork
2025-06-24 20:15 ` [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Michal Wajdeczko
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-24 7:31 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 66284 bytes --]
== Series Details ==
Series: drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4)
URL : https://patchwork.freedesktop.org/series/150488/
State : failure
== Summary ==
CI Bug Log - changes from xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738_FULL -> xe-pw-150488v4_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150488v4_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150488v4_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150488v4_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [PASS][1] -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html
#### Warnings ####
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][3] ([Intel XE#4917]) -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
Known issues
------------
Here are the changes found in xe-pw-150488v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#3767]) +15 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#3768])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#316])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#316])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2328])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#2191])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#787]) +14 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#787]) +139 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3432])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#2907])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2907]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#4416]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#306])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@gamma:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#306])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2252]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#373]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#373])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1178]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#307])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][34] ([Intel XE#1178]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2321]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#4354])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2244])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][40] -> [FAIL][41] ([Intel XE#301]) +2 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#310]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2316]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@blocking-wf_vblank:
- shard-dg2-set2: [PASS][45] -> [FAIL][46] ([Intel XE#2882])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_flip@blocking-wf_vblank.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
- shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#886]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#886]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#301]) +8 other tests fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#301] / [Intel XE#3321])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][52] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-433/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#455]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#455]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-adlp: [PASS][55] -> [DMESG-FAIL][56] ([Intel XE#4543]) +1 other test dmesg-fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [PASS][57] -> [FAIL][58] ([Intel XE#1874])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2311]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#651]) +10 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4141])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#651]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#653]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#653]) +8 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2313])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#656]) +7 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1503])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4298])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#5020])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_plane_multiple@tiling-y.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#870])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_pm_backlight@fade.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-adlp: [PASS][71] -> [DMESG-WARN][72] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1489]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#1489])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1489])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#1122])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_psr@psr2-basic.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#2939])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#3414] / [Intel XE#3904])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#3414])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][82] -> [FAIL][83] ([Intel XE#2883]) +5 other tests fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-433/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#1499])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@kms_vrr@negative-basic.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-5/igt@kms_vrr@negative-basic.html
* igt@xe_eudebug@multiple-sessions:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#4837]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-463/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug@read-metadata:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#4837]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_eudebug@read-metadata.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4837]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- shard-adlp: NOTRUN -> [SKIP][89] ([Intel XE#688])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#1392]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2322]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#1392]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1392]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-fault:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#288]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#288]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html
* igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-dontunmap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#4915]) +66 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-463/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#4943])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read-after:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#4915]) +63 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read-after.html
* igt@xe_module_load@many-reload:
- shard-adlp: [PASS][100] -> [DMESG-WARN][101] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5244])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@many-reload.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-9/igt@xe_module_load@many-reload.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2541] / [Intel XE#3573])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-463/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#4650])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#4733])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_vm@bind-array-enobufs:
- shard-dg2-set2: [PASS][107] -> [DMESG-FAIL][108] ([Intel XE#5213])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_vm@bind-array-enobufs.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@xe_vm@bind-array-enobufs.html
#### Possible fixes ####
* igt@kms_addfb_basic@unused-offsets:
- shard-dg2-set2: [SKIP][109] ([i915#6077]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_addfb_basic@unused-offsets.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_addfb_basic@unused-offsets.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [FAIL][111] ([Intel XE#3908]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][113] ([Intel XE#4543]) -> [PASS][114] +2 other tests pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][115] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][116] +1 other test pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][117] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][119] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][120] +1 other test pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][121] -> [PASS][122] +13 other tests pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-64x64.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][123] ([Intel XE#2291]) -> [PASS][124] +8 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][125] ([Intel XE#4294]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][127] ([Intel XE#2316]) -> [PASS][128] +14 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][129] ([Intel XE#301]) -> [PASS][130] +4 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][131] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [DMESG-WARN][133] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][134] +2 other tests pass
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][135] ([Intel XE#783]) -> [PASS][136] +3 other tests pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [SKIP][137] ([Intel XE#1503]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [SKIP][139] ([Intel XE#829]) -> [PASS][140] +5 other tests pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_plane_lowres@tiling-x.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][141] ([Intel XE#4596]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-adlp: [SKIP][143] -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_pm_rpm@drm-resources-equal.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-8/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][145] ([Intel XE#1435]) -> [PASS][146] +2 other tests pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@universal-plane-functional:
- shard-bmg: [DMESG-WARN][147] ([Intel XE#5213]) -> [PASS][148] +1 other test pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@kms_universal_plane@universal-plane-functional.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-8/igt@kms_universal_plane@universal-plane-functional.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [SKIP][149] ([Intel XE#1392]) -> [PASS][150] +7 other tests pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [DMESG-WARN][151] ([Intel XE#3876]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@threads-many-new-nomemset:
- shard-bmg: [FAIL][153] -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-new-nomemset.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-new-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][155] ([Intel XE#4937]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [FAIL][157] ([Intel XE#4208]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_module_load@reload-no-display.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-basic-exec:
- shard-adlp: [ABORT][159] ([Intel XE#4847]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_pm@s2idle-basic-exec.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-8/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-bmg: [ABORT][161] -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@xe_pm@s4-vm-bind-prefetch.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@xe_pm@s4-vm-bind-prefetch.html
#### Warnings ####
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][163] ([Intel XE#829]) -> [SKIP][164] ([Intel XE#316])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2-set2: [SKIP][165] ([Intel XE#829]) -> [SKIP][166] ([Intel XE#1124])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][167] -> [SKIP][168] ([Intel XE#367])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][169] ([Intel XE#829]) -> [SKIP][170] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][171] ([Intel XE#829]) -> [SKIP][172] ([Intel XE#2907])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-dg2-set2: [SKIP][173] -> [SKIP][174] ([Intel XE#373]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][175] ([Intel XE#1178]) -> [SKIP][176] ([Intel XE#2341]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_content_protection@atomic.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][177] ([Intel XE#2341]) -> [FAIL][178] ([Intel XE#1178]) +1 other test fail
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_content_protection@legacy.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][179] -> [SKIP][180] ([Intel XE#455]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][181] ([Intel XE#2312]) -> [SKIP][182] ([Intel XE#2311]) +28 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][183] ([Intel XE#783]) -> [SKIP][184] ([Intel XE#651]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][185] ([Intel XE#2311]) -> [SKIP][186] ([Intel XE#2312]) +16 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][187] ([Intel XE#2312]) -> [SKIP][188] ([Intel XE#4141]) +11 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][189] ([Intel XE#4141]) -> [SKIP][190] ([Intel XE#2312]) +6 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][191] ([Intel XE#2313]) -> [SKIP][192] ([Intel XE#2312]) +12 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][193] ([Intel XE#2312]) -> [SKIP][194] ([Intel XE#2313]) +27 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][195] ([Intel XE#783]) -> [SKIP][196] ([Intel XE#653]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][197] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][198] ([Intel XE#3544])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: [SKIP][199] -> [SKIP][200] ([Intel XE#2925])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][201] -> [SKIP][202] ([Intel XE#1489])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][203] -> [SKIP][204] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_psr@pr-sprite-blt.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][205] ([Intel XE#1729]) -> [SKIP][206] ([Intel XE#362])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][207] ([Intel XE#362]) -> [SKIP][208] ([Intel XE#1500])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [DMESG-WARN][229], [PASS][230], [PASS][231], [SKIP][232], [PASS][233], [PASS][234]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173]) -> ([PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [SKIP][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260]) ([Intel XE#378])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-9/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-8/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-1/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-6/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-8/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-6/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-3/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-3/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-9/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-9/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-9/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-3/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-4/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-4/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-1/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-2/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-8/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-8/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-1/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-1/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-4/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-6/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/shard-adlp-6/igt@xe_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4847]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4847
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* Linux: xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738 -> xe-pw-150488v4
IGT_8422: 9b9c9136b17a2ed0680fb9589d51446c03698b37 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738: c86140bb02edc8e529f095ebf15e8d466fa15738
xe-pw-150488v4: 150488v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150488v4/index.html
[-- Attachment #2: Type: text/html, Size: 76749 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error.
2025-06-24 1:17 [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Zhanjun Dong
` (3 preceding siblings ...)
2025-06-24 7:31 ` ✗ Xe.CI.Full: failure for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4) Patchwork
@ 2025-06-24 20:15 ` Michal Wajdeczko
2025-06-24 22:17 ` Cavitt, Jonathan
4 siblings, 1 reply; 8+ messages in thread
From: Michal Wajdeczko @ 2025-06-24 20:15 UTC (permalink / raw)
To: Zhanjun Dong, intel-xe; +Cc: Jonathan Cavitt, Stuart Summers
On 24.06.2025 03:17, Zhanjun Dong wrote:
> Disable GuC communication on Xe micro controller hardware initialization
> error.
>
> Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4917
>
> ---
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Stuart Summers <stuart.summers@intel.com>
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
>
> Change list:
> v6: Skip disable ct on xe_guc_enable_communication error
> v5: Set wedge is excessive action, revert back to disable ct
> v4: Fix typo and add new line
> v3: v2 CI re-run
> v2: Remove unnecessary jump to err-out
> Drop disable ct, switch to set wedge
> ---
> drivers/gpu/drm/xe/xe_guc.c | 5 +++++
> drivers/gpu/drm/xe/xe_guc.h | 1 +
> drivers/gpu/drm/xe/xe_uc.c | 19 ++++++++++++++-----
> 3 files changed, 20 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
> index 209e5d53c290..9d7175b16cc7 100644
> --- a/drivers/gpu/drm/xe/xe_guc.c
> +++ b/drivers/gpu/drm/xe/xe_guc.c
> @@ -1230,6 +1230,11 @@ int xe_guc_enable_communication(struct xe_guc *guc)
> return 0;
> }
>
each new public function needs to have a proper kernel-doc
> +void xe_guc_disable_communication(struct xe_guc *guc)
> +{
> + xe_guc_ct_disable(&guc->ct);
> +}
> +
> int xe_guc_suspend(struct xe_guc *guc)
> {
> struct xe_gt *gt = guc_to_gt(guc);
> diff --git a/drivers/gpu/drm/xe/xe_guc.h b/drivers/gpu/drm/xe/xe_guc.h
> index 58338be44558..285c19929f8c 100644
> --- a/drivers/gpu/drm/xe/xe_guc.h
> +++ b/drivers/gpu/drm/xe/xe_guc.h
> @@ -33,6 +33,7 @@ int xe_guc_reset(struct xe_guc *guc);
> int xe_guc_upload(struct xe_guc *guc);
> int xe_guc_min_load_for_hwconfig(struct xe_guc *guc);
> int xe_guc_enable_communication(struct xe_guc *guc);
> +void xe_guc_disable_communication(struct xe_guc *guc);
> int xe_guc_suspend(struct xe_guc *guc);
> void xe_guc_notify(struct xe_guc *guc);
> int xe_guc_auth_huc(struct xe_guc *guc, u32 rsa_addr);
> diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c
> index 3a8751a8b92d..d74bfc7a85d1 100644
> --- a/drivers/gpu/drm/xe/xe_uc.c
> +++ b/drivers/gpu/drm/xe/xe_uc.c
> @@ -13,6 +13,7 @@
> #include "xe_gt_printk.h"
> #include "xe_gt_sriov_vf.h"
> #include "xe_guc.h"
> +#include "xe_guc_ct.h"
> #include "xe_guc_pc.h"
> #include "xe_guc_engine_activity.h"
> #include "xe_huc.h"
> @@ -161,15 +162,19 @@ static int vf_uc_init_hw(struct xe_uc *uc)
>
> err = xe_gt_sriov_vf_connect(uc_to_gt(uc));
> if (err)
> - return err;
> + goto err_out;
>
> uc->guc.submission_state.enabled = true;
>
> err = xe_gt_record_default_lrcs(uc_to_gt(uc));
> if (err)
> - return err;
> + goto err_out;
>
> return 0;
> +
> +err_out:
> + xe_guc_disable_communication(&uc->guc);
> + return err;
> }
>
> /*
> @@ -201,15 +206,15 @@ int xe_uc_init_hw(struct xe_uc *uc)
>
> ret = xe_gt_record_default_lrcs(uc_to_gt(uc));
> if (ret)
> - return ret;
> + goto err_out;
>
> ret = xe_guc_post_load_init(&uc->guc);
> if (ret)
> - return ret;
> + goto err_out;
>
> ret = xe_guc_pc_start(&uc->guc.pc);
> if (ret)
> - return ret;
> + goto err_out;
>
> xe_guc_engine_activity_enable_stats(&uc->guc);
>
> @@ -221,6 +226,10 @@ int xe_uc_init_hw(struct xe_uc *uc)
> xe_gsc_load_start(&uc->gsc);
>
> return 0;
> +
> +err_out:
> + xe_guc_disable_communication(&uc->guc);
> + return ret;
> }
>
> int xe_uc_fini_hw(struct xe_uc *uc)
what about doing similar cleanup in xe_guc_min_load_for_hwconfig() where
we also have unbalanced xe_guc_enable_communication() ?
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error.
2025-06-24 20:15 ` [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Michal Wajdeczko
@ 2025-06-24 22:17 ` Cavitt, Jonathan
2025-06-30 18:52 ` Dong, Zhanjun
0 siblings, 1 reply; 8+ messages in thread
From: Cavitt, Jonathan @ 2025-06-24 22:17 UTC (permalink / raw)
To: Wajdeczko, Michal, Dong, Zhanjun, intel-xe@lists.freedesktop.org
Cc: Summers, Stuart, Cavitt, Jonathan
-----Original Message-----
From: Wajdeczko, Michal <Michal.Wajdeczko@intel.com>
Sent: Tuesday, June 24, 2025 1:15 PM
To: Dong, Zhanjun <zhanjun.dong@intel.com>; intel-xe@lists.freedesktop.org
Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Summers, Stuart <stuart.summers@intel.com>
Subject: Re: [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error.
>
> On 24.06.2025 03:17, Zhanjun Dong wrote:
> > Disable GuC communication on Xe micro controller hardware initialization
> > error.
> >
> > Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
> > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4917
> >
> > ---
> > Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> > Cc: Stuart Summers <stuart.summers@intel.com>
> > Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> >
> > Change list:
> > v6: Skip disable ct on xe_guc_enable_communication error
> > v5: Set wedge is excessive action, revert back to disable ct
> > v4: Fix typo and add new line
> > v3: v2 CI re-run
> > v2: Remove unnecessary jump to err-out
> > Drop disable ct, switch to set wedge
> > ---
> > drivers/gpu/drm/xe/xe_guc.c | 5 +++++
> > drivers/gpu/drm/xe/xe_guc.h | 1 +
> > drivers/gpu/drm/xe/xe_uc.c | 19 ++++++++++++++-----
> > 3 files changed, 20 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
> > index 209e5d53c290..9d7175b16cc7 100644
> > --- a/drivers/gpu/drm/xe/xe_guc.c
> > +++ b/drivers/gpu/drm/xe/xe_guc.c
> > @@ -1230,6 +1230,11 @@ int xe_guc_enable_communication(struct xe_guc *guc)
> > return 0;
> > }
> >
>
> each new public function needs to have a proper kernel-doc
>
> > +void xe_guc_disable_communication(struct xe_guc *guc)
> > +{
> > + xe_guc_ct_disable(&guc->ct);
> > +}
> > +
> > int xe_guc_suspend(struct xe_guc *guc)
> > {
> > struct xe_gt *gt = guc_to_gt(guc);
> > diff --git a/drivers/gpu/drm/xe/xe_guc.h b/drivers/gpu/drm/xe/xe_guc.h
> > index 58338be44558..285c19929f8c 100644
> > --- a/drivers/gpu/drm/xe/xe_guc.h
> > +++ b/drivers/gpu/drm/xe/xe_guc.h
> > @@ -33,6 +33,7 @@ int xe_guc_reset(struct xe_guc *guc);
> > int xe_guc_upload(struct xe_guc *guc);
> > int xe_guc_min_load_for_hwconfig(struct xe_guc *guc);
> > int xe_guc_enable_communication(struct xe_guc *guc);
> > +void xe_guc_disable_communication(struct xe_guc *guc);
> > int xe_guc_suspend(struct xe_guc *guc);
> > void xe_guc_notify(struct xe_guc *guc);
> > int xe_guc_auth_huc(struct xe_guc *guc, u32 rsa_addr);
> > diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c
> > index 3a8751a8b92d..d74bfc7a85d1 100644
> > --- a/drivers/gpu/drm/xe/xe_uc.c
> > +++ b/drivers/gpu/drm/xe/xe_uc.c
> > @@ -13,6 +13,7 @@
> > #include "xe_gt_printk.h"
> > #include "xe_gt_sriov_vf.h"
> > #include "xe_guc.h"
> > +#include "xe_guc_ct.h"
> > #include "xe_guc_pc.h"
> > #include "xe_guc_engine_activity.h"
> > #include "xe_huc.h"
> > @@ -161,15 +162,19 @@ static int vf_uc_init_hw(struct xe_uc *uc)
> >
> > err = xe_gt_sriov_vf_connect(uc_to_gt(uc));
> > if (err)
> > - return err;
> > + goto err_out;
> >
> > uc->guc.submission_state.enabled = true;
> >
> > err = xe_gt_record_default_lrcs(uc_to_gt(uc));
> > if (err)
> > - return err;
> > + goto err_out;
> >
> > return 0;
> > +
> > +err_out:
> > + xe_guc_disable_communication(&uc->guc);
> > + return err;
> > }
> >
> > /*
> > @@ -201,15 +206,15 @@ int xe_uc_init_hw(struct xe_uc *uc)
> >
> > ret = xe_gt_record_default_lrcs(uc_to_gt(uc));
> > if (ret)
> > - return ret;
> > + goto err_out;
> >
> > ret = xe_guc_post_load_init(&uc->guc);
> > if (ret)
> > - return ret;
> > + goto err_out;
> >
> > ret = xe_guc_pc_start(&uc->guc.pc);
> > if (ret)
> > - return ret;
> > + goto err_out;
> >
> > xe_guc_engine_activity_enable_stats(&uc->guc);
> >
> > @@ -221,6 +226,10 @@ int xe_uc_init_hw(struct xe_uc *uc)
> > xe_gsc_load_start(&uc->gsc);
> >
> > return 0;
> > +
> > +err_out:
> > + xe_guc_disable_communication(&uc->guc);
> > + return ret;
> > }
> >
> > int xe_uc_fini_hw(struct xe_uc *uc)
>
> what about doing similar cleanup in xe_guc_min_load_for_hwconfig() where
> we also have unbalanced xe_guc_enable_communication() ?
>
I don't think it's necessary there, as xe_guc_enable_communication is the last function run in
xe_guc_min_load_for_hwconfig.
If it fails, then the GuC CT was never enabled, so it doesn't need to be disabled. And if it succeeds,
then I think the rest of the Xe micro controller hardware initialization will have succeeded as well,
making it unnecessary to disable the GuC CT afterwards as that component at least should be
functioning properly.
Though, maybe we need it added to vf_guc_min_load_for_hwconfig?
-Jonathan Cavitt
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error.
2025-06-24 22:17 ` Cavitt, Jonathan
@ 2025-06-30 18:52 ` Dong, Zhanjun
0 siblings, 0 replies; 8+ messages in thread
From: Dong, Zhanjun @ 2025-06-30 18:52 UTC (permalink / raw)
To: Cavitt, Jonathan, Wajdeczko, Michal,
intel-xe@lists.freedesktop.org
Cc: Summers, Stuart
Please see my comments inline below.
Regards,
Zhanjun Dong
On 2025-06-24 6:17 p.m., Cavitt, Jonathan wrote:
> -----Original Message-----
> From: Wajdeczko, Michal <Michal.Wajdeczko@intel.com>
> Sent: Tuesday, June 24, 2025 1:15 PM
> To: Dong, Zhanjun <zhanjun.dong@intel.com>; intel-xe@lists.freedesktop.org
> Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Summers, Stuart <stuart.summers@intel.com>
> Subject: Re: [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error.
>>
>> On 24.06.2025 03:17, Zhanjun Dong wrote:
>>> Disable GuC communication on Xe micro controller hardware initialization
>>> error.
>>>
>>> Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
>>> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
>>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4917
>>>
>>> ---
>>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>> Cc: Stuart Summers <stuart.summers@intel.com>
>>> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
>>>
>>> Change list:
>>> v6: Skip disable ct on xe_guc_enable_communication error
>>> v5: Set wedge is excessive action, revert back to disable ct
>>> v4: Fix typo and add new line
>>> v3: v2 CI re-run
>>> v2: Remove unnecessary jump to err-out
>>> Drop disable ct, switch to set wedge
>>> ---
>>> drivers/gpu/drm/xe/xe_guc.c | 5 +++++
>>> drivers/gpu/drm/xe/xe_guc.h | 1 +
>>> drivers/gpu/drm/xe/xe_uc.c | 19 ++++++++++++++-----
>>> 3 files changed, 20 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
>>> index 209e5d53c290..9d7175b16cc7 100644
>>> --- a/drivers/gpu/drm/xe/xe_guc.c
>>> +++ b/drivers/gpu/drm/xe/xe_guc.c
>>> @@ -1230,6 +1230,11 @@ int xe_guc_enable_communication(struct xe_guc *guc)
>>> return 0;
>>> }
>>>
>>
>> each new public function needs to have a proper kernel-doc
Will add in next rev.
>>
>>> +void xe_guc_disable_communication(struct xe_guc *guc)
>>> +{
>>> + xe_guc_ct_disable(&guc->ct);
>>> +}
>>> +
>>> int xe_guc_suspend(struct xe_guc *guc)
>>> {
>>> struct xe_gt *gt = guc_to_gt(guc);
>>> diff --git a/drivers/gpu/drm/xe/xe_guc.h b/drivers/gpu/drm/xe/xe_guc.h
>>> index 58338be44558..285c19929f8c 100644
>>> --- a/drivers/gpu/drm/xe/xe_guc.h
>>> +++ b/drivers/gpu/drm/xe/xe_guc.h
>>> @@ -33,6 +33,7 @@ int xe_guc_reset(struct xe_guc *guc);
>>> int xe_guc_upload(struct xe_guc *guc);
>>> int xe_guc_min_load_for_hwconfig(struct xe_guc *guc);
>>> int xe_guc_enable_communication(struct xe_guc *guc);
>>> +void xe_guc_disable_communication(struct xe_guc *guc);
>>> int xe_guc_suspend(struct xe_guc *guc);
>>> void xe_guc_notify(struct xe_guc *guc);
>>> int xe_guc_auth_huc(struct xe_guc *guc, u32 rsa_addr);
>>> diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c
>>> index 3a8751a8b92d..d74bfc7a85d1 100644
>>> --- a/drivers/gpu/drm/xe/xe_uc.c
>>> +++ b/drivers/gpu/drm/xe/xe_uc.c
>>> @@ -13,6 +13,7 @@
>>> #include "xe_gt_printk.h"
>>> #include "xe_gt_sriov_vf.h"
>>> #include "xe_guc.h"
>>> +#include "xe_guc_ct.h"
>>> #include "xe_guc_pc.h"
>>> #include "xe_guc_engine_activity.h"
>>> #include "xe_huc.h"
>>> @@ -161,15 +162,19 @@ static int vf_uc_init_hw(struct xe_uc *uc)
>>>
>>> err = xe_gt_sriov_vf_connect(uc_to_gt(uc));
>>> if (err)
>>> - return err;
>>> + goto err_out;
>>>
>>> uc->guc.submission_state.enabled = true;
>>>
>>> err = xe_gt_record_default_lrcs(uc_to_gt(uc));
>>> if (err)
>>> - return err;
>>> + goto err_out;
>>>
>>> return 0;
>>> +
>>> +err_out:
>>> + xe_guc_disable_communication(&uc->guc);
>>> + return err;
>>> }
>>>
>>> /*
>>> @@ -201,15 +206,15 @@ int xe_uc_init_hw(struct xe_uc *uc)
>>>
>>> ret = xe_gt_record_default_lrcs(uc_to_gt(uc));
>>> if (ret)
>>> - return ret;
>>> + goto err_out;
>>>
>>> ret = xe_guc_post_load_init(&uc->guc);
>>> if (ret)
>>> - return ret;
>>> + goto err_out;
>>>
>>> ret = xe_guc_pc_start(&uc->guc.pc);
>>> if (ret)
>>> - return ret;
>>> + goto err_out;
>>>
>>> xe_guc_engine_activity_enable_stats(&uc->guc);
>>>
>>> @@ -221,6 +226,10 @@ int xe_uc_init_hw(struct xe_uc *uc)
>>> xe_gsc_load_start(&uc->gsc);
>>>
>>> return 0;
>>> +
>>> +err_out:
>>> + xe_guc_disable_communication(&uc->guc);
>>> + return ret;
>>> }
>>>
>>> int xe_uc_fini_hw(struct xe_uc *uc)
>>
>> what about doing similar cleanup in xe_guc_min_load_for_hwconfig() where
>> we also have unbalanced xe_guc_enable_communication() ?
>>
>
> I don't think it's necessary there, as xe_guc_enable_communication is the last function run in
> xe_guc_min_load_for_hwconfig.
> If it fails, then the GuC CT was never enabled, so it doesn't need to be disabled. And if it succeeds,
> then I think the rest of the Xe micro controller hardware initialization will have succeeded as well,
> making it unnecessary to disable the GuC CT afterwards as that component at least should be
> functioning properly.
> Though, maybe we need it added to vf_guc_min_load_for_hwconfig?
> -Jonathan Cavitt
Thanks Jonathan for detailed analysis, I agree it is not neceesary in
xe_guc_min_load_for_hwconfig.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-06-30 18:52 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-24 1:17 [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Zhanjun Dong
2025-06-24 1:24 ` ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3) Patchwork
2025-06-24 5:22 ` ✓ CI.KUnit: success for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4) Patchwork
2025-06-24 6:50 ` ✗ Xe.CI.Full: failure for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev3) Patchwork
2025-06-24 7:31 ` ✗ Xe.CI.Full: failure for drm/xe/uc: Disable GuC communication on hardware initialization error. (rev4) Patchwork
2025-06-24 20:15 ` [PATCH v6] drm/xe/uc: Disable GuC communication on hardware initialization error Michal Wajdeczko
2025-06-24 22:17 ` Cavitt, Jonathan
2025-06-30 18:52 ` Dong, Zhanjun
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox