* [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
@ 2025-06-13 21:47 Matt Roper
2025-06-13 21:47 ` [PATCH 2/2] drm/xe/pat: Consolidate PAT programming logic for pre-Xe2 and post-Xe2 Matt Roper
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Matt Roper @ 2025-06-13 21:47 UTC (permalink / raw)
To: intel-xe; +Cc: tejas.upadhyay, Matt Roper
Decide whether programming of the special ATS and PTA PAT entries is
necessary (and which entries should be programmed) during early software
initialization rather than hardcoding this into the 'program' functions.
Future platforms may want to re-use the same functions but utilize
different special entry values. Consolidating all of the decisions
into one place keeps things simple.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_device_types.h | 4 ++++
drivers/gpu/drm/xe/xe_pat.c | 21 +++++++++++++++------
2 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index ac27389ccb8b..003afb279a5e 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -499,6 +499,10 @@ struct xe_device {
const struct xe_pat_table_entry *table;
/** @pat.n_entries: Number of PAT entries */
int n_entries;
+ /** @pat.ats_entry: PAT entry for PCIe ATS responses */
+ const struct xe_pat_table_entry *pat_ats;
+ /** @pat.pta_entry: PAT entry for page table accesses */
+ const struct xe_pat_table_entry *pat_pta;
u32 idx[__XE_CACHE_LEVEL_COUNT];
} pat;
diff --git a/drivers/gpu/drm/xe/xe_pat.c b/drivers/gpu/drm/xe/xe_pat.c
index 38a6a49c1b2a..31663ead7822 100644
--- a/drivers/gpu/drm/xe/xe_pat.c
+++ b/drivers/gpu/drm/xe/xe_pat.c
@@ -307,21 +307,27 @@ static const struct xe_pat_ops xelpg_pat_ops = {
static void xe2lpg_program_pat(struct xe_gt *gt, const struct xe_pat_table_entry table[],
int n_entries)
{
+ struct xe_device *xe = gt_to_xe(gt);
+
program_pat_mcr(gt, table, n_entries);
- xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS), xe2_pat_ats.value);
- if (IS_DGFX(gt_to_xe(gt)))
- xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA), xe2_pat_pta.value);
+ if (xe->pat.pat_ats)
+ xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS), xe->pat.pat_ats->value);
+ if (xe->pat.pat_pta)
+ xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA), xe->pat.pat_pta->value);
}
static void xe2lpm_program_pat(struct xe_gt *gt, const struct xe_pat_table_entry table[],
int n_entries)
{
+ struct xe_device *xe = gt_to_xe(gt);
+
program_pat(gt, table, n_entries);
- xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS), xe2_pat_ats.value);
- if (IS_DGFX(gt_to_xe(gt)))
- xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe2_pat_pta.value);
+ if (xe->pat.pat_ats)
+ xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS), xe->pat.pat_ats->value);
+ if (xe->pat.pat_pta)
+ xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe->pat.pat_pta->value);
}
static void xe2_dump(struct xe_gt *gt, struct drm_printer *p)
@@ -386,6 +392,9 @@ void xe_pat_init_early(struct xe_device *xe)
if (GRAPHICS_VER(xe) == 30 || GRAPHICS_VER(xe) == 20) {
xe->pat.ops = &xe2_pat_ops;
xe->pat.table = xe2_pat_table;
+ xe->pat.pat_ats = &xe2_pat_ats;
+ if (IS_DGFX(xe))
+ xe->pat.pat_pta = &xe2_pat_pta;
/* Wa_16023588340. XXX: Should use XE_WA */
if (GRAPHICS_VERx100(xe) == 2001)
--
2.49.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/2] drm/xe/pat: Consolidate PAT programming logic for pre-Xe2 and post-Xe2
2025-06-13 21:47 [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Matt Roper
@ 2025-06-13 21:47 ` Matt Roper
2025-06-16 6:12 ` Upadhyay, Tejas
2025-06-14 1:03 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Matt Roper @ 2025-06-13 21:47 UTC (permalink / raw)
To: intel-xe; +Cc: tejas.upadhyay, Matt Roper
Now that the PAT settings for the new special entries introduced by Xe2
are decided during early software init and left NULL on platforms they
don't apply to, there's no need to keep separate programming functions
for pre-Xe2 and post-Xe2 platforms. Consolidate down to a single pair
of programming functions (mcr and non-mcr) that can be used on any
platform.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
drivers/gpu/drm/xe/xe_pat.c | 44 ++++++++++++++-----------------------
1 file changed, 16 insertions(+), 28 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_pat.c b/drivers/gpu/drm/xe/xe_pat.c
index 31663ead7822..2e7cb99ae87a 100644
--- a/drivers/gpu/drm/xe/xe_pat.c
+++ b/drivers/gpu/drm/xe/xe_pat.c
@@ -163,21 +163,35 @@ u16 xe_pat_index_get_coh_mode(struct xe_device *xe, u16 pat_index)
static void program_pat(struct xe_gt *gt, const struct xe_pat_table_entry table[],
int n_entries)
{
+ struct xe_device *xe = gt_to_xe(gt);
+
for (int i = 0; i < n_entries; i++) {
struct xe_reg reg = XE_REG(_PAT_INDEX(i));
xe_mmio_write32(>->mmio, reg, table[i].value);
}
+
+ if (xe->pat.pat_ats)
+ xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS), xe->pat.pat_ats->value);
+ if (xe->pat.pat_pta)
+ xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe->pat.pat_pta->value);
}
static void program_pat_mcr(struct xe_gt *gt, const struct xe_pat_table_entry table[],
int n_entries)
{
+ struct xe_device *xe = gt_to_xe(gt);
+
for (int i = 0; i < n_entries; i++) {
struct xe_reg_mcr reg_mcr = XE_REG_MCR(_PAT_INDEX(i));
xe_gt_mcr_multicast_write(gt, reg_mcr, table[i].value);
}
+
+ if (xe->pat.pat_ats)
+ xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS), xe->pat.pat_ats->value);
+ if (xe->pat.pat_pta)
+ xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA), xe->pat.pat_pta->value);
}
static void xelp_dump(struct xe_gt *gt, struct drm_printer *p)
@@ -304,32 +318,6 @@ static const struct xe_pat_ops xelpg_pat_ops = {
.dump = xelpg_dump,
};
-static void xe2lpg_program_pat(struct xe_gt *gt, const struct xe_pat_table_entry table[],
- int n_entries)
-{
- struct xe_device *xe = gt_to_xe(gt);
-
- program_pat_mcr(gt, table, n_entries);
-
- if (xe->pat.pat_ats)
- xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS), xe->pat.pat_ats->value);
- if (xe->pat.pat_pta)
- xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA), xe->pat.pat_pta->value);
-}
-
-static void xe2lpm_program_pat(struct xe_gt *gt, const struct xe_pat_table_entry table[],
- int n_entries)
-{
- struct xe_device *xe = gt_to_xe(gt);
-
- program_pat(gt, table, n_entries);
-
- if (xe->pat.pat_ats)
- xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS), xe->pat.pat_ats->value);
- if (xe->pat.pat_pta)
- xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe->pat.pat_pta->value);
-}
-
static void xe2_dump(struct xe_gt *gt, struct drm_printer *p)
{
struct xe_device *xe = gt_to_xe(gt);
@@ -382,8 +370,8 @@ static void xe2_dump(struct xe_gt *gt, struct drm_printer *p)
}
static const struct xe_pat_ops xe2_pat_ops = {
- .program_graphics = xe2lpg_program_pat,
- .program_media = xe2lpm_program_pat,
+ .program_graphics = program_pat_mcr,
+ .program_media = program_pat,
.dump = xe2_dump,
};
--
2.49.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ CI.KUnit: success for series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
2025-06-13 21:47 [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Matt Roper
2025-06-13 21:47 ` [PATCH 2/2] drm/xe/pat: Consolidate PAT programming logic for pre-Xe2 and post-Xe2 Matt Roper
@ 2025-06-14 1:03 ` Patchwork
2025-06-14 1:40 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-14 1:03 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
== Series Details ==
Series: series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
URL : https://patchwork.freedesktop.org/series/150262/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:02:02] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:02:06] 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:02:33] Starting KUnit Kernel (1/1)...
[01:02:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:02:33] ================== guc_buf (11 subtests) ===================
[01:02:33] [PASSED] test_smallest
[01:02:33] [PASSED] test_largest
[01:02:33] [PASSED] test_granular
[01:02:33] [PASSED] test_unique
[01:02:33] [PASSED] test_overlap
[01:02:33] [PASSED] test_reusable
[01:02:33] [PASSED] test_too_big
[01:02:33] [PASSED] test_flush
[01:02:33] [PASSED] test_lookup
[01:02:33] [PASSED] test_data
[01:02:33] [PASSED] test_class
[01:02:33] ===================== [PASSED] guc_buf =====================
[01:02:33] =================== guc_dbm (7 subtests) ===================
[01:02:33] [PASSED] test_empty
[01:02:33] [PASSED] test_default
[01:02:33] ======================== test_size ========================
[01:02:33] [PASSED] 4
[01:02:33] [PASSED] 8
[01:02:33] [PASSED] 32
[01:02:33] [PASSED] 256
[01:02:33] ==================== [PASSED] test_size ====================
[01:02:33] ======================= test_reuse ========================
[01:02:33] [PASSED] 4
[01:02:33] [PASSED] 8
[01:02:33] [PASSED] 32
[01:02:33] [PASSED] 256
[01:02:33] =================== [PASSED] test_reuse ====================
[01:02:33] =================== test_range_overlap ====================
[01:02:33] [PASSED] 4
[01:02:33] [PASSED] 8
[01:02:33] [PASSED] 32
[01:02:33] [PASSED] 256
[01:02:33] =============== [PASSED] test_range_overlap ================
[01:02:33] =================== test_range_compact ====================
[01:02:33] [PASSED] 4
[01:02:33] [PASSED] 8
[01:02:33] [PASSED] 32
[01:02:33] [PASSED] 256
[01:02:33] =============== [PASSED] test_range_compact ================
[01:02:33] ==================== test_range_spare =====================
[01:02:33] [PASSED] 4
[01:02:33] [PASSED] 8
[01:02:33] [PASSED] 32
[01:02:33] [PASSED] 256
[01:02:33] ================ [PASSED] test_range_spare =================
[01:02:33] ===================== [PASSED] guc_dbm =====================
[01:02:33] =================== guc_idm (6 subtests) ===================
[01:02:33] [PASSED] bad_init
[01:02:33] [PASSED] no_init
[01:02:33] [PASSED] init_fini
[01:02:33] [PASSED] check_used
[01:02:33] [PASSED] check_quota
[01:02:33] [PASSED] check_all
[01:02:33] ===================== [PASSED] guc_idm =====================
[01:02:33] ================== no_relay (3 subtests) ===================
[01:02:33] [PASSED] xe_drops_guc2pf_if_not_ready
[01:02:33] [PASSED] xe_drops_guc2vf_if_not_ready
[01:02:33] [PASSED] xe_rejects_send_if_not_ready
[01:02:33] ==================== [PASSED] no_relay =====================
[01:02:33] ================== pf_relay (14 subtests) ==================
[01:02:33] [PASSED] pf_rejects_guc2pf_too_short
[01:02:33] [PASSED] pf_rejects_guc2pf_too_long
[01:02:33] [PASSED] pf_rejects_guc2pf_no_payload
[01:02:33] [PASSED] pf_fails_no_payload
[01:02:33] [PASSED] pf_fails_bad_origin
[01:02:33] [PASSED] pf_fails_bad_type
[01:02:33] [PASSED] pf_txn_reports_error
[01:02:33] [PASSED] pf_txn_sends_pf2guc
[01:02:33] [PASSED] pf_sends_pf2guc
[01:02:33] [SKIPPED] pf_loopback_nop
[01:02:33] [SKIPPED] pf_loopback_echo
[01:02:33] [SKIPPED] pf_loopback_fail
[01:02:33] [SKIPPED] pf_loopback_busy
[01:02:33] [SKIPPED] pf_loopback_retry
[01:02:33] ==================== [PASSED] pf_relay =====================
[01:02:33] ================== vf_relay (3 subtests) ===================
[01:02:33] [PASSED] vf_rejects_guc2vf_too_short
[01:02:33] [PASSED] vf_rejects_guc2vf_too_long
[01:02:33] [PASSED] vf_rejects_guc2vf_no_payload
[01:02:33] ==================== [PASSED] vf_relay =====================
[01:02:33] ================= pf_service (11 subtests) =================
[01:02:33] [PASSED] pf_negotiate_any
[01:02:33] [PASSED] pf_negotiate_base_match
[01:02:33] [PASSED] pf_negotiate_base_newer
[01:02:33] [PASSED] pf_negotiate_base_next
[01:02:33] [SKIPPED] pf_negotiate_base_older
[01:02:33] [PASSED] pf_negotiate_base_prev
[01:02:33] [PASSED] pf_negotiate_latest_match
[01:02:33] [PASSED] pf_negotiate_latest_newer
[01:02:33] [PASSED] pf_negotiate_latest_next
[01:02:33] [SKIPPED] pf_negotiate_latest_older
[01:02:33] [SKIPPED] pf_negotiate_latest_prev
[01:02:33] =================== [PASSED] pf_service ====================
[01:02:33] ===================== lmtt (1 subtest) =====================
[01:02:33] ======================== test_ops =========================
[01:02:33] [PASSED] 2-level
[01:02:33] [PASSED] multi-level
[01:02:33] ==================== [PASSED] test_ops =====================
[01:02:33] ====================== [PASSED] lmtt =======================
[01:02:33] =================== xe_mocs (2 subtests) ===================
[01:02:33] ================ xe_live_mocs_kernel_kunit ================
[01:02:33] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:02:33] ================ xe_live_mocs_reset_kunit =================
[01:02:33] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:02:33] ==================== [SKIPPED] xe_mocs =====================
[01:02:33] ================= xe_migrate (2 subtests) ==================
[01:02:33] ================= xe_migrate_sanity_kunit =================
[01:02:33] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:02:33] ================== xe_validate_ccs_kunit ==================
[01:02:33] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:02:33] =================== [SKIPPED] xe_migrate ===================
[01:02:33] ================== xe_dma_buf (1 subtest) ==================
[01:02:33] ==================== xe_dma_buf_kunit =====================
[01:02:33] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:02:33] =================== [SKIPPED] xe_dma_buf ===================
[01:02:33] ================= xe_bo_shrink (1 subtest) =================
[01:02:33] =================== xe_bo_shrink_kunit ====================
[01:02:33] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:02:33] ================== [SKIPPED] xe_bo_shrink ==================
[01:02:33] ==================== xe_bo (2 subtests) ====================
[01:02:33] ================== xe_ccs_migrate_kunit ===================
[01:02:33] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:02:33] ==================== xe_bo_evict_kunit ====================
[01:02:33] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:02:33] ===================== [SKIPPED] xe_bo ======================
[01:02:33] ==================== args (11 subtests) ====================
[01:02:33] [PASSED] count_args_test
[01:02:33] [PASSED] call_args_example
[01:02:33] [PASSED] call_args_test
[01:02:33] [PASSED] drop_first_arg_example
[01:02:33] [PASSED] drop_first_arg_test
[01:02:33] [PASSED] first_arg_example
[01:02:33] [PASSED] first_arg_test
[01:02:33] [PASSED] last_arg_example
[01:02:33] [PASSED] last_arg_test
[01:02:33] [PASSED] pick_arg_example
[01:02:33] [PASSED] sep_comma_example
[01:02:33] ====================== [PASSED] args =======================
[01:02:33] =================== xe_pci (2 subtests) ====================
[01:02:33] [PASSED] xe_gmdid_graphics_ip
[01:02:33] [PASSED] xe_gmdid_media_ip
[01:02:33] ===================== [PASSED] xe_pci ======================
[01:02:33] =================== xe_rtp (2 subtests) ====================
[01:02:33] =============== xe_rtp_process_to_sr_tests ================
[01:02:33] [PASSED] coalesce-same-reg
[01:02:33] [PASSED] no-match-no-add
[01:02:33] [PASSED] match-or
[01:02:33] [PASSED] match-or-xfail
[01:02:33] [PASSED] no-match-no-add-multiple-rules
[01:02:33] [PASSED] two-regs-two-entries
[01:02:33] [PASSED] clr-one-set-other
[01:02:33] [PASSED] set-field
[01:02:33] [PASSED] conflict-duplicate
[01:02:33] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[01:02:33] [PASSED] conflict-reg-type
[01:02:33] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:02:33] ================== xe_rtp_process_tests ===================
[01:02:33] [PASSED] active1
[01:02:33] [PASSED] active2
[01:02:33] [PASSED] active-inactive
[01:02:33] [PASSED] inactive-active
[01:02:33] [PASSED] inactive-1st_or_active-inactive
[01:02:33] [PASSED] inactive-2nd_or_active-inactive
[01:02:33] [PASSED] inactive-last_or_active-inactive
[01:02:33] [PASSED] inactive-no_or_active-inactive
[01:02:33] ============== [PASSED] xe_rtp_process_tests ===============
[01:02:33] ===================== [PASSED] xe_rtp ======================
[01:02:33] ==================== xe_wa (1 subtest) =====================
[01:02:33] ======================== xe_wa_gt =========================
[01:02:33] [PASSED] TIGERLAKE (B0)
[01:02:33] [PASSED] DG1 (A0)
[01:02:33] [PASSED] DG1 (B0)
[01:02:33] [PASSED] ALDERLAKE_S (A0)
[01:02:33] [PASSED] ALDERLAKE_S (B0)
[01:02:33] [PASSED] ALDERLAKE_S (C0)
[01:02:33] [PASSED] ALDERLAKE_S (D0)
[01:02:33] [PASSED] ALDERLAKE_P (A0)
[01:02:33] [PASSED] ALDERLAKE_P (B0)
[01:02:33] [PASSED] ALDERLAKE_P (C0)
[01:02:33] [PASSED] ALDERLAKE_S_RPLS (D0)
[01:02:33] [PASSED] ALDERLAKE_P_RPLU (E0)
[01:02:33] [PASSED] DG2_G10 (C0)
[01:02:33] [PASSED] DG2_G11 (B1)
[01:02:33] [PASSED] DG2_G12 (A1)
[01:02:33] [PASSED] METEORLAKE (g:A0, m:A0)
[01:02:33] [PASSED] METEORLAKE (g:A0, m:A0)
[01:02:33] [PASSED] METEORLAKE (g:A0, m:A0)
[01:02:33] [PASSED] LUNARLAKE (g:A0, m:A0)
[01:02:33] [PASSED] LUNARLAKE (g:B0, m:A0)
[01:02:33] [PASSED] BATTLEMAGE (g:A0, m:A1)
[01:02:33] ==================== [PASSED] xe_wa_gt =====================
[01:02:33] ====================== [PASSED] xe_wa ======================
[01:02:33] ============================================================
[01:02:33] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[01:02:33] Elapsed time: 31.620s total, 4.168s configuring, 27.135s building, 0.303s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:02:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:02:35] 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:02:57] Starting KUnit Kernel (1/1)...
[01:02:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:02:57] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:02:57] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:02:57] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:02:57] =========== drm_validate_clone_mode (2 subtests) ===========
[01:02:57] ============== drm_test_check_in_clone_mode ===============
[01:02:57] [PASSED] in_clone_mode
[01:02:57] [PASSED] not_in_clone_mode
[01:02:57] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:02:57] =============== drm_test_check_valid_clones ===============
[01:02:57] [PASSED] not_in_clone_mode
[01:02:57] [PASSED] valid_clone
[01:02:57] [PASSED] invalid_clone
[01:02:57] =========== [PASSED] drm_test_check_valid_clones ===========
[01:02:57] ============= [PASSED] drm_validate_clone_mode =============
[01:02:57] ============= drm_validate_modeset (1 subtest) =============
[01:02:57] [PASSED] drm_test_check_connector_changed_modeset
[01:02:57] ============== [PASSED] drm_validate_modeset ===============
[01:02:57] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:02:57] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:02:57] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:02:57] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:02:57] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:02:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:02:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:02:57] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:02:57] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:02:57] ============== drm_bridge_alloc (2 subtests) ===============
[01:02:57] [PASSED] drm_test_drm_bridge_alloc_basic
[01:02:57] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:02:57] ================ [PASSED] drm_bridge_alloc =================
[01:02:57] ================== drm_buddy (7 subtests) ==================
[01:02:57] [PASSED] drm_test_buddy_alloc_limit
[01:02:57] [PASSED] drm_test_buddy_alloc_optimistic
[01:02:57] [PASSED] drm_test_buddy_alloc_pessimistic
[01:02:57] [PASSED] drm_test_buddy_alloc_pathological
[01:02:57] [PASSED] drm_test_buddy_alloc_contiguous
[01:02:57] [PASSED] drm_test_buddy_alloc_clear
[01:02:57] [PASSED] drm_test_buddy_alloc_range_bias
[01:02:57] ==================== [PASSED] drm_buddy ====================
[01:02:57] ============= drm_cmdline_parser (40 subtests) =============
[01:02:57] [PASSED] drm_test_cmdline_force_d_only
[01:02:57] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:02:57] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:02:57] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:02:57] [PASSED] drm_test_cmdline_force_e_only
[01:02:57] [PASSED] drm_test_cmdline_res
[01:02:57] [PASSED] drm_test_cmdline_res_vesa
[01:02:57] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:02:57] [PASSED] drm_test_cmdline_res_rblank
[01:02:57] [PASSED] drm_test_cmdline_res_bpp
[01:02:57] [PASSED] drm_test_cmdline_res_refresh
[01:02:57] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:02:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:02:57] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:02:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:02:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:02:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:02:57] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:02:57] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:02:57] [PASSED] drm_test_cmdline_res_margins_force_on
[01:02:57] [PASSED] drm_test_cmdline_res_vesa_margins
[01:02:57] [PASSED] drm_test_cmdline_name
[01:02:57] [PASSED] drm_test_cmdline_name_bpp
[01:02:57] [PASSED] drm_test_cmdline_name_option
[01:02:57] [PASSED] drm_test_cmdline_name_bpp_option
[01:02:57] [PASSED] drm_test_cmdline_rotate_0
[01:02:57] [PASSED] drm_test_cmdline_rotate_90
[01:02:57] [PASSED] drm_test_cmdline_rotate_180
[01:02:57] [PASSED] drm_test_cmdline_rotate_270
[01:02:57] [PASSED] drm_test_cmdline_hmirror
[01:02:57] [PASSED] drm_test_cmdline_vmirror
[01:02:57] [PASSED] drm_test_cmdline_margin_options
[01:02:57] [PASSED] drm_test_cmdline_multiple_options
[01:02:57] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:02:57] [PASSED] drm_test_cmdline_extra_and_option
[01:02:57] [PASSED] drm_test_cmdline_freestanding_options
[01:02:57] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:02:57] [PASSED] drm_test_cmdline_panel_orientation
[01:02:57] ================ drm_test_cmdline_invalid =================
[01:02:57] [PASSED] margin_only
[01:02:57] [PASSED] interlace_only
[01:02:57] [PASSED] res_missing_x
[01:02:57] [PASSED] res_missing_y
[01:02:57] [PASSED] res_bad_y
[01:02:57] [PASSED] res_missing_y_bpp
[01:02:57] [PASSED] res_bad_bpp
[01:02:57] [PASSED] res_bad_refresh
[01:02:57] [PASSED] res_bpp_refresh_force_on_off
[01:02:57] [PASSED] res_invalid_mode
[01:02:57] [PASSED] res_bpp_wrong_place_mode
[01:02:57] [PASSED] name_bpp_refresh
[01:02:57] [PASSED] name_refresh
[01:02:57] [PASSED] name_refresh_wrong_mode
[01:02:57] [PASSED] name_refresh_invalid_mode
[01:02:57] [PASSED] rotate_multiple
[01:02:57] [PASSED] rotate_invalid_val
[01:02:57] [PASSED] rotate_truncated
[01:02:57] [PASSED] invalid_option
[01:02:57] [PASSED] invalid_tv_option
[01:02:57] [PASSED] truncated_tv_option
[01:02:57] ============ [PASSED] drm_test_cmdline_invalid =============
[01:02:57] =============== drm_test_cmdline_tv_options ===============
[01:02:57] [PASSED] NTSC
[01:02:57] [PASSED] NTSC_443
[01:02:57] [PASSED] NTSC_J
[01:02:57] [PASSED] PAL
[01:02:57] [PASSED] PAL_M
[01:02:57] [PASSED] PAL_N
[01:02:57] [PASSED] SECAM
[01:02:57] [PASSED] MONO_525
[01:02:57] [PASSED] MONO_625
[01:02:57] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:02:57] =============== [PASSED] drm_cmdline_parser ================
[01:02:57] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:02:57] [PASSED] drm_test_connector_hdmi_init_valid
[01:02:57] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:02:57] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:02:57] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:02:57] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:02:57] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:02:57] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:02:57] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:02:57] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:02:57] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:02:57] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:02:57] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:02:57] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:02:57] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:02:57] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:02:57] [PASSED] drm_test_connector_hdmi_init_null_product
[01:02:57] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:02:57] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:02:57] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:02:57] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:02:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:02:57] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:02:57] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:02:57] ========= drm_test_connector_hdmi_init_type_valid =========
[01:02:57] [PASSED] HDMI-A
[01:02:57] [PASSED] HDMI-B
[01:02:57] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:02:57] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:02:57] [PASSED] Unknown
[01:02:57] [PASSED] VGA
[01:02:57] [PASSED] DVI-I
[01:02:57] [PASSED] DVI-D
[01:02:57] [PASSED] DVI-A
[01:02:57] [PASSED] Composite
[01:02:57] [PASSED] SVIDEO
[01:02:57] [PASSED] LVDS
[01:02:57] [PASSED] Component
[01:02:57] [PASSED] DIN
[01:02:57] [PASSED] DP
[01:02:57] [PASSED] TV
[01:02:57] [PASSED] eDP
[01:02:57] [PASSED] Virtual
[01:02:57] [PASSED] DSI
[01:02:57] [PASSED] DPI
[01:02:57] [PASSED] Writeback
[01:02:57] [PASSED] SPI
[01:02:57] [PASSED] USB
[01:02:57] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:02:57] ============ [PASSED] drmm_connector_hdmi_init =============
[01:02:57] ============= drmm_connector_init (3 subtests) =============
[01:02:57] [PASSED] drm_test_drmm_connector_init
[01:02:57] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:02:57] ========= drm_test_drmm_connector_init_type_valid =========
[01:02:57] [PASSED] Unknown
[01:02:57] [PASSED] VGA
[01:02:57] [PASSED] DVI-I
[01:02:57] [PASSED] DVI-D
[01:02:57] [PASSED] DVI-A
[01:02:57] [PASSED] Composite
[01:02:57] [PASSED] SVIDEO
[01:02:57] [PASSED] LVDS
[01:02:57] [PASSED] Component
[01:02:57] [PASSED] DIN
[01:02:57] [PASSED] DP
[01:02:57] [PASSED] HDMI-A
[01:02:57] [PASSED] HDMI-B
[01:02:57] [PASSED] TV
[01:02:57] [PASSED] eDP
[01:02:57] [PASSED] Virtual
[01:02:57] [PASSED] DSI
[01:02:57] [PASSED] DPI
[01:02:57] [PASSED] Writeback
[01:02:57] [PASSED] SPI
[01:02:57] [PASSED] USB
[01:02:57] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:02:57] =============== [PASSED] drmm_connector_init ===============
[01:02:57] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_init
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:02:57] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:02:57] [PASSED] Unknown
[01:02:57] [PASSED] VGA
[01:02:57] [PASSED] DVI-I
[01:02:57] [PASSED] DVI-D
[01:02:57] [PASSED] DVI-A
[01:02:57] [PASSED] Composite
[01:02:57] [PASSED] SVIDEO
[01:02:57] [PASSED] LVDS
[01:02:57] [PASSED] Component
[01:02:57] [PASSED] DIN
[01:02:57] [PASSED] DP
[01:02:57] [PASSED] HDMI-A
[01:02:57] [PASSED] HDMI-B
[01:02:57] [PASSED] TV
[01:02:57] [PASSED] eDP
[01:02:57] [PASSED] Virtual
[01:02:57] [PASSED] DSI
[01:02:57] [PASSED] DPI
[01:02:57] [PASSED] Writeback
[01:02:57] [PASSED] SPI
[01:02:57] [PASSED] USB
[01:02:57] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:02:57] ======== drm_test_drm_connector_dynamic_init_name =========
[01:02:57] [PASSED] Unknown
[01:02:57] [PASSED] VGA
[01:02:57] [PASSED] DVI-I
[01:02:57] [PASSED] DVI-D
[01:02:57] [PASSED] DVI-A
[01:02:57] [PASSED] Composite
[01:02:57] [PASSED] SVIDEO
[01:02:57] [PASSED] LVDS
[01:02:57] [PASSED] Component
[01:02:57] [PASSED] DIN
[01:02:57] [PASSED] DP
[01:02:57] [PASSED] HDMI-A
[01:02:57] [PASSED] HDMI-B
[01:02:57] [PASSED] TV
[01:02:57] [PASSED] eDP
[01:02:57] [PASSED] Virtual
[01:02:57] [PASSED] DSI
[01:02:57] [PASSED] DPI
[01:02:57] [PASSED] Writeback
[01:02:57] [PASSED] SPI
[01:02:57] [PASSED] USB
[01:02:57] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:02:57] =========== [PASSED] drm_connector_dynamic_init ============
[01:02:57] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:02:57] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:02:57] ======= drm_connector_dynamic_register (7 subtests) ========
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:02:57] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:02:57] ========= [PASSED] drm_connector_dynamic_register ==========
[01:02:57] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:02:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:02:57] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:02:57] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:02:57] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:02:57] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:02:57] [PASSED] NTSC
[01:02:57] [PASSED] NTSC-443
[01:02:57] [PASSED] NTSC-J
[01:02:57] [PASSED] PAL
[01:02:57] [PASSED] PAL-M
[01:02:57] [PASSED] PAL-N
[01:02:57] [PASSED] SECAM
[01:02:57] [PASSED] Mono
[01:02:57] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:02:57] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:02:57] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:02:57] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:02:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:02:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:02:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:02:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:02:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:02:57] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:02:57] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:02:57] [PASSED] VIC 96
[01:02:57] [PASSED] VIC 97
[01:02:57] [PASSED] VIC 101
[01:02:57] [PASSED] VIC 102
[01:02:57] [PASSED] VIC 106
[01:02:57] [PASSED] VIC 107
[01:02:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:02:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:02:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:02:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:02:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:02:57] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:02:57] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:02:57] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:02:57] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:02:57] [PASSED] Automatic
[01:02:57] [PASSED] Full
[01:02:57] [PASSED] Limited 16:235
[01:02:57] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:02:57] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:02:57] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:02:57] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:02:57] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:02:57] [PASSED] RGB
[01:02:57] [PASSED] YUV 4:2:0
[01:02:57] [PASSED] YUV 4:2:2
[01:02:57] [PASSED] YUV 4:4:4
[01:02:57] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:02:57] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:02:57] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:02:57] ============= drm_damage_helper (21 subtests) ==============
[01:02:57] [PASSED] drm_test_damage_iter_no_damage
[01:02:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:02:57] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:02:57] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:02:57] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:02:57] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:02:57] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:02:57] [PASSED] drm_test_damage_iter_simple_damage
[01:02:57] [PASSED] drm_test_damage_iter_single_damage
[01:02:57] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:02:57] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:02:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:02:57] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:02:57] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:02:57] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:02:57] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:02:57] [PASSED] drm_test_damage_iter_damage
[01:02:57] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:02:57] [PASSED] drm_test_damage_iter_damage_one_outside
[01:02:57] [PASSED] drm_test_damage_iter_damage_src_moved
[01:02:57] [PASSED] drm_test_damage_iter_damage_not_visible
[01:02:57] ================ [PASSED] drm_damage_helper ================
[01:02:57] ============== drm_dp_mst_helper (3 subtests) ==============
[01:02:57] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:02:57] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:02:57] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:02:57] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:02:57] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:02:57] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:02:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:02:57] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:02:57] [PASSED] Link rate 2000000 lane count 4
[01:02:57] [PASSED] Link rate 2000000 lane count 2
[01:02:57] [PASSED] Link rate 2000000 lane count 1
[01:02:57] [PASSED] Link rate 1350000 lane count 4
[01:02:57] [PASSED] Link rate 1350000 lane count 2
[01:02:57] [PASSED] Link rate 1350000 lane count 1
[01:02:57] [PASSED] Link rate 1000000 lane count 4
[01:02:57] [PASSED] Link rate 1000000 lane count 2
[01:02:57] [PASSED] Link rate 1000000 lane count 1
[01:02:57] [PASSED] Link rate 810000 lane count 4
[01:02:57] [PASSED] Link rate 810000 lane count 2
[01:02:57] [PASSED] Link rate 810000 lane count 1
[01:02:57] [PASSED] Link rate 540000 lane count 4
[01:02:57] [PASSED] Link rate 540000 lane count 2
[01:02:57] [PASSED] Link rate 540000 lane count 1
[01:02:57] [PASSED] Link rate 270000 lane count 4
[01:02:57] [PASSED] Link rate 270000 lane count 2
[01:02:57] [PASSED] Link rate 270000 lane count 1
[01:02:57] [PASSED] Link rate 162000 lane count 4
[01:02:57] [PASSED] Link rate 162000 lane count 2
[01:02:57] [PASSED] Link rate 162000 lane count 1
[01:02:57] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:02:57] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:02:57] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:02:57] [PASSED] DP_POWER_UP_PHY with port number
[01:02:57] [PASSED] DP_POWER_DOWN_PHY with port number
[01:02:57] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:02:57] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:02:57] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:02:57] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:02:57] [PASSED] DP_QUERY_PAYLOAD with port number
[01:02:57] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:02:57] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:02:57] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:02:57] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:02:57] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:02:57] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:02:57] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:02:57] [PASSED] DP_REMOTE_I2C_READ with port number
[01:02:57] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:02:57] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:02:57] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:02:57] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:02:57] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:02:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:02:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:02:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:02:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:02:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:02:57] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:02:57] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:02:57] ================ [PASSED] drm_dp_mst_helper ================
[01:02:57] ================== drm_exec (7 subtests) ===================
[01:02:57] [PASSED] sanitycheck
[01:02:57] [PASSED] test_lock
[01:02:57] [PASSED] test_lock_unlock
[01:02:57] [PASSED] test_duplicates
[01:02:57] [PASSED] test_prepare
[01:02:57] [PASSED] test_prepare_array
[01:02:57] [PASSED] test_multiple_loops
[01:02:57] ==================== [PASSED] drm_exec =====================
[01:02:57] =========== drm_format_helper_test (18 subtests) ===========
[01:02:57] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:02:57] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:02:57] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:02:57] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:02:57] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:02:57] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:02:57] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:02:57] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:02:57] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:02:57] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:02:57] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:02:57] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:02:57] ==================== drm_test_fb_swab =====================
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ================ [PASSED] drm_test_fb_swab =================
[01:02:57] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:02:57] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:02:57] [PASSED] single_pixel_source_buffer
[01:02:57] [PASSED] single_pixel_clip_rectangle
[01:02:57] [PASSED] well_known_colors
[01:02:57] [PASSED] destination_pitch
[01:02:57] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:02:57] ================= drm_test_fb_clip_offset =================
[01:02:57] [PASSED] pass through
[01:02:57] [PASSED] horizontal offset
[01:02:57] [PASSED] vertical offset
[01:02:57] [PASSED] horizontal and vertical offset
[01:02:57] [PASSED] horizontal offset (custom pitch)
[01:02:57] [PASSED] vertical offset (custom pitch)
[01:02:57] [PASSED] horizontal and vertical offset (custom pitch)
[01:02:57] ============= [PASSED] drm_test_fb_clip_offset =============
[01:02:57] ============== drm_test_fb_build_fourcc_list ==============
[01:02:57] [PASSED] no native formats
[01:02:57] [PASSED] XRGB8888 as native format
[01:02:57] [PASSED] remove duplicates
[01:02:57] [PASSED] convert alpha formats
[01:02:57] [PASSED] random formats
[01:02:57] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[01:02:57] =================== drm_test_fb_memcpy ====================
[01:02:57] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:02:57] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:02:57] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:02:57] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:02:57] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:02:57] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:02:57] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:02:57] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:02:57] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:02:57] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:02:57] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:02:57] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:02:57] =============== [PASSED] drm_test_fb_memcpy ================
[01:02:57] ============= [PASSED] drm_format_helper_test ==============
[01:02:57] ================= drm_format (18 subtests) =================
[01:02:57] [PASSED] drm_test_format_block_width_invalid
[01:02:57] [PASSED] drm_test_format_block_width_one_plane
[01:02:57] [PASSED] drm_test_format_block_width_two_plane
[01:02:57] [PASSED] drm_test_format_block_width_three_plane
[01:02:57] [PASSED] drm_test_format_block_width_tiled
[01:02:57] [PASSED] drm_test_format_block_height_invalid
[01:02:57] [PASSED] drm_test_format_block_height_one_plane
[01:02:57] [PASSED] drm_test_format_block_height_two_plane
[01:02:57] [PASSED] drm_test_format_block_height_three_plane
[01:02:57] [PASSED] drm_test_format_block_height_tiled
[01:02:57] [PASSED] drm_test_format_min_pitch_invalid
[01:02:57] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:02:57] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:02:57] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:02:57] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:02:57] [PASSED] drm_test_format_min_pitch_two_plane
[01:02:57] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:02:57] [PASSED] drm_test_format_min_pitch_tiled
[01:02:57] =================== [PASSED] drm_format ====================
[01:02:57] ============== drm_framebuffer (10 subtests) ===============
[01:02:57] ========== drm_test_framebuffer_check_src_coords ==========
[01:02:57] [PASSED] Success: source fits into fb
[01:02:57] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:02:57] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:02:57] [PASSED] Fail: overflowing fb with source width
[01:02:57] [PASSED] Fail: overflowing fb with source height
[01:02:57] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:02:57] [PASSED] drm_test_framebuffer_cleanup
[01:02:57] =============== drm_test_framebuffer_create ===============
[01:02:57] [PASSED] ABGR8888 normal sizes
[01:02:57] [PASSED] ABGR8888 max sizes
[01:02:57] [PASSED] ABGR8888 pitch greater than min required
[01:02:57] [PASSED] ABGR8888 pitch less than min required
[01:02:57] [PASSED] ABGR8888 Invalid width
[01:02:57] [PASSED] ABGR8888 Invalid buffer handle
[01:02:57] [PASSED] No pixel format
[01:02:57] [PASSED] ABGR8888 Width 0
[01:02:57] [PASSED] ABGR8888 Height 0
[01:02:57] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:02:57] [PASSED] ABGR8888 Large buffer offset
[01:02:57] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:02:57] [PASSED] ABGR8888 Invalid flag
[01:02:57] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:02:57] [PASSED] ABGR8888 Valid buffer modifier
[01:02:57] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:02:57] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:02:57] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:02:57] [PASSED] NV12 Normal sizes
[01:02:57] [PASSED] NV12 Max sizes
[01:02:57] [PASSED] NV12 Invalid pitch
[01:02:57] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:02:57] [PASSED] NV12 different modifier per-plane
[01:02:57] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:02:57] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:02:57] [PASSED] NV12 Modifier for inexistent plane
[01:02:57] [PASSED] NV12 Handle for inexistent plane
[01:02:57] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:02:57] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:02:57] [PASSED] YVU420 Normal sizes
[01:02:57] [PASSED] YVU420 Max sizes
[01:02:57] [PASSED] YVU420 Invalid pitch
[01:02:57] [PASSED] YVU420 Different pitches
[01:02:57] [PASSED] YVU420 Different buffer offsets/pitches
[01:02:57] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:02:57] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:02:57] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:02:57] [PASSED] YVU420 Valid modifier
[01:02:57] [PASSED] YVU420 Different modifiers per plane
[01:02:57] [PASSED] YVU420 Modifier for inexistent plane
[01:02:57] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:02:57] [PASSED] X0L2 Normal sizes
[01:02:57] [PASSED] X0L2 Max sizes
[01:02:57] [PASSED] X0L2 Invalid pitch
[01:02:57] [PASSED] X0L2 Pitch greater than minimum required
[01:02:57] [PASSED] X0L2 Handle for inexistent plane
[01:02:57] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:02:57] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:02:57] [PASSED] X0L2 Valid modifier
[01:02:57] [PASSED] X0L2 Modifier for inexistent plane
[01:02:57] =========== [PASSED] drm_test_framebuffer_create ===========
[01:02:57] [PASSED] drm_test_framebuffer_free
[01:02:57] [PASSED] drm_test_framebuffer_init
[01:02:57] [PASSED] drm_test_framebuffer_init_bad_format
[01:02:57] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:02:57] [PASSED] drm_test_framebuffer_lookup
[01:02:57] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:02:57] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:02:57] ================= [PASSED] drm_framebuffer =================
[01:02:57] ================ drm_gem_shmem (8 subtests) ================
[01:02:57] [PASSED] drm_gem_shmem_test_obj_create
[01:02:57] [PASSED] drm_gem_shmem_test_obj_create_private
[01:02:57] [PASSED] drm_gem_shmem_test_pin_pages
[01:02:57] [PASSED] drm_gem_shmem_test_vmap
[01:02:57] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:02:57] [PASSED] drm_gem_shmem_test_get_sg_table
[01:02:57] [PASSED] drm_gem_shmem_test_madvise
[01:02:57] [PASSED] drm_gem_shmem_test_purge
[01:02:57] ================== [PASSED] drm_gem_shmem ==================
[01:02:57] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:02:57] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:02:57] [PASSED] Automatic
[01:02:57] [PASSED] Full
[01:02:57] [PASSED] Limited 16:235
[01:02:57] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:02:57] [PASSED] drm_test_check_disable_connector
[01:02:57] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:02:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:02:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:02:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:02:57] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:02:57] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:02:57] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:02:57] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:02:57] [PASSED] drm_test_check_output_bpc_dvi
[01:02:57] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:02:57] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:02:57] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:02:57] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:02:57] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:02:57] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:02:57] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:02:57] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:02:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:02:57] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:02:57] [PASSED] drm_test_check_broadcast_rgb_value
[01:02:57] [PASSED] drm_test_check_bpc_8_value
[01:02:57] [PASSED] drm_test_check_bpc_10_value
[01:02:57] [PASSED] drm_test_check_bpc_12_value
[01:02:57] [PASSED] drm_test_check_format_value
[01:02:57] [PASSED] drm_test_check_tmds_char_value
[01:02:57] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:02:57] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:02:57] [PASSED] drm_test_check_mode_valid
[01:02:57] [PASSED] drm_test_check_mode_valid_reject
[01:02:57] [PASSED] drm_test_check_mode_valid_reject_rate
[01:02:57] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:02:57] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:02:57] ================= drm_managed (2 subtests) =================
[01:02:57] [PASSED] drm_test_managed_release_action
[01:02:57] [PASSED] drm_test_managed_run_action
[01:02:57] =================== [PASSED] drm_managed ===================
[01:02:57] =================== drm_mm (6 subtests) ====================
[01:02:57] [PASSED] drm_test_mm_init
[01:02:57] [PASSED] drm_test_mm_debug
[01:02:57] [PASSED] drm_test_mm_align32
[01:02:57] [PASSED] drm_test_mm_align64
[01:02:57] [PASSED] drm_test_mm_lowest
[01:02:57] [PASSED] drm_test_mm_highest
[01:02:57] ===================== [PASSED] drm_mm ======================
[01:02:57] ============= drm_modes_analog_tv (5 subtests) =============
[01:02:57] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:02:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:02:57] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:02:57] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:02:57] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:02:57] =============== [PASSED] drm_modes_analog_tv ===============
[01:02:57] ============== drm_plane_helper (2 subtests) ===============
[01:02:57] =============== drm_test_check_plane_state ================
[01:02:57] [PASSED] clipping_simple
[01:02:57] [PASSED] clipping_rotate_reflect
[01:02:57] [PASSED] positioning_simple
[01:02:57] [PASSED] upscaling
[01:02:57] [PASSED] downscaling
[01:02:57] [PASSED] rounding1
[01:02:57] [PASSED] rounding2
[01:02:57] [PASSED] rounding3
[01:02:57] [PASSED] rounding4
[01:02:57] =========== [PASSED] drm_test_check_plane_state ============
[01:02:57] =========== drm_test_check_invalid_plane_state ============
[01:02:57] [PASSED] positioning_invalid
[01:02:57] [PASSED] upscaling_invalid
[01:02:57] [PASSED] downscaling_invalid
[01:02:57] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:02:57] ================ [PASSED] drm_plane_helper =================
[01:02:57] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:02:57] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:02:57] [PASSED] None
[01:02:57] [PASSED] PAL
[01:02:57] [PASSED] NTSC
[01:02:57] [PASSED] Both, NTSC Default
[01:02:57] [PASSED] Both, PAL Default
[01:02:57] [PASSED] Both, NTSC Default, with PAL on command-line
[01:02:57] [PASSED] Both, PAL Default, with NTSC on command-line
[01:02:57] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:02:57] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:02:57] ================== drm_rect (9 subtests) ===================
[01:02:57] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:02:57] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:02:57] [PASSED] drm_test_rect_clip_scaled_clipped
[01:02:57] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:02:57] ================= drm_test_rect_intersect =================
[01:02:57] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:02:57] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:02:57] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:02:57] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:02:57] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:02:57] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:02:57] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:02:57] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:02:57] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:02:57] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:02:57] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:02:57] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:02:57] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:02:57] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:02:57] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:02:57] ============= [PASSED] drm_test_rect_intersect =============
[01:02:57] ================ drm_test_rect_calc_hscale ================
[01:02:57] [PASSED] normal use
[01:02:57] [PASSED] out of max range
[01:02:57] [PASSED] out of min range
[01:02:57] [PASSED] zero dst
[01:02:57] [PASSED] negative src
[01:02:57] [PASSED] negative dst
[01:02:57] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:02:57] ================ drm_test_rect_calc_vscale ================
[01:02:57] [PASSED] normal use
[01:02:57] [PASSED] out of max range
[01:02:57] [PASSED] out of min range
[01:02:57] [PASSED] zero dst
[01:02:57] [PASSED] negative src
[01:02:57] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[01:02:57] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:02:57] ================== drm_test_rect_rotate ===================
[01:02:57] [PASSED] reflect-x
[01:02:57] [PASSED] reflect-y
[01:02:57] [PASSED] rotate-0
[01:02:57] [PASSED] rotate-90
[01:02:57] [PASSED] rotate-180
[01:02:57] [PASSED] rotate-270
[01:02:57] ============== [PASSED] drm_test_rect_rotate ===============
[01:02:57] ================ drm_test_rect_rotate_inv =================
[01:02:57] [PASSED] reflect-x
[01:02:57] [PASSED] reflect-y
[01:02:57] [PASSED] rotate-0
[01:02:57] [PASSED] rotate-90
[01:02:57] [PASSED] rotate-180
[01:02:57] [PASSED] rotate-270
[01:02:57] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:02:57] ==================== [PASSED] drm_rect =====================
[01:02:57] ============================================================
[01:02:57] Testing complete. Ran 616 tests: passed: 616
[01:02:57] Elapsed time: 23.695s total, 1.656s configuring, 21.868s building, 0.143s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:02:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:02:59] 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:03:07] Starting KUnit Kernel (1/1)...
[01:03:07] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:03:07] ================= ttm_device (5 subtests) ==================
[01:03:07] [PASSED] ttm_device_init_basic
[01:03:07] [PASSED] ttm_device_init_multiple
[01:03:07] [PASSED] ttm_device_fini_basic
[01:03:07] [PASSED] ttm_device_init_no_vma_man
[01:03:07] ================== ttm_device_init_pools ==================
[01:03:07] [PASSED] No DMA allocations, no DMA32 required
[01:03:07] [PASSED] DMA allocations, DMA32 required
[01:03:07] [PASSED] No DMA allocations, DMA32 required
[01:03:07] [PASSED] DMA allocations, no DMA32 required
[01:03:07] ============== [PASSED] ttm_device_init_pools ==============
[01:03:07] =================== [PASSED] ttm_device ====================
[01:03:07] ================== ttm_pool (8 subtests) ===================
[01:03:07] ================== ttm_pool_alloc_basic ===================
[01:03:07] [PASSED] One page
[01:03:07] [PASSED] More than one page
[01:03:07] [PASSED] Above the allocation limit
[01:03:07] [PASSED] One page, with coherent DMA mappings enabled
[01:03:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:03:07] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:03:07] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:03:07] [PASSED] One page
[01:03:07] [PASSED] More than one page
[01:03:07] [PASSED] Above the allocation limit
[01:03:07] [PASSED] One page, with coherent DMA mappings enabled
[01:03:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:03:07] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:03:07] [PASSED] ttm_pool_alloc_order_caching_match
[01:03:07] [PASSED] ttm_pool_alloc_caching_mismatch
[01:03:07] [PASSED] ttm_pool_alloc_order_mismatch
[01:03:07] [PASSED] ttm_pool_free_dma_alloc
[01:03:07] [PASSED] ttm_pool_free_no_dma_alloc
[01:03:07] [PASSED] ttm_pool_fini_basic
[01:03:07] ==================== [PASSED] ttm_pool =====================
[01:03:07] ================ ttm_resource (8 subtests) =================
[01:03:07] ================= ttm_resource_init_basic =================
[01:03:07] [PASSED] Init resource in TTM_PL_SYSTEM
[01:03:07] [PASSED] Init resource in TTM_PL_VRAM
[01:03:07] [PASSED] Init resource in a private placement
[01:03:07] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:03:07] ============= [PASSED] ttm_resource_init_basic =============
[01:03:07] [PASSED] ttm_resource_init_pinned
[01:03:07] [PASSED] ttm_resource_fini_basic
[01:03:07] [PASSED] ttm_resource_manager_init_basic
[01:03:07] [PASSED] ttm_resource_manager_usage_basic
[01:03:07] [PASSED] ttm_resource_manager_set_used_basic
[01:03:07] [PASSED] ttm_sys_man_alloc_basic
[01:03:07] [PASSED] ttm_sys_man_free_basic
[01:03:07] ================== [PASSED] ttm_resource ===================
[01:03:07] =================== ttm_tt (15 subtests) ===================
[01:03:07] ==================== ttm_tt_init_basic ====================
[01:03:07] [PASSED] Page-aligned size
[01:03:07] [PASSED] Extra pages requested
[01:03:07] ================ [PASSED] ttm_tt_init_basic ================
[01:03:07] [PASSED] ttm_tt_init_misaligned
[01:03:07] [PASSED] ttm_tt_fini_basic
[01:03:07] [PASSED] ttm_tt_fini_sg
[01:03:07] [PASSED] ttm_tt_fini_shmem
[01:03:07] [PASSED] ttm_tt_create_basic
[01:03:07] [PASSED] ttm_tt_create_invalid_bo_type
[01:03:07] [PASSED] ttm_tt_create_ttm_exists
[01:03:07] [PASSED] ttm_tt_create_failed
[01:03:07] [PASSED] ttm_tt_destroy_basic
[01:03:07] [PASSED] ttm_tt_populate_null_ttm
[01:03:07] [PASSED] ttm_tt_populate_populated_ttm
[01:03:07] [PASSED] ttm_tt_unpopulate_basic
[01:03:07] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:03:07] [PASSED] ttm_tt_swapin_basic
[01:03:07] ===================== [PASSED] ttm_tt ======================
[01:03:07] =================== ttm_bo (14 subtests) ===================
[01:03:07] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:03:07] [PASSED] Cannot be interrupted and sleeps
[01:03:07] [PASSED] Cannot be interrupted, locks straight away
[01:03:07] [PASSED] Can be interrupted, sleeps
[01:03:07] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:03:07] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:03:07] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:03:07] [PASSED] ttm_bo_reserve_double_resv
[01:03:07] [PASSED] ttm_bo_reserve_interrupted
[01:03:07] [PASSED] ttm_bo_reserve_deadlock
[01:03:07] [PASSED] ttm_bo_unreserve_basic
[01:03:07] [PASSED] ttm_bo_unreserve_pinned
[01:03:07] [PASSED] ttm_bo_unreserve_bulk
[01:03:07] [PASSED] ttm_bo_put_basic
[01:03:07] [PASSED] ttm_bo_put_shared_resv
[01:03:07] [PASSED] ttm_bo_pin_basic
[01:03:07] [PASSED] ttm_bo_pin_unpin_resource
[01:03:07] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:03:07] ===================== [PASSED] ttm_bo ======================
[01:03:07] ============== ttm_bo_validate (22 subtests) ===============
[01:03:07] ============== ttm_bo_init_reserved_sys_man ===============
[01:03:07] [PASSED] Buffer object for userspace
[01:03:07] [PASSED] Kernel buffer object
[01:03:07] [PASSED] Shared buffer object
[01:03:07] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:03:07] ============== ttm_bo_init_reserved_mock_man ==============
[01:03:07] [PASSED] Buffer object for userspace
[01:03:07] [PASSED] Kernel buffer object
[01:03:07] [PASSED] Shared buffer object
[01:03:07] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:03:07] [PASSED] ttm_bo_init_reserved_resv
[01:03:07] ================== ttm_bo_validate_basic ==================
[01:03:07] [PASSED] Buffer object for userspace
[01:03:07] [PASSED] Kernel buffer object
[01:03:07] [PASSED] Shared buffer object
[01:03:07] ============== [PASSED] ttm_bo_validate_basic ==============
[01:03:07] [PASSED] ttm_bo_validate_invalid_placement
[01:03:07] ============= ttm_bo_validate_same_placement ==============
[01:03:07] [PASSED] System manager
[01:03:07] [PASSED] VRAM manager
[01:03:07] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:03:07] [PASSED] ttm_bo_validate_failed_alloc
[01:03:07] [PASSED] ttm_bo_validate_pinned
[01:03:07] [PASSED] ttm_bo_validate_busy_placement
[01:03:07] ================ ttm_bo_validate_multihop =================
[01:03:07] [PASSED] Buffer object for userspace
[01:03:07] [PASSED] Kernel buffer object
[01:03:07] [PASSED] Shared buffer object
[01:03:07] ============ [PASSED] ttm_bo_validate_multihop =============
[01:03:07] ========== ttm_bo_validate_no_placement_signaled ==========
[01:03:07] [PASSED] Buffer object in system domain, no page vector
[01:03:07] [PASSED] Buffer object in system domain with an existing page vector
[01:03:07] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:03:07] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:03:07] [PASSED] Buffer object for userspace
[01:03:07] [PASSED] Kernel buffer object
[01:03:07] [PASSED] Shared buffer object
[01:03:07] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:03:07] [PASSED] ttm_bo_validate_move_fence_signaled
[01:03:07] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:03:07] [PASSED] Waits for GPU
[01:03:07] [PASSED] Tries to lock straight away
[01:03:07] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:03:07] [PASSED] ttm_bo_validate_swapout
[01:03:07] [PASSED] ttm_bo_validate_happy_evict
[01:03:07] [PASSED] ttm_bo_validate_all_pinned_evict
[01:03:07] [PASSED] ttm_bo_validate_allowed_only_evict
[01:03:07] [PASSED] ttm_bo_validate_deleted_evict
[01:03:07] [PASSED] ttm_bo_validate_busy_domain_evict
[01:03:07] [PASSED] ttm_bo_validate_evict_gutting
[01:03:07] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:03:07] ================= [PASSED] ttm_bo_validate =================
[01:03:07] ============================================================
[01:03:07] Testing complete. Ran 102 tests: passed: 102
[01:03:07] Elapsed time: 10.044s total, 1.679s configuring, 7.749s building, 0.533s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
2025-06-13 21:47 [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Matt Roper
2025-06-13 21:47 ` [PATCH 2/2] drm/xe/pat: Consolidate PAT programming logic for pre-Xe2 and post-Xe2 Matt Roper
2025-06-14 1:03 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Patchwork
@ 2025-06-14 1:40 ` Patchwork
2025-06-16 2:56 ` ✓ Xe.CI.Full: " Patchwork
2025-06-16 6:13 ` [PATCH 1/2] " Upadhyay, Tejas
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-14 1:40 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1003 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
URL : https://patchwork.freedesktop.org/series/150262/
State : success
== Summary ==
CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_BAT -> xe-pw-150262v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150262v1
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
xe-pw-150262v1: 150262v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/index.html
[-- Attachment #2: Type: text/html, Size: 1551 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.Full: success for series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
2025-06-13 21:47 [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Matt Roper
` (2 preceding siblings ...)
2025-06-14 1:40 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-16 2:56 ` Patchwork
2025-06-16 16:21 ` Matt Roper
2025-06-16 6:13 ` [PATCH 1/2] " Upadhyay, Tejas
4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2025-06-16 2:56 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 70281 bytes --]
== Series Details ==
Series: series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
URL : https://patchwork.freedesktop.org/series/150262/
State : success
== Summary ==
CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_FULL -> xe-pw-150262v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-150262v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][1] ([Intel XE#4427]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#664])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#316]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-adlp: [PASS][6] -> [DMESG-WARN][7] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#610])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [PASS][9] -> [DMESG-FAIL][10] ([Intel XE#4543])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#610])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2191])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#367]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +4 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#3432])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2907]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#787]) +41 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2724])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2325])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#306])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#307])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#5176])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2321])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2321])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2291]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2286])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4302])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#4422])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4156])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#776])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][45] -> [FAIL][46] ([Intel XE#2882]) +2 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-dpms-vs-vblank-race@cd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][47] ([Intel XE#2049]) +1 other test incomplete
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][48] -> [FAIL][49] ([Intel XE#886]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][52] -> [FAIL][53] ([Intel XE#301] / [Intel XE#3321])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#301]) +12 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2316])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#3098] / [Intel XE#886])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
- shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#3098])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-adlp: [PASS][61] -> [FAIL][62] ([Intel XE#2882]) +2 other tests fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-dp2:
- shard-bmg: NOTRUN -> [FAIL][65] ([Intel XE#2882]) +3 other tests fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-dp2.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#886]) +3 other tests fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2293]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#651]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#651]) +11 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#4141]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2312]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2311]) +7 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#656]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#653]) +11 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2313]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#455]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#1503])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_hdr@invalid-metadata-sizes.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2927])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4329])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#616]) +1 other test fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#4596])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4596])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#2571])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#736])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#3309])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1439] / [Intel XE#3141])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1489]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2893] / [Intel XE#4608])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#4608]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#1489]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1122])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1406]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#4609]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2414])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#3414] / [Intel XE#3904])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1127])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#3414] / [Intel XE#3904])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#1435])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1500])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4837])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_eudebug@basic-vm-bind:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4837]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug@discovery-race-vmbind:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#4837]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_eudebug@discovery-race-vmbind.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#688])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2322]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1392])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#288]) +6 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#4915]) +95 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#4943])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#4943]) +6 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#5018])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2229])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_mmap@pci-membarrier-bad-pagesize:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#5100])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_mmap@pci-membarrier-bad-pagesize.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147]) -> ([PASS][148], [SKIP][149], [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], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173]) ([Intel XE#378])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_oa@polling-small-buf.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#2284] / [Intel XE#366])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-adlp: NOTRUN -> [ABORT][176] ([Intel XE#5214]) +1 other test abort
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@display-pxp-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#4733])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#4733]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_spin_batch@spin-mem-copy:
- shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#4821])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_spin_batch@spin-mem-copy.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#3342]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1:
- shard-adlp: [DMESG-WARN][181] ([Intel XE#4543]) -> [PASS][182] +1 other test pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][183] ([Intel XE#3862]) -> [PASS][184] +1 other test pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][185] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][186] +1 other test pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][187] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][189] ([Intel XE#2291]) -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][191] ([Intel XE#2316]) -> [PASS][192] +4 other tests pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][193] ([Intel XE#301]) -> [PASS][194] +4 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][195] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][196] +1 other test pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: [INCOMPLETE][197] ([Intel XE#4842]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][199] ([Intel XE#1503]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][201] ([Intel XE#1499]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_vrr@negative-basic.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_vrr@negative-basic.html
* {igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute}:
- shard-bmg: [ABORT][203] ([Intel XE#3970]) -> [PASS][204] +1 other test pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
* igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset:
- shard-bmg: [FAIL][205] -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][207] ([Intel XE#5018]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate:
- shard-dg2-set2: [INCOMPLETE][209] -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html
* igt@xe_pm@s2idle-basic:
- shard-adlp: [DMESG-WARN][211] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_pm@s2idle-basic.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [INCOMPLETE][213] ([Intel XE#569]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][215] ([Intel XE#4835]) -> [PASS][216] +1 other test pass
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_pmu@gt-frequency.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][217] ([Intel XE#2311]) -> [SKIP][218] ([Intel XE#2312]) +9 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][219] ([Intel XE#4141]) -> [SKIP][220] ([Intel XE#2312]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][221] ([Intel XE#2312]) -> [SKIP][222] ([Intel XE#4141]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][223] ([Intel XE#2312]) -> [SKIP][224] ([Intel XE#2311]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][225] ([Intel XE#2313]) -> [SKIP][226] ([Intel XE#2312]) +5 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][227] ([Intel XE#2312]) -> [SKIP][228] ([Intel XE#2313]) +6 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][229] ([Intel XE#5021]) -> [SKIP][230] ([Intel XE#4596])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@xe_module_load@load:
- shard-adlp: ([SKIP][231], [PASS][232], [PASS][233], [PASS][234], [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], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256]) ([Intel XE#378]) -> ([PASS][257], [PASS][258], [PASS][259], [DMESG-WARN][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [SKIP][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-8/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-8/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-8/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-2/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-2/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-1/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-1/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-1/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-2/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-1/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_module_load@load.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-adlp: [FAIL][283] ([Intel XE#5219]) -> [ABORT][284] ([Intel XE#5214])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_pmu@all-fn-engine-activity-load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pmu@engine-activity-all-load-idle:
- shard-adlp: [DMESG-WARN][285] ([Intel XE#5214]) -> [ABORT][286] ([Intel XE#5214]) +4 other tests abort
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_pmu@engine-activity-all-load-idle.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_pmu@engine-activity-all-load-idle.html
* igt@xe_pmu@engine-activity-most-load-idle:
- shard-adlp: [ABORT][287] ([Intel XE#5214]) -> [DMESG-WARN][288] ([Intel XE#5214]) +3 other tests dmesg-warn
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_pmu@engine-activity-most-load-idle.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_pmu@engine-activity-most-load-idle.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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4427
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
[Intel XE#4835]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4835
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
[Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
[Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
[Intel XE#5219]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5219
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
Build changes
-------------
* Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150262v1
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
xe-pw-150262v1: 150262v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/index.html
[-- Attachment #2: Type: text/html, Size: 79210 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH 2/2] drm/xe/pat: Consolidate PAT programming logic for pre-Xe2 and post-Xe2
2025-06-13 21:47 ` [PATCH 2/2] drm/xe/pat: Consolidate PAT programming logic for pre-Xe2 and post-Xe2 Matt Roper
@ 2025-06-16 6:12 ` Upadhyay, Tejas
0 siblings, 0 replies; 8+ messages in thread
From: Upadhyay, Tejas @ 2025-06-16 6:12 UTC (permalink / raw)
To: Roper, Matthew D, intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Roper, Matthew D <matthew.d.roper@intel.com>
> Sent: 14 June 2025 03:18
> To: intel-xe@lists.freedesktop.org
> Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com>; Roper, Matthew D
> <matthew.d.roper@intel.com>
> Subject: [PATCH 2/2] drm/xe/pat: Consolidate PAT programming logic for pre-
> Xe2 and post-Xe2
>
> Now that the PAT settings for the new special entries introduced by Xe2 are
> decided during early software init and left NULL on platforms they don't apply
> to, there's no need to keep separate programming functions for pre-Xe2 and
> post-Xe2 platforms. Consolidate down to a single pair of programming
> functions (mcr and non-mcr) that can be used on any platform.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/xe_pat.c | 44 ++++++++++++++-----------------------
> 1 file changed, 16 insertions(+), 28 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_pat.c b/drivers/gpu/drm/xe/xe_pat.c index
> 31663ead7822..2e7cb99ae87a 100644
> --- a/drivers/gpu/drm/xe/xe_pat.c
> +++ b/drivers/gpu/drm/xe/xe_pat.c
> @@ -163,21 +163,35 @@ u16 xe_pat_index_get_coh_mode(struct xe_device
> *xe, u16 pat_index) static void program_pat(struct xe_gt *gt, const struct
> xe_pat_table_entry table[],
> int n_entries)
> {
> + struct xe_device *xe = gt_to_xe(gt);
> +
> for (int i = 0; i < n_entries; i++) {
> struct xe_reg reg = XE_REG(_PAT_INDEX(i));
>
> xe_mmio_write32(>->mmio, reg, table[i].value);
> }
> +
> + if (xe->pat.pat_ats)
> + xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS), xe-
> >pat.pat_ats->value);
> + if (xe->pat.pat_pta)
> + xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe-
> >pat.pat_pta->value);
> }
>
> static void program_pat_mcr(struct xe_gt *gt, const struct xe_pat_table_entry
> table[],
> int n_entries)
> {
> + struct xe_device *xe = gt_to_xe(gt);
> +
> for (int i = 0; i < n_entries; i++) {
> struct xe_reg_mcr reg_mcr = XE_REG_MCR(_PAT_INDEX(i));
>
> xe_gt_mcr_multicast_write(gt, reg_mcr, table[i].value);
> }
> +
> + if (xe->pat.pat_ats)
> + xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS), xe-
> >pat.pat_ats->value);
> + if (xe->pat.pat_pta)
> + xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA),
> +xe->pat.pat_pta->value);
> }
>
> static void xelp_dump(struct xe_gt *gt, struct drm_printer *p) @@ -304,32
> +318,6 @@ static const struct xe_pat_ops xelpg_pat_ops = {
> .dump = xelpg_dump,
> };
>
> -static void xe2lpg_program_pat(struct xe_gt *gt, const struct
> xe_pat_table_entry table[],
> - int n_entries)
> -{
> - struct xe_device *xe = gt_to_xe(gt);
> -
> - program_pat_mcr(gt, table, n_entries);
> -
> - if (xe->pat.pat_ats)
> - xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS), xe-
> >pat.pat_ats->value);
> - if (xe->pat.pat_pta)
> - xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA), xe-
> >pat.pat_pta->value);
> -}
> -
> -static void xe2lpm_program_pat(struct xe_gt *gt, const struct
> xe_pat_table_entry table[],
> - int n_entries)
> -{
> - struct xe_device *xe = gt_to_xe(gt);
> -
> - program_pat(gt, table, n_entries);
> -
> - if (xe->pat.pat_ats)
> - xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS), xe-
> >pat.pat_ats->value);
> - if (xe->pat.pat_pta)
> - xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe-
> >pat.pat_pta->value);
> -}
> -
> static void xe2_dump(struct xe_gt *gt, struct drm_printer *p) {
> struct xe_device *xe = gt_to_xe(gt);
> @@ -382,8 +370,8 @@ static void xe2_dump(struct xe_gt *gt, struct
> drm_printer *p) }
>
> static const struct xe_pat_ops xe2_pat_ops = {
> - .program_graphics = xe2lpg_program_pat,
> - .program_media = xe2lpm_program_pat,
> + .program_graphics = program_pat_mcr,
> + .program_media = program_pat,
> .dump = xe2_dump,
> };
Yes, looks much cleaner. Do we want to keep this as first patch?
Reviewed-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
>
> --
> 2.49.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
2025-06-13 21:47 [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Matt Roper
` (3 preceding siblings ...)
2025-06-16 2:56 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-06-16 6:13 ` Upadhyay, Tejas
4 siblings, 0 replies; 8+ messages in thread
From: Upadhyay, Tejas @ 2025-06-16 6:13 UTC (permalink / raw)
To: Roper, Matthew D, intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Roper, Matthew D <matthew.d.roper@intel.com>
> Sent: 14 June 2025 03:18
> To: intel-xe@lists.freedesktop.org
> Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com>; Roper, Matthew D
> <matthew.d.roper@intel.com>
> Subject: [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during
> early sw init
>
> Decide whether programming of the special ATS and PTA PAT entries is
> necessary (and which entries should be programmed) during early software
> initialization rather than hardcoding this into the 'program' functions.
> Future platforms may want to re-use the same functions but utilize different
> special entry values. Consolidating all of the decisions into one place keeps
> things simple.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/xe_device_types.h | 4 ++++
> drivers/gpu/drm/xe/xe_pat.c | 21 +++++++++++++++------
> 2 files changed, 19 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h
> b/drivers/gpu/drm/xe/xe_device_types.h
> index ac27389ccb8b..003afb279a5e 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -499,6 +499,10 @@ struct xe_device {
> const struct xe_pat_table_entry *table;
> /** @pat.n_entries: Number of PAT entries */
> int n_entries;
> + /** @pat.ats_entry: PAT entry for PCIe ATS responses */
> + const struct xe_pat_table_entry *pat_ats;
> + /** @pat.pta_entry: PAT entry for page table accesses */
> + const struct xe_pat_table_entry *pat_pta;
> u32 idx[__XE_CACHE_LEVEL_COUNT];
> } pat;
>
> diff --git a/drivers/gpu/drm/xe/xe_pat.c b/drivers/gpu/drm/xe/xe_pat.c index
> 38a6a49c1b2a..31663ead7822 100644
> --- a/drivers/gpu/drm/xe/xe_pat.c
> +++ b/drivers/gpu/drm/xe/xe_pat.c
> @@ -307,21 +307,27 @@ static const struct xe_pat_ops xelpg_pat_ops = {
> static void xe2lpg_program_pat(struct xe_gt *gt, const struct
> xe_pat_table_entry table[],
> int n_entries)
> {
> + struct xe_device *xe = gt_to_xe(gt);
> +
> program_pat_mcr(gt, table, n_entries);
> - xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS),
> xe2_pat_ats.value);
>
> - if (IS_DGFX(gt_to_xe(gt)))
> - xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA),
> xe2_pat_pta.value);
> + if (xe->pat.pat_ats)
> + xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_ATS), xe-
> >pat.pat_ats->value);
> + if (xe->pat.pat_pta)
> + xe_gt_mcr_multicast_write(gt, XE_REG_MCR(_PAT_PTA),
> +xe->pat.pat_pta->value);
> }
>
> static void xe2lpm_program_pat(struct xe_gt *gt, const struct
> xe_pat_table_entry table[],
> int n_entries)
> {
> + struct xe_device *xe = gt_to_xe(gt);
> +
> program_pat(gt, table, n_entries);
> - xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS),
> xe2_pat_ats.value);
>
> - if (IS_DGFX(gt_to_xe(gt)))
> - xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA),
> xe2_pat_pta.value);
> + if (xe->pat.pat_ats)
> + xe_mmio_write32(>->mmio, XE_REG(_PAT_ATS), xe-
> >pat.pat_ats->value);
> + if (xe->pat.pat_pta)
> + xe_mmio_write32(>->mmio, XE_REG(_PAT_PTA), xe-
> >pat.pat_pta->value);
> }
>
> static void xe2_dump(struct xe_gt *gt, struct drm_printer *p) @@ -386,6
> +392,9 @@ void xe_pat_init_early(struct xe_device *xe)
> if (GRAPHICS_VER(xe) == 30 || GRAPHICS_VER(xe) == 20) {
> xe->pat.ops = &xe2_pat_ops;
> xe->pat.table = xe2_pat_table;
> + xe->pat.pat_ats = &xe2_pat_ats;
> + if (IS_DGFX(xe))
> + xe->pat.pat_pta = &xe2_pat_pta;
LGTM,
Reviewed-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
Tejas
>
> /* Wa_16023588340. XXX: Should use XE_WA */
> if (GRAPHICS_VERx100(xe) == 2001)
> --
> 2.49.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✓ Xe.CI.Full: success for series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
2025-06-16 2:56 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-06-16 16:21 ` Matt Roper
0 siblings, 0 replies; 8+ messages in thread
From: Matt Roper @ 2025-06-16 16:21 UTC (permalink / raw)
To: intel-xe
On Mon, Jun 16, 2025 at 02:56:52AM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init
> URL : https://patchwork.freedesktop.org/series/150262/
> State : success
>
> == Summary ==
>
> CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_FULL -> xe-pw-150262v1_FULL
> ====================================================
>
> Summary
> -------
>
> **SUCCESS**
>
> No regressions found.
Applied to drm-xe-next. Thanks Tejas for the reviews.
Matt
>
>
>
> Participating hosts (4 -> 4)
> ------------------------------
>
> No changes in participating hosts
>
> Known issues
> ------------
>
> Here are the changes found in xe-pw-150262v1_FULL that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
> - shard-dg2-set2: NOTRUN -> [FAIL][1] ([Intel XE#4427]) +1 other test fail
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
>
> * igt@kms_async_flips@test-cursor-atomic:
> - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#664])
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_async_flips@test-cursor-atomic.html
>
> * igt@kms_big_fb@linear-32bpp-rotate-270:
> - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +1 other test skip
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
>
> * igt@kms_big_fb@linear-32bpp-rotate-90:
> - shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#316]) +1 other test skip
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_big_fb@linear-32bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
> - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407])
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-0:
> - shard-adlp: [PASS][6] -> [DMESG-WARN][7] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
>
> * igt@kms_big_fb@y-tiled-addfb-size-overflow:
> - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#610])
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> - shard-adlp: [PASS][9] -> [DMESG-FAIL][10] ([Intel XE#4543])
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
> - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +4 other tests skip
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
>
> * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
> - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#610])
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124])
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>
> * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
> - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
>
> * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
> - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2191])
> [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
>
> * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
> - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#367]) +1 other test skip
> [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
>
> * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
> - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +4 other tests skip
> [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
>
> * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
> - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887])
> [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
>
> * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
> - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#3432])
> [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
> - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2907]) +1 other test skip
> [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
>
> * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
> - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#787]) +41 other tests skip
> [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-4.html
>
> * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
> - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
> [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
> - shard-dg2-set2: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete
> [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
> [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
> - shard-dg2-set2: NOTRUN -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
> [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
>
> * igt@kms_cdclk@mode-transition-all-outputs:
> - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2724])
> [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
>
> * igt@kms_chamelium_color@ctm-blue-to-red:
> - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2325])
> [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
>
> * igt@kms_chamelium_color@ctm-red-to-blue:
> - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#306])
> [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_chamelium_color@ctm-red-to-blue.html
>
> * igt@kms_chamelium_edid@dp-edid-resolution-list:
> - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373])
> [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_chamelium_edid@dp-edid-resolution-list.html
>
> * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
> - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) +3 other tests skip
> [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
>
> * igt@kms_chamelium_hpd@vga-hpd:
> - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373])
> [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html
>
> * igt@kms_content_protection@dp-mst-lic-type-0:
> - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#307])
> [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html
>
> * igt@kms_content_protection@lic-type-1:
> - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#5176])
> [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_content_protection@lic-type-1.html
>
> * igt@kms_cursor_crc@cursor-onscreen-32x32:
> - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +1 other test skip
> [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2321])
> [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_crc@cursor-sliding-256x85:
> - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424])
> [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
>
> * igt@kms_cursor_crc@cursor-sliding-512x170:
> - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2321])
> [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
> - shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2291]) +3 other tests skip
> [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
> [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
> - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2286])
> [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_display_modes@extended-mode-basic:
> - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4302])
> [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_display_modes@extended-mode-basic.html
>
> * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
> - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#4422])
> [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
>
> * igt@kms_fbcon_fbt@fbc-suspend:
> - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4156])
> [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html
>
> * igt@kms_fbcon_fbt@psr:
> - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#776])
> [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
>
> * igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3:
> - shard-bmg: [PASS][45] -> [FAIL][46] ([Intel XE#2882]) +2 other tests fail
> [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html
> [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html
>
> * igt@kms_flip@2x-dpms-vs-vblank-race@cd-dp2-hdmi-a3:
> - shard-bmg: NOTRUN -> [INCOMPLETE][47] ([Intel XE#2049]) +1 other test incomplete
> [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race@cd-dp2-hdmi-a3.html
>
> * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4:
> - shard-dg2-set2: [PASS][48] -> [FAIL][49] ([Intel XE#886]) +1 other test fail
> [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html
> [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html
>
> * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
> - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +3 other tests skip
> [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
> [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
>
> * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
> - shard-dg2-set2: [PASS][52] -> [FAIL][53] ([Intel XE#301] / [Intel XE#3321])
> [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
> [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
>
> * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
> - shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#301]) +12 other tests fail
> [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
> [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
>
> * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
> - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2316])
> [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
>
> * igt@kms_flip@flip-vs-absolute-wf_vblank:
> - shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#3098] / [Intel XE#886])
> [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
> [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
>
> * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
> - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#3098])
> [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
> [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
>
> * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
> - shard-adlp: [PASS][61] -> [FAIL][62] ([Intel XE#2882]) +2 other tests fail
> [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
> [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
>
> * igt@kms_flip@flip-vs-suspend-interruptible:
> - shard-bmg: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
> [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
> [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
>
> * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-dp2:
> - shard-bmg: NOTRUN -> [FAIL][65] ([Intel XE#2882]) +3 other tests fail
> [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-dp2.html
>
> * igt@kms_flip@wf_vblank-ts-check@a-edp1:
> - shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#886]) +3 other tests fail
> [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
> [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
> - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
> [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
> - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2293]) +1 other test skip
> [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
> - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#651]) +2 other tests skip
> [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
> - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#651]) +11 other tests skip
> [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
> - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#4141]) +3 other tests skip
> [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
> - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2312]) +4 other tests skip
> [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render:
> - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2311]) +7 other tests skip
> [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
> - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#656]) +2 other tests skip
> [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
> - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#653]) +11 other tests skip
> [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
> - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2313]) +7 other tests skip
> [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
>
> * igt@kms_hdr@brightness-with-hdr:
> - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#455]) +7 other tests skip
> [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_hdr@brightness-with-hdr.html
>
> * igt@kms_hdr@invalid-metadata-sizes:
> - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#1503])
> [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_hdr@invalid-metadata-sizes.html
> [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html
>
> * igt@kms_joiner@invalid-modeset-ultra-joiner:
> - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2927])
> [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
>
> * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
> - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4329])
> [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
>
> * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
> - shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#616]) +1 other test fail
> [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
> [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
>
> * igt@kms_plane_multiple@2x-tiling-none:
> - shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#4596])
> [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html
> [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
>
> * igt@kms_plane_multiple@2x-tiling-y:
> - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4596])
> [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
>
> * igt@kms_plane_scaling@2x-scaler-multi-pipe:
> - shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#2571])
> [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
> [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
>
> * igt@kms_pm_dc@dc3co-vpb-simulation:
> - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#736])
> [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
>
> * igt@kms_pm_dc@dc5-retention-flops:
> - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#3309])
> [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html
>
> * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
> - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1439] / [Intel XE#3141])
> [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
>
> * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
> - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1489]) +1 other test skip
> [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
>
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
> - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2893] / [Intel XE#4608])
> [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
>
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
> - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#4608]) +1 other test skip
> [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
>
> * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
> - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#1489]) +1 other test skip
> [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
>
> * igt@kms_psr2_su@page_flip-xrgb8888:
> - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1122])
> [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
>
> * igt@kms_psr@fbc-psr-cursor-plane-onoff:
> - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
> [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
>
> * igt@kms_psr@fbc-psr2-cursor-blt:
> - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1406]) +1 other test skip
> [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-blt.html
>
> * igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
> - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#4609]) +1 other test skip
> [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
>
> * igt@kms_psr@fbc-psr2-primary-blt:
> - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
> [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_psr@fbc-psr2-primary-blt.html
>
> * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
> - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2414])
> [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
>
> * igt@kms_rotation_crc@primary-rotation-270:
> - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#3414] / [Intel XE#3904])
> [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-270.html
>
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
> - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1127])
> [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
>
> * igt@kms_rotation_crc@sprite-rotation-90:
> - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#3414] / [Intel XE#3904])
> [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html
>
> * igt@kms_setmode@basic-clone-single-crtc:
> - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#1435])
> [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1500])
> [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>
> * igt@xe_compute_preempt@compute-preempt:
> - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
> [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
>
> * igt@xe_eudebug@basic-vm-access-userptr:
> - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4837])
> [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_eudebug@basic-vm-access-userptr.html
>
> * igt@xe_eudebug@basic-vm-bind:
> - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4837]) +1 other test skip
> [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_eudebug@basic-vm-bind.html
>
> * igt@xe_eudebug@discovery-race-vmbind:
> - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#4837]) +3 other tests skip
> [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_eudebug@discovery-race-vmbind.html
>
> * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
> - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#688])
> [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
>
> * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
> - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2322]) +3 other tests skip
> [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
>
> * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
> - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1392])
> [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
>
> * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate:
> - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#288]) +6 other tests skip
> [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
>
> * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
> - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#4915]) +95 other tests skip
> [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
>
> * igt@xe_exec_system_allocator@threads-many-stride-mmap-huge:
> - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#4943])
> [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge.html
>
> * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
> - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#4943]) +6 other tests skip
> [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html
>
> * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
> - shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#5018])
> [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
> [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
>
> * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
> - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2229])
> [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
>
> * igt@xe_mmap@pci-membarrier-bad-pagesize:
> - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#5100])
> [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-4/igt@xe_mmap@pci-membarrier-bad-pagesize.html
>
> * igt@xe_module_load@load:
> - shard-dg2-set2: ([PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147]) -> ([PASS][148], [SKIP][149], [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], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173]) ([Intel XE#378])
> [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
> [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
> [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
> [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
> [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
> [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
> [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
> [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
> [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
> [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
> [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
> [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
> [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
> [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
> [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
> [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
> [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
> [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
> [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
> [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
> [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
> [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
> [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
> [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
> [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
> [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
> [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
> [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
> [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
> [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
> [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
> [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
> [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
> [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
> [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
> [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
> [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
> [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
> [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_module_load@load.html
> [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
> [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
> [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
> [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
> [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
> [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
> [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_module_load@load.html
> [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
> [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
> [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
> [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@xe_module_load@load.html
> [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_module_load@load.html
>
> * igt@xe_oa@polling-small-buf:
> - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip
> [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_oa@polling-small-buf.html
>
> * igt@xe_pm@s2idle-d3cold-basic-exec:
> - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#2284] / [Intel XE#366])
> [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
>
> * igt@xe_pmu@fn-engine-activity-load:
> - shard-adlp: NOTRUN -> [ABORT][176] ([Intel XE#5214]) +1 other test abort
> [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_pmu@fn-engine-activity-load.html
>
> * igt@xe_pxp@display-pxp-fb:
> - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#4733])
> [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_pxp@display-pxp-fb.html
>
> * igt@xe_pxp@pxp-termination-key-update-post-suspend:
> - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#4733]) +2 other tests skip
> [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
>
> * igt@xe_spin_batch@spin-mem-copy:
> - shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#4821])
> [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@xe_spin_batch@spin-mem-copy.html
>
> * igt@xe_sriov_flr@flr-vf1-clear:
> - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#3342]) +1 other test skip
> [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
>
>
> #### Possible fixes ####
>
> * igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1:
> - shard-adlp: [DMESG-WARN][181] ([Intel XE#4543]) -> [PASS][182] +1 other test pass
> [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html
> [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
> - shard-dg2-set2: [INCOMPLETE][183] ([Intel XE#3862]) -> [PASS][184] +1 other test pass
> [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
> [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
> - shard-dg2-set2: [INCOMPLETE][185] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][186] +1 other test pass
> [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
> - shard-dg2-set2: [INCOMPLETE][187] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][188]
> [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
> [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
> - shard-bmg: [SKIP][189] ([Intel XE#2291]) -> [PASS][190] +1 other test pass
> [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
> [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
>
> * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
> - shard-bmg: [SKIP][191] ([Intel XE#2316]) -> [PASS][192] +4 other tests pass
> [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
> [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
>
> * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
> - shard-dg2-set2: [FAIL][193] ([Intel XE#301]) -> [PASS][194] +4 other tests pass
> [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
> [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
>
> * igt@kms_flip@flip-vs-suspend-interruptible:
> - shard-dg2-set2: [INCOMPLETE][195] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][196] +1 other test pass
> [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
> [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
> - shard-dg2-set2: [INCOMPLETE][197] ([Intel XE#4842]) -> [PASS][198]
> [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
> [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
>
> * igt@kms_hdr@invalid-hdr:
> - shard-bmg: [SKIP][199] ([Intel XE#1503]) -> [PASS][200]
> [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
> [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
>
> * igt@kms_vrr@negative-basic:
> - shard-bmg: [SKIP][201] ([Intel XE#1499]) -> [PASS][202]
> [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_vrr@negative-basic.html
> [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_vrr@negative-basic.html
>
> * {igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute}:
> - shard-bmg: [ABORT][203] ([Intel XE#3970]) -> [PASS][204] +1 other test pass
> [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
> [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
>
> * igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset:
> - shard-bmg: [FAIL][205] -> [PASS][206]
> [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
> [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
>
> * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
> - shard-lnl: [FAIL][207] ([Intel XE#5018]) -> [PASS][208]
> [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
> [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
>
> * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate:
> - shard-dg2-set2: [INCOMPLETE][209] -> [PASS][210]
> [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html
> [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html
>
> * igt@xe_pm@s2idle-basic:
> - shard-adlp: [DMESG-WARN][211] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][212]
> [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_pm@s2idle-basic.html
> [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@xe_pm@s2idle-basic.html
>
> * igt@xe_pm@s3-vm-bind-userptr:
> - shard-bmg: [INCOMPLETE][213] ([Intel XE#569]) -> [PASS][214]
> [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
> [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
>
> * igt@xe_pmu@gt-frequency:
> - shard-dg2-set2: [FAIL][215] ([Intel XE#4835]) -> [PASS][216] +1 other test pass
> [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_pmu@gt-frequency.html
> [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-dg2-464/igt@xe_pmu@gt-frequency.html
>
>
> #### Warnings ####
>
> * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
> - shard-bmg: [SKIP][217] ([Intel XE#2311]) -> [SKIP][218] ([Intel XE#2312]) +9 other tests skip
> [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
> [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
> - shard-bmg: [SKIP][219] ([Intel XE#4141]) -> [SKIP][220] ([Intel XE#2312]) +2 other tests skip
> [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
> [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
> - shard-bmg: [SKIP][221] ([Intel XE#2312]) -> [SKIP][222] ([Intel XE#4141]) +3 other tests skip
> [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
> [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
> - shard-bmg: [SKIP][223] ([Intel XE#2312]) -> [SKIP][224] ([Intel XE#2311]) +7 other tests skip
> [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
> [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
> - shard-bmg: [SKIP][225] ([Intel XE#2313]) -> [SKIP][226] ([Intel XE#2312]) +5 other tests skip
> [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
> [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
> - shard-bmg: [SKIP][227] ([Intel XE#2312]) -> [SKIP][228] ([Intel XE#2313]) +6 other tests skip
> [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
> [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_plane_multiple@2x-tiling-yf:
> - shard-bmg: [SKIP][229] ([Intel XE#5021]) -> [SKIP][230] ([Intel XE#4596])
> [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
> [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
>
> * igt@xe_module_load@load:
> - shard-adlp: ([SKIP][231], [PASS][232], [PASS][233], [PASS][234], [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], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256]) ([Intel XE#378]) -> ([PASS][257], [PASS][258], [PASS][259], [DMESG-WARN][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [SKIP][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173])
> [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
> [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_module_load@load.html
> [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_module_load@load.html
> [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_module_load@load.html
> [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_module_load@load.html
> [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_module_load@load.html
> [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_module_load@load.html
> [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_module_load@load.html
> [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_module_load@load.html
> [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-8/igt@xe_module_load@load.html
> [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-8/igt@xe_module_load@load.html
> [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
> [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
> [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
> [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-8/igt@xe_module_load@load.html
> [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@xe_module_load@load.html
> [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@xe_module_load@load.html
> [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_module_load@load.html
> [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@xe_module_load@load.html
> [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_module_load@load.html
> [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_module_load@load.html
> [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_module_load@load.html
> [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_module_load@load.html
> [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_module_load@load.html
> [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_module_load@load.html
> [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-6/igt@xe_module_load@load.html
> [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@xe_module_load@load.html
> [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@xe_module_load@load.html
> [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_module_load@load.html
> [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-3/igt@xe_module_load@load.html
> [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-2/igt@xe_module_load@load.html
> [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-2/igt@xe_module_load@load.html
> [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_module_load@load.html
> [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-1/igt@xe_module_load@load.html
> [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
> [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
> [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_module_load@load.html
> [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_module_load@load.html
> [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
> [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
> [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-9/igt@xe_module_load@load.html
> [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-6/igt@xe_module_load@load.html
> [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_module_load@load.html
> [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@xe_module_load@load.html
> [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@xe_module_load@load.html
> [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-1/igt@xe_module_load@load.html
> [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-1/igt@xe_module_load@load.html
> [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@xe_module_load@load.html
> [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-2/igt@xe_module_load@load.html
> [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-1/igt@xe_module_load@load.html
> [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_module_load@load.html
> [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_module_load@load.html
>
> * igt@xe_pmu@all-fn-engine-activity-load:
> - shard-adlp: [FAIL][283] ([Intel XE#5219]) -> [ABORT][284] ([Intel XE#5214])
> [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_pmu@all-fn-engine-activity-load.html
> [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-8/igt@xe_pmu@all-fn-engine-activity-load.html
>
> * igt@xe_pmu@engine-activity-all-load-idle:
> - shard-adlp: [DMESG-WARN][285] ([Intel XE#5214]) -> [ABORT][286] ([Intel XE#5214]) +4 other tests abort
> [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_pmu@engine-activity-all-load-idle.html
> [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_pmu@engine-activity-all-load-idle.html
>
> * igt@xe_pmu@engine-activity-most-load-idle:
> - shard-adlp: [ABORT][287] ([Intel XE#5214]) -> [DMESG-WARN][288] ([Intel XE#5214]) +3 other tests dmesg-warn
> [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@xe_pmu@engine-activity-most-load-idle.html
> [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/shard-adlp-4/igt@xe_pmu@engine-activity-most-load-idle.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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
> [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
> [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
> [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
> [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
> [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
> [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
> [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
> [Intel XE#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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
> [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
> [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
> [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
> [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
> [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
> [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
> [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
> [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
> [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
> [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
> [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
> [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
> [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
> [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
> [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
> [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
> [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
> [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
> [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
> [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
> [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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
> [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
> [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
> [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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
> [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
> [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
> [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
> [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
> [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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
> [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
> [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
> [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
> [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
> [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
> [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
> [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
> [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
> [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
> [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
> [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
> [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
> [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
> [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
> [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
> [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
> [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
> [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
> [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
> [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
> [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
> [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
> [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
> [Intel XE#4427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4427
> [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
> [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
> [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
> [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
> [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
> [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
> [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
> [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
> [Intel XE#4835]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4835
> [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
> [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
> [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
> [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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
> [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
> [Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
> [Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
> [Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
> [Intel XE#5219]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5219
> [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
> [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
> [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
> [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
> [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
> [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
> [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
> [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
> [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
> [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
>
>
> Build changes
> -------------
>
> * Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150262v1
>
> IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
> xe-pw-150262v1: 150262v1
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150262v1/index.html
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-06-16 16:21 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-13 21:47 [PATCH 1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Matt Roper
2025-06-13 21:47 ` [PATCH 2/2] drm/xe/pat: Consolidate PAT programming logic for pre-Xe2 and post-Xe2 Matt Roper
2025-06-16 6:12 ` Upadhyay, Tejas
2025-06-14 1:03 ` ✓ CI.KUnit: success for series starting with [1/2] drm/xe/pat: Determine ATS / PTA programming during early sw init Patchwork
2025-06-14 1:40 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-16 2:56 ` ✓ Xe.CI.Full: " Patchwork
2025-06-16 16:21 ` Matt Roper
2025-06-16 6:13 ` [PATCH 1/2] " Upadhyay, Tejas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox