* [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning
@ 2025-10-15 14:28 Nareshkumar Gollakoti
2025-10-15 23:59 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6) Patchwork
` (13 more replies)
0 siblings, 14 replies; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-10-15 14:28 UTC (permalink / raw)
To: intel-xe; +Cc: naresh.kumar.g, Michal.Wajdeczko
Due to SLA agreement between PF and VFs, multi CCS mode can't
be enabled when VFs are already enabled.
Similarly, enabling VFs must be blocked when multi CCS mode enabled.
v2:
- function xe_device_is_vf_enabled has been refactored to
xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
- The code now distinctly checks for SR-IOV VF mode and
SR-IOV PF with VFs enabled.
- Log messages have been updated to explicitly state the current mode.
- The function xe_multi_ccs_mode_enabled is moved to xe_device.h
v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
v4:
- sysfs interface for CCS mode is not initialized
when operating in SRIOV VF Mode.
- xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
enablement.
- remove unnecessary comments as flow is self explanatory.
v5:(review comments from Michal)
- Add xe device level CCS mode block with mutex lock and CCS mode state
- necessesary functions to manage ccs mode state to provide strict mutual
exclusive support b/w CCS mode & SRIOV VF enabling
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/xe_device.c | 20 ++++++++
drivers/gpu/drm/xe/xe_device.h | 68 ++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_device_types.h | 24 ++++++++++
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 31 +++++++++----
drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 31 ++++++++++++-
drivers/gpu/drm/xe/xe_pci_sriov.c | 9 ++++
6 files changed, 174 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 386940323630..c01eda9baac9 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -799,6 +799,24 @@ static int probe_has_flat_ccs(struct xe_device *xe)
return 0;
}
+static int xe_ccs_mode_init(struct xe_device *xe)
+{
+ /*
+ * Initialize CCS mode state to Not available.
+ * It will be update by GT level CCS mode
+ * if applicable.
+ */
+ xe->ccs_mode.state = XE_CCSMODE_NOT_AVAILABLE;
+
+ /*
+ * CCS mode mutex lock initalization
+ * The lock ensures mutual exclusion when updating
+ * CCS mode support either during VF provisioning or
+ * GT level CCS mode configuration.
+ */
+ return drmm_mutex_init(&xe->drm, &xe->ccs_mode.lock);
+}
+
int xe_device_probe(struct xe_device *xe)
{
struct xe_tile *tile;
@@ -888,6 +906,8 @@ int xe_device_probe(struct xe_device *xe)
if (err)
return err;
+ xe_ccs_mode_init(xe);
+
for_each_gt(gt, xe, id) {
err = xe_gt_init(gt);
if (err)
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index 32cc6323b7f6..5e6efdf6074c 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -172,6 +172,74 @@ static inline bool xe_device_has_lmtt(struct xe_device *xe)
return IS_DGFX(xe);
}
+static inline bool xe_ccs_mode_enabled(struct xe_device *xe)
+{
+ if (xe->ccs_mode.state == XE_CCSMODE_ENABLE_INPROGRESS ||
+ xe->ccs_mode.state == XE_CCSMODE_ENABLED) {
+ return true;
+ }
+
+ return false;
+}
+
+static inline bool xe_ccs_mode_is_unsupported(struct xe_device *xe)
+{
+ return xe->ccs_mode.state == XE_CCSMODE_ENABLE_UNSUPPORTED;
+}
+
+/**
+ * __xe_ccs_mode_toggle_support - toggles CCS mode support flag based on VF provision
+ * @xe: ptr to struct xe_device
+ * @enable: gets boolean value true/false
+ *
+ * CCS mode state support toggles to unsupported if VF provisioned
+ * otherwise toggles to supported
+ */
+static inline int
+__xe_ccs_mode_toggle_support(struct xe_device *xe, bool enable)
+{
+ mutex_lock(&xe->ccs_mode.lock);
+
+ if (!enable && xe_ccs_mode_enabled(xe))
+ goto err;
+
+ xe->ccs_mode.state = enable ?
+ XE_CCSMODE_ENABLE_SUPPORTED : XE_CCSMODE_ENABLE_UNSUPPORTED;
+
+ mutex_unlock(&xe->ccs_mode.lock);
+
+ return 0;
+
+err:
+ mutex_unlock(&xe->ccs_mode.lock);
+ return -ECANCELED;
+}
+
+static inline int xe_ccs_mode_support_disable(struct xe_device *xe)
+{
+ return __xe_ccs_mode_toggle_support(xe, false);
+}
+
+static inline int xe_ccs_mode_support_enable(struct xe_device *xe)
+{
+ return __xe_ccs_mode_toggle_support(xe, true);
+}
+
+static inline int xe_ccs_mode_allowed_to_update(struct xe_device *xe)
+{
+ mutex_lock(&xe->ccs_mode.lock);
+
+ if (xe_ccs_mode_is_unsupported(xe)) {
+ mutex_unlock(&xe->ccs_mode.lock);
+ return -ECANCELED;
+ }
+
+ xe->ccs_mode.state = XE_CCSMODE_ENABLE_INPROGRESS;
+ mutex_unlock(&xe->ccs_mode.lock);
+
+ return 0;
+}
+
u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size);
void xe_device_snapshot_print(struct xe_device *xe, struct drm_printer *p);
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 989244418950..fa7fdcc19284 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -73,6 +73,22 @@ struct xe_vram_region;
const struct xe_tile * : (const struct xe_device *)((tile__)->xe), \
struct xe_tile * : (tile__)->xe)
+/**
+ * enum xe_ccsmode_state - ccsmode capability state
+ *
+ * @XE_CCSMODE_NOT_AVAILABLE: CCSmode not available in HW
+ * @XE_CCSMODE_ENABLE_UNSUPPORTED: CCS mode enable not supported
+ * @XE_CCSMODE_ENABLE_SUPPORTED: CCS mode enable supported
+ * @XE_CCSMODE_ENABLED: CCS mode enabled
+ */
+enum xe_ccsmode_state {
+ XE_CCSMODE_NOT_AVAILABLE = 1,
+ XE_CCSMODE_ENABLE_UNSUPPORTED,
+ XE_CCSMODE_ENABLE_SUPPORTED,
+ XE_CCSMODE_ENABLE_INPROGRESS,
+ XE_CCSMODE_ENABLED
+};
+
/**
* struct xe_mmio - register mmio structure
*
@@ -616,6 +632,14 @@ struct xe_device {
atomic_t g2g_test_count;
#endif
+ /** @ccs_mode: CCS mode lock **/
+ struct {
+ /** @state: CCSmode functionality state */
+ enum xe_ccsmode_state state;
+ /** @lock: protects CCS mode state changes */
+ struct mutex lock;
+ } ccs_mode;
+
/* private: */
#if IS_ENABLED(CONFIG_DRM_XE_DISPLAY)
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
index 50fffc9ebf62..dbf254a793c8 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
@@ -117,15 +117,15 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
u32 num_engines, num_slices;
int ret;
- if (IS_SRIOV(xe)) {
- xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
- xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
- return -EOPNOTSUPP;
+ ret = xe_ccs_mode_allowed_to_update(xe);
+ if (ret < 0) {
+ xe_gt_dbg(gt, "Can't change CCS mode as VF being enabled\n");
+ return ret;
}
ret = kstrtou32(buff, 0, &num_engines);
if (ret)
- return ret;
+ goto failed;
/*
* Ensure number of engines specified is valid and there is an
@@ -135,7 +135,8 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
if (!num_engines || num_engines > num_slices || num_slices % num_engines) {
xe_gt_dbg(gt, "Invalid compute config, %d engines %d slices\n",
num_engines, num_slices);
- return -EINVAL;
+ ret = -EINVAL;
+ goto failed;
}
/* CCS mode can only be updated when there are no drm clients */
@@ -143,7 +144,8 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
if (!list_empty(&xe->drm.filelist)) {
mutex_unlock(&xe->drm.filelist_mutex);
xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
- return -EBUSY;
+ ret = -EBUSY;
+ goto failed;
}
if (gt->ccs_mode != num_engines) {
@@ -155,7 +157,14 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
mutex_unlock(&xe->drm.filelist_mutex);
+ xe_gt_ccs_mode_update(gt);
+
return count;
+
+failed:
+ xe_gt_ccs_mode_update(gt);
+
+ return ret;
}
static DEVICE_ATTR_RW(ccs_mode);
@@ -184,6 +193,8 @@ static void xe_gt_ccs_mode_sysfs_fini(void *arg)
* The number of available compute slices is exposed to user through a per-gt
* 'num_cslices' sysfs interface.
*
+ * The sysfs interface for CCS mode is not set up in SRIOV VF Mode.
+ *
* Returns: Returns error value for failure and 0 for success.
*/
int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
@@ -191,12 +202,16 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
struct xe_device *xe = gt_to_xe(gt);
int err;
- if (!xe_gt_ccs_mode_enabled(gt))
+ if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
return 0;
err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
if (err)
return err;
+ /* update xe level CCS mode to supported if any gt supports */
+ if (xe->ccs_mode.state == XE_CCSMODE_NOT_AVAILABLE)
+ xe->ccs_mode.state = XE_CCSMODE_ENABLE_SUPPORTED;
+
return devm_add_action_or_reset(xe->drm.dev, xe_gt_ccs_mode_sysfs_fini, gt);
}
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
index f8779852cf0d..0b88fe7d2ba4 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
@@ -20,5 +20,34 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
return hweight32(CCS_MASK(gt)) > 1;
}
-#endif
+static inline bool xe_gt_ccs_mode_is_enabled(struct xe_gt *gt)
+{
+ /* Check if CCS mode enabled with more than one compute engine*/
+ return gt->ccs_mode > 1;
+}
+
+static inline int xe_gt_ccs_mode_update(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ mutex_lock(&xe->ccs_mode.lock);
+ /* Change CCS mode state to enabled if CCS mode configured */
+ if (xe_gt_ccs_mode_is_enabled(gt)) {
+ xe->ccs_mode.state = XE_CCSMODE_ENABLED;
+ goto out;
+ }
+ /*
+ * Change CCS mode state to disabled,
+ * if none of the gt configured CCS mode with multi engines
+ */
+ if (xe->ccs_mode.state != XE_CCSMODE_ENABLED)
+ xe->ccs_mode.state = XE_CCSMODE_ENABLE_SUPPORTED;
+
+out:
+ mutex_unlock(&xe->ccs_mode.lock);
+
+ return 0;
+}
+
+#endif
diff --git a/drivers/gpu/drm/xe/xe_pci_sriov.c b/drivers/gpu/drm/xe/xe_pci_sriov.c
index 9c1c9e669b04..8681a4a12fdb 100644
--- a/drivers/gpu/drm/xe/xe_pci_sriov.c
+++ b/drivers/gpu/drm/xe/xe_pci_sriov.c
@@ -153,6 +153,10 @@ static int pf_enable_vfs(struct xe_device *xe, int num_vfs)
xe_assert(xe, num_vfs <= total_vfs);
xe_sriov_dbg(xe, "enabling %u VF%s\n", num_vfs, str_plural(num_vfs));
+ err = xe_ccs_mode_support_disable(xe);
+ if (err < 0)
+ goto failed_ccsmode;
+
err = xe_sriov_pf_wait_ready(xe);
if (err)
goto out;
@@ -195,8 +199,11 @@ static int pf_enable_vfs(struct xe_device *xe, int num_vfs)
pf_unprovision_vfs(xe, num_vfs);
xe_pm_runtime_put(xe);
out:
+ xe_ccs_mode_support_enable(xe);
+failed_ccsmode:
xe_sriov_notice(xe, "Failed to enable %u VF%s (%pe)\n",
num_vfs, str_plural(num_vfs), ERR_PTR(err));
+
return err;
}
@@ -223,6 +230,8 @@ static int pf_disable_vfs(struct xe_device *xe)
/* not needed anymore - see pf_enable_vfs() */
xe_pm_runtime_put(xe);
+ xe_ccs_mode_support_enable(xe);
+
xe_sriov_info(xe, "Disabled %u VF%s\n", num_vfs, str_plural(num_vfs));
return 0;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 31+ messages in thread
* ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
@ 2025-10-15 23:59 ` Patchwork
2025-10-16 0:59 ` ✓ Xe.CI.BAT: " Patchwork
` (12 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-10-15 23:59 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6)
URL : https://patchwork.freedesktop.org/series/154538/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:58:12] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:58:16] 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
[23:58:46] Starting KUnit Kernel (1/1)...
[23:58:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:58:46] ================== guc_buf (11 subtests) ===================
[23:58:46] [PASSED] test_smallest
[23:58:46] [PASSED] test_largest
[23:58:46] [PASSED] test_granular
[23:58:46] [PASSED] test_unique
[23:58:46] [PASSED] test_overlap
[23:58:46] [PASSED] test_reusable
[23:58:46] [PASSED] test_too_big
[23:58:46] [PASSED] test_flush
[23:58:46] [PASSED] test_lookup
[23:58:46] [PASSED] test_data
[23:58:46] [PASSED] test_class
[23:58:46] ===================== [PASSED] guc_buf =====================
[23:58:46] =================== guc_dbm (7 subtests) ===================
[23:58:46] [PASSED] test_empty
[23:58:46] [PASSED] test_default
[23:58:46] ======================== test_size ========================
[23:58:46] [PASSED] 4
[23:58:46] [PASSED] 8
[23:58:46] [PASSED] 32
[23:58:46] [PASSED] 256
[23:58:46] ==================== [PASSED] test_size ====================
[23:58:46] ======================= test_reuse ========================
[23:58:46] [PASSED] 4
[23:58:46] [PASSED] 8
[23:58:46] [PASSED] 32
[23:58:46] [PASSED] 256
[23:58:46] =================== [PASSED] test_reuse ====================
[23:58:46] =================== test_range_overlap ====================
[23:58:46] [PASSED] 4
[23:58:46] [PASSED] 8
[23:58:46] [PASSED] 32
[23:58:46] [PASSED] 256
[23:58:46] =============== [PASSED] test_range_overlap ================
[23:58:46] =================== test_range_compact ====================
[23:58:46] [PASSED] 4
[23:58:46] [PASSED] 8
[23:58:46] [PASSED] 32
[23:58:46] [PASSED] 256
[23:58:46] =============== [PASSED] test_range_compact ================
[23:58:46] ==================== test_range_spare =====================
[23:58:46] [PASSED] 4
[23:58:46] [PASSED] 8
[23:58:46] [PASSED] 32
[23:58:46] [PASSED] 256
[23:58:46] ================ [PASSED] test_range_spare =================
[23:58:46] ===================== [PASSED] guc_dbm =====================
[23:58:46] =================== guc_idm (6 subtests) ===================
[23:58:46] [PASSED] bad_init
[23:58:46] [PASSED] no_init
[23:58:46] [PASSED] init_fini
[23:58:46] [PASSED] check_used
[23:58:46] [PASSED] check_quota
[23:58:46] [PASSED] check_all
[23:58:46] ===================== [PASSED] guc_idm =====================
[23:58:46] ================== no_relay (3 subtests) ===================
[23:58:46] [PASSED] xe_drops_guc2pf_if_not_ready
[23:58:46] [PASSED] xe_drops_guc2vf_if_not_ready
[23:58:46] [PASSED] xe_rejects_send_if_not_ready
[23:58:46] ==================== [PASSED] no_relay =====================
[23:58:46] ================== pf_relay (14 subtests) ==================
[23:58:46] [PASSED] pf_rejects_guc2pf_too_short
[23:58:46] [PASSED] pf_rejects_guc2pf_too_long
[23:58:46] [PASSED] pf_rejects_guc2pf_no_payload
[23:58:46] [PASSED] pf_fails_no_payload
[23:58:46] [PASSED] pf_fails_bad_origin
[23:58:46] [PASSED] pf_fails_bad_type
[23:58:46] [PASSED] pf_txn_reports_error
[23:58:46] [PASSED] pf_txn_sends_pf2guc
[23:58:46] [PASSED] pf_sends_pf2guc
[23:58:46] [SKIPPED] pf_loopback_nop
[23:58:46] [SKIPPED] pf_loopback_echo
[23:58:46] [SKIPPED] pf_loopback_fail
[23:58:46] [SKIPPED] pf_loopback_busy
[23:58:46] [SKIPPED] pf_loopback_retry
[23:58:46] ==================== [PASSED] pf_relay =====================
[23:58:46] ================== vf_relay (3 subtests) ===================
[23:58:46] [PASSED] vf_rejects_guc2vf_too_short
[23:58:46] [PASSED] vf_rejects_guc2vf_too_long
[23:58:46] [PASSED] vf_rejects_guc2vf_no_payload
[23:58:46] ==================== [PASSED] vf_relay =====================
[23:58:46] ===================== lmtt (1 subtest) =====================
[23:58:46] ======================== test_ops =========================
[23:58:46] [PASSED] 2-level
[23:58:46] [PASSED] multi-level
[23:58:46] ==================== [PASSED] test_ops =====================
[23:58:46] ====================== [PASSED] lmtt =======================
[23:58:46] ================= pf_service (11 subtests) =================
[23:58:46] [PASSED] pf_negotiate_any
[23:58:46] [PASSED] pf_negotiate_base_match
[23:58:46] [PASSED] pf_negotiate_base_newer
[23:58:46] [PASSED] pf_negotiate_base_next
[23:58:46] [SKIPPED] pf_negotiate_base_older
[23:58:46] [PASSED] pf_negotiate_base_prev
[23:58:46] [PASSED] pf_negotiate_latest_match
[23:58:46] [PASSED] pf_negotiate_latest_newer
[23:58:46] [PASSED] pf_negotiate_latest_next
[23:58:46] [SKIPPED] pf_negotiate_latest_older
[23:58:46] [SKIPPED] pf_negotiate_latest_prev
[23:58:46] =================== [PASSED] pf_service ====================
[23:58:46] ================= xe_guc_g2g (2 subtests) ==================
[23:58:46] ============== xe_live_guc_g2g_kunit_default ==============
[23:58:46] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[23:58:46] ============== xe_live_guc_g2g_kunit_allmem ===============
[23:58:46] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[23:58:46] =================== [SKIPPED] xe_guc_g2g ===================
[23:58:46] =================== xe_mocs (2 subtests) ===================
[23:58:46] ================ xe_live_mocs_kernel_kunit ================
[23:58:46] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:58:46] ================ xe_live_mocs_reset_kunit =================
[23:58:46] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:58:46] ==================== [SKIPPED] xe_mocs =====================
[23:58:46] ================= xe_migrate (2 subtests) ==================
[23:58:46] ================= xe_migrate_sanity_kunit =================
[23:58:46] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:58:46] ================== xe_validate_ccs_kunit ==================
[23:58:46] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:58:46] =================== [SKIPPED] xe_migrate ===================
[23:58:46] ================== xe_dma_buf (1 subtest) ==================
[23:58:46] ==================== xe_dma_buf_kunit =====================
[23:58:46] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:58:46] =================== [SKIPPED] xe_dma_buf ===================
[23:58:46] ================= xe_bo_shrink (1 subtest) =================
[23:58:46] =================== xe_bo_shrink_kunit ====================
[23:58:46] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:58:46] ================== [SKIPPED] xe_bo_shrink ==================
[23:58:46] ==================== xe_bo (2 subtests) ====================
[23:58:46] ================== xe_ccs_migrate_kunit ===================
[23:58:46] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:58:46] ==================== xe_bo_evict_kunit ====================
[23:58:46] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:58:46] ===================== [SKIPPED] xe_bo ======================
[23:58:46] ==================== args (11 subtests) ====================
[23:58:46] [PASSED] count_args_test
[23:58:46] [PASSED] call_args_example
[23:58:46] [PASSED] call_args_test
[23:58:46] [PASSED] drop_first_arg_example
[23:58:46] [PASSED] drop_first_arg_test
[23:58:46] [PASSED] first_arg_example
[23:58:46] [PASSED] first_arg_test
[23:58:46] [PASSED] last_arg_example
[23:58:46] [PASSED] last_arg_test
[23:58:46] [PASSED] pick_arg_example
[23:58:46] [PASSED] sep_comma_example
[23:58:46] ====================== [PASSED] args =======================
[23:58:46] =================== xe_pci (3 subtests) ====================
[23:58:46] ==================== check_graphics_ip ====================
[23:58:46] [PASSED] 12.00 Xe_LP
[23:58:46] [PASSED] 12.10 Xe_LP+
[23:58:46] [PASSED] 12.55 Xe_HPG
[23:58:46] [PASSED] 12.60 Xe_HPC
[23:58:46] [PASSED] 12.70 Xe_LPG
[23:58:46] [PASSED] 12.71 Xe_LPG
[23:58:46] [PASSED] 12.74 Xe_LPG+
[23:58:46] [PASSED] 20.01 Xe2_HPG
[23:58:46] [PASSED] 20.02 Xe2_HPG
[23:58:46] [PASSED] 20.04 Xe2_LPG
[23:58:46] [PASSED] 30.00 Xe3_LPG
[23:58:46] [PASSED] 30.01 Xe3_LPG
[23:58:46] [PASSED] 30.03 Xe3_LPG
[23:58:46] ================ [PASSED] check_graphics_ip ================
[23:58:46] ===================== check_media_ip ======================
[23:58:46] [PASSED] 12.00 Xe_M
[23:58:46] [PASSED] 12.55 Xe_HPM
[23:58:46] [PASSED] 13.00 Xe_LPM+
[23:58:46] [PASSED] 13.01 Xe2_HPM
[23:58:46] [PASSED] 20.00 Xe2_LPM
[23:58:46] [PASSED] 30.00 Xe3_LPM
[23:58:46] [PASSED] 30.02 Xe3_LPM
[23:58:46] ================= [PASSED] check_media_ip ==================
[23:58:46] ================= check_platform_gt_count =================
[23:58:46] [PASSED] 0x9A60 (TIGERLAKE)
[23:58:46] [PASSED] 0x9A68 (TIGERLAKE)
[23:58:46] [PASSED] 0x9A70 (TIGERLAKE)
[23:58:46] [PASSED] 0x9A40 (TIGERLAKE)
[23:58:46] [PASSED] 0x9A49 (TIGERLAKE)
[23:58:46] [PASSED] 0x9A59 (TIGERLAKE)
[23:58:46] [PASSED] 0x9A78 (TIGERLAKE)
[23:58:46] [PASSED] 0x9AC0 (TIGERLAKE)
[23:58:46] [PASSED] 0x9AC9 (TIGERLAKE)
[23:58:46] [PASSED] 0x9AD9 (TIGERLAKE)
[23:58:46] [PASSED] 0x9AF8 (TIGERLAKE)
[23:58:46] [PASSED] 0x4C80 (ROCKETLAKE)
[23:58:46] [PASSED] 0x4C8A (ROCKETLAKE)
[23:58:46] [PASSED] 0x4C8B (ROCKETLAKE)
[23:58:46] [PASSED] 0x4C8C (ROCKETLAKE)
[23:58:46] [PASSED] 0x4C90 (ROCKETLAKE)
[23:58:46] [PASSED] 0x4C9A (ROCKETLAKE)
[23:58:46] [PASSED] 0x4680 (ALDERLAKE_S)
[23:58:46] [PASSED] 0x4682 (ALDERLAKE_S)
[23:58:46] [PASSED] 0x4688 (ALDERLAKE_S)
[23:58:46] [PASSED] 0x468A (ALDERLAKE_S)
[23:58:46] [PASSED] 0x468B (ALDERLAKE_S)
[23:58:46] [PASSED] 0x4690 (ALDERLAKE_S)
[23:58:46] [PASSED] 0x4692 (ALDERLAKE_S)
[23:58:46] [PASSED] 0x4693 (ALDERLAKE_S)
[23:58:46] [PASSED] 0x46A0 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46A1 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46A2 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46A3 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46A6 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46A8 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46AA (ALDERLAKE_P)
[23:58:46] [PASSED] 0x462A (ALDERLAKE_P)
[23:58:46] [PASSED] 0x4626 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x4628 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46B0 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46B1 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46B2 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46B3 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46C0 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46C1 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46C2 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46C3 (ALDERLAKE_P)
[23:58:46] [PASSED] 0x46D0 (ALDERLAKE_N)
[23:58:46] [PASSED] 0x46D1 (ALDERLAKE_N)
[23:58:46] [PASSED] 0x46D2 (ALDERLAKE_N)
[23:58:46] [PASSED] 0x46D3 (ALDERLAKE_N)
[23:58:46] [PASSED] 0x46D4 (ALDERLAKE_N)
[23:58:46] [PASSED] 0xA721 (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA7A1 (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA7A9 (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA7AC (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA7AD (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA720 (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA7A0 (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA7A8 (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA7AA (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA7AB (ALDERLAKE_P)
[23:58:46] [PASSED] 0xA780 (ALDERLAKE_S)
[23:58:46] [PASSED] 0xA781 (ALDERLAKE_S)
[23:58:46] [PASSED] 0xA782 (ALDERLAKE_S)
[23:58:46] [PASSED] 0xA783 (ALDERLAKE_S)
[23:58:46] [PASSED] 0xA788 (ALDERLAKE_S)
[23:58:46] [PASSED] 0xA789 (ALDERLAKE_S)
[23:58:46] [PASSED] 0xA78A (ALDERLAKE_S)
[23:58:46] [PASSED] 0xA78B (ALDERLAKE_S)
[23:58:46] [PASSED] 0x4905 (DG1)
[23:58:46] [PASSED] 0x4906 (DG1)
[23:58:46] [PASSED] 0x4907 (DG1)
[23:58:46] [PASSED] 0x4908 (DG1)
[23:58:46] [PASSED] 0x4909 (DG1)
[23:58:46] [PASSED] 0x56C0 (DG2)
[23:58:46] [PASSED] 0x56C2 (DG2)
[23:58:46] [PASSED] 0x56C1 (DG2)
[23:58:46] [PASSED] 0x7D51 (METEORLAKE)
[23:58:46] [PASSED] 0x7DD1 (METEORLAKE)
[23:58:46] [PASSED] 0x7D41 (METEORLAKE)
[23:58:46] [PASSED] 0x7D67 (METEORLAKE)
[23:58:46] [PASSED] 0xB640 (METEORLAKE)
[23:58:46] [PASSED] 0x56A0 (DG2)
[23:58:46] [PASSED] 0x56A1 (DG2)
[23:58:46] [PASSED] 0x56A2 (DG2)
[23:58:46] [PASSED] 0x56BE (DG2)
[23:58:46] [PASSED] 0x56BF (DG2)
[23:58:46] [PASSED] 0x5690 (DG2)
[23:58:46] [PASSED] 0x5691 (DG2)
[23:58:46] [PASSED] 0x5692 (DG2)
[23:58:46] [PASSED] 0x56A5 (DG2)
[23:58:46] [PASSED] 0x56A6 (DG2)
[23:58:46] [PASSED] 0x56B0 (DG2)
[23:58:46] [PASSED] 0x56B1 (DG2)
[23:58:46] [PASSED] 0x56BA (DG2)
[23:58:46] [PASSED] 0x56BB (DG2)
[23:58:46] [PASSED] 0x56BC (DG2)
[23:58:46] [PASSED] 0x56BD (DG2)
[23:58:46] [PASSED] 0x5693 (DG2)
[23:58:46] [PASSED] 0x5694 (DG2)
[23:58:46] [PASSED] 0x5695 (DG2)
[23:58:46] [PASSED] 0x56A3 (DG2)
[23:58:46] [PASSED] 0x56A4 (DG2)
[23:58:46] [PASSED] 0x56B2 (DG2)
[23:58:46] [PASSED] 0x56B3 (DG2)
[23:58:46] [PASSED] 0x5696 (DG2)
[23:58:46] [PASSED] 0x5697 (DG2)
[23:58:46] [PASSED] 0xB69 (PVC)
[23:58:46] [PASSED] 0xB6E (PVC)
[23:58:46] [PASSED] 0xBD4 (PVC)
[23:58:46] [PASSED] 0xBD5 (PVC)
[23:58:46] [PASSED] 0xBD6 (PVC)
[23:58:46] [PASSED] 0xBD7 (PVC)
[23:58:46] [PASSED] 0xBD8 (PVC)
[23:58:46] [PASSED] 0xBD9 (PVC)
[23:58:46] [PASSED] 0xBDA (PVC)
[23:58:46] [PASSED] 0xBDB (PVC)
[23:58:46] [PASSED] 0xBE0 (PVC)
[23:58:46] [PASSED] 0xBE1 (PVC)
[23:58:46] [PASSED] 0xBE5 (PVC)
[23:58:46] [PASSED] 0x7D40 (METEORLAKE)
[23:58:46] [PASSED] 0x7D45 (METEORLAKE)
[23:58:46] [PASSED] 0x7D55 (METEORLAKE)
[23:58:46] [PASSED] 0x7D60 (METEORLAKE)
[23:58:46] [PASSED] 0x7DD5 (METEORLAKE)
[23:58:46] [PASSED] 0x6420 (LUNARLAKE)
[23:58:46] [PASSED] 0x64A0 (LUNARLAKE)
[23:58:46] [PASSED] 0x64B0 (LUNARLAKE)
[23:58:46] [PASSED] 0xE202 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE209 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE20B (BATTLEMAGE)
[23:58:46] [PASSED] 0xE20C (BATTLEMAGE)
[23:58:46] [PASSED] 0xE20D (BATTLEMAGE)
[23:58:46] [PASSED] 0xE210 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE211 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE212 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE216 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE220 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE221 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE222 (BATTLEMAGE)
[23:58:46] [PASSED] 0xE223 (BATTLEMAGE)
[23:58:46] [PASSED] 0xB080 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB081 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB082 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB083 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB084 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB085 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB086 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB087 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB08F (PANTHERLAKE)
[23:58:46] [PASSED] 0xB090 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB0A0 (PANTHERLAKE)
[23:58:46] [PASSED] 0xB0B0 (PANTHERLAKE)
[23:58:46] [PASSED] 0xFD80 (PANTHERLAKE)
[23:58:46] [PASSED] 0xFD81 (PANTHERLAKE)
[23:58:46] ============= [PASSED] check_platform_gt_count =============
[23:58:46] ===================== [PASSED] xe_pci ======================
[23:58:46] =================== xe_rtp (2 subtests) ====================
[23:58:46] =============== xe_rtp_process_to_sr_tests ================
[23:58:46] [PASSED] coalesce-same-reg
[23:58:46] [PASSED] no-match-no-add
[23:58:46] [PASSED] match-or
[23:58:46] [PASSED] match-or-xfail
[23:58:46] [PASSED] no-match-no-add-multiple-rules
[23:58:46] [PASSED] two-regs-two-entries
[23:58:46] [PASSED] clr-one-set-other
[23:58:46] [PASSED] set-field
[23:58:46] [PASSED] conflict-duplicate
[23:58:46] [PASSED] conflict-not-disjoint
[23:58:46] [PASSED] conflict-reg-type
[23:58:46] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:58:46] ================== xe_rtp_process_tests ===================
[23:58:46] [PASSED] active1
[23:58:46] [PASSED] active2
[23:58:46] [PASSED] active-inactive
[23:58:46] [PASSED] inactive-active
[23:58:46] [PASSED] inactive-1st_or_active-inactive
[23:58:46] [PASSED] inactive-2nd_or_active-inactive
[23:58:46] [PASSED] inactive-last_or_active-inactive
[23:58:46] [PASSED] inactive-no_or_active-inactive
[23:58:46] ============== [PASSED] xe_rtp_process_tests ===============
[23:58:46] ===================== [PASSED] xe_rtp ======================
[23:58:46] ==================== xe_wa (1 subtest) =====================
[23:58:46] ======================== xe_wa_gt =========================
[23:58:46] [PASSED] TIGERLAKE B0
[23:58:46] [PASSED] DG1 A0
[23:58:46] [PASSED] DG1 B0
[23:58:46] [PASSED] ALDERLAKE_S A0
[23:58:46] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[23:58:46] [PASSED] ALDERLAKE_S C0
[23:58:46] [PASSED] ALDERLAKE_S D0
[23:58:46] [PASSED] ALDERLAKE_P A0
[23:58:46] [PASSED] ALDERLAKE_P B0
[23:58:46] [PASSED] ALDERLAKE_P C0
[23:58:46] [PASSED] ALDERLAKE_S RPLS D0
[23:58:46] [PASSED] ALDERLAKE_P RPLU E0
[23:58:46] [PASSED] DG2 G10 C0
[23:58:46] [PASSED] DG2 G11 B1
[23:58:46] [PASSED] DG2 G12 A1
[23:58:46] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:58:46] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:58:46] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[23:58:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[23:58:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[23:58:46] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[23:58:46] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[23:58:46] ==================== [PASSED] xe_wa_gt =====================
[23:58:46] ====================== [PASSED] xe_wa ======================
[23:58:46] ============================================================
[23:58:46] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[23:58:47] Elapsed time: 34.776s total, 4.185s configuring, 30.224s building, 0.330s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[23:58:47] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:58:48] 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
[23:59:13] Starting KUnit Kernel (1/1)...
[23:59:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:59:13] ============ drm_test_pick_cmdline (2 subtests) ============
[23:59:13] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[23:59:13] =============== drm_test_pick_cmdline_named ===============
[23:59:13] [PASSED] NTSC
[23:59:13] [PASSED] NTSC-J
[23:59:13] [PASSED] PAL
[23:59:13] [PASSED] PAL-M
[23:59:13] =========== [PASSED] drm_test_pick_cmdline_named ===========
[23:59:13] ============== [PASSED] drm_test_pick_cmdline ==============
[23:59:13] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[23:59:13] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[23:59:13] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[23:59:13] =========== drm_validate_clone_mode (2 subtests) ===========
[23:59:13] ============== drm_test_check_in_clone_mode ===============
[23:59:13] [PASSED] in_clone_mode
[23:59:13] [PASSED] not_in_clone_mode
[23:59:13] ========== [PASSED] drm_test_check_in_clone_mode ===========
[23:59:13] =============== drm_test_check_valid_clones ===============
[23:59:13] [PASSED] not_in_clone_mode
[23:59:13] [PASSED] valid_clone
[23:59:13] [PASSED] invalid_clone
[23:59:13] =========== [PASSED] drm_test_check_valid_clones ===========
[23:59:13] ============= [PASSED] drm_validate_clone_mode =============
[23:59:13] ============= drm_validate_modeset (1 subtest) =============
[23:59:13] [PASSED] drm_test_check_connector_changed_modeset
[23:59:13] ============== [PASSED] drm_validate_modeset ===============
[23:59:13] ====== drm_test_bridge_get_current_state (2 subtests) ======
[23:59:13] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[23:59:13] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[23:59:13] ======== [PASSED] drm_test_bridge_get_current_state ========
[23:59:13] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[23:59:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[23:59:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[23:59:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[23:59:13] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[23:59:13] ============== drm_bridge_alloc (2 subtests) ===============
[23:59:13] [PASSED] drm_test_drm_bridge_alloc_basic
[23:59:13] [PASSED] drm_test_drm_bridge_alloc_get_put
[23:59:13] ================ [PASSED] drm_bridge_alloc =================
[23:59:13] ================== drm_buddy (8 subtests) ==================
[23:59:13] [PASSED] drm_test_buddy_alloc_limit
[23:59:13] [PASSED] drm_test_buddy_alloc_optimistic
[23:59:13] [PASSED] drm_test_buddy_alloc_pessimistic
[23:59:13] [PASSED] drm_test_buddy_alloc_pathological
[23:59:13] [PASSED] drm_test_buddy_alloc_contiguous
[23:59:13] [PASSED] drm_test_buddy_alloc_clear
[23:59:13] [PASSED] drm_test_buddy_alloc_range_bias
[23:59:13] [PASSED] drm_test_buddy_fragmentation_performance
[23:59:13] ==================== [PASSED] drm_buddy ====================
[23:59:13] ============= drm_cmdline_parser (40 subtests) =============
[23:59:13] [PASSED] drm_test_cmdline_force_d_only
[23:59:13] [PASSED] drm_test_cmdline_force_D_only_dvi
[23:59:13] [PASSED] drm_test_cmdline_force_D_only_hdmi
[23:59:13] [PASSED] drm_test_cmdline_force_D_only_not_digital
[23:59:13] [PASSED] drm_test_cmdline_force_e_only
[23:59:13] [PASSED] drm_test_cmdline_res
[23:59:13] [PASSED] drm_test_cmdline_res_vesa
[23:59:13] [PASSED] drm_test_cmdline_res_vesa_rblank
[23:59:13] [PASSED] drm_test_cmdline_res_rblank
[23:59:13] [PASSED] drm_test_cmdline_res_bpp
[23:59:13] [PASSED] drm_test_cmdline_res_refresh
[23:59:13] [PASSED] drm_test_cmdline_res_bpp_refresh
[23:59:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[23:59:13] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[23:59:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[23:59:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[23:59:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[23:59:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[23:59:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[23:59:13] [PASSED] drm_test_cmdline_res_margins_force_on
[23:59:13] [PASSED] drm_test_cmdline_res_vesa_margins
[23:59:13] [PASSED] drm_test_cmdline_name
[23:59:13] [PASSED] drm_test_cmdline_name_bpp
[23:59:13] [PASSED] drm_test_cmdline_name_option
[23:59:13] [PASSED] drm_test_cmdline_name_bpp_option
[23:59:13] [PASSED] drm_test_cmdline_rotate_0
[23:59:13] [PASSED] drm_test_cmdline_rotate_90
[23:59:13] [PASSED] drm_test_cmdline_rotate_180
[23:59:13] [PASSED] drm_test_cmdline_rotate_270
[23:59:13] [PASSED] drm_test_cmdline_hmirror
[23:59:13] [PASSED] drm_test_cmdline_vmirror
[23:59:13] [PASSED] drm_test_cmdline_margin_options
[23:59:13] [PASSED] drm_test_cmdline_multiple_options
[23:59:13] [PASSED] drm_test_cmdline_bpp_extra_and_option
[23:59:13] [PASSED] drm_test_cmdline_extra_and_option
[23:59:13] [PASSED] drm_test_cmdline_freestanding_options
[23:59:13] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[23:59:13] [PASSED] drm_test_cmdline_panel_orientation
[23:59:13] ================ drm_test_cmdline_invalid =================
[23:59:13] [PASSED] margin_only
[23:59:13] [PASSED] interlace_only
[23:59:13] [PASSED] res_missing_x
[23:59:13] [PASSED] res_missing_y
[23:59:13] [PASSED] res_bad_y
[23:59:13] [PASSED] res_missing_y_bpp
[23:59:13] [PASSED] res_bad_bpp
[23:59:13] [PASSED] res_bad_refresh
[23:59:13] [PASSED] res_bpp_refresh_force_on_off
[23:59:13] [PASSED] res_invalid_mode
[23:59:13] [PASSED] res_bpp_wrong_place_mode
[23:59:13] [PASSED] name_bpp_refresh
[23:59:13] [PASSED] name_refresh
[23:59:13] [PASSED] name_refresh_wrong_mode
[23:59:13] [PASSED] name_refresh_invalid_mode
[23:59:13] [PASSED] rotate_multiple
[23:59:13] [PASSED] rotate_invalid_val
[23:59:13] [PASSED] rotate_truncated
[23:59:13] [PASSED] invalid_option
[23:59:13] [PASSED] invalid_tv_option
[23:59:13] [PASSED] truncated_tv_option
[23:59:13] ============ [PASSED] drm_test_cmdline_invalid =============
[23:59:13] =============== drm_test_cmdline_tv_options ===============
[23:59:13] [PASSED] NTSC
[23:59:13] [PASSED] NTSC_443
[23:59:13] [PASSED] NTSC_J
[23:59:13] [PASSED] PAL
[23:59:13] [PASSED] PAL_M
[23:59:13] [PASSED] PAL_N
[23:59:13] [PASSED] SECAM
[23:59:13] [PASSED] MONO_525
[23:59:13] [PASSED] MONO_625
[23:59:13] =========== [PASSED] drm_test_cmdline_tv_options ===========
[23:59:13] =============== [PASSED] drm_cmdline_parser ================
[23:59:13] ========== drmm_connector_hdmi_init (20 subtests) ==========
[23:59:13] [PASSED] drm_test_connector_hdmi_init_valid
[23:59:13] [PASSED] drm_test_connector_hdmi_init_bpc_8
[23:59:13] [PASSED] drm_test_connector_hdmi_init_bpc_10
[23:59:13] [PASSED] drm_test_connector_hdmi_init_bpc_12
[23:59:13] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[23:59:13] [PASSED] drm_test_connector_hdmi_init_bpc_null
[23:59:13] [PASSED] drm_test_connector_hdmi_init_formats_empty
[23:59:13] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[23:59:13] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:59:13] [PASSED] supported_formats=0x9 yuv420_allowed=1
[23:59:13] [PASSED] supported_formats=0x9 yuv420_allowed=0
[23:59:13] [PASSED] supported_formats=0x3 yuv420_allowed=1
[23:59:13] [PASSED] supported_formats=0x3 yuv420_allowed=0
[23:59:13] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:59:13] [PASSED] drm_test_connector_hdmi_init_null_ddc
[23:59:13] [PASSED] drm_test_connector_hdmi_init_null_product
[23:59:13] [PASSED] drm_test_connector_hdmi_init_null_vendor
[23:59:13] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[23:59:13] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[23:59:13] [PASSED] drm_test_connector_hdmi_init_product_valid
[23:59:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[23:59:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[23:59:13] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[23:59:13] ========= drm_test_connector_hdmi_init_type_valid =========
[23:59:13] [PASSED] HDMI-A
[23:59:13] [PASSED] HDMI-B
[23:59:13] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[23:59:13] ======== drm_test_connector_hdmi_init_type_invalid ========
[23:59:13] [PASSED] Unknown
[23:59:13] [PASSED] VGA
[23:59:13] [PASSED] DVI-I
[23:59:13] [PASSED] DVI-D
[23:59:13] [PASSED] DVI-A
[23:59:13] [PASSED] Composite
[23:59:13] [PASSED] SVIDEO
[23:59:13] [PASSED] LVDS
[23:59:13] [PASSED] Component
[23:59:13] [PASSED] DIN
[23:59:13] [PASSED] DP
[23:59:13] [PASSED] TV
[23:59:13] [PASSED] eDP
[23:59:13] [PASSED] Virtual
[23:59:13] [PASSED] DSI
[23:59:13] [PASSED] DPI
[23:59:13] [PASSED] Writeback
[23:59:13] [PASSED] SPI
[23:59:13] [PASSED] USB
[23:59:13] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[23:59:13] ============ [PASSED] drmm_connector_hdmi_init =============
[23:59:13] ============= drmm_connector_init (3 subtests) =============
[23:59:13] [PASSED] drm_test_drmm_connector_init
[23:59:13] [PASSED] drm_test_drmm_connector_init_null_ddc
[23:59:13] ========= drm_test_drmm_connector_init_type_valid =========
[23:59:13] [PASSED] Unknown
[23:59:13] [PASSED] VGA
[23:59:13] [PASSED] DVI-I
[23:59:13] [PASSED] DVI-D
[23:59:13] [PASSED] DVI-A
[23:59:13] [PASSED] Composite
[23:59:13] [PASSED] SVIDEO
[23:59:13] [PASSED] LVDS
[23:59:13] [PASSED] Component
[23:59:13] [PASSED] DIN
[23:59:13] [PASSED] DP
[23:59:13] [PASSED] HDMI-A
[23:59:13] [PASSED] HDMI-B
[23:59:13] [PASSED] TV
[23:59:13] [PASSED] eDP
[23:59:13] [PASSED] Virtual
[23:59:13] [PASSED] DSI
[23:59:13] [PASSED] DPI
[23:59:13] [PASSED] Writeback
[23:59:13] [PASSED] SPI
[23:59:13] [PASSED] USB
[23:59:13] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[23:59:13] =============== [PASSED] drmm_connector_init ===============
[23:59:13] ========= drm_connector_dynamic_init (6 subtests) ==========
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_init
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_init_properties
[23:59:13] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[23:59:13] [PASSED] Unknown
[23:59:13] [PASSED] VGA
[23:59:13] [PASSED] DVI-I
[23:59:13] [PASSED] DVI-D
[23:59:13] [PASSED] DVI-A
[23:59:13] [PASSED] Composite
[23:59:13] [PASSED] SVIDEO
[23:59:13] [PASSED] LVDS
[23:59:13] [PASSED] Component
[23:59:13] [PASSED] DIN
[23:59:13] [PASSED] DP
[23:59:13] [PASSED] HDMI-A
[23:59:13] [PASSED] HDMI-B
[23:59:13] [PASSED] TV
[23:59:13] [PASSED] eDP
[23:59:13] [PASSED] Virtual
[23:59:13] [PASSED] DSI
[23:59:13] [PASSED] DPI
[23:59:13] [PASSED] Writeback
[23:59:13] [PASSED] SPI
[23:59:13] [PASSED] USB
[23:59:13] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[23:59:13] ======== drm_test_drm_connector_dynamic_init_name =========
[23:59:13] [PASSED] Unknown
[23:59:13] [PASSED] VGA
[23:59:13] [PASSED] DVI-I
[23:59:13] [PASSED] DVI-D
[23:59:13] [PASSED] DVI-A
[23:59:13] [PASSED] Composite
[23:59:13] [PASSED] SVIDEO
[23:59:13] [PASSED] LVDS
[23:59:13] [PASSED] Component
[23:59:13] [PASSED] DIN
[23:59:13] [PASSED] DP
[23:59:13] [PASSED] HDMI-A
[23:59:13] [PASSED] HDMI-B
[23:59:13] [PASSED] TV
[23:59:13] [PASSED] eDP
[23:59:13] [PASSED] Virtual
[23:59:13] [PASSED] DSI
[23:59:13] [PASSED] DPI
[23:59:13] [PASSED] Writeback
[23:59:13] [PASSED] SPI
[23:59:13] [PASSED] USB
[23:59:13] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[23:59:13] =========== [PASSED] drm_connector_dynamic_init ============
[23:59:13] ==== drm_connector_dynamic_register_early (4 subtests) =====
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[23:59:13] ====== [PASSED] drm_connector_dynamic_register_early =======
[23:59:13] ======= drm_connector_dynamic_register (7 subtests) ========
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[23:59:13] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[23:59:13] ========= [PASSED] drm_connector_dynamic_register ==========
[23:59:13] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[23:59:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[23:59:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[23:59:13] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[23:59:13] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[23:59:13] ========== drm_test_get_tv_mode_from_name_valid ===========
[23:59:13] [PASSED] NTSC
[23:59:13] [PASSED] NTSC-443
[23:59:13] [PASSED] NTSC-J
[23:59:13] [PASSED] PAL
[23:59:13] [PASSED] PAL-M
[23:59:13] [PASSED] PAL-N
[23:59:13] [PASSED] SECAM
[23:59:13] [PASSED] Mono
[23:59:13] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[23:59:13] [PASSED] drm_test_get_tv_mode_from_name_truncated
[23:59:13] ============ [PASSED] drm_get_tv_mode_from_name ============
[23:59:13] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[23:59:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[23:59:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[23:59:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[23:59:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[23:59:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[23:59:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[23:59:13] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[23:59:13] [PASSED] VIC 96
[23:59:13] [PASSED] VIC 97
[23:59:13] [PASSED] VIC 101
[23:59:13] [PASSED] VIC 102
[23:59:13] [PASSED] VIC 106
[23:59:13] [PASSED] VIC 107
[23:59:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[23:59:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[23:59:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[23:59:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[23:59:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[23:59:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[23:59:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[23:59:13] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[23:59:13] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[23:59:13] [PASSED] Automatic
[23:59:13] [PASSED] Full
[23:59:13] [PASSED] Limited 16:235
[23:59:13] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[23:59:13] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[23:59:13] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[23:59:13] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[23:59:13] === drm_test_drm_hdmi_connector_get_output_format_name ====
[23:59:13] [PASSED] RGB
[23:59:13] [PASSED] YUV 4:2:0
[23:59:13] [PASSED] YUV 4:2:2
[23:59:13] [PASSED] YUV 4:4:4
[23:59:13] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[23:59:13] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[23:59:13] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[23:59:13] ============= drm_damage_helper (21 subtests) ==============
[23:59:13] [PASSED] drm_test_damage_iter_no_damage
[23:59:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[23:59:13] [PASSED] drm_test_damage_iter_no_damage_src_moved
[23:59:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[23:59:13] [PASSED] drm_test_damage_iter_no_damage_not_visible
[23:59:13] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[23:59:13] [PASSED] drm_test_damage_iter_no_damage_no_fb
[23:59:13] [PASSED] drm_test_damage_iter_simple_damage
[23:59:13] [PASSED] drm_test_damage_iter_single_damage
[23:59:13] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[23:59:13] [PASSED] drm_test_damage_iter_single_damage_outside_src
[23:59:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[23:59:13] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[23:59:13] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[23:59:13] [PASSED] drm_test_damage_iter_single_damage_src_moved
[23:59:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[23:59:13] [PASSED] drm_test_damage_iter_damage
[23:59:13] [PASSED] drm_test_damage_iter_damage_one_intersect
[23:59:13] [PASSED] drm_test_damage_iter_damage_one_outside
[23:59:13] [PASSED] drm_test_damage_iter_damage_src_moved
[23:59:13] [PASSED] drm_test_damage_iter_damage_not_visible
[23:59:13] ================ [PASSED] drm_damage_helper ================
[23:59:13] ============== drm_dp_mst_helper (3 subtests) ==============
[23:59:13] ============== drm_test_dp_mst_calc_pbn_mode ==============
[23:59:13] [PASSED] Clock 154000 BPP 30 DSC disabled
[23:59:13] [PASSED] Clock 234000 BPP 30 DSC disabled
[23:59:13] [PASSED] Clock 297000 BPP 24 DSC disabled
[23:59:13] [PASSED] Clock 332880 BPP 24 DSC enabled
[23:59:13] [PASSED] Clock 324540 BPP 24 DSC enabled
[23:59:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[23:59:13] ============== drm_test_dp_mst_calc_pbn_div ===============
[23:59:13] [PASSED] Link rate 2000000 lane count 4
[23:59:13] [PASSED] Link rate 2000000 lane count 2
[23:59:13] [PASSED] Link rate 2000000 lane count 1
[23:59:13] [PASSED] Link rate 1350000 lane count 4
[23:59:13] [PASSED] Link rate 1350000 lane count 2
[23:59:13] [PASSED] Link rate 1350000 lane count 1
[23:59:13] [PASSED] Link rate 1000000 lane count 4
[23:59:13] [PASSED] Link rate 1000000 lane count 2
[23:59:13] [PASSED] Link rate 1000000 lane count 1
[23:59:13] [PASSED] Link rate 810000 lane count 4
[23:59:13] [PASSED] Link rate 810000 lane count 2
[23:59:13] [PASSED] Link rate 810000 lane count 1
[23:59:13] [PASSED] Link rate 540000 lane count 4
[23:59:13] [PASSED] Link rate 540000 lane count 2
[23:59:13] [PASSED] Link rate 540000 lane count 1
[23:59:13] [PASSED] Link rate 270000 lane count 4
[23:59:13] [PASSED] Link rate 270000 lane count 2
[23:59:13] [PASSED] Link rate 270000 lane count 1
[23:59:13] [PASSED] Link rate 162000 lane count 4
[23:59:13] [PASSED] Link rate 162000 lane count 2
[23:59:13] [PASSED] Link rate 162000 lane count 1
[23:59:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[23:59:13] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[23:59:13] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[23:59:13] [PASSED] DP_POWER_UP_PHY with port number
[23:59:13] [PASSED] DP_POWER_DOWN_PHY with port number
[23:59:13] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[23:59:13] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[23:59:13] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[23:59:13] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[23:59:13] [PASSED] DP_QUERY_PAYLOAD with port number
[23:59:13] [PASSED] DP_QUERY_PAYLOAD with VCPI
[23:59:13] [PASSED] DP_REMOTE_DPCD_READ with port number
[23:59:13] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[23:59:13] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[23:59:13] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[23:59:13] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[23:59:13] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[23:59:13] [PASSED] DP_REMOTE_I2C_READ with port number
[23:59:13] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[23:59:13] [PASSED] DP_REMOTE_I2C_READ with transactions array
[23:59:13] [PASSED] DP_REMOTE_I2C_WRITE with port number
[23:59:13] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[23:59:13] [PASSED] DP_REMOTE_I2C_WRITE with data array
[23:59:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[23:59:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[23:59:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[23:59:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[23:59:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[23:59:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[23:59:13] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[23:59:13] ================ [PASSED] drm_dp_mst_helper ================
[23:59:13] ================== drm_exec (7 subtests) ===================
[23:59:13] [PASSED] sanitycheck
[23:59:13] [PASSED] test_lock
[23:59:13] [PASSED] test_lock_unlock
[23:59:13] [PASSED] test_duplicates
[23:59:13] [PASSED] test_prepare
[23:59:13] [PASSED] test_prepare_array
[23:59:13] [PASSED] test_multiple_loops
[23:59:13] ==================== [PASSED] drm_exec =====================
[23:59:13] =========== drm_format_helper_test (17 subtests) ===========
[23:59:13] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[23:59:13] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[23:59:13] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[23:59:13] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[23:59:13] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[23:59:13] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[23:59:13] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[23:59:13] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[23:59:13] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[23:59:13] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[23:59:13] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[23:59:13] ============== drm_test_fb_xrgb8888_to_mono ===============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[23:59:13] ==================== drm_test_fb_swab =====================
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ================ [PASSED] drm_test_fb_swab =================
[23:59:13] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[23:59:13] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[23:59:13] [PASSED] single_pixel_source_buffer
[23:59:13] [PASSED] single_pixel_clip_rectangle
[23:59:13] [PASSED] well_known_colors
[23:59:13] [PASSED] destination_pitch
[23:59:13] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[23:59:13] ================= drm_test_fb_clip_offset =================
[23:59:13] [PASSED] pass through
[23:59:13] [PASSED] horizontal offset
[23:59:13] [PASSED] vertical offset
[23:59:13] [PASSED] horizontal and vertical offset
[23:59:13] [PASSED] horizontal offset (custom pitch)
[23:59:13] [PASSED] vertical offset (custom pitch)
[23:59:13] [PASSED] horizontal and vertical offset (custom pitch)
[23:59:13] ============= [PASSED] drm_test_fb_clip_offset =============
[23:59:13] =================== drm_test_fb_memcpy ====================
[23:59:13] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[23:59:13] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[23:59:13] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[23:59:13] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[23:59:13] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[23:59:13] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[23:59:13] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[23:59:13] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[23:59:13] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[23:59:13] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[23:59:13] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[23:59:13] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[23:59:13] =============== [PASSED] drm_test_fb_memcpy ================
[23:59:13] ============= [PASSED] drm_format_helper_test ==============
[23:59:13] ================= drm_format (18 subtests) =================
[23:59:13] [PASSED] drm_test_format_block_width_invalid
[23:59:13] [PASSED] drm_test_format_block_width_one_plane
[23:59:13] [PASSED] drm_test_format_block_width_two_plane
[23:59:13] [PASSED] drm_test_format_block_width_three_plane
[23:59:13] [PASSED] drm_test_format_block_width_tiled
[23:59:13] [PASSED] drm_test_format_block_height_invalid
[23:59:13] [PASSED] drm_test_format_block_height_one_plane
[23:59:13] [PASSED] drm_test_format_block_height_two_plane
[23:59:13] [PASSED] drm_test_format_block_height_three_plane
[23:59:13] [PASSED] drm_test_format_block_height_tiled
[23:59:13] [PASSED] drm_test_format_min_pitch_invalid
[23:59:13] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[23:59:13] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[23:59:13] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[23:59:13] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[23:59:13] [PASSED] drm_test_format_min_pitch_two_plane
[23:59:13] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[23:59:13] [PASSED] drm_test_format_min_pitch_tiled
[23:59:13] =================== [PASSED] drm_format ====================
[23:59:13] ============== drm_framebuffer (10 subtests) ===============
[23:59:13] ========== drm_test_framebuffer_check_src_coords ==========
[23:59:13] [PASSED] Success: source fits into fb
[23:59:13] [PASSED] Fail: overflowing fb with x-axis coordinate
[23:59:13] [PASSED] Fail: overflowing fb with y-axis coordinate
[23:59:13] [PASSED] Fail: overflowing fb with source width
[23:59:13] [PASSED] Fail: overflowing fb with source height
[23:59:13] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[23:59:13] [PASSED] drm_test_framebuffer_cleanup
[23:59:13] =============== drm_test_framebuffer_create ===============
[23:59:13] [PASSED] ABGR8888 normal sizes
[23:59:13] [PASSED] ABGR8888 max sizes
[23:59:13] [PASSED] ABGR8888 pitch greater than min required
[23:59:13] [PASSED] ABGR8888 pitch less than min required
[23:59:13] [PASSED] ABGR8888 Invalid width
[23:59:13] [PASSED] ABGR8888 Invalid buffer handle
[23:59:13] [PASSED] No pixel format
[23:59:13] [PASSED] ABGR8888 Width 0
[23:59:13] [PASSED] ABGR8888 Height 0
[23:59:13] [PASSED] ABGR8888 Out of bound height * pitch combination
[23:59:13] [PASSED] ABGR8888 Large buffer offset
[23:59:13] [PASSED] ABGR8888 Buffer offset for inexistent plane
[23:59:13] [PASSED] ABGR8888 Invalid flag
[23:59:13] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[23:59:13] [PASSED] ABGR8888 Valid buffer modifier
[23:59:13] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[23:59:13] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[23:59:13] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[23:59:13] [PASSED] NV12 Normal sizes
[23:59:13] [PASSED] NV12 Max sizes
[23:59:13] [PASSED] NV12 Invalid pitch
[23:59:13] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[23:59:13] [PASSED] NV12 different modifier per-plane
[23:59:13] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[23:59:13] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[23:59:13] [PASSED] NV12 Modifier for inexistent plane
[23:59:13] [PASSED] NV12 Handle for inexistent plane
[23:59:13] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[23:59:13] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[23:59:13] [PASSED] YVU420 Normal sizes
[23:59:13] [PASSED] YVU420 Max sizes
[23:59:13] [PASSED] YVU420 Invalid pitch
[23:59:13] [PASSED] YVU420 Different pitches
[23:59:13] [PASSED] YVU420 Different buffer offsets/pitches
[23:59:13] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[23:59:13] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[23:59:13] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[23:59:13] [PASSED] YVU420 Valid modifier
[23:59:13] [PASSED] YVU420 Different modifiers per plane
[23:59:13] [PASSED] YVU420 Modifier for inexistent plane
[23:59:13] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[23:59:13] [PASSED] X0L2 Normal sizes
[23:59:13] [PASSED] X0L2 Max sizes
[23:59:13] [PASSED] X0L2 Invalid pitch
[23:59:13] [PASSED] X0L2 Pitch greater than minimum required
[23:59:13] [PASSED] X0L2 Handle for inexistent plane
[23:59:13] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[23:59:13] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[23:59:13] [PASSED] X0L2 Valid modifier
[23:59:13] [PASSED] X0L2 Modifier for inexistent plane
[23:59:13] =========== [PASSED] drm_test_framebuffer_create ===========
[23:59:13] [PASSED] drm_test_framebuffer_free
[23:59:13] [PASSED] drm_test_framebuffer_init
[23:59:13] [PASSED] drm_test_framebuffer_init_bad_format
[23:59:13] [PASSED] drm_test_framebuffer_init_dev_mismatch
[23:59:13] [PASSED] drm_test_framebuffer_lookup
[23:59:13] [PASSED] drm_test_framebuffer_lookup_inexistent
[23:59:13] [PASSED] drm_test_framebuffer_modifiers_not_supported
[23:59:13] ================= [PASSED] drm_framebuffer =================
[23:59:13] ================ drm_gem_shmem (8 subtests) ================
[23:59:13] [PASSED] drm_gem_shmem_test_obj_create
[23:59:13] [PASSED] drm_gem_shmem_test_obj_create_private
[23:59:13] [PASSED] drm_gem_shmem_test_pin_pages
[23:59:13] [PASSED] drm_gem_shmem_test_vmap
[23:59:13] [PASSED] drm_gem_shmem_test_get_pages_sgt
[23:59:13] [PASSED] drm_gem_shmem_test_get_sg_table
[23:59:13] [PASSED] drm_gem_shmem_test_madvise
[23:59:13] [PASSED] drm_gem_shmem_test_purge
[23:59:13] ================== [PASSED] drm_gem_shmem ==================
[23:59:13] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[23:59:13] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[23:59:13] [PASSED] Automatic
[23:59:13] [PASSED] Full
[23:59:13] [PASSED] Limited 16:235
[23:59:13] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[23:59:13] [PASSED] drm_test_check_disable_connector
[23:59:13] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[23:59:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[23:59:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[23:59:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[23:59:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[23:59:13] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[23:59:13] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[23:59:13] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[23:59:13] [PASSED] drm_test_check_output_bpc_dvi
[23:59:13] [PASSED] drm_test_check_output_bpc_format_vic_1
[23:59:13] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[23:59:13] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[23:59:13] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[23:59:13] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[23:59:13] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[23:59:13] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[23:59:13] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[23:59:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[23:59:13] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[23:59:13] [PASSED] drm_test_check_broadcast_rgb_value
[23:59:13] [PASSED] drm_test_check_bpc_8_value
[23:59:13] [PASSED] drm_test_check_bpc_10_value
[23:59:13] [PASSED] drm_test_check_bpc_12_value
[23:59:13] [PASSED] drm_test_check_format_value
[23:59:13] [PASSED] drm_test_check_tmds_char_value
[23:59:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[23:59:13] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[23:59:13] [PASSED] drm_test_check_mode_valid
[23:59:13] [PASSED] drm_test_check_mode_valid_reject
[23:59:13] [PASSED] drm_test_check_mode_valid_reject_rate
[23:59:13] [PASSED] drm_test_check_mode_valid_reject_max_clock
[23:59:13] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[23:59:13] ================= drm_managed (2 subtests) =================
[23:59:13] [PASSED] drm_test_managed_release_action
[23:59:13] [PASSED] drm_test_managed_run_action
[23:59:13] =================== [PASSED] drm_managed ===================
[23:59:13] =================== drm_mm (6 subtests) ====================
[23:59:13] [PASSED] drm_test_mm_init
[23:59:13] [PASSED] drm_test_mm_debug
[23:59:13] [PASSED] drm_test_mm_align32
[23:59:13] [PASSED] drm_test_mm_align64
[23:59:13] [PASSED] drm_test_mm_lowest
[23:59:13] [PASSED] drm_test_mm_highest
[23:59:13] ===================== [PASSED] drm_mm ======================
[23:59:13] ============= drm_modes_analog_tv (5 subtests) =============
[23:59:13] [PASSED] drm_test_modes_analog_tv_mono_576i
[23:59:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[23:59:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[23:59:13] [PASSED] drm_test_modes_analog_tv_pal_576i
[23:59:13] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[23:59:13] =============== [PASSED] drm_modes_analog_tv ===============
[23:59:13] ============== drm_plane_helper (2 subtests) ===============
[23:59:13] =============== drm_test_check_plane_state ================
[23:59:13] [PASSED] clipping_simple
[23:59:13] [PASSED] clipping_rotate_reflect
[23:59:13] [PASSED] positioning_simple
[23:59:13] [PASSED] upscaling
[23:59:13] [PASSED] downscaling
[23:59:13] [PASSED] rounding1
[23:59:13] [PASSED] rounding2
[23:59:13] [PASSED] rounding3
[23:59:13] [PASSED] rounding4
[23:59:13] =========== [PASSED] drm_test_check_plane_state ============
[23:59:13] =========== drm_test_check_invalid_plane_state ============
[23:59:13] [PASSED] positioning_invalid
[23:59:13] [PASSED] upscaling_invalid
[23:59:13] [PASSED] downscaling_invalid
[23:59:13] ======= [PASSED] drm_test_check_invalid_plane_state ========
[23:59:13] ================ [PASSED] drm_plane_helper =================
[23:59:13] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[23:59:13] ====== drm_test_connector_helper_tv_get_modes_check =======
[23:59:13] [PASSED] None
[23:59:13] [PASSED] PAL
[23:59:13] [PASSED] NTSC
[23:59:13] [PASSED] Both, NTSC Default
[23:59:13] [PASSED] Both, PAL Default
[23:59:13] [PASSED] Both, NTSC Default, with PAL on command-line
[23:59:13] [PASSED] Both, PAL Default, with NTSC on command-line
[23:59:13] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[23:59:13] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[23:59:13] ================== drm_rect (9 subtests) ===================
[23:59:13] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[23:59:13] [PASSED] drm_test_rect_clip_scaled_not_clipped
[23:59:13] [PASSED] drm_test_rect_clip_scaled_clipped
[23:59:13] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[23:59:13] ================= drm_test_rect_intersect =================
[23:59:13] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[23:59:13] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[23:59:13] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[23:59:13] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[23:59:13] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[23:59:13] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[23:59:13] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[23:59:13] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[23:59:13] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[23:59:13] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[23:59:13] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[23:59:13] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[23:59:13] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[23:59:13] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[23:59:13] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[23:59:13] ============= [PASSED] drm_test_rect_intersect =============
[23:59:13] ================ drm_test_rect_calc_hscale ================
[23:59:13] [PASSED] normal use
[23:59:13] [PASSED] out of max range
[23:59:13] [PASSED] out of min range
[23:59:13] [PASSED] zero dst
[23:59:13] [PASSED] negative src
[23:59:13] [PASSED] negative dst
[23:59:13] ============ [PASSED] drm_test_rect_calc_hscale ============
[23:59:13] ================ drm_test_rect_calc_vscale ================
[23:59:13] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[23:59:13] [PASSED] out of max range
[23:59:13] [PASSED] out of min range
[23:59:13] [PASSED] zero dst
[23:59:13] [PASSED] negative src
[23:59:13] [PASSED] negative dst
[23:59:13] ============ [PASSED] drm_test_rect_calc_vscale ============
[23:59:13] ================== drm_test_rect_rotate ===================
[23:59:13] [PASSED] reflect-x
[23:59:13] [PASSED] reflect-y
[23:59:13] [PASSED] rotate-0
[23:59:13] [PASSED] rotate-90
[23:59:13] [PASSED] rotate-180
[23:59:13] [PASSED] rotate-270
[23:59:13] ============== [PASSED] drm_test_rect_rotate ===============
[23:59:13] ================ drm_test_rect_rotate_inv =================
[23:59:13] [PASSED] reflect-x
[23:59:13] [PASSED] reflect-y
[23:59:13] [PASSED] rotate-0
[23:59:13] [PASSED] rotate-90
[23:59:13] [PASSED] rotate-180
[23:59:13] [PASSED] rotate-270
[23:59:13] ============ [PASSED] drm_test_rect_rotate_inv =============
[23:59:13] ==================== [PASSED] drm_rect =====================
[23:59:13] ============ drm_sysfb_modeset_test (1 subtest) ============
[23:59:13] ============ drm_test_sysfb_build_fourcc_list =============
[23:59:13] [PASSED] no native formats
[23:59:13] [PASSED] XRGB8888 as native format
[23:59:13] [PASSED] remove duplicates
[23:59:13] [PASSED] convert alpha formats
[23:59:13] [PASSED] random formats
[23:59:13] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[23:59:13] ============= [PASSED] drm_sysfb_modeset_test ==============
[23:59:13] ============================================================
[23:59:13] Testing complete. Ran 622 tests: passed: 622
[23:59:13] Elapsed time: 26.511s total, 1.709s configuring, 24.384s building, 0.388s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[23:59:13] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:59:15] 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
[23:59:24] Starting KUnit Kernel (1/1)...
[23:59:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:59:24] ================= ttm_device (5 subtests) ==================
[23:59:24] [PASSED] ttm_device_init_basic
[23:59:24] [PASSED] ttm_device_init_multiple
[23:59:24] [PASSED] ttm_device_fini_basic
[23:59:24] [PASSED] ttm_device_init_no_vma_man
[23:59:24] ================== ttm_device_init_pools ==================
[23:59:24] [PASSED] No DMA allocations, no DMA32 required
[23:59:24] [PASSED] DMA allocations, DMA32 required
[23:59:24] [PASSED] No DMA allocations, DMA32 required
[23:59:24] [PASSED] DMA allocations, no DMA32 required
[23:59:24] ============== [PASSED] ttm_device_init_pools ==============
[23:59:24] =================== [PASSED] ttm_device ====================
[23:59:24] ================== ttm_pool (8 subtests) ===================
[23:59:24] ================== ttm_pool_alloc_basic ===================
[23:59:24] [PASSED] One page
[23:59:24] [PASSED] More than one page
[23:59:24] [PASSED] Above the allocation limit
[23:59:24] [PASSED] One page, with coherent DMA mappings enabled
[23:59:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:59:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[23:59:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[23:59:24] [PASSED] One page
[23:59:24] [PASSED] More than one page
[23:59:24] [PASSED] Above the allocation limit
[23:59:24] [PASSED] One page, with coherent DMA mappings enabled
[23:59:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:59:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[23:59:24] [PASSED] ttm_pool_alloc_order_caching_match
[23:59:24] [PASSED] ttm_pool_alloc_caching_mismatch
[23:59:24] [PASSED] ttm_pool_alloc_order_mismatch
[23:59:24] [PASSED] ttm_pool_free_dma_alloc
[23:59:24] [PASSED] ttm_pool_free_no_dma_alloc
[23:59:24] [PASSED] ttm_pool_fini_basic
[23:59:24] ==================== [PASSED] ttm_pool =====================
[23:59:24] ================ ttm_resource (8 subtests) =================
[23:59:24] ================= ttm_resource_init_basic =================
[23:59:24] [PASSED] Init resource in TTM_PL_SYSTEM
[23:59:24] [PASSED] Init resource in TTM_PL_VRAM
[23:59:24] [PASSED] Init resource in a private placement
[23:59:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[23:59:24] ============= [PASSED] ttm_resource_init_basic =============
[23:59:24] [PASSED] ttm_resource_init_pinned
[23:59:24] [PASSED] ttm_resource_fini_basic
[23:59:24] [PASSED] ttm_resource_manager_init_basic
[23:59:24] [PASSED] ttm_resource_manager_usage_basic
[23:59:24] [PASSED] ttm_resource_manager_set_used_basic
[23:59:24] [PASSED] ttm_sys_man_alloc_basic
[23:59:24] [PASSED] ttm_sys_man_free_basic
[23:59:24] ================== [PASSED] ttm_resource ===================
[23:59:24] =================== ttm_tt (15 subtests) ===================
[23:59:24] ==================== ttm_tt_init_basic ====================
[23:59:24] [PASSED] Page-aligned size
[23:59:24] [PASSED] Extra pages requested
[23:59:24] ================ [PASSED] ttm_tt_init_basic ================
[23:59:24] [PASSED] ttm_tt_init_misaligned
[23:59:24] [PASSED] ttm_tt_fini_basic
[23:59:24] [PASSED] ttm_tt_fini_sg
[23:59:24] [PASSED] ttm_tt_fini_shmem
[23:59:24] [PASSED] ttm_tt_create_basic
[23:59:24] [PASSED] ttm_tt_create_invalid_bo_type
[23:59:24] [PASSED] ttm_tt_create_ttm_exists
[23:59:24] [PASSED] ttm_tt_create_failed
[23:59:24] [PASSED] ttm_tt_destroy_basic
[23:59:24] [PASSED] ttm_tt_populate_null_ttm
[23:59:24] [PASSED] ttm_tt_populate_populated_ttm
[23:59:24] [PASSED] ttm_tt_unpopulate_basic
[23:59:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[23:59:24] [PASSED] ttm_tt_swapin_basic
[23:59:24] ===================== [PASSED] ttm_tt ======================
[23:59:24] =================== ttm_bo (14 subtests) ===================
[23:59:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[23:59:24] [PASSED] Cannot be interrupted and sleeps
[23:59:24] [PASSED] Cannot be interrupted, locks straight away
[23:59:24] [PASSED] Can be interrupted, sleeps
[23:59:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[23:59:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[23:59:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[23:59:24] [PASSED] ttm_bo_reserve_double_resv
[23:59:24] [PASSED] ttm_bo_reserve_interrupted
[23:59:24] [PASSED] ttm_bo_reserve_deadlock
[23:59:24] [PASSED] ttm_bo_unreserve_basic
[23:59:24] [PASSED] ttm_bo_unreserve_pinned
[23:59:24] [PASSED] ttm_bo_unreserve_bulk
[23:59:24] [PASSED] ttm_bo_fini_basic
[23:59:24] [PASSED] ttm_bo_fini_shared_resv
[23:59:24] [PASSED] ttm_bo_pin_basic
[23:59:24] [PASSED] ttm_bo_pin_unpin_resource
[23:59:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[23:59:24] ===================== [PASSED] ttm_bo ======================
[23:59:24] ============== ttm_bo_validate (21 subtests) ===============
[23:59:24] ============== ttm_bo_init_reserved_sys_man ===============
[23:59:24] [PASSED] Buffer object for userspace
[23:59:24] [PASSED] Kernel buffer object
[23:59:24] [PASSED] Shared buffer object
[23:59:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[23:59:24] ============== ttm_bo_init_reserved_mock_man ==============
[23:59:24] [PASSED] Buffer object for userspace
[23:59:24] [PASSED] Kernel buffer object
[23:59:24] [PASSED] Shared buffer object
[23:59:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[23:59:24] [PASSED] ttm_bo_init_reserved_resv
[23:59:24] ================== ttm_bo_validate_basic ==================
[23:59:24] [PASSED] Buffer object for userspace
[23:59:24] [PASSED] Kernel buffer object
[23:59:24] [PASSED] Shared buffer object
[23:59:24] ============== [PASSED] ttm_bo_validate_basic ==============
[23:59:24] [PASSED] ttm_bo_validate_invalid_placement
[23:59:24] ============= ttm_bo_validate_same_placement ==============
[23:59:24] [PASSED] System manager
[23:59:24] [PASSED] VRAM manager
[23:59:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[23:59:24] [PASSED] ttm_bo_validate_failed_alloc
[23:59:24] [PASSED] ttm_bo_validate_pinned
[23:59:24] [PASSED] ttm_bo_validate_busy_placement
[23:59:24] ================ ttm_bo_validate_multihop =================
[23:59:24] [PASSED] Buffer object for userspace
[23:59:24] [PASSED] Kernel buffer object
[23:59:24] [PASSED] Shared buffer object
[23:59:24] ============ [PASSED] ttm_bo_validate_multihop =============
[23:59:24] ========== ttm_bo_validate_no_placement_signaled ==========
[23:59:24] [PASSED] Buffer object in system domain, no page vector
[23:59:24] [PASSED] Buffer object in system domain with an existing page vector
[23:59:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[23:59:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[23:59:24] [PASSED] Buffer object for userspace
[23:59:24] [PASSED] Kernel buffer object
[23:59:24] [PASSED] Shared buffer object
[23:59:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[23:59:24] [PASSED] ttm_bo_validate_move_fence_signaled
[23:59:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[23:59:24] [PASSED] Waits for GPU
[23:59:24] [PASSED] Tries to lock straight away
[23:59:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[23:59:24] [PASSED] ttm_bo_validate_happy_evict
[23:59:24] [PASSED] ttm_bo_validate_all_pinned_evict
[23:59:24] [PASSED] ttm_bo_validate_allowed_only_evict
[23:59:24] [PASSED] ttm_bo_validate_deleted_evict
[23:59:24] [PASSED] ttm_bo_validate_busy_domain_evict
[23:59:24] [PASSED] ttm_bo_validate_evict_gutting
[23:59:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[23:59:24] ================= [PASSED] ttm_bo_validate =================
[23:59:24] ============================================================
[23:59:24] Testing complete. Ran 101 tests: passed: 101
[23:59:25] Elapsed time: 11.316s total, 1.662s configuring, 9.437s building, 0.187s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
2025-10-15 23:59 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6) Patchwork
@ 2025-10-16 0:59 ` Patchwork
2025-10-16 18:21 ` ✗ Xe.CI.Full: failure " Patchwork
` (11 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-10-16 0:59 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 900 bytes --]
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6)
URL : https://patchwork.freedesktop.org/series/154538/
State : success
== Summary ==
CI Bug Log - changes from xe-3928-f019aaad58112f89234f7b68557c831846437008_BAT -> xe-pw-154538v6_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3928-f019aaad58112f89234f7b68557c831846437008 -> xe-pw-154538v6
IGT_8587: 8587
xe-3928-f019aaad58112f89234f7b68557c831846437008: f019aaad58112f89234f7b68557c831846437008
xe-pw-154538v6: 154538v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/index.html
[-- Attachment #2: Type: text/html, Size: 1452 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
2025-10-15 23:59 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6) Patchwork
2025-10-16 0:59 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-16 18:21 ` Patchwork
2025-11-25 16:57 ` [V7 PATCH] drm/xe/xe_gt_ccs_mode:Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (10 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-10-16 18:21 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 71175 bytes --]
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6)
URL : https://patchwork.freedesktop.org/series/154538/
State : failure
== Summary ==
CI Bug Log - changes from xe-3928-f019aaad58112f89234f7b68557c831846437008_FULL -> xe-pw-154538v6_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-154538v6_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-154538v6_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-154538v6_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_basic@many-execqueues-basic-defer-mmap:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-dg2-436/igt@xe_exec_basic@many-execqueues-basic-defer-mmap.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-464/igt@xe_exec_basic@many-execqueues-basic-defer-mmap.html
Known issues
------------
Here are the changes found in xe-pw-154538v6_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: NOTRUN -> [DMESG-WARN][3] ([Intel XE#4543]) +11 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2370])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-adlp: NOTRUN -> [SKIP][6] ([Intel XE#619])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][8] ([Intel XE#316]) +5 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][9] ([Intel XE#4543]) +5 other tests dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-adlp: NOTRUN -> [SKIP][12] ([Intel XE#607])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#607])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +15 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][15] ([Intel XE#367]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#2191]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +6 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#3442])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#3442])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#787]) +65 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#2907]) +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#787]) +48 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) +1 other test incomplete
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#4416] / [Intel XE#455])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#4416]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#306]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2325])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#373]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2252]) +7 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#373]) +17 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2390])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#307]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2320]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#308])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#308]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#309]) +8 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][44] -> [FAIL][45] ([Intel XE#1475])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#323])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1508])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#5428])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#1340])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#4354])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#4354])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#4356])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2244])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#4422])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@chamelium:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#701])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2373])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@kms_feature_discovery@display-2x.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#703])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#1138])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2375])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#2316])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#310]) +10 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#4543] / [Intel XE#5208])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-adlp: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#4543]) +5 other tests dmesg-warn
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-6/igt@kms_flip@flip-vs-suspend.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2293]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#455]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#651]) +19 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#5390]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2311]) +14 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#651]) +12 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2313]) +15 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#656]) +69 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#653]) +18 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#653]) +9 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@bpc-switch:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#455]) +31 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_hdr@bpc-switch.html
* igt@kms_joiner@basic-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#346])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#2927])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#3012])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#2925])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-adlp: NOTRUN -> [FAIL][84] ([Intel XE#5195]) +4 other tests fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#4596]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2763]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#870])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#2938])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: NOTRUN -> [FAIL][89] ([Intel XE#718])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#734])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#2007])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#836]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#1406] / [Intel XE#1489]) +14 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +17 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-adlp: NOTRUN -> [SKIP][100] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#3414]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#1127])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-adlp: NOTRUN -> [SKIP][104] ([Intel XE#362]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-adlp: NOTRUN -> [DMESG-WARN][105] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2168])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@kms_vrr@cmrr.html
* igt@kms_vrr@lobf:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#2168])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1499])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_ccs@block-copy-compressed:
- shard-adlp: NOTRUN -> [SKIP][109] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@xe_ccs@block-copy-compressed.html
* igt@xe_ccs@large-ctrl-surf-copy:
- shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#3576] / [Intel XE#5610])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_ccs@large-ctrl-surf-copy.html
* igt@xe_compute@ccs-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#1447] / [Intel XE#5617])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#6360])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#1123]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#1126])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@create-big-vram:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#1062])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#944]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][117] ([Intel XE#5626]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#4837] / [Intel XE#5565]) +17 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#4837]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#4837]) +8 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-mixed-threads-small:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#261]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@xe_evict@evict-beng-mixed-threads-small.html
* igt@xe_evict@evict-cm-threads-small:
- shard-adlp: NOTRUN -> [SKIP][122] ([Intel XE#261] / [Intel XE#688]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_evict@evict-cm-threads-small.html
* igt@xe_evict@evict-large-cm:
- shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#261] / [Intel XE#5564]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@xe_evict@evict-large-cm.html
* igt@xe_evict@evict-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][124] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#688]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind:
- shard-adlp: [PASS][126] -> [INCOMPLETE][127] ([Intel XE#3876])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-2/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue:
- shard-adlp: [PASS][128] -> [DMESG-FAIL][129] ([Intel XE#3876]) +5 other tests dmesg-fail
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-2/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2322]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#1392] / [Intel XE#5575]) +13 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_compute_mode@many-execqueues-bindexecqueue:
- shard-adlp: [PASS][132] -> [FAIL][133] ([Intel XE#5625]) +3 other tests fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-2/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
- shard-adlp: NOTRUN -> [SKIP][134] ([Intel XE#288] / [Intel XE#5561]) +40 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#288]) +11 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#2360])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2360])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_reset@cat-error:
- shard-adlp: NOTRUN -> [DMESG-WARN][138] ([Intel XE#3868])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@xe_exec_reset@cat-error.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [PASS][139] -> [DMESG-WARN][140] ([Intel XE#3876])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-2/igt@xe_exec_reset@parallel-gt-reset.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#4943]) +11 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset:
- shard-adlp: NOTRUN -> [SKIP][142] ([Intel XE#4915]) +404 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset.html
* igt@xe_exec_system_allocator@twice-mmap-new-huge:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#4915]) +110 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@xe_exec_system_allocator@twice-mmap-new-huge.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-adlp: NOTRUN -> [ABORT][144] ([Intel XE#5530])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-dg2-set2: NOTRUN -> [FAIL][145] ([Intel XE#3099]) +1 other test fail
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_mmap@pci-membarrier:
- shard-adlp: NOTRUN -> [SKIP][146] ([Intel XE#5100]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@xe_mmap@pci-membarrier.html
* igt@xe_module_load@force-load:
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#378] / [Intel XE#5612])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_module_load@force-load.html
* igt@xe_oa@buffer-fill:
- shard-adlp: NOTRUN -> [SKIP][148] ([Intel XE#3573]) +8 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_oa@buffer-fill.html
* igt@xe_oa@mmio-triggered-reports:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#3573]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-435/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#6032]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2248])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xe2:
- shard-adlp: NOTRUN -> [SKIP][152] ([Intel XE#977])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-adlp: NOTRUN -> [SKIP][153] ([Intel XE#979])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-adlp: NOTRUN -> [SKIP][154] ([Intel XE#1061] / [Intel XE#5568])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2284])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mmap-system:
- shard-adlp: NOTRUN -> [SKIP][156] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2284] / [Intel XE#366])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-463/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-adlp: [PASS][158] -> [TIMEOUT][159] ([Intel XE#3876])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-2/igt@xe_pm@s3-basic-exec.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: NOTRUN -> [FAIL][160] ([Intel XE#6339])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-adlp: NOTRUN -> [SKIP][161] ([Intel XE#5611] / [Intel XE#579])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
- shard-adlp: NOTRUN -> [SKIP][162] ([Intel XE#4733] / [Intel XE#5594]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#4733])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#4733]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#944]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#3342])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: NOTRUN -> [DMESG-FAIL][167] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][168] ([Intel XE#3862]) -> [PASS][169] +1 other test pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_color@ctm-0-50@pipe-a-dp-2:
- shard-bmg: [SKIP][170] -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@kms_color@ctm-0-50@pipe-a-dp-2.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_color@ctm-0-50@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [DMESG-WARN][172] ([Intel XE#3428]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][174] ([Intel XE#5299]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [FAIL][176] ([Intel XE#5352]) -> [PASS][177] +4 other tests pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@basic-plain-flip@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][178] ([Intel XE#4543]) -> [PASS][179] +3 other tests pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-6/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-9/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [DMESG-WARN][180] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-9/igt@kms_flip@flip-vs-rmfb.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-2/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- shard-bmg: [SKIP][182] ([Intel XE#4848]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-adlp: [DMESG-WARN][184] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-9/igt@kms_vblank@ts-continuation-dpms-suspend.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][186] ([Intel XE#1499]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@kms_vrr@negative-basic.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_vrr@negative-basic.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: [FAIL][188] ([Intel XE#5794]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-2/igt@xe_compute@ccs-mode-basic.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-8/igt@xe_compute@ccs-mode-basic.html
* igt@xe_exec_system_allocator@many-stride-mmap-mlock:
- shard-bmg: [DMESG-WARN][190] -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-mmap-mlock.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-mmap-mlock.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][192] ([Intel XE#2312]) -> [SKIP][193] ([Intel XE#2311]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][194] ([Intel XE#2311]) -> [SKIP][195] ([Intel XE#2312]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][196] ([Intel XE#5390]) -> [SKIP][197] ([Intel XE#2312])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][198] ([Intel XE#2312]) -> [SKIP][199] ([Intel XE#2313]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][200] ([Intel XE#2313]) -> [SKIP][201] ([Intel XE#2312]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][202] ([Intel XE#2426]) -> [SKIP][203] ([Intel XE#2509])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [SKIP][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [DMESG-WARN][228], [PASS][229]) ([Intel XE#2457] / [Intel XE#3428]) -> ([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]) ([Intel XE#2457])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-5/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-1/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-2/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-4/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-4/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-8/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-2/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-5/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-5/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-5/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-4/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-2/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-1/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-1/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-8/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-8/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-8/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-7/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-3/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-3/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-bmg-6/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-1/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-6/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-8/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-4/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-1/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-1/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-2/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-4/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-4/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-8/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-2/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-6/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-8/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-2/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-4/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-3/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-5/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-bmg-7/igt@xe_module_load@load.html
* igt@xe_pm@d3cold-i2c:
- shard-adlp: [SKIP][256] ([Intel XE#5694]) -> [TIMEOUT][257] ([Intel XE#3876])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3928-f019aaad58112f89234f7b68557c831846437008/shard-adlp-2/igt@xe_pm@d3cold-i2c.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/shard-adlp-1/igt@xe_pm@d3cold-i2c.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
[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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3576
[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#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#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4848
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[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#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5352
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5428
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5568
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5610
[Intel XE#5611]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5611
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5617]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5617
[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#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5794
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6339
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#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
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-3928-f019aaad58112f89234f7b68557c831846437008 -> xe-pw-154538v6
IGT_8587: 8587
xe-3928-f019aaad58112f89234f7b68557c831846437008: f019aaad58112f89234f7b68557c831846437008
xe-pw-154538v6: 154538v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v6/index.html
[-- Attachment #2: Type: text/html, Size: 81426 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* [V7 PATCH] drm/xe/xe_gt_ccs_mode:Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (2 preceding siblings ...)
2025-10-16 18:21 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-11-25 16:57 ` Nareshkumar Gollakoti
2025-11-25 19:13 ` Michal Wajdeczko
2025-11-27 16:10 ` [V8 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
2025-11-26 1:13 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7) Patchwork
` (9 subsequent siblings)
13 siblings, 2 replies; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-25 16:57 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, naresh.kumar.g
Use PF lockdown supported functions to enforce mutual exclusivity between
CCS Mode and SRIOV VF enabling/provisioning during CCS Mode enabling.
v2:
- function xe_device_is_vf_enabled has been refactored to
xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
- The code now distinctly checks for SR-IOV VF mode and
SR-IOV PF with VFs enabled.
- Log messages have been updated to explicitly state the current mode.
- The function xe_multi_ccs_mode_enabled is moved to xe_device.h
v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
v4:
- sysfs interface for CCS mode is not initialized
when operating in SRIOV VF Mode.
- xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
enablement.
- remove unnecessary comments as flow is self explanatory.
v5:(review comments from Michal)
- Add xe device level CCS mode block with mutex lock and CCS mode state
- necessesary functions to manage ccs mode state to provide strict mutual
exclusive support b/w CCS mode & SRIOV VF enabling
v6:
- Re modeled implementation based on lockdown the PF using custom guard
supported functions by Michal
v7:
- Corrected patch style as message written as subject
- Used public PF lockdown functions instead internal funcions(Michal)
- Creating CCS Mode entries only on PF Mode
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 48 +++++++++++++++++++++++------
1 file changed, 39 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
index 50fffc9ebf62..468c3a6790d0 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
@@ -13,6 +13,7 @@
#include "xe_gt_sysfs.h"
#include "xe_mmio.h"
#include "xe_sriov.h"
+#include "xe_sriov_pf.h"
static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
{
@@ -108,6 +109,29 @@ ccs_mode_show(struct device *kdev,
return sysfs_emit(buf, "%u\n", gt->ccs_mode);
}
+static int xe_gt_prepare_ccs_mode_enabling(struct xe_device *xe,
+ struct xe_gt *gt)
+{
+ /*
+ * The arm guard is only activated during CCS mode enabling,
+ * and this shuould happen when CCS mode is in default mode.
+ * lockdown arm guard ensures there is no VFS enabling
+ * as CCS mode enabling in progress/enabled.
+ */
+ if (!(gt->ccs_mode > 1))
+ return xe_sriov_pf_lockdown(xe);
+
+ return 0;
+}
+
+static void xe_gt_finish_ccs_mode_enabling(struct xe_device *xe,
+ struct xe_gt *gt)
+{
+ /* disarm the guard, if CCS mode is reverted to default */
+ if (!(gt->ccs_mode > 1))
+ xe_sriov_pf_end_lockdown(xe);
+}
+
static ssize_t
ccs_mode_store(struct device *kdev, struct device_attribute *attr,
const char *buff, size_t count)
@@ -117,15 +141,13 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
u32 num_engines, num_slices;
int ret;
- if (IS_SRIOV(xe)) {
- xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
- xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
- return -EOPNOTSUPP;
- }
+ ret = xe_gt_prepare_ccs_mode_enabling(xe, gt);
+ if (ret)
+ return ret;
ret = kstrtou32(buff, 0, &num_engines);
if (ret)
- return ret;
+ goto err;
/*
* Ensure number of engines specified is valid and there is an
@@ -135,7 +157,8 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
if (!num_engines || num_engines > num_slices || num_slices % num_engines) {
xe_gt_dbg(gt, "Invalid compute config, %d engines %d slices\n",
num_engines, num_slices);
- return -EINVAL;
+ ret = -EINVAL;
+ goto err;
}
/* CCS mode can only be updated when there are no drm clients */
@@ -143,7 +166,8 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
if (!list_empty(&xe->drm.filelist)) {
mutex_unlock(&xe->drm.filelist_mutex);
xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
- return -EBUSY;
+ ret = -EBUSY;
+ goto err;
}
if (gt->ccs_mode != num_engines) {
@@ -155,7 +179,13 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
mutex_unlock(&xe->drm.filelist_mutex);
+ xe_gt_finish_ccs_mode_enabling(xe, gt);
+
return count;
+err:
+ xe_gt_finish_ccs_mode_enabling(xe, gt);
+
+ return ret;
}
static DEVICE_ATTR_RW(ccs_mode);
@@ -191,7 +221,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
struct xe_device *xe = gt_to_xe(gt);
int err;
- if (!xe_gt_ccs_mode_enabled(gt))
+ if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
return 0;
err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
--
2.43.0
^ permalink raw reply related [flat|nested] 31+ messages in thread
* Re: [V7 PATCH] drm/xe/xe_gt_ccs_mode:Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning
2025-11-25 16:57 ` [V7 PATCH] drm/xe/xe_gt_ccs_mode:Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
@ 2025-11-25 19:13 ` Michal Wajdeczko
2025-11-26 12:21 ` Kumar G, Naresh
2025-11-27 16:10 ` [V8 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
1 sibling, 1 reply; 31+ messages in thread
From: Michal Wajdeczko @ 2025-11-25 19:13 UTC (permalink / raw)
To: Nareshkumar Gollakoti, intel-xe
subject is little too long, maybe:
"drm/xe: Mutual exclusivity between CCS-mode and PF"
On 11/25/2025 5:57 PM, Nareshkumar Gollakoti wrote:
> Use PF lockdown supported functions to enforce mutual exclusivity between
> CCS Mode and SRIOV VF enabling/provisioning during CCS Mode enabling.
please explain in commit message "why" we need this
[1] https://docs.kernel.org/process/submitting-patches.html#describe-your-changes
and also mention about a change for the VF case (no sysfs file in VF mode)
>
and then you can move whole below change log under ---
> v2:
> - function xe_device_is_vf_enabled has been refactored to
> xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
> - The code now distinctly checks for SR-IOV VF mode and
> SR-IOV PF with VFs enabled.
> - Log messages have been updated to explicitly state the current mode.
> - The function xe_multi_ccs_mode_enabled is moved to xe_device.h
>
> v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
>
> v4:
> - sysfs interface for CCS mode is not initialized
> when operating in SRIOV VF Mode.
> - xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
> enablement.
> - remove unnecessary comments as flow is self explanatory.
>
> v5:(review comments from Michal)
> - Add xe device level CCS mode block with mutex lock and CCS mode state
> - necessesary functions to manage ccs mode state to provide strict mutual
> exclusive support b/w CCS mode & SRIOV VF enabling
>
> v6:
> - Re modeled implementation based on lockdown the PF using custom guard
> supported functions by Michal
>
> v7:
> - Corrected patch style as message written as subject
> - Used public PF lockdown functions instead internal funcions(Michal)
> - Creating CCS Mode entries only on PF Mode
>
> Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 48 +++++++++++++++++++++++------
> 1 file changed, 39 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> index 50fffc9ebf62..468c3a6790d0 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> @@ -13,6 +13,7 @@
> #include "xe_gt_sysfs.h"
> #include "xe_mmio.h"
> #include "xe_sriov.h"
> +#include "xe_sriov_pf.h"
>
> static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
> {
> @@ -108,6 +109,29 @@ ccs_mode_show(struct device *kdev,
> return sysfs_emit(buf, "%u\n", gt->ccs_mode);
> }
>
> +static int xe_gt_prepare_ccs_mode_enabling(struct xe_device *xe,
nit: usually we don't use xe_ prefix for static functions
and there is no point in passing *xe since there is *gt
> + struct xe_gt *gt)
> +{
> + /*
> + * The arm guard is only activated during CCS mode enabling,
> + * and this shuould happen when CCS mode is in default mode.
> + * lockdown arm guard ensures there is no VFS enabling
> + * as CCS mode enabling in progress/enabled.
this should rather say just something like:
* We can't change CCS-mode when VFs are already enabled and we
* must prevent enabling VFs when alternate CCS-mode is active.
> + */
> + if (!(gt->ccs_mode > 1))
can we have helper which name would describe this magic condition?
bool xe_gt_ccs_mode_default(gt)
> + return xe_sriov_pf_lockdown(xe);
note that all xe_sriov_pf_xxx() functions expect to be called only in the PF mode
so before calling this xe_sriov_pf_lockdown() you must use IS_SRIOV_PF(xe)
> +
> + return 0;
> +}
> +
> +static void xe_gt_finish_ccs_mode_enabling(struct xe_device *xe,
> + struct xe_gt *gt)
> +{
> + /* disarm the guard, if CCS mode is reverted to default */
"guard" is just an implementation detail of the "PF lockdown" feature
> + if (!(gt->ccs_mode > 1))
> + xe_sriov_pf_end_lockdown(xe);
> +}
> +
> static ssize_t
> ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> const char *buff, size_t count)
> @@ -117,15 +141,13 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> u32 num_engines, num_slices;
> int ret;
>
> - if (IS_SRIOV(xe)) {
> - xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
> - xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
> - return -EOPNOTSUPP;
> - }
> + ret = xe_gt_prepare_ccs_mode_enabling(xe, gt);
shouldn't this be done under below mutex?
> + if (ret)
> + return ret;
>
> ret = kstrtou32(buff, 0, &num_engines);
> if (ret)
> - return ret;
> + goto err;
>
> /*
> * Ensure numbers of engines specified is valid and there is an
> @@ -135,7 +157,8 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> if (!num_engines || num_engines > num_slices || num_slices % num_engines) {
> xe_gt_dbg(gt, "Invalid compute config, %d engines %d slices\n",
> num_engines, num_slices);
> - return -EINVAL;
> + ret = -EINVAL;
> + goto err;
> }
>
> /* CCS mode can only be updated when there are no drm clients */
> @@ -143,7 +166,8 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> if (!list_empty(&xe->drm.filelist)) {
> mutex_unlock(&xe->drm.filelist_mutex);
> xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
> - return -EBUSY;
> + ret = -EBUSY;
> + goto err;
> }
>
> if (gt->ccs_mode != num_engines) {
> @@ -155,7 +179,13 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>
> mutex_unlock(&xe->drm.filelist_mutex);
to avoid such manual unlocks, you may want to start using:
guard(mutex)(&xe->drm.filelist_mutex);
but then make sure to do not use "goto"
>
> + xe_gt_finish_ccs_mode_enabling(xe, gt);
> +
> return count;
return ret ?: count;
> +err:
> + xe_gt_finish_ccs_mode_enabling(xe, gt);
> +
> + return ret;
> }
>
> static DEVICE_ATTR_RW(ccs_mode);
> @@ -191,7 +221,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
> struct xe_device *xe = gt_to_xe(gt);
> int err;
>
> - if (!xe_gt_ccs_mode_enabled(gt))
btw, the "xe_gt_ccs_mode_enabled" name is little misleading,
IMO better name would be "xe_gt_ccs_mode_supported"
> + if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
> return 0;
>
> err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (3 preceding siblings ...)
2025-11-25 16:57 ` [V7 PATCH] drm/xe/xe_gt_ccs_mode:Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
@ 2025-11-26 1:13 ` Patchwork
2025-11-26 2:18 ` ✗ Xe.CI.BAT: failure " Patchwork
` (8 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-26 1:13 UTC (permalink / raw)
To: Kumar G, Naresh; +Cc: intel-xe
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7)
URL : https://patchwork.freedesktop.org/series/154538/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:12:15] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:12:20] 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=25
[01:12:57] Starting KUnit Kernel (1/1)...
[01:12:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:12:57] ================== guc_buf (11 subtests) ===================
[01:12:57] [PASSED] test_smallest
[01:12:57] [PASSED] test_largest
[01:12:57] [PASSED] test_granular
[01:12:57] [PASSED] test_unique
[01:12:57] [PASSED] test_overlap
[01:12:57] [PASSED] test_reusable
[01:12:57] [PASSED] test_too_big
[01:12:57] [PASSED] test_flush
[01:12:57] [PASSED] test_lookup
[01:12:57] [PASSED] test_data
[01:12:57] [PASSED] test_class
[01:12:57] ===================== [PASSED] guc_buf =====================
[01:12:57] =================== guc_dbm (7 subtests) ===================
[01:12:57] [PASSED] test_empty
[01:12:57] [PASSED] test_default
[01:12:57] ======================== test_size ========================
[01:12:57] [PASSED] 4
[01:12:57] [PASSED] 8
[01:12:57] [PASSED] 32
[01:12:57] [PASSED] 256
[01:12:57] ==================== [PASSED] test_size ====================
[01:12:57] ======================= test_reuse ========================
[01:12:57] [PASSED] 4
[01:12:57] [PASSED] 8
[01:12:57] [PASSED] 32
[01:12:57] [PASSED] 256
[01:12:57] =================== [PASSED] test_reuse ====================
[01:12:57] =================== test_range_overlap ====================
[01:12:57] [PASSED] 4
[01:12:57] [PASSED] 8
[01:12:57] [PASSED] 32
[01:12:57] [PASSED] 256
[01:12:57] =============== [PASSED] test_range_overlap ================
[01:12:57] =================== test_range_compact ====================
[01:12:57] [PASSED] 4
[01:12:57] [PASSED] 8
[01:12:57] [PASSED] 32
[01:12:57] [PASSED] 256
[01:12:57] =============== [PASSED] test_range_compact ================
[01:12:57] ==================== test_range_spare =====================
[01:12:57] [PASSED] 4
[01:12:57] [PASSED] 8
[01:12:57] [PASSED] 32
[01:12:57] [PASSED] 256
[01:12:57] ================ [PASSED] test_range_spare =================
[01:12:57] ===================== [PASSED] guc_dbm =====================
[01:12:57] =================== guc_idm (6 subtests) ===================
[01:12:57] [PASSED] bad_init
[01:12:57] [PASSED] no_init
[01:12:57] [PASSED] init_fini
[01:12:57] [PASSED] check_used
[01:12:57] [PASSED] check_quota
[01:12:57] [PASSED] check_all
[01:12:57] ===================== [PASSED] guc_idm =====================
[01:12:57] ================== no_relay (3 subtests) ===================
[01:12:57] [PASSED] xe_drops_guc2pf_if_not_ready
[01:12:57] [PASSED] xe_drops_guc2vf_if_not_ready
[01:12:57] [PASSED] xe_rejects_send_if_not_ready
[01:12:57] ==================== [PASSED] no_relay =====================
[01:12:57] ================== pf_relay (14 subtests) ==================
[01:12:57] [PASSED] pf_rejects_guc2pf_too_short
[01:12:57] [PASSED] pf_rejects_guc2pf_too_long
[01:12:57] [PASSED] pf_rejects_guc2pf_no_payload
[01:12:57] [PASSED] pf_fails_no_payload
[01:12:57] [PASSED] pf_fails_bad_origin
[01:12:57] [PASSED] pf_fails_bad_type
[01:12:57] [PASSED] pf_txn_reports_error
[01:12:57] [PASSED] pf_txn_sends_pf2guc
[01:12:57] [PASSED] pf_sends_pf2guc
[01:12:57] [SKIPPED] pf_loopback_nop
[01:12:57] [SKIPPED] pf_loopback_echo
[01:12:57] [SKIPPED] pf_loopback_fail
[01:12:57] [SKIPPED] pf_loopback_busy
[01:12:57] [SKIPPED] pf_loopback_retry
[01:12:57] ==================== [PASSED] pf_relay =====================
[01:12:57] ================== vf_relay (3 subtests) ===================
[01:12:57] [PASSED] vf_rejects_guc2vf_too_short
[01:12:57] [PASSED] vf_rejects_guc2vf_too_long
[01:12:57] [PASSED] vf_rejects_guc2vf_no_payload
[01:12:57] ==================== [PASSED] vf_relay =====================
[01:12:57] ================ pf_gt_config (6 subtests) =================
[01:12:57] [PASSED] fair_contexts_1vf
[01:12:57] [PASSED] fair_doorbells_1vf
[01:12:57] [PASSED] fair_ggtt_1vf
[01:12:57] ====================== fair_contexts ======================
[01:12:57] [PASSED] 1 VF
[01:12:57] [PASSED] 2 VFs
[01:12:57] [PASSED] 3 VFs
[01:12:57] [PASSED] 4 VFs
[01:12:57] [PASSED] 5 VFs
[01:12:57] [PASSED] 6 VFs
[01:12:57] [PASSED] 7 VFs
[01:12:57] [PASSED] 8 VFs
[01:12:57] [PASSED] 9 VFs
[01:12:57] [PASSED] 10 VFs
[01:12:57] [PASSED] 11 VFs
[01:12:57] [PASSED] 12 VFs
[01:12:57] [PASSED] 13 VFs
[01:12:57] [PASSED] 14 VFs
[01:12:57] [PASSED] 15 VFs
[01:12:57] [PASSED] 16 VFs
[01:12:57] [PASSED] 17 VFs
[01:12:57] [PASSED] 18 VFs
[01:12:57] [PASSED] 19 VFs
[01:12:57] [PASSED] 20 VFs
[01:12:57] [PASSED] 21 VFs
[01:12:57] [PASSED] 22 VFs
[01:12:57] [PASSED] 23 VFs
[01:12:57] [PASSED] 24 VFs
[01:12:57] [PASSED] 25 VFs
[01:12:57] [PASSED] 26 VFs
[01:12:57] [PASSED] 27 VFs
[01:12:57] [PASSED] 28 VFs
[01:12:57] [PASSED] 29 VFs
[01:12:57] [PASSED] 30 VFs
[01:12:57] [PASSED] 31 VFs
[01:12:57] [PASSED] 32 VFs
[01:12:57] [PASSED] 33 VFs
[01:12:57] [PASSED] 34 VFs
[01:12:57] [PASSED] 35 VFs
[01:12:57] [PASSED] 36 VFs
[01:12:57] [PASSED] 37 VFs
[01:12:57] [PASSED] 38 VFs
[01:12:57] [PASSED] 39 VFs
[01:12:57] [PASSED] 40 VFs
[01:12:57] [PASSED] 41 VFs
[01:12:57] [PASSED] 42 VFs
[01:12:57] [PASSED] 43 VFs
[01:12:57] [PASSED] 44 VFs
[01:12:57] [PASSED] 45 VFs
[01:12:57] [PASSED] 46 VFs
[01:12:57] [PASSED] 47 VFs
[01:12:57] [PASSED] 48 VFs
[01:12:57] [PASSED] 49 VFs
[01:12:57] [PASSED] 50 VFs
[01:12:57] [PASSED] 51 VFs
[01:12:57] [PASSED] 52 VFs
[01:12:57] [PASSED] 53 VFs
[01:12:57] [PASSED] 54 VFs
[01:12:57] [PASSED] 55 VFs
[01:12:57] [PASSED] 56 VFs
[01:12:57] [PASSED] 57 VFs
[01:12:57] [PASSED] 58 VFs
[01:12:57] [PASSED] 59 VFs
[01:12:57] [PASSED] 60 VFs
[01:12:57] [PASSED] 61 VFs
[01:12:57] [PASSED] 62 VFs
[01:12:57] [PASSED] 63 VFs
[01:12:57] ================== [PASSED] fair_contexts ==================
[01:12:57] ===================== fair_doorbells ======================
[01:12:57] [PASSED] 1 VF
[01:12:57] [PASSED] 2 VFs
[01:12:57] [PASSED] 3 VFs
[01:12:57] [PASSED] 4 VFs
[01:12:57] [PASSED] 5 VFs
[01:12:57] [PASSED] 6 VFs
[01:12:57] [PASSED] 7 VFs
[01:12:57] [PASSED] 8 VFs
[01:12:57] [PASSED] 9 VFs
[01:12:57] [PASSED] 10 VFs
[01:12:57] [PASSED] 11 VFs
[01:12:57] [PASSED] 12 VFs
[01:12:57] [PASSED] 13 VFs
[01:12:57] [PASSED] 14 VFs
[01:12:57] [PASSED] 15 VFs
[01:12:57] [PASSED] 16 VFs
[01:12:57] [PASSED] 17 VFs
[01:12:57] [PASSED] 18 VFs
[01:12:57] [PASSED] 19 VFs
[01:12:57] [PASSED] 20 VFs
[01:12:57] [PASSED] 21 VFs
[01:12:57] [PASSED] 22 VFs
[01:12:57] [PASSED] 23 VFs
[01:12:57] [PASSED] 24 VFs
[01:12:57] [PASSED] 25 VFs
[01:12:57] [PASSED] 26 VFs
[01:12:57] [PASSED] 27 VFs
[01:12:57] [PASSED] 28 VFs
[01:12:57] [PASSED] 29 VFs
[01:12:57] [PASSED] 30 VFs
[01:12:57] [PASSED] 31 VFs
[01:12:57] [PASSED] 32 VFs
[01:12:57] [PASSED] 33 VFs
[01:12:57] [PASSED] 34 VFs
[01:12:57] [PASSED] 35 VFs
[01:12:57] [PASSED] 36 VFs
[01:12:57] [PASSED] 37 VFs
[01:12:57] [PASSED] 38 VFs
[01:12:57] [PASSED] 39 VFs
[01:12:57] [PASSED] 40 VFs
[01:12:57] [PASSED] 41 VFs
[01:12:57] [PASSED] 42 VFs
[01:12:57] [PASSED] 43 VFs
[01:12:57] [PASSED] 44 VFs
[01:12:57] [PASSED] 45 VFs
[01:12:57] [PASSED] 46 VFs
[01:12:57] [PASSED] 47 VFs
[01:12:57] [PASSED] 48 VFs
[01:12:57] [PASSED] 49 VFs
[01:12:57] [PASSED] 50 VFs
[01:12:57] [PASSED] 51 VFs
[01:12:57] [PASSED] 52 VFs
[01:12:57] [PASSED] 53 VFs
[01:12:57] [PASSED] 54 VFs
[01:12:57] [PASSED] 55 VFs
[01:12:57] [PASSED] 56 VFs
[01:12:57] [PASSED] 57 VFs
[01:12:57] [PASSED] 58 VFs
[01:12:57] [PASSED] 59 VFs
[01:12:57] [PASSED] 60 VFs
[01:12:57] [PASSED] 61 VFs
[01:12:57] [PASSED] 62 VFs
[01:12:57] [PASSED] 63 VFs
[01:12:57] ================= [PASSED] fair_doorbells ==================
[01:12:57] ======================== fair_ggtt ========================
[01:12:57] [PASSED] 1 VF
[01:12:57] [PASSED] 2 VFs
[01:12:57] [PASSED] 3 VFs
[01:12:57] [PASSED] 4 VFs
[01:12:57] [PASSED] 5 VFs
[01:12:57] [PASSED] 6 VFs
[01:12:57] [PASSED] 7 VFs
[01:12:57] [PASSED] 8 VFs
[01:12:57] [PASSED] 9 VFs
[01:12:57] [PASSED] 10 VFs
[01:12:57] [PASSED] 11 VFs
[01:12:57] [PASSED] 12 VFs
[01:12:57] [PASSED] 13 VFs
[01:12:57] [PASSED] 14 VFs
[01:12:57] [PASSED] 15 VFs
[01:12:57] [PASSED] 16 VFs
[01:12:57] [PASSED] 17 VFs
[01:12:57] [PASSED] 18 VFs
[01:12:57] [PASSED] 19 VFs
[01:12:57] [PASSED] 20 VFs
[01:12:57] [PASSED] 21 VFs
[01:12:57] [PASSED] 22 VFs
[01:12:57] [PASSED] 23 VFs
[01:12:57] [PASSED] 24 VFs
[01:12:57] [PASSED] 25 VFs
[01:12:57] [PASSED] 26 VFs
[01:12:57] [PASSED] 27 VFs
[01:12:57] [PASSED] 28 VFs
[01:12:57] [PASSED] 29 VFs
[01:12:57] [PASSED] 30 VFs
[01:12:57] [PASSED] 31 VFs
[01:12:57] [PASSED] 32 VFs
[01:12:57] [PASSED] 33 VFs
[01:12:57] [PASSED] 34 VFs
[01:12:57] [PASSED] 35 VFs
[01:12:57] [PASSED] 36 VFs
[01:12:57] [PASSED] 37 VFs
[01:12:57] [PASSED] 38 VFs
[01:12:57] [PASSED] 39 VFs
[01:12:57] [PASSED] 40 VFs
[01:12:57] [PASSED] 41 VFs
[01:12:57] [PASSED] 42 VFs
[01:12:57] [PASSED] 43 VFs
[01:12:57] [PASSED] 44 VFs
[01:12:57] [PASSED] 45 VFs
[01:12:57] [PASSED] 46 VFs
[01:12:57] [PASSED] 47 VFs
[01:12:57] [PASSED] 48 VFs
[01:12:57] [PASSED] 49 VFs
[01:12:57] [PASSED] 50 VFs
[01:12:57] [PASSED] 51 VFs
[01:12:57] [PASSED] 52 VFs
[01:12:57] [PASSED] 53 VFs
[01:12:57] [PASSED] 54 VFs
[01:12:57] [PASSED] 55 VFs
[01:12:57] [PASSED] 56 VFs
[01:12:57] [PASSED] 57 VFs
[01:12:57] [PASSED] 58 VFs
[01:12:57] [PASSED] 59 VFs
[01:12:57] [PASSED] 60 VFs
[01:12:57] [PASSED] 61 VFs
[01:12:57] [PASSED] 62 VFs
[01:12:57] [PASSED] 63 VFs
[01:12:57] ==================== [PASSED] fair_ggtt ====================
[01:12:57] ================== [PASSED] pf_gt_config ===================
[01:12:57] ===================== lmtt (1 subtest) =====================
[01:12:57] ======================== test_ops =========================
[01:12:57] [PASSED] 2-level
[01:12:57] [PASSED] multi-level
[01:12:57] ==================== [PASSED] test_ops =====================
[01:12:57] ====================== [PASSED] lmtt =======================
[01:12:57] ================= pf_service (11 subtests) =================
[01:12:57] [PASSED] pf_negotiate_any
[01:12:57] [PASSED] pf_negotiate_base_match
[01:12:57] [PASSED] pf_negotiate_base_newer
[01:12:57] [PASSED] pf_negotiate_base_next
[01:12:57] [SKIPPED] pf_negotiate_base_older
[01:12:57] [PASSED] pf_negotiate_base_prev
[01:12:57] [PASSED] pf_negotiate_latest_match
[01:12:57] [PASSED] pf_negotiate_latest_newer
[01:12:57] [PASSED] pf_negotiate_latest_next
[01:12:57] [SKIPPED] pf_negotiate_latest_older
[01:12:57] [SKIPPED] pf_negotiate_latest_prev
[01:12:57] =================== [PASSED] pf_service ====================
[01:12:57] ================= xe_guc_g2g (2 subtests) ==================
[01:12:57] ============== xe_live_guc_g2g_kunit_default ==============
[01:12:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[01:12:57] ============== xe_live_guc_g2g_kunit_allmem ===============
[01:12:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[01:12:57] =================== [SKIPPED] xe_guc_g2g ===================
[01:12:57] =================== xe_mocs (2 subtests) ===================
[01:12:57] ================ xe_live_mocs_kernel_kunit ================
[01:12:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:12:57] ================ xe_live_mocs_reset_kunit =================
[01:12:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:12:57] ==================== [SKIPPED] xe_mocs =====================
[01:12:57] ================= xe_migrate (2 subtests) ==================
[01:12:57] ================= xe_migrate_sanity_kunit =================
[01:12:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:12:57] ================== xe_validate_ccs_kunit ==================
[01:12:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:12:57] =================== [SKIPPED] xe_migrate ===================
[01:12:57] ================== xe_dma_buf (1 subtest) ==================
[01:12:57] ==================== xe_dma_buf_kunit =====================
[01:12:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:12:57] =================== [SKIPPED] xe_dma_buf ===================
[01:12:57] ================= xe_bo_shrink (1 subtest) =================
[01:12:57] =================== xe_bo_shrink_kunit ====================
[01:12:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:12:57] ================== [SKIPPED] xe_bo_shrink ==================
[01:12:57] ==================== xe_bo (2 subtests) ====================
[01:12:57] ================== xe_ccs_migrate_kunit ===================
[01:12:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:12:57] ==================== xe_bo_evict_kunit ====================
[01:12:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:12:57] ===================== [SKIPPED] xe_bo ======================
[01:12:57] ==================== args (11 subtests) ====================
[01:12:57] [PASSED] count_args_test
[01:12:57] [PASSED] call_args_example
[01:12:57] [PASSED] call_args_test
[01:12:57] [PASSED] drop_first_arg_example
[01:12:57] [PASSED] drop_first_arg_test
[01:12:57] [PASSED] first_arg_example
[01:12:57] [PASSED] first_arg_test
[01:12:57] [PASSED] last_arg_example
[01:12:57] [PASSED] last_arg_test
[01:12:57] [PASSED] pick_arg_example
[01:12:57] [PASSED] sep_comma_example
[01:12:57] ====================== [PASSED] args =======================
[01:12:57] =================== xe_pci (3 subtests) ====================
[01:12:57] ==================== check_graphics_ip ====================
[01:12:57] [PASSED] 12.00 Xe_LP
[01:12:57] [PASSED] 12.10 Xe_LP+
[01:12:57] [PASSED] 12.55 Xe_HPG
[01:12:57] [PASSED] 12.60 Xe_HPC
[01:12:57] [PASSED] 12.70 Xe_LPG
[01:12:57] [PASSED] 12.71 Xe_LPG
[01:12:57] [PASSED] 12.74 Xe_LPG+
[01:12:57] [PASSED] 20.01 Xe2_HPG
[01:12:57] [PASSED] 20.02 Xe2_HPG
[01:12:57] [PASSED] 20.04 Xe2_LPG
[01:12:57] [PASSED] 30.00 Xe3_LPG
[01:12:57] [PASSED] 30.01 Xe3_LPG
[01:12:57] [PASSED] 30.03 Xe3_LPG
[01:12:57] [PASSED] 30.04 Xe3_LPG
[01:12:57] [PASSED] 30.05 Xe3_LPG
[01:12:57] [PASSED] 35.11 Xe3p_XPC
[01:12:57] ================ [PASSED] check_graphics_ip ================
[01:12:57] ===================== check_media_ip ======================
[01:12:57] [PASSED] 12.00 Xe_M
[01:12:57] [PASSED] 12.55 Xe_HPM
[01:12:57] [PASSED] 13.00 Xe_LPM+
[01:12:57] [PASSED] 13.01 Xe2_HPM
[01:12:57] [PASSED] 20.00 Xe2_LPM
[01:12:57] [PASSED] 30.00 Xe3_LPM
[01:12:57] [PASSED] 30.02 Xe3_LPM
[01:12:57] [PASSED] 35.00 Xe3p_LPM
[01:12:57] [PASSED] 35.03 Xe3p_HPM
[01:12:57] ================= [PASSED] check_media_ip ==================
[01:12:57] =================== check_platform_desc ===================
[01:12:57] [PASSED] 0x9A60 (TIGERLAKE)
[01:12:57] [PASSED] 0x9A68 (TIGERLAKE)
[01:12:57] [PASSED] 0x9A70 (TIGERLAKE)
[01:12:57] [PASSED] 0x9A40 (TIGERLAKE)
[01:12:57] [PASSED] 0x9A49 (TIGERLAKE)
[01:12:57] [PASSED] 0x9A59 (TIGERLAKE)
[01:12:57] [PASSED] 0x9A78 (TIGERLAKE)
[01:12:57] [PASSED] 0x9AC0 (TIGERLAKE)
[01:12:57] [PASSED] 0x9AC9 (TIGERLAKE)
[01:12:57] [PASSED] 0x9AD9 (TIGERLAKE)
[01:12:57] [PASSED] 0x9AF8 (TIGERLAKE)
[01:12:57] [PASSED] 0x4C80 (ROCKETLAKE)
[01:12:57] [PASSED] 0x4C8A (ROCKETLAKE)
[01:12:57] [PASSED] 0x4C8B (ROCKETLAKE)
[01:12:57] [PASSED] 0x4C8C (ROCKETLAKE)
[01:12:57] [PASSED] 0x4C90 (ROCKETLAKE)
[01:12:57] [PASSED] 0x4C9A (ROCKETLAKE)
[01:12:57] [PASSED] 0x4680 (ALDERLAKE_S)
[01:12:57] [PASSED] 0x4682 (ALDERLAKE_S)
[01:12:57] [PASSED] 0x4688 (ALDERLAKE_S)
[01:12:57] [PASSED] 0x468A (ALDERLAKE_S)
[01:12:57] [PASSED] 0x468B (ALDERLAKE_S)
[01:12:57] [PASSED] 0x4690 (ALDERLAKE_S)
[01:12:57] [PASSED] 0x4692 (ALDERLAKE_S)
[01:12:57] [PASSED] 0x4693 (ALDERLAKE_S)
[01:12:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46AA (ALDERLAKE_P)
[01:12:57] [PASSED] 0x462A (ALDERLAKE_P)
[01:12:57] [PASSED] 0x4626 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x4628 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[01:12:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:12:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:12:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:12:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:12:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:12:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:12:57] [PASSED] 0xA721 (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA720 (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:12:57] [PASSED] 0xA780 (ALDERLAKE_S)
[01:12:57] [PASSED] 0xA781 (ALDERLAKE_S)
[01:12:57] [PASSED] 0xA782 (ALDERLAKE_S)
[01:12:57] [PASSED] 0xA783 (ALDERLAKE_S)
[01:12:57] [PASSED] 0xA788 (ALDERLAKE_S)
[01:12:57] [PASSED] 0xA789 (ALDERLAKE_S)
[01:12:57] [PASSED] 0xA78A (ALDERLAKE_S)
[01:12:57] [PASSED] 0xA78B (ALDERLAKE_S)
[01:12:57] [PASSED] 0x4905 (DG1)
[01:12:57] [PASSED] 0x4906 (DG1)
[01:12:57] [PASSED] 0x4907 (DG1)
[01:12:57] [PASSED] 0x4908 (DG1)
[01:12:57] [PASSED] 0x4909 (DG1)
[01:12:57] [PASSED] 0x56C0 (DG2)
[01:12:57] [PASSED] 0x56C2 (DG2)
[01:12:57] [PASSED] 0x56C1 (DG2)
[01:12:57] [PASSED] 0x7D51 (METEORLAKE)
[01:12:57] [PASSED] 0x7DD1 (METEORLAKE)
[01:12:57] [PASSED] 0x7D41 (METEORLAKE)
[01:12:57] [PASSED] 0x7D67 (METEORLAKE)
[01:12:57] [PASSED] 0xB640 (METEORLAKE)
[01:12:57] [PASSED] 0x56A0 (DG2)
[01:12:57] [PASSED] 0x56A1 (DG2)
[01:12:57] [PASSED] 0x56A2 (DG2)
[01:12:57] [PASSED] 0x56BE (DG2)
[01:12:57] [PASSED] 0x56BF (DG2)
[01:12:57] [PASSED] 0x5690 (DG2)
[01:12:57] [PASSED] 0x5691 (DG2)
[01:12:57] [PASSED] 0x5692 (DG2)
[01:12:57] [PASSED] 0x56A5 (DG2)
[01:12:57] [PASSED] 0x56A6 (DG2)
[01:12:57] [PASSED] 0x56B0 (DG2)
[01:12:57] [PASSED] 0x56B1 (DG2)
[01:12:57] [PASSED] 0x56BA (DG2)
[01:12:57] [PASSED] 0x56BB (DG2)
[01:12:57] [PASSED] 0x56BC (DG2)
[01:12:57] [PASSED] 0x56BD (DG2)
[01:12:57] [PASSED] 0x5693 (DG2)
[01:12:57] [PASSED] 0x5694 (DG2)
[01:12:57] [PASSED] 0x5695 (DG2)
[01:12:57] [PASSED] 0x56A3 (DG2)
[01:12:57] [PASSED] 0x56A4 (DG2)
[01:12:57] [PASSED] 0x56B2 (DG2)
[01:12:57] [PASSED] 0x56B3 (DG2)
[01:12:57] [PASSED] 0x5696 (DG2)
[01:12:57] [PASSED] 0x5697 (DG2)
[01:12:57] [PASSED] 0xB69 (PVC)
[01:12:57] [PASSED] 0xB6E (PVC)
[01:12:57] [PASSED] 0xBD4 (PVC)
[01:12:57] [PASSED] 0xBD5 (PVC)
[01:12:57] [PASSED] 0xBD6 (PVC)
[01:12:57] [PASSED] 0xBD7 (PVC)
[01:12:57] [PASSED] 0xBD8 (PVC)
[01:12:57] [PASSED] 0xBD9 (PVC)
[01:12:57] [PASSED] 0xBDA (PVC)
[01:12:57] [PASSED] 0xBDB (PVC)
[01:12:57] [PASSED] 0xBE0 (PVC)
[01:12:57] [PASSED] 0xBE1 (PVC)
[01:12:57] [PASSED] 0xBE5 (PVC)
[01:12:57] [PASSED] 0x7D40 (METEORLAKE)
[01:12:57] [PASSED] 0x7D45 (METEORLAKE)
[01:12:57] [PASSED] 0x7D55 (METEORLAKE)
[01:12:57] [PASSED] 0x7D60 (METEORLAKE)
[01:12:57] [PASSED] 0x7DD5 (METEORLAKE)
[01:12:57] [PASSED] 0x6420 (LUNARLAKE)
[01:12:57] [PASSED] 0x64A0 (LUNARLAKE)
[01:12:57] [PASSED] 0x64B0 (LUNARLAKE)
[01:12:57] [PASSED] 0xE202 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE209 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE20B (BATTLEMAGE)
[01:12:57] [PASSED] 0xE20C (BATTLEMAGE)
[01:12:57] [PASSED] 0xE20D (BATTLEMAGE)
[01:12:57] [PASSED] 0xE210 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE211 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE212 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE216 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE220 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE221 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE222 (BATTLEMAGE)
[01:12:57] [PASSED] 0xE223 (BATTLEMAGE)
[01:12:57] [PASSED] 0xB080 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB081 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB082 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB083 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB084 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB085 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB086 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB087 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB08F (PANTHERLAKE)
[01:12:57] [PASSED] 0xB090 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:12:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:12:57] [PASSED] 0xD740 (NOVALAKE_S)
[01:12:57] [PASSED] 0xD741 (NOVALAKE_S)
[01:12:57] [PASSED] 0xD742 (NOVALAKE_S)
[01:12:57] [PASSED] 0xD743 (NOVALAKE_S)
[01:12:57] [PASSED] 0xD744 (NOVALAKE_S)
[01:12:57] [PASSED] 0xD745 (NOVALAKE_S)
[01:12:57] [PASSED] 0x674C (CRESCENTISLAND)
[01:12:57] [PASSED] 0xFD80 (PANTHERLAKE)
[01:12:57] [PASSED] 0xFD81 (PANTHERLAKE)
[01:12:57] =============== [PASSED] check_platform_desc ===============
[01:12:57] ===================== [PASSED] xe_pci ======================
[01:12:57] =================== xe_rtp (2 subtests) ====================
[01:12:57] =============== xe_rtp_process_to_sr_tests ================
[01:12:57] [PASSED] coalesce-same-reg
[01:12:57] [PASSED] no-match-no-add
[01:12:57] [PASSED] match-or
[01:12:57] [PASSED] match-or-xfail
[01:12:57] [PASSED] no-match-no-add-multiple-rules
[01:12:57] [PASSED] two-regs-two-entries
[01:12:57] [PASSED] clr-one-set-other
[01:12:57] [PASSED] set-field
[01:12:57] [PASSED] conflict-duplicate
[01:12:57] [PASSED] conflict-not-disjoint
[01:12:57] [PASSED] conflict-reg-type
[01:12:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:12:57] ================== xe_rtp_process_tests ===================
[01:12:57] [PASSED] active1
[01:12:57] [PASSED] active2
[01:12:57] [PASSED] active-inactive
[01:12:57] [PASSED] inactive-active
[01:12:57] [PASSED] inactive-1st_or_active-inactive
[01:12:57] [PASSED] inactive-2nd_or_active-inactive
[01:12:57] [PASSED] inactive-last_or_active-inactive
[01:12:57] [PASSED] inactive-no_or_active-inactive
[01:12:57] ============== [PASSED] xe_rtp_process_tests ===============
[01:12:57] ===================== [PASSED] xe_rtp ======================
[01:12:57] ==================== xe_wa (1 subtest) =====================
[01:12:57] ======================== xe_wa_gt =========================
[01:12:57] [PASSED] TIGERLAKE B0
[01:12:57] [PASSED] DG1 A0
[01:12:57] [PASSED] DG1 B0
[01:12:57] [PASSED] ALDERLAKE_S A0
[01:12:57] [PASSED] ALDERLAKE_S B0
[01:12:57] [PASSED] ALDERLAKE_S C0
[01:12:57] [PASSED] ALDERLAKE_S D0
[01:12:57] [PASSED] ALDERLAKE_P A0
[01:12:57] [PASSED] ALDERLAKE_P B0
[01:12:57] [PASSED] ALDERLAKE_P C0
[01:12:57] [PASSED] ALDERLAKE_S RPLS D0
[01:12:57] [PASSED] ALDERLAKE_P RPLU E0
[01:12:57] [PASSED] DG2 G10 C0
[01:12:57] [PASSED] DG2 G11 B1
[01:12:57] [PASSED] DG2 G12 A1
[01:12:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:12:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:12:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:12:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[01:12:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:12:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:12:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:12:57] ==================== [PASSED] xe_wa_gt =====================
[01:12:57] ====================== [PASSED] xe_wa ======================
[01:12:57] ============================================================
[01:12:57] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[01:12:57] Elapsed time: 42.105s total, 4.289s configuring, 37.299s building, 0.472s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:12:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:12:59] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[01:13:29] Starting KUnit Kernel (1/1)...
[01:13:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:13:29] ============ drm_test_pick_cmdline (2 subtests) ============
[01:13:29] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[01:13:29] =============== drm_test_pick_cmdline_named ===============
[01:13:29] [PASSED] NTSC
[01:13:29] [PASSED] NTSC-J
[01:13:29] [PASSED] PAL
[01:13:29] [PASSED] PAL-M
[01:13:29] =========== [PASSED] drm_test_pick_cmdline_named ===========
[01:13:29] ============== [PASSED] drm_test_pick_cmdline ==============
[01:13:29] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:13:29] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:13:29] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:13:29] =========== drm_validate_clone_mode (2 subtests) ===========
[01:13:29] ============== drm_test_check_in_clone_mode ===============
[01:13:29] [PASSED] in_clone_mode
[01:13:29] [PASSED] not_in_clone_mode
[01:13:29] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:13:29] =============== drm_test_check_valid_clones ===============
[01:13:29] [PASSED] not_in_clone_mode
[01:13:29] [PASSED] valid_clone
[01:13:29] [PASSED] invalid_clone
[01:13:29] =========== [PASSED] drm_test_check_valid_clones ===========
[01:13:29] ============= [PASSED] drm_validate_clone_mode =============
[01:13:29] ============= drm_validate_modeset (1 subtest) =============
[01:13:29] [PASSED] drm_test_check_connector_changed_modeset
[01:13:29] ============== [PASSED] drm_validate_modeset ===============
[01:13:29] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:13:29] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:13:29] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:13:29] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:13:29] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:13:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:13:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:13:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:13:29] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:13:29] ============== drm_bridge_alloc (2 subtests) ===============
[01:13:29] [PASSED] drm_test_drm_bridge_alloc_basic
[01:13:29] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:13:29] ================ [PASSED] drm_bridge_alloc =================
[01:13:29] ================== drm_buddy (8 subtests) ==================
[01:13:29] [PASSED] drm_test_buddy_alloc_limit
[01:13:29] [PASSED] drm_test_buddy_alloc_optimistic
[01:13:29] [PASSED] drm_test_buddy_alloc_pessimistic
[01:13:29] [PASSED] drm_test_buddy_alloc_pathological
[01:13:29] [PASSED] drm_test_buddy_alloc_contiguous
[01:13:29] [PASSED] drm_test_buddy_alloc_clear
[01:13:29] [PASSED] drm_test_buddy_alloc_range_bias
[01:13:29] [PASSED] drm_test_buddy_fragmentation_performance
[01:13:29] ==================== [PASSED] drm_buddy ====================
[01:13:29] ============= drm_cmdline_parser (40 subtests) =============
[01:13:29] [PASSED] drm_test_cmdline_force_d_only
[01:13:29] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:13:29] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:13:29] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:13:29] [PASSED] drm_test_cmdline_force_e_only
[01:13:29] [PASSED] drm_test_cmdline_res
[01:13:29] [PASSED] drm_test_cmdline_res_vesa
[01:13:29] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:13:29] [PASSED] drm_test_cmdline_res_rblank
[01:13:29] [PASSED] drm_test_cmdline_res_bpp
[01:13:29] [PASSED] drm_test_cmdline_res_refresh
[01:13:29] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:13:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:13:29] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:13:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:13:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:13:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:13:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:13:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:13:29] [PASSED] drm_test_cmdline_res_margins_force_on
[01:13:29] [PASSED] drm_test_cmdline_res_vesa_margins
[01:13:29] [PASSED] drm_test_cmdline_name
[01:13:29] [PASSED] drm_test_cmdline_name_bpp
[01:13:29] [PASSED] drm_test_cmdline_name_option
[01:13:29] [PASSED] drm_test_cmdline_name_bpp_option
[01:13:29] [PASSED] drm_test_cmdline_rotate_0
[01:13:29] [PASSED] drm_test_cmdline_rotate_90
[01:13:29] [PASSED] drm_test_cmdline_rotate_180
[01:13:29] [PASSED] drm_test_cmdline_rotate_270
[01:13:29] [PASSED] drm_test_cmdline_hmirror
[01:13:29] [PASSED] drm_test_cmdline_vmirror
[01:13:29] [PASSED] drm_test_cmdline_margin_options
[01:13:29] [PASSED] drm_test_cmdline_multiple_options
[01:13:29] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:13:29] [PASSED] drm_test_cmdline_extra_and_option
[01:13:29] [PASSED] drm_test_cmdline_freestanding_options
[01:13:29] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:13:29] [PASSED] drm_test_cmdline_panel_orientation
[01:13:29] ================ drm_test_cmdline_invalid =================
[01:13:29] [PASSED] margin_only
[01:13:29] [PASSED] interlace_only
[01:13:29] [PASSED] res_missing_x
[01:13:29] [PASSED] res_missing_y
[01:13:29] [PASSED] res_bad_y
[01:13:29] [PASSED] res_missing_y_bpp
[01:13:29] [PASSED] res_bad_bpp
[01:13:29] [PASSED] res_bad_refresh
[01:13:29] [PASSED] res_bpp_refresh_force_on_off
[01:13:29] [PASSED] res_invalid_mode
[01:13:29] [PASSED] res_bpp_wrong_place_mode
[01:13:29] [PASSED] name_bpp_refresh
[01:13:29] [PASSED] name_refresh
[01:13:29] [PASSED] name_refresh_wrong_mode
[01:13:29] [PASSED] name_refresh_invalid_mode
[01:13:29] [PASSED] rotate_multiple
[01:13:29] [PASSED] rotate_invalid_val
[01:13:29] [PASSED] rotate_truncated
[01:13:29] [PASSED] invalid_option
[01:13:29] [PASSED] invalid_tv_option
[01:13:29] [PASSED] truncated_tv_option
[01:13:29] ============ [PASSED] drm_test_cmdline_invalid =============
[01:13:29] =============== drm_test_cmdline_tv_options ===============
[01:13:29] [PASSED] NTSC
[01:13:29] [PASSED] NTSC_443
[01:13:29] [PASSED] NTSC_J
[01:13:29] [PASSED] PAL
[01:13:29] [PASSED] PAL_M
[01:13:29] [PASSED] PAL_N
[01:13:29] [PASSED] SECAM
[01:13:29] [PASSED] MONO_525
[01:13:29] [PASSED] MONO_625
[01:13:29] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:13:29] =============== [PASSED] drm_cmdline_parser ================
[01:13:29] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:13:29] [PASSED] drm_test_connector_hdmi_init_valid
[01:13:29] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:13:29] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:13:29] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:13:29] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:13:29] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:13:29] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:13:29] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:13:29] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:13:29] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:13:29] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:13:29] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:13:29] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:13:29] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:13:29] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:13:29] [PASSED] drm_test_connector_hdmi_init_null_product
[01:13:29] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:13:29] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:13:29] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:13:29] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:13:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:13:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:13:29] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:13:29] ========= drm_test_connector_hdmi_init_type_valid =========
[01:13:29] [PASSED] HDMI-A
[01:13:29] [PASSED] HDMI-B
[01:13:29] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:13:29] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:13:29] [PASSED] Unknown
[01:13:29] [PASSED] VGA
[01:13:29] [PASSED] DVI-I
[01:13:29] [PASSED] DVI-D
[01:13:29] [PASSED] DVI-A
[01:13:29] [PASSED] Composite
[01:13:29] [PASSED] SVIDEO
[01:13:29] [PASSED] LVDS
[01:13:29] [PASSED] Component
[01:13:29] [PASSED] DIN
[01:13:29] [PASSED] DP
[01:13:29] [PASSED] TV
[01:13:29] [PASSED] eDP
[01:13:29] [PASSED] Virtual
[01:13:29] [PASSED] DSI
[01:13:29] [PASSED] DPI
[01:13:29] [PASSED] Writeback
[01:13:29] [PASSED] SPI
[01:13:29] [PASSED] USB
[01:13:29] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:13:29] ============ [PASSED] drmm_connector_hdmi_init =============
[01:13:29] ============= drmm_connector_init (3 subtests) =============
[01:13:29] [PASSED] drm_test_drmm_connector_init
[01:13:29] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:13:29] ========= drm_test_drmm_connector_init_type_valid =========
[01:13:29] [PASSED] Unknown
[01:13:29] [PASSED] VGA
[01:13:29] [PASSED] DVI-I
[01:13:29] [PASSED] DVI-D
[01:13:29] [PASSED] DVI-A
[01:13:29] [PASSED] Composite
[01:13:29] [PASSED] SVIDEO
[01:13:29] [PASSED] LVDS
[01:13:29] [PASSED] Component
[01:13:29] [PASSED] DIN
[01:13:29] [PASSED] DP
[01:13:29] [PASSED] HDMI-A
[01:13:29] [PASSED] HDMI-B
[01:13:29] [PASSED] TV
[01:13:29] [PASSED] eDP
[01:13:29] [PASSED] Virtual
[01:13:29] [PASSED] DSI
[01:13:29] [PASSED] DPI
[01:13:29] [PASSED] Writeback
[01:13:29] [PASSED] SPI
[01:13:29] [PASSED] USB
[01:13:29] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:13:29] =============== [PASSED] drmm_connector_init ===============
[01:13:29] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_init
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:13:29] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:13:29] [PASSED] Unknown
[01:13:29] [PASSED] VGA
[01:13:29] [PASSED] DVI-I
[01:13:29] [PASSED] DVI-D
[01:13:29] [PASSED] DVI-A
[01:13:29] [PASSED] Composite
[01:13:29] [PASSED] SVIDEO
[01:13:29] [PASSED] LVDS
[01:13:29] [PASSED] Component
[01:13:29] [PASSED] DIN
[01:13:29] [PASSED] DP
[01:13:29] [PASSED] HDMI-A
[01:13:29] [PASSED] HDMI-B
[01:13:29] [PASSED] TV
[01:13:29] [PASSED] eDP
[01:13:29] [PASSED] Virtual
[01:13:29] [PASSED] DSI
[01:13:29] [PASSED] DPI
[01:13:29] [PASSED] Writeback
[01:13:29] [PASSED] SPI
[01:13:29] [PASSED] USB
[01:13:29] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:13:29] ======== drm_test_drm_connector_dynamic_init_name =========
[01:13:29] [PASSED] Unknown
[01:13:29] [PASSED] VGA
[01:13:29] [PASSED] DVI-I
[01:13:29] [PASSED] DVI-D
[01:13:29] [PASSED] DVI-A
[01:13:29] [PASSED] Composite
[01:13:29] [PASSED] SVIDEO
[01:13:29] [PASSED] LVDS
[01:13:29] [PASSED] Component
[01:13:29] [PASSED] DIN
[01:13:29] [PASSED] DP
[01:13:29] [PASSED] HDMI-A
[01:13:29] [PASSED] HDMI-B
[01:13:29] [PASSED] TV
[01:13:29] [PASSED] eDP
[01:13:29] [PASSED] Virtual
[01:13:29] [PASSED] DSI
[01:13:29] [PASSED] DPI
[01:13:29] [PASSED] Writeback
[01:13:29] [PASSED] SPI
[01:13:29] [PASSED] USB
[01:13:29] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:13:29] =========== [PASSED] drm_connector_dynamic_init ============
[01:13:29] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:13:29] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:13:29] ======= drm_connector_dynamic_register (7 subtests) ========
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:13:29] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:13:29] ========= [PASSED] drm_connector_dynamic_register ==========
[01:13:29] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:13:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:13:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:13:29] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:13:29] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:13:29] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:13:29] [PASSED] NTSC
[01:13:29] [PASSED] NTSC-443
[01:13:29] [PASSED] NTSC-J
[01:13:29] [PASSED] PAL
[01:13:29] [PASSED] PAL-M
[01:13:29] [PASSED] PAL-N
[01:13:29] [PASSED] SECAM
[01:13:29] [PASSED] Mono
[01:13:29] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:13:29] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:13:29] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:13:29] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:13:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:13:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:13:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:13:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:13:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:13:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:13:29] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:13:29] [PASSED] VIC 96
[01:13:29] [PASSED] VIC 97
[01:13:29] [PASSED] VIC 101
[01:13:29] [PASSED] VIC 102
[01:13:29] [PASSED] VIC 106
[01:13:29] [PASSED] VIC 107
[01:13:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:13:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:13:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:13:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:13:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:13:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:13:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:13:29] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:13:29] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:13:29] [PASSED] Automatic
[01:13:29] [PASSED] Full
[01:13:29] [PASSED] Limited 16:235
[01:13:29] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:13:29] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:13:29] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:13:29] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:13:29] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:13:29] [PASSED] RGB
[01:13:29] [PASSED] YUV 4:2:0
[01:13:29] [PASSED] YUV 4:2:2
[01:13:29] [PASSED] YUV 4:4:4
[01:13:29] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:13:29] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:13:29] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:13:29] ============= drm_damage_helper (21 subtests) ==============
[01:13:29] [PASSED] drm_test_damage_iter_no_damage
[01:13:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:13:29] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:13:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:13:29] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:13:29] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:13:29] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:13:29] [PASSED] drm_test_damage_iter_simple_damage
[01:13:29] [PASSED] drm_test_damage_iter_single_damage
[01:13:29] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:13:29] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:13:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:13:29] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:13:29] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:13:29] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:13:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:13:29] [PASSED] drm_test_damage_iter_damage
[01:13:29] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:13:29] [PASSED] drm_test_damage_iter_damage_one_outside
[01:13:29] [PASSED] drm_test_damage_iter_damage_src_moved
[01:13:29] [PASSED] drm_test_damage_iter_damage_not_visible
[01:13:29] ================ [PASSED] drm_damage_helper ================
[01:13:29] ============== drm_dp_mst_helper (3 subtests) ==============
[01:13:29] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:13:29] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:13:29] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:13:29] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:13:29] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:13:29] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:13:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:13:29] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:13:29] [PASSED] Link rate 2000000 lane count 4
[01:13:29] [PASSED] Link rate 2000000 lane count 2
[01:13:29] [PASSED] Link rate 2000000 lane count 1
[01:13:29] [PASSED] Link rate 1350000 lane count 4
[01:13:29] [PASSED] Link rate 1350000 lane count 2
[01:13:29] [PASSED] Link rate 1350000 lane count 1
[01:13:29] [PASSED] Link rate 1000000 lane count 4
[01:13:29] [PASSED] Link rate 1000000 lane count 2
[01:13:29] [PASSED] Link rate 1000000 lane count 1
[01:13:29] [PASSED] Link rate 810000 lane count 4
[01:13:29] [PASSED] Link rate 810000 lane count 2
[01:13:29] [PASSED] Link rate 810000 lane count 1
[01:13:29] [PASSED] Link rate 540000 lane count 4
[01:13:29] [PASSED] Link rate 540000 lane count 2
[01:13:29] [PASSED] Link rate 540000 lane count 1
[01:13:29] [PASSED] Link rate 270000 lane count 4
[01:13:29] [PASSED] Link rate 270000 lane count 2
[01:13:29] [PASSED] Link rate 270000 lane count 1
[01:13:29] [PASSED] Link rate 162000 lane count 4
[01:13:29] [PASSED] Link rate 162000 lane count 2
[01:13:29] [PASSED] Link rate 162000 lane count 1
[01:13:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:13:29] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:13:29] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:13:29] [PASSED] DP_POWER_UP_PHY with port number
[01:13:29] [PASSED] DP_POWER_DOWN_PHY with port number
[01:13:29] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:13:29] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:13:29] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:13:29] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:13:29] [PASSED] DP_QUERY_PAYLOAD with port number
[01:13:29] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:13:29] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:13:29] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:13:29] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:13:29] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:13:29] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:13:29] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:13:29] [PASSED] DP_REMOTE_I2C_READ with port number
[01:13:29] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:13:29] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:13:29] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:13:29] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:13:29] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:13:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:13:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:13:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:13:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:13:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:13:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:13:29] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:13:29] ================ [PASSED] drm_dp_mst_helper ================
[01:13:29] ================== drm_exec (7 subtests) ===================
[01:13:29] [PASSED] sanitycheck
[01:13:29] [PASSED] test_lock
[01:13:29] [PASSED] test_lock_unlock
[01:13:29] [PASSED] test_duplicates
[01:13:29] [PASSED] test_prepare
[01:13:29] [PASSED] test_prepare_array
[01:13:29] [PASSED] test_multiple_loops
[01:13:29] ==================== [PASSED] drm_exec =====================
[01:13:29] =========== drm_format_helper_test (17 subtests) ===========
[01:13:29] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:13:29] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:13:29] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:13:29] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:13:29] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:13:29] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:13:29] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:13:29] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:13:29] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:13:29] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:13:29] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:13:29] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:13:29] ==================== drm_test_fb_swab =====================
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ================ [PASSED] drm_test_fb_swab =================
[01:13:29] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:13:29] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:13:29] [PASSED] single_pixel_source_buffer
[01:13:29] [PASSED] single_pixel_clip_rectangle
[01:13:29] [PASSED] well_known_colors
[01:13:29] [PASSED] destination_pitch
[01:13:29] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:13:29] ================= drm_test_fb_clip_offset =================
[01:13:29] [PASSED] pass through
[01:13:29] [PASSED] horizontal offset
[01:13:29] [PASSED] vertical offset
[01:13:29] [PASSED] horizontal and vertical offset
[01:13:29] [PASSED] horizontal offset (custom pitch)
[01:13:29] [PASSED] vertical offset (custom pitch)
[01:13:29] [PASSED] horizontal and vertical offset (custom pitch)
[01:13:29] ============= [PASSED] drm_test_fb_clip_offset =============
[01:13:29] =================== drm_test_fb_memcpy ====================
[01:13:29] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:13:29] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:13:29] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:13:29] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:13:29] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:13:29] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:13:29] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:13:29] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:13:29] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:13:29] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:13:29] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:13:29] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:13:29] =============== [PASSED] drm_test_fb_memcpy ================
[01:13:29] ============= [PASSED] drm_format_helper_test ==============
[01:13:29] ================= drm_format (18 subtests) =================
[01:13:29] [PASSED] drm_test_format_block_width_invalid
[01:13:29] [PASSED] drm_test_format_block_width_one_plane
[01:13:29] [PASSED] drm_test_format_block_width_two_plane
[01:13:29] [PASSED] drm_test_format_block_width_three_plane
[01:13:29] [PASSED] drm_test_format_block_width_tiled
[01:13:29] [PASSED] drm_test_format_block_height_invalid
[01:13:29] [PASSED] drm_test_format_block_height_one_plane
[01:13:29] [PASSED] drm_test_format_block_height_two_plane
[01:13:29] [PASSED] drm_test_format_block_height_three_plane
[01:13:29] [PASSED] drm_test_format_block_height_tiled
[01:13:29] [PASSED] drm_test_format_min_pitch_invalid
[01:13:29] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:13:29] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:13:29] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:13:29] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:13:29] [PASSED] drm_test_format_min_pitch_two_plane
[01:13:29] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:13:29] [PASSED] drm_test_format_min_pitch_tiled
[01:13:29] =================== [PASSED] drm_format ====================
[01:13:29] ============== drm_framebuffer (10 subtests) ===============
[01:13:29] ========== drm_test_framebuffer_check_src_coords ==========
[01:13:29] [PASSED] Success: source fits into fb
[01:13:29] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:13:29] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:13:29] [PASSED] Fail: overflowing fb with source width
[01:13:29] [PASSED] Fail: overflowing fb with source height
[01:13:29] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:13:29] [PASSED] drm_test_framebuffer_cleanup
[01:13:29] =============== drm_test_framebuffer_create ===============
[01:13:29] [PASSED] ABGR8888 normal sizes
[01:13:29] [PASSED] ABGR8888 max sizes
[01:13:29] [PASSED] ABGR8888 pitch greater than min required
[01:13:29] [PASSED] ABGR8888 pitch less than min required
[01:13:29] [PASSED] ABGR8888 Invalid width
[01:13:29] [PASSED] ABGR8888 Invalid buffer handle
[01:13:29] [PASSED] No pixel format
[01:13:29] [PASSED] ABGR8888 Width 0
[01:13:29] [PASSED] ABGR8888 Height 0
[01:13:29] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:13:29] [PASSED] ABGR8888 Large buffer offset
[01:13:29] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:13:29] [PASSED] ABGR8888 Invalid flag
[01:13:29] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:13:29] [PASSED] ABGR8888 Valid buffer modifier
[01:13:29] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:13:29] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:13:29] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:13:29] [PASSED] NV12 Normal sizes
[01:13:29] [PASSED] NV12 Max sizes
[01:13:29] [PASSED] NV12 Invalid pitch
[01:13:29] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:13:29] [PASSED] NV12 different modifier per-plane
[01:13:29] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:13:29] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:13:29] [PASSED] NV12 Modifier for inexistent plane
[01:13:29] [PASSED] NV12 Handle for inexistent plane
[01:13:29] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:13:29] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:13:29] [PASSED] YVU420 Normal sizes
[01:13:29] [PASSED] YVU420 Max sizes
[01:13:29] [PASSED] YVU420 Invalid pitch
[01:13:29] [PASSED] YVU420 Different pitches
[01:13:29] [PASSED] YVU420 Different buffer offsets/pitches
[01:13:29] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:13:29] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:13:29] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:13:29] [PASSED] YVU420 Valid modifier
[01:13:29] [PASSED] YVU420 Different modifiers per plane
[01:13:29] [PASSED] YVU420 Modifier for inexistent plane
[01:13:29] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:13:29] [PASSED] X0L2 Normal sizes
[01:13:29] [PASSED] X0L2 Max sizes
[01:13:29] [PASSED] X0L2 Invalid pitch
[01:13:29] [PASSED] X0L2 Pitch greater than minimum required
[01:13:29] [PASSED] X0L2 Handle for inexistent plane
[01:13:29] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:13:29] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:13:29] [PASSED] X0L2 Valid modifier
[01:13:29] [PASSED] X0L2 Modifier for inexistent plane
[01:13:29] =========== [PASSED] drm_test_framebuffer_create ===========
[01:13:29] [PASSED] drm_test_framebuffer_free
[01:13:29] [PASSED] drm_test_framebuffer_init
[01:13:29] [PASSED] drm_test_framebuffer_init_bad_format
[01:13:29] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:13:29] [PASSED] drm_test_framebuffer_lookup
[01:13:29] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:13:29] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:13:29] ================= [PASSED] drm_framebuffer =================
[01:13:29] ================ drm_gem_shmem (8 subtests) ================
[01:13:29] [PASSED] drm_gem_shmem_test_obj_create
[01:13:29] [PASSED] drm_gem_shmem_test_obj_create_private
[01:13:29] [PASSED] drm_gem_shmem_test_pin_pages
[01:13:29] [PASSED] drm_gem_shmem_test_vmap
[01:13:29] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:13:29] [PASSED] drm_gem_shmem_test_get_sg_table
[01:13:29] [PASSED] drm_gem_shmem_test_madvise
[01:13:29] [PASSED] drm_gem_shmem_test_purge
[01:13:29] ================== [PASSED] drm_gem_shmem ==================
[01:13:29] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:13:29] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:13:29] [PASSED] Automatic
[01:13:29] [PASSED] Full
[01:13:29] [PASSED] Limited 16:235
[01:13:29] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:13:29] [PASSED] drm_test_check_disable_connector
[01:13:29] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:13:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:13:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:13:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:13:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:13:29] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:13:29] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:13:29] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:13:29] [PASSED] drm_test_check_output_bpc_dvi
[01:13:29] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:13:29] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:13:29] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:13:29] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:13:29] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:13:29] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:13:29] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:13:29] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:13:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:13:29] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:13:29] [PASSED] drm_test_check_broadcast_rgb_value
[01:13:29] [PASSED] drm_test_check_bpc_8_value
[01:13:29] [PASSED] drm_test_check_bpc_10_value
[01:13:29] [PASSED] drm_test_check_bpc_12_value
[01:13:29] [PASSED] drm_test_check_format_value
[01:13:29] [PASSED] drm_test_check_tmds_char_value
[01:13:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:13:29] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:13:29] [PASSED] drm_test_check_mode_valid
[01:13:29] [PASSED] drm_test_check_mode_valid_reject
[01:13:29] [PASSED] drm_test_check_mode_valid_reject_rate
[01:13:29] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:13:29] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:13:29] ================= drm_managed (2 subtests) =================
[01:13:29] [PASSED] drm_test_managed_release_action
[01:13:29] [PASSED] drm_test_managed_run_action
[01:13:29] =================== [PASSED] drm_managed ===================
[01:13:29] =================== drm_mm (6 subtests) ====================
[01:13:29] [PASSED] drm_test_mm_init
[01:13:29] [PASSED] drm_test_mm_debug
[01:13:29] [PASSED] drm_test_mm_align32
[01:13:29] [PASSED] drm_test_mm_align64
[01:13:29] [PASSED] drm_test_mm_lowest
[01:13:29] [PASSED] drm_test_mm_highest
[01:13:29] ===================== [PASSED] drm_mm ======================
[01:13:29] ============= drm_modes_analog_tv (5 subtests) =============
[01:13:29] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:13:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:13:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:13:29] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:13:29] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:13:29] =============== [PASSED] drm_modes_analog_tv ===============
[01:13:29] ============== drm_plane_helper (2 subtests) ===============
[01:13:29] =============== drm_test_check_plane_state ================
[01:13:29] [PASSED] clipping_simple
[01:13:29] [PASSED] clipping_rotate_reflect
[01:13:29] [PASSED] positioning_simple
[01:13:29] [PASSED] upscaling
[01:13:29] [PASSED] downscaling
[01:13:29] [PASSED] rounding1
[01:13:29] [PASSED] rounding2
[01:13:29] [PASSED] rounding3
[01:13:29] [PASSED] rounding4
[01:13:29] =========== [PASSED] drm_test_check_plane_state ============
[01:13:29] =========== drm_test_check_invalid_plane_state ============
[01:13:29] [PASSED] positioning_invalid
[01:13:29] [PASSED] upscaling_invalid
[01:13:29] [PASSED] downscaling_invalid
[01:13:29] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:13:29] ================ [PASSED] drm_plane_helper =================
[01:13:29] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:13:29] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:13:29] [PASSED] None
[01:13:29] [PASSED] PAL
[01:13:29] [PASSED] NTSC
[01:13:29] [PASSED] Both, NTSC Default
[01:13:29] [PASSED] Both, PAL Default
[01:13:29] [PASSED] Both, NTSC Default, with PAL on command-line
[01:13:29] [PASSED] Both, PAL Default, with NTSC on command-line
[01:13:29] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:13:29] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:13:29] ================== drm_rect (9 subtests) ===================
[01:13:29] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:13:29] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:13:29] [PASSED] drm_test_rect_clip_scaled_clipped
[01:13:29] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:13:29] ================= drm_test_rect_intersect =================
[01:13:29] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:13:29] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:13:29] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:13:29] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:13:29] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:13:29] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:13:29] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:13:29] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:13:29] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:13:29] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:13:29] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:13:29] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:13:29] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:13:29] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:13:29] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:13:29] ============= [PASSED] drm_test_rect_intersect =============
[01:13:29] ================ drm_test_rect_calc_hscale ================
[01:13:29] [PASSED] normal use
[01:13:29] [PASSED] out of max range
[01:13:29] [PASSED] out of min range
[01:13:29] [PASSED] zero dst
[01:13:29] [PASSED] negative src
[01:13:29] [PASSED] negative dst
[01:13:29] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:13:29] ================ drm_test_rect_calc_vscale ================
[01:13:29] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[01:13:29] [PASSED] out of max range
[01:13:29] [PASSED] out of min range
[01:13:29] [PASSED] zero dst
[01:13:29] [PASSED] negative src
[01:13:29] [PASSED] negative dst
[01:13:29] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:13:29] ================== drm_test_rect_rotate ===================
[01:13:29] [PASSED] reflect-x
[01:13:29] [PASSED] reflect-y
[01:13:29] [PASSED] rotate-0
[01:13:29] [PASSED] rotate-90
[01:13:29] [PASSED] rotate-180
[01:13:29] [PASSED] rotate-270
[01:13:29] ============== [PASSED] drm_test_rect_rotate ===============
[01:13:29] ================ drm_test_rect_rotate_inv =================
[01:13:29] [PASSED] reflect-x
[01:13:29] [PASSED] reflect-y
[01:13:29] [PASSED] rotate-0
[01:13:29] [PASSED] rotate-90
[01:13:29] [PASSED] rotate-180
[01:13:29] [PASSED] rotate-270
[01:13:29] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:13:29] ==================== [PASSED] drm_rect =====================
[01:13:29] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:13:29] ============ drm_test_sysfb_build_fourcc_list =============
[01:13:29] [PASSED] no native formats
[01:13:29] [PASSED] XRGB8888 as native format
[01:13:29] [PASSED] remove duplicates
[01:13:29] [PASSED] convert alpha formats
[01:13:29] [PASSED] random formats
[01:13:29] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:13:29] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:13:29] ============================================================
[01:13:29] Testing complete. Ran 622 tests: passed: 622
[01:13:29] Elapsed time: 31.599s total, 1.664s configuring, 29.469s building, 0.411s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:13:29] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:13:31] 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=25
[01:13:40] Starting KUnit Kernel (1/1)...
[01:13:40] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:13:40] ================= ttm_device (5 subtests) ==================
[01:13:40] [PASSED] ttm_device_init_basic
[01:13:40] [PASSED] ttm_device_init_multiple
[01:13:40] [PASSED] ttm_device_fini_basic
[01:13:40] [PASSED] ttm_device_init_no_vma_man
[01:13:40] ================== ttm_device_init_pools ==================
[01:13:40] [PASSED] No DMA allocations, no DMA32 required
[01:13:40] [PASSED] DMA allocations, DMA32 required
[01:13:40] [PASSED] No DMA allocations, DMA32 required
[01:13:40] [PASSED] DMA allocations, no DMA32 required
[01:13:40] ============== [PASSED] ttm_device_init_pools ==============
[01:13:40] =================== [PASSED] ttm_device ====================
[01:13:40] ================== ttm_pool (8 subtests) ===================
[01:13:40] ================== ttm_pool_alloc_basic ===================
[01:13:40] [PASSED] One page
[01:13:40] [PASSED] More than one page
[01:13:40] [PASSED] Above the allocation limit
[01:13:40] [PASSED] One page, with coherent DMA mappings enabled
[01:13:40] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:13:40] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:13:40] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:13:40] [PASSED] One page
[01:13:40] [PASSED] More than one page
[01:13:40] [PASSED] Above the allocation limit
[01:13:40] [PASSED] One page, with coherent DMA mappings enabled
[01:13:40] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:13:40] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:13:40] [PASSED] ttm_pool_alloc_order_caching_match
[01:13:40] [PASSED] ttm_pool_alloc_caching_mismatch
[01:13:40] [PASSED] ttm_pool_alloc_order_mismatch
[01:13:40] [PASSED] ttm_pool_free_dma_alloc
[01:13:40] [PASSED] ttm_pool_free_no_dma_alloc
[01:13:40] [PASSED] ttm_pool_fini_basic
[01:13:40] ==================== [PASSED] ttm_pool =====================
[01:13:40] ================ ttm_resource (8 subtests) =================
[01:13:40] ================= ttm_resource_init_basic =================
[01:13:40] [PASSED] Init resource in TTM_PL_SYSTEM
[01:13:40] [PASSED] Init resource in TTM_PL_VRAM
[01:13:40] [PASSED] Init resource in a private placement
[01:13:40] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:13:40] ============= [PASSED] ttm_resource_init_basic =============
[01:13:40] [PASSED] ttm_resource_init_pinned
[01:13:40] [PASSED] ttm_resource_fini_basic
[01:13:40] [PASSED] ttm_resource_manager_init_basic
[01:13:40] [PASSED] ttm_resource_manager_usage_basic
[01:13:40] [PASSED] ttm_resource_manager_set_used_basic
[01:13:40] [PASSED] ttm_sys_man_alloc_basic
[01:13:40] [PASSED] ttm_sys_man_free_basic
[01:13:40] ================== [PASSED] ttm_resource ===================
[01:13:40] =================== ttm_tt (15 subtests) ===================
[01:13:40] ==================== ttm_tt_init_basic ====================
[01:13:40] [PASSED] Page-aligned size
[01:13:40] [PASSED] Extra pages requested
[01:13:40] ================ [PASSED] ttm_tt_init_basic ================
[01:13:40] [PASSED] ttm_tt_init_misaligned
[01:13:40] [PASSED] ttm_tt_fini_basic
[01:13:40] [PASSED] ttm_tt_fini_sg
[01:13:40] [PASSED] ttm_tt_fini_shmem
[01:13:40] [PASSED] ttm_tt_create_basic
[01:13:40] [PASSED] ttm_tt_create_invalid_bo_type
[01:13:40] [PASSED] ttm_tt_create_ttm_exists
[01:13:40] [PASSED] ttm_tt_create_failed
[01:13:40] [PASSED] ttm_tt_destroy_basic
[01:13:40] [PASSED] ttm_tt_populate_null_ttm
[01:13:40] [PASSED] ttm_tt_populate_populated_ttm
[01:13:40] [PASSED] ttm_tt_unpopulate_basic
[01:13:40] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:13:40] [PASSED] ttm_tt_swapin_basic
[01:13:40] ===================== [PASSED] ttm_tt ======================
[01:13:40] =================== ttm_bo (14 subtests) ===================
[01:13:40] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:13:40] [PASSED] Cannot be interrupted and sleeps
[01:13:40] [PASSED] Cannot be interrupted, locks straight away
[01:13:40] [PASSED] Can be interrupted, sleeps
[01:13:40] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:13:40] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:13:40] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:13:40] [PASSED] ttm_bo_reserve_double_resv
[01:13:40] [PASSED] ttm_bo_reserve_interrupted
[01:13:40] [PASSED] ttm_bo_reserve_deadlock
[01:13:40] [PASSED] ttm_bo_unreserve_basic
[01:13:40] [PASSED] ttm_bo_unreserve_pinned
[01:13:40] [PASSED] ttm_bo_unreserve_bulk
[01:13:40] [PASSED] ttm_bo_fini_basic
[01:13:40] [PASSED] ttm_bo_fini_shared_resv
[01:13:40] [PASSED] ttm_bo_pin_basic
[01:13:40] [PASSED] ttm_bo_pin_unpin_resource
[01:13:40] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:13:40] ===================== [PASSED] ttm_bo ======================
[01:13:40] ============== ttm_bo_validate (21 subtests) ===============
[01:13:40] ============== ttm_bo_init_reserved_sys_man ===============
[01:13:40] [PASSED] Buffer object for userspace
[01:13:40] [PASSED] Kernel buffer object
[01:13:40] [PASSED] Shared buffer object
[01:13:40] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:13:40] ============== ttm_bo_init_reserved_mock_man ==============
[01:13:40] [PASSED] Buffer object for userspace
[01:13:40] [PASSED] Kernel buffer object
[01:13:40] [PASSED] Shared buffer object
[01:13:40] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:13:40] [PASSED] ttm_bo_init_reserved_resv
[01:13:40] ================== ttm_bo_validate_basic ==================
[01:13:40] [PASSED] Buffer object for userspace
[01:13:40] [PASSED] Kernel buffer object
[01:13:40] [PASSED] Shared buffer object
[01:13:40] ============== [PASSED] ttm_bo_validate_basic ==============
[01:13:40] [PASSED] ttm_bo_validate_invalid_placement
[01:13:40] ============= ttm_bo_validate_same_placement ==============
[01:13:40] [PASSED] System manager
[01:13:40] [PASSED] VRAM manager
[01:13:40] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:13:40] [PASSED] ttm_bo_validate_failed_alloc
[01:13:40] [PASSED] ttm_bo_validate_pinned
[01:13:40] [PASSED] ttm_bo_validate_busy_placement
[01:13:40] ================ ttm_bo_validate_multihop =================
[01:13:40] [PASSED] Buffer object for userspace
[01:13:40] [PASSED] Kernel buffer object
[01:13:40] [PASSED] Shared buffer object
[01:13:40] ============ [PASSED] ttm_bo_validate_multihop =============
[01:13:40] ========== ttm_bo_validate_no_placement_signaled ==========
[01:13:40] [PASSED] Buffer object in system domain, no page vector
[01:13:40] [PASSED] Buffer object in system domain with an existing page vector
[01:13:40] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:13:40] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:13:40] [PASSED] Buffer object for userspace
[01:13:40] [PASSED] Kernel buffer object
[01:13:40] [PASSED] Shared buffer object
[01:13:40] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:13:40] [PASSED] ttm_bo_validate_move_fence_signaled
[01:13:40] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:13:40] [PASSED] Waits for GPU
[01:13:40] [PASSED] Tries to lock straight away
[01:13:40] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:13:40] [PASSED] ttm_bo_validate_happy_evict
[01:13:40] [PASSED] ttm_bo_validate_all_pinned_evict
[01:13:40] [PASSED] ttm_bo_validate_allowed_only_evict
[01:13:40] [PASSED] ttm_bo_validate_deleted_evict
[01:13:40] [PASSED] ttm_bo_validate_busy_domain_evict
[01:13:40] [PASSED] ttm_bo_validate_evict_gutting
[01:13:40] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:13:40] ================= [PASSED] ttm_bo_validate =================
[01:13:40] ============================================================
[01:13:40] Testing complete. Ran 101 tests: passed: 101
[01:13:40] Elapsed time: 11.016s total, 1.657s configuring, 9.093s building, 0.232s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✗ Xe.CI.BAT: failure for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (4 preceding siblings ...)
2025-11-26 1:13 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7) Patchwork
@ 2025-11-26 2:18 ` Patchwork
2025-11-26 4:48 ` ✗ Xe.CI.Full: " Patchwork
` (7 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-26 2:18 UTC (permalink / raw)
To: Kumar G, Naresh; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 4713 bytes --]
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7)
URL : https://patchwork.freedesktop.org/series/154538/
State : failure
== Summary ==
CI Bug Log - changes from xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371_BAT -> xe-pw-154538v7_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-154538v7_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-154538v7_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-154538v7_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_compute@compute-square:
- bat-dg2-oem2: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/bat-dg2-oem2/igt@xe_compute@compute-square.html
Known issues
------------
Here are the changes found in xe-pw-154538v7_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#623])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#455])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][4] -> [DMESG-WARN][5] ([Intel XE#4543]) +1 other test dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-modeset:
- bat-adlp-7: [DMESG-WARN][8] ([Intel XE#4543]) -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/bat-adlp-7/igt@kms_flip@basic-flip-vs-modeset.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/bat-adlp-7/igt@kms_flip@basic-flip-vs-modeset.html
* igt@xe_module_load@load:
- bat-dg2-oem2: [ABORT][10] ([Intel XE#6610]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/bat-dg2-oem2/igt@xe_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/bat-dg2-oem2/igt@xe_module_load@load.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#6610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6610
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
Build changes
-------------
* Linux: xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371 -> xe-pw-154538v7
IGT_8638: 72d5c74eb3cf46af2f46daba8109d84c3dd19363 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371: cc835cfc16997c2a02ed089013ed6b51cd538371
xe-pw-154538v7: 154538v7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/index.html
[-- Attachment #2: Type: text/html, Size: 5537 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (5 preceding siblings ...)
2025-11-26 2:18 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-11-26 4:48 ` Patchwork
2025-11-27 16:25 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8) Patchwork
` (6 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-26 4:48 UTC (permalink / raw)
To: Kumar G, Naresh; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 58288 bytes --]
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7)
URL : https://patchwork.freedesktop.org/series/154538/
State : failure
== Summary ==
CI Bug Log - changes from xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371_FULL -> xe-pw-154538v7_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-154538v7_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-154538v7_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-154538v7_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-bmg: [PASS][2] -> [ABORT][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-2/igt@kms_hdr@bpc-switch-dpms.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [ABORT][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-7/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html
* igt@xe_compute@compute-square:
- shard-dg2-set2: [PASS][5] -> [ABORT][6] +2 other tests abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-dg2-464/igt@xe_compute@compute-square.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-434/igt@xe_compute@compute-square.html
#### Warnings ####
* igt@xe_compute@loop-duration-2s:
- shard-dg2-set2: [SKIP][7] ([Intel XE#6598]) -> [ABORT][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-dg2-466/igt@xe_compute@loop-duration-2s.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-436/igt@xe_compute@loop-duration-2s.html
Known issues
------------
Here are the changes found in xe-pw-154538v7_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-edp-1:
- shard-lnl: [PASS][9] -> [ABORT][10] ([Intel XE#6675])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-lnl-8/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-edp-1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-7/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#455])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][13] ([Intel XE#4543]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#316])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1477])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#2191]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#787]) +14 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#4418])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#373]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@degamma:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#306]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@vga-hpd-after-hibernate:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#373])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html
* igt@kms_content_protection@content-type-change:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#3278])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#307])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#455]) +13 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2321])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#308])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#2291]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#309])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#309])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#323])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#1340])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#3009])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-8/igt@kms_dp_aux_dev.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#4331])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#4422])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2316])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#2316]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#310]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1421]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
- shard-adlp: NOTRUN -> [DMESG-WARN][50] ([Intel XE#4543]) +1 other test dmesg-warn
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1401] / [Intel XE#1745])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1401])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling:
- shard-adlp: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [DMESG-FAIL][55] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#352])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#6312])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2311])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#651]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4141]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#656]) +15 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2312])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1469])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#6312])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#651]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#651]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#6312])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#653]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#653]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2313])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#656]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2925] / [Intel XE#346])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][73] ([Intel XE#2925] / [Intel XE#3012])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [FAIL][74] ([Intel XE#5195]) +2 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
* igt@kms_plane_multiple@tiling-yf:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#5020])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@bad-brightness:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#870])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#870])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-adlp: NOTRUN -> [ABORT][78] ([Intel XE#6675])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#1489])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2893])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr2-basic:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-suspend:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1406])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_psr@pr-suspend.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#3414])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1435])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#4459]) +1 other test fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1091] / [Intel XE#2849])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_ccs@ctrl-surf-copy:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@xe_ccs@ctrl-surf-copy.html
* igt@xe_compute_preempt@compute-preempt-many-vram:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#5191])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many-vram.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#1126]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1062])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@basic-exec-queues:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#4837]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-read-event:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#4837]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@discovery-race-sigint:
- shard-adlp: NOTRUN -> [SKIP][98] ([Intel XE#4837] / [Intel XE#5565]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@xe_eudebug@discovery-race-sigint.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#261]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-external:
- shard-adlp: NOTRUN -> [SKIP][100] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_evict@evict-small-external.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#688]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1392])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#288]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
- shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#288] / [Intel XE#5561]) +11 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#2360])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_reset@cat-error:
- shard-adlp: NOTRUN -> [DMESG-WARN][107] ([Intel XE#3868])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_exec_reset@cat-error.html
* igt@xe_exec_system_allocator@madvise-no-range-invalidate-same-attr:
- shard-lnl: NOTRUN -> [WARN][108] ([Intel XE#5786])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_exec_system_allocator@madvise-no-range-invalidate-same-attr.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#6196])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#4915]) +43 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-mmap-remap-ro:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#4915]) +141 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@xe_exec_system_allocator@process-many-large-mmap-remap-ro.html
* igt@xe_exec_system_allocator@threads-many-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#4943]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#4943]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge-nomemset.html
* igt@xe_mmap@pci-membarrier:
- shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#5100])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@small-bar:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#512])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#378])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_module_load@force-load.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-adlp: NOTRUN -> [SKIP][117] ([Intel XE#3573]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-adlp: NOTRUN -> [ABORT][118] ([Intel XE#2953] / [Intel XE#6675])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][119] -> [ABORT][120] ([Intel XE#6675])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-dg2-433/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: NOTRUN -> [ABORT][121] ([Intel XE#6675]) +1 other test abort
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-exec-after:
- shard-bmg: [PASS][122] -> [ABORT][123] ([Intel XE#6675]) +1 other test abort
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-1/igt@xe_pm@s4-exec-after.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@xe_pm@s4-exec-after.html
* igt@xe_pm_residency@cpg-basic:
- shard-bmg: NOTRUN -> [ABORT][124] ([Intel XE#6675]) +1 other test abort
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-1/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pmu@engine-activity-suspend:
- shard-adlp: [PASS][125] -> [ABORT][126] ([Intel XE#6675]) +6 other tests abort
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-8/igt@xe_pmu@engine-activity-suspend.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_pmu@engine-activity-suspend.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][127] -> [FAIL][128] ([Intel XE#4819]) +1 other test fail
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-dg2-464/igt@xe_pmu@gt-frequency.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-434/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#4733] / [Intel XE#5594])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#944])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-oa-units:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#944]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#944])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_spin_batch@spin-mem-copy:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#4821])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_spin_batch@spin-mem-copy.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#6376])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_sriov_vram@vf-access-after-resize-down.html
#### Possible fixes ####
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][135] ([Intel XE#2291]) -> [PASS][136] +1 other test pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][137] ([Intel XE#5299]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-bmg: [SKIP][139] ([Intel XE#2316]) -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][141] ([Intel XE#4543]) -> [PASS][142] +3 other tests pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-8/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-3/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
* igt@testdisplay:
- shard-bmg: [ABORT][143] -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-8/igt@testdisplay.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@testdisplay.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [SKIP][168], [PASS][169]) ([Intel XE#378] / [Intel XE#5612]) -> ([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], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-4/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-4/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-4/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-1/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-1/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-3/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-3/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-3/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-1/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-1/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-6/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-6/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-8/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-8/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-2/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-2/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-2/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-2/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-8/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-8/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-9/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-9/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-9/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-8/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-4/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-1/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-1/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-4/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-3/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-3/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-3/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-2/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-4/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-4/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-1/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-8/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-3/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-1/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@xe_module_load@load.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [ABORT][194] ([Intel XE#6675]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-prefetch.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-adlp: [ABORT][196] ([Intel XE#6675]) -> [PASS][197] +4 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-6/igt@xe_pm@s3-vm-bind-prefetch.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-9/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][198] ([Intel XE#6675]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-8/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pmu@engine-activity-accuracy-90:
- shard-lnl: [FAIL][200] ([Intel XE#6251]) -> [PASS][201] +4 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90.html
* igt@xe_pmu@engine-activity-suspend:
- shard-dg2-set2: [ABORT][202] ([Intel XE#6675]) -> [PASS][203] +1 other test pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-dg2-432/igt@xe_pmu@engine-activity-suspend.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-dg2-464/igt@xe_pmu@engine-activity-suspend.html
#### Warnings ####
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-lnl: [FAIL][204] -> [ABORT][205] ([Intel XE#6675])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-lnl-8/igt@kms_async_flips@async-flip-suspend-resume.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-lnl-7/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-adlp: [ABORT][206] ([Intel XE#2953] / [Intel XE#6675]) -> [ABORT][207] ([Intel XE#6675]) +1 other test abort
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][208] ([Intel XE#2311]) -> [SKIP][209] ([Intel XE#2312]) +12 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][210] ([Intel XE#2312]) -> [SKIP][211] ([Intel XE#4141]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][212] ([Intel XE#4141]) -> [SKIP][213] ([Intel XE#2312]) +7 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][214] ([Intel XE#2312]) -> [SKIP][215] ([Intel XE#2311]) +10 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][216] ([Intel XE#2313]) -> [SKIP][217] ([Intel XE#2312]) +10 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][218] ([Intel XE#2312]) -> [SKIP][219] ([Intel XE#2313]) +9 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-adlp: [DMESG-WARN][220] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [ABORT][221] ([Intel XE#6675])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371/shard-adlp-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[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#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[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#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[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#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[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#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[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#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[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#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[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#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[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
Build changes
-------------
* Linux: xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371 -> xe-pw-154538v7
IGT_8638: 72d5c74eb3cf46af2f46daba8109d84c3dd19363 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4147-cc835cfc16997c2a02ed089013ed6b51cd538371: cc835cfc16997c2a02ed089013ed6b51cd538371
xe-pw-154538v7: 154538v7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v7/index.html
[-- Attachment #2: Type: text/html, Size: 68348 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [V7 PATCH] drm/xe/xe_gt_ccs_mode:Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning
2025-11-25 19:13 ` Michal Wajdeczko
@ 2025-11-26 12:21 ` Kumar G, Naresh
0 siblings, 0 replies; 31+ messages in thread
From: Kumar G, Naresh @ 2025-11-26 12:21 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe
Hi Michal,
On 26-11-2025 00:43, Michal Wajdeczko wrote:
> subject is little too long, maybe:
>
> "drm/xe: Mutual exclusivity between CCS-mode and PF"
>
> On 11/25/2025 5:57 PM, Nareshkumar Gollakoti wrote:
>> Use PF lockdown supported functions to enforce mutual exclusivity between
>> CCS Mode and SRIOV VF enabling/provisioning during CCS Mode enabling.
>
> please explain in commit message "why" we need this
>
> [1] https://docs.kernel.org/process/submitting-patches.html#describe-your-changes
>
> and also mention about a change for the VF case (no sysfs file in VF mode)
>
>>
Noted and update in next revision
>
> and then you can move whole below change log under ---
>
>> v2:
>> - function xe_device_is_vf_enabled has been refactored to
>> xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
>> - The code now distinctly checks for SR-IOV VF mode and
>> SR-IOV PF with VFs enabled.
>> - Log messages have been updated to explicitly state the current mode.
>> - The function xe_multi_ccs_mode_enabled is moved to xe_device.h
>>
>> v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
>>
>> v4:
>> - sysfs interface for CCS mode is not initialized
>> when operating in SRIOV VF Mode.
>> - xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
>> enablement.
>> - remove unnecessary comments as flow is self explanatory.
>>
>> v5:(review comments from Michal)
>> - Add xe device level CCS mode block with mutex lock and CCS mode state
>> - necessesary functions to manage ccs mode state to provide strict mutual
>> exclusive support b/w CCS mode & SRIOV VF enabling
>>
>> v6:
>> - Re modeled implementation based on lockdown the PF using custom guard
>> supported functions by Michal
>>
>> v7:
>> - Corrected patch style as message written as subject
>> - Used public PF lockdown functions instead internal funcions(Michal)
>> - Creating CCS Mode entries only on PF Mode
>>
>> Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 48 +++++++++++++++++++++++------
>> 1 file changed, 39 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> index 50fffc9ebf62..468c3a6790d0 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> @@ -13,6 +13,7 @@
>> #include "xe_gt_sysfs.h"
>> #include "xe_mmio.h"
>> #include "xe_sriov.h"
>> +#include "xe_sriov_pf.h"
>>
>> static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
>> {
>> @@ -108,6 +109,29 @@ ccs_mode_show(struct device *kdev,
>> return sysfs_emit(buf, "%u\n", gt->ccs_mode);
>> }
>>
>> +static int xe_gt_prepare_ccs_mode_enabling(struct xe_device *xe,
>
> nit: usually we don't use xe_ prefix for static functions
>
> and there is no point in passing *xe since there is *gt
>
Noted
>> + struct xe_gt *gt)
>> +{
>> + /*
>> + * The arm guard is only activated during CCS mode enabling,
>> + * and this shuould happen when CCS mode is in default mode.
>> + * lockdown arm guard ensures there is no VFS enabling
>> + * as CCS mode enabling in progress/enabled.
>
> this should rather say just something like:
>
> * We can't change CCS-mode when VFs are already enabled and we
> * must prevent enabling VFs when alternate CCS-mode is active.
>
>> + */
>> + if (!(gt->ccs_mode > 1))
>
> can we have helper which name would describe this magic condition?
>
> bool xe_gt_ccs_mode_default(gt)
>
>> + return xe_sriov_pf_lockdown(xe);
>
> note that all xe_sriov_pf_xxx() functions expect to be called only in the PF mode
>
> so before calling this xe_sriov_pf_lockdown() you must use IS_SRIOV_PF(xe)
>
>> +
>> + return 0;
>> +}
>> +
>> +static void xe_gt_finish_ccs_mode_enabling(struct xe_device *xe,
>> + struct xe_gt *gt)
>> +{
>> + /* disarm the guard, if CCS mode is reverted to default */
>
> "guard" is just an implementation detail of the "PF lockdown" feature
>
will update in next version
>> + if (!(gt->ccs_mode > 1))
>> + xe_sriov_pf_end_lockdown(xe);
>> +}
>> +
>> static ssize_t
>> ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> const char *buff, size_t count)
>> @@ -117,15 +141,13 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> u32 num_engines, num_slices;
>> int ret;
>>
>> - if (IS_SRIOV(xe)) {
>> - xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
>> - xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
>> - return -EOPNOTSUPP;
>> - }
>> + ret = xe_gt_prepare_ccs_mode_enabling(xe, gt);
>
> shouldn't this be done under below mutex?
>
yes it can be done anyhow prior is just input validations. will update
in next revision.
>> + if (ret)
>> + return ret;
>>
>> ret = kstrtou32(buff, 0, &num_engines);
>> if (ret)
>> - return ret;
>> + goto err;
>>
>> /*
>> * Ensure numbers of engines specified is valid and there is an
>> @@ -135,7 +157,8 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> if (!num_engines || num_engines > num_slices || num_slices % num_engines) {
>> xe_gt_dbg(gt, "Invalid compute config, %d engines %d slices\n",
>> num_engines, num_slices);
>> - return -EINVAL;
>> + ret = -EINVAL;
>> + goto err;
>> }
>>
>> /* CCS mode can only be updated when there are no drm clients */
>> @@ -143,7 +166,8 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> if (!list_empty(&xe->drm.filelist)) {
>> mutex_unlock(&xe->drm.filelist_mutex);
>> xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
>> - return -EBUSY;
>> + ret = -EBUSY;
>> + goto err;
>> }
>>
>> if (gt->ccs_mode != num_engines) {
>> @@ -155,7 +179,13 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>>
>> mutex_unlock(&xe->drm.filelist_mutex);
>
> to avoid such manual unlocks, you may want to start using:
>
> guard(mutex)(&xe->drm.filelist_mutex);
>
> but then make sure to do not use "goto"
>
>>
>> + xe_gt_finish_ccs_mode_enabling(xe, gt);
>> +
>> return count;
>
> return ret ?: count;
>
>> +err:
>> + xe_gt_finish_ccs_mode_enabling(xe, gt);
>> +
>> + return ret;
>> }
>>
>> static DEVICE_ATTR_RW(ccs_mode);
>> @@ -191,7 +221,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
>> struct xe_device *xe = gt_to_xe(gt);
>> int err;
>>
>> - if (!xe_gt_ccs_mode_enabled(gt))
>
> btw, the "xe_gt_ccs_mode_enabled" name is little misleading,
> IMO better name would be "xe_gt_ccs_mode_supported"
>
That's a good point. Since this function isn't part of the current
patch, we can address the API name change in a follow-up patch. For now,
I'd prefer to proceed with this patch using the existing name, and we
can update the function name in the subsequent change.??
Thanks,
Naresh
>> + if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
>> return 0;
>>
>> err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
>
^ permalink raw reply [flat|nested] 31+ messages in thread
* [V8 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-11-25 16:57 ` [V7 PATCH] drm/xe/xe_gt_ccs_mode:Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
2025-11-25 19:13 ` Michal Wajdeczko
@ 2025-11-27 16:10 ` Nareshkumar Gollakoti
2025-11-27 17:02 ` Michal Wajdeczko
1 sibling, 1 reply; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-27 16:10 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, Nareshkumar Gollakoti
Due to SLA agreement between PF and VFs,the alternate CCS-mode
cannot be changed when VFs are already enabled.
Similarly, enabling VFs is not permitted when the alternate
CCS-mode is active. Additionally, the sysfs entry for
CCS-mode is not created for SR-IOV VF mode.
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
v2:
- function xe_device_is_vf_enabled has been refactored to
xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
- The code now distinctly checks for SR-IOV VF mode and
SR-IOV PF with VFs enabled.
- Log messages have been updated to explicitly state the current mode.
- The function xe_multi_ccs_mode_enabled is moved to xe_device.h
v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
v4:
- sysfs interface for CCS mode is not initialized
when operating in SRIOV VF Mode.
- xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
enablement.
- remove unnecessary comments as flow is self explanatory.
v5:(review comments from Michal)
- Add xe device level CCS mode block with mutex lock and CCS mode state
- necessesary functions to manage ccs mode state to provide strict mutual
exclusive support b/w CCS mode & SRIOV VF enabling
v6:
- Re modeled implementation based on lockdown the PF using custom guard
supported functions by Michal
v7:
- Corrected patch style as message written as subject
- Used public PF lockdown functions instead internal funcions(Michal)
- Creating CCS Mode entries only on PF Mode
v8:(Michal)
- updated short subject and few comments
- used guard for mutex
- Add a check of PF Mode to ensure use of xe_sriov_pf_lockdown only in
PF Mode
- Added default CCS mode check to xe_gt_ccs_mode_default(gt) function
---
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 57 ++++++++++++++++++++++++-----
drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 1 +
2 files changed, 48 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
index 50fffc9ebf62..957ae6586b9d 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
@@ -13,6 +13,7 @@
#include "xe_gt_sysfs.h"
#include "xe_mmio.h"
#include "xe_sriov.h"
+#include "xe_sriov_pf.h"
static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
{
@@ -108,6 +109,45 @@ ccs_mode_show(struct device *kdev,
return sysfs_emit(buf, "%u\n", gt->ccs_mode);
}
+bool xe_gt_ccs_mode_default(struct xe_gt *gt)
+{
+ return gt->ccs_mode == 1;
+}
+
+static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ /*
+ * Ensure the system is operating in PF Mode before invoking
+ * the xe_sriov_pf_lockdown function.
+ * if not in PF Mode,return 0,as its Non-SRIOV Mode
+ */
+ if (!IS_SRIOV_PF(xe))
+ return 0;
+
+ /*
+ * We can't change CCS-mode when VFs are already enabled
+ * and we must prevent enabling VFs when alternate
+ * CCS-mode is active
+ */
+ if (xe_gt_ccs_mode_default(gt))
+ return xe_sriov_pf_lockdown(xe);
+
+ return 0;
+}
+
+static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (IS_SRIOV_PF(xe)) {
+ /* Allow enabling VFs, if CCS-mode changed to default mode */
+ if (xe_gt_ccs_mode_default(gt))
+ xe_sriov_pf_end_lockdown(xe);
+ }
+}
+
static ssize_t
ccs_mode_store(struct device *kdev, struct device_attribute *attr,
const char *buff, size_t count)
@@ -117,12 +157,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
u32 num_engines, num_slices;
int ret;
- if (IS_SRIOV(xe)) {
- xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
- xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
- return -EOPNOTSUPP;
- }
-
ret = kstrtou32(buff, 0, &num_engines);
if (ret)
return ret;
@@ -139,13 +173,16 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
}
/* CCS mode can only be updated when there are no drm clients */
- mutex_lock(&xe->drm.filelist_mutex);
+ guard(mutex)(&xe->drm.filelist_mutex);
if (!list_empty(&xe->drm.filelist)) {
- mutex_unlock(&xe->drm.filelist_mutex);
xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
return -EBUSY;
}
+ ret = gt_prepare_ccs_mode_enabling(gt);
+ if (ret)
+ return ret;
+
if (gt->ccs_mode != num_engines) {
xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
gt->ccs_mode = num_engines;
@@ -153,7 +190,7 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
xe_gt_reset(gt);
}
- mutex_unlock(&xe->drm.filelist_mutex);
+ gt_finish_ccs_mode_enabling(gt);
return count;
}
@@ -191,7 +228,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
struct xe_device *xe = gt_to_xe(gt);
int err;
- if (!xe_gt_ccs_mode_enabled(gt))
+ if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
return 0;
err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
index f8779852cf0d..224bd553e9dc 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
@@ -13,6 +13,7 @@
void xe_gt_apply_ccs_mode(struct xe_gt *gt);
int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt);
+bool xe_gt_ccs_mode_default(struct xe_gt *gt);
static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
{
--
2.43.0
^ permalink raw reply related [flat|nested] 31+ messages in thread
* ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (6 preceding siblings ...)
2025-11-26 4:48 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-11-27 16:25 ` Patchwork
2025-11-27 17:29 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-27 16:25 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8)
URL : https://patchwork.freedesktop.org/series/154538/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:24:32] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:24:37] 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
[16:25:08] Starting KUnit Kernel (1/1)...
[16:25:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:25:08] ================== guc_buf (11 subtests) ===================
[16:25:08] [PASSED] test_smallest
[16:25:08] [PASSED] test_largest
[16:25:08] [PASSED] test_granular
[16:25:08] [PASSED] test_unique
[16:25:08] [PASSED] test_overlap
[16:25:08] [PASSED] test_reusable
[16:25:08] [PASSED] test_too_big
[16:25:08] [PASSED] test_flush
[16:25:08] [PASSED] test_lookup
[16:25:08] [PASSED] test_data
[16:25:08] [PASSED] test_class
[16:25:08] ===================== [PASSED] guc_buf =====================
[16:25:08] =================== guc_dbm (7 subtests) ===================
[16:25:08] [PASSED] test_empty
[16:25:08] [PASSED] test_default
[16:25:08] ======================== test_size ========================
[16:25:08] [PASSED] 4
[16:25:08] [PASSED] 8
[16:25:08] [PASSED] 32
[16:25:08] [PASSED] 256
[16:25:08] ==================== [PASSED] test_size ====================
[16:25:08] ======================= test_reuse ========================
[16:25:08] [PASSED] 4
[16:25:08] [PASSED] 8
[16:25:08] [PASSED] 32
[16:25:08] [PASSED] 256
[16:25:08] =================== [PASSED] test_reuse ====================
[16:25:08] =================== test_range_overlap ====================
[16:25:08] [PASSED] 4
[16:25:08] [PASSED] 8
[16:25:08] [PASSED] 32
[16:25:08] [PASSED] 256
[16:25:08] =============== [PASSED] test_range_overlap ================
[16:25:08] =================== test_range_compact ====================
[16:25:08] [PASSED] 4
[16:25:08] [PASSED] 8
[16:25:08] [PASSED] 32
[16:25:08] [PASSED] 256
[16:25:08] =============== [PASSED] test_range_compact ================
[16:25:08] ==================== test_range_spare =====================
[16:25:08] [PASSED] 4
[16:25:08] [PASSED] 8
[16:25:08] [PASSED] 32
[16:25:08] [PASSED] 256
[16:25:08] ================ [PASSED] test_range_spare =================
[16:25:08] ===================== [PASSED] guc_dbm =====================
[16:25:08] =================== guc_idm (6 subtests) ===================
[16:25:08] [PASSED] bad_init
[16:25:08] [PASSED] no_init
[16:25:08] [PASSED] init_fini
[16:25:08] [PASSED] check_used
[16:25:08] [PASSED] check_quota
[16:25:08] [PASSED] check_all
[16:25:08] ===================== [PASSED] guc_idm =====================
[16:25:08] ================== no_relay (3 subtests) ===================
[16:25:08] [PASSED] xe_drops_guc2pf_if_not_ready
[16:25:08] [PASSED] xe_drops_guc2vf_if_not_ready
[16:25:08] [PASSED] xe_rejects_send_if_not_ready
[16:25:08] ==================== [PASSED] no_relay =====================
[16:25:08] ================== pf_relay (14 subtests) ==================
[16:25:08] [PASSED] pf_rejects_guc2pf_too_short
[16:25:08] [PASSED] pf_rejects_guc2pf_too_long
[16:25:08] [PASSED] pf_rejects_guc2pf_no_payload
[16:25:08] [PASSED] pf_fails_no_payload
[16:25:08] [PASSED] pf_fails_bad_origin
[16:25:08] [PASSED] pf_fails_bad_type
[16:25:08] [PASSED] pf_txn_reports_error
[16:25:08] [PASSED] pf_txn_sends_pf2guc
[16:25:08] [PASSED] pf_sends_pf2guc
[16:25:08] [SKIPPED] pf_loopback_nop
[16:25:08] [SKIPPED] pf_loopback_echo
[16:25:08] [SKIPPED] pf_loopback_fail
[16:25:08] [SKIPPED] pf_loopback_busy
[16:25:08] [SKIPPED] pf_loopback_retry
[16:25:08] ==================== [PASSED] pf_relay =====================
[16:25:08] ================== vf_relay (3 subtests) ===================
[16:25:08] [PASSED] vf_rejects_guc2vf_too_short
[16:25:08] [PASSED] vf_rejects_guc2vf_too_long
[16:25:08] [PASSED] vf_rejects_guc2vf_no_payload
[16:25:08] ==================== [PASSED] vf_relay =====================
[16:25:08] ================ pf_gt_config (6 subtests) =================
[16:25:08] [PASSED] fair_contexts_1vf
[16:25:08] [PASSED] fair_doorbells_1vf
[16:25:08] [PASSED] fair_ggtt_1vf
[16:25:08] ====================== fair_contexts ======================
[16:25:08] [PASSED] 1 VF
[16:25:08] [PASSED] 2 VFs
[16:25:08] [PASSED] 3 VFs
[16:25:08] [PASSED] 4 VFs
[16:25:08] [PASSED] 5 VFs
[16:25:08] [PASSED] 6 VFs
[16:25:08] [PASSED] 7 VFs
[16:25:08] [PASSED] 8 VFs
[16:25:08] [PASSED] 9 VFs
[16:25:08] [PASSED] 10 VFs
[16:25:08] [PASSED] 11 VFs
[16:25:08] [PASSED] 12 VFs
[16:25:08] [PASSED] 13 VFs
[16:25:08] [PASSED] 14 VFs
[16:25:08] [PASSED] 15 VFs
[16:25:08] [PASSED] 16 VFs
[16:25:08] [PASSED] 17 VFs
[16:25:08] [PASSED] 18 VFs
[16:25:08] [PASSED] 19 VFs
[16:25:08] [PASSED] 20 VFs
[16:25:08] [PASSED] 21 VFs
[16:25:08] [PASSED] 22 VFs
[16:25:08] [PASSED] 23 VFs
[16:25:08] [PASSED] 24 VFs
[16:25:08] [PASSED] 25 VFs
[16:25:08] [PASSED] 26 VFs
[16:25:08] [PASSED] 27 VFs
[16:25:08] [PASSED] 28 VFs
[16:25:08] [PASSED] 29 VFs
[16:25:08] [PASSED] 30 VFs
[16:25:08] [PASSED] 31 VFs
[16:25:08] [PASSED] 32 VFs
[16:25:08] [PASSED] 33 VFs
[16:25:08] [PASSED] 34 VFs
[16:25:08] [PASSED] 35 VFs
[16:25:08] [PASSED] 36 VFs
[16:25:08] [PASSED] 37 VFs
[16:25:08] [PASSED] 38 VFs
[16:25:08] [PASSED] 39 VFs
[16:25:08] [PASSED] 40 VFs
[16:25:08] [PASSED] 41 VFs
[16:25:08] [PASSED] 42 VFs
[16:25:08] [PASSED] 43 VFs
[16:25:08] [PASSED] 44 VFs
[16:25:08] [PASSED] 45 VFs
[16:25:08] [PASSED] 46 VFs
[16:25:08] [PASSED] 47 VFs
[16:25:08] [PASSED] 48 VFs
[16:25:08] [PASSED] 49 VFs
[16:25:08] [PASSED] 50 VFs
[16:25:08] [PASSED] 51 VFs
[16:25:08] [PASSED] 52 VFs
[16:25:08] [PASSED] 53 VFs
[16:25:08] [PASSED] 54 VFs
[16:25:08] [PASSED] 55 VFs
[16:25:08] [PASSED] 56 VFs
[16:25:08] [PASSED] 57 VFs
[16:25:08] [PASSED] 58 VFs
[16:25:08] [PASSED] 59 VFs
[16:25:08] [PASSED] 60 VFs
[16:25:08] [PASSED] 61 VFs
[16:25:08] [PASSED] 62 VFs
[16:25:08] [PASSED] 63 VFs
[16:25:08] ================== [PASSED] fair_contexts ==================
[16:25:08] ===================== fair_doorbells ======================
[16:25:08] [PASSED] 1 VF
[16:25:08] [PASSED] 2 VFs
[16:25:08] [PASSED] 3 VFs
[16:25:08] [PASSED] 4 VFs
[16:25:08] [PASSED] 5 VFs
[16:25:08] [PASSED] 6 VFs
[16:25:08] [PASSED] 7 VFs
[16:25:08] [PASSED] 8 VFs
[16:25:08] [PASSED] 9 VFs
[16:25:08] [PASSED] 10 VFs
[16:25:08] [PASSED] 11 VFs
[16:25:08] [PASSED] 12 VFs
[16:25:08] [PASSED] 13 VFs
[16:25:08] [PASSED] 14 VFs
[16:25:08] [PASSED] 15 VFs
[16:25:08] [PASSED] 16 VFs
[16:25:08] [PASSED] 17 VFs
[16:25:08] [PASSED] 18 VFs
[16:25:08] [PASSED] 19 VFs
[16:25:08] [PASSED] 20 VFs
[16:25:08] [PASSED] 21 VFs
[16:25:08] [PASSED] 22 VFs
[16:25:08] [PASSED] 23 VFs
[16:25:08] [PASSED] 24 VFs
[16:25:08] [PASSED] 25 VFs
[16:25:08] [PASSED] 26 VFs
[16:25:08] [PASSED] 27 VFs
[16:25:08] [PASSED] 28 VFs
[16:25:08] [PASSED] 29 VFs
[16:25:08] [PASSED] 30 VFs
[16:25:08] [PASSED] 31 VFs
[16:25:08] [PASSED] 32 VFs
[16:25:08] [PASSED] 33 VFs
[16:25:08] [PASSED] 34 VFs
[16:25:08] [PASSED] 35 VFs
[16:25:08] [PASSED] 36 VFs
[16:25:08] [PASSED] 37 VFs
[16:25:08] [PASSED] 38 VFs
[16:25:08] [PASSED] 39 VFs
[16:25:08] [PASSED] 40 VFs
[16:25:08] [PASSED] 41 VFs
[16:25:08] [PASSED] 42 VFs
[16:25:08] [PASSED] 43 VFs
[16:25:08] [PASSED] 44 VFs
[16:25:08] [PASSED] 45 VFs
[16:25:08] [PASSED] 46 VFs
[16:25:08] [PASSED] 47 VFs
[16:25:08] [PASSED] 48 VFs
[16:25:08] [PASSED] 49 VFs
[16:25:08] [PASSED] 50 VFs
[16:25:08] [PASSED] 51 VFs
[16:25:08] [PASSED] 52 VFs
[16:25:08] [PASSED] 53 VFs
[16:25:08] [PASSED] 54 VFs
[16:25:08] [PASSED] 55 VFs
[16:25:08] [PASSED] 56 VFs
[16:25:08] [PASSED] 57 VFs
[16:25:08] [PASSED] 58 VFs
[16:25:08] [PASSED] 59 VFs
[16:25:08] [PASSED] 60 VFs
[16:25:08] [PASSED] 61 VFs
[16:25:08] [PASSED] 62 VFs
[16:25:08] [PASSED] 63 VFs
[16:25:08] ================= [PASSED] fair_doorbells ==================
[16:25:08] ======================== fair_ggtt ========================
[16:25:08] [PASSED] 1 VF
[16:25:08] [PASSED] 2 VFs
[16:25:08] [PASSED] 3 VFs
[16:25:08] [PASSED] 4 VFs
[16:25:08] [PASSED] 5 VFs
[16:25:08] [PASSED] 6 VFs
[16:25:08] [PASSED] 7 VFs
[16:25:08] [PASSED] 8 VFs
[16:25:08] [PASSED] 9 VFs
[16:25:08] [PASSED] 10 VFs
[16:25:08] [PASSED] 11 VFs
[16:25:08] [PASSED] 12 VFs
[16:25:08] [PASSED] 13 VFs
[16:25:08] [PASSED] 14 VFs
[16:25:08] [PASSED] 15 VFs
[16:25:08] [PASSED] 16 VFs
[16:25:08] [PASSED] 17 VFs
[16:25:08] [PASSED] 18 VFs
[16:25:08] [PASSED] 19 VFs
[16:25:08] [PASSED] 20 VFs
[16:25:08] [PASSED] 21 VFs
[16:25:08] [PASSED] 22 VFs
[16:25:08] [PASSED] 23 VFs
[16:25:08] [PASSED] 24 VFs
[16:25:08] [PASSED] 25 VFs
[16:25:08] [PASSED] 26 VFs
[16:25:08] [PASSED] 27 VFs
[16:25:08] [PASSED] 28 VFs
[16:25:08] [PASSED] 29 VFs
[16:25:08] [PASSED] 30 VFs
[16:25:08] [PASSED] 31 VFs
[16:25:08] [PASSED] 32 VFs
[16:25:08] [PASSED] 33 VFs
[16:25:08] [PASSED] 34 VFs
[16:25:08] [PASSED] 35 VFs
[16:25:08] [PASSED] 36 VFs
[16:25:08] [PASSED] 37 VFs
[16:25:08] [PASSED] 38 VFs
[16:25:08] [PASSED] 39 VFs
[16:25:08] [PASSED] 40 VFs
[16:25:08] [PASSED] 41 VFs
[16:25:08] [PASSED] 42 VFs
[16:25:08] [PASSED] 43 VFs
[16:25:08] [PASSED] 44 VFs
[16:25:08] [PASSED] 45 VFs
[16:25:08] [PASSED] 46 VFs
[16:25:08] [PASSED] 47 VFs
[16:25:08] [PASSED] 48 VFs
[16:25:08] [PASSED] 49 VFs
[16:25:08] [PASSED] 50 VFs
[16:25:08] [PASSED] 51 VFs
[16:25:08] [PASSED] 52 VFs
[16:25:08] [PASSED] 53 VFs
[16:25:08] [PASSED] 54 VFs
[16:25:08] [PASSED] 55 VFs
[16:25:08] [PASSED] 56 VFs
[16:25:08] [PASSED] 57 VFs
[16:25:08] [PASSED] 58 VFs
[16:25:08] [PASSED] 59 VFs
[16:25:08] [PASSED] 60 VFs
[16:25:08] [PASSED] 61 VFs
[16:25:08] [PASSED] 62 VFs
[16:25:08] [PASSED] 63 VFs
[16:25:08] ==================== [PASSED] fair_ggtt ====================
[16:25:08] ================== [PASSED] pf_gt_config ===================
[16:25:08] ===================== lmtt (1 subtest) =====================
[16:25:08] ======================== test_ops =========================
[16:25:08] [PASSED] 2-level
[16:25:08] [PASSED] multi-level
[16:25:08] ==================== [PASSED] test_ops =====================
[16:25:08] ====================== [PASSED] lmtt =======================
[16:25:08] ================= pf_service (11 subtests) =================
[16:25:08] [PASSED] pf_negotiate_any
[16:25:08] [PASSED] pf_negotiate_base_match
[16:25:08] [PASSED] pf_negotiate_base_newer
[16:25:08] [PASSED] pf_negotiate_base_next
[16:25:08] [SKIPPED] pf_negotiate_base_older
[16:25:08] [PASSED] pf_negotiate_base_prev
[16:25:08] [PASSED] pf_negotiate_latest_match
[16:25:08] [PASSED] pf_negotiate_latest_newer
[16:25:08] [PASSED] pf_negotiate_latest_next
[16:25:08] [SKIPPED] pf_negotiate_latest_older
[16:25:08] [SKIPPED] pf_negotiate_latest_prev
[16:25:08] =================== [PASSED] pf_service ====================
[16:25:08] ================= xe_guc_g2g (2 subtests) ==================
[16:25:08] ============== xe_live_guc_g2g_kunit_default ==============
[16:25:08] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[16:25:08] ============== xe_live_guc_g2g_kunit_allmem ===============
[16:25:08] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[16:25:08] =================== [SKIPPED] xe_guc_g2g ===================
[16:25:08] =================== xe_mocs (2 subtests) ===================
[16:25:08] ================ xe_live_mocs_kernel_kunit ================
[16:25:08] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:25:08] ================ xe_live_mocs_reset_kunit =================
[16:25:08] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:25:08] ==================== [SKIPPED] xe_mocs =====================
[16:25:08] ================= xe_migrate (2 subtests) ==================
[16:25:08] ================= xe_migrate_sanity_kunit =================
[16:25:08] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:25:08] ================== xe_validate_ccs_kunit ==================
[16:25:08] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:25:08] =================== [SKIPPED] xe_migrate ===================
[16:25:08] ================== xe_dma_buf (1 subtest) ==================
[16:25:08] ==================== xe_dma_buf_kunit =====================
[16:25:08] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:25:08] =================== [SKIPPED] xe_dma_buf ===================
[16:25:08] ================= xe_bo_shrink (1 subtest) =================
[16:25:08] =================== xe_bo_shrink_kunit ====================
[16:25:08] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:25:08] ================== [SKIPPED] xe_bo_shrink ==================
[16:25:08] ==================== xe_bo (2 subtests) ====================
[16:25:08] ================== xe_ccs_migrate_kunit ===================
[16:25:08] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:25:08] ==================== xe_bo_evict_kunit ====================
[16:25:08] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:25:08] ===================== [SKIPPED] xe_bo ======================
[16:25:08] ==================== args (11 subtests) ====================
[16:25:08] [PASSED] count_args_test
[16:25:08] [PASSED] call_args_example
[16:25:08] [PASSED] call_args_test
[16:25:08] [PASSED] drop_first_arg_example
[16:25:08] [PASSED] drop_first_arg_test
[16:25:08] [PASSED] first_arg_example
[16:25:08] [PASSED] first_arg_test
[16:25:08] [PASSED] last_arg_example
[16:25:08] [PASSED] last_arg_test
[16:25:08] [PASSED] pick_arg_example
[16:25:08] [PASSED] sep_comma_example
[16:25:08] ====================== [PASSED] args =======================
[16:25:08] =================== xe_pci (3 subtests) ====================
[16:25:08] ==================== check_graphics_ip ====================
[16:25:08] [PASSED] 12.00 Xe_LP
[16:25:08] [PASSED] 12.10 Xe_LP+
[16:25:08] [PASSED] 12.55 Xe_HPG
[16:25:08] [PASSED] 12.60 Xe_HPC
[16:25:08] [PASSED] 12.70 Xe_LPG
[16:25:08] [PASSED] 12.71 Xe_LPG
[16:25:08] [PASSED] 12.74 Xe_LPG+
[16:25:08] [PASSED] 20.01 Xe2_HPG
[16:25:08] [PASSED] 20.02 Xe2_HPG
[16:25:08] [PASSED] 20.04 Xe2_LPG
[16:25:08] [PASSED] 30.00 Xe3_LPG
[16:25:08] [PASSED] 30.01 Xe3_LPG
[16:25:08] [PASSED] 30.03 Xe3_LPG
[16:25:08] [PASSED] 30.04 Xe3_LPG
[16:25:08] [PASSED] 30.05 Xe3_LPG
[16:25:08] [PASSED] 35.11 Xe3p_XPC
[16:25:08] ================ [PASSED] check_graphics_ip ================
[16:25:08] ===================== check_media_ip ======================
[16:25:08] [PASSED] 12.00 Xe_M
[16:25:08] [PASSED] 12.55 Xe_HPM
[16:25:08] [PASSED] 13.00 Xe_LPM+
[16:25:08] [PASSED] 13.01 Xe2_HPM
[16:25:08] [PASSED] 20.00 Xe2_LPM
[16:25:08] [PASSED] 30.00 Xe3_LPM
[16:25:08] [PASSED] 30.02 Xe3_LPM
[16:25:08] [PASSED] 35.00 Xe3p_LPM
[16:25:08] [PASSED] 35.03 Xe3p_HPM
[16:25:08] ================= [PASSED] check_media_ip ==================
[16:25:08] =================== check_platform_desc ===================
[16:25:08] [PASSED] 0x9A60 (TIGERLAKE)
[16:25:08] [PASSED] 0x9A68 (TIGERLAKE)
[16:25:08] [PASSED] 0x9A70 (TIGERLAKE)
[16:25:08] [PASSED] 0x9A40 (TIGERLAKE)
[16:25:08] [PASSED] 0x9A49 (TIGERLAKE)
[16:25:08] [PASSED] 0x9A59 (TIGERLAKE)
[16:25:08] [PASSED] 0x9A78 (TIGERLAKE)
[16:25:08] [PASSED] 0x9AC0 (TIGERLAKE)
[16:25:08] [PASSED] 0x9AC9 (TIGERLAKE)
[16:25:08] [PASSED] 0x9AD9 (TIGERLAKE)
[16:25:08] [PASSED] 0x9AF8 (TIGERLAKE)
[16:25:08] [PASSED] 0x4C80 (ROCKETLAKE)
[16:25:08] [PASSED] 0x4C8A (ROCKETLAKE)
[16:25:08] [PASSED] 0x4C8B (ROCKETLAKE)
[16:25:08] [PASSED] 0x4C8C (ROCKETLAKE)
[16:25:08] [PASSED] 0x4C90 (ROCKETLAKE)
[16:25:08] [PASSED] 0x4C9A (ROCKETLAKE)
[16:25:08] [PASSED] 0x4680 (ALDERLAKE_S)
[16:25:08] [PASSED] 0x4682 (ALDERLAKE_S)
[16:25:08] [PASSED] 0x4688 (ALDERLAKE_S)
[16:25:08] [PASSED] 0x468A (ALDERLAKE_S)
[16:25:08] [PASSED] 0x468B (ALDERLAKE_S)
[16:25:08] [PASSED] 0x4690 (ALDERLAKE_S)
[16:25:08] [PASSED] 0x4692 (ALDERLAKE_S)
[16:25:08] [PASSED] 0x4693 (ALDERLAKE_S)
[16:25:08] [PASSED] 0x46A0 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46A1 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46A2 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46A3 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46A6 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46A8 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46AA (ALDERLAKE_P)
[16:25:08] [PASSED] 0x462A (ALDERLAKE_P)
[16:25:08] [PASSED] 0x4626 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x4628 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[16:25:08] [PASSED] 0x46B1 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46B2 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46B3 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46C0 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46C1 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46C2 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46C3 (ALDERLAKE_P)
[16:25:08] [PASSED] 0x46D0 (ALDERLAKE_N)
[16:25:08] [PASSED] 0x46D1 (ALDERLAKE_N)
[16:25:08] [PASSED] 0x46D2 (ALDERLAKE_N)
[16:25:08] [PASSED] 0x46D3 (ALDERLAKE_N)
[16:25:08] [PASSED] 0x46D4 (ALDERLAKE_N)
[16:25:08] [PASSED] 0xA721 (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA7A1 (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA7A9 (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA7AC (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA7AD (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA720 (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA7A0 (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA7A8 (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA7AA (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA7AB (ALDERLAKE_P)
[16:25:08] [PASSED] 0xA780 (ALDERLAKE_S)
[16:25:08] [PASSED] 0xA781 (ALDERLAKE_S)
[16:25:08] [PASSED] 0xA782 (ALDERLAKE_S)
[16:25:08] [PASSED] 0xA783 (ALDERLAKE_S)
[16:25:08] [PASSED] 0xA788 (ALDERLAKE_S)
[16:25:08] [PASSED] 0xA789 (ALDERLAKE_S)
[16:25:08] [PASSED] 0xA78A (ALDERLAKE_S)
[16:25:08] [PASSED] 0xA78B (ALDERLAKE_S)
[16:25:08] [PASSED] 0x4905 (DG1)
[16:25:08] [PASSED] 0x4906 (DG1)
[16:25:08] [PASSED] 0x4907 (DG1)
[16:25:08] [PASSED] 0x4908 (DG1)
[16:25:08] [PASSED] 0x4909 (DG1)
[16:25:08] [PASSED] 0x56C0 (DG2)
[16:25:08] [PASSED] 0x56C2 (DG2)
[16:25:08] [PASSED] 0x56C1 (DG2)
[16:25:08] [PASSED] 0x7D51 (METEORLAKE)
[16:25:08] [PASSED] 0x7DD1 (METEORLAKE)
[16:25:08] [PASSED] 0x7D41 (METEORLAKE)
[16:25:08] [PASSED] 0x7D67 (METEORLAKE)
[16:25:08] [PASSED] 0xB640 (METEORLAKE)
[16:25:08] [PASSED] 0x56A0 (DG2)
[16:25:08] [PASSED] 0x56A1 (DG2)
[16:25:08] [PASSED] 0x56A2 (DG2)
[16:25:08] [PASSED] 0x56BE (DG2)
[16:25:08] [PASSED] 0x56BF (DG2)
[16:25:08] [PASSED] 0x5690 (DG2)
[16:25:08] [PASSED] 0x5691 (DG2)
[16:25:08] [PASSED] 0x5692 (DG2)
[16:25:08] [PASSED] 0x56A5 (DG2)
[16:25:08] [PASSED] 0x56A6 (DG2)
[16:25:08] [PASSED] 0x56B0 (DG2)
[16:25:08] [PASSED] 0x56B1 (DG2)
[16:25:08] [PASSED] 0x56BA (DG2)
[16:25:08] [PASSED] 0x56BB (DG2)
[16:25:08] [PASSED] 0x56BC (DG2)
[16:25:08] [PASSED] 0x56BD (DG2)
[16:25:08] [PASSED] 0x5693 (DG2)
[16:25:08] [PASSED] 0x5694 (DG2)
[16:25:08] [PASSED] 0x5695 (DG2)
[16:25:08] [PASSED] 0x56A3 (DG2)
[16:25:08] [PASSED] 0x56A4 (DG2)
[16:25:08] [PASSED] 0x56B2 (DG2)
[16:25:08] [PASSED] 0x56B3 (DG2)
[16:25:08] [PASSED] 0x5696 (DG2)
[16:25:08] [PASSED] 0x5697 (DG2)
[16:25:08] [PASSED] 0xB69 (PVC)
[16:25:08] [PASSED] 0xB6E (PVC)
[16:25:08] [PASSED] 0xBD4 (PVC)
[16:25:08] [PASSED] 0xBD5 (PVC)
[16:25:08] [PASSED] 0xBD6 (PVC)
[16:25:08] [PASSED] 0xBD7 (PVC)
[16:25:08] [PASSED] 0xBD8 (PVC)
[16:25:08] [PASSED] 0xBD9 (PVC)
[16:25:08] [PASSED] 0xBDA (PVC)
[16:25:08] [PASSED] 0xBDB (PVC)
[16:25:08] [PASSED] 0xBE0 (PVC)
[16:25:08] [PASSED] 0xBE1 (PVC)
[16:25:08] [PASSED] 0xBE5 (PVC)
[16:25:08] [PASSED] 0x7D40 (METEORLAKE)
[16:25:08] [PASSED] 0x7D45 (METEORLAKE)
[16:25:08] [PASSED] 0x7D55 (METEORLAKE)
[16:25:08] [PASSED] 0x7D60 (METEORLAKE)
[16:25:08] [PASSED] 0x7DD5 (METEORLAKE)
[16:25:08] [PASSED] 0x6420 (LUNARLAKE)
[16:25:08] [PASSED] 0x64A0 (LUNARLAKE)
[16:25:08] [PASSED] 0x64B0 (LUNARLAKE)
[16:25:08] [PASSED] 0xE202 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE209 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE20B (BATTLEMAGE)
[16:25:08] [PASSED] 0xE20C (BATTLEMAGE)
[16:25:08] [PASSED] 0xE20D (BATTLEMAGE)
[16:25:08] [PASSED] 0xE210 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE211 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE212 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE216 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE220 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE221 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE222 (BATTLEMAGE)
[16:25:08] [PASSED] 0xE223 (BATTLEMAGE)
[16:25:08] [PASSED] 0xB080 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB081 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB082 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB083 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB084 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB085 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB086 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB087 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB08F (PANTHERLAKE)
[16:25:08] [PASSED] 0xB090 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB0A0 (PANTHERLAKE)
[16:25:08] [PASSED] 0xB0B0 (PANTHERLAKE)
[16:25:08] [PASSED] 0xD740 (NOVALAKE_S)
[16:25:08] [PASSED] 0xD741 (NOVALAKE_S)
[16:25:08] [PASSED] 0xD742 (NOVALAKE_S)
[16:25:08] [PASSED] 0xD743 (NOVALAKE_S)
[16:25:08] [PASSED] 0xD744 (NOVALAKE_S)
[16:25:08] [PASSED] 0xD745 (NOVALAKE_S)
[16:25:08] [PASSED] 0x674C (CRESCENTISLAND)
[16:25:08] [PASSED] 0xFD80 (PANTHERLAKE)
[16:25:08] [PASSED] 0xFD81 (PANTHERLAKE)
[16:25:08] =============== [PASSED] check_platform_desc ===============
[16:25:08] ===================== [PASSED] xe_pci ======================
[16:25:08] =================== xe_rtp (2 subtests) ====================
[16:25:08] =============== xe_rtp_process_to_sr_tests ================
[16:25:08] [PASSED] coalesce-same-reg
[16:25:08] [PASSED] no-match-no-add
[16:25:08] [PASSED] match-or
[16:25:08] [PASSED] match-or-xfail
[16:25:08] [PASSED] no-match-no-add-multiple-rules
[16:25:08] [PASSED] two-regs-two-entries
[16:25:08] [PASSED] clr-one-set-other
[16:25:08] [PASSED] set-field
[16:25:08] [PASSED] conflict-duplicate
[16:25:08] [PASSED] conflict-not-disjoint
[16:25:08] [PASSED] conflict-reg-type
[16:25:08] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:25:08] ================== xe_rtp_process_tests ===================
[16:25:08] [PASSED] active1
[16:25:08] [PASSED] active2
[16:25:08] [PASSED] active-inactive
[16:25:08] [PASSED] inactive-active
[16:25:08] [PASSED] inactive-1st_or_active-inactive
[16:25:08] [PASSED] inactive-2nd_or_active-inactive
[16:25:08] [PASSED] inactive-last_or_active-inactive
[16:25:08] [PASSED] inactive-no_or_active-inactive
[16:25:08] ============== [PASSED] xe_rtp_process_tests ===============
[16:25:08] ===================== [PASSED] xe_rtp ======================
[16:25:08] ==================== xe_wa (1 subtest) =====================
[16:25:08] ======================== xe_wa_gt =========================
[16:25:08] [PASSED] TIGERLAKE B0
[16:25:08] [PASSED] DG1 A0
[16:25:08] [PASSED] DG1 B0
[16:25:08] [PASSED] ALDERLAKE_S A0
[16:25:08] [PASSED] ALDERLAKE_S B0
[16:25:08] [PASSED] ALDERLAKE_S C0
[16:25:08] [PASSED] ALDERLAKE_S D0
[16:25:08] [PASSED] ALDERLAKE_P A0
[16:25:08] [PASSED] ALDERLAKE_P B0
[16:25:08] [PASSED] ALDERLAKE_P C0
[16:25:08] [PASSED] ALDERLAKE_S RPLS D0
[16:25:08] [PASSED] ALDERLAKE_P RPLU E0
[16:25:08] [PASSED] DG2 G10 C0
[16:25:08] [PASSED] DG2 G11 B1
[16:25:08] [PASSED] DG2 G12 A1
[16:25:08] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:25:08] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[16:25:08] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[16:25:08] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[16:25:08] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[16:25:08] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[16:25:08] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[16:25:08] ==================== [PASSED] xe_wa_gt =====================
[16:25:08] ====================== [PASSED] xe_wa ======================
[16:25:08] ============================================================
[16:25:08] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[16:25:08] Elapsed time: 35.798s total, 4.190s configuring, 31.139s building, 0.456s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:25:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:25:10] 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
[16:25:35] Starting KUnit Kernel (1/1)...
[16:25:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:25:35] ============ drm_test_pick_cmdline (2 subtests) ============
[16:25:35] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[16:25:35] =============== drm_test_pick_cmdline_named ===============
[16:25:35] [PASSED] NTSC
[16:25:35] [PASSED] NTSC-J
[16:25:35] [PASSED] PAL
[16:25:35] [PASSED] PAL-M
[16:25:35] =========== [PASSED] drm_test_pick_cmdline_named ===========
[16:25:35] ============== [PASSED] drm_test_pick_cmdline ==============
[16:25:35] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:25:35] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:25:35] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:25:35] =========== drm_validate_clone_mode (2 subtests) ===========
[16:25:35] ============== drm_test_check_in_clone_mode ===============
[16:25:35] [PASSED] in_clone_mode
[16:25:35] [PASSED] not_in_clone_mode
[16:25:35] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:25:35] =============== drm_test_check_valid_clones ===============
[16:25:35] [PASSED] not_in_clone_mode
[16:25:35] [PASSED] valid_clone
[16:25:35] [PASSED] invalid_clone
[16:25:36] =========== [PASSED] drm_test_check_valid_clones ===========
[16:25:36] ============= [PASSED] drm_validate_clone_mode =============
[16:25:36] ============= drm_validate_modeset (1 subtest) =============
[16:25:36] [PASSED] drm_test_check_connector_changed_modeset
[16:25:36] ============== [PASSED] drm_validate_modeset ===============
[16:25:36] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:25:36] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:25:36] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:25:36] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:25:36] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:25:36] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:25:36] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:25:36] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:25:36] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:25:36] ============== drm_bridge_alloc (2 subtests) ===============
[16:25:36] [PASSED] drm_test_drm_bridge_alloc_basic
[16:25:36] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:25:36] ================ [PASSED] drm_bridge_alloc =================
[16:25:36] ================== drm_buddy (8 subtests) ==================
[16:25:36] [PASSED] drm_test_buddy_alloc_limit
[16:25:36] [PASSED] drm_test_buddy_alloc_optimistic
[16:25:36] [PASSED] drm_test_buddy_alloc_pessimistic
[16:25:36] [PASSED] drm_test_buddy_alloc_pathological
[16:25:36] [PASSED] drm_test_buddy_alloc_contiguous
[16:25:36] [PASSED] drm_test_buddy_alloc_clear
[16:25:36] [PASSED] drm_test_buddy_alloc_range_bias
[16:25:36] [PASSED] drm_test_buddy_fragmentation_performance
[16:25:36] ==================== [PASSED] drm_buddy ====================
[16:25:36] ============= drm_cmdline_parser (40 subtests) =============
[16:25:36] [PASSED] drm_test_cmdline_force_d_only
[16:25:36] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:25:36] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:25:36] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:25:36] [PASSED] drm_test_cmdline_force_e_only
[16:25:36] [PASSED] drm_test_cmdline_res
[16:25:36] [PASSED] drm_test_cmdline_res_vesa
[16:25:36] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:25:36] [PASSED] drm_test_cmdline_res_rblank
[16:25:36] [PASSED] drm_test_cmdline_res_bpp
[16:25:36] [PASSED] drm_test_cmdline_res_refresh
[16:25:36] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:25:36] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:25:36] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:25:36] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:25:36] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:25:36] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:25:36] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:25:36] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:25:36] [PASSED] drm_test_cmdline_res_margins_force_on
[16:25:36] [PASSED] drm_test_cmdline_res_vesa_margins
[16:25:36] [PASSED] drm_test_cmdline_name
[16:25:36] [PASSED] drm_test_cmdline_name_bpp
[16:25:36] [PASSED] drm_test_cmdline_name_option
[16:25:36] [PASSED] drm_test_cmdline_name_bpp_option
[16:25:36] [PASSED] drm_test_cmdline_rotate_0
[16:25:36] [PASSED] drm_test_cmdline_rotate_90
[16:25:36] [PASSED] drm_test_cmdline_rotate_180
[16:25:36] [PASSED] drm_test_cmdline_rotate_270
[16:25:36] [PASSED] drm_test_cmdline_hmirror
[16:25:36] [PASSED] drm_test_cmdline_vmirror
[16:25:36] [PASSED] drm_test_cmdline_margin_options
[16:25:36] [PASSED] drm_test_cmdline_multiple_options
[16:25:36] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:25:36] [PASSED] drm_test_cmdline_extra_and_option
[16:25:36] [PASSED] drm_test_cmdline_freestanding_options
[16:25:36] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:25:36] [PASSED] drm_test_cmdline_panel_orientation
[16:25:36] ================ drm_test_cmdline_invalid =================
[16:25:36] [PASSED] margin_only
[16:25:36] [PASSED] interlace_only
[16:25:36] [PASSED] res_missing_x
[16:25:36] [PASSED] res_missing_y
[16:25:36] [PASSED] res_bad_y
[16:25:36] [PASSED] res_missing_y_bpp
[16:25:36] [PASSED] res_bad_bpp
[16:25:36] [PASSED] res_bad_refresh
[16:25:36] [PASSED] res_bpp_refresh_force_on_off
[16:25:36] [PASSED] res_invalid_mode
[16:25:36] [PASSED] res_bpp_wrong_place_mode
[16:25:36] [PASSED] name_bpp_refresh
[16:25:36] [PASSED] name_refresh
[16:25:36] [PASSED] name_refresh_wrong_mode
[16:25:36] [PASSED] name_refresh_invalid_mode
[16:25:36] [PASSED] rotate_multiple
[16:25:36] [PASSED] rotate_invalid_val
[16:25:36] [PASSED] rotate_truncated
[16:25:36] [PASSED] invalid_option
[16:25:36] [PASSED] invalid_tv_option
[16:25:36] [PASSED] truncated_tv_option
[16:25:36] ============ [PASSED] drm_test_cmdline_invalid =============
[16:25:36] =============== drm_test_cmdline_tv_options ===============
[16:25:36] [PASSED] NTSC
[16:25:36] [PASSED] NTSC_443
[16:25:36] [PASSED] NTSC_J
[16:25:36] [PASSED] PAL
[16:25:36] [PASSED] PAL_M
[16:25:36] [PASSED] PAL_N
[16:25:36] [PASSED] SECAM
[16:25:36] [PASSED] MONO_525
[16:25:36] [PASSED] MONO_625
[16:25:36] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:25:36] =============== [PASSED] drm_cmdline_parser ================
[16:25:36] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:25:36] [PASSED] drm_test_connector_hdmi_init_valid
[16:25:36] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:25:36] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:25:36] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:25:36] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:25:36] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:25:36] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:25:36] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:25:36] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:25:36] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:25:36] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:25:36] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:25:36] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:25:36] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:25:36] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:25:36] [PASSED] drm_test_connector_hdmi_init_null_product
[16:25:36] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:25:36] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:25:36] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:25:36] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:25:36] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:25:36] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:25:36] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:25:36] ========= drm_test_connector_hdmi_init_type_valid =========
[16:25:36] [PASSED] HDMI-A
[16:25:36] [PASSED] HDMI-B
[16:25:36] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:25:36] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:25:36] [PASSED] Unknown
[16:25:36] [PASSED] VGA
[16:25:36] [PASSED] DVI-I
[16:25:36] [PASSED] DVI-D
[16:25:36] [PASSED] DVI-A
[16:25:36] [PASSED] Composite
[16:25:36] [PASSED] SVIDEO
[16:25:36] [PASSED] LVDS
[16:25:36] [PASSED] Component
[16:25:36] [PASSED] DIN
[16:25:36] [PASSED] DP
[16:25:36] [PASSED] TV
[16:25:36] [PASSED] eDP
[16:25:36] [PASSED] Virtual
[16:25:36] [PASSED] DSI
[16:25:36] [PASSED] DPI
[16:25:36] [PASSED] Writeback
[16:25:36] [PASSED] SPI
[16:25:36] [PASSED] USB
[16:25:36] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:25:36] ============ [PASSED] drmm_connector_hdmi_init =============
[16:25:36] ============= drmm_connector_init (3 subtests) =============
[16:25:36] [PASSED] drm_test_drmm_connector_init
[16:25:36] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:25:36] ========= drm_test_drmm_connector_init_type_valid =========
[16:25:36] [PASSED] Unknown
[16:25:36] [PASSED] VGA
[16:25:36] [PASSED] DVI-I
[16:25:36] [PASSED] DVI-D
[16:25:36] [PASSED] DVI-A
[16:25:36] [PASSED] Composite
[16:25:36] [PASSED] SVIDEO
[16:25:36] [PASSED] LVDS
[16:25:36] [PASSED] Component
[16:25:36] [PASSED] DIN
[16:25:36] [PASSED] DP
[16:25:36] [PASSED] HDMI-A
[16:25:36] [PASSED] HDMI-B
[16:25:36] [PASSED] TV
[16:25:36] [PASSED] eDP
[16:25:36] [PASSED] Virtual
[16:25:36] [PASSED] DSI
[16:25:36] [PASSED] DPI
[16:25:36] [PASSED] Writeback
[16:25:36] [PASSED] SPI
[16:25:36] [PASSED] USB
[16:25:36] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:25:36] =============== [PASSED] drmm_connector_init ===============
[16:25:36] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_init
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:25:36] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:25:36] [PASSED] Unknown
[16:25:36] [PASSED] VGA
[16:25:36] [PASSED] DVI-I
[16:25:36] [PASSED] DVI-D
[16:25:36] [PASSED] DVI-A
[16:25:36] [PASSED] Composite
[16:25:36] [PASSED] SVIDEO
[16:25:36] [PASSED] LVDS
[16:25:36] [PASSED] Component
[16:25:36] [PASSED] DIN
[16:25:36] [PASSED] DP
[16:25:36] [PASSED] HDMI-A
[16:25:36] [PASSED] HDMI-B
[16:25:36] [PASSED] TV
[16:25:36] [PASSED] eDP
[16:25:36] [PASSED] Virtual
[16:25:36] [PASSED] DSI
[16:25:36] [PASSED] DPI
[16:25:36] [PASSED] Writeback
[16:25:36] [PASSED] SPI
[16:25:36] [PASSED] USB
[16:25:36] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:25:36] ======== drm_test_drm_connector_dynamic_init_name =========
[16:25:36] [PASSED] Unknown
[16:25:36] [PASSED] VGA
[16:25:36] [PASSED] DVI-I
[16:25:36] [PASSED] DVI-D
[16:25:36] [PASSED] DVI-A
[16:25:36] [PASSED] Composite
[16:25:36] [PASSED] SVIDEO
[16:25:36] [PASSED] LVDS
[16:25:36] [PASSED] Component
[16:25:36] [PASSED] DIN
[16:25:36] [PASSED] DP
[16:25:36] [PASSED] HDMI-A
[16:25:36] [PASSED] HDMI-B
[16:25:36] [PASSED] TV
[16:25:36] [PASSED] eDP
[16:25:36] [PASSED] Virtual
[16:25:36] [PASSED] DSI
[16:25:36] [PASSED] DPI
[16:25:36] [PASSED] Writeback
[16:25:36] [PASSED] SPI
[16:25:36] [PASSED] USB
[16:25:36] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:25:36] =========== [PASSED] drm_connector_dynamic_init ============
[16:25:36] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:25:36] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:25:36] ======= drm_connector_dynamic_register (7 subtests) ========
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:25:36] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:25:36] ========= [PASSED] drm_connector_dynamic_register ==========
[16:25:36] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:25:36] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:25:36] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:25:36] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:25:36] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:25:36] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:25:36] [PASSED] NTSC
[16:25:36] [PASSED] NTSC-443
[16:25:36] [PASSED] NTSC-J
[16:25:36] [PASSED] PAL
[16:25:36] [PASSED] PAL-M
[16:25:36] [PASSED] PAL-N
[16:25:36] [PASSED] SECAM
[16:25:36] [PASSED] Mono
[16:25:36] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:25:36] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:25:36] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:25:36] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:25:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:25:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:25:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:25:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:25:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:25:36] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:25:36] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:25:36] [PASSED] VIC 96
[16:25:36] [PASSED] VIC 97
[16:25:36] [PASSED] VIC 101
[16:25:36] [PASSED] VIC 102
[16:25:36] [PASSED] VIC 106
[16:25:36] [PASSED] VIC 107
[16:25:36] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:25:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:25:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:25:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:25:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:25:36] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:25:36] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:25:36] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:25:36] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:25:36] [PASSED] Automatic
[16:25:36] [PASSED] Full
[16:25:36] [PASSED] Limited 16:235
[16:25:36] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:25:36] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:25:36] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:25:36] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:25:36] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:25:36] [PASSED] RGB
[16:25:36] [PASSED] YUV 4:2:0
[16:25:36] [PASSED] YUV 4:2:2
[16:25:36] [PASSED] YUV 4:4:4
[16:25:36] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:25:36] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:25:36] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:25:36] ============= drm_damage_helper (21 subtests) ==============
[16:25:36] [PASSED] drm_test_damage_iter_no_damage
[16:25:36] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:25:36] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:25:36] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:25:36] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:25:36] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:25:36] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:25:36] [PASSED] drm_test_damage_iter_simple_damage
[16:25:36] [PASSED] drm_test_damage_iter_single_damage
[16:25:36] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:25:36] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:25:36] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:25:36] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:25:36] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:25:36] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:25:36] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:25:36] [PASSED] drm_test_damage_iter_damage
[16:25:36] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:25:36] [PASSED] drm_test_damage_iter_damage_one_outside
[16:25:36] [PASSED] drm_test_damage_iter_damage_src_moved
[16:25:36] [PASSED] drm_test_damage_iter_damage_not_visible
[16:25:36] ================ [PASSED] drm_damage_helper ================
[16:25:36] ============== drm_dp_mst_helper (3 subtests) ==============
[16:25:36] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:25:36] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:25:36] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:25:36] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:25:36] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:25:36] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:25:36] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:25:36] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:25:36] [PASSED] Link rate 2000000 lane count 4
[16:25:36] [PASSED] Link rate 2000000 lane count 2
[16:25:36] [PASSED] Link rate 2000000 lane count 1
[16:25:36] [PASSED] Link rate 1350000 lane count 4
[16:25:36] [PASSED] Link rate 1350000 lane count 2
[16:25:36] [PASSED] Link rate 1350000 lane count 1
[16:25:36] [PASSED] Link rate 1000000 lane count 4
[16:25:36] [PASSED] Link rate 1000000 lane count 2
[16:25:36] [PASSED] Link rate 1000000 lane count 1
[16:25:36] [PASSED] Link rate 810000 lane count 4
[16:25:36] [PASSED] Link rate 810000 lane count 2
[16:25:36] [PASSED] Link rate 810000 lane count 1
[16:25:36] [PASSED] Link rate 540000 lane count 4
[16:25:36] [PASSED] Link rate 540000 lane count 2
[16:25:36] [PASSED] Link rate 540000 lane count 1
[16:25:36] [PASSED] Link rate 270000 lane count 4
[16:25:36] [PASSED] Link rate 270000 lane count 2
[16:25:36] [PASSED] Link rate 270000 lane count 1
[16:25:36] [PASSED] Link rate 162000 lane count 4
[16:25:36] [PASSED] Link rate 162000 lane count 2
[16:25:36] [PASSED] Link rate 162000 lane count 1
[16:25:36] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:25:36] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:25:36] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:25:36] [PASSED] DP_POWER_UP_PHY with port number
[16:25:36] [PASSED] DP_POWER_DOWN_PHY with port number
[16:25:36] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:25:36] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:25:36] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:25:36] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:25:36] [PASSED] DP_QUERY_PAYLOAD with port number
[16:25:36] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:25:36] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:25:36] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:25:36] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:25:36] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:25:36] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:25:36] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:25:36] [PASSED] DP_REMOTE_I2C_READ with port number
[16:25:36] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:25:36] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:25:36] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:25:36] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:25:36] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:25:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:25:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:25:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:25:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:25:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:25:36] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:25:36] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:25:36] ================ [PASSED] drm_dp_mst_helper ================
[16:25:36] ================== drm_exec (7 subtests) ===================
[16:25:36] [PASSED] sanitycheck
[16:25:36] [PASSED] test_lock
[16:25:36] [PASSED] test_lock_unlock
[16:25:36] [PASSED] test_duplicates
[16:25:36] [PASSED] test_prepare
[16:25:36] [PASSED] test_prepare_array
[16:25:36] [PASSED] test_multiple_loops
[16:25:36] ==================== [PASSED] drm_exec =====================
[16:25:36] =========== drm_format_helper_test (17 subtests) ===========
[16:25:36] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:25:36] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:25:36] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:25:36] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:25:36] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:25:36] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:25:36] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:25:36] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:25:36] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:25:36] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:25:36] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:25:36] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:25:36] ==================== drm_test_fb_swab =====================
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ================ [PASSED] drm_test_fb_swab =================
[16:25:36] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:25:36] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:25:36] [PASSED] single_pixel_source_buffer
[16:25:36] [PASSED] single_pixel_clip_rectangle
[16:25:36] [PASSED] well_known_colors
[16:25:36] [PASSED] destination_pitch
[16:25:36] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:25:36] ================= drm_test_fb_clip_offset =================
[16:25:36] [PASSED] pass through
[16:25:36] [PASSED] horizontal offset
[16:25:36] [PASSED] vertical offset
[16:25:36] [PASSED] horizontal and vertical offset
[16:25:36] [PASSED] horizontal offset (custom pitch)
[16:25:36] [PASSED] vertical offset (custom pitch)
[16:25:36] [PASSED] horizontal and vertical offset (custom pitch)
[16:25:36] ============= [PASSED] drm_test_fb_clip_offset =============
[16:25:36] =================== drm_test_fb_memcpy ====================
[16:25:36] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:25:36] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:25:36] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:25:36] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:25:36] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:25:36] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:25:36] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:25:36] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:25:36] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:25:36] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:25:36] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:25:36] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:25:36] =============== [PASSED] drm_test_fb_memcpy ================
[16:25:36] ============= [PASSED] drm_format_helper_test ==============
[16:25:36] ================= drm_format (18 subtests) =================
[16:25:36] [PASSED] drm_test_format_block_width_invalid
[16:25:36] [PASSED] drm_test_format_block_width_one_plane
[16:25:36] [PASSED] drm_test_format_block_width_two_plane
[16:25:36] [PASSED] drm_test_format_block_width_three_plane
[16:25:36] [PASSED] drm_test_format_block_width_tiled
[16:25:36] [PASSED] drm_test_format_block_height_invalid
[16:25:36] [PASSED] drm_test_format_block_height_one_plane
[16:25:36] [PASSED] drm_test_format_block_height_two_plane
[16:25:36] [PASSED] drm_test_format_block_height_three_plane
[16:25:36] [PASSED] drm_test_format_block_height_tiled
[16:25:36] [PASSED] drm_test_format_min_pitch_invalid
[16:25:36] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:25:36] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:25:36] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:25:36] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:25:36] [PASSED] drm_test_format_min_pitch_two_plane
[16:25:36] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:25:36] [PASSED] drm_test_format_min_pitch_tiled
[16:25:36] =================== [PASSED] drm_format ====================
[16:25:36] ============== drm_framebuffer (10 subtests) ===============
[16:25:36] ========== drm_test_framebuffer_check_src_coords ==========
[16:25:36] [PASSED] Success: source fits into fb
[16:25:36] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:25:36] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:25:36] [PASSED] Fail: overflowing fb with source width
[16:25:36] [PASSED] Fail: overflowing fb with source height
[16:25:36] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:25:36] [PASSED] drm_test_framebuffer_cleanup
[16:25:36] =============== drm_test_framebuffer_create ===============
[16:25:36] [PASSED] ABGR8888 normal sizes
[16:25:36] [PASSED] ABGR8888 max sizes
[16:25:36] [PASSED] ABGR8888 pitch greater than min required
[16:25:36] [PASSED] ABGR8888 pitch less than min required
[16:25:36] [PASSED] ABGR8888 Invalid width
[16:25:36] [PASSED] ABGR8888 Invalid buffer handle
[16:25:36] [PASSED] No pixel format
[16:25:36] [PASSED] ABGR8888 Width 0
[16:25:36] [PASSED] ABGR8888 Height 0
[16:25:36] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:25:36] [PASSED] ABGR8888 Large buffer offset
[16:25:36] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:25:36] [PASSED] ABGR8888 Invalid flag
[16:25:36] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:25:36] [PASSED] ABGR8888 Valid buffer modifier
[16:25:36] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:25:36] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:25:36] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:25:36] [PASSED] NV12 Normal sizes
[16:25:36] [PASSED] NV12 Max sizes
[16:25:36] [PASSED] NV12 Invalid pitch
[16:25:36] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:25:36] [PASSED] NV12 different modifier per-plane
[16:25:36] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:25:36] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:25:36] [PASSED] NV12 Modifier for inexistent plane
[16:25:36] [PASSED] NV12 Handle for inexistent plane
[16:25:36] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:25:36] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:25:36] [PASSED] YVU420 Normal sizes
[16:25:36] [PASSED] YVU420 Max sizes
[16:25:36] [PASSED] YVU420 Invalid pitch
[16:25:36] [PASSED] YVU420 Different pitches
[16:25:36] [PASSED] YVU420 Different buffer offsets/pitches
[16:25:36] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:25:36] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:25:36] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:25:36] [PASSED] YVU420 Valid modifier
[16:25:36] [PASSED] YVU420 Different modifiers per plane
[16:25:36] [PASSED] YVU420 Modifier for inexistent plane
[16:25:36] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:25:36] [PASSED] X0L2 Normal sizes
[16:25:36] [PASSED] X0L2 Max sizes
[16:25:36] [PASSED] X0L2 Invalid pitch
[16:25:36] [PASSED] X0L2 Pitch greater than minimum required
[16:25:36] [PASSED] X0L2 Handle for inexistent plane
[16:25:36] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:25:36] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:25:36] [PASSED] X0L2 Valid modifier
[16:25:36] [PASSED] X0L2 Modifier for inexistent plane
[16:25:36] =========== [PASSED] drm_test_framebuffer_create ===========
[16:25:36] [PASSED] drm_test_framebuffer_free
[16:25:36] [PASSED] drm_test_framebuffer_init
[16:25:36] [PASSED] drm_test_framebuffer_init_bad_format
[16:25:36] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:25:36] [PASSED] drm_test_framebuffer_lookup
[16:25:36] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:25:36] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:25:36] ================= [PASSED] drm_framebuffer =================
[16:25:36] ================ drm_gem_shmem (8 subtests) ================
[16:25:36] [PASSED] drm_gem_shmem_test_obj_create
[16:25:36] [PASSED] drm_gem_shmem_test_obj_create_private
[16:25:36] [PASSED] drm_gem_shmem_test_pin_pages
[16:25:36] [PASSED] drm_gem_shmem_test_vmap
[16:25:36] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:25:36] [PASSED] drm_gem_shmem_test_get_sg_table
[16:25:36] [PASSED] drm_gem_shmem_test_madvise
[16:25:36] [PASSED] drm_gem_shmem_test_purge
[16:25:36] ================== [PASSED] drm_gem_shmem ==================
[16:25:36] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:25:36] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[16:25:36] [PASSED] Automatic
[16:25:36] [PASSED] Full
[16:25:36] [PASSED] Limited 16:235
[16:25:36] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:25:36] [PASSED] drm_test_check_disable_connector
[16:25:36] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:25:36] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:25:36] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:25:36] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:25:36] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:25:36] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:25:36] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:25:36] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:25:36] [PASSED] drm_test_check_output_bpc_dvi
[16:25:36] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:25:36] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:25:36] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:25:36] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:25:36] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:25:36] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:25:36] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:25:36] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:25:36] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:25:36] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:25:36] [PASSED] drm_test_check_broadcast_rgb_value
[16:25:36] [PASSED] drm_test_check_bpc_8_value
[16:25:36] [PASSED] drm_test_check_bpc_10_value
[16:25:36] [PASSED] drm_test_check_bpc_12_value
[16:25:36] [PASSED] drm_test_check_format_value
[16:25:36] [PASSED] drm_test_check_tmds_char_value
[16:25:36] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:25:36] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:25:36] [PASSED] drm_test_check_mode_valid
[16:25:36] [PASSED] drm_test_check_mode_valid_reject
[16:25:36] [PASSED] drm_test_check_mode_valid_reject_rate
[16:25:36] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:25:36] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:25:36] ================= drm_managed (2 subtests) =================
[16:25:36] [PASSED] drm_test_managed_release_action
[16:25:36] [PASSED] drm_test_managed_run_action
[16:25:36] =================== [PASSED] drm_managed ===================
[16:25:36] =================== drm_mm (6 subtests) ====================
[16:25:36] [PASSED] drm_test_mm_init
[16:25:36] [PASSED] drm_test_mm_debug
[16:25:36] [PASSED] drm_test_mm_align32
[16:25:36] [PASSED] drm_test_mm_align64
[16:25:36] [PASSED] drm_test_mm_lowest
[16:25:36] [PASSED] drm_test_mm_highest
[16:25:36] ===================== [PASSED] drm_mm ======================
[16:25:36] ============= drm_modes_analog_tv (5 subtests) =============
[16:25:36] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:25:36] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:25:36] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:25:36] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:25:36] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:25:36] =============== [PASSED] drm_modes_analog_tv ===============
[16:25:36] ============== drm_plane_helper (2 subtests) ===============
[16:25:36] =============== drm_test_check_plane_state ================
[16:25:36] [PASSED] clipping_simple
[16:25:36] [PASSED] clipping_rotate_reflect
[16:25:36] [PASSED] positioning_simple
[16:25:36] [PASSED] upscaling
[16:25:36] [PASSED] downscaling
[16:25:36] [PASSED] rounding1
[16:25:36] [PASSED] rounding2
[16:25:36] [PASSED] rounding3
[16:25:36] [PASSED] rounding4
[16:25:36] =========== [PASSED] drm_test_check_plane_state ============
[16:25:36] =========== drm_test_check_invalid_plane_state ============
[16:25:36] [PASSED] positioning_invalid
[16:25:36] [PASSED] upscaling_invalid
[16:25:36] [PASSED] downscaling_invalid
[16:25:36] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:25:36] ================ [PASSED] drm_plane_helper =================
[16:25:36] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:25:36] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:25:36] [PASSED] None
[16:25:36] [PASSED] PAL
[16:25:36] [PASSED] NTSC
[16:25:36] [PASSED] Both, NTSC Default
[16:25:36] [PASSED] Both, PAL Default
[16:25:36] [PASSED] Both, NTSC Default, with PAL on command-line
[16:25:36] [PASSED] Both, PAL Default, with NTSC on command-line
[16:25:36] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:25:36] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:25:36] ================== drm_rect (9 subtests) ===================
[16:25:36] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:25:36] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:25:36] [PASSED] drm_test_rect_clip_scaled_clipped
[16:25:36] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:25:36] ================= drm_test_rect_intersect =================
[16:25:36] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:25:36] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:25:36] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:25:36] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:25:36] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:25:36] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:25:36] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:25:36] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:25:36] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:25:36] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:25:36] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:25:36] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:25:36] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:25:36] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:25:36] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:25:36] ============= [PASSED] drm_test_rect_intersect =============
[16:25:36] ================ drm_test_rect_calc_hscale ================
[16:25:36] [PASSED] normal use
[16:25:36] [PASSED] out of max range
[16:25:36] [PASSED] out of min range
[16:25:36] [PASSED] zero dst
[16:25:36] [PASSED] negative src
[16:25:36] [PASSED] negative dst
[16:25:36] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:25:36] ================ drm_test_rect_calc_vscale ================
[16:25:36] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[16:25:36] [PASSED] out of max range
[16:25:36] [PASSED] out of min range
[16:25:36] [PASSED] zero dst
[16:25:36] [PASSED] negative src
[16:25:36] [PASSED] negative dst
[16:25:36] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:25:36] ================== drm_test_rect_rotate ===================
[16:25:36] [PASSED] reflect-x
[16:25:36] [PASSED] reflect-y
[16:25:36] [PASSED] rotate-0
[16:25:36] [PASSED] rotate-90
[16:25:36] [PASSED] rotate-180
[16:25:36] [PASSED] rotate-270
[16:25:36] ============== [PASSED] drm_test_rect_rotate ===============
[16:25:36] ================ drm_test_rect_rotate_inv =================
[16:25:36] [PASSED] reflect-x
[16:25:36] [PASSED] reflect-y
[16:25:36] [PASSED] rotate-0
[16:25:36] [PASSED] rotate-90
[16:25:36] [PASSED] rotate-180
[16:25:36] [PASSED] rotate-270
[16:25:36] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:25:36] ==================== [PASSED] drm_rect =====================
[16:25:36] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:25:36] ============ drm_test_sysfb_build_fourcc_list =============
[16:25:36] [PASSED] no native formats
[16:25:36] [PASSED] XRGB8888 as native format
[16:25:36] [PASSED] remove duplicates
[16:25:36] [PASSED] convert alpha formats
[16:25:36] [PASSED] random formats
[16:25:36] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:25:36] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:25:36] ================== drm_fixp (2 subtests) ===================
[16:25:36] [PASSED] drm_test_int2fixp
[16:25:36] [PASSED] drm_test_sm2fixp
[16:25:36] ==================== [PASSED] drm_fixp =====================
[16:25:36] ============================================================
[16:25:36] Testing complete. Ran 624 tests: passed: 624
[16:25:36] Elapsed time: 27.616s total, 1.745s configuring, 25.405s building, 0.425s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:25:36] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:25:38] 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
[16:25:47] Starting KUnit Kernel (1/1)...
[16:25:47] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:25:47] ================= ttm_device (5 subtests) ==================
[16:25:47] [PASSED] ttm_device_init_basic
[16:25:47] [PASSED] ttm_device_init_multiple
[16:25:47] [PASSED] ttm_device_fini_basic
[16:25:47] [PASSED] ttm_device_init_no_vma_man
[16:25:47] ================== ttm_device_init_pools ==================
[16:25:47] [PASSED] No DMA allocations, no DMA32 required
[16:25:47] [PASSED] DMA allocations, DMA32 required
[16:25:47] [PASSED] No DMA allocations, DMA32 required
[16:25:47] [PASSED] DMA allocations, no DMA32 required
[16:25:47] ============== [PASSED] ttm_device_init_pools ==============
[16:25:47] =================== [PASSED] ttm_device ====================
[16:25:47] ================== ttm_pool (8 subtests) ===================
[16:25:47] ================== ttm_pool_alloc_basic ===================
[16:25:47] [PASSED] One page
[16:25:47] [PASSED] More than one page
[16:25:47] [PASSED] Above the allocation limit
[16:25:47] [PASSED] One page, with coherent DMA mappings enabled
[16:25:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:25:47] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:25:47] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:25:47] [PASSED] One page
[16:25:47] [PASSED] More than one page
[16:25:47] [PASSED] Above the allocation limit
[16:25:47] [PASSED] One page, with coherent DMA mappings enabled
[16:25:47] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:25:47] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:25:47] [PASSED] ttm_pool_alloc_order_caching_match
[16:25:47] [PASSED] ttm_pool_alloc_caching_mismatch
[16:25:47] [PASSED] ttm_pool_alloc_order_mismatch
[16:25:47] [PASSED] ttm_pool_free_dma_alloc
[16:25:47] [PASSED] ttm_pool_free_no_dma_alloc
[16:25:47] [PASSED] ttm_pool_fini_basic
[16:25:47] ==================== [PASSED] ttm_pool =====================
[16:25:47] ================ ttm_resource (8 subtests) =================
[16:25:47] ================= ttm_resource_init_basic =================
[16:25:47] [PASSED] Init resource in TTM_PL_SYSTEM
[16:25:47] [PASSED] Init resource in TTM_PL_VRAM
[16:25:47] [PASSED] Init resource in a private placement
[16:25:47] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:25:47] ============= [PASSED] ttm_resource_init_basic =============
[16:25:47] [PASSED] ttm_resource_init_pinned
[16:25:47] [PASSED] ttm_resource_fini_basic
[16:25:47] [PASSED] ttm_resource_manager_init_basic
[16:25:47] [PASSED] ttm_resource_manager_usage_basic
[16:25:47] [PASSED] ttm_resource_manager_set_used_basic
[16:25:47] [PASSED] ttm_sys_man_alloc_basic
[16:25:47] [PASSED] ttm_sys_man_free_basic
[16:25:47] ================== [PASSED] ttm_resource ===================
[16:25:47] =================== ttm_tt (15 subtests) ===================
[16:25:47] ==================== ttm_tt_init_basic ====================
[16:25:47] [PASSED] Page-aligned size
[16:25:47] [PASSED] Extra pages requested
[16:25:47] ================ [PASSED] ttm_tt_init_basic ================
[16:25:47] [PASSED] ttm_tt_init_misaligned
[16:25:47] [PASSED] ttm_tt_fini_basic
[16:25:47] [PASSED] ttm_tt_fini_sg
[16:25:47] [PASSED] ttm_tt_fini_shmem
[16:25:47] [PASSED] ttm_tt_create_basic
[16:25:47] [PASSED] ttm_tt_create_invalid_bo_type
[16:25:47] [PASSED] ttm_tt_create_ttm_exists
[16:25:47] [PASSED] ttm_tt_create_failed
[16:25:47] [PASSED] ttm_tt_destroy_basic
[16:25:47] [PASSED] ttm_tt_populate_null_ttm
[16:25:47] [PASSED] ttm_tt_populate_populated_ttm
[16:25:47] [PASSED] ttm_tt_unpopulate_basic
[16:25:47] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:25:47] [PASSED] ttm_tt_swapin_basic
[16:25:47] ===================== [PASSED] ttm_tt ======================
[16:25:47] =================== ttm_bo (14 subtests) ===================
[16:25:47] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:25:47] [PASSED] Cannot be interrupted and sleeps
[16:25:47] [PASSED] Cannot be interrupted, locks straight away
[16:25:47] [PASSED] Can be interrupted, sleeps
[16:25:47] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:25:47] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:25:47] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:25:47] [PASSED] ttm_bo_reserve_double_resv
[16:25:47] [PASSED] ttm_bo_reserve_interrupted
[16:25:47] [PASSED] ttm_bo_reserve_deadlock
[16:25:47] [PASSED] ttm_bo_unreserve_basic
[16:25:47] [PASSED] ttm_bo_unreserve_pinned
[16:25:47] [PASSED] ttm_bo_unreserve_bulk
[16:25:47] [PASSED] ttm_bo_fini_basic
[16:25:47] [PASSED] ttm_bo_fini_shared_resv
[16:25:47] [PASSED] ttm_bo_pin_basic
[16:25:47] [PASSED] ttm_bo_pin_unpin_resource
[16:25:47] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:25:47] ===================== [PASSED] ttm_bo ======================
[16:25:47] ============== ttm_bo_validate (21 subtests) ===============
[16:25:47] ============== ttm_bo_init_reserved_sys_man ===============
[16:25:47] [PASSED] Buffer object for userspace
[16:25:47] [PASSED] Kernel buffer object
[16:25:47] [PASSED] Shared buffer object
[16:25:47] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:25:47] ============== ttm_bo_init_reserved_mock_man ==============
[16:25:47] [PASSED] Buffer object for userspace
[16:25:47] [PASSED] Kernel buffer object
[16:25:47] [PASSED] Shared buffer object
[16:25:47] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:25:47] [PASSED] ttm_bo_init_reserved_resv
[16:25:47] ================== ttm_bo_validate_basic ==================
[16:25:47] [PASSED] Buffer object for userspace
[16:25:47] [PASSED] Kernel buffer object
[16:25:47] [PASSED] Shared buffer object
[16:25:47] ============== [PASSED] ttm_bo_validate_basic ==============
[16:25:47] [PASSED] ttm_bo_validate_invalid_placement
[16:25:47] ============= ttm_bo_validate_same_placement ==============
[16:25:47] [PASSED] System manager
[16:25:47] [PASSED] VRAM manager
[16:25:47] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:25:47] [PASSED] ttm_bo_validate_failed_alloc
[16:25:47] [PASSED] ttm_bo_validate_pinned
[16:25:47] [PASSED] ttm_bo_validate_busy_placement
[16:25:47] ================ ttm_bo_validate_multihop =================
[16:25:47] [PASSED] Buffer object for userspace
[16:25:47] [PASSED] Kernel buffer object
[16:25:47] [PASSED] Shared buffer object
[16:25:47] ============ [PASSED] ttm_bo_validate_multihop =============
[16:25:47] ========== ttm_bo_validate_no_placement_signaled ==========
[16:25:47] [PASSED] Buffer object in system domain, no page vector
[16:25:47] [PASSED] Buffer object in system domain with an existing page vector
[16:25:47] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:25:47] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:25:47] [PASSED] Buffer object for userspace
[16:25:47] [PASSED] Kernel buffer object
[16:25:47] [PASSED] Shared buffer object
[16:25:47] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:25:47] [PASSED] ttm_bo_validate_move_fence_signaled
[16:25:47] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:25:47] [PASSED] Waits for GPU
[16:25:47] [PASSED] Tries to lock straight away
[16:25:47] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:25:47] [PASSED] ttm_bo_validate_happy_evict
[16:25:47] [PASSED] ttm_bo_validate_all_pinned_evict
[16:25:47] [PASSED] ttm_bo_validate_allowed_only_evict
[16:25:47] [PASSED] ttm_bo_validate_deleted_evict
[16:25:47] [PASSED] ttm_bo_validate_busy_domain_evict
[16:25:47] [PASSED] ttm_bo_validate_evict_gutting
[16:25:47] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:25:47] ================= [PASSED] ttm_bo_validate =================
[16:25:47] ============================================================
[16:25:47] Testing complete. Ran 101 tests: passed: 101
[16:25:47] Elapsed time: 11.413s total, 1.637s configuring, 9.510s building, 0.218s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [V8 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-11-27 16:10 ` [V8 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
@ 2025-11-27 17:02 ` Michal Wajdeczko
0 siblings, 0 replies; 31+ messages in thread
From: Michal Wajdeczko @ 2025-11-27 17:02 UTC (permalink / raw)
To: Nareshkumar Gollakoti, intel-xe
On 11/27/2025 5:10 PM, Nareshkumar Gollakoti wrote:
> Due to SLA agreement between PF and VFs,the alternate CCS-mode
> cannot be changed when VFs are already enabled.
> Similarly, enabling VFs is not permitted when the alternate
> CCS-mode is active. Additionally, the sysfs entry for
> CCS-mode is not created for SR-IOV VF mode.
>
> Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
> ---
> v2:
> - function xe_device_is_vf_enabled has been refactored to
> xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
> - The code now distinctly checks for SR-IOV VF mode and
> SR-IOV PF with VFs enabled.
> - Log messages have been updated to explicitly state the current mode.
> - The function xe_multi_ccs_mode_enabled is moved to xe_device.h
>
> v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
>
> v4:
> - sysfs interface for CCS mode is not initialized
> when operating in SRIOV VF Mode.
> - xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
> enablement.
> - remove unnecessary comments as flow is self explanatory.
>
> v5:(review comments from Michal)
> - Add xe device level CCS mode block with mutex lock and CCS mode state
> - necessesary functions to manage ccs mode state to provide strict mutual
> exclusive support b/w CCS mode & SRIOV VF enabling
>
> v6:
> - Re modeled implementation based on lockdown the PF using custom guard
> supported functions by Michal
>
> v7:
> - Corrected patch style as message written as subject
> - Used public PF lockdown functions instead internal funcions(Michal)
> - Creating CCS Mode entries only on PF Mode
>
> v8:(Michal)
> - updated short subject and few comments
> - used guard for mutex
> - Add a check of PF Mode to ensure use of xe_sriov_pf_lockdown only in
> PF Mode
> - Added default CCS mode check to xe_gt_ccs_mode_default(gt) function
> ---
> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 57 ++++++++++++++++++++++++-----
> drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 1 +
> 2 files changed, 48 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> index 50fffc9ebf62..957ae6586b9d 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> @@ -13,6 +13,7 @@
> #include "xe_gt_sysfs.h"
> #include "xe_mmio.h"
> #include "xe_sriov.h"
> +#include "xe_sriov_pf.h"
>
> static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
> {
> @@ -108,6 +109,45 @@ ccs_mode_show(struct device *kdev,
> return sysfs_emit(buf, "%u\n", gt->ccs_mode);
> }
>
> +bool xe_gt_ccs_mode_default(struct xe_gt *gt)
do you plan to use this function beyond this .c file?
if not, then make it static (and drop xe_ prefix)
if yes, then add proper kernel-doc
> +{
> + return gt->ccs_mode == 1;
> +}
> +
> +static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + /*
> + * Ensure the system is operating in PF Mode before invoking
> + * the xe_sriov_pf_lockdown function.
> + * if not in PF Mode,return 0,as its Non-SRIOV Mode
usually we don't comment obvious code
> + */
> + if (!IS_SRIOV_PF(xe))
> + return 0;
> +
> + /*
> + * We can't change CCS-mode when VFs are already enabled
> + * and we must prevent enabling VFs when alternate
> + * CCS-mode is active
> + */
> + if (xe_gt_ccs_mode_default(gt))
> + return xe_sriov_pf_lockdown(xe);
> +
> + return 0;
> +}
> +
> +static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (IS_SRIOV_PF(xe)) {
> + /* Allow enabling VFs, if CCS-mode changed to default mode */
> + if (xe_gt_ccs_mode_default(gt))
> + xe_sriov_pf_end_lockdown(xe);
> + }
> +}
> +
> static ssize_t
> ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> const char *buff, size_t count)
> @@ -117,12 +157,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> u32 num_engines, num_slices;
> int ret;
>
> - if (IS_SRIOV(xe)) {
> - xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
> - xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
> - return -EOPNOTSUPP;
> - }
> -
> ret = kstrtou32(buff, 0, &num_engines);
> if (ret)
> return ret;
> @@ -139,13 +173,16 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> }
>
> /* CCS mode can only be updated when there are no drm clients */
> - mutex_lock(&xe->drm.filelist_mutex);
> + guard(mutex)(&xe->drm.filelist_mutex);
> if (!list_empty(&xe->drm.filelist)) {
> - mutex_unlock(&xe->drm.filelist_mutex);
> xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
> return -EBUSY;
> }
>
> + ret = gt_prepare_ccs_mode_enabling(gt);
> + if (ret)
> + return ret;
> +
> if (gt->ccs_mode != num_engines) {
> xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
> gt->ccs_mode = num_engines;
> @@ -153,7 +190,7 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> xe_gt_reset(gt);
> }
>
> - mutex_unlock(&xe->drm.filelist_mutex);
> + gt_finish_ccs_mode_enabling(gt);
>
> return count;
> }
> @@ -191,7 +228,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
> struct xe_device *xe = gt_to_xe(gt);
> int err;
>
> - if (!xe_gt_ccs_mode_enabled(gt))
> + if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
> return 0;
>
> err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> index f8779852cf0d..224bd553e9dc 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> @@ -13,6 +13,7 @@
>
> void xe_gt_apply_ccs_mode(struct xe_gt *gt);
> int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt);
> +bool xe_gt_ccs_mode_default(struct xe_gt *gt);
>
> static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
> {
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (7 preceding siblings ...)
2025-11-27 16:25 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8) Patchwork
@ 2025-11-27 17:29 ` Patchwork
2025-11-27 19:17 ` ✗ Xe.CI.Full: failure " Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-27 17:29 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1670 bytes --]
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8)
URL : https://patchwork.freedesktop.org/series/154538/
State : success
== Summary ==
CI Bug Log - changes from xe-4157-943d0e69375e5a9030238a697f7d850af0549000_BAT -> xe-pw-154538v8_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-154538v8_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6520])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8641 -> IGT_8642
* Linux: xe-4157-943d0e69375e5a9030238a697f7d850af0549000 -> xe-pw-154538v8
IGT_8641: 46d3dad03a9960a47eedcdc3bcc9c5a195dbc8e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8642: fa854cbfe25f3d64ad02bfd3f7804b5d7ccda71d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4157-943d0e69375e5a9030238a697f7d850af0549000: 943d0e69375e5a9030238a697f7d850af0549000
xe-pw-154538v8: 154538v8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/index.html
[-- Attachment #2: Type: text/html, Size: 2253 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (8 preceding siblings ...)
2025-11-27 17:29 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-11-27 19:17 ` Patchwork
2025-11-28 12:38 ` [V9 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
` (3 subsequent siblings)
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-27 19:17 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 107360 bytes --]
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8)
URL : https://patchwork.freedesktop.org/series/154538/
State : failure
== Summary ==
CI Bug Log - changes from xe-4157-943d0e69375e5a9030238a697f7d850af0549000_FULL -> xe-pw-154538v8_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-154538v8_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-154538v8_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-154538v8_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: NOTRUN -> [FAIL][1] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [INCOMPLETE][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1.html
Known issues
------------
Here are the changes found in xe-pw-154538v8_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-adlp: NOTRUN -> [SKIP][3] ([Intel XE#1125] / [Intel XE#5574])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@intel_hwmon@hwmon-write.html
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1125])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-dpms:
- shard-lnl: NOTRUN -> [FAIL][5] ([Intel XE#6676]) +8 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_async_flips@async-flip-dpms.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-lnl: NOTRUN -> [FAIL][6] ([Intel XE#6678]) +2 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-3/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2370])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +13 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#316]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-adlp: NOTRUN -> [FAIL][12] ([Intel XE#1874]) +2 other tests fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-adlp: NOTRUN -> [FAIL][14] ([Intel XE#1231])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +15 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +18 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +17 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#610])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#610])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#610])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1428])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2191]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#2191]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2191]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1512]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#367]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#367])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#367]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#367]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +132 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-464/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-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2907]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +37 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#787]) +65 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +13 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +17 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#3442])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3432]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#3432]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +18 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#2907]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#4417] / [Intel XE#455])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#4417]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#4417]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#373]) +15 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#306]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2325]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@kms_chamelium_color@degamma.html
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#306]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#306]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#373]) +16 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2252]) +8 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#373]) +15 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#307])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#3278])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2341]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2321]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1424]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2320]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: NOTRUN -> [ABORT][60] ([Intel XE#6675]) +14 other tests abort
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [ABORT][61] ([Intel XE#6675]) +14 other tests abort
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#309]) +9 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2291]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#309]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#323])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#323])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#323])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2286])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1508])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1508]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1340])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#4494] / [i915#3804])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4331])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#4331])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#4331])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4331])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2244])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-2/igt@kms_dsc@dsc-basic.html
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2244])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_dsc@dsc-basic.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#4422])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4422])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#4422])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4422])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4156])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#702])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#1137])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_feature_discovery@dp-mst.html
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1137])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2374])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-1/igt@kms_feature_discovery@psr1.html
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1135]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#2316])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1421]) +9 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2316]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#310]) +9 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: NOTRUN -> [FAIL][94] ([Intel XE#301]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [ABORT][95] ([Intel XE#6675]) +16 other tests abort
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][96] ([Intel XE#2049] / [Intel XE#2597])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401]) +9 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-lnl: NOTRUN -> [FAIL][98] ([Intel XE#4683]) +1 other test fail
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#455]) +41 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2293] / [Intel XE#2380]) +8 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2293]) +8 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401] / [Intel XE#1745]) +9 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2380]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1397]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [FAIL][106] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#352]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][108] ([Intel XE#6312]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][109] ([Intel XE#651]) +16 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#651]) +21 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#656]) +61 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2311]) +33 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#4141]) +14 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [DMESG-FAIL][114] ([Intel XE#2953] / [Intel XE#4173])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#656]) +59 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#6312]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#651]) +49 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#658])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1469]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2352])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2313]) +40 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][122] ([Intel XE#653]) +20 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2312]) +14 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#6312]) +6 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#653]) +48 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1470] / [Intel XE#2853])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-bmg: [PASS][127] -> [ABORT][128] ([Intel XE#6662])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-2/igt@kms_hdr@bpc-switch.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-bmg: NOTRUN -> [ABORT][129] ([Intel XE#6662]) +2 other tests abort
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1503])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1450]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#2925]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2934])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2925]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-434/igt@kms_joiner@basic-max-non-joiner.html
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2925]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#6590])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][138] ([Intel XE#2925] / [Intel XE#3012]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-adlp: NOTRUN -> [SKIP][139] ([Intel XE#356])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2501])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#356])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-adlp: NOTRUN -> [SKIP][142] ([Intel XE#5624])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [FAIL][143] ([Intel XE#5195]) +2 other tests fail
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: NOTRUN -> [ABORT][144] ([Intel XE#6675]) +9 other tests abort
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-4:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#599]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-8/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#4596])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-none.html
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#4596])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@kms_plane_multiple@2x-tiling-none.html
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#4596])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-4:
- shard-adlp: NOTRUN -> [SKIP][149] ([Intel XE#5020])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#3307])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#6691]) +21 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d:
- shard-adlp: NOTRUN -> [DMESG-WARN][152] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#6691]) +9 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#870])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html
- shard-adlp: NOTRUN -> [SKIP][155] ([Intel XE#870])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@kms_pm_backlight@bad-brightness.html
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#870])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-adlp: NOTRUN -> [SKIP][157] ([Intel XE#1129]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#3309])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#3309])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#3309])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2392])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1129])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2505])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1406] / [Intel XE#1489]) +11 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1406] / [Intel XE#2893]) +7 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1406] / [Intel XE#4608]) +7 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][170] ([Intel XE#1406] / [Intel XE#1489]) +10 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +23 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-dpms@edp-1:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#1406] / [Intel XE#4609]) +5 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@kms_psr@fbc-psr2-dpms@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +23 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#1406]) +12 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-primary-page-flip:
- shard-adlp: NOTRUN -> [SKIP][175] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +22 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr2-suspend@edp-1:
- shard-lnl: NOTRUN -> [ABORT][176] ([Intel XE#2625] / [Intel XE#6675]) +1 other test abort
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_psr@psr2-suspend@edp-1.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-adlp: NOTRUN -> [SKIP][177] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [FAIL][179] ([Intel XE#4689])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-adlp: NOTRUN -> [SKIP][180] ([Intel XE#3414])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#3414] / [Intel XE#3904])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#3414])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic:
- shard-adlp: NOTRUN -> [FAIL][183] ([Intel XE#6361]) +2 other tests fail
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#1435])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#6503]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#330])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#330])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@kms_tv_load_detect@load-detect.html
- shard-adlp: NOTRUN -> [SKIP][188] ([Intel XE#330])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2450])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#455]) +38 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#1499]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#1499]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@kms_vrr@negative-basic.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#1091] / [Intel XE#2849])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#1091] / [Intel XE#2849])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_ccs@ctrl-surf-copy:
- shard-adlp: NOTRUN -> [SKIP][195] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_ccs@ctrl-surf-copy.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#6599])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@xe_compute@eu-busy-10s.html
- shard-adlp: NOTRUN -> [SKIP][197] ([Intel XE#6599])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@xe_compute@eu-busy-10s.html
- shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#6592] / [Intel XE#6645])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@xe_compute@eu-busy-10s.html
* igt@xe_compute@loop-duration-2s:
- shard-adlp: NOTRUN -> [SKIP][199] ([Intel XE#6598])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_compute@loop-duration-2s.html
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#6598]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@xe_compute@loop-duration-2s.html
* igt@xe_copy_basic@mem-set-linear-0x8fffe:
- shard-adlp: NOTRUN -> [SKIP][201] ([Intel XE#5503])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_copy_basic@mem-set-linear-0x8fffe.html
- shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#5503])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x8fffe.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#2504])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-adlp: NOTRUN -> [SKIP][204] ([Intel XE#5626])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#4837]) +14 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#4837]) +17 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_eudebug@vma-ufence-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#4837]) +19 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@xe_eudebug@vma-ufence-faultable.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-adlp: NOTRUN -> [SKIP][208] ([Intel XE#4837] / [Intel XE#5565]) +15 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_evict@evict-beng-large-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][209] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_evict@evict-beng-large-multi-vm.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-adlp: NOTRUN -> [SKIP][210] ([Intel XE#261]) +8 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][211] ([Intel XE#261] / [Intel XE#688]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-beng-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#688]) +13 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@xe_evict@evict-beng-threads-large-multi-vm.html
* igt@xe_evict@evict-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][213] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-adlp: NOTRUN -> [SKIP][214] ([Intel XE#688]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-adlp: NOTRUN -> [SKIP][215] ([Intel XE#1392] / [Intel XE#5575]) +13 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
- shard-bmg: NOTRUN -> [SKIP][216] ([Intel XE#2322]) +12 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#1392]) +12 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
- shard-adlp: NOTRUN -> [SKIP][218] ([Intel XE#288] / [Intel XE#5561]) +39 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#288]) +42 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-adlp: NOTRUN -> [SKIP][220] ([Intel XE#2360])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: NOTRUN -> [DMESG-WARN][221] ([Intel XE#3868])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@xe_exec_reset@cm-cat-error.html
* igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
- shard-adlp: NOTRUN -> [INCOMPLETE][222] ([Intel XE#6299])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
* igt@xe_exec_system_allocator@many-64k-malloc-prefetch-madvise:
- shard-lnl: NOTRUN -> [WARN][223] ([Intel XE#5786]) +3 other tests warn
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@xe_exec_system_allocator@many-64k-malloc-prefetch-madvise.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][224] ([Intel XE#5007])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma:
- shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#6196])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html
* igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#4943]) +36 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@processes-evict-malloc:
- shard-adlp: NOTRUN -> [SKIP][227] ([Intel XE#4915]) +444 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@xe_exec_system_allocator@processes-evict-malloc.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][228] ([Intel XE#4915]) +450 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#4943]) +27 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-adlp: NOTRUN -> [SKIP][230] ([Intel XE#6281])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-adlp: NOTRUN -> [SKIP][231] ([Intel XE#2229] / [Intel XE#5488])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][232] ([Intel XE#512])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@xe_mmap@small-bar.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257]) -> ([PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [SKIP][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [DMESG-WARN][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173] / [Intel XE#5612])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-9/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-8/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-6/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-8/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-2/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-1/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-9/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-4/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-8/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-4/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-8/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-4/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-6/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-4/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-3/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-6/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-2/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-1/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-1/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-2/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-2/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-3/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-3/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-3/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-9/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308]) -> ([SKIP][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334]) ([Intel XE#378])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-466/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-464/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-436/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-463/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-463/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-433/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-432/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-432/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-432/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-433/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-432/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-464/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-466/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-434/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-464/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-434/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-463/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-463/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-434/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-435/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-434/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-435/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-433/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-436/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-436/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-434/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-464/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-436/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-464/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-436/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-434/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-434/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-464/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-433/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@xe_module_load@load.html
* igt@xe_oa@non-zero-reason-all:
- shard-dg2-set2: NOTRUN -> [SKIP][335] ([Intel XE#6377])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_oa@non-zero-reason-all.html
- shard-adlp: NOTRUN -> [SKIP][336] ([Intel XE#6377])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_oa@non-zero-reason-all.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][337] ([Intel XE#3573]) +8 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-adlp: NOTRUN -> [SKIP][338] ([Intel XE#3573]) +5 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_oa@tail-address-wrap:
- shard-dg2-set2: NOTRUN -> [SKIP][339] ([Intel XE#6032]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@xe_oa@tail-address-wrap.html
- shard-adlp: NOTRUN -> [SKIP][340] ([Intel XE#6032]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_oa@tail-address-wrap.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][341] ([Intel XE#977])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][342] ([Intel XE#977])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][343] ([Intel XE#2245])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_peer2peer@read:
- shard-lnl: NOTRUN -> [SKIP][344] ([Intel XE#1061])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-adlp: NOTRUN -> [SKIP][345] ([Intel XE#1061])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_peer2peer@write.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [SKIP][346] ([Intel XE#6566])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][347] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][348] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-adlp: NOTRUN -> [SKIP][349] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@xe_pm@d3cold-multiple-execs.html
- shard-bmg: NOTRUN -> [SKIP][350] ([Intel XE#2284]) +3 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][351] ([Intel XE#1948])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-basic-exec:
- shard-adlp: [PASS][352] -> [ABORT][353] ([Intel XE#6675]) +1 other test abort
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-9/igt@xe_pm@s2idle-basic-exec.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][354] -> [ABORT][355] ([Intel XE#6675]) +1 other test abort
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-2/igt@xe_pm@s3-exec-after.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-4/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][356] ([Intel XE#584]) +3 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-3/igt@xe_pm@s3-mocs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][357] ([Intel XE#579])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html
- shard-lnl: NOTRUN -> [SKIP][358] ([Intel XE#579])
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html
- shard-adlp: NOTRUN -> [SKIP][359] ([Intel XE#5611] / [Intel XE#579])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@xe_pm@vram-d3cold-threshold.html
- shard-bmg: NOTRUN -> [SKIP][360] ([Intel XE#579])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][361] ([Intel XE#4650])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@xe_pmu@all-fn-engine-activity-load.html
- shard-lnl: NOTRUN -> [SKIP][362] ([Intel XE#4650])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pmu@engine-activity-accuracy-90:
- shard-lnl: [PASS][363] -> [FAIL][364] ([Intel XE#6251]) +3 other tests fail
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-90.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-adlp: NOTRUN -> [SKIP][365] ([Intel XE#4733])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@pxp-optout:
- shard-adlp: NOTRUN -> [SKIP][366] ([Intel XE#4733] / [Intel XE#5594]) +2 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@xe_pxp@pxp-optout.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][367] ([Intel XE#4733]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-3/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][368] ([Intel XE#4733]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-adlp: NOTRUN -> [SKIP][369] ([Intel XE#944]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-6/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][370] ([Intel XE#944]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@xe_query@multigpu-query-oa-units.html
- shard-lnl: NOTRUN -> [SKIP][371] ([Intel XE#944]) +3 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-8/igt@xe_query@multigpu-query-oa-units.html
- shard-bmg: NOTRUN -> [SKIP][372] ([Intel XE#944])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-adlp: NOTRUN -> [SKIP][373] ([Intel XE#4814] / [Intel XE#5614]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_render_copy@render-stress-4-copies.html
- shard-dg2-set2: NOTRUN -> [SKIP][374] ([Intel XE#4814]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][375] ([Intel XE#4130]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-466/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-lnl: NOTRUN -> [SKIP][376] ([Intel XE#4130]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][377] ([Intel XE#4273])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-lnl: NOTRUN -> [SKIP][378] ([Intel XE#4351])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-7/igt@xe_sriov_scheduling@equal-throughput.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-adlp: NOTRUN -> [SKIP][379] ([Intel XE#6376])
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-1/igt@xe_sriov_vram@vf-access-beyond.html
- shard-dg2-set2: NOTRUN -> [SKIP][380] ([Intel XE#6318])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-435/igt@xe_sriov_vram@vf-access-beyond.html
- shard-lnl: NOTRUN -> [SKIP][381] ([Intel XE#6376])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-5/igt@xe_sriov_vram@vf-access-beyond.html
* igt@xe_survivability@runtime-survivability:
- shard-adlp: NOTRUN -> [SKIP][382] ([Intel XE#6529])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-8/igt@xe_survivability@runtime-survivability.html
- shard-dg2-set2: NOTRUN -> [SKIP][383] ([Intel XE#6529])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-432/igt@xe_survivability@runtime-survivability.html
- shard-lnl: NOTRUN -> [SKIP][384] ([Intel XE#6529])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-lnl-1/igt@xe_survivability@runtime-survivability.html
* igt@xe_vm@out-of-memory:
- shard-adlp: NOTRUN -> [SKIP][385] ([Intel XE#5745])
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-3/igt@xe_vm@out-of-memory.html
#### Possible fixes ####
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-adlp: [FAIL][386] ([Intel XE#1231]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: [FAIL][388] ([Intel XE#1874]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][390] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][391] +1 other test pass
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][392] ([Intel XE#5299]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][394] ([Intel XE#2316]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-adlp: [FAIL][396] ([Intel XE#5671]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-adlp: [ABORT][398] ([Intel XE#6675]) -> [PASS][399] +2 other tests pass
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-adlp-3/igt@xe_pm@s2idle-vm-bind-prefetch.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [ABORT][400] ([Intel XE#6675]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-userptr.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-userptr.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][402] ([Intel XE#2312]) -> [SKIP][403] ([Intel XE#4141])
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move:
- shard-bmg: [SKIP][404] ([Intel XE#2312]) -> [SKIP][405] ([Intel XE#2311]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][406] ([Intel XE#2311]) -> [SKIP][407] ([Intel XE#2312])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][408] ([Intel XE#2313]) -> [SKIP][409] ([Intel XE#2312]) +2 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][410] ([Intel XE#2312]) -> [SKIP][411] ([Intel XE#2313]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4157-943d0e69375e5a9030238a697f7d850af0549000/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[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#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[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#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[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#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
[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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#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#5574]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5574
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5611]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5611
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
[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#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[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#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6299
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6377
[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#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[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#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
[Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
[Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
[Intel XE#6662]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6662
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#6678]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6678
[Intel XE#6691]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6691
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#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
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8641 -> IGT_8642
* Linux: xe-4157-943d0e69375e5a9030238a697f7d850af0549000 -> xe-pw-154538v8
IGT_8641: 46d3dad03a9960a47eedcdc3bcc9c5a195dbc8e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8642: fa854cbfe25f3d64ad02bfd3f7804b5d7ccda71d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4157-943d0e69375e5a9030238a697f7d850af0549000: 943d0e69375e5a9030238a697f7d850af0549000
xe-pw-154538v8: 154538v8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v8/index.html
[-- Attachment #2: Type: text/html, Size: 125550 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* [V9 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (9 preceding siblings ...)
2025-11-27 19:17 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-11-28 12:38 ` Nareshkumar Gollakoti
2025-11-28 13:21 ` Michal Wajdeczko
` (2 more replies)
2025-11-28 12:58 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9) Patchwork
` (2 subsequent siblings)
13 siblings, 3 replies; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-28 12:38 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, Nareshkumar Gollakoti
Due to SLA agreement between PF and VFs,the alternate CCS-mode
cannot be changed when VFs are already enabled.
Similarly, enabling VFs is not permitted when the alternate
CCS-mode is active. Additionally, the sysfs entry for
CCS-mode is not created for SR-IOV VF mode.
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
v2:
- function xe_device_is_vf_enabled has been refactored to
xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
- The code now distinctly checks for SR-IOV VF mode and
SR-IOV PF with VFs enabled.
- Log messages have been updated to explicitly state the current mode.
- The function xe_multi_ccs_mode_enabled is moved to xe_device.h
v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
v4:
- sysfs interface for CCS mode is not initialized
when operating in SRIOV VF Mode.
- xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
enablement.
- remove unnecessary comments as flow is self explanatory.
v5:(review comments from Michal)
- Add xe device level CCS mode block with mutex lock and CCS mode state
- necessesary functions to manage ccs mode state to provide strict mutual
exclusive support b/w CCS mode & SRIOV VF enabling
v6:
- Re modeled implementation based on lockdown the PF using custom guard
supported functions by Michal
v7:
- Corrected patch style as message written as subject
- Used public PF lockdown functions instead internal funcions(Michal)
- Creating CCS Mode entries only on PF Mode
v8:(Michal)
- updated short subject and few comments
- used guard for mutex
- Add a check of PF Mode to ensure use of xe_sriov_pf_lockdown only in
PF Mode
- Added default CCS mode check to xe_gt_ccs_mode_default(gt) function
v9:(Michal)
- Added xe_gt_ccs_mode_default(gt) as static inline and it can be used
across driver to use between default or alternate CCS mode
- removed comment from obvious code
---
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 47 +++++++++++++++++++++++------
drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++++
2 files changed, 49 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
index 50fffc9ebf62..8621c39cdf58 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
@@ -13,6 +13,7 @@
#include "xe_gt_sysfs.h"
#include "xe_mmio.h"
#include "xe_sriov.h"
+#include "xe_sriov_pf.h"
static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
{
@@ -108,6 +109,35 @@ ccs_mode_show(struct device *kdev,
return sysfs_emit(buf, "%u\n", gt->ccs_mode);
}
+static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (!IS_SRIOV_PF(xe))
+ return 0;
+
+ /*
+ * We can't change CCS-mode when VFs are already enabled
+ * and we must prevent enabling VFs when alternate
+ * CCS-mode is active
+ */
+ if (xe_gt_ccs_mode_default(gt))
+ return xe_sriov_pf_lockdown(xe);
+
+ return 0;
+}
+
+static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (IS_SRIOV_PF(xe)) {
+ /* Allow enabling VFs, if CCS-mode changed to default mode */
+ if (xe_gt_ccs_mode_default(gt))
+ xe_sriov_pf_end_lockdown(xe);
+ }
+}
+
static ssize_t
ccs_mode_store(struct device *kdev, struct device_attribute *attr,
const char *buff, size_t count)
@@ -117,12 +147,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
u32 num_engines, num_slices;
int ret;
- if (IS_SRIOV(xe)) {
- xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
- xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
- return -EOPNOTSUPP;
- }
-
ret = kstrtou32(buff, 0, &num_engines);
if (ret)
return ret;
@@ -139,13 +163,16 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
}
/* CCS mode can only be updated when there are no drm clients */
- mutex_lock(&xe->drm.filelist_mutex);
+ guard(mutex)(&xe->drm.filelist_mutex);
if (!list_empty(&xe->drm.filelist)) {
- mutex_unlock(&xe->drm.filelist_mutex);
xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
return -EBUSY;
}
+ ret = gt_prepare_ccs_mode_enabling(gt);
+ if (ret)
+ return ret;
+
if (gt->ccs_mode != num_engines) {
xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
gt->ccs_mode = num_engines;
@@ -153,7 +180,7 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
xe_gt_reset(gt);
}
- mutex_unlock(&xe->drm.filelist_mutex);
+ gt_finish_ccs_mode_enabling(gt);
return count;
}
@@ -191,7 +218,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
struct xe_device *xe = gt_to_xe(gt);
int err;
- if (!xe_gt_ccs_mode_enabled(gt))
+ if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
return 0;
err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
index f8779852cf0d..c5b459ef2f79 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
@@ -20,5 +20,17 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
return hweight32(CCS_MASK(gt)) > 1;
}
+/**
+ * xe_gt_ccs_mode_default - check if CCS mode is default (single CCS mode)
+ * @gt: GT structure
+ * Return:
+ * %true if CCS mode is default(i.e. single CCS mode)
+ * %false if alternate/multi CCS mode
+ */
+static inline bool xe_gt_ccs_mode_default(struct xe_gt *gt)
+{
+ return gt->ccs_mode == 1;
+}
+
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 31+ messages in thread
* ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (10 preceding siblings ...)
2025-11-28 12:38 ` [V9 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
@ 2025-11-28 12:58 ` Patchwork
2025-11-28 14:14 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-28 15:49 ` ✗ Xe.CI.Full: failure " Patchwork
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-28 12:58 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9)
URL : https://patchwork.freedesktop.org/series/154538/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:57:03] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:57:07] 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=25
[12:57:44] Starting KUnit Kernel (1/1)...
[12:57:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:57:45] ================== guc_buf (11 subtests) ===================
[12:57:45] [PASSED] test_smallest
[12:57:45] [PASSED] test_largest
[12:57:45] [PASSED] test_granular
[12:57:45] [PASSED] test_unique
[12:57:45] [PASSED] test_overlap
[12:57:45] [PASSED] test_reusable
[12:57:45] [PASSED] test_too_big
[12:57:45] [PASSED] test_flush
[12:57:45] [PASSED] test_lookup
[12:57:45] [PASSED] test_data
[12:57:45] [PASSED] test_class
[12:57:45] ===================== [PASSED] guc_buf =====================
[12:57:45] =================== guc_dbm (7 subtests) ===================
[12:57:45] [PASSED] test_empty
[12:57:45] [PASSED] test_default
[12:57:45] ======================== test_size ========================
[12:57:45] [PASSED] 4
[12:57:45] [PASSED] 8
[12:57:45] [PASSED] 32
[12:57:45] [PASSED] 256
[12:57:45] ==================== [PASSED] test_size ====================
[12:57:45] ======================= test_reuse ========================
[12:57:45] [PASSED] 4
[12:57:45] [PASSED] 8
[12:57:45] [PASSED] 32
[12:57:45] [PASSED] 256
[12:57:45] =================== [PASSED] test_reuse ====================
[12:57:45] =================== test_range_overlap ====================
[12:57:45] [PASSED] 4
[12:57:45] [PASSED] 8
[12:57:45] [PASSED] 32
[12:57:45] [PASSED] 256
[12:57:45] =============== [PASSED] test_range_overlap ================
[12:57:45] =================== test_range_compact ====================
[12:57:45] [PASSED] 4
[12:57:45] [PASSED] 8
[12:57:45] [PASSED] 32
[12:57:45] [PASSED] 256
[12:57:45] =============== [PASSED] test_range_compact ================
[12:57:45] ==================== test_range_spare =====================
[12:57:45] [PASSED] 4
[12:57:45] [PASSED] 8
[12:57:45] [PASSED] 32
[12:57:45] [PASSED] 256
[12:57:45] ================ [PASSED] test_range_spare =================
[12:57:45] ===================== [PASSED] guc_dbm =====================
[12:57:45] =================== guc_idm (6 subtests) ===================
[12:57:45] [PASSED] bad_init
[12:57:45] [PASSED] no_init
[12:57:45] [PASSED] init_fini
[12:57:45] [PASSED] check_used
[12:57:45] [PASSED] check_quota
[12:57:45] [PASSED] check_all
[12:57:45] ===================== [PASSED] guc_idm =====================
[12:57:45] ================== no_relay (3 subtests) ===================
[12:57:45] [PASSED] xe_drops_guc2pf_if_not_ready
[12:57:45] [PASSED] xe_drops_guc2vf_if_not_ready
[12:57:45] [PASSED] xe_rejects_send_if_not_ready
[12:57:45] ==================== [PASSED] no_relay =====================
[12:57:45] ================== pf_relay (14 subtests) ==================
[12:57:45] [PASSED] pf_rejects_guc2pf_too_short
[12:57:45] [PASSED] pf_rejects_guc2pf_too_long
[12:57:45] [PASSED] pf_rejects_guc2pf_no_payload
[12:57:45] [PASSED] pf_fails_no_payload
[12:57:45] [PASSED] pf_fails_bad_origin
[12:57:45] [PASSED] pf_fails_bad_type
[12:57:45] [PASSED] pf_txn_reports_error
[12:57:45] [PASSED] pf_txn_sends_pf2guc
[12:57:45] [PASSED] pf_sends_pf2guc
[12:57:45] [SKIPPED] pf_loopback_nop
[12:57:45] [SKIPPED] pf_loopback_echo
[12:57:45] [SKIPPED] pf_loopback_fail
[12:57:45] [SKIPPED] pf_loopback_busy
[12:57:45] [SKIPPED] pf_loopback_retry
[12:57:45] ==================== [PASSED] pf_relay =====================
[12:57:45] ================== vf_relay (3 subtests) ===================
[12:57:45] [PASSED] vf_rejects_guc2vf_too_short
[12:57:45] [PASSED] vf_rejects_guc2vf_too_long
[12:57:45] [PASSED] vf_rejects_guc2vf_no_payload
[12:57:45] ==================== [PASSED] vf_relay =====================
[12:57:45] ================ pf_gt_config (6 subtests) =================
[12:57:45] [PASSED] fair_contexts_1vf
[12:57:45] [PASSED] fair_doorbells_1vf
[12:57:45] [PASSED] fair_ggtt_1vf
[12:57:45] ====================== fair_contexts ======================
[12:57:45] [PASSED] 1 VF
[12:57:45] [PASSED] 2 VFs
[12:57:45] [PASSED] 3 VFs
[12:57:45] [PASSED] 4 VFs
[12:57:45] [PASSED] 5 VFs
[12:57:45] [PASSED] 6 VFs
[12:57:45] [PASSED] 7 VFs
[12:57:45] [PASSED] 8 VFs
[12:57:45] [PASSED] 9 VFs
[12:57:45] [PASSED] 10 VFs
[12:57:45] [PASSED] 11 VFs
[12:57:45] [PASSED] 12 VFs
[12:57:45] [PASSED] 13 VFs
[12:57:45] [PASSED] 14 VFs
[12:57:45] [PASSED] 15 VFs
[12:57:45] [PASSED] 16 VFs
[12:57:45] [PASSED] 17 VFs
[12:57:45] [PASSED] 18 VFs
[12:57:45] [PASSED] 19 VFs
[12:57:45] [PASSED] 20 VFs
[12:57:45] [PASSED] 21 VFs
[12:57:45] [PASSED] 22 VFs
[12:57:45] [PASSED] 23 VFs
[12:57:45] [PASSED] 24 VFs
[12:57:45] [PASSED] 25 VFs
[12:57:45] [PASSED] 26 VFs
[12:57:45] [PASSED] 27 VFs
[12:57:45] [PASSED] 28 VFs
[12:57:45] [PASSED] 29 VFs
[12:57:45] [PASSED] 30 VFs
[12:57:45] [PASSED] 31 VFs
[12:57:45] [PASSED] 32 VFs
[12:57:45] [PASSED] 33 VFs
[12:57:45] [PASSED] 34 VFs
[12:57:45] [PASSED] 35 VFs
[12:57:45] [PASSED] 36 VFs
[12:57:45] [PASSED] 37 VFs
[12:57:45] [PASSED] 38 VFs
[12:57:45] [PASSED] 39 VFs
[12:57:45] [PASSED] 40 VFs
[12:57:45] [PASSED] 41 VFs
[12:57:45] [PASSED] 42 VFs
[12:57:45] [PASSED] 43 VFs
[12:57:45] [PASSED] 44 VFs
[12:57:45] [PASSED] 45 VFs
[12:57:45] [PASSED] 46 VFs
[12:57:45] [PASSED] 47 VFs
[12:57:45] [PASSED] 48 VFs
[12:57:45] [PASSED] 49 VFs
[12:57:45] [PASSED] 50 VFs
[12:57:45] [PASSED] 51 VFs
[12:57:45] [PASSED] 52 VFs
[12:57:45] [PASSED] 53 VFs
[12:57:45] [PASSED] 54 VFs
[12:57:45] [PASSED] 55 VFs
[12:57:45] [PASSED] 56 VFs
[12:57:45] [PASSED] 57 VFs
[12:57:45] [PASSED] 58 VFs
[12:57:45] [PASSED] 59 VFs
[12:57:45] [PASSED] 60 VFs
[12:57:45] [PASSED] 61 VFs
[12:57:45] [PASSED] 62 VFs
[12:57:45] [PASSED] 63 VFs
[12:57:45] ================== [PASSED] fair_contexts ==================
[12:57:45] ===================== fair_doorbells ======================
[12:57:45] [PASSED] 1 VF
[12:57:45] [PASSED] 2 VFs
[12:57:45] [PASSED] 3 VFs
[12:57:45] [PASSED] 4 VFs
[12:57:45] [PASSED] 5 VFs
[12:57:45] [PASSED] 6 VFs
[12:57:45] [PASSED] 7 VFs
[12:57:45] [PASSED] 8 VFs
[12:57:45] [PASSED] 9 VFs
[12:57:45] [PASSED] 10 VFs
[12:57:45] [PASSED] 11 VFs
[12:57:45] [PASSED] 12 VFs
[12:57:45] [PASSED] 13 VFs
[12:57:45] [PASSED] 14 VFs
[12:57:45] [PASSED] 15 VFs
[12:57:45] [PASSED] 16 VFs
[12:57:45] [PASSED] 17 VFs
[12:57:45] [PASSED] 18 VFs
[12:57:45] [PASSED] 19 VFs
[12:57:45] [PASSED] 20 VFs
[12:57:45] [PASSED] 21 VFs
[12:57:45] [PASSED] 22 VFs
[12:57:45] [PASSED] 23 VFs
[12:57:45] [PASSED] 24 VFs
[12:57:45] [PASSED] 25 VFs
[12:57:45] [PASSED] 26 VFs
[12:57:45] [PASSED] 27 VFs
[12:57:45] [PASSED] 28 VFs
[12:57:45] [PASSED] 29 VFs
[12:57:45] [PASSED] 30 VFs
[12:57:45] [PASSED] 31 VFs
[12:57:45] [PASSED] 32 VFs
[12:57:45] [PASSED] 33 VFs
[12:57:45] [PASSED] 34 VFs
[12:57:45] [PASSED] 35 VFs
[12:57:45] [PASSED] 36 VFs
[12:57:45] [PASSED] 37 VFs
[12:57:45] [PASSED] 38 VFs
[12:57:45] [PASSED] 39 VFs
[12:57:45] [PASSED] 40 VFs
[12:57:45] [PASSED] 41 VFs
[12:57:45] [PASSED] 42 VFs
[12:57:45] [PASSED] 43 VFs
[12:57:45] [PASSED] 44 VFs
[12:57:45] [PASSED] 45 VFs
[12:57:45] [PASSED] 46 VFs
[12:57:45] [PASSED] 47 VFs
[12:57:45] [PASSED] 48 VFs
[12:57:45] [PASSED] 49 VFs
[12:57:45] [PASSED] 50 VFs
[12:57:45] [PASSED] 51 VFs
[12:57:45] [PASSED] 52 VFs
[12:57:45] [PASSED] 53 VFs
[12:57:45] [PASSED] 54 VFs
[12:57:45] [PASSED] 55 VFs
[12:57:45] [PASSED] 56 VFs
[12:57:45] [PASSED] 57 VFs
[12:57:45] [PASSED] 58 VFs
[12:57:45] [PASSED] 59 VFs
[12:57:45] [PASSED] 60 VFs
[12:57:45] [PASSED] 61 VFs
[12:57:45] [PASSED] 62 VFs
[12:57:45] [PASSED] 63 VFs
[12:57:45] ================= [PASSED] fair_doorbells ==================
[12:57:45] ======================== fair_ggtt ========================
[12:57:45] [PASSED] 1 VF
[12:57:45] [PASSED] 2 VFs
[12:57:45] [PASSED] 3 VFs
[12:57:45] [PASSED] 4 VFs
[12:57:45] [PASSED] 5 VFs
[12:57:45] [PASSED] 6 VFs
[12:57:45] [PASSED] 7 VFs
[12:57:45] [PASSED] 8 VFs
[12:57:45] [PASSED] 9 VFs
[12:57:45] [PASSED] 10 VFs
[12:57:45] [PASSED] 11 VFs
[12:57:45] [PASSED] 12 VFs
[12:57:45] [PASSED] 13 VFs
[12:57:45] [PASSED] 14 VFs
[12:57:45] [PASSED] 15 VFs
[12:57:45] [PASSED] 16 VFs
[12:57:45] [PASSED] 17 VFs
[12:57:45] [PASSED] 18 VFs
[12:57:45] [PASSED] 19 VFs
[12:57:45] [PASSED] 20 VFs
[12:57:45] [PASSED] 21 VFs
[12:57:45] [PASSED] 22 VFs
[12:57:45] [PASSED] 23 VFs
[12:57:45] [PASSED] 24 VFs
[12:57:45] [PASSED] 25 VFs
[12:57:45] [PASSED] 26 VFs
[12:57:45] [PASSED] 27 VFs
[12:57:45] [PASSED] 28 VFs
[12:57:45] [PASSED] 29 VFs
[12:57:45] [PASSED] 30 VFs
[12:57:45] [PASSED] 31 VFs
[12:57:45] [PASSED] 32 VFs
[12:57:45] [PASSED] 33 VFs
[12:57:45] [PASSED] 34 VFs
[12:57:45] [PASSED] 35 VFs
[12:57:45] [PASSED] 36 VFs
[12:57:45] [PASSED] 37 VFs
[12:57:45] [PASSED] 38 VFs
[12:57:45] [PASSED] 39 VFs
[12:57:45] [PASSED] 40 VFs
[12:57:45] [PASSED] 41 VFs
[12:57:45] [PASSED] 42 VFs
[12:57:45] [PASSED] 43 VFs
[12:57:45] [PASSED] 44 VFs
[12:57:45] [PASSED] 45 VFs
[12:57:45] [PASSED] 46 VFs
[12:57:45] [PASSED] 47 VFs
[12:57:45] [PASSED] 48 VFs
[12:57:45] [PASSED] 49 VFs
[12:57:45] [PASSED] 50 VFs
[12:57:45] [PASSED] 51 VFs
[12:57:45] [PASSED] 52 VFs
[12:57:45] [PASSED] 53 VFs
[12:57:45] [PASSED] 54 VFs
[12:57:45] [PASSED] 55 VFs
[12:57:45] [PASSED] 56 VFs
[12:57:45] [PASSED] 57 VFs
[12:57:45] [PASSED] 58 VFs
[12:57:45] [PASSED] 59 VFs
[12:57:45] [PASSED] 60 VFs
[12:57:45] [PASSED] 61 VFs
[12:57:45] [PASSED] 62 VFs
[12:57:45] [PASSED] 63 VFs
[12:57:45] ==================== [PASSED] fair_ggtt ====================
[12:57:45] ================== [PASSED] pf_gt_config ===================
[12:57:45] ===================== lmtt (1 subtest) =====================
[12:57:45] ======================== test_ops =========================
[12:57:45] [PASSED] 2-level
[12:57:45] [PASSED] multi-level
[12:57:45] ==================== [PASSED] test_ops =====================
[12:57:45] ====================== [PASSED] lmtt =======================
[12:57:45] ================= pf_service (11 subtests) =================
[12:57:45] [PASSED] pf_negotiate_any
[12:57:45] [PASSED] pf_negotiate_base_match
[12:57:45] [PASSED] pf_negotiate_base_newer
[12:57:45] [PASSED] pf_negotiate_base_next
[12:57:45] [SKIPPED] pf_negotiate_base_older
[12:57:45] [PASSED] pf_negotiate_base_prev
[12:57:45] [PASSED] pf_negotiate_latest_match
[12:57:45] [PASSED] pf_negotiate_latest_newer
[12:57:45] [PASSED] pf_negotiate_latest_next
[12:57:45] [SKIPPED] pf_negotiate_latest_older
[12:57:45] [SKIPPED] pf_negotiate_latest_prev
[12:57:45] =================== [PASSED] pf_service ====================
[12:57:45] ================= xe_guc_g2g (2 subtests) ==================
[12:57:45] ============== xe_live_guc_g2g_kunit_default ==============
[12:57:45] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:57:45] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:57:45] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:57:45] =================== [SKIPPED] xe_guc_g2g ===================
[12:57:45] =================== xe_mocs (2 subtests) ===================
[12:57:45] ================ xe_live_mocs_kernel_kunit ================
[12:57:45] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:57:45] ================ xe_live_mocs_reset_kunit =================
[12:57:45] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:57:45] ==================== [SKIPPED] xe_mocs =====================
[12:57:45] ================= xe_migrate (2 subtests) ==================
[12:57:45] ================= xe_migrate_sanity_kunit =================
[12:57:45] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:57:45] ================== xe_validate_ccs_kunit ==================
[12:57:45] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:57:45] =================== [SKIPPED] xe_migrate ===================
[12:57:45] ================== xe_dma_buf (1 subtest) ==================
[12:57:45] ==================== xe_dma_buf_kunit =====================
[12:57:45] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:57:45] =================== [SKIPPED] xe_dma_buf ===================
[12:57:45] ================= xe_bo_shrink (1 subtest) =================
[12:57:45] =================== xe_bo_shrink_kunit ====================
[12:57:45] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:57:45] ================== [SKIPPED] xe_bo_shrink ==================
[12:57:45] ==================== xe_bo (2 subtests) ====================
[12:57:45] ================== xe_ccs_migrate_kunit ===================
[12:57:45] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:57:45] ==================== xe_bo_evict_kunit ====================
[12:57:45] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:57:45] ===================== [SKIPPED] xe_bo ======================
[12:57:45] ==================== args (11 subtests) ====================
[12:57:45] [PASSED] count_args_test
[12:57:45] [PASSED] call_args_example
[12:57:45] [PASSED] call_args_test
[12:57:45] [PASSED] drop_first_arg_example
[12:57:45] [PASSED] drop_first_arg_test
[12:57:45] [PASSED] first_arg_example
[12:57:45] [PASSED] first_arg_test
[12:57:45] [PASSED] last_arg_example
[12:57:45] [PASSED] last_arg_test
[12:57:45] [PASSED] pick_arg_example
[12:57:45] [PASSED] sep_comma_example
[12:57:45] ====================== [PASSED] args =======================
[12:57:45] =================== xe_pci (3 subtests) ====================
[12:57:45] ==================== check_graphics_ip ====================
[12:57:45] [PASSED] 12.00 Xe_LP
[12:57:45] [PASSED] 12.10 Xe_LP+
[12:57:45] [PASSED] 12.55 Xe_HPG
[12:57:45] [PASSED] 12.60 Xe_HPC
[12:57:45] [PASSED] 12.70 Xe_LPG
[12:57:45] [PASSED] 12.71 Xe_LPG
[12:57:45] [PASSED] 12.74 Xe_LPG+
[12:57:45] [PASSED] 20.01 Xe2_HPG
[12:57:45] [PASSED] 20.02 Xe2_HPG
[12:57:45] [PASSED] 20.04 Xe2_LPG
[12:57:45] [PASSED] 30.00 Xe3_LPG
[12:57:45] [PASSED] 30.01 Xe3_LPG
[12:57:45] [PASSED] 30.03 Xe3_LPG
[12:57:45] [PASSED] 30.04 Xe3_LPG
[12:57:45] [PASSED] 30.05 Xe3_LPG
[12:57:45] [PASSED] 35.11 Xe3p_XPC
[12:57:45] ================ [PASSED] check_graphics_ip ================
[12:57:45] ===================== check_media_ip ======================
[12:57:45] [PASSED] 12.00 Xe_M
[12:57:45] [PASSED] 12.55 Xe_HPM
[12:57:45] [PASSED] 13.00 Xe_LPM+
[12:57:45] [PASSED] 13.01 Xe2_HPM
[12:57:45] [PASSED] 20.00 Xe2_LPM
[12:57:45] [PASSED] 30.00 Xe3_LPM
[12:57:45] [PASSED] 30.02 Xe3_LPM
[12:57:45] [PASSED] 35.00 Xe3p_LPM
[12:57:45] [PASSED] 35.03 Xe3p_HPM
[12:57:45] ================= [PASSED] check_media_ip ==================
[12:57:45] =================== check_platform_desc ===================
[12:57:45] [PASSED] 0x9A60 (TIGERLAKE)
[12:57:45] [PASSED] 0x9A68 (TIGERLAKE)
[12:57:45] [PASSED] 0x9A70 (TIGERLAKE)
[12:57:45] [PASSED] 0x9A40 (TIGERLAKE)
[12:57:45] [PASSED] 0x9A49 (TIGERLAKE)
[12:57:45] [PASSED] 0x9A59 (TIGERLAKE)
[12:57:45] [PASSED] 0x9A78 (TIGERLAKE)
[12:57:45] [PASSED] 0x9AC0 (TIGERLAKE)
[12:57:45] [PASSED] 0x9AC9 (TIGERLAKE)
[12:57:45] [PASSED] 0x9AD9 (TIGERLAKE)
[12:57:45] [PASSED] 0x9AF8 (TIGERLAKE)
[12:57:45] [PASSED] 0x4C80 (ROCKETLAKE)
[12:57:45] [PASSED] 0x4C8A (ROCKETLAKE)
[12:57:45] [PASSED] 0x4C8B (ROCKETLAKE)
[12:57:45] [PASSED] 0x4C8C (ROCKETLAKE)
[12:57:45] [PASSED] 0x4C90 (ROCKETLAKE)
[12:57:45] [PASSED] 0x4C9A (ROCKETLAKE)
[12:57:45] [PASSED] 0x4680 (ALDERLAKE_S)
[12:57:45] [PASSED] 0x4682 (ALDERLAKE_S)
[12:57:45] [PASSED] 0x4688 (ALDERLAKE_S)
[12:57:45] [PASSED] 0x468A (ALDERLAKE_S)
[12:57:45] [PASSED] 0x468B (ALDERLAKE_S)
[12:57:45] [PASSED] 0x4690 (ALDERLAKE_S)
[12:57:45] [PASSED] 0x4692 (ALDERLAKE_S)
[12:57:45] [PASSED] 0x4693 (ALDERLAKE_S)
[12:57:45] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46AA (ALDERLAKE_P)
[12:57:45] [PASSED] 0x462A (ALDERLAKE_P)
[12:57:45] [PASSED] 0x4626 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x4628 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[12:57:45] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:57:45] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:57:45] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:57:45] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:57:45] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:57:45] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:57:45] [PASSED] 0xA721 (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA720 (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:57:45] [PASSED] 0xA780 (ALDERLAKE_S)
[12:57:45] [PASSED] 0xA781 (ALDERLAKE_S)
[12:57:45] [PASSED] 0xA782 (ALDERLAKE_S)
[12:57:45] [PASSED] 0xA783 (ALDERLAKE_S)
[12:57:45] [PASSED] 0xA788 (ALDERLAKE_S)
[12:57:45] [PASSED] 0xA789 (ALDERLAKE_S)
[12:57:45] [PASSED] 0xA78A (ALDERLAKE_S)
[12:57:45] [PASSED] 0xA78B (ALDERLAKE_S)
[12:57:45] [PASSED] 0x4905 (DG1)
[12:57:45] [PASSED] 0x4906 (DG1)
[12:57:45] [PASSED] 0x4907 (DG1)
[12:57:45] [PASSED] 0x4908 (DG1)
[12:57:45] [PASSED] 0x4909 (DG1)
[12:57:45] [PASSED] 0x56C0 (DG2)
[12:57:45] [PASSED] 0x56C2 (DG2)
[12:57:45] [PASSED] 0x56C1 (DG2)
[12:57:45] [PASSED] 0x7D51 (METEORLAKE)
[12:57:45] [PASSED] 0x7DD1 (METEORLAKE)
[12:57:45] [PASSED] 0x7D41 (METEORLAKE)
[12:57:45] [PASSED] 0x7D67 (METEORLAKE)
[12:57:45] [PASSED] 0xB640 (METEORLAKE)
[12:57:45] [PASSED] 0x56A0 (DG2)
[12:57:45] [PASSED] 0x56A1 (DG2)
[12:57:45] [PASSED] 0x56A2 (DG2)
[12:57:45] [PASSED] 0x56BE (DG2)
[12:57:45] [PASSED] 0x56BF (DG2)
[12:57:45] [PASSED] 0x5690 (DG2)
[12:57:45] [PASSED] 0x5691 (DG2)
[12:57:45] [PASSED] 0x5692 (DG2)
[12:57:45] [PASSED] 0x56A5 (DG2)
[12:57:45] [PASSED] 0x56A6 (DG2)
[12:57:45] [PASSED] 0x56B0 (DG2)
[12:57:45] [PASSED] 0x56B1 (DG2)
[12:57:45] [PASSED] 0x56BA (DG2)
[12:57:45] [PASSED] 0x56BB (DG2)
[12:57:45] [PASSED] 0x56BC (DG2)
[12:57:45] [PASSED] 0x56BD (DG2)
[12:57:45] [PASSED] 0x5693 (DG2)
[12:57:45] [PASSED] 0x5694 (DG2)
[12:57:45] [PASSED] 0x5695 (DG2)
[12:57:45] [PASSED] 0x56A3 (DG2)
[12:57:45] [PASSED] 0x56A4 (DG2)
[12:57:45] [PASSED] 0x56B2 (DG2)
[12:57:45] [PASSED] 0x56B3 (DG2)
[12:57:45] [PASSED] 0x5696 (DG2)
[12:57:45] [PASSED] 0x5697 (DG2)
[12:57:45] [PASSED] 0xB69 (PVC)
[12:57:45] [PASSED] 0xB6E (PVC)
[12:57:45] [PASSED] 0xBD4 (PVC)
[12:57:45] [PASSED] 0xBD5 (PVC)
[12:57:45] [PASSED] 0xBD6 (PVC)
[12:57:45] [PASSED] 0xBD7 (PVC)
[12:57:45] [PASSED] 0xBD8 (PVC)
[12:57:45] [PASSED] 0xBD9 (PVC)
[12:57:45] [PASSED] 0xBDA (PVC)
[12:57:45] [PASSED] 0xBDB (PVC)
[12:57:45] [PASSED] 0xBE0 (PVC)
[12:57:45] [PASSED] 0xBE1 (PVC)
[12:57:45] [PASSED] 0xBE5 (PVC)
[12:57:45] [PASSED] 0x7D40 (METEORLAKE)
[12:57:45] [PASSED] 0x7D45 (METEORLAKE)
[12:57:45] [PASSED] 0x7D55 (METEORLAKE)
[12:57:45] [PASSED] 0x7D60 (METEORLAKE)
[12:57:45] [PASSED] 0x7DD5 (METEORLAKE)
[12:57:45] [PASSED] 0x6420 (LUNARLAKE)
[12:57:45] [PASSED] 0x64A0 (LUNARLAKE)
[12:57:45] [PASSED] 0x64B0 (LUNARLAKE)
[12:57:45] [PASSED] 0xE202 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE209 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE20B (BATTLEMAGE)
[12:57:45] [PASSED] 0xE20C (BATTLEMAGE)
[12:57:45] [PASSED] 0xE20D (BATTLEMAGE)
[12:57:45] [PASSED] 0xE210 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE211 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE212 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE216 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE220 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE221 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE222 (BATTLEMAGE)
[12:57:45] [PASSED] 0xE223 (BATTLEMAGE)
[12:57:45] [PASSED] 0xB080 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB081 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB082 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB083 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB084 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB085 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB086 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB087 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB08F (PANTHERLAKE)
[12:57:45] [PASSED] 0xB090 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:57:45] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:57:45] [PASSED] 0xD740 (NOVALAKE_S)
[12:57:45] [PASSED] 0xD741 (NOVALAKE_S)
[12:57:45] [PASSED] 0xD742 (NOVALAKE_S)
[12:57:45] [PASSED] 0xD743 (NOVALAKE_S)
[12:57:45] [PASSED] 0xD744 (NOVALAKE_S)
[12:57:45] [PASSED] 0xD745 (NOVALAKE_S)
[12:57:45] [PASSED] 0x674C (CRESCENTISLAND)
[12:57:45] [PASSED] 0xFD80 (PANTHERLAKE)
[12:57:45] [PASSED] 0xFD81 (PANTHERLAKE)
[12:57:45] =============== [PASSED] check_platform_desc ===============
[12:57:45] ===================== [PASSED] xe_pci ======================
[12:57:45] =================== xe_rtp (2 subtests) ====================
[12:57:45] =============== xe_rtp_process_to_sr_tests ================
[12:57:45] [PASSED] coalesce-same-reg
[12:57:45] [PASSED] no-match-no-add
[12:57:45] [PASSED] match-or
[12:57:45] [PASSED] match-or-xfail
[12:57:45] [PASSED] no-match-no-add-multiple-rules
[12:57:45] [PASSED] two-regs-two-entries
[12:57:45] [PASSED] clr-one-set-other
[12:57:45] [PASSED] set-field
[12:57:45] [PASSED] conflict-duplicate
[12:57:45] [PASSED] conflict-not-disjoint
[12:57:45] [PASSED] conflict-reg-type
[12:57:45] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:57:45] ================== xe_rtp_process_tests ===================
[12:57:45] [PASSED] active1
[12:57:45] [PASSED] active2
[12:57:45] [PASSED] active-inactive
[12:57:45] [PASSED] inactive-active
[12:57:45] [PASSED] inactive-1st_or_active-inactive
[12:57:45] [PASSED] inactive-2nd_or_active-inactive
[12:57:45] [PASSED] inactive-last_or_active-inactive
[12:57:45] [PASSED] inactive-no_or_active-inactive
[12:57:45] ============== [PASSED] xe_rtp_process_tests ===============
[12:57:45] ===================== [PASSED] xe_rtp ======================
[12:57:45] ==================== xe_wa (1 subtest) =====================
[12:57:45] ======================== xe_wa_gt =========================
[12:57:45] [PASSED] TIGERLAKE B0
[12:57:45] [PASSED] DG1 A0
[12:57:45] [PASSED] DG1 B0
[12:57:45] [PASSED] ALDERLAKE_S A0
[12:57:45] [PASSED] ALDERLAKE_S B0
[12:57:45] [PASSED] ALDERLAKE_S C0
[12:57:45] [PASSED] ALDERLAKE_S D0
[12:57:45] [PASSED] ALDERLAKE_P A0
[12:57:45] [PASSED] ALDERLAKE_P B0
[12:57:45] [PASSED] ALDERLAKE_P C0
[12:57:45] [PASSED] ALDERLAKE_S RPLS D0
[12:57:45] [PASSED] ALDERLAKE_P RPLU E0
[12:57:45] [PASSED] DG2 G10 C0
[12:57:45] [PASSED] DG2 G11 B1
[12:57:45] [PASSED] DG2 G12 A1
[12:57:45] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:57:45] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:57:45] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:57:45] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:57:45] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:57:45] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:57:45] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:57:45] ==================== [PASSED] xe_wa_gt =====================
[12:57:45] ====================== [PASSED] xe_wa ======================
[12:57:45] ============================================================
[12:57:45] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[12:57:45] Elapsed time: 41.923s total, 4.290s configuring, 37.115s building, 0.473s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:57:45] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:57:47] 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=25
[12:58:17] Starting KUnit Kernel (1/1)...
[12:58:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:58:17] ============ drm_test_pick_cmdline (2 subtests) ============
[12:58:17] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:58:17] =============== drm_test_pick_cmdline_named ===============
[12:58:17] [PASSED] NTSC
[12:58:17] [PASSED] NTSC-J
[12:58:17] [PASSED] PAL
[12:58:17] [PASSED] PAL-M
[12:58:17] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:58:17] ============== [PASSED] drm_test_pick_cmdline ==============
[12:58:17] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:58:17] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:58:17] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:58:17] =========== drm_validate_clone_mode (2 subtests) ===========
[12:58:17] ============== drm_test_check_in_clone_mode ===============
[12:58:17] [PASSED] in_clone_mode
[12:58:17] [PASSED] not_in_clone_mode
[12:58:17] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:58:17] =============== drm_test_check_valid_clones ===============
[12:58:17] [PASSED] not_in_clone_mode
[12:58:17] [PASSED] valid_clone
[12:58:17] [PASSED] invalid_clone
[12:58:17] =========== [PASSED] drm_test_check_valid_clones ===========
[12:58:17] ============= [PASSED] drm_validate_clone_mode =============
[12:58:17] ============= drm_validate_modeset (1 subtest) =============
[12:58:17] [PASSED] drm_test_check_connector_changed_modeset
[12:58:17] ============== [PASSED] drm_validate_modeset ===============
[12:58:17] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:58:17] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:58:17] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:58:17] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:58:17] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:58:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:58:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:58:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:58:17] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:58:17] ============== drm_bridge_alloc (2 subtests) ===============
[12:58:17] [PASSED] drm_test_drm_bridge_alloc_basic
[12:58:17] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:58:17] ================ [PASSED] drm_bridge_alloc =================
[12:58:17] ================== drm_buddy (8 subtests) ==================
[12:58:17] [PASSED] drm_test_buddy_alloc_limit
[12:58:17] [PASSED] drm_test_buddy_alloc_optimistic
[12:58:17] [PASSED] drm_test_buddy_alloc_pessimistic
[12:58:17] [PASSED] drm_test_buddy_alloc_pathological
[12:58:17] [PASSED] drm_test_buddy_alloc_contiguous
[12:58:17] [PASSED] drm_test_buddy_alloc_clear
[12:58:17] [PASSED] drm_test_buddy_alloc_range_bias
[12:58:17] [PASSED] drm_test_buddy_fragmentation_performance
[12:58:17] ==================== [PASSED] drm_buddy ====================
[12:58:17] ============= drm_cmdline_parser (40 subtests) =============
[12:58:17] [PASSED] drm_test_cmdline_force_d_only
[12:58:17] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:58:17] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:58:17] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:58:17] [PASSED] drm_test_cmdline_force_e_only
[12:58:17] [PASSED] drm_test_cmdline_res
[12:58:17] [PASSED] drm_test_cmdline_res_vesa
[12:58:17] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:58:17] [PASSED] drm_test_cmdline_res_rblank
[12:58:17] [PASSED] drm_test_cmdline_res_bpp
[12:58:17] [PASSED] drm_test_cmdline_res_refresh
[12:58:17] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:58:17] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:58:17] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:58:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:58:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:58:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:58:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:58:17] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:58:17] [PASSED] drm_test_cmdline_res_margins_force_on
[12:58:17] [PASSED] drm_test_cmdline_res_vesa_margins
[12:58:17] [PASSED] drm_test_cmdline_name
[12:58:17] [PASSED] drm_test_cmdline_name_bpp
[12:58:17] [PASSED] drm_test_cmdline_name_option
[12:58:17] [PASSED] drm_test_cmdline_name_bpp_option
[12:58:17] [PASSED] drm_test_cmdline_rotate_0
[12:58:17] [PASSED] drm_test_cmdline_rotate_90
[12:58:17] [PASSED] drm_test_cmdline_rotate_180
[12:58:17] [PASSED] drm_test_cmdline_rotate_270
[12:58:17] [PASSED] drm_test_cmdline_hmirror
[12:58:17] [PASSED] drm_test_cmdline_vmirror
[12:58:17] [PASSED] drm_test_cmdline_margin_options
[12:58:17] [PASSED] drm_test_cmdline_multiple_options
[12:58:17] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:58:17] [PASSED] drm_test_cmdline_extra_and_option
[12:58:17] [PASSED] drm_test_cmdline_freestanding_options
[12:58:17] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:58:17] [PASSED] drm_test_cmdline_panel_orientation
[12:58:17] ================ drm_test_cmdline_invalid =================
[12:58:17] [PASSED] margin_only
[12:58:17] [PASSED] interlace_only
[12:58:17] [PASSED] res_missing_x
[12:58:17] [PASSED] res_missing_y
[12:58:17] [PASSED] res_bad_y
[12:58:17] [PASSED] res_missing_y_bpp
[12:58:17] [PASSED] res_bad_bpp
[12:58:17] [PASSED] res_bad_refresh
[12:58:17] [PASSED] res_bpp_refresh_force_on_off
[12:58:17] [PASSED] res_invalid_mode
[12:58:17] [PASSED] res_bpp_wrong_place_mode
[12:58:17] [PASSED] name_bpp_refresh
[12:58:17] [PASSED] name_refresh
[12:58:17] [PASSED] name_refresh_wrong_mode
[12:58:17] [PASSED] name_refresh_invalid_mode
[12:58:17] [PASSED] rotate_multiple
[12:58:17] [PASSED] rotate_invalid_val
[12:58:17] [PASSED] rotate_truncated
[12:58:17] [PASSED] invalid_option
[12:58:17] [PASSED] invalid_tv_option
[12:58:17] [PASSED] truncated_tv_option
[12:58:17] ============ [PASSED] drm_test_cmdline_invalid =============
[12:58:17] =============== drm_test_cmdline_tv_options ===============
[12:58:17] [PASSED] NTSC
[12:58:17] [PASSED] NTSC_443
[12:58:17] [PASSED] NTSC_J
[12:58:17] [PASSED] PAL
[12:58:17] [PASSED] PAL_M
[12:58:17] [PASSED] PAL_N
[12:58:17] [PASSED] SECAM
[12:58:17] [PASSED] MONO_525
[12:58:17] [PASSED] MONO_625
[12:58:17] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:58:17] =============== [PASSED] drm_cmdline_parser ================
[12:58:17] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:58:17] [PASSED] drm_test_connector_hdmi_init_valid
[12:58:17] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:58:17] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:58:17] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:58:17] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:58:17] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:58:17] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:58:17] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:58:17] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:58:17] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:58:17] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:58:17] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:58:17] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:58:17] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:58:17] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:58:17] [PASSED] drm_test_connector_hdmi_init_null_product
[12:58:17] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:58:17] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:58:17] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:58:17] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:58:17] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:58:17] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:58:17] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:58:17] ========= drm_test_connector_hdmi_init_type_valid =========
[12:58:17] [PASSED] HDMI-A
[12:58:17] [PASSED] HDMI-B
[12:58:17] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:58:17] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:58:17] [PASSED] Unknown
[12:58:17] [PASSED] VGA
[12:58:17] [PASSED] DVI-I
[12:58:17] [PASSED] DVI-D
[12:58:17] [PASSED] DVI-A
[12:58:17] [PASSED] Composite
[12:58:17] [PASSED] SVIDEO
[12:58:17] [PASSED] LVDS
[12:58:17] [PASSED] Component
[12:58:17] [PASSED] DIN
[12:58:17] [PASSED] DP
[12:58:17] [PASSED] TV
[12:58:17] [PASSED] eDP
[12:58:17] [PASSED] Virtual
[12:58:17] [PASSED] DSI
[12:58:17] [PASSED] DPI
[12:58:17] [PASSED] Writeback
[12:58:17] [PASSED] SPI
[12:58:17] [PASSED] USB
[12:58:17] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:58:17] ============ [PASSED] drmm_connector_hdmi_init =============
[12:58:17] ============= drmm_connector_init (3 subtests) =============
[12:58:17] [PASSED] drm_test_drmm_connector_init
[12:58:17] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:58:17] ========= drm_test_drmm_connector_init_type_valid =========
[12:58:17] [PASSED] Unknown
[12:58:17] [PASSED] VGA
[12:58:17] [PASSED] DVI-I
[12:58:17] [PASSED] DVI-D
[12:58:17] [PASSED] DVI-A
[12:58:17] [PASSED] Composite
[12:58:17] [PASSED] SVIDEO
[12:58:17] [PASSED] LVDS
[12:58:17] [PASSED] Component
[12:58:17] [PASSED] DIN
[12:58:17] [PASSED] DP
[12:58:17] [PASSED] HDMI-A
[12:58:17] [PASSED] HDMI-B
[12:58:17] [PASSED] TV
[12:58:17] [PASSED] eDP
[12:58:17] [PASSED] Virtual
[12:58:17] [PASSED] DSI
[12:58:17] [PASSED] DPI
[12:58:17] [PASSED] Writeback
[12:58:17] [PASSED] SPI
[12:58:17] [PASSED] USB
[12:58:17] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:58:17] =============== [PASSED] drmm_connector_init ===============
[12:58:17] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_init
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:58:17] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:58:17] [PASSED] Unknown
[12:58:17] [PASSED] VGA
[12:58:17] [PASSED] DVI-I
[12:58:17] [PASSED] DVI-D
[12:58:17] [PASSED] DVI-A
[12:58:17] [PASSED] Composite
[12:58:17] [PASSED] SVIDEO
[12:58:17] [PASSED] LVDS
[12:58:17] [PASSED] Component
[12:58:17] [PASSED] DIN
[12:58:17] [PASSED] DP
[12:58:17] [PASSED] HDMI-A
[12:58:17] [PASSED] HDMI-B
[12:58:17] [PASSED] TV
[12:58:17] [PASSED] eDP
[12:58:17] [PASSED] Virtual
[12:58:17] [PASSED] DSI
[12:58:17] [PASSED] DPI
[12:58:17] [PASSED] Writeback
[12:58:17] [PASSED] SPI
[12:58:17] [PASSED] USB
[12:58:17] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:58:17] ======== drm_test_drm_connector_dynamic_init_name =========
[12:58:17] [PASSED] Unknown
[12:58:17] [PASSED] VGA
[12:58:17] [PASSED] DVI-I
[12:58:17] [PASSED] DVI-D
[12:58:17] [PASSED] DVI-A
[12:58:17] [PASSED] Composite
[12:58:17] [PASSED] SVIDEO
[12:58:17] [PASSED] LVDS
[12:58:17] [PASSED] Component
[12:58:17] [PASSED] DIN
[12:58:17] [PASSED] DP
[12:58:17] [PASSED] HDMI-A
[12:58:17] [PASSED] HDMI-B
[12:58:17] [PASSED] TV
[12:58:17] [PASSED] eDP
[12:58:17] [PASSED] Virtual
[12:58:17] [PASSED] DSI
[12:58:17] [PASSED] DPI
[12:58:17] [PASSED] Writeback
[12:58:17] [PASSED] SPI
[12:58:17] [PASSED] USB
[12:58:17] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:58:17] =========== [PASSED] drm_connector_dynamic_init ============
[12:58:17] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:58:17] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:58:17] ======= drm_connector_dynamic_register (7 subtests) ========
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:58:17] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:58:17] ========= [PASSED] drm_connector_dynamic_register ==========
[12:58:17] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:58:17] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:58:17] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:58:17] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:58:17] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:58:17] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:58:17] [PASSED] NTSC
[12:58:17] [PASSED] NTSC-443
[12:58:17] [PASSED] NTSC-J
[12:58:17] [PASSED] PAL
[12:58:17] [PASSED] PAL-M
[12:58:17] [PASSED] PAL-N
[12:58:17] [PASSED] SECAM
[12:58:17] [PASSED] Mono
[12:58:17] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:58:17] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:58:17] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:58:17] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:58:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:58:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:58:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:58:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:58:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:58:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:58:17] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:58:17] [PASSED] VIC 96
[12:58:17] [PASSED] VIC 97
[12:58:17] [PASSED] VIC 101
[12:58:17] [PASSED] VIC 102
[12:58:17] [PASSED] VIC 106
[12:58:17] [PASSED] VIC 107
[12:58:17] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:58:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:58:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:58:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:58:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:58:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:58:17] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:58:17] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:58:17] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:58:17] [PASSED] Automatic
[12:58:17] [PASSED] Full
[12:58:17] [PASSED] Limited 16:235
[12:58:17] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:58:17] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:58:17] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:58:17] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:58:17] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:58:17] [PASSED] RGB
[12:58:17] [PASSED] YUV 4:2:0
[12:58:17] [PASSED] YUV 4:2:2
[12:58:17] [PASSED] YUV 4:4:4
[12:58:17] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:58:17] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:58:17] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:58:17] ============= drm_damage_helper (21 subtests) ==============
[12:58:17] [PASSED] drm_test_damage_iter_no_damage
[12:58:17] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:58:17] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:58:17] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:58:17] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:58:17] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:58:17] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:58:17] [PASSED] drm_test_damage_iter_simple_damage
[12:58:17] [PASSED] drm_test_damage_iter_single_damage
[12:58:17] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:58:17] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:58:17] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:58:17] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:58:17] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:58:17] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:58:17] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:58:17] [PASSED] drm_test_damage_iter_damage
[12:58:17] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:58:17] [PASSED] drm_test_damage_iter_damage_one_outside
[12:58:17] [PASSED] drm_test_damage_iter_damage_src_moved
[12:58:17] [PASSED] drm_test_damage_iter_damage_not_visible
[12:58:17] ================ [PASSED] drm_damage_helper ================
[12:58:17] ============== drm_dp_mst_helper (3 subtests) ==============
[12:58:17] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:58:17] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:58:17] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:58:17] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:58:17] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:58:17] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:58:17] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:58:17] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:58:17] [PASSED] Link rate 2000000 lane count 4
[12:58:17] [PASSED] Link rate 2000000 lane count 2
[12:58:17] [PASSED] Link rate 2000000 lane count 1
[12:58:17] [PASSED] Link rate 1350000 lane count 4
[12:58:17] [PASSED] Link rate 1350000 lane count 2
[12:58:17] [PASSED] Link rate 1350000 lane count 1
[12:58:17] [PASSED] Link rate 1000000 lane count 4
[12:58:17] [PASSED] Link rate 1000000 lane count 2
[12:58:17] [PASSED] Link rate 1000000 lane count 1
[12:58:17] [PASSED] Link rate 810000 lane count 4
[12:58:17] [PASSED] Link rate 810000 lane count 2
[12:58:17] [PASSED] Link rate 810000 lane count 1
[12:58:17] [PASSED] Link rate 540000 lane count 4
[12:58:17] [PASSED] Link rate 540000 lane count 2
[12:58:17] [PASSED] Link rate 540000 lane count 1
[12:58:17] [PASSED] Link rate 270000 lane count 4
[12:58:17] [PASSED] Link rate 270000 lane count 2
[12:58:17] [PASSED] Link rate 270000 lane count 1
[12:58:17] [PASSED] Link rate 162000 lane count 4
[12:58:17] [PASSED] Link rate 162000 lane count 2
[12:58:17] [PASSED] Link rate 162000 lane count 1
[12:58:17] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:58:17] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:58:17] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:58:17] [PASSED] DP_POWER_UP_PHY with port number
[12:58:17] [PASSED] DP_POWER_DOWN_PHY with port number
[12:58:17] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:58:17] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:58:17] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:58:17] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:58:17] [PASSED] DP_QUERY_PAYLOAD with port number
[12:58:17] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:58:17] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:58:17] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:58:17] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:58:17] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:58:17] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:58:17] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:58:17] [PASSED] DP_REMOTE_I2C_READ with port number
[12:58:17] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:58:17] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:58:17] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:58:17] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:58:17] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:58:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:58:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:58:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:58:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:58:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:58:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:58:17] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:58:17] ================ [PASSED] drm_dp_mst_helper ================
[12:58:17] ================== drm_exec (7 subtests) ===================
[12:58:17] [PASSED] sanitycheck
[12:58:17] [PASSED] test_lock
[12:58:17] [PASSED] test_lock_unlock
[12:58:17] [PASSED] test_duplicates
[12:58:17] [PASSED] test_prepare
[12:58:17] [PASSED] test_prepare_array
[12:58:17] [PASSED] test_multiple_loops
[12:58:17] ==================== [PASSED] drm_exec =====================
[12:58:17] =========== drm_format_helper_test (17 subtests) ===========
[12:58:17] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:58:17] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:58:17] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:58:17] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:58:17] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:58:17] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:58:17] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:58:17] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:58:17] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:58:17] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:58:17] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:58:17] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:58:17] ==================== drm_test_fb_swab =====================
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ================ [PASSED] drm_test_fb_swab =================
[12:58:17] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:58:17] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:58:17] [PASSED] single_pixel_source_buffer
[12:58:17] [PASSED] single_pixel_clip_rectangle
[12:58:17] [PASSED] well_known_colors
[12:58:17] [PASSED] destination_pitch
[12:58:17] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:58:17] ================= drm_test_fb_clip_offset =================
[12:58:17] [PASSED] pass through
[12:58:17] [PASSED] horizontal offset
[12:58:17] [PASSED] vertical offset
[12:58:17] [PASSED] horizontal and vertical offset
[12:58:17] [PASSED] horizontal offset (custom pitch)
[12:58:17] [PASSED] vertical offset (custom pitch)
[12:58:17] [PASSED] horizontal and vertical offset (custom pitch)
[12:58:17] ============= [PASSED] drm_test_fb_clip_offset =============
[12:58:17] =================== drm_test_fb_memcpy ====================
[12:58:17] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:58:17] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:58:17] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:58:17] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:58:17] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:58:17] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:58:17] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:58:17] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:58:17] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:58:17] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:58:17] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:58:17] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:58:17] =============== [PASSED] drm_test_fb_memcpy ================
[12:58:17] ============= [PASSED] drm_format_helper_test ==============
[12:58:17] ================= drm_format (18 subtests) =================
[12:58:17] [PASSED] drm_test_format_block_width_invalid
[12:58:17] [PASSED] drm_test_format_block_width_one_plane
[12:58:17] [PASSED] drm_test_format_block_width_two_plane
[12:58:17] [PASSED] drm_test_format_block_width_three_plane
[12:58:17] [PASSED] drm_test_format_block_width_tiled
[12:58:17] [PASSED] drm_test_format_block_height_invalid
[12:58:17] [PASSED] drm_test_format_block_height_one_plane
[12:58:17] [PASSED] drm_test_format_block_height_two_plane
[12:58:17] [PASSED] drm_test_format_block_height_three_plane
[12:58:17] [PASSED] drm_test_format_block_height_tiled
[12:58:17] [PASSED] drm_test_format_min_pitch_invalid
[12:58:17] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:58:17] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:58:17] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:58:17] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:58:17] [PASSED] drm_test_format_min_pitch_two_plane
[12:58:17] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:58:17] [PASSED] drm_test_format_min_pitch_tiled
[12:58:17] =================== [PASSED] drm_format ====================
[12:58:17] ============== drm_framebuffer (10 subtests) ===============
[12:58:17] ========== drm_test_framebuffer_check_src_coords ==========
[12:58:17] [PASSED] Success: source fits into fb
[12:58:17] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:58:17] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:58:17] [PASSED] Fail: overflowing fb with source width
[12:58:17] [PASSED] Fail: overflowing fb with source height
[12:58:17] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:58:17] [PASSED] drm_test_framebuffer_cleanup
[12:58:17] =============== drm_test_framebuffer_create ===============
[12:58:17] [PASSED] ABGR8888 normal sizes
[12:58:17] [PASSED] ABGR8888 max sizes
[12:58:17] [PASSED] ABGR8888 pitch greater than min required
[12:58:17] [PASSED] ABGR8888 pitch less than min required
[12:58:17] [PASSED] ABGR8888 Invalid width
[12:58:17] [PASSED] ABGR8888 Invalid buffer handle
[12:58:17] [PASSED] No pixel format
[12:58:17] [PASSED] ABGR8888 Width 0
[12:58:17] [PASSED] ABGR8888 Height 0
[12:58:17] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:58:17] [PASSED] ABGR8888 Large buffer offset
[12:58:17] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:58:17] [PASSED] ABGR8888 Invalid flag
[12:58:17] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:58:17] [PASSED] ABGR8888 Valid buffer modifier
[12:58:17] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:58:17] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:58:17] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:58:17] [PASSED] NV12 Normal sizes
[12:58:17] [PASSED] NV12 Max sizes
[12:58:17] [PASSED] NV12 Invalid pitch
[12:58:17] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:58:17] [PASSED] NV12 different modifier per-plane
[12:58:17] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:58:17] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:58:17] [PASSED] NV12 Modifier for inexistent plane
[12:58:17] [PASSED] NV12 Handle for inexistent plane
[12:58:17] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:58:17] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:58:17] [PASSED] YVU420 Normal sizes
[12:58:17] [PASSED] YVU420 Max sizes
[12:58:17] [PASSED] YVU420 Invalid pitch
[12:58:17] [PASSED] YVU420 Different pitches
[12:58:17] [PASSED] YVU420 Different buffer offsets/pitches
[12:58:17] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:58:17] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:58:17] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:58:17] [PASSED] YVU420 Valid modifier
[12:58:17] [PASSED] YVU420 Different modifiers per plane
[12:58:17] [PASSED] YVU420 Modifier for inexistent plane
[12:58:17] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:58:17] [PASSED] X0L2 Normal sizes
[12:58:17] [PASSED] X0L2 Max sizes
[12:58:17] [PASSED] X0L2 Invalid pitch
[12:58:17] [PASSED] X0L2 Pitch greater than minimum required
[12:58:17] [PASSED] X0L2 Handle for inexistent plane
[12:58:17] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:58:17] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:58:17] [PASSED] X0L2 Valid modifier
[12:58:17] [PASSED] X0L2 Modifier for inexistent plane
[12:58:17] =========== [PASSED] drm_test_framebuffer_create ===========
[12:58:17] [PASSED] drm_test_framebuffer_free
[12:58:17] [PASSED] drm_test_framebuffer_init
[12:58:17] [PASSED] drm_test_framebuffer_init_bad_format
[12:58:17] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:58:17] [PASSED] drm_test_framebuffer_lookup
[12:58:17] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:58:17] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:58:17] ================= [PASSED] drm_framebuffer =================
[12:58:17] ================ drm_gem_shmem (8 subtests) ================
[12:58:17] [PASSED] drm_gem_shmem_test_obj_create
[12:58:17] [PASSED] drm_gem_shmem_test_obj_create_private
[12:58:17] [PASSED] drm_gem_shmem_test_pin_pages
[12:58:17] [PASSED] drm_gem_shmem_test_vmap
[12:58:17] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:58:17] [PASSED] drm_gem_shmem_test_get_sg_table
[12:58:17] [PASSED] drm_gem_shmem_test_madvise
[12:58:17] [PASSED] drm_gem_shmem_test_purge
[12:58:17] ================== [PASSED] drm_gem_shmem ==================
[12:58:17] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:58:17] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:58:17] [PASSED] Automatic
[12:58:17] [PASSED] Full
[12:58:17] [PASSED] Limited 16:235
[12:58:17] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:58:17] [PASSED] drm_test_check_disable_connector
[12:58:17] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:58:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:58:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:58:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:58:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:58:17] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:58:17] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:58:17] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:58:17] [PASSED] drm_test_check_output_bpc_dvi
[12:58:17] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:58:17] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:58:17] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:58:17] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:58:17] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:58:17] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:58:17] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:58:17] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:58:17] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:58:17] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:58:17] [PASSED] drm_test_check_broadcast_rgb_value
[12:58:17] [PASSED] drm_test_check_bpc_8_value
[12:58:17] [PASSED] drm_test_check_bpc_10_value
[12:58:17] [PASSED] drm_test_check_bpc_12_value
[12:58:17] [PASSED] drm_test_check_format_value
[12:58:17] [PASSED] drm_test_check_tmds_char_value
[12:58:17] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:58:17] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:58:17] [PASSED] drm_test_check_mode_valid
[12:58:17] [PASSED] drm_test_check_mode_valid_reject
[12:58:17] [PASSED] drm_test_check_mode_valid_reject_rate
[12:58:17] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:58:17] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:58:17] ================= drm_managed (2 subtests) =================
[12:58:17] [PASSED] drm_test_managed_release_action
[12:58:17] [PASSED] drm_test_managed_run_action
[12:58:17] =================== [PASSED] drm_managed ===================
[12:58:17] =================== drm_mm (6 subtests) ====================
[12:58:17] [PASSED] drm_test_mm_init
[12:58:17] [PASSED] drm_test_mm_debug
[12:58:17] [PASSED] drm_test_mm_align32
[12:58:17] [PASSED] drm_test_mm_align64
[12:58:17] [PASSED] drm_test_mm_lowest
[12:58:17] [PASSED] drm_test_mm_highest
[12:58:17] ===================== [PASSED] drm_mm ======================
[12:58:17] ============= drm_modes_analog_tv (5 subtests) =============
[12:58:17] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:58:17] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:58:17] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:58:17] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:58:17] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:58:17] =============== [PASSED] drm_modes_analog_tv ===============
[12:58:17] ============== drm_plane_helper (2 subtests) ===============
[12:58:17] =============== drm_test_check_plane_state ================
[12:58:17] [PASSED] clipping_simple
[12:58:17] [PASSED] clipping_rotate_reflect
[12:58:17] [PASSED] positioning_simple
[12:58:17] [PASSED] upscaling
[12:58:17] [PASSED] downscaling
[12:58:17] [PASSED] rounding1
[12:58:17] [PASSED] rounding2
[12:58:17] [PASSED] rounding3
[12:58:17] [PASSED] rounding4
[12:58:17] =========== [PASSED] drm_test_check_plane_state ============
[12:58:17] =========== drm_test_check_invalid_plane_state ============
[12:58:17] [PASSED] positioning_invalid
[12:58:17] [PASSED] upscaling_invalid
[12:58:17] [PASSED] downscaling_invalid
[12:58:17] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:58:17] ================ [PASSED] drm_plane_helper =================
[12:58:17] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:58:17] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:58:17] [PASSED] None
[12:58:17] [PASSED] PAL
[12:58:17] [PASSED] NTSC
[12:58:17] [PASSED] Both, NTSC Default
[12:58:17] [PASSED] Both, PAL Default
[12:58:17] [PASSED] Both, NTSC Default, with PAL on command-line
[12:58:17] [PASSED] Both, PAL Default, with NTSC on command-line
[12:58:17] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:58:17] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:58:17] ================== drm_rect (9 subtests) ===================
[12:58:17] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:58:17] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:58:17] [PASSED] drm_test_rect_clip_scaled_clipped
[12:58:17] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:58:17] ================= drm_test_rect_intersect =================
[12:58:17] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:58:17] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:58:17] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:58:17] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:58:17] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:58:17] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:58:17] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:58:17] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:58:17] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:58:17] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:58:17] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:58:17] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:58:17] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:58:17] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:58:17] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:58:17] ============= [PASSED] drm_test_rect_intersect =============
[12:58:17] ================ drm_test_rect_calc_hscale ================
[12:58:17] [PASSED] normal use
[12:58:17] [PASSED] out of max range
[12:58:17] [PASSED] out of min range
[12:58:17] [PASSED] zero dst
[12:58:17] [PASSED] negative src
[12:58:17] [PASSED] negative dst
[12:58:17] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:58:17] ================ drm_test_rect_calc_vscale ================
[12:58:17] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[12:58:17] [PASSED] out of max range
[12:58:17] [PASSED] out of min range
[12:58:17] [PASSED] zero dst
[12:58:17] [PASSED] negative src
[12:58:17] [PASSED] negative dst
[12:58:17] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:58:17] ================== drm_test_rect_rotate ===================
[12:58:17] [PASSED] reflect-x
[12:58:17] [PASSED] reflect-y
[12:58:17] [PASSED] rotate-0
[12:58:17] [PASSED] rotate-90
[12:58:17] [PASSED] rotate-180
[12:58:17] [PASSED] rotate-270
[12:58:17] ============== [PASSED] drm_test_rect_rotate ===============
[12:58:17] ================ drm_test_rect_rotate_inv =================
[12:58:17] [PASSED] reflect-x
[12:58:17] [PASSED] reflect-y
[12:58:17] [PASSED] rotate-0
[12:58:17] [PASSED] rotate-90
[12:58:17] [PASSED] rotate-180
[12:58:17] [PASSED] rotate-270
[12:58:17] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:58:17] ==================== [PASSED] drm_rect =====================
[12:58:17] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:58:17] ============ drm_test_sysfb_build_fourcc_list =============
[12:58:17] [PASSED] no native formats
[12:58:17] [PASSED] XRGB8888 as native format
[12:58:17] [PASSED] remove duplicates
[12:58:17] [PASSED] convert alpha formats
[12:58:17] [PASSED] random formats
[12:58:17] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:58:17] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:58:17] ================== drm_fixp (2 subtests) ===================
[12:58:17] [PASSED] drm_test_int2fixp
[12:58:17] [PASSED] drm_test_sm2fixp
[12:58:17] ==================== [PASSED] drm_fixp =====================
[12:58:17] ============================================================
[12:58:17] Testing complete. Ran 624 tests: passed: 624
[12:58:17] Elapsed time: 31.925s total, 1.640s configuring, 29.818s building, 0.409s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:58:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:58:19] 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=25
[12:58:28] Starting KUnit Kernel (1/1)...
[12:58:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:58:28] ================= ttm_device (5 subtests) ==================
[12:58:28] [PASSED] ttm_device_init_basic
[12:58:28] [PASSED] ttm_device_init_multiple
[12:58:28] [PASSED] ttm_device_fini_basic
[12:58:28] [PASSED] ttm_device_init_no_vma_man
[12:58:28] ================== ttm_device_init_pools ==================
[12:58:28] [PASSED] No DMA allocations, no DMA32 required
[12:58:28] [PASSED] DMA allocations, DMA32 required
[12:58:28] [PASSED] No DMA allocations, DMA32 required
[12:58:28] [PASSED] DMA allocations, no DMA32 required
[12:58:28] ============== [PASSED] ttm_device_init_pools ==============
[12:58:28] =================== [PASSED] ttm_device ====================
[12:58:28] ================== ttm_pool (8 subtests) ===================
[12:58:28] ================== ttm_pool_alloc_basic ===================
[12:58:28] [PASSED] One page
[12:58:28] [PASSED] More than one page
[12:58:28] [PASSED] Above the allocation limit
[12:58:28] [PASSED] One page, with coherent DMA mappings enabled
[12:58:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:58:28] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:58:28] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:58:28] [PASSED] One page
[12:58:28] [PASSED] More than one page
[12:58:28] [PASSED] Above the allocation limit
[12:58:28] [PASSED] One page, with coherent DMA mappings enabled
[12:58:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:58:28] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:58:28] [PASSED] ttm_pool_alloc_order_caching_match
[12:58:28] [PASSED] ttm_pool_alloc_caching_mismatch
[12:58:28] [PASSED] ttm_pool_alloc_order_mismatch
[12:58:28] [PASSED] ttm_pool_free_dma_alloc
[12:58:28] [PASSED] ttm_pool_free_no_dma_alloc
[12:58:28] [PASSED] ttm_pool_fini_basic
[12:58:28] ==================== [PASSED] ttm_pool =====================
[12:58:28] ================ ttm_resource (8 subtests) =================
[12:58:28] ================= ttm_resource_init_basic =================
[12:58:28] [PASSED] Init resource in TTM_PL_SYSTEM
[12:58:28] [PASSED] Init resource in TTM_PL_VRAM
[12:58:28] [PASSED] Init resource in a private placement
[12:58:28] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:58:28] ============= [PASSED] ttm_resource_init_basic =============
[12:58:28] [PASSED] ttm_resource_init_pinned
[12:58:28] [PASSED] ttm_resource_fini_basic
[12:58:28] [PASSED] ttm_resource_manager_init_basic
[12:58:28] [PASSED] ttm_resource_manager_usage_basic
[12:58:28] [PASSED] ttm_resource_manager_set_used_basic
[12:58:28] [PASSED] ttm_sys_man_alloc_basic
[12:58:28] [PASSED] ttm_sys_man_free_basic
[12:58:28] ================== [PASSED] ttm_resource ===================
[12:58:28] =================== ttm_tt (15 subtests) ===================
[12:58:28] ==================== ttm_tt_init_basic ====================
[12:58:28] [PASSED] Page-aligned size
[12:58:28] [PASSED] Extra pages requested
[12:58:28] ================ [PASSED] ttm_tt_init_basic ================
[12:58:28] [PASSED] ttm_tt_init_misaligned
[12:58:28] [PASSED] ttm_tt_fini_basic
[12:58:28] [PASSED] ttm_tt_fini_sg
[12:58:28] [PASSED] ttm_tt_fini_shmem
[12:58:28] [PASSED] ttm_tt_create_basic
[12:58:28] [PASSED] ttm_tt_create_invalid_bo_type
[12:58:28] [PASSED] ttm_tt_create_ttm_exists
[12:58:28] [PASSED] ttm_tt_create_failed
[12:58:28] [PASSED] ttm_tt_destroy_basic
[12:58:28] [PASSED] ttm_tt_populate_null_ttm
[12:58:28] [PASSED] ttm_tt_populate_populated_ttm
[12:58:28] [PASSED] ttm_tt_unpopulate_basic
[12:58:28] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:58:28] [PASSED] ttm_tt_swapin_basic
[12:58:28] ===================== [PASSED] ttm_tt ======================
[12:58:28] =================== ttm_bo (14 subtests) ===================
[12:58:28] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:58:28] [PASSED] Cannot be interrupted and sleeps
[12:58:28] [PASSED] Cannot be interrupted, locks straight away
[12:58:28] [PASSED] Can be interrupted, sleeps
[12:58:28] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:58:28] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:58:28] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:58:28] [PASSED] ttm_bo_reserve_double_resv
[12:58:28] [PASSED] ttm_bo_reserve_interrupted
[12:58:28] [PASSED] ttm_bo_reserve_deadlock
[12:58:28] [PASSED] ttm_bo_unreserve_basic
[12:58:28] [PASSED] ttm_bo_unreserve_pinned
[12:58:28] [PASSED] ttm_bo_unreserve_bulk
[12:58:28] [PASSED] ttm_bo_fini_basic
[12:58:28] [PASSED] ttm_bo_fini_shared_resv
[12:58:28] [PASSED] ttm_bo_pin_basic
[12:58:28] [PASSED] ttm_bo_pin_unpin_resource
[12:58:28] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:58:28] ===================== [PASSED] ttm_bo ======================
[12:58:28] ============== ttm_bo_validate (21 subtests) ===============
[12:58:28] ============== ttm_bo_init_reserved_sys_man ===============
[12:58:28] [PASSED] Buffer object for userspace
[12:58:28] [PASSED] Kernel buffer object
[12:58:28] [PASSED] Shared buffer object
[12:58:28] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:58:28] ============== ttm_bo_init_reserved_mock_man ==============
[12:58:28] [PASSED] Buffer object for userspace
[12:58:28] [PASSED] Kernel buffer object
[12:58:28] [PASSED] Shared buffer object
[12:58:28] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:58:28] [PASSED] ttm_bo_init_reserved_resv
[12:58:28] ================== ttm_bo_validate_basic ==================
[12:58:28] [PASSED] Buffer object for userspace
[12:58:28] [PASSED] Kernel buffer object
[12:58:28] [PASSED] Shared buffer object
[12:58:28] ============== [PASSED] ttm_bo_validate_basic ==============
[12:58:28] [PASSED] ttm_bo_validate_invalid_placement
[12:58:28] ============= ttm_bo_validate_same_placement ==============
[12:58:28] [PASSED] System manager
[12:58:28] [PASSED] VRAM manager
[12:58:28] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:58:28] [PASSED] ttm_bo_validate_failed_alloc
[12:58:28] [PASSED] ttm_bo_validate_pinned
[12:58:28] [PASSED] ttm_bo_validate_busy_placement
[12:58:28] ================ ttm_bo_validate_multihop =================
[12:58:28] [PASSED] Buffer object for userspace
[12:58:28] [PASSED] Kernel buffer object
[12:58:28] [PASSED] Shared buffer object
[12:58:28] ============ [PASSED] ttm_bo_validate_multihop =============
[12:58:28] ========== ttm_bo_validate_no_placement_signaled ==========
[12:58:28] [PASSED] Buffer object in system domain, no page vector
[12:58:28] [PASSED] Buffer object in system domain with an existing page vector
[12:58:28] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:58:28] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:58:28] [PASSED] Buffer object for userspace
[12:58:28] [PASSED] Kernel buffer object
[12:58:28] [PASSED] Shared buffer object
[12:58:28] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:58:28] [PASSED] ttm_bo_validate_move_fence_signaled
[12:58:28] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:58:28] [PASSED] Waits for GPU
[12:58:28] [PASSED] Tries to lock straight away
[12:58:28] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:58:28] [PASSED] ttm_bo_validate_happy_evict
[12:58:28] [PASSED] ttm_bo_validate_all_pinned_evict
[12:58:28] [PASSED] ttm_bo_validate_allowed_only_evict
[12:58:28] [PASSED] ttm_bo_validate_deleted_evict
[12:58:28] [PASSED] ttm_bo_validate_busy_domain_evict
[12:58:28] [PASSED] ttm_bo_validate_evict_gutting
[12:58:28] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:58:28] ================= [PASSED] ttm_bo_validate =================
[12:58:28] ============================================================
[12:58:28] Testing complete. Ran 101 tests: passed: 101
[12:58:28] Elapsed time: 11.089s total, 1.650s configuring, 9.172s building, 0.239s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [V9 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-11-28 12:38 ` [V9 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
@ 2025-11-28 13:21 ` Michal Wajdeczko
2025-11-28 17:10 ` [PATCH v1 0/2] " Nareshkumar Gollakoti
2025-11-28 17:16 ` [PATCH v1 0/2] drm/xe:Mutual " Nareshkumar Gollakoti
2 siblings, 0 replies; 31+ messages in thread
From: Michal Wajdeczko @ 2025-11-28 13:21 UTC (permalink / raw)
To: Nareshkumar Gollakoti, intel-xe
On 11/28/2025 1:38 PM, Nareshkumar Gollakoti wrote:
> Due to SLA agreement between PF and VFs,the alternate CCS-mode
> cannot be changed when VFs are already enabled.
> Similarly, enabling VFs is not permitted when the alternate
> CCS-mode is active. Additionally, the sysfs entry for
> CCS-mode is not created for SR-IOV VF mode.
maybe this VF-only change deserves to be in a earlier separate patch?
we could even add Fixes tag, as VFs should never expose this file
(unless it would be read-only file with (expected) fixed "1" mode)
>
> Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
> ---
> v2:
> - function xe_device_is_vf_enabled has been refactored to
> xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
> - The code now distinctly checks for SR-IOV VF mode and
> SR-IOV PF with VFs enabled.
> - Log messages have been updated to explicitly state the current mode.
> - The function xe_multi_ccs_mode_enabled is moved to xe_device.h
>
> v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
>
> v4:
> - sysfs interface for CCS mode is not initialized
> when operating in SRIOV VF Mode.
> - xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
> enablement.
> - remove unnecessary comments as flow is self explanatory.
>
> v5:(review comments from Michal)
> - Add xe device level CCS mode block with mutex lock and CCS mode state
> - necessesary functions to manage ccs mode state to provide strict mutual
> exclusive support b/w CCS mode & SRIOV VF enabling
>
> v6:
> - Re modeled implementation based on lockdown the PF using custom guard
> supported functions by Michal
>
> v7:
> - Corrected patch style as message written as subject
> - Used public PF lockdown functions instead internal funcions(Michal)
> - Creating CCS Mode entries only on PF Mode
>
> v8:(Michal)
> - updated short subject and few comments
> - used guard for mutex
> - Add a check of PF Mode to ensure use of xe_sriov_pf_lockdown only in
> PF Mode
> - Added default CCS mode check to xe_gt_ccs_mode_default(gt) function
>
> v9:(Michal)
> - Added xe_gt_ccs_mode_default(gt) as static inline and it can be used
> across driver to use between default or alternate CCS mode
> - removed comment from obvious code
> ---
> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 47 +++++++++++++++++++++++------
> drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++++
> 2 files changed, 49 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> index 50fffc9ebf62..8621c39cdf58 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> @@ -13,6 +13,7 @@
> #include "xe_gt_sysfs.h"
> #include "xe_mmio.h"
> #include "xe_sriov.h"
> +#include "xe_sriov_pf.h"
>
> static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
> {
> @@ -108,6 +109,35 @@ ccs_mode_show(struct device *kdev,
> return sysfs_emit(buf, "%u\n", gt->ccs_mode);
> }
>
> +static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (!IS_SRIOV_PF(xe))
> + return 0;
> +
> + /*
> + * We can't change CCS-mode when VFs are already enabled
> + * and we must prevent enabling VFs when alternate
> + * CCS-mode is active
> + */
> + if (xe_gt_ccs_mode_default(gt))
> + return xe_sriov_pf_lockdown(xe);
> +
> + return 0;
> +}
> +
> +static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (IS_SRIOV_PF(xe)) {
maybe we can use the same logic flow as in 'prepare' function above:
exit early if !PF
> + /* Allow enabling VFs, if CCS-mode changed to default mode */
> + if (xe_gt_ccs_mode_default(gt))
> + xe_sriov_pf_end_lockdown(xe);
> + }
> +}
> +
> static ssize_t
> ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> const char *buff, size_t count)
> @@ -117,12 +147,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> u32 num_engines, num_slices;
> int ret;
>
> - if (IS_SRIOV(xe)) {
> - xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
> - xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
> - return -EOPNOTSUPP;
> - }
> -
> ret = kstrtou32(buff, 0, &num_engines);
> if (ret)
> return ret;
> @@ -139,13 +163,16 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> }
>
> /* CCS mode can only be updated when there are no drm clients */
> - mutex_lock(&xe->drm.filelist_mutex);
> + guard(mutex)(&xe->drm.filelist_mutex);
> if (!list_empty(&xe->drm.filelist)) {
> - mutex_unlock(&xe->drm.filelist_mutex);
> xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
> return -EBUSY;
> }
>
> + ret = gt_prepare_ccs_mode_enabling(gt);
> + if (ret)
> + return ret;
don't you want to add some dbg message why the change is rejected"
xe_gt_dbg(gt, "Rejecting compute mode change as VFs are enabled\n");
> +
> if (gt->ccs_mode != num_engines) {
btw, shouldn't this be checked earlier?
then if requested mode matches current mode we could still return success,
even it there are drm clients and/or VFs are enabled (or was this done on
purpose?
> xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
> gt->ccs_mode = num_engines;
> @@ -153,7 +180,7 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> xe_gt_reset(gt);
> }
>
> - mutex_unlock(&xe->drm.filelist_mutex);
> + gt_finish_ccs_mode_enabling(gt);
>
> return count;
> }
> @@ -191,7 +218,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
> struct xe_device *xe = gt_to_xe(gt);
> int err;
>
> - if (!xe_gt_ccs_mode_enabled(gt))
> + if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
> return 0;
>
> err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> index f8779852cf0d..c5b459ef2f79 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> @@ -20,5 +20,17 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
> return hweight32(CCS_MASK(gt)) > 1;
> }
>
> +/**
> + * xe_gt_ccs_mode_default - check if CCS mode is default (single CCS mode)
add () after function name:
* xe_gt_ccs_mode_default() - Check if ...
> + * @gt: GT structure
add empty line before 'Return' tag:
*
> + * Return:
> + * %true if CCS mode is default(i.e. single CCS mode)
> + * %false if alternate/multi CCS mode
note that above will be rendered as single line, so maybe:
* Return: %true if actual CCS is mode is single mode, or
* %false otherwise (CCS in alternate/multi mode)
> + */
> +static inline bool xe_gt_ccs_mode_default(struct xe_gt *gt)
> +{
> + return gt->ccs_mode == 1;
> +}
> +
> #endif
>
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (11 preceding siblings ...)
2025-11-28 12:58 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9) Patchwork
@ 2025-11-28 14:14 ` Patchwork
2025-11-28 15:49 ` ✗ Xe.CI.Full: failure " Patchwork
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-28 14:14 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1676 bytes --]
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9)
URL : https://patchwork.freedesktop.org/series/154538/
State : success
== Summary ==
CI Bug Log - changes from xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670_BAT -> xe-pw-154538v9_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-154538v9_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind:
- bat-ptl-1: [FAIL][1] ([Intel XE#5625]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/bat-ptl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/bat-ptl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
Build changes
-------------
* IGT: IGT_8644 -> IGT_8645
* Linux: xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670 -> xe-pw-154538v9
IGT_8644: 069c5ee6eb658181e7264883c6c4fba41fc917a4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8645: 8645
xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670: e1c1b3e03e356d1e20432dcb0d38ad44d5e92670
xe-pw-154538v9: 154538v9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/index.html
[-- Attachment #2: Type: text/html, Size: 2259 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9)
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
` (12 preceding siblings ...)
2025-11-28 14:14 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-11-28 15:49 ` Patchwork
13 siblings, 0 replies; 31+ messages in thread
From: Patchwork @ 2025-11-28 15:49 UTC (permalink / raw)
To: Nareshkumar Gollakoti; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 128144 bytes --]
== Series Details ==
Series: drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9)
URL : https://patchwork.freedesktop.org/series/154538/
State : failure
== Summary ==
CI Bug Log - changes from xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670_FULL -> xe-pw-154538v9_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-154538v9_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-154538v9_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-154538v9_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_colorop@plane-xr24-xr24-bt2020_inv_oetf-bt2020_oetf:
- shard-bmg: NOTRUN -> [SKIP][2] +7 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_colorop@plane-xr24-xr24-bt2020_inv_oetf-bt2020_oetf.html
- shard-adlp: NOTRUN -> [SKIP][3] +11 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_colorop@plane-xr24-xr24-bt2020_inv_oetf-bt2020_oetf.html
* igt@kms_colorop@plane-xr24-xr24-multiply_inv_125:
- shard-dg2-set2: NOTRUN -> [SKIP][4] +7 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@kms_colorop@plane-xr24-xr24-multiply_inv_125.html
* igt@kms_colorop@plane-xr30-xr30-ctm_3x4_bt709_enc_dec:
- shard-lnl: NOTRUN -> [SKIP][5] +9 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_colorop@plane-xr30-xr30-ctm_3x4_bt709_enc_dec.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: NOTRUN -> [FAIL][6] +2 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_colorop@plane-xr24-xr24-gamma_2_2_inv_oetf}:
- shard-bmg: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@kms_colorop@plane-xr24-xr24-gamma_2_2_inv_oetf.html
- shard-dg2-set2: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-435/igt@kms_colorop@plane-xr24-xr24-gamma_2_2_inv_oetf.html
* {igt@kms_colorop@plane-xr24-xr24-gamma_2_2_inv_oetf-gamma_2_2_oetf-gamma_2_2_inv_oetf}:
- shard-adlp: NOTRUN -> [SKIP][9] +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_colorop@plane-xr24-xr24-gamma_2_2_inv_oetf-gamma_2_2_oetf-gamma_2_2_inv_oetf.html
* {igt@kms_colorop@plane-xr30-xr30-gamma_2_2_inv_oetf}:
- shard-lnl: NOTRUN -> [SKIP][10] +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_colorop@plane-xr30-xr30-gamma_2_2_inv_oetf.html
Known issues
------------
Here are the changes found in xe-pw-154538v9_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1125])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-adlp: NOTRUN -> [SKIP][12] ([Intel XE#1125] / [Intel XE#5574])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-hang@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][13] ([Intel XE#6676]) +4 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@kms_async_flips@async-flip-hang@pipe-a-edp-1.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [DMESG-WARN][14] ([Intel XE#4543])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#5993])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#664])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_async_flips@test-time-stamp:
- shard-lnl: NOTRUN -> [FAIL][18] ([Intel XE#6677]) +5 other tests fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@kms_async_flips@test-time-stamp.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +6 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +15 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#610])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407]) +9 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#316]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#316]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-adlp: NOTRUN -> [FAIL][25] ([Intel XE#1874])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#607])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1428])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/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: NOTRUN -> [FAIL][28] ([Intel XE#6699])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +16 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: NOTRUN -> [FAIL][30] ([Intel XE#1231]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +18 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +18 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#619])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_big_fb@yf-tiled-addfb.html
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2328]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#619]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1467])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2191]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#2191]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#2191])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#367]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#367]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#367]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#367]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1512])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2887]) +25 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2669]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2887]) +32 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#787]) +89 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#455] / [Intel XE#787]) +59 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#3442])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#3442])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#3432]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#787]) +181 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#455] / [Intel XE#787]) +51 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][57] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/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: NOTRUN -> [INCOMPLETE][58] ([Intel XE#6168])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][59] ([Intel XE#1727] / [Intel XE#3113])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#2907]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2907]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2652] / [Intel XE#787]) +31 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#4417] / [Intel XE#455])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#4417]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#373]) +17 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#306]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2325]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#306]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@kms_chamelium_color@gamma.html
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#306])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2252]) +14 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-5/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#373]) +13 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd.html
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#373]) +15 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_colorop@plane-xr24-xr24-ctm_3x4_50_desat:
- shard-adlp: NOTRUN -> [SKIP][73] ([Intel XE#6704]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_50_desat.html
* igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_enc:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#6704]) +6 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-463/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_enc.html
* igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#6704]) +6 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf.html
* igt@kms_colorop@plane-xr30-xr30-pq_125_inv_eotf:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#6704]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_colorop@plane-xr30-xr30-pq_125_inv_eotf.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6692])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_content_protection@dp-mst-suspend-resume.html
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#6692])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@kms_content_protection@dp-mst-suspend-resume.html
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6692])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#455]) +44 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_content_protection@legacy.html
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2341])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_content_protection@legacy.html
- shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#1178]) +1 other test fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-463/igt@kms_content_protection@legacy.html
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#3278]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2321]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#308]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2320]) +10 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#308]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2321]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1424]) +10 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#309]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#309]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2291]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][93] -> [FAIL][94] ([Intel XE#4633])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1508])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1508]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#4302])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#4354])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#4354]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#4354]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_dp_link_training@uhbr-mst.html
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#4356])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@kms_dp_link_training@uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4354]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#4356])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#4294])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#4331])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#4331])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#4331])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#4331])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2244])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2244])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4422])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#4422])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-463/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#4422])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#776])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_fbcon_fbt@psr.html
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#776])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_fbcon_fbt@psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#776])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2372])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_feature_discovery@chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#701])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#701])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_feature_discovery@chamelium.html
- shard-adlp: NOTRUN -> [SKIP][120] ([Intel XE#701])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#1137])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_feature_discovery@dp-mst.html
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2375])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_feature_discovery@dp-mst.html
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1137])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1137])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2316]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1421]) +11 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-adlp: NOTRUN -> [SKIP][127] ([Intel XE#310]) +11 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2293] / [Intel XE#2380]) +7 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1401]) +6 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1397] / [Intel XE#1745]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1397]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2293]) +7 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1401] / [Intel XE#1745]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#352])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#6312]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#6312]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#6312]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#651]) +15 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][139] ([Intel XE#656]) +77 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#651]) +45 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
- shard-adlp: NOTRUN -> [FAIL][141] ([Intel XE#5671]) +1 other test fail
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-adlp: [PASS][142] -> [FAIL][143] ([Intel XE#5671])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#656]) +64 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#4141]) +21 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][146] ([Intel XE#1151])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1469])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2311]) +41 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render:
- shard-adlp: NOTRUN -> [SKIP][149] ([Intel XE#651]) +19 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#653]) +27 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2313]) +47 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2312]) +14 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#653]) +53 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-lnl: NOTRUN -> [ABORT][154] ([Intel XE#6675]) +16 other tests abort
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#3544])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][156] ([Intel XE#2925] / [Intel XE#346])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_joiner@basic-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#346]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2925] / [Intel XE#346]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-432/igt@kms_joiner@basic-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2925] / [Intel XE#346])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][160] ([Intel XE#2925] / [Intel XE#3012])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-adlp: NOTRUN -> [SKIP][161] ([Intel XE#2925])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2934])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2925])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#2925])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-adlp: NOTRUN -> [SKIP][165] ([Intel XE#356])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#356])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [FAIL][167] ([Intel XE#5195]) +2 other tests fail
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-adlp: NOTRUN -> [FAIL][168] ([Intel XE#5195]) +4 other tests fail
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-adlp: [PASS][169] -> [ABORT][170] ([Intel XE#6675]) +2 other tests abort
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#599]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2393]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][173] ([Intel XE#4596]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][174] ([Intel XE#4658]) +3 other tests fail
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#6691]) +7 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2938])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-adlp: NOTRUN -> [SKIP][177] ([Intel XE#2938])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#2938])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2391])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-adlp: NOTRUN -> [SKIP][180] ([Intel XE#1122])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#1122])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#736])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: NOTRUN -> [FAIL][183] ([Intel XE#718])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#3309])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: NOTRUN -> [SKIP][185] ([Intel XE#734])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#2499])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-adlp: NOTRUN -> [SKIP][188] ([Intel XE#836])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#1439] / [Intel XE#3141])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2-set2: [PASS][190] -> [ABORT][191] ([Intel XE#6675])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-dg2-434/igt@kms_pm_rpm@system-suspend-idle.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#1406] / [Intel XE#2893]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#1406] / [Intel XE#1489]) +11 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-432/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][196] ([Intel XE#1406] / [Intel XE#1489]) +11 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#1406] / [Intel XE#1489]) +11 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-adlp: NOTRUN -> [SKIP][198] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@kms_psr2_su@page_flip-p010.html
- shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#1406] / [Intel XE#2387])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#1122] / [Intel XE#1406])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html
- shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#1128] / [Intel XE#1406])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-adlp: NOTRUN -> [SKIP][202] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +24 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#1406] / [Intel XE#4609]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +18 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html
- shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#1406]) +9 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-adlp: NOTRUN -> [SKIP][207] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#1406] / [Intel XE#2414])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#1406] / [Intel XE#2939])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#1406] / [Intel XE#4692])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-adlp: NOTRUN -> [SKIP][211] ([Intel XE#3414]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#3414] / [Intel XE#3904])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][213] ([Intel XE#2330]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#1127]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#1127]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][217] ([Intel XE#1127])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#3414]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_setmode@basic:
- shard-bmg: NOTRUN -> [FAIL][219] ([Intel XE#6361]) +5 other tests fail
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][220] ([Intel XE#6361]) +2 other tests fail
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#1435])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][222] ([Intel XE#6503]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#2426]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-adlp: NOTRUN -> [SKIP][224] ([Intel XE#362])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#1500])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@cmrr:
- shard-adlp: NOTRUN -> [SKIP][226] ([Intel XE#2168])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@kms_vrr@cmrr.html
- shard-bmg: NOTRUN -> [SKIP][227] ([Intel XE#2168])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-5/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][228] ([Intel XE#455]) +27 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][229] ([Intel XE#1499]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][230] ([Intel XE#1499]) +3 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][231] ([Intel XE#1091] / [Intel XE#2849])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@testdisplay:
- shard-adlp: [PASS][232] -> [DMESG-WARN][233] ([Intel XE#2953] / [Intel XE#4173])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-4/igt@testdisplay.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@testdisplay.html
* igt@xe_ccs@block-multicopy-inplace:
- shard-adlp: NOTRUN -> [SKIP][234] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_ccs@block-multicopy-inplace.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][235] ([Intel XE#6599]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html
- shard-adlp: NOTRUN -> [SKIP][236] ([Intel XE#6599]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_compute@ccs-mode-basic.html
- shard-lnl: NOTRUN -> [SKIP][237] ([Intel XE#1447])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute@eu-busy-10s:
- shard-dg2-set2: NOTRUN -> [SKIP][238] ([Intel XE#6598])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@xe_compute@eu-busy-10s.html
- shard-lnl: NOTRUN -> [SKIP][239] ([Intel XE#6592] / [Intel XE#6645])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_compute@eu-busy-10s.html
* igt@xe_compute_preempt@compute-preempt:
- shard-adlp: NOTRUN -> [SKIP][240] ([Intel XE#6360])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict:
- shard-dg2-set2: NOTRUN -> [SKIP][241] ([Intel XE#6360]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
- shard-lnl: NOTRUN -> [SKIP][242] ([Intel XE#5191])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
- shard-adlp: NOTRUN -> [SKIP][243] ([Intel XE#5191])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][244] ([Intel XE#6010])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@xe_configfs@survivability-mode.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][245] ([Intel XE#1123]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_copy_basic@mem-copy-linear-0x369.html
- shard-dg2-set2: NOTRUN -> [SKIP][246] ([Intel XE#1123]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-matrix-copy-2x2:
- shard-adlp: NOTRUN -> [SKIP][247] ([Intel XE#5300])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@xe_copy_basic@mem-matrix-copy-2x2.html
- shard-dg2-set2: NOTRUN -> [SKIP][248] ([Intel XE#5300])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-435/igt@xe_copy_basic@mem-matrix-copy-2x2.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-adlp: NOTRUN -> [SKIP][249] ([Intel XE#1126])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eu_stall@invalid-gt-id:
- shard-dg2-set2: NOTRUN -> [SKIP][250] ([Intel XE#5626])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@xe_eu_stall@invalid-gt-id.html
- shard-adlp: NOTRUN -> [SKIP][251] ([Intel XE#5626])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_eu_stall@invalid-gt-id.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][252] ([Intel XE#4837]) +20 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-lnl: NOTRUN -> [SKIP][253] ([Intel XE#4837]) +22 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug_online@interrupt-other:
- shard-adlp: NOTRUN -> [SKIP][254] ([Intel XE#4837] / [Intel XE#5565]) +17 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_eudebug_online@interrupt-other.html
- shard-bmg: NOTRUN -> [SKIP][255] ([Intel XE#4837]) +21 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@xe_eudebug_online@interrupt-other.html
* igt@xe_eudebug_online@pagefault-read-stress:
- shard-adlp: NOTRUN -> [SKIP][256] ([Intel XE#6665])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@xe_eudebug_online@pagefault-read-stress.html
- shard-bmg: NOTRUN -> [SKIP][257] ([Intel XE#6681])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@xe_eudebug_online@pagefault-read-stress.html
- shard-dg2-set2: NOTRUN -> [SKIP][258] ([Intel XE#6665])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@xe_eudebug_online@pagefault-read-stress.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][259] ([Intel XE#261] / [Intel XE#688]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-beng-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][260] ([Intel XE#688]) +13 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_evict@evict-beng-threads-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-adlp: NOTRUN -> [SKIP][261] ([Intel XE#261]) +9 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small:
- shard-adlp: NOTRUN -> [SKIP][262] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_evict@evict-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
- shard-adlp: NOTRUN -> [SKIP][263] ([Intel XE#688]) +4 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][264] ([Intel XE#1392]) +10 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-adlp: NOTRUN -> [SKIP][265] ([Intel XE#1392] / [Intel XE#5575]) +9 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
- shard-bmg: NOTRUN -> [SKIP][266] ([Intel XE#2322]) +11 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
- shard-adlp: NOTRUN -> [SKIP][267] ([Intel XE#288] / [Intel XE#5561]) +48 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][268] ([Intel XE#288]) +42 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-adlp: NOTRUN -> [SKIP][269] ([Intel XE#2360]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][270] ([Intel XE#2360])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
- shard-adlp: NOTRUN -> [INCOMPLETE][271] ([Intel XE#6299])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
* igt@xe_exec_system_allocator@madvise-no-range-invalidate-same-attr:
- shard-lnl: NOTRUN -> [WARN][272] ([Intel XE#5786])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_exec_system_allocator@madvise-no-range-invalidate-same-attr.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][273] ([Intel XE#5007])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][274] ([Intel XE#5007]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap:
- shard-adlp: NOTRUN -> [SKIP][275] ([Intel XE#4915]) +522 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap.html
* igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][276] ([Intel XE#4943]) +37 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][277] ([Intel XE#4943]) +49 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][278] ([Intel XE#4915]) +458 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: NOTRUN -> [ABORT][279] ([Intel XE#5466])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-lnl: NOTRUN -> [ABORT][280] ([Intel XE#5466])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-adlp: NOTRUN -> [ABORT][281] ([Intel XE#5466] / [Intel XE#5530])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
- shard-bmg: NOTRUN -> [ABORT][282] ([Intel XE#5466] / [Intel XE#5530])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_gt_freq@freq_suspend:
- shard-bmg: [PASS][283] -> [ABORT][284] ([Intel XE#6675])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-2/igt@xe_gt_freq@freq_suspend.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@xe_gt_freq@freq_suspend.html
* igt@xe_live_ktest@xe_bo:
- shard-adlp: NOTRUN -> [SKIP][285] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][286] ([Intel XE#2229])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
- shard-adlp: NOTRUN -> [SKIP][287] ([Intel XE#2229])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][288] ([Intel XE#560])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-adlp: NOTRUN -> [SKIP][289] ([Intel XE#512])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_mmap@small-bar.html
- shard-bmg: NOTRUN -> [SKIP][290] ([Intel XE#586])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@xe_mmap@small-bar.html
- shard-dg2-set2: NOTRUN -> [SKIP][291] ([Intel XE#512])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@xe_mmap@small-bar.html
- shard-lnl: NOTRUN -> [SKIP][292] ([Intel XE#512])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_mmap@small-bar.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317]) -> ([PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [SKIP][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343]) ([Intel XE#378])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-2/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-8/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-8/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-5/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-7/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-5/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-5/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-7/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-7/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-5/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-4/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-1/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-2/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-3/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-2/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-4/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-3/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-4/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-3/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-3/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-1/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-1/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-4/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-8/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-8/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-3/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368]) -> ([PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [SKIP][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394]) ([Intel XE#2457])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-4/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-5/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-5/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-5/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-7/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-7/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-7/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-6/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-7/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-3/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-5/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-3/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-6/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-8/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-4/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-3/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-4/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-8/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-8/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-1/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-2/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-2/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-1/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-1/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-6/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-5/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-5/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-5/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@xe_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@xe_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@xe_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-7/igt@xe_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@xe_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-8/igt@xe_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@xe_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@xe_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@xe_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@xe_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@xe_module_load@load.html
- shard-adlp: ([PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419]) -> ([PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [SKIP][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445]) ([Intel XE#378] / [Intel XE#5612])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-4/igt@xe_module_load@load.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-1/igt@xe_module_load@load.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-1/igt@xe_module_load@load.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-3/igt@xe_module_load@load.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-8/igt@xe_module_load@load.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-3/igt@xe_module_load@load.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-2/igt@xe_module_load@load.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-2/igt@xe_module_load@load.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-2/igt@xe_module_load@load.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-4/igt@xe_module_load@load.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-4/igt@xe_module_load@load.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-8/igt@xe_module_load@load.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-9/igt@xe_module_load@load.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-9/igt@xe_module_load@load.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-9/igt@xe_module_load@load.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-9/igt@xe_module_load@load.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-6/igt@xe_module_load@load.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-6/igt@xe_module_load@load.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-4/igt@xe_module_load@load.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-8/igt@xe_module_load@load.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-1/igt@xe_module_load@load.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-1/igt@xe_module_load@load.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-6/igt@xe_module_load@load.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-3/igt@xe_module_load@load.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-3/igt@xe_module_load@load.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_module_load@load.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_module_load@load.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@xe_module_load@load.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@xe_module_load@load.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@xe_module_load@load.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_module_load@load.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_module_load@load.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_module_load@load.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_module_load@load.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@xe_module_load@load.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@xe_module_load@load.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@xe_module_load@load.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_module_load@load.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@xe_module_load@load.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@xe_module_load@load.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@xe_module_load@load.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-9/igt@xe_module_load@load.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-4/igt@xe_module_load@load.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_module_load@load.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_module_load@load.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_module_load@load.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_module_load@load.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_module_load@load.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_module_load@load.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@xe_module_load@load.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@xe_module_load@load.html
* igt@xe_noexec_ping_pong@basic:
- shard-adlp: NOTRUN -> [SKIP][446] ([Intel XE#6259])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_noexec_ping_pong@basic.html
- shard-lnl: NOTRUN -> [SKIP][447] ([Intel XE#6259])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@xe_noexec_ping_pong@basic.html
* igt@xe_oa@buffer-fill:
- shard-adlp: NOTRUN -> [SKIP][448] ([Intel XE#3573]) +11 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_oa@buffer-fill.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][449] ([Intel XE#3573]) +12 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: NOTRUN -> [SKIP][450] ([Intel XE#6032])
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_oa@mmio-triggered-reports-read.html
- shard-dg2-set2: NOTRUN -> [SKIP][451] ([Intel XE#6032])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@non-zero-reason-all:
- shard-dg2-set2: NOTRUN -> [SKIP][452] ([Intel XE#6377])
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@xe_oa@non-zero-reason-all.html
- shard-adlp: NOTRUN -> [SKIP][453] ([Intel XE#6377])
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_oa@non-zero-reason-all.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][454] ([Intel XE#2245])
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][455] ([Intel XE#2236])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
- shard-dg2-set2: NOTRUN -> [SKIP][456] ([Intel XE#979])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][457] ([Intel XE#979])
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][458] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-434/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-i2c:
- shard-lnl: NOTRUN -> [SKIP][459] ([Intel XE#5694])
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_pm@d3cold-i2c.html
- shard-bmg: NOTRUN -> [SKIP][460] ([Intel XE#5694])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@xe_pm@d3cold-i2c.html
- shard-adlp: NOTRUN -> [SKIP][461] ([Intel XE#5694])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mocs:
- shard-adlp: NOTRUN -> [SKIP][462] ([Intel XE#2284])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@xe_pm@d3cold-mocs.html
- shard-bmg: NOTRUN -> [SKIP][463] ([Intel XE#2284]) +2 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@xe_pm@d3cold-mocs.html
- shard-dg2-set2: NOTRUN -> [SKIP][464] ([Intel XE#2284])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-464/igt@xe_pm@d3cold-mocs.html
- shard-lnl: NOTRUN -> [SKIP][465] ([Intel XE#2284])
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-adlp: NOTRUN -> [SKIP][466] ([Intel XE#1948])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_pm@d3hot-mmap-vram.html
- shard-bmg: NOTRUN -> [FAIL][467] ([Intel XE#6548])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@xe_pm@d3hot-mmap-vram.html
- shard-lnl: NOTRUN -> [SKIP][468] ([Intel XE#1948])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-5/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-basic-exec:
- shard-bmg: NOTRUN -> [ABORT][469] ([Intel XE#6675]) +16 other tests abort
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: NOTRUN -> [ABORT][470] ([Intel XE#6675]) +13 other tests abort
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][471] ([Intel XE#584]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][472] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-adlp: NOTRUN -> [ABORT][473] ([Intel XE#6675]) +11 other tests abort
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][474] ([Intel XE#579])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][475] ([Intel XE#4650])
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pmu@engine-activity-accuracy-90:
- shard-lnl: NOTRUN -> [FAIL][476] ([Intel XE#6251]) +4 other tests fail
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-adlp: NOTRUN -> [SKIP][477] ([Intel XE#4733])
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-6/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-adlp: NOTRUN -> [SKIP][478] ([Intel XE#4733] / [Intel XE#5594]) +5 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][479] ([Intel XE#4733]) +5 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][480] ([Intel XE#4733]) +7 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][481] ([Intel XE#944]) +3 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-dg2-set2: NOTRUN -> [SKIP][482] ([Intel XE#944]) +2 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-435/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-adlp: NOTRUN -> [SKIP][483] ([Intel XE#944]) +1 other test skip
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-topology:
- shard-lnl: NOTRUN -> [SKIP][484] ([Intel XE#944]) +2 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@xe_query@multigpu-query-topology.html
* igt@xe_spin_batch@spin-mem-copy:
- shard-dg2-set2: NOTRUN -> [SKIP][485] ([Intel XE#4821])
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-434/igt@xe_spin_batch@spin-mem-copy.html
- shard-adlp: NOTRUN -> [SKIP][486] ([Intel XE#4821])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-1/igt@xe_spin_batch@spin-mem-copy.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-dg2-set2: NOTRUN -> [SKIP][487] ([Intel XE#4130]) +1 other test skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-lnl: NOTRUN -> [SKIP][488] ([Intel XE#4130]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][489] ([Intel XE#3342])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-dg2-set2: NOTRUN -> [SKIP][490] ([Intel XE#4273])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-lnl: NOTRUN -> [SKIP][491] ([Intel XE#4273]) +1 other test skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-1/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][492] ([Intel XE#4351]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-433/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-lnl: NOTRUN -> [SKIP][493] ([Intel XE#4351]) +1 other test skip
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-adlp: [FAIL][494] ([Intel XE#1231]) -> [PASS][495]
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][496] ([Intel XE#2291]) -> [PASS][497]
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [SKIP][498] ([Intel XE#2316]) -> [PASS][499] +2 other tests pass
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][500] ([Intel XE#2142]) -> [PASS][501] +1 other test pass
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][502] ([Intel XE#5625]) -> [PASS][503]
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [ABORT][504] ([Intel XE#6675]) -> [PASS][505]
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-dg2-463/igt@xe_pm@s2idle-basic-exec.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-adlp: [ABORT][506] ([Intel XE#6675]) -> [PASS][507] +3 other tests pass
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-adlp-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-adlp-8/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [FAIL][508] ([Intel XE#6676]) -> [FAIL][509] ([Intel XE#5993] / [Intel XE#6676])
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][510] ([Intel XE#2311]) -> [SKIP][511] ([Intel XE#2312]) +4 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][512] ([Intel XE#2312]) -> [SKIP][513] ([Intel XE#2311])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][514] ([Intel XE#2312]) -> [SKIP][515] ([Intel XE#4141])
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][516] ([Intel XE#4141]) -> [SKIP][517] ([Intel XE#2312])
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][518] ([Intel XE#2313]) -> [SKIP][519] ([Intel XE#2312])
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][520] ([Intel XE#2312]) -> [SKIP][521] ([Intel XE#2313]) +1 other test skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[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#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[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#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658
[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#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5574]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5574
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[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#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
[Intel XE#6299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6299
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6377
[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#6548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6548
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
[Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#6677]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6677
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6691]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6691
[Intel XE#6692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6692
[Intel XE#6699]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6699
[Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[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
Build changes
-------------
* IGT: IGT_8644 -> IGT_8645
* Linux: xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670 -> xe-pw-154538v9
IGT_8644: 069c5ee6eb658181e7264883c6c4fba41fc917a4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8645: 8645
xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670: e1c1b3e03e356d1e20432dcb0d38ad44d5e92670
xe-pw-154538v9: 154538v9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154538v9/index.html
[-- Attachment #2: Type: text/html, Size: 149720 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* [PATCH v1 0/2] Mutual exclusivity between CCS-mode and PF
2025-11-28 12:38 ` [V9 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
2025-11-28 13:21 ` Michal Wajdeczko
@ 2025-11-28 17:10 ` Nareshkumar Gollakoti
2025-11-28 17:10 ` [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file Nareshkumar Gollakoti
2025-11-28 17:10 ` [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
2025-11-28 17:16 ` [PATCH v1 0/2] drm/xe:Mutual " Nareshkumar Gollakoti
2 siblings, 2 replies; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-28 17:10 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, Nareshkumar Gollakoti
Due to SLA agreement between PF and VFs,the alternate CCS-mode
cannot be changed when VFs are already enabled.
Similarly, enabling VFs is not permitted when the alternate
CCS-mode is active. Also skipping populating
CCS-mode sysfs entry in VF Mode.
---
v2:
- function xe_device_is_vf_enabled has been refactored to
xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
- The code now distinctly checks for SR-IOV VF mode and
SR-IOV PF with VFs enabled.
- Log messages have been updated to explicitly state the current mode.
- The function xe_multi_ccs_mode_enabled is moved to xe_device.h
v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
v4:
- sysfs interface for CCS mode is not initialized
when operating in SRIOV VF Mode.
- xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
enablement.
- remove unnecessary comments as flow is self explanatory.
v5:(review comments from Michal)
- Add xe device level CCS mode block with mutex lock and CCS mode state
- necessesary functions to manage ccs mode state to provide strict mutual
exclusive support b/w CCS mode & SRIOV VF enabling
v6:
- Re modeled implementation based on lockdown the PF using custom guard
supported functions by Michal
v7:
- Corrected patch style as message written as subject
- Used public PF lockdown functions instead internal funcions(Michal)
- Creating CCS Mode entries only on PF Mode
v8:(Michal)
- updated short subject and few comments
- used guard for mutex
- Add a check of PF Mode to ensure use of xe_sriov_pf_lockdown only in
PF Mode
- Added default CCS mode check to xe_gt_ccs_mode_default(gt) function
v9:(Michal)
- Added xe_gt_ccs_mode_default(gt) as static inline and it can be used
across driver to use between default or alternate CCS mode
- removed comment from obvious code
Nareshkumar Gollakoti (2):
drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file
drm/xe: Mutual exclusivity between CCS-mode and PF
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 61 ++++++++++++++++++++++-------
drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++
2 files changed, 58 insertions(+), 15 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 31+ messages in thread
* [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file
2025-11-28 17:10 ` [PATCH v1 0/2] " Nareshkumar Gollakoti
@ 2025-11-28 17:10 ` Nareshkumar Gollakoti
2026-01-15 21:53 ` Michal Wajdeczko
2025-11-28 17:10 ` [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
1 sibling, 1 reply; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-28 17:10 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, Nareshkumar Gollakoti
Skipping creation of sysfs file in VF Mode to ensure VFs do not expose
CCS mode changes
Fixes: f3bc5bb4d53d2 ("drm/xe: Allow userspace to configure CCS mode")
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
index 50fffc9ebf62..e146e00b0ca2 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
@@ -191,7 +191,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
struct xe_device *xe = gt_to_xe(gt);
int err;
- if (!xe_gt_ccs_mode_enabled(gt))
+ if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
return 0;
err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
--
2.43.0
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-11-28 17:10 ` [PATCH v1 0/2] " Nareshkumar Gollakoti
2025-11-28 17:10 ` [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file Nareshkumar Gollakoti
@ 2025-11-28 17:10 ` Nareshkumar Gollakoti
2026-01-15 22:50 ` Michal Wajdeczko
1 sibling, 1 reply; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-28 17:10 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, Nareshkumar Gollakoti
Due to SLA agreement between PF and VFs,the alternate CCS-mode
cannot be changed when VFs are already enabled.
Similarly, enabling VFs is not permitted when the alternate
CCS-mode is active.
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 59 ++++++++++++++++++++++-------
drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++
2 files changed, 57 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
index e146e00b0ca2..6652c468e1be 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
@@ -13,6 +13,7 @@
#include "xe_gt_sysfs.h"
#include "xe_mmio.h"
#include "xe_sriov.h"
+#include "xe_sriov_pf.h"
static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
{
@@ -108,6 +109,36 @@ ccs_mode_show(struct device *kdev,
return sysfs_emit(buf, "%u\n", gt->ccs_mode);
}
+static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (!IS_SRIOV_PF(xe))
+ return 0;
+
+ /*
+ * We can't change CCS-mode when VFs are already enabled
+ * and we must prevent enabling VFs when alternate
+ * CCS-mode is active
+ */
+ if (xe_gt_ccs_mode_default(gt))
+ return xe_sriov_pf_lockdown(xe);
+
+ return 0;
+}
+
+static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (!IS_SRIOV_PF(xe))
+ return;
+
+ /* Allow enabling VFs, if CCS-mode changed to default mode */
+ if (xe_gt_ccs_mode_default(gt))
+ xe_sriov_pf_end_lockdown(xe);
+}
+
static ssize_t
ccs_mode_store(struct device *kdev, struct device_attribute *attr,
const char *buff, size_t count)
@@ -117,12 +148,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
u32 num_engines, num_slices;
int ret;
- if (IS_SRIOV(xe)) {
- xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
- xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
- return -EOPNOTSUPP;
- }
-
ret = kstrtou32(buff, 0, &num_engines);
if (ret)
return ret;
@@ -139,21 +164,27 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
}
/* CCS mode can only be updated when there are no drm clients */
- mutex_lock(&xe->drm.filelist_mutex);
+ guard(mutex)(&xe->drm.filelist_mutex);
if (!list_empty(&xe->drm.filelist)) {
- mutex_unlock(&xe->drm.filelist_mutex);
xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
return -EBUSY;
}
- if (gt->ccs_mode != num_engines) {
- xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
- gt->ccs_mode = num_engines;
- xe_gt_record_user_engines(gt);
- xe_gt_reset(gt);
+ if (gt->ccs_mode == num_engines)
+ return count;
+
+ ret = gt_prepare_ccs_mode_enabling(gt);
+ if (ret) {
+ xe_gt_dbg(gt, "Rejecting compute mode change as VFs are enabled\n");
+ return ret;
}
- mutex_unlock(&xe->drm.filelist_mutex);
+ xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
+ gt->ccs_mode = num_engines;
+ xe_gt_record_user_engines(gt);
+ xe_gt_reset(gt);
+
+ gt_finish_ccs_mode_enabling(gt);
return count;
}
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
index f8779852cf0d..53a595b0882c 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
@@ -20,5 +20,17 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
return hweight32(CCS_MASK(gt)) > 1;
}
+/**
+ * xe_gt_ccs_mode_default() - Check if CCS mode is default (single CCS mode)
+ * @gt: GT structure
+ *
+ * Return: %true if actual CCS mode is single mode, or
+ * %false otherwise (CCS in alternate/multi mode)
+ */
+static inline bool xe_gt_ccs_mode_default(struct xe_gt *gt)
+{
+ return gt->ccs_mode == 1;
+}
+
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [PATCH v1 0/2] drm/xe:Mutual exclusivity between CCS-mode and PF
2025-11-28 12:38 ` [V9 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
2025-11-28 13:21 ` Michal Wajdeczko
2025-11-28 17:10 ` [PATCH v1 0/2] " Nareshkumar Gollakoti
@ 2025-11-28 17:16 ` Nareshkumar Gollakoti
2025-11-28 17:16 ` [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file Nareshkumar Gollakoti
2 siblings, 1 reply; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-28 17:16 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, Nareshkumar Gollakoti
Due to SLA agreement between PF and VFs,the alternate CCS-mode
cannot be changed when VFs are already enabled.
Similarly, enabling VFs is not permitted when the alternate
CCS-mode is active. Also skipping populating
CCS-mode sysfs entry in VF Mode.
---
v2:
- function xe_device_is_vf_enabled has been refactored to
xe_sriov_pf_has_vfs_enabled and moved to xe_sriov_pf_helper.h.
- The code now distinctly checks for SR-IOV VF mode and
SR-IOV PF with VFs enabled.
- Log messages have been updated to explicitly state the current mode.
- The function xe_multi_ccs_mode_enabled is moved to xe_device.h
v3: Described missed arg documentation for xe_sriov_pf_has_vfs_enabled
v4:
- sysfs interface for CCS mode is not initialized
when operating in SRIOV VF Mode.
- xe_sriov_pf_has_vfs_enabled() check is sufficient while CCS mode
enablement.
- remove unnecessary comments as flow is self explanatory.
v5:(review comments from Michal)
- Add xe device level CCS mode block with mutex lock and CCS mode state
- necessesary functions to manage ccs mode state to provide strict mutual
exclusive support b/w CCS mode & SRIOV VF enabling
v6:
- Re modeled implementation based on lockdown the PF using custom guard
supported functions by Michal
v7:
- Corrected patch style as message written as subject
- Used public PF lockdown functions instead internal funcions(Michal)
- Creating CCS Mode entries only on PF Mode
v8:(Michal)
- updated short subject and few comments
- used guard for mutex
- Add a check of PF Mode to ensure use of xe_sriov_pf_lockdown only in
PF Mode
- Added default CCS mode check to xe_gt_ccs_mode_default(gt) function
v9:(Michal)
- Added xe_gt_ccs_mode_default(gt) as static inline and it can be used
across driver to use between default or alternate CCS mode
- removed comment from obvious code
Nareshkumar Gollakoti (2):
drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file
drm/xe: Mutual exclusivity between CCS-mode and PF
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 61 ++++++++++++++++++++++-------
drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++
2 files changed, 58 insertions(+), 15 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 31+ messages in thread
* [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file
2025-11-28 17:16 ` [PATCH v1 0/2] drm/xe:Mutual " Nareshkumar Gollakoti
@ 2025-11-28 17:16 ` Nareshkumar Gollakoti
0 siblings, 0 replies; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-28 17:16 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, Nareshkumar Gollakoti
Skipping creation of sysfs file in VF Mode to ensure VFs do not expose
CCS mode changes
Fixes: f3bc5bb4d53d2 ("drm/xe: Allow userspace to configure CCS mode")
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
index 50fffc9ebf62..e146e00b0ca2 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
@@ -191,7 +191,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
struct xe_device *xe = gt_to_xe(gt);
int err;
- if (!xe_gt_ccs_mode_enabled(gt))
+ if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
return 0;
err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
--
2.43.0
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-11-28 17:18 [PATCH v1 0/2] drm/xe:Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
@ 2025-11-28 17:18 ` Nareshkumar Gollakoti
2025-12-03 8:52 ` K V P, Satyanarayana
0 siblings, 1 reply; 31+ messages in thread
From: Nareshkumar Gollakoti @ 2025-11-28 17:18 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, Nareshkumar Gollakoti
Due to SLA agreement between PF and VFs,the alternate CCS-mode
cannot be changed when VFs are already enabled.
Similarly, enabling VFs is not permitted when the alternate
CCS-mode is active.
Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
---
drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 59 ++++++++++++++++++++++-------
drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++
2 files changed, 57 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
index e146e00b0ca2..6652c468e1be 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
@@ -13,6 +13,7 @@
#include "xe_gt_sysfs.h"
#include "xe_mmio.h"
#include "xe_sriov.h"
+#include "xe_sriov_pf.h"
static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
{
@@ -108,6 +109,36 @@ ccs_mode_show(struct device *kdev,
return sysfs_emit(buf, "%u\n", gt->ccs_mode);
}
+static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (!IS_SRIOV_PF(xe))
+ return 0;
+
+ /*
+ * We can't change CCS-mode when VFs are already enabled
+ * and we must prevent enabling VFs when alternate
+ * CCS-mode is active
+ */
+ if (xe_gt_ccs_mode_default(gt))
+ return xe_sriov_pf_lockdown(xe);
+
+ return 0;
+}
+
+static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (!IS_SRIOV_PF(xe))
+ return;
+
+ /* Allow enabling VFs, if CCS-mode changed to default mode */
+ if (xe_gt_ccs_mode_default(gt))
+ xe_sriov_pf_end_lockdown(xe);
+}
+
static ssize_t
ccs_mode_store(struct device *kdev, struct device_attribute *attr,
const char *buff, size_t count)
@@ -117,12 +148,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
u32 num_engines, num_slices;
int ret;
- if (IS_SRIOV(xe)) {
- xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
- xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
- return -EOPNOTSUPP;
- }
-
ret = kstrtou32(buff, 0, &num_engines);
if (ret)
return ret;
@@ -139,21 +164,27 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
}
/* CCS mode can only be updated when there are no drm clients */
- mutex_lock(&xe->drm.filelist_mutex);
+ guard(mutex)(&xe->drm.filelist_mutex);
if (!list_empty(&xe->drm.filelist)) {
- mutex_unlock(&xe->drm.filelist_mutex);
xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
return -EBUSY;
}
- if (gt->ccs_mode != num_engines) {
- xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
- gt->ccs_mode = num_engines;
- xe_gt_record_user_engines(gt);
- xe_gt_reset(gt);
+ if (gt->ccs_mode == num_engines)
+ return count;
+
+ ret = gt_prepare_ccs_mode_enabling(gt);
+ if (ret) {
+ xe_gt_dbg(gt, "Rejecting compute mode change as VFs are enabled\n");
+ return ret;
}
- mutex_unlock(&xe->drm.filelist_mutex);
+ xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
+ gt->ccs_mode = num_engines;
+ xe_gt_record_user_engines(gt);
+ xe_gt_reset(gt);
+
+ gt_finish_ccs_mode_enabling(gt);
return count;
}
diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
index f8779852cf0d..53a595b0882c 100644
--- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
+++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
@@ -20,5 +20,17 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
return hweight32(CCS_MASK(gt)) > 1;
}
+/**
+ * xe_gt_ccs_mode_default() - Check if CCS mode is default (single CCS mode)
+ * @gt: GT structure
+ *
+ * Return: %true if actual CCS mode is single mode, or
+ * %false otherwise (CCS in alternate/multi mode)
+ */
+static inline bool xe_gt_ccs_mode_default(struct xe_gt *gt)
+{
+ return gt->ccs_mode == 1;
+}
+
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 31+ messages in thread
* Re: [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-11-28 17:18 ` [PATCH v1 2/2] drm/xe: Mutual " Nareshkumar Gollakoti
@ 2025-12-03 8:52 ` K V P, Satyanarayana
2025-12-03 12:13 ` Michal Wajdeczko
2025-12-03 12:43 ` Kumar G, Naresh
0 siblings, 2 replies; 31+ messages in thread
From: K V P, Satyanarayana @ 2025-12-03 8:52 UTC (permalink / raw)
To: intel-xe
[-- Attachment #1: Type: text/plain, Size: 4600 bytes --]
On 28-Nov-25 10:48 PM, Nareshkumar Gollakoti wrote:
> Due to SLA agreement between PF and VFs,the alternate CCS-mode
> cannot be changed when VFs are already enabled.
> Similarly, enabling VFs is not permitted when the alternate
> CCS-mode is active.
>
> Signed-off-by: Nareshkumar Gollakoti<naresh.kumar.g@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 59 ++++++++++++++++++++++-------
> drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++
> 2 files changed, 57 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> index e146e00b0ca2..6652c468e1be 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> @@ -13,6 +13,7 @@
> #include "xe_gt_sysfs.h"
> #include "xe_mmio.h"
> #include "xe_sriov.h"
> +#include "xe_sriov_pf.h"
>
> static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
> {
> @@ -108,6 +109,36 @@ ccs_mode_show(struct device *kdev,
> return sysfs_emit(buf, "%u\n", gt->ccs_mode);
> }
>
> +static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (!IS_SRIOV_PF(xe))
> + return 0;
The ccs mode will not be enabled for native mode (non-virtualized mode)
with this. It should be something like
if (IS_SRIOV_VF(xe))
return 0;
Same comment for other places as well.
> +
> + /*
> + * We can't change CCS-mode when VFs are already enabled
> + * and we must prevent enabling VFs when alternate
> + * CCS-mode is active
> + */
> + if (xe_gt_ccs_mode_default(gt))
> + return xe_sriov_pf_lockdown(xe);
> +
> + return 0;
> +}
> +
> +static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (!IS_SRIOV_PF(xe))
> + return;
> +
> + /* Allow enabling VFs, if CCS-mode changed to default mode */
> + if (xe_gt_ccs_mode_default(gt))
> + xe_sriov_pf_end_lockdown(xe);
> +}
> +
> static ssize_t
> ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> const char *buff, size_t count)
> @@ -117,12 +148,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> u32 num_engines, num_slices;
> int ret;
>
> - if (IS_SRIOV(xe)) {
> - xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
> - xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
> - return -EOPNOTSUPP;
> - }
> -
> ret = kstrtou32(buff, 0, &num_engines);
> if (ret)
> return ret;
> @@ -139,21 +164,27 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> }
>
> /* CCS mode can only be updated when there are no drm clients */
> - mutex_lock(&xe->drm.filelist_mutex);
> + guard(mutex)(&xe->drm.filelist_mutex);
> if (!list_empty(&xe->drm.filelist)) {
> - mutex_unlock(&xe->drm.filelist_mutex);
> xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
> return -EBUSY;
> }
>
> - if (gt->ccs_mode != num_engines) {
> - xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
> - gt->ccs_mode = num_engines;
> - xe_gt_record_user_engines(gt);
> - xe_gt_reset(gt);
> + if (gt->ccs_mode == num_engines)
> + return count;
> +
> + ret = gt_prepare_ccs_mode_enabling(gt);
> + if (ret) {
> + xe_gt_dbg(gt, "Rejecting compute mode change as VFs are enabled\n");
> + return ret;
> }
The function gt_prepare_ccs_mode_enabling() never returning non-zero
error if VFs are enabled.
>
> - mutex_unlock(&xe->drm.filelist_mutex);
> + xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
> + gt->ccs_mode = num_engines;
> + xe_gt_record_user_engines(gt);
> + xe_gt_reset(gt);
> +
Do we need to apply gt reset after changing CCS mode? If yes, add a
comment with why do we need it.
-Satya.
> + gt_finish_ccs_mode_enabling(gt);
>
> return count;
> }
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> index f8779852cf0d..53a595b0882c 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> @@ -20,5 +20,17 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
> return hweight32(CCS_MASK(gt)) > 1;
> }
>
> +/**
> + * xe_gt_ccs_mode_default() - Check if CCS mode is default (single CCS mode)
> + * @gt: GT structure
> + *
> + * Return: %true if actual CCS mode is single mode, or
> + * %false otherwise (CCS in alternate/multi mode)
> + */
> +static inline bool xe_gt_ccs_mode_default(struct xe_gt *gt)
> +{
> + return gt->ccs_mode == 1;
> +}
> +
> #endif
>
[-- Attachment #2: Type: text/html, Size: 5515 bytes --]
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-12-03 8:52 ` K V P, Satyanarayana
@ 2025-12-03 12:13 ` Michal Wajdeczko
2025-12-03 12:43 ` Kumar G, Naresh
1 sibling, 0 replies; 31+ messages in thread
From: Michal Wajdeczko @ 2025-12-03 12:13 UTC (permalink / raw)
To: K V P, Satyanarayana, intel-xe
On 12/3/2025 9:52 AM, K V P, Satyanarayana wrote:
>
> On 28-Nov-25 10:48 PM, Nareshkumar Gollakoti wrote:
>> Due to SLA agreement between PF and VFs,the alternate CCS-mode
>> cannot be changed when VFs are already enabled.
>> Similarly, enabling VFs is not permitted when the alternate
>> CCS-mode is active.
>>
>> Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 59 ++++++++++++++++++++++-------
>> drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++
>> 2 files changed, 57 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> index e146e00b0ca2..6652c468e1be 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> @@ -13,6 +13,7 @@
>> #include "xe_gt_sysfs.h"
>> #include "xe_mmio.h"
>> #include "xe_sriov.h"
>> +#include "xe_sriov_pf.h"
>>
>> static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
>> {
>> @@ -108,6 +109,36 @@ ccs_mode_show(struct device *kdev,
>> return sysfs_emit(buf, "%u\n", gt->ccs_mode);
>> }
>>
>> +static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
>> +{
>> + struct xe_device *xe = gt_to_xe(gt);
>> +
>> + if (!IS_SRIOV_PF(xe))
>> + return 0;
>
> The ccs mode will not be enabled for native mode (non-virtualized mode) with this. It should be something like
>
> if (IS_SRIOV_VF(xe))
>
> return 0;
actually above check for the PF mode seems to be correct since below we are
going to call a PF-only function and it will assert if xe is in native mode
note that while the naming might not be ideal, these two functions prepare/finish
are just to handle coordination with the PF (or more precisely enabling VFs by PF)
>
> Same comment for other places as well.
>
>> +
>> + /*
>> + * We can't change CCS-mode when VFs are already enabled
>> + * and we must prevent enabling VFs when alternate
>> + * CCS-mode is active
>> + */
>> + if (xe_gt_ccs_mode_default(gt))
>> + return xe_sriov_pf_lockdown(xe);
>> +
>> + return 0;
>> +}
>> +
>> +static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
>> +{
>> + struct xe_device *xe = gt_to_xe(gt);
>> +
>> + if (!IS_SRIOV_PF(xe))
>> + return;
>> +
>> + /* Allow enabling VFs, if CCS-mode changed to default mode */
>> + if (xe_gt_ccs_mode_default(gt))
>> + xe_sriov_pf_end_lockdown(xe);
>> +}
>> +
>> static ssize_t
>> ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> const char *buff, size_t count)
>> @@ -117,12 +148,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> u32 num_engines, num_slices;
>> int ret;
>>
>> - if (IS_SRIOV(xe)) {
>> - xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
>> - xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
>> - return -EOPNOTSUPP;
>> - }
>> -
>> ret = kstrtou32(buff, 0, &num_engines);
>> if (ret)
>> return ret;
>> @@ -139,21 +164,27 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> }
>>
>> /* CCS mode can only be updated when there are no drm clients */
>> - mutex_lock(&xe->drm.filelist_mutex);
>> + guard(mutex)(&xe->drm.filelist_mutex);
>> if (!list_empty(&xe->drm.filelist)) {
>> - mutex_unlock(&xe->drm.filelist_mutex);
>> xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
>> return -EBUSY;
>> }
>>
>> - if (gt->ccs_mode != num_engines) {
>> - xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
>> - gt->ccs_mode = num_engines;
>> - xe_gt_record_user_engines(gt);
>> - xe_gt_reset(gt);
>> + if (gt->ccs_mode == num_engines)
>> + return count;
>> +
>> + ret = gt_prepare_ccs_mode_enabling(gt);
>> + if (ret) {
>> + xe_gt_dbg(gt, "Rejecting compute mode change as VFs are enabled\n");
>> + return ret;
>> }
>
> The function gt_prepare_ccs_mode_enabling() never returning non-zero error if VFs are enabled.
>
>>
>> - mutex_unlock(&xe->drm.filelist_mutex);
>> + xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
>> + gt->ccs_mode = num_engines;
>> + xe_gt_record_user_engines(gt);
>> + xe_gt_reset(gt);
>> +
>
> Do we need to apply gt reset after changing CCS mode? If yes, add a comment with why do we need it.
note that this is existing code/logic
>
> -Satya.
>
>> + gt_finish_ccs_mode_enabling(gt);
>>
>> return count;
>> }
>> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
>> index f8779852cf0d..53a595b0882c 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
>> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
>> @@ -20,5 +20,17 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
>> return hweight32(CCS_MASK(gt)) > 1;
>> }
>>
>> +/**
>> + * xe_gt_ccs_mode_default() - Check if CCS mode is default (single CCS mode)
>> + * @gt: GT structure
>> + *
>> + * Return: %true if actual CCS mode is single mode, or
>> + * %false otherwise (CCS in alternate/multi mode)
>> + */
>> +static inline bool xe_gt_ccs_mode_default(struct xe_gt *gt)
>> +{
>> + return gt->ccs_mode == 1;
>> +}
>> +
>> #endif
>>
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-12-03 8:52 ` K V P, Satyanarayana
2025-12-03 12:13 ` Michal Wajdeczko
@ 2025-12-03 12:43 ` Kumar G, Naresh
1 sibling, 0 replies; 31+ messages in thread
From: Kumar G, Naresh @ 2025-12-03 12:43 UTC (permalink / raw)
To: K V P, Satyanarayana, intel-xe
Hi Satya,
On 03-12-2025 14:22, K V P, Satyanarayana wrote:
>
> On 28-Nov-25 10:48 PM, Nareshkumar Gollakoti wrote:
>> Due to SLA agreement between PF and VFs,the alternate CCS-mode
>> cannot be changed when VFs are already enabled.
>> Similarly, enabling VFs is not permitted when the alternate
>> CCS-mode is active.
>>
>> Signed-off-by: Nareshkumar Gollakoti<naresh.kumar.g@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 59 ++++++++++++++++++++++-------
>> drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++
>> 2 files changed, 57 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> index e146e00b0ca2..6652c468e1be 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
>> @@ -13,6 +13,7 @@
>> #include "xe_gt_sysfs.h"
>> #include "xe_mmio.h"
>> #include "xe_sriov.h"
>> +#include "xe_sriov_pf.h"
>>
>> static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
>> {
>> @@ -108,6 +109,36 @@ ccs_mode_show(struct device *kdev,
>> return sysfs_emit(buf, "%u\n", gt->ccs_mode);
>> }
>>
>> +static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
>> +{
>> + struct xe_device *xe = gt_to_xe(gt);
>> +
>> + if (!IS_SRIOV_PF(xe))
>> + return 0;
>
> The ccs mode will not be enabled for native mode (non-virtualized mode)
> with this. It should be something like
>
> if (IS_SRIOV_VF(xe))
>
> return 0;
>
> Same comment for other places as well.
As no CCS-mode sysfs entry for SRIOV VF Mode[1], no need check for VF mode.
[1]: https://patchwork.freedesktop.org/patch/691098/?series=158222&rev=1
In SRIOV PF mode, use xe_sriov_pf_lockdown to block CCS-mode. If VFs are
enabled. otherwise, CCS-mode can be allowed.
If not in PF mode, it is considered as Non-SRIOV mode and the function
returns 0. Therefore, CCS mode is enabled without any restrictions.
>
>> +
>> + /*
>> + * We can't change CCS-mode when VFs are already enabled
>> + * and we must prevent enabling VFs when alternate
>> + * CCS-mode is active
>> + */
>> + if (xe_gt_ccs_mode_default(gt))
>> + return xe_sriov_pf_lockdown(xe);
>> +
>> + return 0;
>> +}
>> +
>> +static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
>> +{
>> + struct xe_device *xe = gt_to_xe(gt);
>> +
>> + if (!IS_SRIOV_PF(xe))
>> + return;
>> +
>> + /* Allow enabling VFs, if CCS-mode changed to default mode */
>> + if (xe_gt_ccs_mode_default(gt))
>> + xe_sriov_pf_end_lockdown(xe);
>> +}
>> +
>> static ssize_t
>> ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> const char *buff, size_t count)
>> @@ -117,12 +148,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> u32 num_engines, num_slices;
>> int ret;
>>
>> - if (IS_SRIOV(xe)) {
>> - xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
>> - xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
>> - return -EOPNOTSUPP;
>> - }
>> -
>> ret = kstrtou32(buff, 0, &num_engines);
>> if (ret)
>> return ret;
>> @@ -139,21 +164,27 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
>> }
>>
>> /* CCS mode can only be updated when there are no drm clients */
>> - mutex_lock(&xe->drm.filelist_mutex);
>> + guard(mutex)(&xe->drm.filelist_mutex);
>> if (!list_empty(&xe->drm.filelist)) {
>> - mutex_unlock(&xe->drm.filelist_mutex);
>> xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
>> return -EBUSY;
>> }
>>
>> - if (gt->ccs_mode != num_engines) {
>> - xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
>> - gt->ccs_mode = num_engines;
>> - xe_gt_record_user_engines(gt);
>> - xe_gt_reset(gt);
>> + if (gt->ccs_mode == num_engines)
>> + return count;
>> +
>> + ret = gt_prepare_ccs_mode_enabling(gt);
>> + if (ret) {
>> + xe_gt_dbg(gt, "Rejecting compute mode change as VFs are enabled\n");
>> + return ret;
>> }
>
> The function gt_prepare_ccs_mode_enabling() never returning non-zero
> error if VFs are enabled.
That is not ture, gt_prepapre_ccs_mode_enabling() return
non-zeor(-EBUSY) when vfs enabled.
>
>>
>> - mutex_unlock(&xe->drm.filelist_mutex);
>> + xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
>> + gt->ccs_mode = num_engines;
>> + xe_gt_record_user_engines(gt);
>> + xe_gt_reset(gt);
>> +
>
> Do we need to apply gt reset after changing CCS mode? If yes, add a
> comment with why do we need it.
>
yes, ensures clean state as we modified new CCS mode for engine setup.
> -Satya.
>
Thanks,
Naresh
>> + gt_finish_ccs_mode_enabling(gt);
>>
>> return count;
>> }
>> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
>> index f8779852cf0d..53a595b0882c 100644
>> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
>> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
>> @@ -20,5 +20,17 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
>> return hweight32(CCS_MASK(gt)) > 1;
>> }
>>
>> +/**
>> + * xe_gt_ccs_mode_default() - Check if CCS mode is default (single CCS mode)
>> + * @gt: GT structure
>> + *
>> + * Return: %true if actual CCS mode is single mode, or
>> + * %false otherwise (CCS in alternate/multi mode)
>> + */
>> +static inline bool xe_gt_ccs_mode_default(struct xe_gt *gt)
>> +{
>> + return gt->ccs_mode == 1;
>> +}
>> +
>> #endif
>>
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file
2025-11-28 17:10 ` [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file Nareshkumar Gollakoti
@ 2026-01-15 21:53 ` Michal Wajdeczko
0 siblings, 0 replies; 31+ messages in thread
From: Michal Wajdeczko @ 2026-01-15 21:53 UTC (permalink / raw)
To: Nareshkumar Gollakoti, intel-xe
On 11/28/2025 6:10 PM, Nareshkumar Gollakoti wrote:
> Skipping creation of sysfs file in VF Mode to ensure VFs do not expose
> CCS mode changes
>
> Fixes: f3bc5bb4d53d2 ("drm/xe: Allow userspace to configure CCS mode")
> Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
changing CCS mode from the VF never worked and since CCS config is fixed in case of SRIOV, there should be no users that would like to read it back, so
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> index 50fffc9ebf62..e146e00b0ca2 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> @@ -191,7 +191,7 @@ int xe_gt_ccs_mode_sysfs_init(struct xe_gt *gt)
> struct xe_device *xe = gt_to_xe(gt);
> int err;
>
> - if (!xe_gt_ccs_mode_enabled(gt))
> + if (!xe_gt_ccs_mode_enabled(gt) || IS_SRIOV_VF(xe))
> return 0;
>
> err = sysfs_create_files(gt->sysfs, gt_ccs_mode_attrs);
^ permalink raw reply [flat|nested] 31+ messages in thread
* Re: [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF
2025-11-28 17:10 ` [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
@ 2026-01-15 22:50 ` Michal Wajdeczko
0 siblings, 0 replies; 31+ messages in thread
From: Michal Wajdeczko @ 2026-01-15 22:50 UTC (permalink / raw)
To: Nareshkumar Gollakoti, intel-xe
On 11/28/2025 6:10 PM, Nareshkumar Gollakoti wrote:
> Due to SLA agreement between PF and VFs,the alternate CCS-mode
> cannot be changed when VFs are already enabled.
> Similarly, enabling VFs is not permitted when the alternate
> CCS-mode is active.
>
> Signed-off-by: Nareshkumar Gollakoti <naresh.kumar.g@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_ccs_mode.c | 59 ++++++++++++++++++++++-------
> drivers/gpu/drm/xe/xe_gt_ccs_mode.h | 12 ++++++
> 2 files changed, 57 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> index e146e00b0ca2..6652c468e1be 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.c
> @@ -13,6 +13,7 @@
> #include "xe_gt_sysfs.h"
> #include "xe_mmio.h"
> #include "xe_sriov.h"
> +#include "xe_sriov_pf.h"
>
> static void __xe_gt_apply_ccs_mode(struct xe_gt *gt, u32 num_engines)
> {
> @@ -108,6 +109,36 @@ ccs_mode_show(struct device *kdev,
> return sysfs_emit(buf, "%u\n", gt->ccs_mode);
> }
>
> +static int gt_prepare_ccs_mode_enabling(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (!IS_SRIOV_PF(xe))
> + return 0;
> +
> + /*
> + * We can't change CCS-mode when VFs are already enabled
> + * and we must prevent enabling VFs when alternate
> + * CCS-mode is active
nit: as it might be little hard to understand below logic, maybe add:
* Try to lockdown the PF only if CCS is still in default mode,
* will unlock PF after CCS is changed to the default mode again.
> + */
> + if (xe_gt_ccs_mode_default(gt))
> + return xe_sriov_pf_lockdown(xe);
> +
> + return 0;
> +}
> +
> +static void gt_finish_ccs_mode_enabling(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (!IS_SRIOV_PF(xe))
> + return;
> +
> + /* Allow enabling VFs, if CCS-mode changed to default mode */
> + if (xe_gt_ccs_mode_default(gt))
> + xe_sriov_pf_end_lockdown(xe);
> +}
> +
> static ssize_t
> ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> const char *buff, size_t count)
> @@ -117,12 +148,6 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> u32 num_engines, num_slices;
> int ret;
>
> - if (IS_SRIOV(xe)) {
> - xe_gt_dbg(gt, "Can't change compute mode when running as %s\n",
> - xe_sriov_mode_to_string(xe_device_sriov_mode(xe)));
> - return -EOPNOTSUPP;
> - }
> -
> ret = kstrtou32(buff, 0, &num_engines);
> if (ret)
> return ret;
> @@ -139,21 +164,27 @@ ccs_mode_store(struct device *kdev, struct device_attribute *attr,
> }
>
> /* CCS mode can only be updated when there are no drm clients */
> - mutex_lock(&xe->drm.filelist_mutex);
> + guard(mutex)(&xe->drm.filelist_mutex);
> if (!list_empty(&xe->drm.filelist)) {
> - mutex_unlock(&xe->drm.filelist_mutex);
> xe_gt_dbg(gt, "Rejecting compute mode change as there are active drm clients\n");
> return -EBUSY;
> }
>
> - if (gt->ccs_mode != num_engines) {
> - xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
> - gt->ccs_mode = num_engines;
> - xe_gt_record_user_engines(gt);
> - xe_gt_reset(gt);
> + if (gt->ccs_mode == num_engines)> + return count;
> +
> + ret = gt_prepare_ccs_mode_enabling(gt);
> + if (ret) {
> + xe_gt_dbg(gt, "Rejecting compute mode change as VFs are enabled\n");
maybe this should be closer to the xe_sriov_pf_lockdown() call ?
or 'prepare' helper should be named differently ?
as here it is hard to match 'prepare_ccs_mode_enabling' name with VFs ...
> + return ret;
> }
or make coding more straight:
/*
* Changing default CCS mode is only allowed when there
* are no VFs. Try to lockdown PF to find out.
*/
if (xe_gt_ccs_mode_default(gt) && IS_SRIOV_PF(xe)) {
ret = xe_sriov_pf_lockdown(xe);
if (ret) {
xe_gt_dbg(gt, "Can't change CCS mode: VFs are enabled\n");
return ret;
}
}
>
> - mutex_unlock(&xe->drm.filelist_mutex);
> + xe_gt_info(gt, "Setting compute mode to %d\n", num_engines);
> + gt->ccs_mode = num_engines;
> + xe_gt_record_user_engines(gt);
> + xe_gt_reset(gt);
> +
> + gt_finish_ccs_mode_enabling(gt);
and here:
/* We may end PF lockdown once CCS mode is default again */
if (xe_gt_ccs_mode_default(gt) && IS_SRIOV_PF(xe))
xe_sriov_pf_end_lockdown(xe);
>
> return count;
> }
> diff --git a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> index f8779852cf0d..53a595b0882c 100644
> --- a/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> +++ b/drivers/gpu/drm/xe/xe_gt_ccs_mode.h
> @@ -20,5 +20,17 @@ static inline bool xe_gt_ccs_mode_enabled(const struct xe_gt *gt)
> return hweight32(CCS_MASK(gt)) > 1;
> }
>
> +/**
> + * xe_gt_ccs_mode_default() - Check if CCS mode is default (single CCS mode)
> + * @gt: GT structure
> + *
> + * Return: %true if actual CCS mode is single mode, or
> + * %false otherwise (CCS in alternate/multi mode)
> + */
> +static inline bool xe_gt_ccs_mode_default(struct xe_gt *gt)
if you don't plan to use this helper in other places than ccs_mode.c,
then just make it as a simple static helper in ccs_mode.c
> +{
> + return gt->ccs_mode == 1;
> +}
> +
> #endif
>
otherwise LGTM
^ permalink raw reply [flat|nested] 31+ messages in thread
end of thread, other threads:[~2026-01-15 22:50 UTC | newest]
Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-15 14:28 [PATCH V5] drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
2025-10-15 23:59 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev6) Patchwork
2025-10-16 0:59 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-16 18:21 ` ✗ Xe.CI.Full: failure " Patchwork
2025-11-25 16:57 ` [V7 PATCH] drm/xe/xe_gt_ccs_mode:Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning Nareshkumar Gollakoti
2025-11-25 19:13 ` Michal Wajdeczko
2025-11-26 12:21 ` Kumar G, Naresh
2025-11-27 16:10 ` [V8 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
2025-11-27 17:02 ` Michal Wajdeczko
2025-11-26 1:13 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev7) Patchwork
2025-11-26 2:18 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-11-26 4:48 ` ✗ Xe.CI.Full: " Patchwork
2025-11-27 16:25 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev8) Patchwork
2025-11-27 17:29 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-27 19:17 ` ✗ Xe.CI.Full: failure " Patchwork
2025-11-28 12:38 ` [V9 PATCH] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
2025-11-28 13:21 ` Michal Wajdeczko
2025-11-28 17:10 ` [PATCH v1 0/2] " Nareshkumar Gollakoti
2025-11-28 17:10 ` [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file Nareshkumar Gollakoti
2026-01-15 21:53 ` Michal Wajdeczko
2025-11-28 17:10 ` [PATCH v1 2/2] drm/xe: Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
2026-01-15 22:50 ` Michal Wajdeczko
2025-11-28 17:16 ` [PATCH v1 0/2] drm/xe:Mutual " Nareshkumar Gollakoti
2025-11-28 17:16 ` [PATCH v1 1/2] drm/xe: Fix Prevent VFs from exposing the CCS mode sysfs file Nareshkumar Gollakoti
2025-11-28 12:58 ` ✓ CI.KUnit: success for drm/xe/: Mutual Exclusivity b/w Multi CCS Mode & SRIOV VF Provisioning (rev9) Patchwork
2025-11-28 14:14 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-28 15:49 ` ✗ Xe.CI.Full: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-11-28 17:18 [PATCH v1 0/2] drm/xe:Mutual exclusivity between CCS-mode and PF Nareshkumar Gollakoti
2025-11-28 17:18 ` [PATCH v1 2/2] drm/xe: Mutual " Nareshkumar Gollakoti
2025-12-03 8:52 ` K V P, Satyanarayana
2025-12-03 12:13 ` Michal Wajdeczko
2025-12-03 12:43 ` Kumar G, Naresh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox