* [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV
@ 2025-11-18 12:47 Satyanarayana K V P
2025-11-18 12:47 ` [PATCH v3 1/2] drm/xe/vf: Split GGTT info query and fixup into separate helpers Satyanarayana K V P
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Satyanarayana K V P @ 2025-11-18 12:47 UTC (permalink / raw)
To: intel-xe; +Cc: Satyanarayana K V P
When SR-IOV is enabled, a VM may suspend on one VF and resume on a
different VF after S4 sleep cycle. Because GGTT space is not virtualized,
this transition can lead to incorrect GGTT references. To address this,
validate the GGTT space during resume and apply necessary fixups if
the VF has changed.
---
V2 -> V3:
- Fixed review comments (Michal).
- Added a new function xe_gt_sriov_vf_resume_fixups() which
handshakes with GUC and does GGTT fixups.
- Updated commit message.
V1 -> V2:
- Rebased to latest drm-tip.
Satyanarayana K V P (2):
drm/xe/vf: Split GGTT info query and fixup into separate helpers
drm/xe/vf: Fix up GGTT mappings on S4 resume across VFs.
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 83 ++++++++++++++++++++++++-----
drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
drivers/gpu/drm/xe/xe_pm.c | 7 +++
drivers/gpu/drm/xe/xe_sriov_vf.c | 30 +++++++++++
drivers/gpu/drm/xe/xe_sriov_vf.h | 1 +
5 files changed, 108 insertions(+), 14 deletions(-)
--
2.51.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v3 1/2] drm/xe/vf: Split GGTT info query and fixup into separate helpers
2025-11-18 12:47 [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV Satyanarayana K V P
@ 2025-11-18 12:47 ` Satyanarayana K V P
2025-11-18 17:17 ` Matthew Brost
2025-11-18 12:47 ` [PATCH v3 2/2] drm/xe/vf: Fix up GGTT mappings on S4 resume across VFs Satyanarayana K V P
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Satyanarayana K V P @ 2025-11-18 12:47 UTC (permalink / raw)
To: intel-xe
Cc: Satyanarayana K V P, Michal Wajdeczko, Michal Winiarski,
Matthew Brost, Tomasz Lis
The current vf_get_ggtt_info() function handles both querying GGTT
information and applying fixups. Refactor this into two distinct
functions: one for querying and another for performing fixups.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michal Winiarski <michal.winiarski@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>
---
V2 -> V3:
- New commit
V1 -> V2:
- None.
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 45 ++++++++++++++++++++---------
1 file changed, 31 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 4c73a077d314..be7986537aad 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -438,41 +438,50 @@ u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt)
return value;
}
-static int vf_get_ggtt_info(struct xe_gt *gt)
+static int vf_query_ggtt_info(struct xe_gt *gt, u64 *start, u64 *size, s64 *shift)
{
struct xe_tile *tile = gt_to_tile(gt);
- struct xe_ggtt *ggtt = tile->mem.ggtt;
struct xe_guc *guc = >->uc.guc;
- u64 start, size, ggtt_size;
- s64 shift;
+ u64 ggtt_size;
int err;
xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
- guard(mutex)(&ggtt->lock);
-
- err = guc_action_query_single_klv64(guc, GUC_KLV_VF_CFG_GGTT_START_KEY, &start);
+ err = guc_action_query_single_klv64(guc, GUC_KLV_VF_CFG_GGTT_START_KEY, start);
if (unlikely(err))
return err;
- err = guc_action_query_single_klv64(guc, GUC_KLV_VF_CFG_GGTT_SIZE_KEY, &size);
+ err = guc_action_query_single_klv64(guc, GUC_KLV_VF_CFG_GGTT_SIZE_KEY, size);
if (unlikely(err))
return err;
- if (!size)
+ if (!*size)
return -ENODATA;
ggtt_size = xe_tile_sriov_vf_ggtt(tile);
- if (ggtt_size && ggtt_size != size) {
+ if (ggtt_size && ggtt_size != *size) {
xe_gt_sriov_err(gt, "Unexpected GGTT reassignment: %lluK != %lluK\n",
- size / SZ_1K, ggtt_size / SZ_1K);
+ *size / SZ_1K, ggtt_size / SZ_1K);
return -EREMCHG;
}
xe_gt_sriov_dbg_verbose(gt, "GGTT %#llx-%#llx = %lluK\n",
- start, start + size - 1, size / SZ_1K);
+ *start, *start + *size - 1, *size / SZ_1K);
+
+ *shift = *start - (s64)xe_tile_sriov_vf_ggtt_base(tile);
+
+ return 0;
+}
+
+static int vf_fixup_ggtt_nodes(struct xe_gt *gt, u64 start, u64 size, s64 shift)
+{
+ struct xe_tile *tile = gt_to_tile(gt);
+ struct xe_ggtt *ggtt = tile->mem.ggtt;
+
+ xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
+
+ guard(mutex)(&ggtt->lock);
- shift = start - (s64)xe_tile_sriov_vf_ggtt_base(tile);
xe_tile_sriov_vf_ggtt_base_store(tile, start);
xe_tile_sriov_vf_ggtt_store(tile, size);
@@ -577,9 +586,17 @@ static void vf_cache_gmdid(struct xe_gt *gt)
int xe_gt_sriov_vf_query_config(struct xe_gt *gt)
{
struct xe_device *xe = gt_to_xe(gt);
+ u64 start, size;
+ s64 shift;
int err;
- err = vf_get_ggtt_info(gt);
+ err = vf_query_ggtt_info(gt, &start, &size, &shift);
+ if (unlikely(err)) {
+ xe_gt_sriov_err(gt, "Error in querying ggtt info (%d)\n", err);
+ return err;
+ }
+
+ err = vf_fixup_ggtt_nodes(gt, start, size, shift);
if (unlikely(err))
return err;
--
2.51.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 2/2] drm/xe/vf: Fix up GGTT mappings on S4 resume across VFs.
2025-11-18 12:47 [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV Satyanarayana K V P
2025-11-18 12:47 ` [PATCH v3 1/2] drm/xe/vf: Split GGTT info query and fixup into separate helpers Satyanarayana K V P
@ 2025-11-18 12:47 ` Satyanarayana K V P
2025-11-18 17:08 ` Matthew Brost
2025-11-18 14:59 ` ✓ CI.KUnit: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev3) Patchwork
` (4 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Satyanarayana K V P @ 2025-11-18 12:47 UTC (permalink / raw)
To: intel-xe
Cc: Satyanarayana K V P, Michal Wajdeczko, Michal Winiarski,
Matthew Brost, Tomasz Lis
When SR-IOV is enabled, a VM may suspend on one VF and resume on a
different VF after S4 sleep cycle. Because GGTT space is not virtualized,
this transition can lead to incorrect GGTT references. To address this,
validate the GGTT space during resume and apply necessary fixups if the
VF has changed.
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michal Winiarski <michal.winiarski@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>
---
V2 -> V3:
- Fixed review comments (Michal).
- Added a new function xe_gt_sriov_vf_resume_fixups() which handshakes
with GUC and does GGTT fixups.
- Updated commit message.
V1 -> V2:
- Rebased to latest drm-tip.
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 38 +++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
drivers/gpu/drm/xe/xe_pm.c | 7 ++++++
drivers/gpu/drm/xe/xe_sriov_vf.c | 30 +++++++++++++++++++++++
drivers/gpu/drm/xe/xe_sriov_vf.h | 1 +
5 files changed, 77 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index be7986537aad..87aa1d6576d6 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -1335,6 +1335,44 @@ int xe_gt_sriov_vf_init(struct xe_gt *gt)
vf_migration_fini, gt);
}
+/**
+ * xe_gt_sriov_vf_resume_early() - Resume from S4.
+ * @gt: the &xe_gt.
+ *
+ * This function shall be called only by VF.
+ *
+ * Returns: 0 if the operation completed successfully, or a negative
+ * error code otherwise.
+ */
+int xe_gt_sriov_vf_resume_early(struct xe_gt *gt)
+{
+ u64 start, size;
+ s64 shift;
+ int err;
+
+ xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
+
+ err = xe_gt_sriov_vf_bootstrap(gt);
+ if (unlikely(err))
+ goto out;
+
+ err = vf_query_ggtt_info(gt, &start, &size, &shift);
+ if (unlikely(err))
+ goto out;
+
+ if (shift) {
+ err = vf_post_migration_fixups(gt);
+ if (unlikely(err))
+ goto out;
+ }
+
+out:
+ if (unlikely(err))
+ xe_gt_sriov_err(gt, "Fixups during resume failed (%d)\n", err);
+
+ return err;
+}
+
/**
* xe_gt_sriov_vf_recovery_pending() - VF post migration recovery pending
* @gt: the &xe_gt
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
index af40276790fa..68026b561d7d 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
@@ -25,6 +25,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
int xe_gt_sriov_vf_init(struct xe_gt *gt);
+int xe_gt_sriov_vf_resume_early(struct xe_gt *gt);
bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
index 4f8688fd3f00..a6fcddc47d62 100644
--- a/drivers/gpu/drm/xe/xe_pm.c
+++ b/drivers/gpu/drm/xe/xe_pm.c
@@ -24,6 +24,7 @@
#include "xe_late_bind_fw.h"
#include "xe_pcode.h"
#include "xe_pxp.h"
+#include "xe_sriov_vf.h"
#include "xe_sriov_vf_ccs.h"
#include "xe_trace.h"
#include "xe_vm.h"
@@ -248,6 +249,12 @@ int xe_pm_resume(struct xe_device *xe)
xe_display_pm_resume_early(xe);
+ if (IS_SRIOV_VF(xe)) {
+ err = xe_sriov_vf_resume_early(xe);
+ if (unlikely(err))
+ goto err;
+ }
+
/*
* This only restores pinned memory which is the memory required for the
* GT(s) to resume.
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index 39c829daa97c..a33f86b7986d 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -191,6 +191,36 @@ int xe_sriov_vf_init_late(struct xe_device *xe)
return xe_sriov_vf_ccs_init(xe);
}
+/**
+ * xe_sriov_vf_resume_early() - Early resume operations for SR-IOV Virtual
+ * Function.
+ * @xe: the &xe_device to resume
+ *
+ * This function shall be called only by VF.
+ *
+ * Return: 0 on success or a negative error code on failure.
+ */
+int xe_sriov_vf_resume_early(struct xe_device *xe)
+{
+ struct xe_gt *gt;
+ int err = 0;
+ u8 id;
+
+ xe_assert(xe, IS_SRIOV_VF(xe));
+
+ for_each_gt(gt, xe, id) {
+ err = xe_gt_sriov_vf_resume_early(gt);
+ if (unlikely(err))
+ goto out;
+ }
+
+out:
+ if (unlikely(err))
+ xe_sriov_err(xe, "VF resume early failed with (%d)\n", err);
+
+ return err;
+}
+
static int sa_info_vf_ccs(struct seq_file *m, void *data)
{
struct drm_info_node *node = m->private;
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.h b/drivers/gpu/drm/xe/xe_sriov_vf.h
index e967d4166a43..54fe6eedeff6 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.h
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.h
@@ -13,6 +13,7 @@ struct xe_device;
void xe_sriov_vf_init_early(struct xe_device *xe);
int xe_sriov_vf_init_late(struct xe_device *xe);
+int xe_sriov_vf_resume_early(struct xe_device *xe);
bool xe_sriov_vf_migration_supported(struct xe_device *xe);
void xe_sriov_vf_migration_disable(struct xe_device *xe, const char *fmt, ...);
void xe_sriov_vf_debugfs_register(struct xe_device *xe, struct dentry *root);
--
2.51.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev3)
2025-11-18 12:47 [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV Satyanarayana K V P
2025-11-18 12:47 ` [PATCH v3 1/2] drm/xe/vf: Split GGTT info query and fixup into separate helpers Satyanarayana K V P
2025-11-18 12:47 ` [PATCH v3 2/2] drm/xe/vf: Fix up GGTT mappings on S4 resume across VFs Satyanarayana K V P
@ 2025-11-18 14:59 ` Patchwork
2025-11-18 19:20 ` ✓ Xe.CI.Full: " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-11-18 14:59 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
== Series Details ==
Series: drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev3)
URL : https://patchwork.freedesktop.org/series/153196/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:58:25] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:58:30] 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
[14:59:00] Starting KUnit Kernel (1/1)...
[14:59:00] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:59:01] ================== guc_buf (11 subtests) ===================
[14:59:01] [PASSED] test_smallest
[14:59:01] [PASSED] test_largest
[14:59:01] [PASSED] test_granular
[14:59:01] [PASSED] test_unique
[14:59:01] [PASSED] test_overlap
[14:59:01] [PASSED] test_reusable
[14:59:01] [PASSED] test_too_big
[14:59:01] [PASSED] test_flush
[14:59:01] [PASSED] test_lookup
[14:59:01] [PASSED] test_data
[14:59:01] [PASSED] test_class
[14:59:01] ===================== [PASSED] guc_buf =====================
[14:59:01] =================== guc_dbm (7 subtests) ===================
[14:59:01] [PASSED] test_empty
[14:59:01] [PASSED] test_default
[14:59:01] ======================== test_size ========================
[14:59:01] [PASSED] 4
[14:59:01] [PASSED] 8
[14:59:01] [PASSED] 32
[14:59:01] [PASSED] 256
[14:59:01] ==================== [PASSED] test_size ====================
[14:59:01] ======================= test_reuse ========================
[14:59:01] [PASSED] 4
[14:59:01] [PASSED] 8
[14:59:01] [PASSED] 32
[14:59:01] [PASSED] 256
[14:59:01] =================== [PASSED] test_reuse ====================
[14:59:01] =================== test_range_overlap ====================
[14:59:01] [PASSED] 4
[14:59:01] [PASSED] 8
[14:59:01] [PASSED] 32
[14:59:01] [PASSED] 256
[14:59:01] =============== [PASSED] test_range_overlap ================
[14:59:01] =================== test_range_compact ====================
[14:59:01] [PASSED] 4
[14:59:01] [PASSED] 8
[14:59:01] [PASSED] 32
[14:59:01] [PASSED] 256
[14:59:01] =============== [PASSED] test_range_compact ================
[14:59:01] ==================== test_range_spare =====================
[14:59:01] [PASSED] 4
[14:59:01] [PASSED] 8
[14:59:01] [PASSED] 32
[14:59:01] [PASSED] 256
[14:59:01] ================ [PASSED] test_range_spare =================
[14:59:01] ===================== [PASSED] guc_dbm =====================
[14:59:01] =================== guc_idm (6 subtests) ===================
[14:59:01] [PASSED] bad_init
[14:59:01] [PASSED] no_init
[14:59:01] [PASSED] init_fini
[14:59:01] [PASSED] check_used
[14:59:01] [PASSED] check_quota
[14:59:01] [PASSED] check_all
[14:59:01] ===================== [PASSED] guc_idm =====================
[14:59:01] ================== no_relay (3 subtests) ===================
[14:59:01] [PASSED] xe_drops_guc2pf_if_not_ready
[14:59:01] [PASSED] xe_drops_guc2vf_if_not_ready
[14:59:01] [PASSED] xe_rejects_send_if_not_ready
[14:59:01] ==================== [PASSED] no_relay =====================
[14:59:01] ================== pf_relay (14 subtests) ==================
[14:59:01] [PASSED] pf_rejects_guc2pf_too_short
[14:59:01] [PASSED] pf_rejects_guc2pf_too_long
[14:59:01] [PASSED] pf_rejects_guc2pf_no_payload
[14:59:01] [PASSED] pf_fails_no_payload
[14:59:01] [PASSED] pf_fails_bad_origin
[14:59:01] [PASSED] pf_fails_bad_type
[14:59:01] [PASSED] pf_txn_reports_error
[14:59:01] [PASSED] pf_txn_sends_pf2guc
[14:59:01] [PASSED] pf_sends_pf2guc
[14:59:01] [SKIPPED] pf_loopback_nop
[14:59:01] [SKIPPED] pf_loopback_echo
[14:59:01] [SKIPPED] pf_loopback_fail
[14:59:01] [SKIPPED] pf_loopback_busy
[14:59:01] [SKIPPED] pf_loopback_retry
[14:59:01] ==================== [PASSED] pf_relay =====================
[14:59:01] ================== vf_relay (3 subtests) ===================
[14:59:01] [PASSED] vf_rejects_guc2vf_too_short
[14:59:01] [PASSED] vf_rejects_guc2vf_too_long
[14:59:01] [PASSED] vf_rejects_guc2vf_no_payload
[14:59:01] ==================== [PASSED] vf_relay =====================
[14:59:01] ================ pf_gt_config (6 subtests) =================
[14:59:01] [PASSED] fair_contexts_1vf
[14:59:01] [PASSED] fair_doorbells_1vf
[14:59:01] [PASSED] fair_ggtt_1vf
[14:59:01] ====================== fair_contexts ======================
[14:59:01] [PASSED] 1 VF
[14:59:01] [PASSED] 2 VFs
[14:59:01] [PASSED] 3 VFs
[14:59:01] [PASSED] 4 VFs
[14:59:01] [PASSED] 5 VFs
[14:59:01] [PASSED] 6 VFs
[14:59:01] [PASSED] 7 VFs
[14:59:01] [PASSED] 8 VFs
[14:59:01] [PASSED] 9 VFs
[14:59:01] [PASSED] 10 VFs
[14:59:01] [PASSED] 11 VFs
[14:59:01] [PASSED] 12 VFs
[14:59:01] [PASSED] 13 VFs
[14:59:01] [PASSED] 14 VFs
[14:59:01] [PASSED] 15 VFs
[14:59:01] [PASSED] 16 VFs
[14:59:01] [PASSED] 17 VFs
[14:59:01] [PASSED] 18 VFs
[14:59:01] [PASSED] 19 VFs
[14:59:01] [PASSED] 20 VFs
[14:59:01] [PASSED] 21 VFs
[14:59:01] [PASSED] 22 VFs
[14:59:01] [PASSED] 23 VFs
[14:59:01] [PASSED] 24 VFs
[14:59:01] [PASSED] 25 VFs
[14:59:01] [PASSED] 26 VFs
[14:59:01] [PASSED] 27 VFs
[14:59:01] [PASSED] 28 VFs
[14:59:01] [PASSED] 29 VFs
[14:59:01] [PASSED] 30 VFs
[14:59:01] [PASSED] 31 VFs
[14:59:01] [PASSED] 32 VFs
[14:59:01] [PASSED] 33 VFs
[14:59:01] [PASSED] 34 VFs
[14:59:01] [PASSED] 35 VFs
[14:59:01] [PASSED] 36 VFs
[14:59:01] [PASSED] 37 VFs
[14:59:01] [PASSED] 38 VFs
[14:59:01] [PASSED] 39 VFs
[14:59:01] [PASSED] 40 VFs
[14:59:01] [PASSED] 41 VFs
[14:59:01] [PASSED] 42 VFs
[14:59:01] [PASSED] 43 VFs
[14:59:01] [PASSED] 44 VFs
[14:59:01] [PASSED] 45 VFs
[14:59:01] [PASSED] 46 VFs
[14:59:01] [PASSED] 47 VFs
[14:59:01] [PASSED] 48 VFs
[14:59:01] [PASSED] 49 VFs
[14:59:01] [PASSED] 50 VFs
[14:59:01] [PASSED] 51 VFs
[14:59:01] [PASSED] 52 VFs
[14:59:01] [PASSED] 53 VFs
[14:59:01] [PASSED] 54 VFs
[14:59:01] [PASSED] 55 VFs
[14:59:01] [PASSED] 56 VFs
[14:59:01] [PASSED] 57 VFs
[14:59:01] [PASSED] 58 VFs
[14:59:01] [PASSED] 59 VFs
[14:59:01] [PASSED] 60 VFs
[14:59:01] [PASSED] 61 VFs
[14:59:01] [PASSED] 62 VFs
[14:59:01] [PASSED] 63 VFs
[14:59:01] ================== [PASSED] fair_contexts ==================
[14:59:01] ===================== fair_doorbells ======================
[14:59:01] [PASSED] 1 VF
[14:59:01] [PASSED] 2 VFs
[14:59:01] [PASSED] 3 VFs
[14:59:01] [PASSED] 4 VFs
[14:59:01] [PASSED] 5 VFs
[14:59:01] [PASSED] 6 VFs
[14:59:01] [PASSED] 7 VFs
[14:59:01] [PASSED] 8 VFs
[14:59:01] [PASSED] 9 VFs
[14:59:01] [PASSED] 10 VFs
[14:59:01] [PASSED] 11 VFs
[14:59:01] [PASSED] 12 VFs
[14:59:01] [PASSED] 13 VFs
[14:59:01] [PASSED] 14 VFs
[14:59:01] [PASSED] 15 VFs
[14:59:01] [PASSED] 16 VFs
[14:59:01] [PASSED] 17 VFs
[14:59:01] [PASSED] 18 VFs
[14:59:01] [PASSED] 19 VFs
[14:59:01] [PASSED] 20 VFs
[14:59:01] [PASSED] 21 VFs
[14:59:01] [PASSED] 22 VFs
[14:59:01] [PASSED] 23 VFs
[14:59:01] [PASSED] 24 VFs
[14:59:01] [PASSED] 25 VFs
[14:59:01] [PASSED] 26 VFs
[14:59:01] [PASSED] 27 VFs
[14:59:01] [PASSED] 28 VFs
[14:59:01] [PASSED] 29 VFs
[14:59:01] [PASSED] 30 VFs
[14:59:01] [PASSED] 31 VFs
[14:59:01] [PASSED] 32 VFs
[14:59:01] [PASSED] 33 VFs
[14:59:01] [PASSED] 34 VFs
[14:59:01] [PASSED] 35 VFs
[14:59:01] [PASSED] 36 VFs
[14:59:01] [PASSED] 37 VFs
[14:59:01] [PASSED] 38 VFs
[14:59:01] [PASSED] 39 VFs
[14:59:01] [PASSED] 40 VFs
[14:59:01] [PASSED] 41 VFs
[14:59:01] [PASSED] 42 VFs
[14:59:01] [PASSED] 43 VFs
[14:59:01] [PASSED] 44 VFs
[14:59:01] [PASSED] 45 VFs
[14:59:01] [PASSED] 46 VFs
[14:59:01] [PASSED] 47 VFs
[14:59:01] [PASSED] 48 VFs
[14:59:01] [PASSED] 49 VFs
[14:59:01] [PASSED] 50 VFs
[14:59:01] [PASSED] 51 VFs
[14:59:01] [PASSED] 52 VFs
[14:59:01] [PASSED] 53 VFs
[14:59:01] [PASSED] 54 VFs
[14:59:01] [PASSED] 55 VFs
[14:59:01] [PASSED] 56 VFs
[14:59:01] [PASSED] 57 VFs
[14:59:01] [PASSED] 58 VFs
[14:59:01] [PASSED] 59 VFs
[14:59:01] [PASSED] 60 VFs
[14:59:01] [PASSED] 61 VFs
[14:59:01] [PASSED] 62 VFs
[14:59:01] [PASSED] 63 VFs
[14:59:01] ================= [PASSED] fair_doorbells ==================
[14:59:01] ======================== fair_ggtt ========================
[14:59:01] [PASSED] 1 VF
[14:59:01] [PASSED] 2 VFs
[14:59:01] [PASSED] 3 VFs
[14:59:01] [PASSED] 4 VFs
[14:59:01] [PASSED] 5 VFs
[14:59:01] [PASSED] 6 VFs
[14:59:01] [PASSED] 7 VFs
[14:59:01] [PASSED] 8 VFs
[14:59:01] [PASSED] 9 VFs
[14:59:01] [PASSED] 10 VFs
[14:59:01] [PASSED] 11 VFs
[14:59:01] [PASSED] 12 VFs
[14:59:01] [PASSED] 13 VFs
[14:59:01] [PASSED] 14 VFs
[14:59:01] [PASSED] 15 VFs
[14:59:01] [PASSED] 16 VFs
[14:59:01] [PASSED] 17 VFs
[14:59:01] [PASSED] 18 VFs
[14:59:01] [PASSED] 19 VFs
[14:59:01] [PASSED] 20 VFs
[14:59:01] [PASSED] 21 VFs
[14:59:01] [PASSED] 22 VFs
[14:59:01] [PASSED] 23 VFs
[14:59:01] [PASSED] 24 VFs
[14:59:01] [PASSED] 25 VFs
[14:59:01] [PASSED] 26 VFs
[14:59:01] [PASSED] 27 VFs
[14:59:01] [PASSED] 28 VFs
[14:59:01] [PASSED] 29 VFs
[14:59:01] [PASSED] 30 VFs
[14:59:01] [PASSED] 31 VFs
[14:59:01] [PASSED] 32 VFs
[14:59:01] [PASSED] 33 VFs
[14:59:01] [PASSED] 34 VFs
[14:59:01] [PASSED] 35 VFs
[14:59:01] [PASSED] 36 VFs
[14:59:01] [PASSED] 37 VFs
[14:59:01] [PASSED] 38 VFs
[14:59:01] [PASSED] 39 VFs
[14:59:01] [PASSED] 40 VFs
[14:59:01] [PASSED] 41 VFs
[14:59:01] [PASSED] 42 VFs
[14:59:01] [PASSED] 43 VFs
[14:59:01] [PASSED] 44 VFs
[14:59:01] [PASSED] 45 VFs
[14:59:01] [PASSED] 46 VFs
[14:59:01] [PASSED] 47 VFs
[14:59:01] [PASSED] 48 VFs
[14:59:01] [PASSED] 49 VFs
[14:59:01] [PASSED] 50 VFs
[14:59:01] [PASSED] 51 VFs
[14:59:01] [PASSED] 52 VFs
[14:59:01] [PASSED] 53 VFs
[14:59:01] [PASSED] 54 VFs
[14:59:01] [PASSED] 55 VFs
[14:59:01] [PASSED] 56 VFs
[14:59:01] [PASSED] 57 VFs
[14:59:01] [PASSED] 58 VFs
[14:59:01] [PASSED] 59 VFs
[14:59:01] [PASSED] 60 VFs
[14:59:01] [PASSED] 61 VFs
[14:59:01] [PASSED] 62 VFs
[14:59:01] [PASSED] 63 VFs
[14:59:01] ==================== [PASSED] fair_ggtt ====================
[14:59:01] ================== [PASSED] pf_gt_config ===================
[14:59:01] ===================== lmtt (1 subtest) =====================
[14:59:01] ======================== test_ops =========================
[14:59:01] [PASSED] 2-level
[14:59:01] [PASSED] multi-level
[14:59:01] ==================== [PASSED] test_ops =====================
[14:59:01] ====================== [PASSED] lmtt =======================
[14:59:01] ================= pf_service (11 subtests) =================
[14:59:01] [PASSED] pf_negotiate_any
[14:59:01] [PASSED] pf_negotiate_base_match
[14:59:01] [PASSED] pf_negotiate_base_newer
[14:59:01] [PASSED] pf_negotiate_base_next
[14:59:01] [SKIPPED] pf_negotiate_base_older
[14:59:01] [PASSED] pf_negotiate_base_prev
[14:59:01] [PASSED] pf_negotiate_latest_match
[14:59:01] [PASSED] pf_negotiate_latest_newer
[14:59:01] [PASSED] pf_negotiate_latest_next
[14:59:01] [SKIPPED] pf_negotiate_latest_older
[14:59:01] [SKIPPED] pf_negotiate_latest_prev
[14:59:01] =================== [PASSED] pf_service ====================
[14:59:01] ================= xe_guc_g2g (2 subtests) ==================
[14:59:01] ============== xe_live_guc_g2g_kunit_default ==============
[14:59:01] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:59:01] ============== xe_live_guc_g2g_kunit_allmem ===============
[14:59:01] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:59:01] =================== [SKIPPED] xe_guc_g2g ===================
[14:59:01] =================== xe_mocs (2 subtests) ===================
[14:59:01] ================ xe_live_mocs_kernel_kunit ================
[14:59:01] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:59:01] ================ xe_live_mocs_reset_kunit =================
[14:59:01] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:59:01] ==================== [SKIPPED] xe_mocs =====================
[14:59:01] ================= xe_migrate (2 subtests) ==================
[14:59:01] ================= xe_migrate_sanity_kunit =================
[14:59:01] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:59:01] ================== xe_validate_ccs_kunit ==================
[14:59:01] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:59:01] =================== [SKIPPED] xe_migrate ===================
[14:59:01] ================== xe_dma_buf (1 subtest) ==================
[14:59:01] ==================== xe_dma_buf_kunit =====================
[14:59:01] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:59:01] =================== [SKIPPED] xe_dma_buf ===================
[14:59:01] ================= xe_bo_shrink (1 subtest) =================
[14:59:01] =================== xe_bo_shrink_kunit ====================
[14:59:01] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:59:01] ================== [SKIPPED] xe_bo_shrink ==================
[14:59:01] ==================== xe_bo (2 subtests) ====================
[14:59:01] ================== xe_ccs_migrate_kunit ===================
[14:59:01] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:59:01] ==================== xe_bo_evict_kunit ====================
[14:59:01] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:59:01] ===================== [SKIPPED] xe_bo ======================
[14:59:01] ==================== args (11 subtests) ====================
[14:59:01] [PASSED] count_args_test
[14:59:01] [PASSED] call_args_example
[14:59:01] [PASSED] call_args_test
[14:59:01] [PASSED] drop_first_arg_example
[14:59:01] [PASSED] drop_first_arg_test
[14:59:01] [PASSED] first_arg_example
[14:59:01] [PASSED] first_arg_test
[14:59:01] [PASSED] last_arg_example
[14:59:01] [PASSED] last_arg_test
[14:59:01] [PASSED] pick_arg_example
[14:59:01] [PASSED] sep_comma_example
[14:59:01] ====================== [PASSED] args =======================
[14:59:01] =================== xe_pci (3 subtests) ====================
[14:59:01] ==================== check_graphics_ip ====================
[14:59:01] [PASSED] 12.00 Xe_LP
[14:59:01] [PASSED] 12.10 Xe_LP+
[14:59:01] [PASSED] 12.55 Xe_HPG
[14:59:01] [PASSED] 12.60 Xe_HPC
[14:59:01] [PASSED] 12.70 Xe_LPG
[14:59:01] [PASSED] 12.71 Xe_LPG
[14:59:01] [PASSED] 12.74 Xe_LPG+
[14:59:01] [PASSED] 20.01 Xe2_HPG
[14:59:01] [PASSED] 20.02 Xe2_HPG
[14:59:01] [PASSED] 20.04 Xe2_LPG
[14:59:01] [PASSED] 30.00 Xe3_LPG
[14:59:01] [PASSED] 30.01 Xe3_LPG
[14:59:01] [PASSED] 30.03 Xe3_LPG
[14:59:01] [PASSED] 30.04 Xe3_LPG
[14:59:01] [PASSED] 30.05 Xe3_LPG
[14:59:01] [PASSED] 35.11 Xe3p_XPC
[14:59:01] ================ [PASSED] check_graphics_ip ================
[14:59:01] ===================== check_media_ip ======================
[14:59:01] [PASSED] 12.00 Xe_M
[14:59:01] [PASSED] 12.55 Xe_HPM
[14:59:01] [PASSED] 13.00 Xe_LPM+
[14:59:01] [PASSED] 13.01 Xe2_HPM
[14:59:01] [PASSED] 20.00 Xe2_LPM
[14:59:01] [PASSED] 30.00 Xe3_LPM
[14:59:01] [PASSED] 30.02 Xe3_LPM
[14:59:01] [PASSED] 35.00 Xe3p_LPM
[14:59:01] [PASSED] 35.03 Xe3p_HPM
[14:59:01] ================= [PASSED] check_media_ip ==================
[14:59:01] =================== check_platform_desc ===================
[14:59:01] [PASSED] 0x9A60 (TIGERLAKE)
[14:59:01] [PASSED] 0x9A68 (TIGERLAKE)
[14:59:01] [PASSED] 0x9A70 (TIGERLAKE)
[14:59:01] [PASSED] 0x9A40 (TIGERLAKE)
[14:59:01] [PASSED] 0x9A49 (TIGERLAKE)
[14:59:01] [PASSED] 0x9A59 (TIGERLAKE)
[14:59:01] [PASSED] 0x9A78 (TIGERLAKE)
[14:59:01] [PASSED] 0x9AC0 (TIGERLAKE)
[14:59:01] [PASSED] 0x9AC9 (TIGERLAKE)
[14:59:01] [PASSED] 0x9AD9 (TIGERLAKE)
[14:59:01] [PASSED] 0x9AF8 (TIGERLAKE)
[14:59:01] [PASSED] 0x4C80 (ROCKETLAKE)
[14:59:01] [PASSED] 0x4C8A (ROCKETLAKE)
[14:59:01] [PASSED] 0x4C8B (ROCKETLAKE)
[14:59:01] [PASSED] 0x4C8C (ROCKETLAKE)
[14:59:01] [PASSED] 0x4C90 (ROCKETLAKE)
[14:59:01] [PASSED] 0x4C9A (ROCKETLAKE)
[14:59:01] [PASSED] 0x4680 (ALDERLAKE_S)
[14:59:01] [PASSED] 0x4682 (ALDERLAKE_S)
[14:59:01] [PASSED] 0x4688 (ALDERLAKE_S)
[14:59:01] [PASSED] 0x468A (ALDERLAKE_S)
[14:59:01] [PASSED] 0x468B (ALDERLAKE_S)
[14:59:01] [PASSED] 0x4690 (ALDERLAKE_S)
[14:59:01] [PASSED] 0x4692 (ALDERLAKE_S)
[14:59:01] [PASSED] 0x4693 (ALDERLAKE_S)
[14:59:01] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46AA (ALDERLAKE_P)
[14:59:01] [PASSED] 0x462A (ALDERLAKE_P)
[14:59:01] [PASSED] 0x4626 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x4628 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[14:59:01] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:59:01] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:59:01] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:59:01] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:59:01] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:59:01] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:59:01] [PASSED] 0xA721 (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA720 (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:59:01] [PASSED] 0xA780 (ALDERLAKE_S)
[14:59:01] [PASSED] 0xA781 (ALDERLAKE_S)
[14:59:01] [PASSED] 0xA782 (ALDERLAKE_S)
[14:59:01] [PASSED] 0xA783 (ALDERLAKE_S)
[14:59:01] [PASSED] 0xA788 (ALDERLAKE_S)
[14:59:01] [PASSED] 0xA789 (ALDERLAKE_S)
[14:59:01] [PASSED] 0xA78A (ALDERLAKE_S)
[14:59:01] [PASSED] 0xA78B (ALDERLAKE_S)
[14:59:01] [PASSED] 0x4905 (DG1)
[14:59:01] [PASSED] 0x4906 (DG1)
[14:59:01] [PASSED] 0x4907 (DG1)
[14:59:01] [PASSED] 0x4908 (DG1)
[14:59:01] [PASSED] 0x4909 (DG1)
[14:59:01] [PASSED] 0x56C0 (DG2)
[14:59:01] [PASSED] 0x56C2 (DG2)
[14:59:01] [PASSED] 0x56C1 (DG2)
[14:59:01] [PASSED] 0x7D51 (METEORLAKE)
[14:59:01] [PASSED] 0x7DD1 (METEORLAKE)
[14:59:01] [PASSED] 0x7D41 (METEORLAKE)
[14:59:01] [PASSED] 0x7D67 (METEORLAKE)
[14:59:01] [PASSED] 0xB640 (METEORLAKE)
[14:59:01] [PASSED] 0x56A0 (DG2)
[14:59:01] [PASSED] 0x56A1 (DG2)
[14:59:01] [PASSED] 0x56A2 (DG2)
[14:59:01] [PASSED] 0x56BE (DG2)
[14:59:01] [PASSED] 0x56BF (DG2)
[14:59:01] [PASSED] 0x5690 (DG2)
[14:59:01] [PASSED] 0x5691 (DG2)
[14:59:01] [PASSED] 0x5692 (DG2)
[14:59:01] [PASSED] 0x56A5 (DG2)
[14:59:01] [PASSED] 0x56A6 (DG2)
[14:59:01] [PASSED] 0x56B0 (DG2)
[14:59:01] [PASSED] 0x56B1 (DG2)
[14:59:01] [PASSED] 0x56BA (DG2)
[14:59:01] [PASSED] 0x56BB (DG2)
[14:59:01] [PASSED] 0x56BC (DG2)
[14:59:01] [PASSED] 0x56BD (DG2)
[14:59:01] [PASSED] 0x5693 (DG2)
[14:59:01] [PASSED] 0x5694 (DG2)
[14:59:01] [PASSED] 0x5695 (DG2)
[14:59:01] [PASSED] 0x56A3 (DG2)
[14:59:01] [PASSED] 0x56A4 (DG2)
[14:59:01] [PASSED] 0x56B2 (DG2)
[14:59:01] [PASSED] 0x56B3 (DG2)
[14:59:01] [PASSED] 0x5696 (DG2)
[14:59:01] [PASSED] 0x5697 (DG2)
[14:59:01] [PASSED] 0xB69 (PVC)
[14:59:01] [PASSED] 0xB6E (PVC)
[14:59:01] [PASSED] 0xBD4 (PVC)
[14:59:01] [PASSED] 0xBD5 (PVC)
[14:59:01] [PASSED] 0xBD6 (PVC)
[14:59:01] [PASSED] 0xBD7 (PVC)
[14:59:01] [PASSED] 0xBD8 (PVC)
[14:59:01] [PASSED] 0xBD9 (PVC)
[14:59:01] [PASSED] 0xBDA (PVC)
[14:59:01] [PASSED] 0xBDB (PVC)
[14:59:01] [PASSED] 0xBE0 (PVC)
[14:59:01] [PASSED] 0xBE1 (PVC)
[14:59:01] [PASSED] 0xBE5 (PVC)
[14:59:01] [PASSED] 0x7D40 (METEORLAKE)
[14:59:01] [PASSED] 0x7D45 (METEORLAKE)
[14:59:01] [PASSED] 0x7D55 (METEORLAKE)
[14:59:01] [PASSED] 0x7D60 (METEORLAKE)
[14:59:01] [PASSED] 0x7DD5 (METEORLAKE)
[14:59:01] [PASSED] 0x6420 (LUNARLAKE)
[14:59:01] [PASSED] 0x64A0 (LUNARLAKE)
[14:59:01] [PASSED] 0x64B0 (LUNARLAKE)
[14:59:01] [PASSED] 0xE202 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE209 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE20B (BATTLEMAGE)
[14:59:01] [PASSED] 0xE20C (BATTLEMAGE)
[14:59:01] [PASSED] 0xE20D (BATTLEMAGE)
[14:59:01] [PASSED] 0xE210 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE211 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE212 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE216 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE220 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE221 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE222 (BATTLEMAGE)
[14:59:01] [PASSED] 0xE223 (BATTLEMAGE)
[14:59:01] [PASSED] 0xB080 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB081 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB082 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB083 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB084 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB085 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB086 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB087 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB08F (PANTHERLAKE)
[14:59:01] [PASSED] 0xB090 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:59:01] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:59:01] [PASSED] 0xD740 (NOVALAKE_S)
[14:59:01] [PASSED] 0xD741 (NOVALAKE_S)
[14:59:01] [PASSED] 0xD742 (NOVALAKE_S)
[14:59:01] [PASSED] 0xD743 (NOVALAKE_S)
[14:59:01] [PASSED] 0xD744 (NOVALAKE_S)
[14:59:01] [PASSED] 0xD745 (NOVALAKE_S)
[14:59:01] [PASSED] 0x674C (CRESCENTISLAND)
[14:59:01] [PASSED] 0xFD80 (PANTHERLAKE)
[14:59:01] [PASSED] 0xFD81 (PANTHERLAKE)
[14:59:01] =============== [PASSED] check_platform_desc ===============
[14:59:01] ===================== [PASSED] xe_pci ======================
[14:59:01] =================== xe_rtp (2 subtests) ====================
[14:59:01] =============== xe_rtp_process_to_sr_tests ================
[14:59:01] [PASSED] coalesce-same-reg
[14:59:01] [PASSED] no-match-no-add
[14:59:01] [PASSED] match-or
[14:59:01] [PASSED] match-or-xfail
[14:59:01] [PASSED] no-match-no-add-multiple-rules
[14:59:01] [PASSED] two-regs-two-entries
[14:59:01] [PASSED] clr-one-set-other
[14:59:01] [PASSED] set-field
[14:59:01] [PASSED] conflict-duplicate
[14:59:01] [PASSED] conflict-not-disjoint
[14:59:01] [PASSED] conflict-reg-type
[14:59:01] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:59:01] ================== xe_rtp_process_tests ===================
[14:59:01] [PASSED] active1
[14:59:01] [PASSED] active2
[14:59:01] [PASSED] active-inactive
[14:59:01] [PASSED] inactive-active
[14:59:01] [PASSED] inactive-1st_or_active-inactive
[14:59:01] [PASSED] inactive-2nd_or_active-inactive
[14:59:01] [PASSED] inactive-last_or_active-inactive
[14:59:01] [PASSED] inactive-no_or_active-inactive
[14:59:01] ============== [PASSED] xe_rtp_process_tests ===============
[14:59:01] ===================== [PASSED] xe_rtp ======================
[14:59:01] ==================== xe_wa (1 subtest) =====================
[14:59:01] ======================== xe_wa_gt =========================
[14:59:01] [PASSED] TIGERLAKE B0
[14:59:01] [PASSED] DG1 A0
[14:59:01] [PASSED] DG1 B0
[14:59:01] [PASSED] ALDERLAKE_S A0
[14:59:01] [PASSED] ALDERLAKE_S B0
[14:59:01] [PASSED] ALDERLAKE_S C0
[14:59:01] [PASSED] ALDERLAKE_S D0
[14:59:01] [PASSED] ALDERLAKE_P A0
[14:59:01] [PASSED] ALDERLAKE_P B0
[14:59:01] [PASSED] ALDERLAKE_P C0
[14:59:01] [PASSED] ALDERLAKE_S RPLS D0
[14:59:01] [PASSED] ALDERLAKE_P RPLU E0
[14:59:01] [PASSED] DG2 G10 C0
[14:59:01] [PASSED] DG2 G11 B1
[14:59:01] [PASSED] DG2 G12 A1
[14:59:01] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:59:01] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:59:01] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:59:01] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:59:01] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:59:01] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:59:01] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:59:01] ==================== [PASSED] xe_wa_gt =====================
[14:59:01] ====================== [PASSED] xe_wa ======================
[14:59:01] ============================================================
[14:59:01] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[14:59:01] Elapsed time: 35.514s total, 4.216s configuring, 30.781s building, 0.469s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:59:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:59:03] 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
[14:59:28] Starting KUnit Kernel (1/1)...
[14:59:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:59:28] ============ drm_test_pick_cmdline (2 subtests) ============
[14:59:28] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[14:59:28] =============== drm_test_pick_cmdline_named ===============
[14:59:28] [PASSED] NTSC
[14:59:28] [PASSED] NTSC-J
[14:59:28] [PASSED] PAL
[14:59:28] [PASSED] PAL-M
[14:59:28] =========== [PASSED] drm_test_pick_cmdline_named ===========
[14:59:28] ============== [PASSED] drm_test_pick_cmdline ==============
[14:59:28] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[14:59:28] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[14:59:28] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[14:59:28] =========== drm_validate_clone_mode (2 subtests) ===========
[14:59:28] ============== drm_test_check_in_clone_mode ===============
[14:59:28] [PASSED] in_clone_mode
[14:59:28] [PASSED] not_in_clone_mode
[14:59:28] ========== [PASSED] drm_test_check_in_clone_mode ===========
[14:59:28] =============== drm_test_check_valid_clones ===============
[14:59:28] [PASSED] not_in_clone_mode
[14:59:28] [PASSED] valid_clone
[14:59:28] [PASSED] invalid_clone
[14:59:28] =========== [PASSED] drm_test_check_valid_clones ===========
[14:59:28] ============= [PASSED] drm_validate_clone_mode =============
[14:59:28] ============= drm_validate_modeset (1 subtest) =============
[14:59:28] [PASSED] drm_test_check_connector_changed_modeset
[14:59:28] ============== [PASSED] drm_validate_modeset ===============
[14:59:28] ====== drm_test_bridge_get_current_state (2 subtests) ======
[14:59:28] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[14:59:28] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[14:59:28] ======== [PASSED] drm_test_bridge_get_current_state ========
[14:59:28] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[14:59:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[14:59:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[14:59:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[14:59:28] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[14:59:28] ============== drm_bridge_alloc (2 subtests) ===============
[14:59:28] [PASSED] drm_test_drm_bridge_alloc_basic
[14:59:28] [PASSED] drm_test_drm_bridge_alloc_get_put
[14:59:28] ================ [PASSED] drm_bridge_alloc =================
[14:59:28] ================== drm_buddy (8 subtests) ==================
[14:59:28] [PASSED] drm_test_buddy_alloc_limit
[14:59:28] [PASSED] drm_test_buddy_alloc_optimistic
[14:59:28] [PASSED] drm_test_buddy_alloc_pessimistic
[14:59:28] [PASSED] drm_test_buddy_alloc_pathological
[14:59:28] [PASSED] drm_test_buddy_alloc_contiguous
[14:59:28] [PASSED] drm_test_buddy_alloc_clear
[14:59:28] [PASSED] drm_test_buddy_alloc_range_bias
[14:59:28] [PASSED] drm_test_buddy_fragmentation_performance
[14:59:28] ==================== [PASSED] drm_buddy ====================
[14:59:28] ============= drm_cmdline_parser (40 subtests) =============
[14:59:28] [PASSED] drm_test_cmdline_force_d_only
[14:59:28] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:59:28] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:59:28] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:59:28] [PASSED] drm_test_cmdline_force_e_only
[14:59:28] [PASSED] drm_test_cmdline_res
[14:59:28] [PASSED] drm_test_cmdline_res_vesa
[14:59:28] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:59:28] [PASSED] drm_test_cmdline_res_rblank
[14:59:28] [PASSED] drm_test_cmdline_res_bpp
[14:59:28] [PASSED] drm_test_cmdline_res_refresh
[14:59:28] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:59:28] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:59:28] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:59:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:59:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:59:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:59:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:59:28] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:59:28] [PASSED] drm_test_cmdline_res_margins_force_on
[14:59:28] [PASSED] drm_test_cmdline_res_vesa_margins
[14:59:28] [PASSED] drm_test_cmdline_name
[14:59:28] [PASSED] drm_test_cmdline_name_bpp
[14:59:28] [PASSED] drm_test_cmdline_name_option
[14:59:28] [PASSED] drm_test_cmdline_name_bpp_option
[14:59:28] [PASSED] drm_test_cmdline_rotate_0
[14:59:28] [PASSED] drm_test_cmdline_rotate_90
[14:59:28] [PASSED] drm_test_cmdline_rotate_180
[14:59:28] [PASSED] drm_test_cmdline_rotate_270
[14:59:28] [PASSED] drm_test_cmdline_hmirror
[14:59:28] [PASSED] drm_test_cmdline_vmirror
[14:59:28] [PASSED] drm_test_cmdline_margin_options
[14:59:28] [PASSED] drm_test_cmdline_multiple_options
[14:59:28] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:59:28] [PASSED] drm_test_cmdline_extra_and_option
[14:59:28] [PASSED] drm_test_cmdline_freestanding_options
[14:59:28] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:59:28] [PASSED] drm_test_cmdline_panel_orientation
[14:59:28] ================ drm_test_cmdline_invalid =================
[14:59:28] [PASSED] margin_only
[14:59:28] [PASSED] interlace_only
[14:59:28] [PASSED] res_missing_x
[14:59:28] [PASSED] res_missing_y
[14:59:28] [PASSED] res_bad_y
[14:59:28] [PASSED] res_missing_y_bpp
[14:59:28] [PASSED] res_bad_bpp
[14:59:28] [PASSED] res_bad_refresh
[14:59:28] [PASSED] res_bpp_refresh_force_on_off
[14:59:28] [PASSED] res_invalid_mode
[14:59:28] [PASSED] res_bpp_wrong_place_mode
[14:59:28] [PASSED] name_bpp_refresh
[14:59:28] [PASSED] name_refresh
[14:59:28] [PASSED] name_refresh_wrong_mode
[14:59:28] [PASSED] name_refresh_invalid_mode
[14:59:28] [PASSED] rotate_multiple
[14:59:28] [PASSED] rotate_invalid_val
[14:59:28] [PASSED] rotate_truncated
[14:59:28] [PASSED] invalid_option
[14:59:28] [PASSED] invalid_tv_option
[14:59:28] [PASSED] truncated_tv_option
[14:59:28] ============ [PASSED] drm_test_cmdline_invalid =============
[14:59:28] =============== drm_test_cmdline_tv_options ===============
[14:59:28] [PASSED] NTSC
[14:59:28] [PASSED] NTSC_443
[14:59:28] [PASSED] NTSC_J
[14:59:28] [PASSED] PAL
[14:59:28] [PASSED] PAL_M
[14:59:28] [PASSED] PAL_N
[14:59:28] [PASSED] SECAM
[14:59:28] [PASSED] MONO_525
[14:59:28] [PASSED] MONO_625
[14:59:28] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:59:28] =============== [PASSED] drm_cmdline_parser ================
[14:59:28] ========== drmm_connector_hdmi_init (20 subtests) ==========
[14:59:28] [PASSED] drm_test_connector_hdmi_init_valid
[14:59:28] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:59:28] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:59:28] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:59:28] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:59:28] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:59:28] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:59:28] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:59:28] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:59:28] [PASSED] supported_formats=0x9 yuv420_allowed=1
[14:59:28] [PASSED] supported_formats=0x9 yuv420_allowed=0
[14:59:28] [PASSED] supported_formats=0x3 yuv420_allowed=1
[14:59:28] [PASSED] supported_formats=0x3 yuv420_allowed=0
[14:59:28] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:59:28] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:59:28] [PASSED] drm_test_connector_hdmi_init_null_product
[14:59:28] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:59:28] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:59:28] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:59:28] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:59:28] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:59:28] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:59:28] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:59:28] ========= drm_test_connector_hdmi_init_type_valid =========
[14:59:28] [PASSED] HDMI-A
[14:59:28] [PASSED] HDMI-B
[14:59:28] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:59:28] ======== drm_test_connector_hdmi_init_type_invalid ========
[14:59:28] [PASSED] Unknown
[14:59:28] [PASSED] VGA
[14:59:28] [PASSED] DVI-I
[14:59:28] [PASSED] DVI-D
[14:59:28] [PASSED] DVI-A
[14:59:28] [PASSED] Composite
[14:59:28] [PASSED] SVIDEO
[14:59:28] [PASSED] LVDS
[14:59:28] [PASSED] Component
[14:59:28] [PASSED] DIN
[14:59:28] [PASSED] DP
[14:59:28] [PASSED] TV
[14:59:28] [PASSED] eDP
[14:59:28] [PASSED] Virtual
[14:59:28] [PASSED] DSI
[14:59:28] [PASSED] DPI
[14:59:28] [PASSED] Writeback
[14:59:28] [PASSED] SPI
[14:59:28] [PASSED] USB
[14:59:28] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:59:28] ============ [PASSED] drmm_connector_hdmi_init =============
[14:59:28] ============= drmm_connector_init (3 subtests) =============
[14:59:28] [PASSED] drm_test_drmm_connector_init
[14:59:28] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:59:28] ========= drm_test_drmm_connector_init_type_valid =========
[14:59:28] [PASSED] Unknown
[14:59:28] [PASSED] VGA
[14:59:28] [PASSED] DVI-I
[14:59:28] [PASSED] DVI-D
[14:59:28] [PASSED] DVI-A
[14:59:28] [PASSED] Composite
[14:59:28] [PASSED] SVIDEO
[14:59:28] [PASSED] LVDS
[14:59:28] [PASSED] Component
[14:59:28] [PASSED] DIN
[14:59:28] [PASSED] DP
[14:59:28] [PASSED] HDMI-A
[14:59:28] [PASSED] HDMI-B
[14:59:28] [PASSED] TV
[14:59:28] [PASSED] eDP
[14:59:28] [PASSED] Virtual
[14:59:28] [PASSED] DSI
[14:59:28] [PASSED] DPI
[14:59:28] [PASSED] Writeback
[14:59:28] [PASSED] SPI
[14:59:28] [PASSED] USB
[14:59:28] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:59:28] =============== [PASSED] drmm_connector_init ===============
[14:59:28] ========= drm_connector_dynamic_init (6 subtests) ==========
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_init
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_init_properties
[14:59:28] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[14:59:28] [PASSED] Unknown
[14:59:28] [PASSED] VGA
[14:59:28] [PASSED] DVI-I
[14:59:28] [PASSED] DVI-D
[14:59:28] [PASSED] DVI-A
[14:59:28] [PASSED] Composite
[14:59:28] [PASSED] SVIDEO
[14:59:28] [PASSED] LVDS
[14:59:28] [PASSED] Component
[14:59:28] [PASSED] DIN
[14:59:28] [PASSED] DP
[14:59:28] [PASSED] HDMI-A
[14:59:28] [PASSED] HDMI-B
[14:59:28] [PASSED] TV
[14:59:28] [PASSED] eDP
[14:59:28] [PASSED] Virtual
[14:59:28] [PASSED] DSI
[14:59:28] [PASSED] DPI
[14:59:28] [PASSED] Writeback
[14:59:28] [PASSED] SPI
[14:59:28] [PASSED] USB
[14:59:28] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[14:59:28] ======== drm_test_drm_connector_dynamic_init_name =========
[14:59:28] [PASSED] Unknown
[14:59:28] [PASSED] VGA
[14:59:28] [PASSED] DVI-I
[14:59:28] [PASSED] DVI-D
[14:59:28] [PASSED] DVI-A
[14:59:28] [PASSED] Composite
[14:59:28] [PASSED] SVIDEO
[14:59:28] [PASSED] LVDS
[14:59:28] [PASSED] Component
[14:59:28] [PASSED] DIN
[14:59:28] [PASSED] DP
[14:59:28] [PASSED] HDMI-A
[14:59:28] [PASSED] HDMI-B
[14:59:28] [PASSED] TV
[14:59:28] [PASSED] eDP
[14:59:28] [PASSED] Virtual
[14:59:28] [PASSED] DSI
[14:59:28] [PASSED] DPI
[14:59:28] [PASSED] Writeback
[14:59:28] [PASSED] SPI
[14:59:28] [PASSED] USB
[14:59:28] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[14:59:28] =========== [PASSED] drm_connector_dynamic_init ============
[14:59:28] ==== drm_connector_dynamic_register_early (4 subtests) =====
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[14:59:28] ====== [PASSED] drm_connector_dynamic_register_early =======
[14:59:28] ======= drm_connector_dynamic_register (7 subtests) ========
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[14:59:28] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[14:59:28] ========= [PASSED] drm_connector_dynamic_register ==========
[14:59:28] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:59:28] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:59:28] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:59:28] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:59:28] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:59:28] ========== drm_test_get_tv_mode_from_name_valid ===========
[14:59:28] [PASSED] NTSC
[14:59:28] [PASSED] NTSC-443
[14:59:28] [PASSED] NTSC-J
[14:59:28] [PASSED] PAL
[14:59:28] [PASSED] PAL-M
[14:59:28] [PASSED] PAL-N
[14:59:28] [PASSED] SECAM
[14:59:28] [PASSED] Mono
[14:59:28] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:59:28] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:59:28] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:59:28] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:59:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:59:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:59:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:59:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:59:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:59:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:59:28] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[14:59:28] [PASSED] VIC 96
[14:59:28] [PASSED] VIC 97
[14:59:28] [PASSED] VIC 101
[14:59:28] [PASSED] VIC 102
[14:59:28] [PASSED] VIC 106
[14:59:28] [PASSED] VIC 107
[14:59:28] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:59:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:59:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:59:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:59:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:59:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:59:28] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:59:28] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:59:28] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[14:59:28] [PASSED] Automatic
[14:59:28] [PASSED] Full
[14:59:28] [PASSED] Limited 16:235
[14:59:28] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:59:28] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:59:28] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:59:28] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:59:28] === drm_test_drm_hdmi_connector_get_output_format_name ====
[14:59:28] [PASSED] RGB
[14:59:28] [PASSED] YUV 4:2:0
[14:59:28] [PASSED] YUV 4:2:2
[14:59:28] [PASSED] YUV 4:4:4
[14:59:28] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:59:28] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:59:28] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:59:28] ============= drm_damage_helper (21 subtests) ==============
[14:59:28] [PASSED] drm_test_damage_iter_no_damage
[14:59:28] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:59:28] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:59:28] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:59:28] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:59:28] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:59:28] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:59:28] [PASSED] drm_test_damage_iter_simple_damage
[14:59:28] [PASSED] drm_test_damage_iter_single_damage
[14:59:28] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:59:28] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:59:28] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:59:28] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:59:28] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:59:28] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:59:28] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:59:28] [PASSED] drm_test_damage_iter_damage
[14:59:28] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:59:28] [PASSED] drm_test_damage_iter_damage_one_outside
[14:59:28] [PASSED] drm_test_damage_iter_damage_src_moved
[14:59:28] [PASSED] drm_test_damage_iter_damage_not_visible
[14:59:28] ================ [PASSED] drm_damage_helper ================
[14:59:28] ============== drm_dp_mst_helper (3 subtests) ==============
[14:59:28] ============== drm_test_dp_mst_calc_pbn_mode ==============
[14:59:28] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:59:28] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:59:28] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:59:28] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:59:28] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:59:28] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:59:28] ============== drm_test_dp_mst_calc_pbn_div ===============
[14:59:28] [PASSED] Link rate 2000000 lane count 4
[14:59:28] [PASSED] Link rate 2000000 lane count 2
[14:59:28] [PASSED] Link rate 2000000 lane count 1
[14:59:28] [PASSED] Link rate 1350000 lane count 4
[14:59:28] [PASSED] Link rate 1350000 lane count 2
[14:59:28] [PASSED] Link rate 1350000 lane count 1
[14:59:28] [PASSED] Link rate 1000000 lane count 4
[14:59:28] [PASSED] Link rate 1000000 lane count 2
[14:59:28] [PASSED] Link rate 1000000 lane count 1
[14:59:28] [PASSED] Link rate 810000 lane count 4
[14:59:28] [PASSED] Link rate 810000 lane count 2
[14:59:28] [PASSED] Link rate 810000 lane count 1
[14:59:28] [PASSED] Link rate 540000 lane count 4
[14:59:28] [PASSED] Link rate 540000 lane count 2
[14:59:28] [PASSED] Link rate 540000 lane count 1
[14:59:28] [PASSED] Link rate 270000 lane count 4
[14:59:28] [PASSED] Link rate 270000 lane count 2
[14:59:28] [PASSED] Link rate 270000 lane count 1
[14:59:28] [PASSED] Link rate 162000 lane count 4
[14:59:28] [PASSED] Link rate 162000 lane count 2
[14:59:28] [PASSED] Link rate 162000 lane count 1
[14:59:28] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:59:28] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[14:59:28] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:59:28] [PASSED] DP_POWER_UP_PHY with port number
[14:59:28] [PASSED] DP_POWER_DOWN_PHY with port number
[14:59:28] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:59:28] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:59:28] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:59:28] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:59:28] [PASSED] DP_QUERY_PAYLOAD with port number
[14:59:28] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:59:28] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:59:28] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:59:28] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:59:28] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:59:28] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:59:28] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:59:28] [PASSED] DP_REMOTE_I2C_READ with port number
[14:59:28] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:59:28] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:59:28] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:59:28] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:59:28] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:59:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:59:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:59:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:59:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:59:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:59:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:59:28] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:59:28] ================ [PASSED] drm_dp_mst_helper ================
[14:59:28] ================== drm_exec (7 subtests) ===================
[14:59:28] [PASSED] sanitycheck
[14:59:28] [PASSED] test_lock
[14:59:28] [PASSED] test_lock_unlock
[14:59:28] [PASSED] test_duplicates
[14:59:28] [PASSED] test_prepare
[14:59:28] [PASSED] test_prepare_array
[14:59:28] [PASSED] test_multiple_loops
[14:59:28] ==================== [PASSED] drm_exec =====================
[14:59:28] =========== drm_format_helper_test (17 subtests) ===========
[14:59:28] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:59:28] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:59:28] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:59:28] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:59:28] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:59:28] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:59:28] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:59:28] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[14:59:28] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:59:28] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:59:28] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:59:28] ============== drm_test_fb_xrgb8888_to_mono ===============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:59:28] ==================== drm_test_fb_swab =====================
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ================ [PASSED] drm_test_fb_swab =================
[14:59:28] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:59:28] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[14:59:28] [PASSED] single_pixel_source_buffer
[14:59:28] [PASSED] single_pixel_clip_rectangle
[14:59:28] [PASSED] well_known_colors
[14:59:28] [PASSED] destination_pitch
[14:59:28] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:59:28] ================= drm_test_fb_clip_offset =================
[14:59:28] [PASSED] pass through
[14:59:28] [PASSED] horizontal offset
[14:59:28] [PASSED] vertical offset
[14:59:28] [PASSED] horizontal and vertical offset
[14:59:28] [PASSED] horizontal offset (custom pitch)
[14:59:28] [PASSED] vertical offset (custom pitch)
[14:59:28] [PASSED] horizontal and vertical offset (custom pitch)
[14:59:28] ============= [PASSED] drm_test_fb_clip_offset =============
[14:59:28] =================== drm_test_fb_memcpy ====================
[14:59:28] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:59:28] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:59:28] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:59:28] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:59:28] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:59:28] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:59:28] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:59:28] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:59:28] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:59:28] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:59:28] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:59:28] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:59:28] =============== [PASSED] drm_test_fb_memcpy ================
[14:59:28] ============= [PASSED] drm_format_helper_test ==============
[14:59:28] ================= drm_format (18 subtests) =================
[14:59:28] [PASSED] drm_test_format_block_width_invalid
[14:59:28] [PASSED] drm_test_format_block_width_one_plane
[14:59:28] [PASSED] drm_test_format_block_width_two_plane
[14:59:28] [PASSED] drm_test_format_block_width_three_plane
[14:59:28] [PASSED] drm_test_format_block_width_tiled
[14:59:28] [PASSED] drm_test_format_block_height_invalid
[14:59:28] [PASSED] drm_test_format_block_height_one_plane
[14:59:28] [PASSED] drm_test_format_block_height_two_plane
[14:59:28] [PASSED] drm_test_format_block_height_three_plane
[14:59:28] [PASSED] drm_test_format_block_height_tiled
[14:59:28] [PASSED] drm_test_format_min_pitch_invalid
[14:59:28] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:59:28] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:59:28] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:59:28] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:59:28] [PASSED] drm_test_format_min_pitch_two_plane
[14:59:28] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:59:28] [PASSED] drm_test_format_min_pitch_tiled
[14:59:28] =================== [PASSED] drm_format ====================
[14:59:28] ============== drm_framebuffer (10 subtests) ===============
[14:59:28] ========== drm_test_framebuffer_check_src_coords ==========
[14:59:28] [PASSED] Success: source fits into fb
[14:59:28] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:59:28] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:59:28] [PASSED] Fail: overflowing fb with source width
[14:59:28] [PASSED] Fail: overflowing fb with source height
[14:59:28] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:59:28] [PASSED] drm_test_framebuffer_cleanup
[14:59:28] =============== drm_test_framebuffer_create ===============
[14:59:28] [PASSED] ABGR8888 normal sizes
[14:59:28] [PASSED] ABGR8888 max sizes
[14:59:28] [PASSED] ABGR8888 pitch greater than min required
[14:59:28] [PASSED] ABGR8888 pitch less than min required
[14:59:28] [PASSED] ABGR8888 Invalid width
[14:59:28] [PASSED] ABGR8888 Invalid buffer handle
[14:59:28] [PASSED] No pixel format
[14:59:28] [PASSED] ABGR8888 Width 0
[14:59:28] [PASSED] ABGR8888 Height 0
[14:59:28] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:59:28] [PASSED] ABGR8888 Large buffer offset
[14:59:28] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:59:28] [PASSED] ABGR8888 Invalid flag
[14:59:28] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:59:28] [PASSED] ABGR8888 Valid buffer modifier
[14:59:28] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:59:28] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:59:28] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:59:28] [PASSED] NV12 Normal sizes
[14:59:28] [PASSED] NV12 Max sizes
[14:59:28] [PASSED] NV12 Invalid pitch
[14:59:28] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:59:28] [PASSED] NV12 different modifier per-plane
[14:59:28] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:59:28] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:59:28] [PASSED] NV12 Modifier for inexistent plane
[14:59:28] [PASSED] NV12 Handle for inexistent plane
[14:59:28] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:59:28] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:59:28] [PASSED] YVU420 Normal sizes
[14:59:28] [PASSED] YVU420 Max sizes
[14:59:28] [PASSED] YVU420 Invalid pitch
[14:59:28] [PASSED] YVU420 Different pitches
[14:59:28] [PASSED] YVU420 Different buffer offsets/pitches
[14:59:28] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:59:28] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:59:28] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:59:28] [PASSED] YVU420 Valid modifier
[14:59:28] [PASSED] YVU420 Different modifiers per plane
[14:59:28] [PASSED] YVU420 Modifier for inexistent plane
[14:59:28] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:59:28] [PASSED] X0L2 Normal sizes
[14:59:28] [PASSED] X0L2 Max sizes
[14:59:28] [PASSED] X0L2 Invalid pitch
[14:59:28] [PASSED] X0L2 Pitch greater than minimum required
[14:59:28] [PASSED] X0L2 Handle for inexistent plane
[14:59:28] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:59:28] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:59:28] [PASSED] X0L2 Valid modifier
[14:59:28] [PASSED] X0L2 Modifier for inexistent plane
[14:59:28] =========== [PASSED] drm_test_framebuffer_create ===========
[14:59:28] [PASSED] drm_test_framebuffer_free
[14:59:28] [PASSED] drm_test_framebuffer_init
[14:59:28] [PASSED] drm_test_framebuffer_init_bad_format
[14:59:28] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:59:28] [PASSED] drm_test_framebuffer_lookup
[14:59:28] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:59:28] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:59:28] ================= [PASSED] drm_framebuffer =================
[14:59:28] ================ drm_gem_shmem (8 subtests) ================
[14:59:28] [PASSED] drm_gem_shmem_test_obj_create
[14:59:28] [PASSED] drm_gem_shmem_test_obj_create_private
[14:59:28] [PASSED] drm_gem_shmem_test_pin_pages
[14:59:28] [PASSED] drm_gem_shmem_test_vmap
[14:59:28] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:59:28] [PASSED] drm_gem_shmem_test_get_sg_table
[14:59:28] [PASSED] drm_gem_shmem_test_madvise
[14:59:28] [PASSED] drm_gem_shmem_test_purge
[14:59:28] ================== [PASSED] drm_gem_shmem ==================
[14:59:28] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:59:28] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[14:59:28] [PASSED] Automatic
[14:59:28] [PASSED] Full
[14:59:28] [PASSED] Limited 16:235
[14:59:28] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:59:28] [PASSED] drm_test_check_disable_connector
[14:59:28] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:59:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[14:59:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[14:59:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[14:59:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[14:59:28] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[14:59:28] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:59:28] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:59:28] [PASSED] drm_test_check_output_bpc_dvi
[14:59:28] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:59:28] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:59:28] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:59:28] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:59:28] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:59:28] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:59:28] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:59:28] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:59:28] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:59:28] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:59:28] [PASSED] drm_test_check_broadcast_rgb_value
[14:59:28] [PASSED] drm_test_check_bpc_8_value
[14:59:28] [PASSED] drm_test_check_bpc_10_value
[14:59:28] [PASSED] drm_test_check_bpc_12_value
[14:59:28] [PASSED] drm_test_check_format_value
[14:59:28] [PASSED] drm_test_check_tmds_char_value
[14:59:28] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:59:28] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[14:59:28] [PASSED] drm_test_check_mode_valid
[14:59:28] [PASSED] drm_test_check_mode_valid_reject
[14:59:28] [PASSED] drm_test_check_mode_valid_reject_rate
[14:59:28] [PASSED] drm_test_check_mode_valid_reject_max_clock
[14:59:28] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[14:59:28] ================= drm_managed (2 subtests) =================
[14:59:28] [PASSED] drm_test_managed_release_action
[14:59:28] [PASSED] drm_test_managed_run_action
[14:59:28] =================== [PASSED] drm_managed ===================
[14:59:28] =================== drm_mm (6 subtests) ====================
[14:59:28] [PASSED] drm_test_mm_init
[14:59:28] [PASSED] drm_test_mm_debug
[14:59:28] [PASSED] drm_test_mm_align32
[14:59:28] [PASSED] drm_test_mm_align64
[14:59:28] [PASSED] drm_test_mm_lowest
[14:59:28] [PASSED] drm_test_mm_highest
[14:59:28] ===================== [PASSED] drm_mm ======================
[14:59:28] ============= drm_modes_analog_tv (5 subtests) =============
[14:59:28] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:59:28] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:59:28] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:59:28] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:59:28] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:59:28] =============== [PASSED] drm_modes_analog_tv ===============
[14:59:28] ============== drm_plane_helper (2 subtests) ===============
[14:59:28] =============== drm_test_check_plane_state ================
[14:59:28] [PASSED] clipping_simple
[14:59:28] [PASSED] clipping_rotate_reflect
[14:59:28] [PASSED] positioning_simple
[14:59:28] [PASSED] upscaling
[14:59:28] [PASSED] downscaling
[14:59:28] [PASSED] rounding1
[14:59:28] [PASSED] rounding2
[14:59:28] [PASSED] rounding3
[14:59:28] [PASSED] rounding4
[14:59:28] =========== [PASSED] drm_test_check_plane_state ============
[14:59:28] =========== drm_test_check_invalid_plane_state ============
[14:59:28] [PASSED] positioning_invalid
[14:59:28] [PASSED] upscaling_invalid
[14:59:28] [PASSED] downscaling_invalid
[14:59:28] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:59:28] ================ [PASSED] drm_plane_helper =================
[14:59:28] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:59:28] ====== drm_test_connector_helper_tv_get_modes_check =======
[14:59:28] [PASSED] None
[14:59:28] [PASSED] PAL
[14:59:28] [PASSED] NTSC
[14:59:28] [PASSED] Both, NTSC Default
[14:59:28] [PASSED] Both, PAL Default
[14:59:28] [PASSED] Both, NTSC Default, with PAL on command-line
[14:59:28] [PASSED] Both, PAL Default, with NTSC on command-line
[14:59:28] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:59:28] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:59:28] ================== drm_rect (9 subtests) ===================
[14:59:28] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:59:28] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:59:28] [PASSED] drm_test_rect_clip_scaled_clipped
[14:59:28] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:59:28] ================= drm_test_rect_intersect =================
[14:59:28] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:59:28] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:59:28] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:59:28] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:59:28] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:59:28] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:59:28] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:59:28] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:59:28] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:59:28] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:59:28] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:59:28] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:59:28] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:59:28] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:59:28] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[14:59:28] ============= [PASSED] drm_test_rect_intersect =============
[14:59:28] ================ drm_test_rect_calc_hscale ================
[14:59:28] [PASSED] normal use
[14:59:28] [PASSED] out of max range
[14:59:28] [PASSED] out of min range
[14:59:28] [PASSED] zero dst
[14:59:28] [PASSED] negative src
[14:59:28] [PASSED] negative dst
[14:59:28] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:59:28] ================ drm_test_rect_calc_vscale ================
[14:59:28] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[14:59:28] [PASSED] out of max range
[14:59:28] [PASSED] out of min range
[14:59:28] [PASSED] zero dst
[14:59:28] [PASSED] negative src
[14:59:28] [PASSED] negative dst
[14:59:28] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:59:28] ================== drm_test_rect_rotate ===================
[14:59:28] [PASSED] reflect-x
[14:59:28] [PASSED] reflect-y
[14:59:28] [PASSED] rotate-0
[14:59:28] [PASSED] rotate-90
[14:59:28] [PASSED] rotate-180
[14:59:28] [PASSED] rotate-270
[14:59:28] ============== [PASSED] drm_test_rect_rotate ===============
[14:59:28] ================ drm_test_rect_rotate_inv =================
[14:59:28] [PASSED] reflect-x
[14:59:28] [PASSED] reflect-y
[14:59:28] [PASSED] rotate-0
[14:59:28] [PASSED] rotate-90
[14:59:28] [PASSED] rotate-180
[14:59:28] [PASSED] rotate-270
[14:59:28] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:59:28] ==================== [PASSED] drm_rect =====================
[14:59:28] ============ drm_sysfb_modeset_test (1 subtest) ============
[14:59:28] ============ drm_test_sysfb_build_fourcc_list =============
[14:59:28] [PASSED] no native formats
[14:59:28] [PASSED] XRGB8888 as native format
[14:59:28] [PASSED] remove duplicates
[14:59:28] [PASSED] convert alpha formats
[14:59:28] [PASSED] random formats
[14:59:28] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[14:59:28] ============= [PASSED] drm_sysfb_modeset_test ==============
[14:59:28] ============================================================
[14:59:28] Testing complete. Ran 622 tests: passed: 622
[14:59:28] Elapsed time: 27.139s total, 1.709s configuring, 25.011s building, 0.397s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:59:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:59:30] 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
[14:59:39] Starting KUnit Kernel (1/1)...
[14:59:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:59:40] ================= ttm_device (5 subtests) ==================
[14:59:40] [PASSED] ttm_device_init_basic
[14:59:40] [PASSED] ttm_device_init_multiple
[14:59:40] [PASSED] ttm_device_fini_basic
[14:59:40] [PASSED] ttm_device_init_no_vma_man
[14:59:40] ================== ttm_device_init_pools ==================
[14:59:40] [PASSED] No DMA allocations, no DMA32 required
[14:59:40] [PASSED] DMA allocations, DMA32 required
[14:59:40] [PASSED] No DMA allocations, DMA32 required
[14:59:40] [PASSED] DMA allocations, no DMA32 required
[14:59:40] ============== [PASSED] ttm_device_init_pools ==============
[14:59:40] =================== [PASSED] ttm_device ====================
[14:59:40] ================== ttm_pool (8 subtests) ===================
[14:59:40] ================== ttm_pool_alloc_basic ===================
[14:59:40] [PASSED] One page
[14:59:40] [PASSED] More than one page
[14:59:40] [PASSED] Above the allocation limit
[14:59:40] [PASSED] One page, with coherent DMA mappings enabled
[14:59:40] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:59:40] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:59:40] ============== ttm_pool_alloc_basic_dma_addr ==============
[14:59:40] [PASSED] One page
[14:59:40] [PASSED] More than one page
[14:59:40] [PASSED] Above the allocation limit
[14:59:40] [PASSED] One page, with coherent DMA mappings enabled
[14:59:40] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:59:40] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:59:40] [PASSED] ttm_pool_alloc_order_caching_match
[14:59:40] [PASSED] ttm_pool_alloc_caching_mismatch
[14:59:40] [PASSED] ttm_pool_alloc_order_mismatch
[14:59:40] [PASSED] ttm_pool_free_dma_alloc
[14:59:40] [PASSED] ttm_pool_free_no_dma_alloc
[14:59:40] [PASSED] ttm_pool_fini_basic
[14:59:40] ==================== [PASSED] ttm_pool =====================
[14:59:40] ================ ttm_resource (8 subtests) =================
[14:59:40] ================= ttm_resource_init_basic =================
[14:59:40] [PASSED] Init resource in TTM_PL_SYSTEM
[14:59:40] [PASSED] Init resource in TTM_PL_VRAM
[14:59:40] [PASSED] Init resource in a private placement
[14:59:40] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:59:40] ============= [PASSED] ttm_resource_init_basic =============
[14:59:40] [PASSED] ttm_resource_init_pinned
[14:59:40] [PASSED] ttm_resource_fini_basic
[14:59:40] [PASSED] ttm_resource_manager_init_basic
[14:59:40] [PASSED] ttm_resource_manager_usage_basic
[14:59:40] [PASSED] ttm_resource_manager_set_used_basic
[14:59:40] [PASSED] ttm_sys_man_alloc_basic
[14:59:40] [PASSED] ttm_sys_man_free_basic
[14:59:40] ================== [PASSED] ttm_resource ===================
[14:59:40] =================== ttm_tt (15 subtests) ===================
[14:59:40] ==================== ttm_tt_init_basic ====================
[14:59:40] [PASSED] Page-aligned size
[14:59:40] [PASSED] Extra pages requested
[14:59:40] ================ [PASSED] ttm_tt_init_basic ================
[14:59:40] [PASSED] ttm_tt_init_misaligned
[14:59:40] [PASSED] ttm_tt_fini_basic
[14:59:40] [PASSED] ttm_tt_fini_sg
[14:59:40] [PASSED] ttm_tt_fini_shmem
[14:59:40] [PASSED] ttm_tt_create_basic
[14:59:40] [PASSED] ttm_tt_create_invalid_bo_type
[14:59:40] [PASSED] ttm_tt_create_ttm_exists
[14:59:40] [PASSED] ttm_tt_create_failed
[14:59:40] [PASSED] ttm_tt_destroy_basic
[14:59:40] [PASSED] ttm_tt_populate_null_ttm
[14:59:40] [PASSED] ttm_tt_populate_populated_ttm
[14:59:40] [PASSED] ttm_tt_unpopulate_basic
[14:59:40] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:59:40] [PASSED] ttm_tt_swapin_basic
[14:59:40] ===================== [PASSED] ttm_tt ======================
[14:59:40] =================== ttm_bo (14 subtests) ===================
[14:59:40] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[14:59:40] [PASSED] Cannot be interrupted and sleeps
[14:59:40] [PASSED] Cannot be interrupted, locks straight away
[14:59:40] [PASSED] Can be interrupted, sleeps
[14:59:40] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:59:40] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:59:40] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:59:40] [PASSED] ttm_bo_reserve_double_resv
[14:59:40] [PASSED] ttm_bo_reserve_interrupted
[14:59:40] [PASSED] ttm_bo_reserve_deadlock
[14:59:40] [PASSED] ttm_bo_unreserve_basic
[14:59:40] [PASSED] ttm_bo_unreserve_pinned
[14:59:40] [PASSED] ttm_bo_unreserve_bulk
[14:59:40] [PASSED] ttm_bo_fini_basic
[14:59:40] [PASSED] ttm_bo_fini_shared_resv
[14:59:40] [PASSED] ttm_bo_pin_basic
[14:59:40] [PASSED] ttm_bo_pin_unpin_resource
[14:59:40] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:59:40] ===================== [PASSED] ttm_bo ======================
[14:59:40] ============== ttm_bo_validate (21 subtests) ===============
[14:59:40] ============== ttm_bo_init_reserved_sys_man ===============
[14:59:40] [PASSED] Buffer object for userspace
[14:59:40] [PASSED] Kernel buffer object
[14:59:40] [PASSED] Shared buffer object
[14:59:40] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:59:40] ============== ttm_bo_init_reserved_mock_man ==============
[14:59:40] [PASSED] Buffer object for userspace
[14:59:40] [PASSED] Kernel buffer object
[14:59:40] [PASSED] Shared buffer object
[14:59:40] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:59:40] [PASSED] ttm_bo_init_reserved_resv
[14:59:40] ================== ttm_bo_validate_basic ==================
[14:59:40] [PASSED] Buffer object for userspace
[14:59:40] [PASSED] Kernel buffer object
[14:59:40] [PASSED] Shared buffer object
[14:59:40] ============== [PASSED] ttm_bo_validate_basic ==============
[14:59:40] [PASSED] ttm_bo_validate_invalid_placement
[14:59:40] ============= ttm_bo_validate_same_placement ==============
[14:59:40] [PASSED] System manager
[14:59:40] [PASSED] VRAM manager
[14:59:40] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:59:40] [PASSED] ttm_bo_validate_failed_alloc
[14:59:40] [PASSED] ttm_bo_validate_pinned
[14:59:40] [PASSED] ttm_bo_validate_busy_placement
[14:59:40] ================ ttm_bo_validate_multihop =================
[14:59:40] [PASSED] Buffer object for userspace
[14:59:40] [PASSED] Kernel buffer object
[14:59:40] [PASSED] Shared buffer object
[14:59:40] ============ [PASSED] ttm_bo_validate_multihop =============
[14:59:40] ========== ttm_bo_validate_no_placement_signaled ==========
[14:59:40] [PASSED] Buffer object in system domain, no page vector
[14:59:40] [PASSED] Buffer object in system domain with an existing page vector
[14:59:40] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:59:40] ======== ttm_bo_validate_no_placement_not_signaled ========
[14:59:40] [PASSED] Buffer object for userspace
[14:59:40] [PASSED] Kernel buffer object
[14:59:40] [PASSED] Shared buffer object
[14:59:40] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:59:40] [PASSED] ttm_bo_validate_move_fence_signaled
[14:59:40] ========= ttm_bo_validate_move_fence_not_signaled =========
[14:59:40] [PASSED] Waits for GPU
[14:59:40] [PASSED] Tries to lock straight away
[14:59:40] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:59:40] [PASSED] ttm_bo_validate_happy_evict
[14:59:40] [PASSED] ttm_bo_validate_all_pinned_evict
[14:59:40] [PASSED] ttm_bo_validate_allowed_only_evict
[14:59:40] [PASSED] ttm_bo_validate_deleted_evict
[14:59:40] [PASSED] ttm_bo_validate_busy_domain_evict
[14:59:40] [PASSED] ttm_bo_validate_evict_gutting
[14:59:40] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[14:59:40] ================= [PASSED] ttm_bo_validate =================
[14:59:40] ============================================================
[14:59:40] Testing complete. Ran 101 tests: passed: 101
[14:59:40] Elapsed time: 11.352s total, 1.681s configuring, 9.455s building, 0.188s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] drm/xe/vf: Fix up GGTT mappings on S4 resume across VFs.
2025-11-18 12:47 ` [PATCH v3 2/2] drm/xe/vf: Fix up GGTT mappings on S4 resume across VFs Satyanarayana K V P
@ 2025-11-18 17:08 ` Matthew Brost
2025-11-18 17:26 ` Matthew Brost
0 siblings, 1 reply; 11+ messages in thread
From: Matthew Brost @ 2025-11-18 17:08 UTC (permalink / raw)
To: Satyanarayana K V P
Cc: intel-xe, Michal Wajdeczko, Michal Winiarski, Tomasz Lis
On Tue, Nov 18, 2025 at 12:47:41PM +0000, Satyanarayana K V P wrote:
> When SR-IOV is enabled, a VM may suspend on one VF and resume on a
> different VF after S4 sleep cycle. Because GGTT space is not virtualized,
> this transition can lead to incorrect GGTT references. To address this,
> validate the GGTT space during resume and apply necessary fixups if the
> VF has changed.
>
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Michal Winiarski <michal.winiarski@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> Cc: Tomasz Lis <tomasz.lis@intel.com>
>
> ---
> V2 -> V3:
> - Fixed review comments (Michal).
> - Added a new function xe_gt_sriov_vf_resume_fixups() which handshakes
> with GUC and does GGTT fixups.
> - Updated commit message.
>
> V1 -> V2:
> - Rebased to latest drm-tip.
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 38 +++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
> drivers/gpu/drm/xe/xe_pm.c | 7 ++++++
> drivers/gpu/drm/xe/xe_sriov_vf.c | 30 +++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_sriov_vf.h | 1 +
> 5 files changed, 77 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index be7986537aad..87aa1d6576d6 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -1335,6 +1335,44 @@ int xe_gt_sriov_vf_init(struct xe_gt *gt)
> vf_migration_fini, gt);
> }
>
> +/**
> + * xe_gt_sriov_vf_resume_early() - Resume from S4.
> + * @gt: the &xe_gt.
> + *
> + * This function shall be called only by VF.
> + *
> + * Returns: 0 if the operation completed successfully, or a negative
> + * error code otherwise.
> + */
> +int xe_gt_sriov_vf_resume_early(struct xe_gt *gt)
> +{
> + u64 start, size;
> + s64 shift;
> + int err;
> +
> + xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
> +
> + err = xe_gt_sriov_vf_bootstrap(gt);
> + if (unlikely(err))
> + goto out;
> +
> + err = vf_query_ggtt_info(gt, &start, &size, &shift);
> + if (unlikely(err))
> + goto out;
> +
> + if (shift) {
> + err = vf_post_migration_fixups(gt);
> + if (unlikely(err))
> + goto out;
> + }
> +
> +out:
> + if (unlikely(err))
> + xe_gt_sriov_err(gt, "Fixups during resume failed (%d)\n", err);
> +
> + return err;
> +}
> +
> /**
> * xe_gt_sriov_vf_recovery_pending() - VF post migration recovery pending
> * @gt: the &xe_gt
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> index af40276790fa..68026b561d7d 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> @@ -25,6 +25,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
>
> int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
> int xe_gt_sriov_vf_init(struct xe_gt *gt);
> +int xe_gt_sriov_vf_resume_early(struct xe_gt *gt);
> bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
>
> u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
> diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
> index 4f8688fd3f00..a6fcddc47d62 100644
> --- a/drivers/gpu/drm/xe/xe_pm.c
> +++ b/drivers/gpu/drm/xe/xe_pm.c
> @@ -24,6 +24,7 @@
> #include "xe_late_bind_fw.h"
> #include "xe_pcode.h"
> #include "xe_pxp.h"
> +#include "xe_sriov_vf.h"
> #include "xe_sriov_vf_ccs.h"
> #include "xe_trace.h"
> #include "xe_vm.h"
> @@ -248,6 +249,12 @@ int xe_pm_resume(struct xe_device *xe)
>
> xe_display_pm_resume_early(xe);
>
> + if (IS_SRIOV_VF(xe)) {
> + err = xe_sriov_vf_resume_early(xe);
> + if (unlikely(err))
> + goto err;
> + }
> +
> /*
> * This only restores pinned memory which is the memory required for the
> * GT(s) to resume.
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
> index 39c829daa97c..a33f86b7986d 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
> @@ -191,6 +191,36 @@ int xe_sriov_vf_init_late(struct xe_device *xe)
> return xe_sriov_vf_ccs_init(xe);
> }
>
> +/**
> + * xe_sriov_vf_resume_early() - Early resume operations for SR-IOV Virtual
> + * Function.
> + * @xe: the &xe_device to resume
> + *
> + * This function shall be called only by VF.
> + *
> + * Return: 0 on success or a negative error code on failure.
> + */
> +int xe_sriov_vf_resume_early(struct xe_device *xe)
> +{
> + struct xe_gt *gt;
> + int err = 0;
> + u8 id;
> +
> + xe_assert(xe, IS_SRIOV_VF(xe));
> +
> + for_each_gt(gt, xe, id) {
> + err = xe_gt_sriov_vf_resume_early(gt);
> + if (unlikely(err))
> + goto out;
> + }
> +
> +out:
> + if (unlikely(err))
> + xe_sriov_err(xe, "VF resume early failed with (%d)\n", err);
> +
> + return err;
> +}
> +
> static int sa_info_vf_ccs(struct seq_file *m, void *data)
> {
> struct drm_info_node *node = m->private;
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.h b/drivers/gpu/drm/xe/xe_sriov_vf.h
> index e967d4166a43..54fe6eedeff6 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.h
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.h
> @@ -13,6 +13,7 @@ struct xe_device;
>
> void xe_sriov_vf_init_early(struct xe_device *xe);
> int xe_sriov_vf_init_late(struct xe_device *xe);
> +int xe_sriov_vf_resume_early(struct xe_device *xe);
> bool xe_sriov_vf_migration_supported(struct xe_device *xe);
> void xe_sriov_vf_migration_disable(struct xe_device *xe, const char *fmt, ...);
> void xe_sriov_vf_debugfs_register(struct xe_device *xe, struct dentry *root);
> --
> 2.51.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 1/2] drm/xe/vf: Split GGTT info query and fixup into separate helpers
2025-11-18 12:47 ` [PATCH v3 1/2] drm/xe/vf: Split GGTT info query and fixup into separate helpers Satyanarayana K V P
@ 2025-11-18 17:17 ` Matthew Brost
0 siblings, 0 replies; 11+ messages in thread
From: Matthew Brost @ 2025-11-18 17:17 UTC (permalink / raw)
To: Satyanarayana K V P
Cc: intel-xe, Michal Wajdeczko, Michal Winiarski, Tomasz Lis
On Tue, Nov 18, 2025 at 12:47:40PM +0000, Satyanarayana K V P wrote:
> The current vf_get_ggtt_info() function handles both querying GGTT
> information and applying fixups. Refactor this into two distinct
> functions: one for querying and another for performing fixups.
>
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Michal Winiarski <michal.winiarski@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Tomasz Lis <tomasz.lis@intel.com>
>
> ---
> V2 -> V3:
> - New commit
>
> V1 -> V2:
> - None.
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 45 ++++++++++++++++++++---------
> 1 file changed, 31 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 4c73a077d314..be7986537aad 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -438,41 +438,50 @@ u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt)
> return value;
> }
>
> -static int vf_get_ggtt_info(struct xe_gt *gt)
> +static int vf_query_ggtt_info(struct xe_gt *gt, u64 *start, u64 *size, s64 *shift)
> {
> struct xe_tile *tile = gt_to_tile(gt);
> - struct xe_ggtt *ggtt = tile->mem.ggtt;
> struct xe_guc *guc = >->uc.guc;
> - u64 start, size, ggtt_size;
> - s64 shift;
> + u64 ggtt_size;
> int err;
>
> xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
>
> - guard(mutex)(&ggtt->lock);
> -
> - err = guc_action_query_single_klv64(guc, GUC_KLV_VF_CFG_GGTT_START_KEY, &start);
> + err = guc_action_query_single_klv64(guc, GUC_KLV_VF_CFG_GGTT_START_KEY, start);
> if (unlikely(err))
> return err;
>
> - err = guc_action_query_single_klv64(guc, GUC_KLV_VF_CFG_GGTT_SIZE_KEY, &size);
> + err = guc_action_query_single_klv64(guc, GUC_KLV_VF_CFG_GGTT_SIZE_KEY, size);
> if (unlikely(err))
> return err;
>
> - if (!size)
> + if (!*size)
> return -ENODATA;
>
> ggtt_size = xe_tile_sriov_vf_ggtt(tile);
> - if (ggtt_size && ggtt_size != size) {
> + if (ggtt_size && ggtt_size != *size) {
> xe_gt_sriov_err(gt, "Unexpected GGTT reassignment: %lluK != %lluK\n",
> - size / SZ_1K, ggtt_size / SZ_1K);
> + *size / SZ_1K, ggtt_size / SZ_1K);
> return -EREMCHG;
> }
>
> xe_gt_sriov_dbg_verbose(gt, "GGTT %#llx-%#llx = %lluK\n",
> - start, start + size - 1, size / SZ_1K);
> + *start, *start + *size - 1, *size / SZ_1K);
> +
> + *shift = *start - (s64)xe_tile_sriov_vf_ggtt_base(tile);
I don't think this split works. The shift calculation is the critical
path between 2 GTs running in parallel doing a VF restore. So I believe
vf_query_ggtt_info should just return start, size and shift calculation
should be done in vf_fixup_ggtt_nodes under the ggtt->lock. Without that
it would be possible to shift the GGTT twice on a VF restore which would
break everything.
Matt
> +
> + return 0;
> +}
> +
> +static int vf_fixup_ggtt_nodes(struct xe_gt *gt, u64 start, u64 size, s64 shift)
> +{
> + struct xe_tile *tile = gt_to_tile(gt);
> + struct xe_ggtt *ggtt = tile->mem.ggtt;
> +
> + xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
> +
> + guard(mutex)(&ggtt->lock);
>
> - shift = start - (s64)xe_tile_sriov_vf_ggtt_base(tile);
> xe_tile_sriov_vf_ggtt_base_store(tile, start);
> xe_tile_sriov_vf_ggtt_store(tile, size);
>
> @@ -577,9 +586,17 @@ static void vf_cache_gmdid(struct xe_gt *gt)
> int xe_gt_sriov_vf_query_config(struct xe_gt *gt)
> {
> struct xe_device *xe = gt_to_xe(gt);
> + u64 start, size;
> + s64 shift;
> int err;
>
> - err = vf_get_ggtt_info(gt);
> + err = vf_query_ggtt_info(gt, &start, &size, &shift);
> + if (unlikely(err)) {
> + xe_gt_sriov_err(gt, "Error in querying ggtt info (%d)\n", err);
> + return err;
> + }
> +
> + err = vf_fixup_ggtt_nodes(gt, start, size, shift);
> if (unlikely(err))
> return err;
>
> --
> 2.51.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] drm/xe/vf: Fix up GGTT mappings on S4 resume across VFs.
2025-11-18 17:08 ` Matthew Brost
@ 2025-11-18 17:26 ` Matthew Brost
0 siblings, 0 replies; 11+ messages in thread
From: Matthew Brost @ 2025-11-18 17:26 UTC (permalink / raw)
To: Satyanarayana K V P
Cc: intel-xe, Michal Wajdeczko, Michal Winiarski, Tomasz Lis
On Tue, Nov 18, 2025 at 09:08:11AM -0800, Matthew Brost wrote:
> On Tue, Nov 18, 2025 at 12:47:41PM +0000, Satyanarayana K V P wrote:
> > When SR-IOV is enabled, a VM may suspend on one VF and resume on a
> > different VF after S4 sleep cycle. Because GGTT space is not virtualized,
> > this transition can lead to incorrect GGTT references. To address this,
> > validate the GGTT space during resume and apply necessary fixups if the
> > VF has changed.
> >
> > Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> > Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> > Cc: Michal Winiarski <michal.winiarski@intel.com>
> > Cc: Matthew Brost <matthew.brost@intel.com>
>
> Reviewed-by: Matthew Brost <matthew.brost@intel.com>
>
I was little to fast with the RB, one question below.
> > Cc: Tomasz Lis <tomasz.lis@intel.com>
> >
> > ---
> > V2 -> V3:
> > - Fixed review comments (Michal).
> > - Added a new function xe_gt_sriov_vf_resume_fixups() which handshakes
> > with GUC and does GGTT fixups.
> > - Updated commit message.
> >
> > V1 -> V2:
> > - Rebased to latest drm-tip.
> > ---
> > drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 38 +++++++++++++++++++++++++++++
> > drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
> > drivers/gpu/drm/xe/xe_pm.c | 7 ++++++
> > drivers/gpu/drm/xe/xe_sriov_vf.c | 30 +++++++++++++++++++++++
> > drivers/gpu/drm/xe/xe_sriov_vf.h | 1 +
> > 5 files changed, 77 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> > index be7986537aad..87aa1d6576d6 100644
> > --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> > +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> > @@ -1335,6 +1335,44 @@ int xe_gt_sriov_vf_init(struct xe_gt *gt)
> > vf_migration_fini, gt);
> > }
> >
> > +/**
> > + * xe_gt_sriov_vf_resume_early() - Resume from S4.
> > + * @gt: the &xe_gt.
> > + *
> > + * This function shall be called only by VF.
> > + *
> > + * Returns: 0 if the operation completed successfully, or a negative
> > + * error code otherwise.
> > + */
> > +int xe_gt_sriov_vf_resume_early(struct xe_gt *gt)
> > +{
> > + u64 start, size;
> > + s64 shift;
> > + int err;
> > +
> > + xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
> > +
> > + err = xe_gt_sriov_vf_bootstrap(gt);
> > + if (unlikely(err))
> > + goto out;
> > +
> > + err = vf_query_ggtt_info(gt, &start, &size, &shift);
> > + if (unlikely(err))
> > + goto out;
Now that this function has split out query of shift into 2 functions,
don't we also need to call vf_fixup_ggtt_nodes too - the function will
set the set the base, size, and shift any existing GGTT nodes. With
that, why even split this function as it seems to do all the steps we
need here.
Matt
> > +
> > + if (shift) {
> > + err = vf_post_migration_fixups(gt);
> > + if (unlikely(err))
> > + goto out;
> > + }
> > +
> > +out:
> > + if (unlikely(err))
> > + xe_gt_sriov_err(gt, "Fixups during resume failed (%d)\n", err);
> > +
> > + return err;
> > +}
> > +
> > /**
> > * xe_gt_sriov_vf_recovery_pending() - VF post migration recovery pending
> > * @gt: the &xe_gt
> > diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> > index af40276790fa..68026b561d7d 100644
> > --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> > +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> > @@ -25,6 +25,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
> >
> > int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
> > int xe_gt_sriov_vf_init(struct xe_gt *gt);
> > +int xe_gt_sriov_vf_resume_early(struct xe_gt *gt);
> > bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
> >
> > u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
> > diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
> > index 4f8688fd3f00..a6fcddc47d62 100644
> > --- a/drivers/gpu/drm/xe/xe_pm.c
> > +++ b/drivers/gpu/drm/xe/xe_pm.c
> > @@ -24,6 +24,7 @@
> > #include "xe_late_bind_fw.h"
> > #include "xe_pcode.h"
> > #include "xe_pxp.h"
> > +#include "xe_sriov_vf.h"
> > #include "xe_sriov_vf_ccs.h"
> > #include "xe_trace.h"
> > #include "xe_vm.h"
> > @@ -248,6 +249,12 @@ int xe_pm_resume(struct xe_device *xe)
> >
> > xe_display_pm_resume_early(xe);
> >
> > + if (IS_SRIOV_VF(xe)) {
> > + err = xe_sriov_vf_resume_early(xe);
> > + if (unlikely(err))
> > + goto err;
> > + }
> > +
> > /*
> > * This only restores pinned memory which is the memory required for the
> > * GT(s) to resume.
> > diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
> > index 39c829daa97c..a33f86b7986d 100644
> > --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
> > +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
> > @@ -191,6 +191,36 @@ int xe_sriov_vf_init_late(struct xe_device *xe)
> > return xe_sriov_vf_ccs_init(xe);
> > }
> >
> > +/**
> > + * xe_sriov_vf_resume_early() - Early resume operations for SR-IOV Virtual
> > + * Function.
> > + * @xe: the &xe_device to resume
> > + *
> > + * This function shall be called only by VF.
> > + *
> > + * Return: 0 on success or a negative error code on failure.
> > + */
> > +int xe_sriov_vf_resume_early(struct xe_device *xe)
> > +{
> > + struct xe_gt *gt;
> > + int err = 0;
> > + u8 id;
> > +
> > + xe_assert(xe, IS_SRIOV_VF(xe));
> > +
> > + for_each_gt(gt, xe, id) {
> > + err = xe_gt_sriov_vf_resume_early(gt);
> > + if (unlikely(err))
> > + goto out;
> > + }
> > +
> > +out:
> > + if (unlikely(err))
> > + xe_sriov_err(xe, "VF resume early failed with (%d)\n", err);
> > +
> > + return err;
> > +}
> > +
> > static int sa_info_vf_ccs(struct seq_file *m, void *data)
> > {
> > struct drm_info_node *node = m->private;
> > diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.h b/drivers/gpu/drm/xe/xe_sriov_vf.h
> > index e967d4166a43..54fe6eedeff6 100644
> > --- a/drivers/gpu/drm/xe/xe_sriov_vf.h
> > +++ b/drivers/gpu/drm/xe/xe_sriov_vf.h
> > @@ -13,6 +13,7 @@ struct xe_device;
> >
> > void xe_sriov_vf_init_early(struct xe_device *xe);
> > int xe_sriov_vf_init_late(struct xe_device *xe);
> > +int xe_sriov_vf_resume_early(struct xe_device *xe);
> > bool xe_sriov_vf_migration_supported(struct xe_device *xe);
> > void xe_sriov_vf_migration_disable(struct xe_device *xe, const char *fmt, ...);
> > void xe_sriov_vf_debugfs_register(struct xe_device *xe, struct dentry *root);
> > --
> > 2.51.0
> >
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.Full: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev3)
2025-11-18 12:47 [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV Satyanarayana K V P
` (2 preceding siblings ...)
2025-11-18 14:59 ` ✓ CI.KUnit: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev3) Patchwork
@ 2025-11-18 19:20 ` Patchwork
2025-11-19 5:05 ` ✓ CI.KUnit: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-11-18 19:20 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 58960 bytes --]
== Series Details ==
Series: drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev3)
URL : https://patchwork.freedesktop.org/series/153196/
State : success
== Summary ==
CI Bug Log - changes from xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c_FULL -> xe-pw-153196v3_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-153196v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-legacy:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#2594])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2370]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: [PASS][4] -> [DMESG-FAIL][5] ([Intel XE#4543])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1477])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +6 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +4 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#2191]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#787]) +62 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#3862]) +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +9 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][18] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#306])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +6 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#373]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#1178]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][24] ([Intel XE#1188]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1424])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2321])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#308])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2291]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#309])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][31] -> [FAIL][32] ([Intel XE#4633])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#323])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1508])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#4422])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2372])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1137])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1135])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2316]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1421]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#2953] / [Intel XE#4173]) +8 other tests dmesg-warn
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2293] / [Intel XE#2380])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2293])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1401] / [Intel XE#1745])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1401])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#651]) +15 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2311]) +17 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#651])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#4141]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#656]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#658])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#6312]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2312]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2313]) +17 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1469])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2350])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#653]) +12 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#1503]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2925])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2501])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#5624])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4596])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#5020])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#870])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#870])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@pr-basic:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_psr@pr-basic.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#3414] / [Intel XE#3904])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2330])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1127])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2413])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2168])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#455]) +10 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1499])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2168])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@kms_vrr@lobf.html
* igt@xe_compute@loop-duration-2s:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#6598])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_compute@loop-duration-2s.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1126])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2504])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@blocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#5626])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_eu_stall@blocking-read.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#4837]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4837]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@single-step-one:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#688]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][90] -> [INCOMPLETE][91] ([Intel XE#6321] / [Intel XE#6606])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2322]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1392])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#288]) +13 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2360])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise:
- shard-lnl: NOTRUN -> [WARN][96] ([Intel XE#5786])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch-madvise.html
* igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#4943]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#4943]) +15 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#4915]) +168 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [PASS][100] -> [DMESG-WARN][101] ([Intel XE#5893])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#512])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_mmap@small-bar.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [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], [PASS][149], [PASS][150], [SKIP][151]) ([Intel XE#2457])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-4/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-8/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-4/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-4/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-1/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-1/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-4/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-7/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-5/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-7/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-1/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-8/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-7/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-5/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-7/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-8/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-4/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-4/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-1/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-4/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-1/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-1/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-1/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-7/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-7/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-7/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@xe_module_load@load.html
* igt@xe_oa@mmio-triggered-reports:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#3573]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#6032])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_pat@pat-index-xelpg:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#979])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2284]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@xe_pm@d3cold-basic.html
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2284] / [Intel XE#366])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_pm@d3cold-basic.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
- shard-lnl: [PASS][157] -> [FAIL][158] ([Intel XE#6251]) +1 other test fail
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#4650])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#4733]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-gt-list:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#944])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#944]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-8/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#944])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#4130])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#4273])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [PASS][166] -> [DMESG-FAIL][167] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-adlp-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-adlp-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][168] ([Intel XE#6054]) -> [PASS][169] +3 other tests pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-adlp: [FAIL][170] ([Intel XE#3908]) -> [PASS][171] +1 other test pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-adlp-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][172] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168] / [i915#14968]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][176] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-dg2-set2: [INCOMPLETE][178] -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-463/igt@kms_cursor_crc@cursor-random-128x42.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-434/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [SKIP][180] ([Intel XE#2316]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [INCOMPLETE][182] -> [PASS][183] +1 other test pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-adlp: [DMESG-WARN][184] ([Intel XE#4543]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-adlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-adlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][186] ([Intel XE#301]) -> [PASS][187] +1 other test pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][188] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][189] +3 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][190] ([Intel XE#455]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-464/igt@kms_hdr@invalid-hdr.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@xe_exec_basic@once-null-defer-mmap:
- shard-bmg: [INCOMPLETE][192] ([Intel XE#2594]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@xe_exec_basic@once-null-defer-mmap.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@xe_exec_basic@once-null-defer-mmap.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-prefetch:
- shard-bmg: [WARN][194] ([Intel XE#5786]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-stride-mmap-prefetch.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-mmap-prefetch.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-adlp: [DMESG-WARN][196] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-prefetch.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0:
- shard-lnl: [FAIL][198] ([Intel XE#6251]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html
#### Warnings ####
* igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][200] ([Intel XE#4543]) -> [TIMEOUT][201] ([Intel XE#4543]) +1 other test timeout
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-adlp-8/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-adlp-2/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][202] ([Intel XE#2311]) -> [SKIP][203] ([Intel XE#2312]) +6 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][204] ([Intel XE#2312]) -> [SKIP][205] ([Intel XE#2311]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][206] ([Intel XE#2312]) -> [SKIP][207] ([Intel XE#4141])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][208] ([Intel XE#4141]) -> [SKIP][209] ([Intel XE#2312]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][210] ([Intel XE#2313]) -> [SKIP][211] ([Intel XE#2312]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][212] ([Intel XE#2312]) -> [SKIP][213] ([Intel XE#2313]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: [FAIL][214] ([Intel XE#3325]) -> [SKIP][215] ([Intel XE#734])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-adlp-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][216] ([Intel XE#2426]) -> [SKIP][217] ([Intel XE#2509])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][218] ([Intel XE#1500]) -> [SKIP][219] ([Intel XE#362])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[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#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
[Intel XE#6606]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6606
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968
Build changes
-------------
* Linux: xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c -> xe-pw-153196v3
IGT_8631: 8631
xe-4123-27427255cc2b36b2612a868bf937d576d15e8c9c: 27427255cc2b36b2612a868bf937d576d15e8c9c
xe-pw-153196v3: 153196v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v3/index.html
[-- Attachment #2: Type: text/html, Size: 66917 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4)
2025-11-18 12:47 [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV Satyanarayana K V P
` (3 preceding siblings ...)
2025-11-18 19:20 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-11-19 5:05 ` Patchwork
2025-11-19 5:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-19 6:53 ` ✓ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-11-19 5:05 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
== Series Details ==
Series: drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4)
URL : https://patchwork.freedesktop.org/series/153196/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[05:04:04] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:04:08] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[05:04:39] Starting KUnit Kernel (1/1)...
[05:04:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:04:39] ================== guc_buf (11 subtests) ===================
[05:04:39] [PASSED] test_smallest
[05:04:39] [PASSED] test_largest
[05:04:39] [PASSED] test_granular
[05:04:39] [PASSED] test_unique
[05:04:39] [PASSED] test_overlap
[05:04:39] [PASSED] test_reusable
[05:04:39] [PASSED] test_too_big
[05:04:39] [PASSED] test_flush
[05:04:39] [PASSED] test_lookup
[05:04:39] [PASSED] test_data
[05:04:39] [PASSED] test_class
[05:04:39] ===================== [PASSED] guc_buf =====================
[05:04:39] =================== guc_dbm (7 subtests) ===================
[05:04:39] [PASSED] test_empty
[05:04:39] [PASSED] test_default
[05:04:39] ======================== test_size ========================
[05:04:39] [PASSED] 4
[05:04:39] [PASSED] 8
[05:04:39] [PASSED] 32
[05:04:39] [PASSED] 256
[05:04:39] ==================== [PASSED] test_size ====================
[05:04:39] ======================= test_reuse ========================
[05:04:39] [PASSED] 4
[05:04:39] [PASSED] 8
[05:04:39] [PASSED] 32
[05:04:39] [PASSED] 256
[05:04:39] =================== [PASSED] test_reuse ====================
[05:04:39] =================== test_range_overlap ====================
[05:04:39] [PASSED] 4
[05:04:39] [PASSED] 8
[05:04:39] [PASSED] 32
[05:04:39] [PASSED] 256
[05:04:39] =============== [PASSED] test_range_overlap ================
[05:04:39] =================== test_range_compact ====================
[05:04:39] [PASSED] 4
[05:04:39] [PASSED] 8
[05:04:39] [PASSED] 32
[05:04:39] [PASSED] 256
[05:04:39] =============== [PASSED] test_range_compact ================
[05:04:39] ==================== test_range_spare =====================
[05:04:39] [PASSED] 4
[05:04:39] [PASSED] 8
[05:04:39] [PASSED] 32
[05:04:39] [PASSED] 256
[05:04:39] ================ [PASSED] test_range_spare =================
[05:04:39] ===================== [PASSED] guc_dbm =====================
[05:04:39] =================== guc_idm (6 subtests) ===================
[05:04:39] [PASSED] bad_init
[05:04:39] [PASSED] no_init
[05:04:39] [PASSED] init_fini
[05:04:39] [PASSED] check_used
[05:04:39] [PASSED] check_quota
[05:04:39] [PASSED] check_all
[05:04:39] ===================== [PASSED] guc_idm =====================
[05:04:39] ================== no_relay (3 subtests) ===================
[05:04:39] [PASSED] xe_drops_guc2pf_if_not_ready
[05:04:39] [PASSED] xe_drops_guc2vf_if_not_ready
[05:04:39] [PASSED] xe_rejects_send_if_not_ready
[05:04:39] ==================== [PASSED] no_relay =====================
[05:04:39] ================== pf_relay (14 subtests) ==================
[05:04:39] [PASSED] pf_rejects_guc2pf_too_short
[05:04:39] [PASSED] pf_rejects_guc2pf_too_long
[05:04:39] [PASSED] pf_rejects_guc2pf_no_payload
[05:04:39] [PASSED] pf_fails_no_payload
[05:04:39] [PASSED] pf_fails_bad_origin
[05:04:39] [PASSED] pf_fails_bad_type
[05:04:39] [PASSED] pf_txn_reports_error
[05:04:39] [PASSED] pf_txn_sends_pf2guc
[05:04:39] [PASSED] pf_sends_pf2guc
[05:04:39] [SKIPPED] pf_loopback_nop
[05:04:39] [SKIPPED] pf_loopback_echo
[05:04:39] [SKIPPED] pf_loopback_fail
[05:04:39] [SKIPPED] pf_loopback_busy
[05:04:39] [SKIPPED] pf_loopback_retry
[05:04:39] ==================== [PASSED] pf_relay =====================
[05:04:39] ================== vf_relay (3 subtests) ===================
[05:04:39] [PASSED] vf_rejects_guc2vf_too_short
[05:04:39] [PASSED] vf_rejects_guc2vf_too_long
[05:04:39] [PASSED] vf_rejects_guc2vf_no_payload
[05:04:39] ==================== [PASSED] vf_relay =====================
[05:04:39] ================ pf_gt_config (6 subtests) =================
[05:04:39] [PASSED] fair_contexts_1vf
[05:04:39] [PASSED] fair_doorbells_1vf
[05:04:39] [PASSED] fair_ggtt_1vf
[05:04:39] ====================== fair_contexts ======================
[05:04:39] [PASSED] 1 VF
[05:04:39] [PASSED] 2 VFs
[05:04:39] [PASSED] 3 VFs
[05:04:39] [PASSED] 4 VFs
[05:04:39] [PASSED] 5 VFs
[05:04:39] [PASSED] 6 VFs
[05:04:39] [PASSED] 7 VFs
[05:04:39] [PASSED] 8 VFs
[05:04:39] [PASSED] 9 VFs
[05:04:39] [PASSED] 10 VFs
[05:04:39] [PASSED] 11 VFs
[05:04:39] [PASSED] 12 VFs
[05:04:39] [PASSED] 13 VFs
[05:04:39] [PASSED] 14 VFs
[05:04:39] [PASSED] 15 VFs
[05:04:39] [PASSED] 16 VFs
[05:04:39] [PASSED] 17 VFs
[05:04:39] [PASSED] 18 VFs
[05:04:39] [PASSED] 19 VFs
[05:04:39] [PASSED] 20 VFs
[05:04:39] [PASSED] 21 VFs
[05:04:39] [PASSED] 22 VFs
[05:04:39] [PASSED] 23 VFs
[05:04:39] [PASSED] 24 VFs
[05:04:39] [PASSED] 25 VFs
[05:04:39] [PASSED] 26 VFs
[05:04:39] [PASSED] 27 VFs
[05:04:39] [PASSED] 28 VFs
[05:04:39] [PASSED] 29 VFs
[05:04:39] [PASSED] 30 VFs
[05:04:39] [PASSED] 31 VFs
[05:04:39] [PASSED] 32 VFs
[05:04:39] [PASSED] 33 VFs
[05:04:39] [PASSED] 34 VFs
[05:04:39] [PASSED] 35 VFs
[05:04:39] [PASSED] 36 VFs
[05:04:39] [PASSED] 37 VFs
[05:04:39] [PASSED] 38 VFs
[05:04:39] [PASSED] 39 VFs
[05:04:39] [PASSED] 40 VFs
[05:04:39] [PASSED] 41 VFs
[05:04:39] [PASSED] 42 VFs
[05:04:39] [PASSED] 43 VFs
[05:04:39] [PASSED] 44 VFs
[05:04:39] [PASSED] 45 VFs
[05:04:39] [PASSED] 46 VFs
[05:04:39] [PASSED] 47 VFs
[05:04:39] [PASSED] 48 VFs
[05:04:39] [PASSED] 49 VFs
[05:04:39] [PASSED] 50 VFs
[05:04:39] [PASSED] 51 VFs
[05:04:39] [PASSED] 52 VFs
[05:04:39] [PASSED] 53 VFs
[05:04:39] [PASSED] 54 VFs
[05:04:39] [PASSED] 55 VFs
[05:04:39] [PASSED] 56 VFs
[05:04:39] [PASSED] 57 VFs
[05:04:39] [PASSED] 58 VFs
[05:04:39] [PASSED] 59 VFs
[05:04:39] [PASSED] 60 VFs
[05:04:39] [PASSED] 61 VFs
[05:04:39] [PASSED] 62 VFs
[05:04:39] [PASSED] 63 VFs
[05:04:39] ================== [PASSED] fair_contexts ==================
[05:04:39] ===================== fair_doorbells ======================
[05:04:39] [PASSED] 1 VF
[05:04:39] [PASSED] 2 VFs
[05:04:39] [PASSED] 3 VFs
[05:04:39] [PASSED] 4 VFs
[05:04:39] [PASSED] 5 VFs
[05:04:39] [PASSED] 6 VFs
[05:04:39] [PASSED] 7 VFs
[05:04:39] [PASSED] 8 VFs
[05:04:39] [PASSED] 9 VFs
[05:04:39] [PASSED] 10 VFs
[05:04:39] [PASSED] 11 VFs
[05:04:39] [PASSED] 12 VFs
[05:04:39] [PASSED] 13 VFs
[05:04:39] [PASSED] 14 VFs
[05:04:39] [PASSED] 15 VFs
[05:04:39] [PASSED] 16 VFs
[05:04:39] [PASSED] 17 VFs
[05:04:39] [PASSED] 18 VFs
[05:04:39] [PASSED] 19 VFs
[05:04:39] [PASSED] 20 VFs
[05:04:39] [PASSED] 21 VFs
[05:04:39] [PASSED] 22 VFs
[05:04:39] [PASSED] 23 VFs
[05:04:39] [PASSED] 24 VFs
[05:04:39] [PASSED] 25 VFs
[05:04:39] [PASSED] 26 VFs
[05:04:39] [PASSED] 27 VFs
[05:04:39] [PASSED] 28 VFs
[05:04:39] [PASSED] 29 VFs
[05:04:39] [PASSED] 30 VFs
[05:04:39] [PASSED] 31 VFs
[05:04:39] [PASSED] 32 VFs
[05:04:39] [PASSED] 33 VFs
[05:04:39] [PASSED] 34 VFs
[05:04:39] [PASSED] 35 VFs
[05:04:39] [PASSED] 36 VFs
[05:04:39] [PASSED] 37 VFs
[05:04:39] [PASSED] 38 VFs
[05:04:39] [PASSED] 39 VFs
[05:04:39] [PASSED] 40 VFs
[05:04:39] [PASSED] 41 VFs
[05:04:39] [PASSED] 42 VFs
[05:04:39] [PASSED] 43 VFs
[05:04:39] [PASSED] 44 VFs
[05:04:39] [PASSED] 45 VFs
[05:04:39] [PASSED] 46 VFs
[05:04:39] [PASSED] 47 VFs
[05:04:39] [PASSED] 48 VFs
[05:04:39] [PASSED] 49 VFs
[05:04:39] [PASSED] 50 VFs
[05:04:39] [PASSED] 51 VFs
[05:04:39] [PASSED] 52 VFs
[05:04:39] [PASSED] 53 VFs
[05:04:39] [PASSED] 54 VFs
[05:04:39] [PASSED] 55 VFs
[05:04:39] [PASSED] 56 VFs
[05:04:39] [PASSED] 57 VFs
[05:04:39] [PASSED] 58 VFs
[05:04:39] [PASSED] 59 VFs
[05:04:39] [PASSED] 60 VFs
[05:04:39] [PASSED] 61 VFs
[05:04:39] [PASSED] 62 VFs
[05:04:39] [PASSED] 63 VFs
[05:04:39] ================= [PASSED] fair_doorbells ==================
[05:04:39] ======================== fair_ggtt ========================
[05:04:39] [PASSED] 1 VF
[05:04:39] [PASSED] 2 VFs
[05:04:39] [PASSED] 3 VFs
[05:04:39] [PASSED] 4 VFs
[05:04:39] [PASSED] 5 VFs
[05:04:39] [PASSED] 6 VFs
[05:04:39] [PASSED] 7 VFs
[05:04:39] [PASSED] 8 VFs
[05:04:39] [PASSED] 9 VFs
[05:04:39] [PASSED] 10 VFs
[05:04:39] [PASSED] 11 VFs
[05:04:39] [PASSED] 12 VFs
[05:04:39] [PASSED] 13 VFs
[05:04:39] [PASSED] 14 VFs
[05:04:39] [PASSED] 15 VFs
[05:04:39] [PASSED] 16 VFs
[05:04:39] [PASSED] 17 VFs
[05:04:39] [PASSED] 18 VFs
[05:04:39] [PASSED] 19 VFs
[05:04:39] [PASSED] 20 VFs
[05:04:39] [PASSED] 21 VFs
[05:04:39] [PASSED] 22 VFs
[05:04:39] [PASSED] 23 VFs
[05:04:39] [PASSED] 24 VFs
[05:04:39] [PASSED] 25 VFs
[05:04:39] [PASSED] 26 VFs
[05:04:39] [PASSED] 27 VFs
[05:04:39] [PASSED] 28 VFs
[05:04:39] [PASSED] 29 VFs
[05:04:39] [PASSED] 30 VFs
[05:04:39] [PASSED] 31 VFs
[05:04:39] [PASSED] 32 VFs
[05:04:39] [PASSED] 33 VFs
[05:04:39] [PASSED] 34 VFs
[05:04:39] [PASSED] 35 VFs
[05:04:39] [PASSED] 36 VFs
[05:04:39] [PASSED] 37 VFs
[05:04:39] [PASSED] 38 VFs
[05:04:39] [PASSED] 39 VFs
[05:04:39] [PASSED] 40 VFs
[05:04:39] [PASSED] 41 VFs
[05:04:39] [PASSED] 42 VFs
[05:04:39] [PASSED] 43 VFs
[05:04:39] [PASSED] 44 VFs
[05:04:39] [PASSED] 45 VFs
[05:04:39] [PASSED] 46 VFs
[05:04:39] [PASSED] 47 VFs
[05:04:39] [PASSED] 48 VFs
[05:04:39] [PASSED] 49 VFs
[05:04:39] [PASSED] 50 VFs
[05:04:39] [PASSED] 51 VFs
[05:04:39] [PASSED] 52 VFs
[05:04:39] [PASSED] 53 VFs
[05:04:39] [PASSED] 54 VFs
[05:04:39] [PASSED] 55 VFs
[05:04:39] [PASSED] 56 VFs
[05:04:39] [PASSED] 57 VFs
[05:04:39] [PASSED] 58 VFs
[05:04:39] [PASSED] 59 VFs
[05:04:39] [PASSED] 60 VFs
[05:04:39] [PASSED] 61 VFs
[05:04:39] [PASSED] 62 VFs
[05:04:39] [PASSED] 63 VFs
[05:04:39] ==================== [PASSED] fair_ggtt ====================
[05:04:39] ================== [PASSED] pf_gt_config ===================
[05:04:39] ===================== lmtt (1 subtest) =====================
[05:04:39] ======================== test_ops =========================
[05:04:39] [PASSED] 2-level
[05:04:39] [PASSED] multi-level
[05:04:39] ==================== [PASSED] test_ops =====================
[05:04:39] ====================== [PASSED] lmtt =======================
[05:04:39] ================= pf_service (11 subtests) =================
[05:04:39] [PASSED] pf_negotiate_any
[05:04:39] [PASSED] pf_negotiate_base_match
[05:04:39] [PASSED] pf_negotiate_base_newer
[05:04:39] [PASSED] pf_negotiate_base_next
[05:04:39] [SKIPPED] pf_negotiate_base_older
[05:04:39] [PASSED] pf_negotiate_base_prev
[05:04:39] [PASSED] pf_negotiate_latest_match
[05:04:39] [PASSED] pf_negotiate_latest_newer
[05:04:39] [PASSED] pf_negotiate_latest_next
[05:04:39] [SKIPPED] pf_negotiate_latest_older
[05:04:39] [SKIPPED] pf_negotiate_latest_prev
[05:04:39] =================== [PASSED] pf_service ====================
[05:04:39] ================= xe_guc_g2g (2 subtests) ==================
[05:04:39] ============== xe_live_guc_g2g_kunit_default ==============
[05:04:39] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[05:04:39] ============== xe_live_guc_g2g_kunit_allmem ===============
[05:04:39] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[05:04:39] =================== [SKIPPED] xe_guc_g2g ===================
[05:04:39] =================== xe_mocs (2 subtests) ===================
[05:04:39] ================ xe_live_mocs_kernel_kunit ================
[05:04:39] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[05:04:39] ================ xe_live_mocs_reset_kunit =================
[05:04:39] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[05:04:39] ==================== [SKIPPED] xe_mocs =====================
[05:04:39] ================= xe_migrate (2 subtests) ==================
[05:04:39] ================= xe_migrate_sanity_kunit =================
[05:04:39] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[05:04:39] ================== xe_validate_ccs_kunit ==================
[05:04:39] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[05:04:39] =================== [SKIPPED] xe_migrate ===================
[05:04:39] ================== xe_dma_buf (1 subtest) ==================
[05:04:39] ==================== xe_dma_buf_kunit =====================
[05:04:39] ================ [SKIPPED] xe_dma_buf_kunit ================
[05:04:39] =================== [SKIPPED] xe_dma_buf ===================
[05:04:39] ================= xe_bo_shrink (1 subtest) =================
[05:04:39] =================== xe_bo_shrink_kunit ====================
[05:04:39] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[05:04:39] ================== [SKIPPED] xe_bo_shrink ==================
[05:04:39] ==================== xe_bo (2 subtests) ====================
[05:04:39] ================== xe_ccs_migrate_kunit ===================
[05:04:39] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[05:04:39] ==================== xe_bo_evict_kunit ====================
[05:04:39] =============== [SKIPPED] xe_bo_evict_kunit ================
[05:04:39] ===================== [SKIPPED] xe_bo ======================
[05:04:39] ==================== args (11 subtests) ====================
[05:04:39] [PASSED] count_args_test
[05:04:39] [PASSED] call_args_example
[05:04:39] [PASSED] call_args_test
[05:04:39] [PASSED] drop_first_arg_example
[05:04:39] [PASSED] drop_first_arg_test
[05:04:39] [PASSED] first_arg_example
[05:04:39] [PASSED] first_arg_test
[05:04:39] [PASSED] last_arg_example
[05:04:39] [PASSED] last_arg_test
[05:04:39] [PASSED] pick_arg_example
[05:04:39] [PASSED] sep_comma_example
[05:04:39] ====================== [PASSED] args =======================
[05:04:39] =================== xe_pci (3 subtests) ====================
[05:04:39] ==================== check_graphics_ip ====================
[05:04:39] [PASSED] 12.00 Xe_LP
[05:04:39] [PASSED] 12.10 Xe_LP+
[05:04:39] [PASSED] 12.55 Xe_HPG
[05:04:39] [PASSED] 12.60 Xe_HPC
[05:04:39] [PASSED] 12.70 Xe_LPG
[05:04:39] [PASSED] 12.71 Xe_LPG
[05:04:39] [PASSED] 12.74 Xe_LPG+
[05:04:39] [PASSED] 20.01 Xe2_HPG
[05:04:39] [PASSED] 20.02 Xe2_HPG
[05:04:39] [PASSED] 20.04 Xe2_LPG
[05:04:39] [PASSED] 30.00 Xe3_LPG
[05:04:39] [PASSED] 30.01 Xe3_LPG
[05:04:39] [PASSED] 30.03 Xe3_LPG
[05:04:39] [PASSED] 30.04 Xe3_LPG
[05:04:39] [PASSED] 30.05 Xe3_LPG
[05:04:39] [PASSED] 35.11 Xe3p_XPC
[05:04:39] ================ [PASSED] check_graphics_ip ================
[05:04:39] ===================== check_media_ip ======================
[05:04:39] [PASSED] 12.00 Xe_M
[05:04:39] [PASSED] 12.55 Xe_HPM
[05:04:39] [PASSED] 13.00 Xe_LPM+
[05:04:39] [PASSED] 13.01 Xe2_HPM
[05:04:39] [PASSED] 20.00 Xe2_LPM
[05:04:39] [PASSED] 30.00 Xe3_LPM
[05:04:39] [PASSED] 30.02 Xe3_LPM
[05:04:39] [PASSED] 35.00 Xe3p_LPM
[05:04:39] [PASSED] 35.03 Xe3p_HPM
[05:04:39] ================= [PASSED] check_media_ip ==================
[05:04:39] =================== check_platform_desc ===================
[05:04:39] [PASSED] 0x9A60 (TIGERLAKE)
[05:04:39] [PASSED] 0x9A68 (TIGERLAKE)
[05:04:39] [PASSED] 0x9A70 (TIGERLAKE)
[05:04:39] [PASSED] 0x9A40 (TIGERLAKE)
[05:04:39] [PASSED] 0x9A49 (TIGERLAKE)
[05:04:39] [PASSED] 0x9A59 (TIGERLAKE)
[05:04:39] [PASSED] 0x9A78 (TIGERLAKE)
[05:04:39] [PASSED] 0x9AC0 (TIGERLAKE)
[05:04:39] [PASSED] 0x9AC9 (TIGERLAKE)
[05:04:39] [PASSED] 0x9AD9 (TIGERLAKE)
[05:04:39] [PASSED] 0x9AF8 (TIGERLAKE)
[05:04:39] [PASSED] 0x4C80 (ROCKETLAKE)
[05:04:39] [PASSED] 0x4C8A (ROCKETLAKE)
[05:04:39] [PASSED] 0x4C8B (ROCKETLAKE)
[05:04:39] [PASSED] 0x4C8C (ROCKETLAKE)
[05:04:39] [PASSED] 0x4C90 (ROCKETLAKE)
[05:04:39] [PASSED] 0x4C9A (ROCKETLAKE)
[05:04:39] [PASSED] 0x4680 (ALDERLAKE_S)
[05:04:39] [PASSED] 0x4682 (ALDERLAKE_S)
[05:04:39] [PASSED] 0x4688 (ALDERLAKE_S)
[05:04:39] [PASSED] 0x468A (ALDERLAKE_S)
[05:04:39] [PASSED] 0x468B (ALDERLAKE_S)
[05:04:39] [PASSED] 0x4690 (ALDERLAKE_S)
[05:04:39] [PASSED] 0x4692 (ALDERLAKE_S)
[05:04:39] [PASSED] 0x4693 (ALDERLAKE_S)
[05:04:39] [PASSED] 0x46A0 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46A1 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46A2 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46A3 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46A6 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46A8 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46AA (ALDERLAKE_P)
[05:04:39] [PASSED] 0x462A (ALDERLAKE_P)
[05:04:39] [PASSED] 0x4626 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x4628 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[05:04:39] [PASSED] 0x46B1 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46B2 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46B3 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46C0 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46C1 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46C2 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46C3 (ALDERLAKE_P)
[05:04:39] [PASSED] 0x46D0 (ALDERLAKE_N)
[05:04:39] [PASSED] 0x46D1 (ALDERLAKE_N)
[05:04:39] [PASSED] 0x46D2 (ALDERLAKE_N)
[05:04:39] [PASSED] 0x46D3 (ALDERLAKE_N)
[05:04:39] [PASSED] 0x46D4 (ALDERLAKE_N)
[05:04:39] [PASSED] 0xA721 (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA7A1 (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA7A9 (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA7AC (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA7AD (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA720 (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA7A0 (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA7A8 (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA7AA (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA7AB (ALDERLAKE_P)
[05:04:39] [PASSED] 0xA780 (ALDERLAKE_S)
[05:04:39] [PASSED] 0xA781 (ALDERLAKE_S)
[05:04:39] [PASSED] 0xA782 (ALDERLAKE_S)
[05:04:39] [PASSED] 0xA783 (ALDERLAKE_S)
[05:04:39] [PASSED] 0xA788 (ALDERLAKE_S)
[05:04:39] [PASSED] 0xA789 (ALDERLAKE_S)
[05:04:39] [PASSED] 0xA78A (ALDERLAKE_S)
[05:04:39] [PASSED] 0xA78B (ALDERLAKE_S)
[05:04:39] [PASSED] 0x4905 (DG1)
[05:04:39] [PASSED] 0x4906 (DG1)
[05:04:39] [PASSED] 0x4907 (DG1)
[05:04:39] [PASSED] 0x4908 (DG1)
[05:04:39] [PASSED] 0x4909 (DG1)
[05:04:39] [PASSED] 0x56C0 (DG2)
[05:04:39] [PASSED] 0x56C2 (DG2)
[05:04:39] [PASSED] 0x56C1 (DG2)
[05:04:39] [PASSED] 0x7D51 (METEORLAKE)
[05:04:39] [PASSED] 0x7DD1 (METEORLAKE)
[05:04:39] [PASSED] 0x7D41 (METEORLAKE)
[05:04:39] [PASSED] 0x7D67 (METEORLAKE)
[05:04:39] [PASSED] 0xB640 (METEORLAKE)
[05:04:39] [PASSED] 0x56A0 (DG2)
[05:04:39] [PASSED] 0x56A1 (DG2)
[05:04:39] [PASSED] 0x56A2 (DG2)
[05:04:39] [PASSED] 0x56BE (DG2)
[05:04:39] [PASSED] 0x56BF (DG2)
[05:04:39] [PASSED] 0x5690 (DG2)
[05:04:39] [PASSED] 0x5691 (DG2)
[05:04:39] [PASSED] 0x5692 (DG2)
[05:04:39] [PASSED] 0x56A5 (DG2)
[05:04:39] [PASSED] 0x56A6 (DG2)
[05:04:39] [PASSED] 0x56B0 (DG2)
[05:04:39] [PASSED] 0x56B1 (DG2)
[05:04:39] [PASSED] 0x56BA (DG2)
[05:04:39] [PASSED] 0x56BB (DG2)
[05:04:39] [PASSED] 0x56BC (DG2)
[05:04:39] [PASSED] 0x56BD (DG2)
[05:04:39] [PASSED] 0x5693 (DG2)
[05:04:39] [PASSED] 0x5694 (DG2)
[05:04:39] [PASSED] 0x5695 (DG2)
[05:04:39] [PASSED] 0x56A3 (DG2)
[05:04:39] [PASSED] 0x56A4 (DG2)
[05:04:39] [PASSED] 0x56B2 (DG2)
[05:04:39] [PASSED] 0x56B3 (DG2)
[05:04:39] [PASSED] 0x5696 (DG2)
[05:04:39] [PASSED] 0x5697 (DG2)
[05:04:39] [PASSED] 0xB69 (PVC)
[05:04:39] [PASSED] 0xB6E (PVC)
[05:04:39] [PASSED] 0xBD4 (PVC)
[05:04:39] [PASSED] 0xBD5 (PVC)
[05:04:39] [PASSED] 0xBD6 (PVC)
[05:04:39] [PASSED] 0xBD7 (PVC)
[05:04:39] [PASSED] 0xBD8 (PVC)
[05:04:39] [PASSED] 0xBD9 (PVC)
[05:04:39] [PASSED] 0xBDA (PVC)
[05:04:39] [PASSED] 0xBDB (PVC)
[05:04:39] [PASSED] 0xBE0 (PVC)
[05:04:39] [PASSED] 0xBE1 (PVC)
[05:04:39] [PASSED] 0xBE5 (PVC)
[05:04:39] [PASSED] 0x7D40 (METEORLAKE)
[05:04:39] [PASSED] 0x7D45 (METEORLAKE)
[05:04:39] [PASSED] 0x7D55 (METEORLAKE)
[05:04:39] [PASSED] 0x7D60 (METEORLAKE)
[05:04:39] [PASSED] 0x7DD5 (METEORLAKE)
[05:04:39] [PASSED] 0x6420 (LUNARLAKE)
[05:04:39] [PASSED] 0x64A0 (LUNARLAKE)
[05:04:39] [PASSED] 0x64B0 (LUNARLAKE)
[05:04:39] [PASSED] 0xE202 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE209 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE20B (BATTLEMAGE)
[05:04:39] [PASSED] 0xE20C (BATTLEMAGE)
[05:04:39] [PASSED] 0xE20D (BATTLEMAGE)
[05:04:39] [PASSED] 0xE210 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE211 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE212 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE216 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE220 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE221 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE222 (BATTLEMAGE)
[05:04:39] [PASSED] 0xE223 (BATTLEMAGE)
[05:04:39] [PASSED] 0xB080 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB081 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB082 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB083 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB084 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB085 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB086 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB087 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB08F (PANTHERLAKE)
[05:04:39] [PASSED] 0xB090 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB0A0 (PANTHERLAKE)
[05:04:39] [PASSED] 0xB0B0 (PANTHERLAKE)
[05:04:39] [PASSED] 0xD740 (NOVALAKE_S)
[05:04:39] [PASSED] 0xD741 (NOVALAKE_S)
[05:04:39] [PASSED] 0xD742 (NOVALAKE_S)
[05:04:39] [PASSED] 0xD743 (NOVALAKE_S)
[05:04:39] [PASSED] 0xD744 (NOVALAKE_S)
[05:04:39] [PASSED] 0xD745 (NOVALAKE_S)
[05:04:39] [PASSED] 0x674C (CRESCENTISLAND)
[05:04:39] [PASSED] 0xFD80 (PANTHERLAKE)
[05:04:39] [PASSED] 0xFD81 (PANTHERLAKE)
[05:04:39] =============== [PASSED] check_platform_desc ===============
[05:04:39] ===================== [PASSED] xe_pci ======================
[05:04:39] =================== xe_rtp (2 subtests) ====================
[05:04:39] =============== xe_rtp_process_to_sr_tests ================
[05:04:39] [PASSED] coalesce-same-reg
[05:04:39] [PASSED] no-match-no-add
[05:04:39] [PASSED] match-or
[05:04:39] [PASSED] match-or-xfail
[05:04:39] [PASSED] no-match-no-add-multiple-rules
[05:04:39] [PASSED] two-regs-two-entries
[05:04:39] [PASSED] clr-one-set-other
[05:04:39] [PASSED] set-field
[05:04:39] [PASSED] conflict-duplicate
[05:04:39] [PASSED] conflict-not-disjoint
[05:04:39] [PASSED] conflict-reg-type
[05:04:39] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[05:04:39] ================== xe_rtp_process_tests ===================
[05:04:39] [PASSED] active1
[05:04:39] [PASSED] active2
[05:04:39] [PASSED] active-inactive
[05:04:39] [PASSED] inactive-active
[05:04:39] [PASSED] inactive-1st_or_active-inactive
[05:04:39] [PASSED] inactive-2nd_or_active-inactive
[05:04:39] [PASSED] inactive-last_or_active-inactive
[05:04:39] [PASSED] inactive-no_or_active-inactive
[05:04:39] ============== [PASSED] xe_rtp_process_tests ===============
[05:04:39] ===================== [PASSED] xe_rtp ======================
[05:04:39] ==================== xe_wa (1 subtest) =====================
[05:04:39] ======================== xe_wa_gt =========================
[05:04:39] [PASSED] TIGERLAKE B0
[05:04:39] [PASSED] DG1 A0
[05:04:39] [PASSED] DG1 B0
[05:04:39] [PASSED] ALDERLAKE_S A0
[05:04:39] [PASSED] ALDERLAKE_S B0
[05:04:39] [PASSED] ALDERLAKE_S C0
[05:04:39] [PASSED] ALDERLAKE_S D0
[05:04:39] [PASSED] ALDERLAKE_P A0
[05:04:39] [PASSED] ALDERLAKE_P B0
[05:04:39] [PASSED] ALDERLAKE_P C0
[05:04:39] [PASSED] ALDERLAKE_S RPLS D0
[05:04:39] [PASSED] ALDERLAKE_P RPLU E0
[05:04:39] [PASSED] DG2 G10 C0
[05:04:39] [PASSED] DG2 G11 B1
[05:04:39] [PASSED] DG2 G12 A1
[05:04:39] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[05:04:39] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[05:04:39] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[05:04:39] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[05:04:39] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[05:04:39] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[05:04:39] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[05:04:39] ==================== [PASSED] xe_wa_gt =====================
[05:04:39] ====================== [PASSED] xe_wa ======================
[05:04:39] ============================================================
[05:04:39] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[05:04:39] Elapsed time: 35.404s total, 4.232s configuring, 30.655s building, 0.470s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[05:04:39] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:04:41] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[05:05:06] Starting KUnit Kernel (1/1)...
[05:05:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:05:06] ============ drm_test_pick_cmdline (2 subtests) ============
[05:05:06] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[05:05:06] =============== drm_test_pick_cmdline_named ===============
[05:05:06] [PASSED] NTSC
[05:05:06] [PASSED] NTSC-J
[05:05:06] [PASSED] PAL
[05:05:06] [PASSED] PAL-M
[05:05:06] =========== [PASSED] drm_test_pick_cmdline_named ===========
[05:05:06] ============== [PASSED] drm_test_pick_cmdline ==============
[05:05:06] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[05:05:06] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[05:05:06] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[05:05:06] =========== drm_validate_clone_mode (2 subtests) ===========
[05:05:06] ============== drm_test_check_in_clone_mode ===============
[05:05:06] [PASSED] in_clone_mode
[05:05:06] [PASSED] not_in_clone_mode
[05:05:06] ========== [PASSED] drm_test_check_in_clone_mode ===========
[05:05:06] =============== drm_test_check_valid_clones ===============
[05:05:06] [PASSED] not_in_clone_mode
[05:05:06] [PASSED] valid_clone
[05:05:06] [PASSED] invalid_clone
[05:05:06] =========== [PASSED] drm_test_check_valid_clones ===========
[05:05:06] ============= [PASSED] drm_validate_clone_mode =============
[05:05:06] ============= drm_validate_modeset (1 subtest) =============
[05:05:06] [PASSED] drm_test_check_connector_changed_modeset
[05:05:06] ============== [PASSED] drm_validate_modeset ===============
[05:05:06] ====== drm_test_bridge_get_current_state (2 subtests) ======
[05:05:06] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[05:05:06] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[05:05:06] ======== [PASSED] drm_test_bridge_get_current_state ========
[05:05:06] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[05:05:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[05:05:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[05:05:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[05:05:06] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[05:05:06] ============== drm_bridge_alloc (2 subtests) ===============
[05:05:06] [PASSED] drm_test_drm_bridge_alloc_basic
[05:05:06] [PASSED] drm_test_drm_bridge_alloc_get_put
[05:05:06] ================ [PASSED] drm_bridge_alloc =================
[05:05:06] ================== drm_buddy (8 subtests) ==================
[05:05:06] [PASSED] drm_test_buddy_alloc_limit
[05:05:06] [PASSED] drm_test_buddy_alloc_optimistic
[05:05:06] [PASSED] drm_test_buddy_alloc_pessimistic
[05:05:06] [PASSED] drm_test_buddy_alloc_pathological
[05:05:06] [PASSED] drm_test_buddy_alloc_contiguous
[05:05:06] [PASSED] drm_test_buddy_alloc_clear
[05:05:06] [PASSED] drm_test_buddy_alloc_range_bias
[05:05:06] [PASSED] drm_test_buddy_fragmentation_performance
[05:05:06] ==================== [PASSED] drm_buddy ====================
[05:05:06] ============= drm_cmdline_parser (40 subtests) =============
[05:05:06] [PASSED] drm_test_cmdline_force_d_only
[05:05:06] [PASSED] drm_test_cmdline_force_D_only_dvi
[05:05:06] [PASSED] drm_test_cmdline_force_D_only_hdmi
[05:05:06] [PASSED] drm_test_cmdline_force_D_only_not_digital
[05:05:06] [PASSED] drm_test_cmdline_force_e_only
[05:05:06] [PASSED] drm_test_cmdline_res
[05:05:06] [PASSED] drm_test_cmdline_res_vesa
[05:05:06] [PASSED] drm_test_cmdline_res_vesa_rblank
[05:05:06] [PASSED] drm_test_cmdline_res_rblank
[05:05:06] [PASSED] drm_test_cmdline_res_bpp
[05:05:06] [PASSED] drm_test_cmdline_res_refresh
[05:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh
[05:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[05:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[05:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[05:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[05:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[05:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[05:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[05:05:06] [PASSED] drm_test_cmdline_res_margins_force_on
[05:05:06] [PASSED] drm_test_cmdline_res_vesa_margins
[05:05:06] [PASSED] drm_test_cmdline_name
[05:05:06] [PASSED] drm_test_cmdline_name_bpp
[05:05:06] [PASSED] drm_test_cmdline_name_option
[05:05:06] [PASSED] drm_test_cmdline_name_bpp_option
[05:05:06] [PASSED] drm_test_cmdline_rotate_0
[05:05:06] [PASSED] drm_test_cmdline_rotate_90
[05:05:06] [PASSED] drm_test_cmdline_rotate_180
[05:05:06] [PASSED] drm_test_cmdline_rotate_270
[05:05:06] [PASSED] drm_test_cmdline_hmirror
[05:05:06] [PASSED] drm_test_cmdline_vmirror
[05:05:06] [PASSED] drm_test_cmdline_margin_options
[05:05:06] [PASSED] drm_test_cmdline_multiple_options
[05:05:06] [PASSED] drm_test_cmdline_bpp_extra_and_option
[05:05:06] [PASSED] drm_test_cmdline_extra_and_option
[05:05:06] [PASSED] drm_test_cmdline_freestanding_options
[05:05:06] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[05:05:06] [PASSED] drm_test_cmdline_panel_orientation
[05:05:06] ================ drm_test_cmdline_invalid =================
[05:05:06] [PASSED] margin_only
[05:05:06] [PASSED] interlace_only
[05:05:06] [PASSED] res_missing_x
[05:05:06] [PASSED] res_missing_y
[05:05:06] [PASSED] res_bad_y
[05:05:06] [PASSED] res_missing_y_bpp
[05:05:06] [PASSED] res_bad_bpp
[05:05:06] [PASSED] res_bad_refresh
[05:05:06] [PASSED] res_bpp_refresh_force_on_off
[05:05:06] [PASSED] res_invalid_mode
[05:05:06] [PASSED] res_bpp_wrong_place_mode
[05:05:06] [PASSED] name_bpp_refresh
[05:05:06] [PASSED] name_refresh
[05:05:06] [PASSED] name_refresh_wrong_mode
[05:05:06] [PASSED] name_refresh_invalid_mode
[05:05:06] [PASSED] rotate_multiple
[05:05:06] [PASSED] rotate_invalid_val
[05:05:06] [PASSED] rotate_truncated
[05:05:06] [PASSED] invalid_option
[05:05:06] [PASSED] invalid_tv_option
[05:05:06] [PASSED] truncated_tv_option
[05:05:06] ============ [PASSED] drm_test_cmdline_invalid =============
[05:05:06] =============== drm_test_cmdline_tv_options ===============
[05:05:06] [PASSED] NTSC
[05:05:06] [PASSED] NTSC_443
[05:05:06] [PASSED] NTSC_J
[05:05:06] [PASSED] PAL
[05:05:06] [PASSED] PAL_M
[05:05:06] [PASSED] PAL_N
[05:05:06] [PASSED] SECAM
[05:05:06] [PASSED] MONO_525
[05:05:06] [PASSED] MONO_625
[05:05:06] =========== [PASSED] drm_test_cmdline_tv_options ===========
[05:05:06] =============== [PASSED] drm_cmdline_parser ================
[05:05:06] ========== drmm_connector_hdmi_init (20 subtests) ==========
[05:05:06] [PASSED] drm_test_connector_hdmi_init_valid
[05:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_8
[05:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_10
[05:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_12
[05:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[05:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_null
[05:05:06] [PASSED] drm_test_connector_hdmi_init_formats_empty
[05:05:06] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[05:05:06] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:05:06] [PASSED] supported_formats=0x9 yuv420_allowed=1
[05:05:06] [PASSED] supported_formats=0x9 yuv420_allowed=0
[05:05:06] [PASSED] supported_formats=0x3 yuv420_allowed=1
[05:05:06] [PASSED] supported_formats=0x3 yuv420_allowed=0
[05:05:06] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:05:06] [PASSED] drm_test_connector_hdmi_init_null_ddc
[05:05:06] [PASSED] drm_test_connector_hdmi_init_null_product
[05:05:06] [PASSED] drm_test_connector_hdmi_init_null_vendor
[05:05:06] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[05:05:06] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[05:05:06] [PASSED] drm_test_connector_hdmi_init_product_valid
[05:05:06] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[05:05:06] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[05:05:06] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[05:05:06] ========= drm_test_connector_hdmi_init_type_valid =========
[05:05:06] [PASSED] HDMI-A
[05:05:06] [PASSED] HDMI-B
[05:05:06] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[05:05:06] ======== drm_test_connector_hdmi_init_type_invalid ========
[05:05:06] [PASSED] Unknown
[05:05:06] [PASSED] VGA
[05:05:06] [PASSED] DVI-I
[05:05:06] [PASSED] DVI-D
[05:05:06] [PASSED] DVI-A
[05:05:06] [PASSED] Composite
[05:05:06] [PASSED] SVIDEO
[05:05:06] [PASSED] LVDS
[05:05:06] [PASSED] Component
[05:05:06] [PASSED] DIN
[05:05:06] [PASSED] DP
[05:05:06] [PASSED] TV
[05:05:06] [PASSED] eDP
[05:05:06] [PASSED] Virtual
[05:05:06] [PASSED] DSI
[05:05:06] [PASSED] DPI
[05:05:06] [PASSED] Writeback
[05:05:06] [PASSED] SPI
[05:05:06] [PASSED] USB
[05:05:06] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[05:05:06] ============ [PASSED] drmm_connector_hdmi_init =============
[05:05:06] ============= drmm_connector_init (3 subtests) =============
[05:05:06] [PASSED] drm_test_drmm_connector_init
[05:05:06] [PASSED] drm_test_drmm_connector_init_null_ddc
[05:05:06] ========= drm_test_drmm_connector_init_type_valid =========
[05:05:06] [PASSED] Unknown
[05:05:06] [PASSED] VGA
[05:05:06] [PASSED] DVI-I
[05:05:06] [PASSED] DVI-D
[05:05:06] [PASSED] DVI-A
[05:05:06] [PASSED] Composite
[05:05:06] [PASSED] SVIDEO
[05:05:06] [PASSED] LVDS
[05:05:06] [PASSED] Component
[05:05:06] [PASSED] DIN
[05:05:06] [PASSED] DP
[05:05:06] [PASSED] HDMI-A
[05:05:06] [PASSED] HDMI-B
[05:05:06] [PASSED] TV
[05:05:06] [PASSED] eDP
[05:05:06] [PASSED] Virtual
[05:05:06] [PASSED] DSI
[05:05:06] [PASSED] DPI
[05:05:06] [PASSED] Writeback
[05:05:06] [PASSED] SPI
[05:05:06] [PASSED] USB
[05:05:06] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[05:05:06] =============== [PASSED] drmm_connector_init ===============
[05:05:06] ========= drm_connector_dynamic_init (6 subtests) ==========
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_init
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_init_properties
[05:05:06] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[05:05:06] [PASSED] Unknown
[05:05:06] [PASSED] VGA
[05:05:06] [PASSED] DVI-I
[05:05:06] [PASSED] DVI-D
[05:05:06] [PASSED] DVI-A
[05:05:06] [PASSED] Composite
[05:05:06] [PASSED] SVIDEO
[05:05:06] [PASSED] LVDS
[05:05:06] [PASSED] Component
[05:05:06] [PASSED] DIN
[05:05:06] [PASSED] DP
[05:05:06] [PASSED] HDMI-A
[05:05:06] [PASSED] HDMI-B
[05:05:06] [PASSED] TV
[05:05:06] [PASSED] eDP
[05:05:06] [PASSED] Virtual
[05:05:06] [PASSED] DSI
[05:05:06] [PASSED] DPI
[05:05:06] [PASSED] Writeback
[05:05:06] [PASSED] SPI
[05:05:06] [PASSED] USB
[05:05:06] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[05:05:06] ======== drm_test_drm_connector_dynamic_init_name =========
[05:05:06] [PASSED] Unknown
[05:05:06] [PASSED] VGA
[05:05:06] [PASSED] DVI-I
[05:05:06] [PASSED] DVI-D
[05:05:06] [PASSED] DVI-A
[05:05:06] [PASSED] Composite
[05:05:06] [PASSED] SVIDEO
[05:05:06] [PASSED] LVDS
[05:05:06] [PASSED] Component
[05:05:06] [PASSED] DIN
[05:05:06] [PASSED] DP
[05:05:06] [PASSED] HDMI-A
[05:05:06] [PASSED] HDMI-B
[05:05:06] [PASSED] TV
[05:05:06] [PASSED] eDP
[05:05:06] [PASSED] Virtual
[05:05:06] [PASSED] DSI
[05:05:06] [PASSED] DPI
[05:05:06] [PASSED] Writeback
[05:05:06] [PASSED] SPI
[05:05:06] [PASSED] USB
[05:05:06] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[05:05:06] =========== [PASSED] drm_connector_dynamic_init ============
[05:05:06] ==== drm_connector_dynamic_register_early (4 subtests) =====
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[05:05:06] ====== [PASSED] drm_connector_dynamic_register_early =======
[05:05:06] ======= drm_connector_dynamic_register (7 subtests) ========
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[05:05:06] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[05:05:06] ========= [PASSED] drm_connector_dynamic_register ==========
[05:05:06] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[05:05:06] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[05:05:06] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[05:05:06] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[05:05:06] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[05:05:06] ========== drm_test_get_tv_mode_from_name_valid ===========
[05:05:06] [PASSED] NTSC
[05:05:06] [PASSED] NTSC-443
[05:05:06] [PASSED] NTSC-J
[05:05:06] [PASSED] PAL
[05:05:06] [PASSED] PAL-M
[05:05:06] [PASSED] PAL-N
[05:05:06] [PASSED] SECAM
[05:05:06] [PASSED] Mono
[05:05:06] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[05:05:06] [PASSED] drm_test_get_tv_mode_from_name_truncated
[05:05:06] ============ [PASSED] drm_get_tv_mode_from_name ============
[05:05:06] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[05:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[05:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[05:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[05:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[05:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[05:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[05:05:06] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[05:05:06] [PASSED] VIC 96
[05:05:06] [PASSED] VIC 97
[05:05:06] [PASSED] VIC 101
[05:05:06] [PASSED] VIC 102
[05:05:06] [PASSED] VIC 106
[05:05:06] [PASSED] VIC 107
[05:05:06] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[05:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[05:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[05:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[05:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[05:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[05:05:06] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[05:05:06] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[05:05:06] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[05:05:06] [PASSED] Automatic
[05:05:06] [PASSED] Full
[05:05:06] [PASSED] Limited 16:235
[05:05:06] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[05:05:06] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[05:05:06] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[05:05:06] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[05:05:06] === drm_test_drm_hdmi_connector_get_output_format_name ====
[05:05:06] [PASSED] RGB
[05:05:06] [PASSED] YUV 4:2:0
[05:05:06] [PASSED] YUV 4:2:2
[05:05:06] [PASSED] YUV 4:4:4
[05:05:06] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[05:05:06] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[05:05:06] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[05:05:06] ============= drm_damage_helper (21 subtests) ==============
[05:05:06] [PASSED] drm_test_damage_iter_no_damage
[05:05:06] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[05:05:06] [PASSED] drm_test_damage_iter_no_damage_src_moved
[05:05:06] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[05:05:06] [PASSED] drm_test_damage_iter_no_damage_not_visible
[05:05:06] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[05:05:06] [PASSED] drm_test_damage_iter_no_damage_no_fb
[05:05:06] [PASSED] drm_test_damage_iter_simple_damage
[05:05:06] [PASSED] drm_test_damage_iter_single_damage
[05:05:06] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[05:05:06] [PASSED] drm_test_damage_iter_single_damage_outside_src
[05:05:06] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[05:05:06] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[05:05:06] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[05:05:06] [PASSED] drm_test_damage_iter_single_damage_src_moved
[05:05:06] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[05:05:06] [PASSED] drm_test_damage_iter_damage
[05:05:06] [PASSED] drm_test_damage_iter_damage_one_intersect
[05:05:06] [PASSED] drm_test_damage_iter_damage_one_outside
[05:05:06] [PASSED] drm_test_damage_iter_damage_src_moved
[05:05:06] [PASSED] drm_test_damage_iter_damage_not_visible
[05:05:06] ================ [PASSED] drm_damage_helper ================
[05:05:06] ============== drm_dp_mst_helper (3 subtests) ==============
[05:05:06] ============== drm_test_dp_mst_calc_pbn_mode ==============
[05:05:06] [PASSED] Clock 154000 BPP 30 DSC disabled
[05:05:06] [PASSED] Clock 234000 BPP 30 DSC disabled
[05:05:06] [PASSED] Clock 297000 BPP 24 DSC disabled
[05:05:06] [PASSED] Clock 332880 BPP 24 DSC enabled
[05:05:06] [PASSED] Clock 324540 BPP 24 DSC enabled
[05:05:06] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[05:05:06] ============== drm_test_dp_mst_calc_pbn_div ===============
[05:05:06] [PASSED] Link rate 2000000 lane count 4
[05:05:06] [PASSED] Link rate 2000000 lane count 2
[05:05:06] [PASSED] Link rate 2000000 lane count 1
[05:05:06] [PASSED] Link rate 1350000 lane count 4
[05:05:06] [PASSED] Link rate 1350000 lane count 2
[05:05:06] [PASSED] Link rate 1350000 lane count 1
[05:05:06] [PASSED] Link rate 1000000 lane count 4
[05:05:06] [PASSED] Link rate 1000000 lane count 2
[05:05:06] [PASSED] Link rate 1000000 lane count 1
[05:05:06] [PASSED] Link rate 810000 lane count 4
[05:05:06] [PASSED] Link rate 810000 lane count 2
[05:05:06] [PASSED] Link rate 810000 lane count 1
[05:05:06] [PASSED] Link rate 540000 lane count 4
[05:05:06] [PASSED] Link rate 540000 lane count 2
[05:05:06] [PASSED] Link rate 540000 lane count 1
[05:05:06] [PASSED] Link rate 270000 lane count 4
[05:05:06] [PASSED] Link rate 270000 lane count 2
[05:05:06] [PASSED] Link rate 270000 lane count 1
[05:05:06] [PASSED] Link rate 162000 lane count 4
[05:05:06] [PASSED] Link rate 162000 lane count 2
[05:05:06] [PASSED] Link rate 162000 lane count 1
[05:05:06] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[05:05:06] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[05:05:06] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[05:05:06] [PASSED] DP_POWER_UP_PHY with port number
[05:05:06] [PASSED] DP_POWER_DOWN_PHY with port number
[05:05:06] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[05:05:06] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[05:05:06] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[05:05:06] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[05:05:06] [PASSED] DP_QUERY_PAYLOAD with port number
[05:05:06] [PASSED] DP_QUERY_PAYLOAD with VCPI
[05:05:06] [PASSED] DP_REMOTE_DPCD_READ with port number
[05:05:06] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[05:05:06] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[05:05:06] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[05:05:06] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[05:05:06] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[05:05:06] [PASSED] DP_REMOTE_I2C_READ with port number
[05:05:06] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[05:05:06] [PASSED] DP_REMOTE_I2C_READ with transactions array
[05:05:06] [PASSED] DP_REMOTE_I2C_WRITE with port number
[05:05:06] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[05:05:06] [PASSED] DP_REMOTE_I2C_WRITE with data array
[05:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[05:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[05:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[05:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[05:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[05:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[05:05:06] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[05:05:06] ================ [PASSED] drm_dp_mst_helper ================
[05:05:06] ================== drm_exec (7 subtests) ===================
[05:05:06] [PASSED] sanitycheck
[05:05:06] [PASSED] test_lock
[05:05:06] [PASSED] test_lock_unlock
[05:05:06] [PASSED] test_duplicates
[05:05:06] [PASSED] test_prepare
[05:05:06] [PASSED] test_prepare_array
[05:05:06] [PASSED] test_multiple_loops
[05:05:06] ==================== [PASSED] drm_exec =====================
[05:05:06] =========== drm_format_helper_test (17 subtests) ===========
[05:05:06] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[05:05:06] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[05:05:06] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[05:05:06] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[05:05:06] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[05:05:06] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[05:05:06] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[05:05:06] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[05:05:06] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[05:05:06] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[05:05:06] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[05:05:06] ============== drm_test_fb_xrgb8888_to_mono ===============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[05:05:06] ==================== drm_test_fb_swab =====================
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ================ [PASSED] drm_test_fb_swab =================
[05:05:06] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[05:05:06] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[05:05:06] [PASSED] single_pixel_source_buffer
[05:05:06] [PASSED] single_pixel_clip_rectangle
[05:05:06] [PASSED] well_known_colors
[05:05:06] [PASSED] destination_pitch
[05:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[05:05:06] ================= drm_test_fb_clip_offset =================
[05:05:06] [PASSED] pass through
[05:05:06] [PASSED] horizontal offset
[05:05:06] [PASSED] vertical offset
[05:05:06] [PASSED] horizontal and vertical offset
[05:05:06] [PASSED] horizontal offset (custom pitch)
[05:05:06] [PASSED] vertical offset (custom pitch)
[05:05:06] [PASSED] horizontal and vertical offset (custom pitch)
[05:05:06] ============= [PASSED] drm_test_fb_clip_offset =============
[05:05:06] =================== drm_test_fb_memcpy ====================
[05:05:06] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[05:05:06] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[05:05:06] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[05:05:06] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[05:05:06] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[05:05:06] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[05:05:06] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[05:05:06] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[05:05:06] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[05:05:06] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[05:05:06] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[05:05:06] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[05:05:06] =============== [PASSED] drm_test_fb_memcpy ================
[05:05:06] ============= [PASSED] drm_format_helper_test ==============
[05:05:06] ================= drm_format (18 subtests) =================
[05:05:06] [PASSED] drm_test_format_block_width_invalid
[05:05:06] [PASSED] drm_test_format_block_width_one_plane
[05:05:06] [PASSED] drm_test_format_block_width_two_plane
[05:05:06] [PASSED] drm_test_format_block_width_three_plane
[05:05:06] [PASSED] drm_test_format_block_width_tiled
[05:05:06] [PASSED] drm_test_format_block_height_invalid
[05:05:06] [PASSED] drm_test_format_block_height_one_plane
[05:05:06] [PASSED] drm_test_format_block_height_two_plane
[05:05:06] [PASSED] drm_test_format_block_height_three_plane
[05:05:06] [PASSED] drm_test_format_block_height_tiled
[05:05:06] [PASSED] drm_test_format_min_pitch_invalid
[05:05:06] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[05:05:06] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[05:05:06] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[05:05:06] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[05:05:06] [PASSED] drm_test_format_min_pitch_two_plane
[05:05:06] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[05:05:06] [PASSED] drm_test_format_min_pitch_tiled
[05:05:06] =================== [PASSED] drm_format ====================
[05:05:06] ============== drm_framebuffer (10 subtests) ===============
[05:05:06] ========== drm_test_framebuffer_check_src_coords ==========
[05:05:06] [PASSED] Success: source fits into fb
[05:05:06] [PASSED] Fail: overflowing fb with x-axis coordinate
[05:05:06] [PASSED] Fail: overflowing fb with y-axis coordinate
[05:05:06] [PASSED] Fail: overflowing fb with source width
[05:05:06] [PASSED] Fail: overflowing fb with source height
[05:05:06] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[05:05:06] [PASSED] drm_test_framebuffer_cleanup
[05:05:06] =============== drm_test_framebuffer_create ===============
[05:05:06] [PASSED] ABGR8888 normal sizes
[05:05:06] [PASSED] ABGR8888 max sizes
[05:05:06] [PASSED] ABGR8888 pitch greater than min required
[05:05:06] [PASSED] ABGR8888 pitch less than min required
[05:05:06] [PASSED] ABGR8888 Invalid width
[05:05:06] [PASSED] ABGR8888 Invalid buffer handle
[05:05:06] [PASSED] No pixel format
[05:05:06] [PASSED] ABGR8888 Width 0
[05:05:06] [PASSED] ABGR8888 Height 0
[05:05:06] [PASSED] ABGR8888 Out of bound height * pitch combination
[05:05:06] [PASSED] ABGR8888 Large buffer offset
[05:05:06] [PASSED] ABGR8888 Buffer offset for inexistent plane
[05:05:06] [PASSED] ABGR8888 Invalid flag
[05:05:06] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[05:05:06] [PASSED] ABGR8888 Valid buffer modifier
[05:05:06] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[05:05:06] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[05:05:06] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[05:05:06] [PASSED] NV12 Normal sizes
[05:05:06] [PASSED] NV12 Max sizes
[05:05:06] [PASSED] NV12 Invalid pitch
[05:05:06] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[05:05:06] [PASSED] NV12 different modifier per-plane
[05:05:06] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[05:05:06] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[05:05:06] [PASSED] NV12 Modifier for inexistent plane
[05:05:06] [PASSED] NV12 Handle for inexistent plane
[05:05:06] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[05:05:06] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[05:05:06] [PASSED] YVU420 Normal sizes
[05:05:06] [PASSED] YVU420 Max sizes
[05:05:06] [PASSED] YVU420 Invalid pitch
[05:05:06] [PASSED] YVU420 Different pitches
[05:05:06] [PASSED] YVU420 Different buffer offsets/pitches
[05:05:06] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[05:05:06] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[05:05:06] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[05:05:06] [PASSED] YVU420 Valid modifier
[05:05:06] [PASSED] YVU420 Different modifiers per plane
[05:05:06] [PASSED] YVU420 Modifier for inexistent plane
[05:05:06] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[05:05:06] [PASSED] X0L2 Normal sizes
[05:05:06] [PASSED] X0L2 Max sizes
[05:05:06] [PASSED] X0L2 Invalid pitch
[05:05:06] [PASSED] X0L2 Pitch greater than minimum required
[05:05:06] [PASSED] X0L2 Handle for inexistent plane
[05:05:06] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[05:05:06] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[05:05:06] [PASSED] X0L2 Valid modifier
[05:05:06] [PASSED] X0L2 Modifier for inexistent plane
[05:05:06] =========== [PASSED] drm_test_framebuffer_create ===========
[05:05:06] [PASSED] drm_test_framebuffer_free
[05:05:06] [PASSED] drm_test_framebuffer_init
[05:05:06] [PASSED] drm_test_framebuffer_init_bad_format
[05:05:06] [PASSED] drm_test_framebuffer_init_dev_mismatch
[05:05:06] [PASSED] drm_test_framebuffer_lookup
[05:05:06] [PASSED] drm_test_framebuffer_lookup_inexistent
[05:05:06] [PASSED] drm_test_framebuffer_modifiers_not_supported
[05:05:06] ================= [PASSED] drm_framebuffer =================
[05:05:06] ================ drm_gem_shmem (8 subtests) ================
[05:05:06] [PASSED] drm_gem_shmem_test_obj_create
[05:05:06] [PASSED] drm_gem_shmem_test_obj_create_private
[05:05:06] [PASSED] drm_gem_shmem_test_pin_pages
[05:05:06] [PASSED] drm_gem_shmem_test_vmap
[05:05:06] [PASSED] drm_gem_shmem_test_get_pages_sgt
[05:05:06] [PASSED] drm_gem_shmem_test_get_sg_table
[05:05:06] [PASSED] drm_gem_shmem_test_madvise
[05:05:06] [PASSED] drm_gem_shmem_test_purge
[05:05:06] ================== [PASSED] drm_gem_shmem ==================
[05:05:06] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[05:05:06] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[05:05:06] [PASSED] Automatic
[05:05:06] [PASSED] Full
[05:05:06] [PASSED] Limited 16:235
[05:05:06] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[05:05:06] [PASSED] drm_test_check_disable_connector
[05:05:06] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[05:05:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[05:05:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[05:05:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[05:05:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[05:05:06] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[05:05:06] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[05:05:06] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[05:05:06] [PASSED] drm_test_check_output_bpc_dvi
[05:05:06] [PASSED] drm_test_check_output_bpc_format_vic_1
[05:05:06] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[05:05:06] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[05:05:06] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[05:05:06] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[05:05:06] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[05:05:06] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[05:05:06] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[05:05:06] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[05:05:06] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[05:05:06] [PASSED] drm_test_check_broadcast_rgb_value
[05:05:06] [PASSED] drm_test_check_bpc_8_value
[05:05:06] [PASSED] drm_test_check_bpc_10_value
[05:05:06] [PASSED] drm_test_check_bpc_12_value
[05:05:06] [PASSED] drm_test_check_format_value
[05:05:06] [PASSED] drm_test_check_tmds_char_value
[05:05:06] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[05:05:06] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[05:05:06] [PASSED] drm_test_check_mode_valid
[05:05:06] [PASSED] drm_test_check_mode_valid_reject
[05:05:06] [PASSED] drm_test_check_mode_valid_reject_rate
[05:05:06] [PASSED] drm_test_check_mode_valid_reject_max_clock
[05:05:06] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[05:05:06] ================= drm_managed (2 subtests) =================
[05:05:06] [PASSED] drm_test_managed_release_action
[05:05:06] [PASSED] drm_test_managed_run_action
[05:05:06] =================== [PASSED] drm_managed ===================
[05:05:06] =================== drm_mm (6 subtests) ====================
[05:05:06] [PASSED] drm_test_mm_init
[05:05:06] [PASSED] drm_test_mm_debug
[05:05:06] [PASSED] drm_test_mm_align32
[05:05:06] [PASSED] drm_test_mm_align64
[05:05:06] [PASSED] drm_test_mm_lowest
[05:05:06] [PASSED] drm_test_mm_highest
[05:05:06] ===================== [PASSED] drm_mm ======================
[05:05:06] ============= drm_modes_analog_tv (5 subtests) =============
[05:05:06] [PASSED] drm_test_modes_analog_tv_mono_576i
[05:05:06] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[05:05:06] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[05:05:06] [PASSED] drm_test_modes_analog_tv_pal_576i
[05:05:06] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[05:05:06] =============== [PASSED] drm_modes_analog_tv ===============
[05:05:06] ============== drm_plane_helper (2 subtests) ===============
[05:05:06] =============== drm_test_check_plane_state ================
[05:05:06] [PASSED] clipping_simple
[05:05:06] [PASSED] clipping_rotate_reflect
[05:05:06] [PASSED] positioning_simple
[05:05:06] [PASSED] upscaling
[05:05:06] [PASSED] downscaling
[05:05:06] [PASSED] rounding1
[05:05:06] [PASSED] rounding2
[05:05:06] [PASSED] rounding3
[05:05:06] [PASSED] rounding4
[05:05:06] =========== [PASSED] drm_test_check_plane_state ============
[05:05:06] =========== drm_test_check_invalid_plane_state ============
[05:05:06] [PASSED] positioning_invalid
[05:05:06] [PASSED] upscaling_invalid
[05:05:06] [PASSED] downscaling_invalid
[05:05:06] ======= [PASSED] drm_test_check_invalid_plane_state ========
[05:05:06] ================ [PASSED] drm_plane_helper =================
[05:05:06] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[05:05:06] ====== drm_test_connector_helper_tv_get_modes_check =======
[05:05:06] [PASSED] None
[05:05:06] [PASSED] PAL
[05:05:06] [PASSED] NTSC
[05:05:06] [PASSED] Both, NTSC Default
[05:05:06] [PASSED] Both, PAL Default
[05:05:06] [PASSED] Both, NTSC Default, with PAL on command-line
[05:05:06] [PASSED] Both, PAL Default, with NTSC on command-line
[05:05:06] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[05:05:06] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[05:05:06] ================== drm_rect (9 subtests) ===================
[05:05:06] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[05:05:06] [PASSED] drm_test_rect_clip_scaled_not_clipped
[05:05:06] [PASSED] drm_test_rect_clip_scaled_clipped
[05:05:06] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[05:05:06] ================= drm_test_rect_intersect =================
[05:05:06] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[05:05:06] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[05:05:06] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[05:05:06] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[05:05:06] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[05:05:06] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[05:05:06] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[05:05:06] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[05:05:06] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[05:05:06] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[05:05:06] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[05:05:06] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[05:05:06] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[05:05:06] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[05:05:06] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[05:05:06] ============= [PASSED] drm_test_rect_intersect =============
[05:05:06] ================ drm_test_rect_calc_hscale ================
[05:05:06] [PASSED] normal use
[05:05:06] [PASSED] out of max range
[05:05:06] [PASSED] out of min range
[05:05:06] [PASSED] zero dst
[05:05:06] [PASSED] negative src
[05:05:06] [PASSED] negative dst
[05:05:06] ============ [PASSED] drm_test_rect_calc_hscale ============
[05:05:06] ================ drm_test_rect_calc_vscale ================
[05:05:06] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[05:05:06] [PASSED] out of max range
[05:05:06] [PASSED] out of min range
[05:05:06] [PASSED] zero dst
[05:05:06] [PASSED] negative src
[05:05:06] [PASSED] negative dst
[05:05:06] ============ [PASSED] drm_test_rect_calc_vscale ============
[05:05:06] ================== drm_test_rect_rotate ===================
[05:05:06] [PASSED] reflect-x
[05:05:06] [PASSED] reflect-y
[05:05:06] [PASSED] rotate-0
[05:05:06] [PASSED] rotate-90
[05:05:06] [PASSED] rotate-180
[05:05:06] [PASSED] rotate-270
[05:05:06] ============== [PASSED] drm_test_rect_rotate ===============
[05:05:06] ================ drm_test_rect_rotate_inv =================
[05:05:06] [PASSED] reflect-x
[05:05:06] [PASSED] reflect-y
[05:05:06] [PASSED] rotate-0
[05:05:06] [PASSED] rotate-90
[05:05:06] [PASSED] rotate-180
[05:05:06] [PASSED] rotate-270
[05:05:06] ============ [PASSED] drm_test_rect_rotate_inv =============
[05:05:06] ==================== [PASSED] drm_rect =====================
[05:05:06] ============ drm_sysfb_modeset_test (1 subtest) ============
[05:05:06] ============ drm_test_sysfb_build_fourcc_list =============
[05:05:06] [PASSED] no native formats
[05:05:06] [PASSED] XRGB8888 as native format
[05:05:06] [PASSED] remove duplicates
[05:05:06] [PASSED] convert alpha formats
[05:05:06] [PASSED] random formats
[05:05:06] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[05:05:06] ============= [PASSED] drm_sysfb_modeset_test ==============
[05:05:06] ============================================================
[05:05:06] Testing complete. Ran 622 tests: passed: 622
[05:05:06] Elapsed time: 26.599s total, 1.696s configuring, 24.481s building, 0.393s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[05:05:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:05:08] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[05:05:17] Starting KUnit Kernel (1/1)...
[05:05:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:05:17] ================= ttm_device (5 subtests) ==================
[05:05:17] [PASSED] ttm_device_init_basic
[05:05:17] [PASSED] ttm_device_init_multiple
[05:05:17] [PASSED] ttm_device_fini_basic
[05:05:17] [PASSED] ttm_device_init_no_vma_man
[05:05:17] ================== ttm_device_init_pools ==================
[05:05:17] [PASSED] No DMA allocations, no DMA32 required
[05:05:17] [PASSED] DMA allocations, DMA32 required
[05:05:17] [PASSED] No DMA allocations, DMA32 required
[05:05:17] [PASSED] DMA allocations, no DMA32 required
[05:05:17] ============== [PASSED] ttm_device_init_pools ==============
[05:05:17] =================== [PASSED] ttm_device ====================
[05:05:17] ================== ttm_pool (8 subtests) ===================
[05:05:17] ================== ttm_pool_alloc_basic ===================
[05:05:17] [PASSED] One page
[05:05:17] [PASSED] More than one page
[05:05:17] [PASSED] Above the allocation limit
[05:05:17] [PASSED] One page, with coherent DMA mappings enabled
[05:05:17] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:05:17] ============== [PASSED] ttm_pool_alloc_basic ===============
[05:05:17] ============== ttm_pool_alloc_basic_dma_addr ==============
[05:05:17] [PASSED] One page
[05:05:17] [PASSED] More than one page
[05:05:17] [PASSED] Above the allocation limit
[05:05:17] [PASSED] One page, with coherent DMA mappings enabled
[05:05:17] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:05:17] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[05:05:17] [PASSED] ttm_pool_alloc_order_caching_match
[05:05:17] [PASSED] ttm_pool_alloc_caching_mismatch
[05:05:17] [PASSED] ttm_pool_alloc_order_mismatch
[05:05:17] [PASSED] ttm_pool_free_dma_alloc
[05:05:17] [PASSED] ttm_pool_free_no_dma_alloc
[05:05:17] [PASSED] ttm_pool_fini_basic
[05:05:17] ==================== [PASSED] ttm_pool =====================
[05:05:17] ================ ttm_resource (8 subtests) =================
[05:05:17] ================= ttm_resource_init_basic =================
[05:05:17] [PASSED] Init resource in TTM_PL_SYSTEM
[05:05:17] [PASSED] Init resource in TTM_PL_VRAM
[05:05:17] [PASSED] Init resource in a private placement
[05:05:17] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[05:05:17] ============= [PASSED] ttm_resource_init_basic =============
[05:05:17] [PASSED] ttm_resource_init_pinned
[05:05:17] [PASSED] ttm_resource_fini_basic
[05:05:17] [PASSED] ttm_resource_manager_init_basic
[05:05:17] [PASSED] ttm_resource_manager_usage_basic
[05:05:17] [PASSED] ttm_resource_manager_set_used_basic
[05:05:17] [PASSED] ttm_sys_man_alloc_basic
[05:05:17] [PASSED] ttm_sys_man_free_basic
[05:05:17] ================== [PASSED] ttm_resource ===================
[05:05:17] =================== ttm_tt (15 subtests) ===================
[05:05:17] ==================== ttm_tt_init_basic ====================
[05:05:17] [PASSED] Page-aligned size
[05:05:17] [PASSED] Extra pages requested
[05:05:17] ================ [PASSED] ttm_tt_init_basic ================
[05:05:17] [PASSED] ttm_tt_init_misaligned
[05:05:17] [PASSED] ttm_tt_fini_basic
[05:05:17] [PASSED] ttm_tt_fini_sg
[05:05:17] [PASSED] ttm_tt_fini_shmem
[05:05:17] [PASSED] ttm_tt_create_basic
[05:05:17] [PASSED] ttm_tt_create_invalid_bo_type
[05:05:17] [PASSED] ttm_tt_create_ttm_exists
[05:05:17] [PASSED] ttm_tt_create_failed
[05:05:17] [PASSED] ttm_tt_destroy_basic
[05:05:17] [PASSED] ttm_tt_populate_null_ttm
[05:05:17] [PASSED] ttm_tt_populate_populated_ttm
[05:05:17] [PASSED] ttm_tt_unpopulate_basic
[05:05:17] [PASSED] ttm_tt_unpopulate_empty_ttm
[05:05:17] [PASSED] ttm_tt_swapin_basic
[05:05:17] ===================== [PASSED] ttm_tt ======================
[05:05:17] =================== ttm_bo (14 subtests) ===================
[05:05:17] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[05:05:17] [PASSED] Cannot be interrupted and sleeps
[05:05:17] [PASSED] Cannot be interrupted, locks straight away
[05:05:17] [PASSED] Can be interrupted, sleeps
[05:05:17] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[05:05:17] [PASSED] ttm_bo_reserve_locked_no_sleep
[05:05:17] [PASSED] ttm_bo_reserve_no_wait_ticket
[05:05:17] [PASSED] ttm_bo_reserve_double_resv
[05:05:17] [PASSED] ttm_bo_reserve_interrupted
[05:05:17] [PASSED] ttm_bo_reserve_deadlock
[05:05:17] [PASSED] ttm_bo_unreserve_basic
[05:05:17] [PASSED] ttm_bo_unreserve_pinned
[05:05:17] [PASSED] ttm_bo_unreserve_bulk
[05:05:17] [PASSED] ttm_bo_fini_basic
[05:05:17] [PASSED] ttm_bo_fini_shared_resv
[05:05:17] [PASSED] ttm_bo_pin_basic
[05:05:17] [PASSED] ttm_bo_pin_unpin_resource
[05:05:17] [PASSED] ttm_bo_multiple_pin_one_unpin
[05:05:17] ===================== [PASSED] ttm_bo ======================
[05:05:17] ============== ttm_bo_validate (21 subtests) ===============
[05:05:17] ============== ttm_bo_init_reserved_sys_man ===============
[05:05:17] [PASSED] Buffer object for userspace
[05:05:17] [PASSED] Kernel buffer object
[05:05:17] [PASSED] Shared buffer object
[05:05:17] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[05:05:17] ============== ttm_bo_init_reserved_mock_man ==============
[05:05:17] [PASSED] Buffer object for userspace
[05:05:17] [PASSED] Kernel buffer object
[05:05:17] [PASSED] Shared buffer object
[05:05:17] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[05:05:17] [PASSED] ttm_bo_init_reserved_resv
[05:05:17] ================== ttm_bo_validate_basic ==================
[05:05:17] [PASSED] Buffer object for userspace
[05:05:17] [PASSED] Kernel buffer object
[05:05:17] [PASSED] Shared buffer object
[05:05:17] ============== [PASSED] ttm_bo_validate_basic ==============
[05:05:17] [PASSED] ttm_bo_validate_invalid_placement
[05:05:17] ============= ttm_bo_validate_same_placement ==============
[05:05:17] [PASSED] System manager
[05:05:17] [PASSED] VRAM manager
[05:05:17] ========= [PASSED] ttm_bo_validate_same_placement ==========
[05:05:17] [PASSED] ttm_bo_validate_failed_alloc
[05:05:17] [PASSED] ttm_bo_validate_pinned
[05:05:17] [PASSED] ttm_bo_validate_busy_placement
[05:05:17] ================ ttm_bo_validate_multihop =================
[05:05:17] [PASSED] Buffer object for userspace
[05:05:17] [PASSED] Kernel buffer object
[05:05:17] [PASSED] Shared buffer object
[05:05:17] ============ [PASSED] ttm_bo_validate_multihop =============
[05:05:17] ========== ttm_bo_validate_no_placement_signaled ==========
[05:05:17] [PASSED] Buffer object in system domain, no page vector
[05:05:17] [PASSED] Buffer object in system domain with an existing page vector
[05:05:17] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[05:05:17] ======== ttm_bo_validate_no_placement_not_signaled ========
[05:05:17] [PASSED] Buffer object for userspace
[05:05:17] [PASSED] Kernel buffer object
[05:05:17] [PASSED] Shared buffer object
[05:05:17] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[05:05:17] [PASSED] ttm_bo_validate_move_fence_signaled
[05:05:17] ========= ttm_bo_validate_move_fence_not_signaled =========
[05:05:17] [PASSED] Waits for GPU
[05:05:17] [PASSED] Tries to lock straight away
[05:05:17] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[05:05:17] [PASSED] ttm_bo_validate_happy_evict
[05:05:17] [PASSED] ttm_bo_validate_all_pinned_evict
[05:05:17] [PASSED] ttm_bo_validate_allowed_only_evict
[05:05:17] [PASSED] ttm_bo_validate_deleted_evict
[05:05:17] [PASSED] ttm_bo_validate_busy_domain_evict
[05:05:17] [PASSED] ttm_bo_validate_evict_gutting
[05:05:17] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[05:05:17] ================= [PASSED] ttm_bo_validate =================
[05:05:17] ============================================================
[05:05:17] Testing complete. Ran 101 tests: passed: 101
[05:05:17] Elapsed time: 11.393s total, 1.692s configuring, 9.485s building, 0.178s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4)
2025-11-18 12:47 [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV Satyanarayana K V P
` (4 preceding siblings ...)
2025-11-19 5:05 ` ✓ CI.KUnit: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4) Patchwork
@ 2025-11-19 5:42 ` Patchwork
2025-11-19 6:53 ` ✓ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-11-19 5:42 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2434 bytes --]
== Series Details ==
Series: drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4)
URL : https://patchwork.freedesktop.org/series/153196/
State : success
== Summary ==
CI Bug Log - changes from xe-4124-b603326a067916accf680fd623f4fc3c22bba487_BAT -> xe-pw-153196v4_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-153196v4_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@c-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@b-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][5] ([Intel XE#6520]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8631 -> IGT_8632
* Linux: xe-4124-b603326a067916accf680fd623f4fc3c22bba487 -> xe-pw-153196v4
IGT_8631: 8631
IGT_8632: bbd6b1e5161ad8d244042f4a0d9fefcd575ccf67 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4124-b603326a067916accf680fd623f4fc3c22bba487: b603326a067916accf680fd623f4fc3c22bba487
xe-pw-153196v4: 153196v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/index.html
[-- Attachment #2: Type: text/html, Size: 3145 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.Full: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4)
2025-11-18 12:47 [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV Satyanarayana K V P
` (5 preceding siblings ...)
2025-11-19 5:42 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-11-19 6:53 ` Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-11-19 6:53 UTC (permalink / raw)
To: Satyanarayana K V P; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 85847 bytes --]
== Series Details ==
Series: drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4)
URL : https://patchwork.freedesktop.org/series/153196/
State : success
== Summary ==
CI Bug Log - changes from xe-4124-b603326a067916accf680fd623f4fc3c22bba487_FULL -> xe-pw-153196v4_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between xe-4124-b603326a067916accf680fd623f4fc3c22bba487_FULL and xe-pw-153196v4_FULL:
### New IGT tests (3) ###
* igt@kms_async_flips@test-cursor@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@kms_async_flips@test-cursor@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.16] s
* igt@kms_vrr@negative-basic@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [5.45] s
Known issues
------------
Here are the changes found in xe-pw-153196v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1:
- shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#6054])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2370])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#316]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][5] ([Intel XE#316])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-90.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-153196v4/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#610])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1428])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [PASS][11] -> [DMESG-FAIL][12] ([Intel XE#4543]) +12 other tests dmesg-fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +10 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#607])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2191])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-8/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#787]) +97 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +10 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#787]) +11 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-1/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#3862]) +1 other test incomplete
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#3432])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522] / [Intel XE#4842])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522] / [Intel XE#4842])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#306])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#373]) +7 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@kms_chamelium_edid@hdmi-mode-timings.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-8/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2341])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#308])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2320]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1424]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2321])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#2291]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#5354])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#309]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#309]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-5/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-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#323])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2286])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1508])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#3009])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-8/igt@kms_dp_aux_dev.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4422])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#4422])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1137])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#1135])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-4/igt@kms_feature_discovery@psr1.html
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2374])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-2/igt@kms_feature_discovery@psr1.html
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1135])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2316])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1421]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-2/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2316]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#310]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#301]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#4543] / [Intel XE#5208])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-4/igt@kms_flip@flip-vs-rmfb.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#4543]) +21 other tests dmesg-warn
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][76] -> [DMESG-WARN][77] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1397]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293] / [Intel XE#2380])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: NOTRUN -> [DMESG-FAIL][81] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#455]) +16 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-adlp: [PASS][84] -> [DMESG-FAIL][85] ([Intel XE#4543] / [Intel XE#4921]) +3 other tests dmesg-fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x:
- shard-adlp: [PASS][86] -> [FAIL][87] ([Intel XE#1874])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#651]) +23 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2311]) +16 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4141]) +9 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-adlp: NOTRUN -> [DMESG-FAIL][91] ([Intel XE#4543])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#656]) +9 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#658])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2352])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#651]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#651])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#656]) +9 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#6312])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#653]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2312]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#653]) +22 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2313]) +22 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#455])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#2925] / [Intel XE#3012])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2925])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-436/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#5624])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#5624])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#4359])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#5020])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#870])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#870])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1406] / [Intel XE#2893])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-4/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +11 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-sprite-blt:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [PASS][122] -> [SKIP][123] ([Intel XE#1406] / [Intel XE#4692])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#3414] / [Intel XE#3904])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2413])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#1435])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#6503]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#330])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2168]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-466/igt@kms_vrr@lobf.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1123])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2504])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@blocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#5626])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@xe_eu_stall@blocking-read.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-adlp: NOTRUN -> [SKIP][134] ([Intel XE#4837] / [Intel XE#5565]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-3/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#4837]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#4837]) +7 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-7/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#4837]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-7/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-beng-threads-small:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#688]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-4/igt@xe_evict@evict-beng-threads-small.html
- shard-adlp: NOTRUN -> [SKIP][139] ([Intel XE#261])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-9/igt@xe_evict@evict-beng-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][140] -> [INCOMPLETE][141] ([Intel XE#6321] / [Intel XE#6606])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-cm:
- shard-adlp: NOTRUN -> [SKIP][142] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@xe_evict@evict-small-cm.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#688])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-9/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-adlp: NOTRUN -> [SKIP][144] ([Intel XE#1392] / [Intel XE#5575]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-6/igt@xe_exec_basic@multigpu-no-exec-rebind.html
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2322]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-rebind.html
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1392]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch:
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#288] / [Intel XE#5561]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-1/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#288]) +24 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#5007])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html
* igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#4943]) +14 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][151] -> [FAIL][152] ([Intel XE#5625])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck:
- shard-adlp: NOTRUN -> [SKIP][153] ([Intel XE#4915]) +70 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#4943]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#4915]) +266 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset.html
* igt@xe_gt_freq@freq_fixed_idle:
- shard-dg2-set2: [PASS][156] -> [FAIL][157] ([Intel XE#6407])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@xe_gt_freq@freq_fixed_idle.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2229])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_module_load@load:
- shard-bmg: ([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], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183]) -> ([PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [SKIP][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209]) ([Intel XE#2457])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-5/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-5/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-5/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-2/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-5/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-7/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-4/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-2/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-7/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-8/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-8/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-4/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-4/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-4/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-8/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-7/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-7/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-2/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-2/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-2/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-2/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-7/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-3/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-3/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-7/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-7/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-7/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][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], [SKIP][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260]) ([Intel XE#378])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-436/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-433/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-435/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-436/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-436/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-433/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-433/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-466/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-466/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-463/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-463/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-435/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-435/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-434/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-464/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-464/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-463/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-464/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-434/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-434/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-466/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-436/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-436/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-466/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-436/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-435/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-466/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-466/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-436/igt@xe_module_load@load.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][261] ([Intel XE#6032])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-436/igt@xe_oa@buffer-size.html
- shard-adlp: NOTRUN -> [SKIP][262] ([Intel XE#6032])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@xe_oa@buffer-size.html
* igt@xe_oa@mmio-triggered-reports:
- shard-dg2-set2: NOTRUN -> [SKIP][263] ([Intel XE#3573]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@non-zero-reason:
- shard-adlp: NOTRUN -> [SKIP][264] ([Intel XE#3573])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-4/igt@xe_oa@non-zero-reason.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][265] ([Intel XE#2284]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][266] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][267] ([Intel XE#584])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-4/igt@xe_pm@s3-mocs.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
- shard-lnl: [PASS][268] -> [FAIL][269] ([Intel XE#6251])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][270] ([Intel XE#4733]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
- shard-bmg: NOTRUN -> [SKIP][271] ([Intel XE#4733]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][272] ([Intel XE#944]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-topology:
- shard-bmg: NOTRUN -> [SKIP][273] ([Intel XE#944])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][274] ([Intel XE#4130]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-lnl: NOTRUN -> [SKIP][275] ([Intel XE#4130])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-8/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [PASS][276] -> [FAIL][277] ([Intel XE#5937]) +2 other tests fail
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][278] -> [FAIL][279] ([Intel XE#6569])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [FAIL][280] ([Intel XE#3908]) -> [PASS][281] +1 other test pass
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][282] ([Intel XE#4543]) -> [PASS][283] +3 other tests pass
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][284] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][286] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_color@ctm-blue-to-red:
- shard-adlp: [DMESG-WARN][288] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][289] +8 other tests pass
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-6/igt@kms_color@ctm-blue-to-red.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-1/igt@kms_color@ctm-blue-to-red.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][290] ([Intel XE#4633]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: [SKIP][292] ([Intel XE#2316]) -> [PASS][293] +1 other test pass
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][294] ([Intel XE#4543]) -> [PASS][295] +3 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-1/igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-4/igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][296] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][297] +1 other test pass
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [INCOMPLETE][298] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][299] +2 other tests pass
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: [INCOMPLETE][300] ([Intel XE#2049]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][302] ([Intel XE#718]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-adlp: [ABORT][304] ([Intel XE#5545]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-4/igt@kms_pm_rpm@universal-planes-dpms.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-9/igt@kms_pm_rpm@universal-planes-dpms.html
* {igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12}:
- shard-lnl: [DMESG-WARN][306] ([Intel XE#4537]) -> [PASS][307] +1 other test pass
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-lnl-1/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-4/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html
* igt@xe_exec_balancer@once-cm-parallel-basic:
- shard-adlp: [FAIL][308] ([Intel XE#5625]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-4/igt@xe_exec_balancer@once-cm-parallel-basic.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-8/igt@xe_exec_balancer@once-cm-parallel-basic.html
* igt@xe_exec_threads@threads-bal-mixed-fd-userptr:
- shard-adlp: [DMESG-FAIL][310] ([Intel XE#3876]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-4/igt@xe_exec_threads@threads-bal-mixed-fd-userptr.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-4/igt@xe_exec_threads@threads-bal-mixed-fd-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init:
- shard-bmg: [DMESG-WARN][312] -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-adlp: [DMESG-WARN][314] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-2/igt@xe_pm@s2idle-d3hot-basic-exec.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-4/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm_residency@idle-residency:
- shard-dg2-set2: [FAIL][316] ([Intel XE#6362]) -> [PASS][317] +1 other test pass
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-464/igt@xe_pm_residency@idle-residency.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-434/igt@xe_pm_residency@idle-residency.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: [FAIL][318] ([Intel XE#6251]) -> [PASS][319] +2 other tests pass
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-50.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-50.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [FAIL][320] ([Intel XE#6569]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-3/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [DMESG-FAIL][322] ([Intel XE#3868] / [Intel XE#5213]) -> [PASS][323] +1 other test pass
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [DMESG-WARN][324] ([Intel XE#6627]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-8/igt@xe_survivability@runtime-survivability.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-4/igt@xe_survivability@runtime-survivability.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][326] ([Intel XE#2311]) -> [SKIP][327] ([Intel XE#2312]) +10 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][328] ([Intel XE#4141]) -> [SKIP][329] ([Intel XE#2312]) +9 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][330] ([Intel XE#2312]) -> [SKIP][331] ([Intel XE#4141]) +2 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][332] ([Intel XE#2312]) -> [SKIP][333] ([Intel XE#2311]) +8 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][334] ([Intel XE#2312]) -> [SKIP][335] ([Intel XE#2313]) +7 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][336] ([Intel XE#2313]) -> [SKIP][337] ([Intel XE#2312]) +12 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][338] ([Intel XE#1729]) -> [SKIP][339] ([Intel XE#2426])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][340] ([Intel XE#362]) -> [SKIP][341] ([Intel XE#1500])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [INCOMPLETE][342] ([Intel XE#2594]) -> [SKIP][343] ([Intel XE#288])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: [DMESG-FAIL][344] ([Intel XE#3868]) -> [DMESG-WARN][345] ([Intel XE#3868])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4124-b603326a067916accf680fd623f4fc3c22bba487/shard-adlp-4/igt@xe_exec_reset@cm-cat-error.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/shard-adlp-2/igt@xe_exec_reset@cm-cat-error.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
[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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6362
[Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[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#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#6606]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6606
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8631 -> IGT_8632
* Linux: xe-4124-b603326a067916accf680fd623f4fc3c22bba487 -> xe-pw-153196v4
IGT_8631: 8631
IGT_8632: bbd6b1e5161ad8d244042f4a0d9fefcd575ccf67 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4124-b603326a067916accf680fd623f4fc3c22bba487: b603326a067916accf680fd623f4fc3c22bba487
xe-pw-153196v4: 153196v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153196v4/index.html
[-- Attachment #2: Type: text/html, Size: 97952 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-11-19 6:53 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-18 12:47 [PATCH v3 0/2] drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV Satyanarayana K V P
2025-11-18 12:47 ` [PATCH v3 1/2] drm/xe/vf: Split GGTT info query and fixup into separate helpers Satyanarayana K V P
2025-11-18 17:17 ` Matthew Brost
2025-11-18 12:47 ` [PATCH v3 2/2] drm/xe/vf: Fix up GGTT mappings on S4 resume across VFs Satyanarayana K V P
2025-11-18 17:08 ` Matthew Brost
2025-11-18 17:26 ` Matthew Brost
2025-11-18 14:59 ` ✓ CI.KUnit: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev3) Patchwork
2025-11-18 19:20 ` ✓ Xe.CI.Full: " Patchwork
2025-11-19 5:05 ` ✓ CI.KUnit: success for drm/xe/vf: Fix up GGTT on S4 resume under SR-IOV (rev4) Patchwork
2025-11-19 5:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-19 6:53 ` ✓ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox