* [PATCH v5 1/9] drm/xe/uc_fw: Allow re-initializing firmware
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:07 ` [PATCH v5 2/9] drm/xe/guc_submit: Introduce guc_exec_queue_reinit() Raag Jadav
` (12 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
In preparation of usecases which require re-initializing firmware without
reloading the driver, introduce xe_uc_fw_reinit(). The uC firmware bo
already exists but since it's contents are on VRAM, they are lost on PCIe
FLR. Copy the firmware back to it's bo and mark it as loadable as part of
re-initialization.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v2: Add kernel doc (Matthew Brost)
---
drivers/gpu/drm/xe/xe_uc_fw.c | 39 +++++++++++++++++++++++++++++------
drivers/gpu/drm/xe/xe_uc_fw.h | 1 +
2 files changed, 34 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c
index df2aa196f6f9..fb168238ee7d 100644
--- a/drivers/gpu/drm/xe/xe_uc_fw.c
+++ b/drivers/gpu/drm/xe/xe_uc_fw.c
@@ -715,13 +715,7 @@ static int uc_fw_request(struct xe_uc_fw *uc_fw, const struct firmware **firmwar
const struct firmware *fw = NULL;
int err;
- /*
- * we use FIRMWARE_UNINITIALIZED to detect checks against uc_fw->status
- * before we're looked at the HW caps to see if we have uc support
- */
BUILD_BUG_ON(XE_UC_FIRMWARE_UNINITIALIZED);
- xe_gt_assert(gt, !uc_fw->status);
- xe_gt_assert(gt, !uc_fw->path);
uc_fw_auto_select(xe, uc_fw);
@@ -834,6 +828,14 @@ static int uc_fw_copy(struct xe_uc_fw *uc_fw, const void *data, size_t size, u32
return err;
}
+static void uc_fw_reinit(struct xe_uc_fw *uc_fw, const void *data)
+{
+ struct xe_device *xe = uc_fw_to_xe(uc_fw);
+
+ xe_map_memcpy_to(xe, &uc_fw->bo->vmap, 0, data, uc_fw->size);
+ xe_uc_fw_change_status(uc_fw, XE_UC_FIRMWARE_LOADABLE);
+}
+
int xe_uc_fw_init(struct xe_uc_fw *uc_fw)
{
const struct firmware *fw = NULL;
@@ -857,6 +859,31 @@ int xe_uc_fw_init(struct xe_uc_fw *uc_fw)
}
ALLOW_ERROR_INJECTION(xe_uc_fw_init, ERRNO); /* See xe_pci_probe() */
+/**
+ * xe_uc_fw_reinit() - Re-initialize uC firmware into its bo
+ * @uc_fw: uC firmware
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_uc_fw_reinit(struct xe_uc_fw *uc_fw)
+{
+ const struct firmware *fw = NULL;
+ int err;
+
+ err = uc_fw_request(uc_fw, &fw);
+ if (err)
+ return err;
+
+ /* no error and no firmware means nothing to copy */
+ if (!fw)
+ return 0;
+
+ uc_fw_reinit(uc_fw, fw->data);
+ uc_fw_release(fw);
+
+ return err;
+}
+
static u32 uc_fw_ggtt_offset(struct xe_uc_fw *uc_fw)
{
return xe_bo_ggtt_addr(uc_fw->bo);
diff --git a/drivers/gpu/drm/xe/xe_uc_fw.h b/drivers/gpu/drm/xe/xe_uc_fw.h
index bb281b72a677..9f469bf07d66 100644
--- a/drivers/gpu/drm/xe/xe_uc_fw.h
+++ b/drivers/gpu/drm/xe/xe_uc_fw.h
@@ -15,6 +15,7 @@
struct drm_printer;
int xe_uc_fw_init(struct xe_uc_fw *uc_fw);
+int xe_uc_fw_reinit(struct xe_uc_fw *uc_fw);
size_t xe_uc_fw_copy_rsa(struct xe_uc_fw *uc_fw, void *dst, u32 max_len);
int xe_uc_fw_upload(struct xe_uc_fw *uc_fw, u32 offset, u32 dma_flags);
int xe_uc_fw_check_version_requirements(struct xe_uc_fw *uc_fw);
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH v5 2/9] drm/xe/guc_submit: Introduce guc_exec_queue_reinit()
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
2026-04-06 14:07 ` [PATCH v5 1/9] drm/xe/uc_fw: Allow re-initializing firmware Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:07 ` [PATCH v5 3/9] drm/xe/gt: Introduce FLR helpers Raag Jadav
` (11 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
In preparation of usecases which require re-initializing GuC submission
after PCIe FLR, introduce guc_exec_queue_reinit() helper. This will restore
exec queues which might have been killed before PCIe FLR.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v4: Teardown exec queues instead of mangling scheduler pending list (Matthew Brost)
v5: Re-initialize kernel queues through submission backend (Matthew Brost)
---
drivers/gpu/drm/xe/xe_exec_queue_types.h | 2 ++
drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +++++
drivers/gpu/drm/xe/xe_guc_submit.c | 11 +++++++++++
3 files changed, 18 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
index 8ce78e0b1d50..926d419310b6 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
@@ -274,6 +274,8 @@ struct xe_exec_queue {
struct xe_exec_queue_ops {
/** @init: Initialize exec queue for submission backend */
int (*init)(struct xe_exec_queue *q);
+ /** @reinit: Re-initialize exec queue for submission backend */
+ void (*reinit)(struct xe_exec_queue *q);
/** @kill: Kill inflight submissions for backend */
void (*kill)(struct xe_exec_queue *q);
/** @fini: Undoes the init() for submission backend */
diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h
index 664c2db56af3..1e079ca3891c 100644
--- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h
+++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h
@@ -51,6 +51,11 @@ static inline void xe_sched_tdr_queue_imm(struct xe_gpu_scheduler *sched)
drm_sched_tdr_queue_imm(&sched->base);
}
+static inline void xe_sched_update_timeout(struct xe_gpu_scheduler *sched, long timeout)
+{
+ sched->base.timeout = timeout;
+}
+
static inline void xe_sched_resubmit_jobs(struct xe_gpu_scheduler *sched)
{
struct drm_sched_job *s_job;
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 10556156eaad..f15192b83738 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -2053,6 +2053,16 @@ static int guc_exec_queue_init(struct xe_exec_queue *q)
return err;
}
+static void guc_exec_queue_reinit(struct xe_exec_queue *q)
+{
+ struct xe_gpu_scheduler *sched = &q->guc->sched;
+ long timeout = (q->vm && xe_vm_in_lr_mode(q->vm)) ? MAX_SCHEDULE_TIMEOUT :
+ msecs_to_jiffies(q->sched_props.job_timeout_ms);
+
+ xe_sched_update_timeout(sched, timeout);
+ atomic_set(&q->guc->state, 0);
+}
+
static void guc_exec_queue_kill(struct xe_exec_queue *q)
{
trace_xe_exec_queue_kill(q);
@@ -2295,6 +2305,7 @@ static bool guc_exec_queue_active(struct xe_exec_queue *q)
*/
static const struct xe_exec_queue_ops guc_exec_queue_ops = {
.init = guc_exec_queue_init,
+ .reinit = guc_exec_queue_reinit,
.kill = guc_exec_queue_kill,
.fini = guc_exec_queue_fini,
.destroy = guc_exec_queue_destroy,
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH v5 3/9] drm/xe/gt: Introduce FLR helpers
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
2026-04-06 14:07 ` [PATCH v5 1/9] drm/xe/uc_fw: Allow re-initializing firmware Raag Jadav
2026-04-06 14:07 ` [PATCH v5 2/9] drm/xe/guc_submit: Introduce guc_exec_queue_reinit() Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:07 ` [PATCH v5 4/9] drm/xe/irq: Introduce xe_irq_disable() Raag Jadav
` (10 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
In preparation of usecases which require preparing/re-initializing GT and
all its uCs before/after PCIe FLR, introduce flr_prepare/done() helpers.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v2: Add kernel doc (Matthew Brost)
v4: Teardown exec queues instead of mangling scheduler pending list (Matthew Brost)
---
drivers/gpu/drm/xe/xe_gsc.c | 14 ++++++++++++
drivers/gpu/drm/xe/xe_gsc.h | 1 +
drivers/gpu/drm/xe/xe_gt.c | 37 ++++++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_gt.h | 2 ++
drivers/gpu/drm/xe/xe_gt_types.h | 9 ++++++++
drivers/gpu/drm/xe/xe_guc.c | 29 +++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_guc.h | 2 ++
drivers/gpu/drm/xe/xe_huc.c | 14 ++++++++++++
drivers/gpu/drm/xe/xe_huc.h | 1 +
drivers/gpu/drm/xe/xe_uc.c | 37 ++++++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_uc.h | 2 ++
11 files changed, 148 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
index e5c234f3d795..7bf6a90ea1a2 100644
--- a/drivers/gpu/drm/xe/xe_gsc.c
+++ b/drivers/gpu/drm/xe/xe_gsc.c
@@ -552,6 +552,20 @@ void xe_gsc_wait_for_worker_completion(struct xe_gsc *gsc)
flush_work(&gsc->work);
}
+/**
+ * xe_gsc_flr_done() - Re-initialize GSC after FLR
+ * @gsc: The GSC object
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_gsc_flr_done(struct xe_gsc *gsc)
+{
+ if (!xe_uc_fw_is_loadable(&gsc->fw))
+ return 0;
+
+ return xe_uc_fw_reinit(&gsc->fw);
+}
+
void xe_gsc_stop_prepare(struct xe_gsc *gsc)
{
struct xe_gt *gt = gsc_to_gt(gsc);
diff --git a/drivers/gpu/drm/xe/xe_gsc.h b/drivers/gpu/drm/xe/xe_gsc.h
index b8b8e0810ad9..8b7fd98f0be6 100644
--- a/drivers/gpu/drm/xe/xe_gsc.h
+++ b/drivers/gpu/drm/xe/xe_gsc.h
@@ -13,6 +13,7 @@ struct xe_gsc;
struct xe_gt;
struct xe_hw_engine;
+int xe_gsc_flr_done(struct xe_gsc *gsc);
int xe_gsc_init(struct xe_gsc *gsc);
int xe_gsc_init_post_hwconfig(struct xe_gsc *gsc);
void xe_gsc_wait_for_worker_completion(struct xe_gsc *gsc);
diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index 8a31c963c372..c395d8cc3b5a 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -991,6 +991,43 @@ void xe_gt_reset_async(struct xe_gt *gt)
xe_pm_runtime_put(gt_to_xe(gt));
}
+static void xe_gt_flr_prepare_work(struct work_struct *w)
+{
+ struct xe_gt *gt = container_of(w, typeof(*gt), flr.worker);
+
+ xe_uc_flr_prepare(>->uc);
+}
+
+/**
+ * xe_gt_flr_prepare() - Prepare GT for FLR
+ * @gt: the GT object
+ *
+ * Prepare all GT uCs for FLR.
+ */
+void xe_gt_flr_prepare(struct xe_gt *gt)
+{
+ /*
+ * We'll be tearing down exec queues which signals all fences and frees the
+ * jobs but all of that happens asynchronously, so make sure we don't disrupt
+ * the scheduler while jobs are still in-flight.
+ */
+ INIT_WORK_ONSTACK(>->flr.worker, xe_gt_flr_prepare_work);
+ queue_work(gt->ordered_wq, >->flr.worker);
+ flush_work(>->flr.worker);
+ destroy_work_on_stack(>->flr.worker);
+}
+
+/**
+ * xe_gt_flr_done() - Re-initialize GT after FLR
+ * @gt: the GT object
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_gt_flr_done(struct xe_gt *gt)
+{
+ return xe_uc_flr_done(>->uc);
+}
+
void xe_gt_suspend_prepare(struct xe_gt *gt)
{
CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FORCEWAKE_ALL);
diff --git a/drivers/gpu/drm/xe/xe_gt.h b/drivers/gpu/drm/xe/xe_gt.h
index de7e47763411..5e6e4eb09efe 100644
--- a/drivers/gpu/drm/xe/xe_gt.h
+++ b/drivers/gpu/drm/xe/xe_gt.h
@@ -63,6 +63,8 @@ int xe_gt_record_default_lrcs(struct xe_gt *gt);
*/
void xe_gt_record_user_engines(struct xe_gt *gt);
+int xe_gt_flr_done(struct xe_gt *gt);
+void xe_gt_flr_prepare(struct xe_gt *gt);
void xe_gt_suspend_prepare(struct xe_gt *gt);
int xe_gt_suspend(struct xe_gt *gt);
void xe_gt_shutdown(struct xe_gt *gt);
diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h
index 8b55cf25a75f..f6694cc90582 100644
--- a/drivers/gpu/drm/xe/xe_gt_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_types.h
@@ -201,6 +201,15 @@ struct xe_gt {
struct work_struct worker;
} reset;
+ /** @flr: state for FLR */
+ struct {
+ /**
+ * @flr.worker: worker for FLR to be done async allowing to safely
+ * flush all code paths
+ */
+ struct work_struct worker;
+ } flr;
+
/** @tlb_inval: TLB invalidation state */
struct xe_tlb_inval tlb_inval;
diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
index e762eada21db..76a3f0904159 100644
--- a/drivers/gpu/drm/xe/xe_guc.c
+++ b/drivers/gpu/drm/xe/xe_guc.c
@@ -1689,6 +1689,35 @@ void xe_guc_sanitize(struct xe_guc *guc)
xe_guc_submit_disable(guc);
}
+/**
+ * xe_guc_flr_prepare() - Prepare GuC for FLR
+ * @guc: The GuC object
+ *
+ * Stop GuC submission and tear down exec queues.
+ */
+void xe_guc_flr_prepare(struct xe_guc *guc)
+{
+ if (!xe_uc_fw_is_loadable(&guc->fw))
+ return;
+
+ xe_guc_submit_stop(guc);
+ xe_guc_submit_pause_abort(guc);
+}
+
+/**
+ * xe_guc_flr_done() - Re-initialize GuC after FLR
+ * @guc: The GuC object
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_guc_flr_done(struct xe_guc *guc)
+{
+ if (!xe_uc_fw_is_loadable(&guc->fw))
+ return 0;
+
+ return xe_uc_fw_reinit(&guc->fw);
+}
+
int xe_guc_reset_prepare(struct xe_guc *guc)
{
return xe_guc_submit_reset_prepare(guc);
diff --git a/drivers/gpu/drm/xe/xe_guc.h b/drivers/gpu/drm/xe/xe_guc.h
index 02514914f404..1fcc623cf24e 100644
--- a/drivers/gpu/drm/xe/xe_guc.h
+++ b/drivers/gpu/drm/xe/xe_guc.h
@@ -32,6 +32,8 @@
struct drm_printer;
void xe_guc_comm_init_early(struct xe_guc *guc);
+int xe_guc_flr_done(struct xe_guc *guc);
+void xe_guc_flr_prepare(struct xe_guc *guc);
int xe_guc_init_noalloc(struct xe_guc *guc);
int xe_guc_init(struct xe_guc *guc);
int xe_guc_init_post_hwconfig(struct xe_guc *guc);
diff --git a/drivers/gpu/drm/xe/xe_huc.c b/drivers/gpu/drm/xe/xe_huc.c
index 57afe21444b1..96c1bbb6f52c 100644
--- a/drivers/gpu/drm/xe/xe_huc.c
+++ b/drivers/gpu/drm/xe/xe_huc.c
@@ -296,6 +296,20 @@ void xe_huc_sanitize(struct xe_huc *huc)
xe_uc_fw_sanitize(&huc->fw);
}
+/**
+ * xe_huc_flr_done() - Re-initialize HuC after FLR
+ * @huc: The HuC object
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_huc_flr_done(struct xe_huc *huc)
+{
+ if (!xe_uc_fw_is_loadable(&huc->fw))
+ return 0;
+
+ return xe_uc_fw_reinit(&huc->fw);
+}
+
void xe_huc_print_info(struct xe_huc *huc, struct drm_printer *p)
{
struct xe_gt *gt = huc_to_gt(huc);
diff --git a/drivers/gpu/drm/xe/xe_huc.h b/drivers/gpu/drm/xe/xe_huc.h
index fa1c45e70443..7600ea196908 100644
--- a/drivers/gpu/drm/xe/xe_huc.h
+++ b/drivers/gpu/drm/xe/xe_huc.h
@@ -17,6 +17,7 @@ enum xe_huc_auth_types {
XE_HUC_AUTH_TYPES_COUNT
};
+int xe_huc_flr_done(struct xe_huc *huc);
int xe_huc_init(struct xe_huc *huc);
int xe_huc_init_post_hwconfig(struct xe_huc *huc);
int xe_huc_upload(struct xe_huc *huc);
diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c
index 75091bde0d50..e41aa95a4322 100644
--- a/drivers/gpu/drm/xe/xe_uc.c
+++ b/drivers/gpu/drm/xe/xe_uc.c
@@ -15,6 +15,7 @@
#include "xe_guc_pc.h"
#include "xe_guc_rc.h"
#include "xe_guc_engine_activity.h"
+#include "xe_guc_submit.h"
#include "xe_huc.h"
#include "xe_sriov.h"
#include "xe_wopcm.h"
@@ -275,6 +276,42 @@ static void uc_reset_wait(struct xe_uc *uc)
goto again;
}
+/**
+ * xe_uc_flr_prepare() - Prepare uCs for FLR
+ * @uc: The uC object
+ *
+ * Tear down pending work and stop all uCs.
+ */
+void xe_uc_flr_prepare(struct xe_uc *uc)
+{
+ xe_gsc_wait_for_worker_completion(&uc->gsc);
+ xe_uc_reset_prepare(uc);
+ xe_guc_flr_prepare(&uc->guc);
+ xe_uc_stop(uc);
+ xe_uc_sanitize(uc);
+}
+
+/**
+ * xe_uc_flr_done() - Re-initialize uCs after FLR
+ * @uc: The uC object
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_uc_flr_done(struct xe_uc *uc)
+{
+ int ret;
+
+ ret = xe_guc_flr_done(&uc->guc);
+ if (ret)
+ return ret;
+
+ ret = xe_huc_flr_done(&uc->huc);
+ if (ret)
+ return ret;
+
+ return xe_gsc_flr_done(&uc->gsc);
+}
+
void xe_uc_suspend_prepare(struct xe_uc *uc)
{
xe_gsc_wait_for_worker_completion(&uc->gsc);
diff --git a/drivers/gpu/drm/xe/xe_uc.h b/drivers/gpu/drm/xe/xe_uc.h
index 255a54a8f876..1756821edea1 100644
--- a/drivers/gpu/drm/xe/xe_uc.h
+++ b/drivers/gpu/drm/xe/xe_uc.h
@@ -8,6 +8,8 @@
struct xe_uc;
+int xe_uc_flr_done(struct xe_uc *uc);
+void xe_uc_flr_prepare(struct xe_uc *uc);
int xe_uc_init_noalloc(struct xe_uc *uc);
int xe_uc_init(struct xe_uc *uc);
int xe_uc_init_post_hwconfig(struct xe_uc *uc);
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH v5 4/9] drm/xe/irq: Introduce xe_irq_disable()
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (2 preceding siblings ...)
2026-04-06 14:07 ` [PATCH v5 3/9] drm/xe/gt: Introduce FLR helpers Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:07 ` [PATCH v5 5/9] drm/xe: Introduce xe_device_assert_lmem_ready() Raag Jadav
` (9 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
In preparation of usecases which require disabling interrupts before PCIe
FLR, introduce xe_irq_disable() helper. With this we avoid side-effects
of any unwarranted interrupts.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v2: Add kernel doc (Matthew Brost)
---
drivers/gpu/drm/xe/xe_irq.c | 13 ++++++++++++-
drivers/gpu/drm/xe/xe_irq.h | 1 +
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_irq.c b/drivers/gpu/drm/xe/xe_irq.c
index 7560a45f7f64..9a775c6588dc 100644
--- a/drivers/gpu/drm/xe/xe_irq.c
+++ b/drivers/gpu/drm/xe/xe_irq.c
@@ -841,7 +841,13 @@ static void xe_irq_msi_synchronize_irq(struct xe_device *xe)
synchronize_irq(to_pci_dev(xe->drm.dev)->irq);
}
-void xe_irq_suspend(struct xe_device *xe)
+/**
+ * xe_irq_disable() - Disable irqs
+ * @xe: xe device instance
+ *
+ * Synchronize pending irqs and disable them.
+ */
+void xe_irq_disable(struct xe_device *xe)
{
atomic_set(&xe->irq.enabled, 0); /* no new irqs */
@@ -850,6 +856,11 @@ void xe_irq_suspend(struct xe_device *xe)
xe_irq_msix_synchronize_irq(xe);
else
xe_irq_msi_synchronize_irq(xe);
+}
+
+void xe_irq_suspend(struct xe_device *xe)
+{
+ xe_irq_disable(xe);
xe_irq_reset(xe); /* turn irqs off */
}
diff --git a/drivers/gpu/drm/xe/xe_irq.h b/drivers/gpu/drm/xe/xe_irq.h
index a28bd577ba52..abda0592a105 100644
--- a/drivers/gpu/drm/xe/xe_irq.h
+++ b/drivers/gpu/drm/xe/xe_irq.h
@@ -14,6 +14,7 @@ struct xe_device;
struct xe_tile;
struct xe_gt;
+void xe_irq_disable(struct xe_device *xe);
int xe_irq_init(struct xe_device *xe);
int xe_irq_install(struct xe_device *xe);
void xe_irq_suspend(struct xe_device *xe);
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH v5 5/9] drm/xe: Introduce xe_device_assert_lmem_ready()
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (3 preceding siblings ...)
2026-04-06 14:07 ` [PATCH v5 4/9] drm/xe/irq: Introduce xe_irq_disable() Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:07 ` [PATCH v5 6/9] drm/xe/bo_evict: Introduce xe_bo_restore_map() Raag Jadav
` (8 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
In preparation of usecases which require verifying LMEM readiness after
PCIe FLR, introduce xe_device_assert_lmem_ready() helper.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v2: Add kernel doc (Matthew Brost)
---
drivers/gpu/drm/xe/xe_device.c | 10 ++++++++--
drivers/gpu/drm/xe/xe_device.h | 1 +
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index cbce1d0ffe48..5efa10e67543 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -649,7 +649,13 @@ static int xe_set_dma_info(struct xe_device *xe)
return err;
}
-static void assert_lmem_ready(struct xe_device *xe)
+/**
+ * xe_device_assert_lmem_ready() - Verify LMEM readiness
+ * @xe: xe device instance
+ *
+ * Verify LMEM readiness and assert on failure.
+ */
+void xe_device_assert_lmem_ready(struct xe_device *xe)
{
if (!IS_DGFX(xe) || IS_SRIOV_VF(xe))
return;
@@ -737,7 +743,7 @@ int xe_device_probe_early(struct xe_device *xe)
* is flagged after full initialization is complete. Assert if lmem is
* not initialized.
*/
- assert_lmem_ready(xe);
+ xe_device_assert_lmem_ready(xe);
xe->wedged.mode = xe_device_validate_wedged_mode(xe, xe_modparam.wedged_mode) ?
XE_DEFAULT_WEDGED_MODE : xe_modparam.wedged_mode;
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index e4b9de8d8e95..6e9a478c3b7a 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -144,6 +144,7 @@ static inline struct xe_force_wake *gt_to_fw(struct xe_gt *gt)
return >->pm.fw;
}
+void xe_device_assert_lmem_ready(struct xe_device *xe);
void xe_device_assert_mem_access(struct xe_device *xe);
static inline bool xe_device_has_flat_ccs(struct xe_device *xe)
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH v5 6/9] drm/xe/bo_evict: Introduce xe_bo_restore_map()
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (4 preceding siblings ...)
2026-04-06 14:07 ` [PATCH v5 5/9] drm/xe: Introduce xe_device_assert_lmem_ready() Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:07 ` [PATCH v5 7/9] drm/xe/exec_queue: Introduce xe_exec_queue_reinit() Raag Jadav
` (7 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
PCIe FLR clears all hardware state along with GGTT mappings of all
existing bos. Iterate over early and late kernel bo list and restore
their GGTT mappings in hardware, so that driver can make use of them
during re-initialization after PCIe FLR.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v2: Add kernel doc (Matthew Brost)
---
drivers/gpu/drm/xe/xe_bo_evict.c | 51 +++++++++++++++++++++++++++-----
drivers/gpu/drm/xe/xe_bo_evict.h | 2 ++
2 files changed, 45 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_bo_evict.c b/drivers/gpu/drm/xe/xe_bo_evict.c
index 7661fca7f278..6d7d6e67565e 100644
--- a/drivers/gpu/drm/xe/xe_bo_evict.c
+++ b/drivers/gpu/drm/xe/xe_bo_evict.c
@@ -189,14 +189,8 @@ int xe_bo_evict_all(struct xe_device *xe)
xe_bo_evict_pinned);
}
-static int xe_bo_restore_and_map_ggtt(struct xe_bo *bo)
+static int xe_bo_map_ggtt(struct xe_bo *bo)
{
- int ret;
-
- ret = xe_bo_restore_pinned(bo);
- if (ret)
- return ret;
-
if (bo->flags & XE_BO_FLAG_GGTT) {
struct xe_tile *tile;
u8 id;
@@ -212,6 +206,41 @@ static int xe_bo_restore_and_map_ggtt(struct xe_bo *bo)
return 0;
}
+/**
+ * xe_bo_restore_map() - Restore GGTT mappings of kernel bos
+ * @xe: xe device
+ *
+ * PCIe FLR clears all hardware state along with GGTT mappings of all
+ * existing bos. Iterate over early and late kernel bo list and restore
+ * their GGTT mappings in hardware, so that kernel can make use of them
+ * during re-initialization after PCIe FLR.
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_bo_restore_map(struct xe_device *xe)
+{
+ int ret;
+
+ ret = xe_bo_apply_to_pinned(xe, &xe->pinned.early.kernel_bo_present,
+ &xe->pinned.early.kernel_bo_present, xe_bo_map_ggtt);
+ if (!ret)
+ ret = xe_bo_apply_to_pinned(xe, &xe->pinned.late.kernel_bo_present,
+ &xe->pinned.late.kernel_bo_present, xe_bo_map_ggtt);
+
+ return ret;
+}
+
+static int xe_bo_restore_and_map_ggtt(struct xe_bo *bo)
+{
+ int ret;
+
+ ret = xe_bo_restore_pinned(bo);
+ if (ret)
+ return ret;
+
+ return xe_bo_map_ggtt(bo);
+}
+
/**
* xe_bo_restore_early - restore early phase kernel BOs to VRAM
*
@@ -270,7 +299,13 @@ int xe_bo_restore_late(struct xe_device *xe)
return ret;
}
-static void xe_bo_pci_dev_remove_pinned(struct xe_device *xe)
+/**
+ * xe_bo_pci_dev_remove_pinned() - Unmap external bos
+ * @xe: xe device
+ *
+ * Drop dma mappings of all external pinned bos.
+ */
+void xe_bo_pci_dev_remove_pinned(struct xe_device *xe)
{
struct xe_tile *tile;
unsigned int id;
diff --git a/drivers/gpu/drm/xe/xe_bo_evict.h b/drivers/gpu/drm/xe/xe_bo_evict.h
index e8385cb7f5e9..d4f5b87243e7 100644
--- a/drivers/gpu/drm/xe/xe_bo_evict.h
+++ b/drivers/gpu/drm/xe/xe_bo_evict.h
@@ -14,7 +14,9 @@ int xe_bo_notifier_prepare_all_pinned(struct xe_device *xe);
void xe_bo_notifier_unprepare_all_pinned(struct xe_device *xe);
int xe_bo_restore_early(struct xe_device *xe);
int xe_bo_restore_late(struct xe_device *xe);
+int xe_bo_restore_map(struct xe_device *xe);
+void xe_bo_pci_dev_remove_pinned(struct xe_device *xe);
void xe_bo_pci_dev_remove_all(struct xe_device *xe);
int xe_bo_pinned_init(struct xe_device *xe);
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH v5 7/9] drm/xe/exec_queue: Introduce xe_exec_queue_reinit()
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (5 preceding siblings ...)
2026-04-06 14:07 ` [PATCH v5 6/9] drm/xe/bo_evict: Introduce xe_bo_restore_map() Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:07 ` [PATCH v5 8/9] drm/xe/migrate: Introduce xe_migrate_reinit() Raag Jadav
` (6 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
In preparation of usecases which require re-initializing an exec queue
after PCIe FLR, introduce xe_exec_queue_reinit() helper. All the exec
queue LCRs already exist but the context is lost on PCIe FLR and needs
re-initialization.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v2: Re-initialize migrate context (Matthew Brost)
---
drivers/gpu/drm/xe/xe_exec_queue.c | 37 ++++++++++++++++++++++++++----
drivers/gpu/drm/xe/xe_exec_queue.h | 1 +
drivers/gpu/drm/xe/xe_lrc.c | 17 ++++++++++++++
drivers/gpu/drm/xe/xe_lrc.h | 2 ++
4 files changed, 53 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index b287d0e0e60a..dd99bf766926 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -331,9 +331,8 @@ static void __xe_exec_queue_fini(struct xe_exec_queue *q)
xe_lrc_put(q->lrc[i]);
}
-static int __xe_exec_queue_init(struct xe_exec_queue *q, u32 exec_queue_flags)
+static u32 xe_lrc_init_flags(struct xe_exec_queue *q, u32 exec_queue_flags)
{
- int i, err;
u32 flags = 0;
/*
@@ -356,6 +355,13 @@ static int __xe_exec_queue_init(struct xe_exec_queue *q, u32 exec_queue_flags)
if (q->flags & EXEC_QUEUE_FLAG_DISABLE_STATE_CACHE_PERF_FIX)
flags |= XE_LRC_DISABLE_STATE_CACHE_PERF_FIX;
+ return flags;
+}
+
+static int __xe_exec_queue_init(struct xe_exec_queue *q, u32 exec_queue_flags)
+{
+ int i, err;
+
err = q->ops->init(q);
if (err)
return err;
@@ -379,8 +385,8 @@ static int __xe_exec_queue_init(struct xe_exec_queue *q, u32 exec_queue_flags)
marker = xe_gt_sriov_vf_wait_valid_ggtt(q->gt);
- lrc = xe_lrc_create(q->hwe, q->vm, q->replay_state,
- xe_lrc_ring_size(), q->msix_vec, flags);
+ lrc = xe_lrc_create(q->hwe, q->vm, q->replay_state, xe_lrc_ring_size(),
+ q->msix_vec, xe_lrc_init_flags(q, exec_queue_flags));
if (IS_ERR(lrc)) {
err = PTR_ERR(lrc);
goto err_lrc;
@@ -402,6 +408,29 @@ static int __xe_exec_queue_init(struct xe_exec_queue *q, u32 exec_queue_flags)
return err;
}
+/**
+ * xe_exec_queue_reinit() - Re-initialize exec queue
+ * @q: exec queue to re-initialize
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_exec_queue_reinit(struct xe_exec_queue *q)
+{
+ int i, err;
+
+ /* Re-initialize submission backend */
+ q->ops->reinit(q);
+
+ for (i = 0; i < q->width; i++) {
+ err = xe_lrc_reinit(q->lrc[i], q->hwe, q->vm, q->replay_state,
+ q->msix_vec, xe_lrc_init_flags(q, q->flags));
+ if (err)
+ return err;
+ }
+
+ return 0;
+}
+
/**
* xe_exec_queue_create() - Create an exec queue
* @xe: Xe device
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.h b/drivers/gpu/drm/xe/xe_exec_queue.h
index a82d99bd77bc..445867d4da26 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue.h
@@ -34,6 +34,7 @@ struct xe_exec_queue *xe_exec_queue_create_bind(struct xe_device *xe,
void xe_exec_queue_fini(struct xe_exec_queue *q);
void xe_exec_queue_destroy(struct kref *ref);
void xe_exec_queue_assign_name(struct xe_exec_queue *q, u32 instance);
+int xe_exec_queue_reinit(struct xe_exec_queue *q);
static inline struct xe_exec_queue *
xe_exec_queue_get_unless_zero(struct xe_exec_queue *q)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 9d12a0d2f0b5..a6421ac3765b 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1593,6 +1593,23 @@ static int xe_lrc_ctx_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct
return err;
}
+/**
+ * xe_lrc_reinit() - Re-initialize LRC
+ * @lrc: Pointer to the LRC
+ * @hwe: Hardware Engine
+ * @vm: The VM (address space)
+ * @replay_state: GPU hang replay state
+ * @msix_vec: MSI-X interrupt vector (for platforms that support it)
+ * @init_flags: LRC initialization flags
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_lrc_reinit(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct xe_vm *vm,
+ void *replay_state, u16 msix_vec, u32 init_flags)
+{
+ return xe_lrc_ctx_init(lrc, hwe, vm, replay_state, msix_vec, init_flags);
+}
+
static int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct xe_vm *vm,
void *replay_state, u32 ring_size, u16 msix_vec, u32 init_flags)
{
diff --git a/drivers/gpu/drm/xe/xe_lrc.h b/drivers/gpu/drm/xe/xe_lrc.h
index e7c975f9e2d9..514355ce3d6a 100644
--- a/drivers/gpu/drm/xe/xe_lrc.h
+++ b/drivers/gpu/drm/xe/xe_lrc.h
@@ -53,6 +53,8 @@ struct xe_lrc_snapshot {
struct xe_lrc *xe_lrc_create(struct xe_hw_engine *hwe, struct xe_vm *vm,
void *replay_state, u32 ring_size, u16 msix_vec, u32 flags);
+int xe_lrc_reinit(struct xe_lrc *lrc, struct xe_hw_engine *hwe, struct xe_vm *vm,
+ void *replay_state, u16 msix_vec, u32 init_flags);
void xe_lrc_destroy(struct kref *ref);
/**
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH v5 8/9] drm/xe/migrate: Introduce xe_migrate_reinit()
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (6 preceding siblings ...)
2026-04-06 14:07 ` [PATCH v5 7/9] drm/xe/exec_queue: Introduce xe_exec_queue_reinit() Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:07 ` [PATCH v5 9/9] drm/xe/pci: Introduce PCIe FLR Raag Jadav
` (5 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
In preparation of usecases which require re-initializing migrate context
after PCIe FLR, introduce xe_migrate_reinit() helper. Migrate exec queue
and pt_bo already exist in migrate structure but since their contents live
on VRAM, they are lost on PCIe FLR and need re-initialization.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
---
v2: Re-initialize migrate context (Matthew Brost)
---
drivers/gpu/drm/xe/xe_gt.c | 10 ++++++++++
drivers/gpu/drm/xe/xe_migrate.c | 12 ++++++++++++
drivers/gpu/drm/xe/xe_migrate.h | 1 +
3 files changed, 23 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index c395d8cc3b5a..eb0045f33d55 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -1025,6 +1025,16 @@ void xe_gt_flr_prepare(struct xe_gt *gt)
*/
int xe_gt_flr_done(struct xe_gt *gt)
{
+ int err;
+
+ if (xe_gt_is_main_type(gt)) {
+ struct xe_tile *tile = gt_to_tile(gt);
+
+ err = xe_migrate_reinit(tile->migrate);
+ if (err)
+ return err;
+ }
+
return xe_uc_flr_done(>->uc);
}
diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index fc918b4fba54..ffe7e3e3b919 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -452,6 +452,18 @@ static int xe_migrate_lock_prepare_vm(struct xe_tile *tile, struct xe_migrate *m
return err;
}
+/**
+ * xe_migrate_reinit() - Re-initialize a migrate context
+ * @m: The migration context
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int xe_migrate_reinit(struct xe_migrate *m)
+{
+ xe_migrate_prepare_vm(m->tile, m, m->q->vm, NULL);
+ return xe_exec_queue_reinit(m->q);
+}
+
/**
* xe_migrate_init() - Initialize a migrate context
* @m: The migration context
diff --git a/drivers/gpu/drm/xe/xe_migrate.h b/drivers/gpu/drm/xe/xe_migrate.h
index 169279d9d8c2..41e06bf398b1 100644
--- a/drivers/gpu/drm/xe/xe_migrate.h
+++ b/drivers/gpu/drm/xe/xe_migrate.h
@@ -112,6 +112,7 @@ struct xe_migrate_pt_update {
struct xe_migrate *xe_migrate_alloc(struct xe_tile *tile);
int xe_migrate_init(struct xe_migrate *m);
+int xe_migrate_reinit(struct xe_migrate *m);
struct dma_fence *xe_migrate_to_vram(struct xe_migrate *m,
unsigned long npages,
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* [PATCH v5 9/9] drm/xe/pci: Introduce PCIe FLR
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (7 preceding siblings ...)
2026-04-06 14:07 ` [PATCH v5 8/9] drm/xe/migrate: Introduce xe_migrate_reinit() Raag Jadav
@ 2026-04-06 14:07 ` Raag Jadav
2026-04-06 14:18 ` ✗ CI.checkpatch: warning for Introduce Xe PCIe FLR (rev5) Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-06 14:07 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
Raag Jadav
With bare minimum pieces in place, we can finally introduce PCIe Function
Level Reset (FLR) handling which re-initializes hardware state without the
need for reloading the driver from userspace. All VRAM contents are lost
along with hardware state and driver takes care of recreating the required
kernel bos as part of re-initialization, but user still needs to recreate
user bos and reload context after PCIe FLR.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
v2: Spell out Function Level Reset (Jani)
v5: Prevent PM ref leak for wedged device (Matthew Brost)
---
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/xe_device_types.h | 3 +
drivers/gpu/drm/xe/xe_pci.c | 1 +
drivers/gpu/drm/xe/xe_pci.h | 2 +
drivers/gpu/drm/xe/xe_pci_err.c | 160 +++++++++++++++++++++++++++
5 files changed, 167 insertions(+)
create mode 100644 drivers/gpu/drm/xe/xe_pci_err.c
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index f9abaf687d46..06b5d53e1629 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -100,6 +100,7 @@ xe-y += xe_bb.o \
xe_page_reclaim.o \
xe_pat.o \
xe_pci.o \
+ xe_pci_err.o \
xe_pci_rebar.o \
xe_pcode.o \
xe_pm.o \
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 150c76b2acaf..b743b3986205 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -482,6 +482,9 @@ struct xe_device {
/** @needs_flr_on_fini: requests function-reset on fini */
bool needs_flr_on_fini;
+ /** @flr_prepared: Prepared for function-reset */
+ bool flr_prepared;
+
/** @wedged: Struct to control Wedged States and mode */
struct {
/** @wedged.flag: Xe device faced a critical error and is now blocked. */
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 26eb58e11056..f3515c91e534 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -1332,6 +1332,7 @@ static struct pci_driver xe_pci_driver = {
#ifdef CONFIG_PM_SLEEP
.driver.pm = &xe_pm_ops,
#endif
+ .err_handler = &xe_pci_err_handlers,
};
/**
diff --git a/drivers/gpu/drm/xe/xe_pci.h b/drivers/gpu/drm/xe/xe_pci.h
index 11bcc5fe2c5b..85e85e8508c3 100644
--- a/drivers/gpu/drm/xe/xe_pci.h
+++ b/drivers/gpu/drm/xe/xe_pci.h
@@ -8,6 +8,8 @@
struct pci_dev;
+extern const struct pci_error_handlers xe_pci_err_handlers;
+
int xe_register_pci_driver(void);
void xe_unregister_pci_driver(void);
struct xe_device *xe_pci_to_pf_device(struct pci_dev *pdev);
diff --git a/drivers/gpu/drm/xe/xe_pci_err.c b/drivers/gpu/drm/xe/xe_pci_err.c
new file mode 100644
index 000000000000..339e8688d37f
--- /dev/null
+++ b/drivers/gpu/drm/xe/xe_pci_err.c
@@ -0,0 +1,160 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include "xe_bo_evict.h"
+#include "xe_device.h"
+#include "xe_gt.h"
+#include "xe_gt_idle.h"
+#include "xe_i2c.h"
+#include "xe_irq.h"
+#include "xe_late_bind_fw.h"
+#include "xe_pci.h"
+#include "xe_pcode.h"
+#include "xe_printk.h"
+#include "xe_pxp.h"
+#include "xe_wa.h"
+
+/* TODO: Extend support as a follow-up */
+#define XE_FLR_SKIP (!IS_DGFX(xe) || IS_SRIOV_VF(xe) || pci_num_vf(pdev) || \
+ xe->info.probe_display)
+
+static int xe_flr_prepare(struct xe_device *xe)
+{
+ struct xe_gt *gt;
+ int err;
+ u8 id;
+
+ err = xe_pxp_pm_suspend(xe->pxp);
+ if (err)
+ return err;
+
+ xe_late_bind_wait_for_worker_completion(&xe->late_bind);
+
+ xe_irq_disable(xe);
+
+ for_each_gt(gt, xe, id)
+ xe_gt_flr_prepare(gt);
+
+ // TODO: Drop all user bos
+ xe_bo_pci_dev_remove_pinned(xe);
+ unmap_mapping_range(xe->drm.anon_inode->i_mapping, 0, 0, 1);
+
+ return 0;
+}
+
+static int xe_flr_done(struct xe_device *xe)
+{
+ struct xe_tile *tile;
+ struct xe_gt *gt;
+ int err;
+ u8 id;
+
+ for_each_gt(gt, xe, id)
+ xe_gt_idle_disable_c6(gt);
+
+ for_each_tile(tile, xe, id)
+ xe_wa_apply_tile_workarounds(tile);
+
+ err = xe_pcode_ready(xe, true);
+ if (err)
+ return err;
+
+ xe_device_assert_lmem_ready(xe);
+
+ err = xe_bo_restore_map(xe);
+ if (err)
+ return err;
+
+ for_each_gt(gt, xe, id) {
+ err = xe_gt_flr_done(gt);
+ if (err)
+ return err;
+ }
+
+ xe_i2c_pm_resume(xe, true);
+
+ xe_irq_resume(xe);
+
+ for_each_gt(gt, xe, id) {
+ err = xe_gt_resume(gt);
+ if (err)
+ return err;
+ }
+
+ xe_pxp_pm_resume(xe->pxp);
+
+ xe_late_bind_fw_load(&xe->late_bind);
+
+ return 0;
+}
+
+static void xe_pci_reset_prepare(struct pci_dev *pdev)
+{
+ struct xe_device *xe = pdev_to_xe_device(pdev);
+
+ if (XE_FLR_SKIP) {
+ xe_err(xe, "PCIe FLR not supported\n");
+ return;
+ }
+
+ if (xe_device_wedged(xe)) {
+ xe_err(xe, "PCIe FLR aborted, device in unexpected state\n");
+ return;
+ }
+
+ /* Wedge the device to prevent userspace access but don't send the event yet */
+ atomic_set(&xe->wedged.flag, 1);
+
+ /*
+ * The hardware could be in corrupted state and access unreliable, but we try to
+ * update data structures and cleanup any pending work to avoid side effects during
+ * PCIe FLR. This will be similar to xe_pm_suspend() flow but without migration.
+ */
+ if (xe_flr_prepare(xe)) {
+ xe_err(xe, "Failed to prepare for PCIe FLR\n");
+ return;
+ }
+
+ xe->flr_prepared = true;
+ xe_info(xe, "Prepared for PCIe FLR\n");
+}
+
+static void xe_pci_reset_done(struct pci_dev *pdev)
+{
+ struct xe_device *xe = pdev_to_xe_device(pdev);
+
+ if (XE_FLR_SKIP)
+ return;
+
+ if (!xe_device_wedged(xe) || !xe->flr_prepared)
+ return;
+
+ /* Unprepare early in case we fail */
+ xe->flr_prepared = false;
+
+ /*
+ * We already have the data structures intact, so try to re-initialize the device.
+ * This will be similar to xe_pm_resume() flow, except we'll also need to recreate
+ * all VRAM contents.
+ */
+ if (xe_flr_done(xe)) {
+ xe_err(xe, "Re-initialization failed\n");
+ return;
+ }
+
+ /* Unwedge to allow userspace access */
+ atomic_set(&xe->wedged.flag, 0);
+
+ xe_info(xe, "Re-initialization success\n");
+}
+
+/*
+ * PCIe Function Level Reset (FLR) support only.
+ * TODO: Add PCIe error handlers using similar flow.
+ */
+const struct pci_error_handlers xe_pci_err_handlers = {
+ .reset_prepare = xe_pci_reset_prepare,
+ .reset_done = xe_pci_reset_done,
+};
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread* ✗ CI.checkpatch: warning for Introduce Xe PCIe FLR (rev5)
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (8 preceding siblings ...)
2026-04-06 14:07 ` [PATCH v5 9/9] drm/xe/pci: Introduce PCIe FLR Raag Jadav
@ 2026-04-06 14:18 ` Patchwork
2026-04-06 14:19 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-04-06 14:18 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce Xe PCIe FLR (rev5)
URL : https://patchwork.freedesktop.org/series/162055/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 063ef17ff77ec60bdd48b8748695c1f5cd998dc5
Author: Raag Jadav <raag.jadav@intel.com>
Date: Mon Apr 6 19:37:22 2026 +0530
drm/xe/pci: Introduce PCIe FLR
With bare minimum pieces in place, we can finally introduce PCIe Function
Level Reset (FLR) handling which re-initializes hardware state without the
need for reloading the driver from userspace. All VRAM contents are lost
along with hardware state and driver takes care of recreating the required
kernel bos as part of re-initialization, but user still needs to recreate
user bos and reload context after PCIe FLR.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
+ /mt/dim checkpatch d873f0156bd08a3031097d459e2d3604bfe1b1bf drm-intel
04ca0ee60b29 drm/xe/uc_fw: Allow re-initializing firmware
8f4aad032d03 drm/xe/guc_submit: Introduce guc_exec_queue_reinit()
8d5f18958377 drm/xe/gt: Introduce FLR helpers
be351d09d0bd drm/xe/irq: Introduce xe_irq_disable()
c1917f1ab92f drm/xe: Introduce xe_device_assert_lmem_ready()
800388188578 drm/xe/bo_evict: Introduce xe_bo_restore_map()
b7cb79ed27b6 drm/xe/exec_queue: Introduce xe_exec_queue_reinit()
6e66555fb0a5 drm/xe/migrate: Introduce xe_migrate_reinit()
063ef17ff77e drm/xe/pci: Introduce PCIe FLR
-:67: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#67:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 191 lines checked
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ CI.KUnit: success for Introduce Xe PCIe FLR (rev5)
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (9 preceding siblings ...)
2026-04-06 14:18 ` ✗ CI.checkpatch: warning for Introduce Xe PCIe FLR (rev5) Patchwork
@ 2026-04-06 14:19 ` Patchwork
2026-04-06 14:54 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
13 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-04-06 14:19 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce Xe PCIe FLR (rev5)
URL : https://patchwork.freedesktop.org/series/162055/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:18:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:18:22] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:18:54] Starting KUnit Kernel (1/1)...
[14:18:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:18:54] ================== guc_buf (11 subtests) ===================
[14:18:54] [PASSED] test_smallest
[14:18:54] [PASSED] test_largest
[14:18:54] [PASSED] test_granular
[14:18:54] [PASSED] test_unique
[14:18:54] [PASSED] test_overlap
[14:18:54] [PASSED] test_reusable
[14:18:54] [PASSED] test_too_big
[14:18:54] [PASSED] test_flush
[14:18:54] [PASSED] test_lookup
[14:18:54] [PASSED] test_data
[14:18:54] [PASSED] test_class
[14:18:54] ===================== [PASSED] guc_buf =====================
[14:18:54] =================== guc_dbm (7 subtests) ===================
[14:18:54] [PASSED] test_empty
[14:18:54] [PASSED] test_default
[14:18:54] ======================== test_size ========================
[14:18:54] [PASSED] 4
[14:18:54] [PASSED] 8
[14:18:54] [PASSED] 32
[14:18:54] [PASSED] 256
[14:18:54] ==================== [PASSED] test_size ====================
[14:18:54] ======================= test_reuse ========================
[14:18:54] [PASSED] 4
[14:18:54] [PASSED] 8
[14:18:54] [PASSED] 32
[14:18:54] [PASSED] 256
[14:18:54] =================== [PASSED] test_reuse ====================
[14:18:54] =================== test_range_overlap ====================
[14:18:54] [PASSED] 4
[14:18:54] [PASSED] 8
[14:18:54] [PASSED] 32
[14:18:54] [PASSED] 256
[14:18:54] =============== [PASSED] test_range_overlap ================
[14:18:54] =================== test_range_compact ====================
[14:18:54] [PASSED] 4
[14:18:54] [PASSED] 8
[14:18:54] [PASSED] 32
[14:18:54] [PASSED] 256
[14:18:54] =============== [PASSED] test_range_compact ================
[14:18:54] ==================== test_range_spare =====================
[14:18:54] [PASSED] 4
[14:18:54] [PASSED] 8
[14:18:54] [PASSED] 32
[14:18:54] [PASSED] 256
[14:18:54] ================ [PASSED] test_range_spare =================
[14:18:54] ===================== [PASSED] guc_dbm =====================
[14:18:54] =================== guc_idm (6 subtests) ===================
[14:18:54] [PASSED] bad_init
[14:18:54] [PASSED] no_init
[14:18:54] [PASSED] init_fini
[14:18:54] [PASSED] check_used
[14:18:54] [PASSED] check_quota
[14:18:54] [PASSED] check_all
[14:18:54] ===================== [PASSED] guc_idm =====================
[14:18:54] ================== no_relay (3 subtests) ===================
[14:18:54] [PASSED] xe_drops_guc2pf_if_not_ready
[14:18:54] [PASSED] xe_drops_guc2vf_if_not_ready
[14:18:54] [PASSED] xe_rejects_send_if_not_ready
[14:18:54] ==================== [PASSED] no_relay =====================
[14:18:54] ================== pf_relay (14 subtests) ==================
[14:18:54] [PASSED] pf_rejects_guc2pf_too_short
[14:18:54] [PASSED] pf_rejects_guc2pf_too_long
[14:18:54] [PASSED] pf_rejects_guc2pf_no_payload
[14:18:54] [PASSED] pf_fails_no_payload
[14:18:54] [PASSED] pf_fails_bad_origin
[14:18:54] [PASSED] pf_fails_bad_type
[14:18:54] [PASSED] pf_txn_reports_error
[14:18:54] [PASSED] pf_txn_sends_pf2guc
[14:18:54] [PASSED] pf_sends_pf2guc
[14:18:54] [SKIPPED] pf_loopback_nop
[14:18:54] [SKIPPED] pf_loopback_echo
[14:18:54] [SKIPPED] pf_loopback_fail
[14:18:54] [SKIPPED] pf_loopback_busy
[14:18:54] [SKIPPED] pf_loopback_retry
[14:18:54] ==================== [PASSED] pf_relay =====================
[14:18:54] ================== vf_relay (3 subtests) ===================
[14:18:54] [PASSED] vf_rejects_guc2vf_too_short
[14:18:54] [PASSED] vf_rejects_guc2vf_too_long
[14:18:54] [PASSED] vf_rejects_guc2vf_no_payload
[14:18:54] ==================== [PASSED] vf_relay =====================
[14:18:54] ================ pf_gt_config (9 subtests) =================
[14:18:54] [PASSED] fair_contexts_1vf
[14:18:54] [PASSED] fair_doorbells_1vf
[14:18:54] [PASSED] fair_ggtt_1vf
[14:18:54] ====================== fair_vram_1vf ======================
[14:18:54] [PASSED] 3.50 GiB
[14:18:54] [PASSED] 11.5 GiB
[14:18:54] [PASSED] 15.5 GiB
[14:18:54] [PASSED] 31.5 GiB
[14:18:54] [PASSED] 63.5 GiB
[14:18:54] [PASSED] 1.91 GiB
[14:18:54] ================== [PASSED] fair_vram_1vf ==================
[14:18:54] ================ fair_vram_1vf_admin_only =================
[14:18:54] [PASSED] 3.50 GiB
[14:18:54] [PASSED] 11.5 GiB
[14:18:54] [PASSED] 15.5 GiB
[14:18:54] [PASSED] 31.5 GiB
[14:18:54] [PASSED] 63.5 GiB
[14:18:54] [PASSED] 1.91 GiB
[14:18:54] ============ [PASSED] fair_vram_1vf_admin_only =============
[14:18:54] ====================== fair_contexts ======================
[14:18:54] [PASSED] 1 VF
[14:18:54] [PASSED] 2 VFs
[14:18:54] [PASSED] 3 VFs
[14:18:54] [PASSED] 4 VFs
[14:18:54] [PASSED] 5 VFs
[14:18:54] [PASSED] 6 VFs
[14:18:54] [PASSED] 7 VFs
[14:18:54] [PASSED] 8 VFs
[14:18:54] [PASSED] 9 VFs
[14:18:54] [PASSED] 10 VFs
[14:18:54] [PASSED] 11 VFs
[14:18:54] [PASSED] 12 VFs
[14:18:54] [PASSED] 13 VFs
[14:18:54] [PASSED] 14 VFs
[14:18:54] [PASSED] 15 VFs
[14:18:54] [PASSED] 16 VFs
[14:18:54] [PASSED] 17 VFs
[14:18:54] [PASSED] 18 VFs
[14:18:54] [PASSED] 19 VFs
[14:18:54] [PASSED] 20 VFs
[14:18:54] [PASSED] 21 VFs
[14:18:54] [PASSED] 22 VFs
[14:18:54] [PASSED] 23 VFs
[14:18:54] [PASSED] 24 VFs
[14:18:54] [PASSED] 25 VFs
[14:18:54] [PASSED] 26 VFs
[14:18:54] [PASSED] 27 VFs
[14:18:54] [PASSED] 28 VFs
[14:18:54] [PASSED] 29 VFs
[14:18:54] [PASSED] 30 VFs
[14:18:54] [PASSED] 31 VFs
[14:18:54] [PASSED] 32 VFs
[14:18:54] [PASSED] 33 VFs
[14:18:54] [PASSED] 34 VFs
[14:18:54] [PASSED] 35 VFs
[14:18:54] [PASSED] 36 VFs
[14:18:54] [PASSED] 37 VFs
[14:18:54] [PASSED] 38 VFs
[14:18:54] [PASSED] 39 VFs
[14:18:54] [PASSED] 40 VFs
[14:18:54] [PASSED] 41 VFs
[14:18:54] [PASSED] 42 VFs
[14:18:54] [PASSED] 43 VFs
[14:18:54] [PASSED] 44 VFs
[14:18:54] [PASSED] 45 VFs
[14:18:54] [PASSED] 46 VFs
[14:18:54] [PASSED] 47 VFs
[14:18:54] [PASSED] 48 VFs
[14:18:54] [PASSED] 49 VFs
[14:18:54] [PASSED] 50 VFs
[14:18:54] [PASSED] 51 VFs
[14:18:54] [PASSED] 52 VFs
[14:18:54] [PASSED] 53 VFs
[14:18:54] [PASSED] 54 VFs
[14:18:54] [PASSED] 55 VFs
[14:18:54] [PASSED] 56 VFs
[14:18:54] [PASSED] 57 VFs
[14:18:54] [PASSED] 58 VFs
[14:18:54] [PASSED] 59 VFs
[14:18:54] [PASSED] 60 VFs
[14:18:54] [PASSED] 61 VFs
[14:18:54] [PASSED] 62 VFs
[14:18:54] [PASSED] 63 VFs
[14:18:54] ================== [PASSED] fair_contexts ==================
[14:18:54] ===================== fair_doorbells ======================
[14:18:54] [PASSED] 1 VF
[14:18:54] [PASSED] 2 VFs
[14:18:54] [PASSED] 3 VFs
[14:18:54] [PASSED] 4 VFs
[14:18:54] [PASSED] 5 VFs
[14:18:54] [PASSED] 6 VFs
[14:18:54] [PASSED] 7 VFs
[14:18:54] [PASSED] 8 VFs
[14:18:54] [PASSED] 9 VFs
[14:18:54] [PASSED] 10 VFs
[14:18:54] [PASSED] 11 VFs
[14:18:54] [PASSED] 12 VFs
[14:18:54] [PASSED] 13 VFs
[14:18:54] [PASSED] 14 VFs
[14:18:54] [PASSED] 15 VFs
[14:18:54] [PASSED] 16 VFs
[14:18:54] [PASSED] 17 VFs
[14:18:54] [PASSED] 18 VFs
[14:18:54] [PASSED] 19 VFs
[14:18:54] [PASSED] 20 VFs
[14:18:54] [PASSED] 21 VFs
[14:18:54] [PASSED] 22 VFs
[14:18:54] [PASSED] 23 VFs
[14:18:54] [PASSED] 24 VFs
[14:18:54] [PASSED] 25 VFs
[14:18:54] [PASSED] 26 VFs
[14:18:54] [PASSED] 27 VFs
[14:18:54] [PASSED] 28 VFs
[14:18:54] [PASSED] 29 VFs
[14:18:55] [PASSED] 30 VFs
[14:18:55] [PASSED] 31 VFs
[14:18:55] [PASSED] 32 VFs
[14:18:55] [PASSED] 33 VFs
[14:18:55] [PASSED] 34 VFs
[14:18:55] [PASSED] 35 VFs
[14:18:55] [PASSED] 36 VFs
[14:18:55] [PASSED] 37 VFs
[14:18:55] [PASSED] 38 VFs
[14:18:55] [PASSED] 39 VFs
[14:18:55] [PASSED] 40 VFs
[14:18:55] [PASSED] 41 VFs
[14:18:55] [PASSED] 42 VFs
[14:18:55] [PASSED] 43 VFs
[14:18:55] [PASSED] 44 VFs
[14:18:55] [PASSED] 45 VFs
[14:18:55] [PASSED] 46 VFs
[14:18:55] [PASSED] 47 VFs
[14:18:55] [PASSED] 48 VFs
[14:18:55] [PASSED] 49 VFs
[14:18:55] [PASSED] 50 VFs
[14:18:55] [PASSED] 51 VFs
[14:18:55] [PASSED] 52 VFs
[14:18:55] [PASSED] 53 VFs
[14:18:55] [PASSED] 54 VFs
[14:18:55] [PASSED] 55 VFs
[14:18:55] [PASSED] 56 VFs
[14:18:55] [PASSED] 57 VFs
[14:18:55] [PASSED] 58 VFs
[14:18:55] [PASSED] 59 VFs
[14:18:55] [PASSED] 60 VFs
[14:18:55] [PASSED] 61 VFs
[14:18:55] [PASSED] 62 VFs
[14:18:55] [PASSED] 63 VFs
[14:18:55] ================= [PASSED] fair_doorbells ==================
[14:18:55] ======================== fair_ggtt ========================
[14:18:55] [PASSED] 1 VF
[14:18:55] [PASSED] 2 VFs
[14:18:55] [PASSED] 3 VFs
[14:18:55] [PASSED] 4 VFs
[14:18:55] [PASSED] 5 VFs
[14:18:55] [PASSED] 6 VFs
[14:18:55] [PASSED] 7 VFs
[14:18:55] [PASSED] 8 VFs
[14:18:55] [PASSED] 9 VFs
[14:18:55] [PASSED] 10 VFs
[14:18:55] [PASSED] 11 VFs
[14:18:55] [PASSED] 12 VFs
[14:18:55] [PASSED] 13 VFs
[14:18:55] [PASSED] 14 VFs
[14:18:55] [PASSED] 15 VFs
[14:18:55] [PASSED] 16 VFs
[14:18:55] [PASSED] 17 VFs
[14:18:55] [PASSED] 18 VFs
[14:18:55] [PASSED] 19 VFs
[14:18:55] [PASSED] 20 VFs
[14:18:55] [PASSED] 21 VFs
[14:18:55] [PASSED] 22 VFs
[14:18:55] [PASSED] 23 VFs
[14:18:55] [PASSED] 24 VFs
[14:18:55] [PASSED] 25 VFs
[14:18:55] [PASSED] 26 VFs
[14:18:55] [PASSED] 27 VFs
[14:18:55] [PASSED] 28 VFs
[14:18:55] [PASSED] 29 VFs
[14:18:55] [PASSED] 30 VFs
[14:18:55] [PASSED] 31 VFs
[14:18:55] [PASSED] 32 VFs
[14:18:55] [PASSED] 33 VFs
[14:18:55] [PASSED] 34 VFs
[14:18:55] [PASSED] 35 VFs
[14:18:55] [PASSED] 36 VFs
[14:18:55] [PASSED] 37 VFs
[14:18:55] [PASSED] 38 VFs
[14:18:55] [PASSED] 39 VFs
[14:18:55] [PASSED] 40 VFs
[14:18:55] [PASSED] 41 VFs
[14:18:55] [PASSED] 42 VFs
[14:18:55] [PASSED] 43 VFs
[14:18:55] [PASSED] 44 VFs
[14:18:55] [PASSED] 45 VFs
[14:18:55] [PASSED] 46 VFs
[14:18:55] [PASSED] 47 VFs
[14:18:55] [PASSED] 48 VFs
[14:18:55] [PASSED] 49 VFs
[14:18:55] [PASSED] 50 VFs
[14:18:55] [PASSED] 51 VFs
[14:18:55] [PASSED] 52 VFs
[14:18:55] [PASSED] 53 VFs
[14:18:55] [PASSED] 54 VFs
[14:18:55] [PASSED] 55 VFs
[14:18:55] [PASSED] 56 VFs
[14:18:55] [PASSED] 57 VFs
[14:18:55] [PASSED] 58 VFs
[14:18:55] [PASSED] 59 VFs
[14:18:55] [PASSED] 60 VFs
[14:18:55] [PASSED] 61 VFs
[14:18:55] [PASSED] 62 VFs
[14:18:55] [PASSED] 63 VFs
[14:18:55] ==================== [PASSED] fair_ggtt ====================
[14:18:55] ======================== fair_vram ========================
[14:18:55] [PASSED] 1 VF
[14:18:55] [PASSED] 2 VFs
[14:18:55] [PASSED] 3 VFs
[14:18:55] [PASSED] 4 VFs
[14:18:55] [PASSED] 5 VFs
[14:18:55] [PASSED] 6 VFs
[14:18:55] [PASSED] 7 VFs
[14:18:55] [PASSED] 8 VFs
[14:18:55] [PASSED] 9 VFs
[14:18:55] [PASSED] 10 VFs
[14:18:55] [PASSED] 11 VFs
[14:18:55] [PASSED] 12 VFs
[14:18:55] [PASSED] 13 VFs
[14:18:55] [PASSED] 14 VFs
[14:18:55] [PASSED] 15 VFs
[14:18:55] [PASSED] 16 VFs
[14:18:55] [PASSED] 17 VFs
[14:18:55] [PASSED] 18 VFs
[14:18:55] [PASSED] 19 VFs
[14:18:55] [PASSED] 20 VFs
[14:18:55] [PASSED] 21 VFs
[14:18:55] [PASSED] 22 VFs
[14:18:55] [PASSED] 23 VFs
[14:18:55] [PASSED] 24 VFs
[14:18:55] [PASSED] 25 VFs
[14:18:55] [PASSED] 26 VFs
[14:18:55] [PASSED] 27 VFs
[14:18:55] [PASSED] 28 VFs
[14:18:55] [PASSED] 29 VFs
[14:18:55] [PASSED] 30 VFs
[14:18:55] [PASSED] 31 VFs
[14:18:55] [PASSED] 32 VFs
[14:18:55] [PASSED] 33 VFs
[14:18:55] [PASSED] 34 VFs
[14:18:55] [PASSED] 35 VFs
[14:18:55] [PASSED] 36 VFs
[14:18:55] [PASSED] 37 VFs
[14:18:55] [PASSED] 38 VFs
[14:18:55] [PASSED] 39 VFs
[14:18:55] [PASSED] 40 VFs
[14:18:55] [PASSED] 41 VFs
[14:18:55] [PASSED] 42 VFs
[14:18:55] [PASSED] 43 VFs
[14:18:55] [PASSED] 44 VFs
[14:18:55] [PASSED] 45 VFs
[14:18:55] [PASSED] 46 VFs
[14:18:55] [PASSED] 47 VFs
[14:18:55] [PASSED] 48 VFs
[14:18:55] [PASSED] 49 VFs
[14:18:55] [PASSED] 50 VFs
[14:18:55] [PASSED] 51 VFs
[14:18:55] [PASSED] 52 VFs
[14:18:55] [PASSED] 53 VFs
[14:18:55] [PASSED] 54 VFs
[14:18:55] [PASSED] 55 VFs
[14:18:55] [PASSED] 56 VFs
[14:18:55] [PASSED] 57 VFs
[14:18:55] [PASSED] 58 VFs
[14:18:55] [PASSED] 59 VFs
[14:18:55] [PASSED] 60 VFs
[14:18:55] [PASSED] 61 VFs
[14:18:55] [PASSED] 62 VFs
[14:18:55] [PASSED] 63 VFs
[14:18:55] ==================== [PASSED] fair_vram ====================
[14:18:55] ================== [PASSED] pf_gt_config ===================
[14:18:55] ===================== lmtt (1 subtest) =====================
[14:18:55] ======================== test_ops =========================
[14:18:55] [PASSED] 2-level
[14:18:55] [PASSED] multi-level
[14:18:55] ==================== [PASSED] test_ops =====================
[14:18:55] ====================== [PASSED] lmtt =======================
[14:18:55] ================= pf_service (11 subtests) =================
[14:18:55] [PASSED] pf_negotiate_any
[14:18:55] [PASSED] pf_negotiate_base_match
[14:18:55] [PASSED] pf_negotiate_base_newer
[14:18:55] [PASSED] pf_negotiate_base_next
[14:18:55] [SKIPPED] pf_negotiate_base_older
[14:18:55] [PASSED] pf_negotiate_base_prev
[14:18:55] [PASSED] pf_negotiate_latest_match
[14:18:55] [PASSED] pf_negotiate_latest_newer
[14:18:55] [PASSED] pf_negotiate_latest_next
[14:18:55] [SKIPPED] pf_negotiate_latest_older
[14:18:55] [SKIPPED] pf_negotiate_latest_prev
[14:18:55] =================== [PASSED] pf_service ====================
[14:18:55] ================= xe_guc_g2g (2 subtests) ==================
[14:18:55] ============== xe_live_guc_g2g_kunit_default ==============
[14:18:55] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:18:55] ============== xe_live_guc_g2g_kunit_allmem ===============
[14:18:55] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:18:55] =================== [SKIPPED] xe_guc_g2g ===================
[14:18:55] =================== xe_mocs (2 subtests) ===================
[14:18:55] ================ xe_live_mocs_kernel_kunit ================
[14:18:55] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:18:55] ================ xe_live_mocs_reset_kunit =================
[14:18:55] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:18:55] ==================== [SKIPPED] xe_mocs =====================
[14:18:55] ================= xe_migrate (2 subtests) ==================
[14:18:55] ================= xe_migrate_sanity_kunit =================
[14:18:55] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:18:55] ================== xe_validate_ccs_kunit ==================
[14:18:55] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:18:55] =================== [SKIPPED] xe_migrate ===================
[14:18:55] ================== xe_dma_buf (1 subtest) ==================
[14:18:55] ==================== xe_dma_buf_kunit =====================
[14:18:55] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:18:55] =================== [SKIPPED] xe_dma_buf ===================
[14:18:55] ================= xe_bo_shrink (1 subtest) =================
[14:18:55] =================== xe_bo_shrink_kunit ====================
[14:18:55] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:18:55] ================== [SKIPPED] xe_bo_shrink ==================
[14:18:55] ==================== xe_bo (2 subtests) ====================
[14:18:55] ================== xe_ccs_migrate_kunit ===================
[14:18:55] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:18:55] ==================== xe_bo_evict_kunit ====================
[14:18:55] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:18:55] ===================== [SKIPPED] xe_bo ======================
[14:18:55] ==================== args (13 subtests) ====================
[14:18:55] [PASSED] count_args_test
[14:18:55] [PASSED] call_args_example
[14:18:55] [PASSED] call_args_test
[14:18:55] [PASSED] drop_first_arg_example
[14:18:55] [PASSED] drop_first_arg_test
[14:18:55] [PASSED] first_arg_example
[14:18:55] [PASSED] first_arg_test
[14:18:55] [PASSED] last_arg_example
[14:18:55] [PASSED] last_arg_test
[14:18:55] [PASSED] pick_arg_example
[14:18:55] [PASSED] if_args_example
[14:18:55] [PASSED] if_args_test
[14:18:55] [PASSED] sep_comma_example
[14:18:55] ====================== [PASSED] args =======================
[14:18:55] =================== xe_pci (3 subtests) ====================
[14:18:55] ==================== check_graphics_ip ====================
[14:18:55] [PASSED] 12.00 Xe_LP
[14:18:55] [PASSED] 12.10 Xe_LP+
[14:18:55] [PASSED] 12.55 Xe_HPG
[14:18:55] [PASSED] 12.60 Xe_HPC
[14:18:55] [PASSED] 12.70 Xe_LPG
[14:18:55] [PASSED] 12.71 Xe_LPG
[14:18:55] [PASSED] 12.74 Xe_LPG+
[14:18:55] [PASSED] 20.01 Xe2_HPG
[14:18:55] [PASSED] 20.02 Xe2_HPG
[14:18:55] [PASSED] 20.04 Xe2_LPG
[14:18:55] [PASSED] 30.00 Xe3_LPG
[14:18:55] [PASSED] 30.01 Xe3_LPG
[14:18:55] [PASSED] 30.03 Xe3_LPG
[14:18:55] [PASSED] 30.04 Xe3_LPG
[14:18:55] [PASSED] 30.05 Xe3_LPG
[14:18:55] [PASSED] 35.10 Xe3p_LPG
[14:18:55] [PASSED] 35.11 Xe3p_XPC
[14:18:55] ================ [PASSED] check_graphics_ip ================
[14:18:55] ===================== check_media_ip ======================
[14:18:55] [PASSED] 12.00 Xe_M
[14:18:55] [PASSED] 12.55 Xe_HPM
[14:18:55] [PASSED] 13.00 Xe_LPM+
[14:18:55] [PASSED] 13.01 Xe2_HPM
[14:18:55] [PASSED] 20.00 Xe2_LPM
[14:18:55] [PASSED] 30.00 Xe3_LPM
[14:18:55] [PASSED] 30.02 Xe3_LPM
[14:18:55] [PASSED] 35.00 Xe3p_LPM
[14:18:55] [PASSED] 35.03 Xe3p_HPM
[14:18:55] ================= [PASSED] check_media_ip ==================
[14:18:55] =================== check_platform_desc ===================
[14:18:55] [PASSED] 0x9A60 (TIGERLAKE)
[14:18:55] [PASSED] 0x9A68 (TIGERLAKE)
[14:18:55] [PASSED] 0x9A70 (TIGERLAKE)
[14:18:55] [PASSED] 0x9A40 (TIGERLAKE)
[14:18:55] [PASSED] 0x9A49 (TIGERLAKE)
[14:18:55] [PASSED] 0x9A59 (TIGERLAKE)
[14:18:55] [PASSED] 0x9A78 (TIGERLAKE)
[14:18:55] [PASSED] 0x9AC0 (TIGERLAKE)
[14:18:55] [PASSED] 0x9AC9 (TIGERLAKE)
[14:18:55] [PASSED] 0x9AD9 (TIGERLAKE)
[14:18:55] [PASSED] 0x9AF8 (TIGERLAKE)
[14:18:55] [PASSED] 0x4C80 (ROCKETLAKE)
[14:18:55] [PASSED] 0x4C8A (ROCKETLAKE)
[14:18:55] [PASSED] 0x4C8B (ROCKETLAKE)
[14:18:55] [PASSED] 0x4C8C (ROCKETLAKE)
[14:18:55] [PASSED] 0x4C90 (ROCKETLAKE)
[14:18:55] [PASSED] 0x4C9A (ROCKETLAKE)
[14:18:55] [PASSED] 0x4680 (ALDERLAKE_S)
[14:18:55] [PASSED] 0x4682 (ALDERLAKE_S)
[14:18:55] [PASSED] 0x4688 (ALDERLAKE_S)
[14:18:55] [PASSED] 0x468A (ALDERLAKE_S)
[14:18:55] [PASSED] 0x468B (ALDERLAKE_S)
[14:18:55] [PASSED] 0x4690 (ALDERLAKE_S)
[14:18:55] [PASSED] 0x4692 (ALDERLAKE_S)
[14:18:55] [PASSED] 0x4693 (ALDERLAKE_S)
[14:18:55] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46AA (ALDERLAKE_P)
[14:18:55] [PASSED] 0x462A (ALDERLAKE_P)
[14:18:55] [PASSED] 0x4626 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x4628 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:18:55] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:18:55] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:18:55] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:18:55] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:18:55] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:18:55] [PASSED] 0xA721 (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA720 (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:18:55] [PASSED] 0xA780 (ALDERLAKE_S)
[14:18:55] [PASSED] 0xA781 (ALDERLAKE_S)
[14:18:55] [PASSED] 0xA782 (ALDERLAKE_S)
[14:18:55] [PASSED] 0xA783 (ALDERLAKE_S)
[14:18:55] [PASSED] 0xA788 (ALDERLAKE_S)
[14:18:55] [PASSED] 0xA789 (ALDERLAKE_S)
[14:18:55] [PASSED] 0xA78A (ALDERLAKE_S)
[14:18:55] [PASSED] 0xA78B (ALDERLAKE_S)
[14:18:55] [PASSED] 0x4905 (DG1)
[14:18:55] [PASSED] 0x4906 (DG1)
[14:18:55] [PASSED] 0x4907 (DG1)
[14:18:55] [PASSED] 0x4908 (DG1)
[14:18:55] [PASSED] 0x4909 (DG1)
[14:18:55] [PASSED] 0x56C0 (DG2)
[14:18:55] [PASSED] 0x56C2 (DG2)
[14:18:55] [PASSED] 0x56C1 (DG2)
[14:18:55] [PASSED] 0x7D51 (METEORLAKE)
[14:18:55] [PASSED] 0x7DD1 (METEORLAKE)
[14:18:55] [PASSED] 0x7D41 (METEORLAKE)
[14:18:55] [PASSED] 0x7D67 (METEORLAKE)
[14:18:55] [PASSED] 0xB640 (METEORLAKE)
[14:18:55] [PASSED] 0x56A0 (DG2)
[14:18:55] [PASSED] 0x56A1 (DG2)
[14:18:55] [PASSED] 0x56A2 (DG2)
[14:18:55] [PASSED] 0x56BE (DG2)
[14:18:55] [PASSED] 0x56BF (DG2)
[14:18:55] [PASSED] 0x5690 (DG2)
[14:18:55] [PASSED] 0x5691 (DG2)
[14:18:55] [PASSED] 0x5692 (DG2)
[14:18:55] [PASSED] 0x56A5 (DG2)
[14:18:55] [PASSED] 0x56A6 (DG2)
[14:18:55] [PASSED] 0x56B0 (DG2)
[14:18:55] [PASSED] 0x56B1 (DG2)
[14:18:55] [PASSED] 0x56BA (DG2)
[14:18:55] [PASSED] 0x56BB (DG2)
[14:18:55] [PASSED] 0x56BC (DG2)
[14:18:55] [PASSED] 0x56BD (DG2)
[14:18:55] [PASSED] 0x5693 (DG2)
[14:18:55] [PASSED] 0x5694 (DG2)
[14:18:55] [PASSED] 0x5695 (DG2)
[14:18:55] [PASSED] 0x56A3 (DG2)
[14:18:55] [PASSED] 0x56A4 (DG2)
[14:18:55] [PASSED] 0x56B2 (DG2)
[14:18:55] [PASSED] 0x56B3 (DG2)
[14:18:55] [PASSED] 0x5696 (DG2)
[14:18:55] [PASSED] 0x5697 (DG2)
[14:18:55] [PASSED] 0xB69 (PVC)
[14:18:55] [PASSED] 0xB6E (PVC)
[14:18:55] [PASSED] 0xBD4 (PVC)
[14:18:55] [PASSED] 0xBD5 (PVC)
[14:18:55] [PASSED] 0xBD6 (PVC)
[14:18:55] [PASSED] 0xBD7 (PVC)
[14:18:55] [PASSED] 0xBD8 (PVC)
[14:18:55] [PASSED] 0xBD9 (PVC)
[14:18:55] [PASSED] 0xBDA (PVC)
[14:18:55] [PASSED] 0xBDB (PVC)
[14:18:55] [PASSED] 0xBE0 (PVC)
[14:18:55] [PASSED] 0xBE1 (PVC)
[14:18:55] [PASSED] 0xBE5 (PVC)
[14:18:55] [PASSED] 0x7D40 (METEORLAKE)
[14:18:55] [PASSED] 0x7D45 (METEORLAKE)
[14:18:55] [PASSED] 0x7D55 (METEORLAKE)
[14:18:55] [PASSED] 0x7D60 (METEORLAKE)
[14:18:55] [PASSED] 0x7DD5 (METEORLAKE)
[14:18:55] [PASSED] 0x6420 (LUNARLAKE)
[14:18:55] [PASSED] 0x64A0 (LUNARLAKE)
[14:18:55] [PASSED] 0x64B0 (LUNARLAKE)
[14:18:55] [PASSED] 0xE202 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE209 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE20B (BATTLEMAGE)
[14:18:55] [PASSED] 0xE20C (BATTLEMAGE)
[14:18:55] [PASSED] 0xE20D (BATTLEMAGE)
[14:18:55] [PASSED] 0xE210 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE211 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE212 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE216 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE220 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE221 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE222 (BATTLEMAGE)
[14:18:55] [PASSED] 0xE223 (BATTLEMAGE)
[14:18:55] [PASSED] 0xB080 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB081 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB082 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB083 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB084 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB085 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB086 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB087 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB08F (PANTHERLAKE)
[14:18:55] [PASSED] 0xB090 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:18:55] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:18:55] [PASSED] 0xFD80 (PANTHERLAKE)
[14:18:55] [PASSED] 0xFD81 (PANTHERLAKE)
[14:18:55] [PASSED] 0xD740 (NOVALAKE_S)
[14:18:55] [PASSED] 0xD741 (NOVALAKE_S)
[14:18:55] [PASSED] 0xD742 (NOVALAKE_S)
[14:18:55] [PASSED] 0xD743 (NOVALAKE_S)
[14:18:55] [PASSED] 0xD744 (NOVALAKE_S)
[14:18:55] [PASSED] 0xD745 (NOVALAKE_S)
[14:18:55] [PASSED] 0x674C (CRESCENTISLAND)
[14:18:55] [PASSED] 0xD750 (NOVALAKE_P)
[14:18:55] [PASSED] 0xD751 (NOVALAKE_P)
[14:18:55] [PASSED] 0xD752 (NOVALAKE_P)
[14:18:55] [PASSED] 0xD753 (NOVALAKE_P)
[14:18:55] [PASSED] 0xD754 (NOVALAKE_P)
[14:18:55] [PASSED] 0xD755 (NOVALAKE_P)
[14:18:55] [PASSED] 0xD756 (NOVALAKE_P)
[14:18:55] [PASSED] 0xD757 (NOVALAKE_P)
[14:18:55] [PASSED] 0xD75F (NOVALAKE_P)
[14:18:55] =============== [PASSED] check_platform_desc ===============
[14:18:55] ===================== [PASSED] xe_pci ======================
[14:18:55] =================== xe_rtp (2 subtests) ====================
[14:18:55] =============== xe_rtp_process_to_sr_tests ================
[14:18:55] [PASSED] coalesce-same-reg
[14:18:55] [PASSED] no-match-no-add
[14:18:55] [PASSED] match-or
[14:18:55] [PASSED] match-or-xfail
[14:18:55] [PASSED] no-match-no-add-multiple-rules
[14:18:55] [PASSED] two-regs-two-entries
[14:18:55] [PASSED] clr-one-set-other
[14:18:55] [PASSED] set-field
[14:18:55] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[14:18:55] [PASSED] conflict-not-disjoint
[14:18:55] [PASSED] conflict-reg-type
[14:18:55] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:18:55] ================== xe_rtp_process_tests ===================
[14:18:55] [PASSED] active1
[14:18:55] [PASSED] active2
[14:18:55] [PASSED] active-inactive
[14:18:55] [PASSED] inactive-active
[14:18:55] [PASSED] inactive-1st_or_active-inactive
[14:18:55] [PASSED] inactive-2nd_or_active-inactive
[14:18:55] [PASSED] inactive-last_or_active-inactive
[14:18:55] [PASSED] inactive-no_or_active-inactive
[14:18:55] ============== [PASSED] xe_rtp_process_tests ===============
[14:18:55] ===================== [PASSED] xe_rtp ======================
[14:18:55] ==================== xe_wa (1 subtest) =====================
[14:18:55] ======================== xe_wa_gt =========================
[14:18:55] [PASSED] TIGERLAKE B0
[14:18:55] [PASSED] DG1 A0
[14:18:55] [PASSED] DG1 B0
[14:18:55] [PASSED] ALDERLAKE_S A0
[14:18:55] [PASSED] ALDERLAKE_S B0
[14:18:55] [PASSED] ALDERLAKE_S C0
[14:18:55] [PASSED] ALDERLAKE_S D0
[14:18:55] [PASSED] ALDERLAKE_P A0
[14:18:55] [PASSED] ALDERLAKE_P B0
[14:18:55] [PASSED] ALDERLAKE_P C0
[14:18:55] [PASSED] ALDERLAKE_S RPLS D0
[14:18:55] [PASSED] ALDERLAKE_P RPLU E0
[14:18:55] [PASSED] DG2 G10 C0
[14:18:55] [PASSED] DG2 G11 B1
[14:18:55] [PASSED] DG2 G12 A1
[14:18:55] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:18:55] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:18:55] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:18:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:18:55] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:18:55] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:18:55] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:18:55] ==================== [PASSED] xe_wa_gt =====================
[14:18:55] ====================== [PASSED] xe_wa ======================
[14:18:55] ============================================================
[14:18:55] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[14:18:55] Elapsed time: 36.474s total, 4.245s configuring, 31.613s building, 0.598s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:18:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:18:57] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:19:21] Starting KUnit Kernel (1/1)...
[14:19:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:19:21] ============ drm_test_pick_cmdline (2 subtests) ============
[14:19:21] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[14:19:21] =============== drm_test_pick_cmdline_named ===============
[14:19:21] [PASSED] NTSC
[14:19:21] [PASSED] NTSC-J
[14:19:21] [PASSED] PAL
[14:19:21] [PASSED] PAL-M
[14:19:21] =========== [PASSED] drm_test_pick_cmdline_named ===========
[14:19:21] ============== [PASSED] drm_test_pick_cmdline ==============
[14:19:21] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[14:19:21] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[14:19:21] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[14:19:21] =========== drm_validate_clone_mode (2 subtests) ===========
[14:19:21] ============== drm_test_check_in_clone_mode ===============
[14:19:21] [PASSED] in_clone_mode
[14:19:21] [PASSED] not_in_clone_mode
[14:19:21] ========== [PASSED] drm_test_check_in_clone_mode ===========
[14:19:21] =============== drm_test_check_valid_clones ===============
[14:19:21] [PASSED] not_in_clone_mode
[14:19:21] [PASSED] valid_clone
[14:19:21] [PASSED] invalid_clone
[14:19:21] =========== [PASSED] drm_test_check_valid_clones ===========
[14:19:21] ============= [PASSED] drm_validate_clone_mode =============
[14:19:21] ============= drm_validate_modeset (1 subtest) =============
[14:19:21] [PASSED] drm_test_check_connector_changed_modeset
[14:19:21] ============== [PASSED] drm_validate_modeset ===============
[14:19:21] ====== drm_test_bridge_get_current_state (2 subtests) ======
[14:19:21] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[14:19:21] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[14:19:21] ======== [PASSED] drm_test_bridge_get_current_state ========
[14:19:21] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[14:19:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[14:19:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[14:19:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[14:19:21] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[14:19:21] ============== drm_bridge_alloc (2 subtests) ===============
[14:19:21] [PASSED] drm_test_drm_bridge_alloc_basic
[14:19:21] [PASSED] drm_test_drm_bridge_alloc_get_put
[14:19:21] ================ [PASSED] drm_bridge_alloc =================
[14:19:21] ============= drm_cmdline_parser (40 subtests) =============
[14:19:21] [PASSED] drm_test_cmdline_force_d_only
[14:19:21] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:19:21] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:19:21] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:19:21] [PASSED] drm_test_cmdline_force_e_only
[14:19:21] [PASSED] drm_test_cmdline_res
[14:19:21] [PASSED] drm_test_cmdline_res_vesa
[14:19:21] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:19:21] [PASSED] drm_test_cmdline_res_rblank
[14:19:21] [PASSED] drm_test_cmdline_res_bpp
[14:19:21] [PASSED] drm_test_cmdline_res_refresh
[14:19:21] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:19:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:19:21] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:19:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:19:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:19:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:19:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:19:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:19:21] [PASSED] drm_test_cmdline_res_margins_force_on
[14:19:21] [PASSED] drm_test_cmdline_res_vesa_margins
[14:19:21] [PASSED] drm_test_cmdline_name
[14:19:21] [PASSED] drm_test_cmdline_name_bpp
[14:19:21] [PASSED] drm_test_cmdline_name_option
[14:19:21] [PASSED] drm_test_cmdline_name_bpp_option
[14:19:21] [PASSED] drm_test_cmdline_rotate_0
[14:19:21] [PASSED] drm_test_cmdline_rotate_90
[14:19:21] [PASSED] drm_test_cmdline_rotate_180
[14:19:21] [PASSED] drm_test_cmdline_rotate_270
[14:19:21] [PASSED] drm_test_cmdline_hmirror
[14:19:21] [PASSED] drm_test_cmdline_vmirror
[14:19:21] [PASSED] drm_test_cmdline_margin_options
[14:19:21] [PASSED] drm_test_cmdline_multiple_options
[14:19:21] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:19:21] [PASSED] drm_test_cmdline_extra_and_option
[14:19:21] [PASSED] drm_test_cmdline_freestanding_options
[14:19:21] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:19:21] [PASSED] drm_test_cmdline_panel_orientation
[14:19:21] ================ drm_test_cmdline_invalid =================
[14:19:21] [PASSED] margin_only
[14:19:21] [PASSED] interlace_only
[14:19:21] [PASSED] res_missing_x
[14:19:21] [PASSED] res_missing_y
[14:19:21] [PASSED] res_bad_y
[14:19:21] [PASSED] res_missing_y_bpp
[14:19:21] [PASSED] res_bad_bpp
[14:19:21] [PASSED] res_bad_refresh
[14:19:21] [PASSED] res_bpp_refresh_force_on_off
[14:19:21] [PASSED] res_invalid_mode
[14:19:21] [PASSED] res_bpp_wrong_place_mode
[14:19:21] [PASSED] name_bpp_refresh
[14:19:21] [PASSED] name_refresh
[14:19:21] [PASSED] name_refresh_wrong_mode
[14:19:21] [PASSED] name_refresh_invalid_mode
[14:19:21] [PASSED] rotate_multiple
[14:19:21] [PASSED] rotate_invalid_val
[14:19:21] [PASSED] rotate_truncated
[14:19:21] [PASSED] invalid_option
[14:19:21] [PASSED] invalid_tv_option
[14:19:21] [PASSED] truncated_tv_option
[14:19:21] ============ [PASSED] drm_test_cmdline_invalid =============
[14:19:21] =============== drm_test_cmdline_tv_options ===============
[14:19:21] [PASSED] NTSC
[14:19:21] [PASSED] NTSC_443
[14:19:21] [PASSED] NTSC_J
[14:19:21] [PASSED] PAL
[14:19:21] [PASSED] PAL_M
[14:19:21] [PASSED] PAL_N
[14:19:21] [PASSED] SECAM
[14:19:21] [PASSED] MONO_525
[14:19:21] [PASSED] MONO_625
[14:19:21] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:19:21] =============== [PASSED] drm_cmdline_parser ================
[14:19:21] ========== drmm_connector_hdmi_init (20 subtests) ==========
[14:19:21] [PASSED] drm_test_connector_hdmi_init_valid
[14:19:21] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:19:21] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:19:21] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:19:21] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:19:21] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:19:21] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:19:21] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:19:21] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:19:21] [PASSED] supported_formats=0x9 yuv420_allowed=1
[14:19:21] [PASSED] supported_formats=0x9 yuv420_allowed=0
[14:19:21] [PASSED] supported_formats=0x5 yuv420_allowed=1
[14:19:21] [PASSED] supported_formats=0x5 yuv420_allowed=0
[14:19:21] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:19:21] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:19:21] [PASSED] drm_test_connector_hdmi_init_null_product
[14:19:21] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:19:21] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:19:21] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:19:21] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:19:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:19:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:19:21] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:19:21] ========= drm_test_connector_hdmi_init_type_valid =========
[14:19:21] [PASSED] HDMI-A
[14:19:21] [PASSED] HDMI-B
[14:19:21] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:19:21] ======== drm_test_connector_hdmi_init_type_invalid ========
[14:19:21] [PASSED] Unknown
[14:19:21] [PASSED] VGA
[14:19:21] [PASSED] DVI-I
[14:19:21] [PASSED] DVI-D
[14:19:21] [PASSED] DVI-A
[14:19:21] [PASSED] Composite
[14:19:21] [PASSED] SVIDEO
[14:19:21] [PASSED] LVDS
[14:19:21] [PASSED] Component
[14:19:21] [PASSED] DIN
[14:19:21] [PASSED] DP
[14:19:21] [PASSED] TV
[14:19:21] [PASSED] eDP
[14:19:21] [PASSED] Virtual
[14:19:21] [PASSED] DSI
[14:19:21] [PASSED] DPI
[14:19:21] [PASSED] Writeback
[14:19:21] [PASSED] SPI
[14:19:21] [PASSED] USB
[14:19:21] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:19:21] ============ [PASSED] drmm_connector_hdmi_init =============
[14:19:21] ============= drmm_connector_init (3 subtests) =============
[14:19:21] [PASSED] drm_test_drmm_connector_init
[14:19:21] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:19:21] ========= drm_test_drmm_connector_init_type_valid =========
[14:19:21] [PASSED] Unknown
[14:19:21] [PASSED] VGA
[14:19:21] [PASSED] DVI-I
[14:19:21] [PASSED] DVI-D
[14:19:21] [PASSED] DVI-A
[14:19:21] [PASSED] Composite
[14:19:21] [PASSED] SVIDEO
[14:19:21] [PASSED] LVDS
[14:19:21] [PASSED] Component
[14:19:21] [PASSED] DIN
[14:19:21] [PASSED] DP
[14:19:21] [PASSED] HDMI-A
[14:19:21] [PASSED] HDMI-B
[14:19:21] [PASSED] TV
[14:19:21] [PASSED] eDP
[14:19:21] [PASSED] Virtual
[14:19:21] [PASSED] DSI
[14:19:21] [PASSED] DPI
[14:19:21] [PASSED] Writeback
[14:19:21] [PASSED] SPI
[14:19:21] [PASSED] USB
[14:19:21] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:19:21] =============== [PASSED] drmm_connector_init ===============
[14:19:21] ========= drm_connector_dynamic_init (6 subtests) ==========
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_init
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_init_properties
[14:19:21] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[14:19:21] [PASSED] Unknown
[14:19:21] [PASSED] VGA
[14:19:21] [PASSED] DVI-I
[14:19:21] [PASSED] DVI-D
[14:19:21] [PASSED] DVI-A
[14:19:21] [PASSED] Composite
[14:19:21] [PASSED] SVIDEO
[14:19:21] [PASSED] LVDS
[14:19:21] [PASSED] Component
[14:19:21] [PASSED] DIN
[14:19:21] [PASSED] DP
[14:19:21] [PASSED] HDMI-A
[14:19:21] [PASSED] HDMI-B
[14:19:21] [PASSED] TV
[14:19:21] [PASSED] eDP
[14:19:21] [PASSED] Virtual
[14:19:21] [PASSED] DSI
[14:19:21] [PASSED] DPI
[14:19:21] [PASSED] Writeback
[14:19:21] [PASSED] SPI
[14:19:21] [PASSED] USB
[14:19:21] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[14:19:21] ======== drm_test_drm_connector_dynamic_init_name =========
[14:19:21] [PASSED] Unknown
[14:19:21] [PASSED] VGA
[14:19:21] [PASSED] DVI-I
[14:19:21] [PASSED] DVI-D
[14:19:21] [PASSED] DVI-A
[14:19:21] [PASSED] Composite
[14:19:21] [PASSED] SVIDEO
[14:19:21] [PASSED] LVDS
[14:19:21] [PASSED] Component
[14:19:21] [PASSED] DIN
[14:19:21] [PASSED] DP
[14:19:21] [PASSED] HDMI-A
[14:19:21] [PASSED] HDMI-B
[14:19:21] [PASSED] TV
[14:19:21] [PASSED] eDP
[14:19:21] [PASSED] Virtual
[14:19:21] [PASSED] DSI
[14:19:21] [PASSED] DPI
[14:19:21] [PASSED] Writeback
[14:19:21] [PASSED] SPI
[14:19:21] [PASSED] USB
[14:19:21] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[14:19:21] =========== [PASSED] drm_connector_dynamic_init ============
[14:19:21] ==== drm_connector_dynamic_register_early (4 subtests) =====
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[14:19:21] ====== [PASSED] drm_connector_dynamic_register_early =======
[14:19:21] ======= drm_connector_dynamic_register (7 subtests) ========
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[14:19:21] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[14:19:21] ========= [PASSED] drm_connector_dynamic_register ==========
[14:19:21] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:19:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:19:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:19:21] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:19:21] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:19:21] ========== drm_test_get_tv_mode_from_name_valid ===========
[14:19:21] [PASSED] NTSC
[14:19:21] [PASSED] NTSC-443
[14:19:21] [PASSED] NTSC-J
[14:19:21] [PASSED] PAL
[14:19:21] [PASSED] PAL-M
[14:19:21] [PASSED] PAL-N
[14:19:21] [PASSED] SECAM
[14:19:21] [PASSED] Mono
[14:19:21] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:19:21] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:19:21] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:19:21] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:19:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:19:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:19:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:19:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:19:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:19:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:19:21] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[14:19:21] [PASSED] VIC 96
[14:19:21] [PASSED] VIC 97
[14:19:21] [PASSED] VIC 101
[14:19:21] [PASSED] VIC 102
[14:19:21] [PASSED] VIC 106
[14:19:21] [PASSED] VIC 107
[14:19:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:19:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:19:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:19:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:19:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:19:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:19:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:19:21] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:19:21] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[14:19:21] [PASSED] Automatic
[14:19:21] [PASSED] Full
[14:19:21] [PASSED] Limited 16:235
[14:19:21] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:19:21] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:19:21] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:19:21] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:19:21] === drm_test_drm_hdmi_connector_get_output_format_name ====
[14:19:21] [PASSED] RGB
[14:19:21] [PASSED] YUV 4:2:0
[14:19:21] [PASSED] YUV 4:2:2
[14:19:21] [PASSED] YUV 4:4:4
[14:19:21] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:19:21] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:19:21] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:19:21] ============= drm_damage_helper (21 subtests) ==============
[14:19:21] [PASSED] drm_test_damage_iter_no_damage
[14:19:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:19:21] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:19:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:19:21] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:19:21] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:19:21] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:19:21] [PASSED] drm_test_damage_iter_simple_damage
[14:19:21] [PASSED] drm_test_damage_iter_single_damage
[14:19:21] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:19:21] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:19:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:19:21] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:19:21] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:19:21] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:19:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:19:21] [PASSED] drm_test_damage_iter_damage
[14:19:21] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:19:21] [PASSED] drm_test_damage_iter_damage_one_outside
[14:19:21] [PASSED] drm_test_damage_iter_damage_src_moved
[14:19:21] [PASSED] drm_test_damage_iter_damage_not_visible
[14:19:21] ================ [PASSED] drm_damage_helper ================
[14:19:21] ============== drm_dp_mst_helper (3 subtests) ==============
[14:19:21] ============== drm_test_dp_mst_calc_pbn_mode ==============
[14:19:21] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:19:21] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:19:21] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:19:21] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:19:21] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:19:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:19:21] ============== drm_test_dp_mst_calc_pbn_div ===============
[14:19:21] [PASSED] Link rate 2000000 lane count 4
[14:19:21] [PASSED] Link rate 2000000 lane count 2
[14:19:21] [PASSED] Link rate 2000000 lane count 1
[14:19:21] [PASSED] Link rate 1350000 lane count 4
[14:19:21] [PASSED] Link rate 1350000 lane count 2
[14:19:21] [PASSED] Link rate 1350000 lane count 1
[14:19:21] [PASSED] Link rate 1000000 lane count 4
[14:19:21] [PASSED] Link rate 1000000 lane count 2
[14:19:21] [PASSED] Link rate 1000000 lane count 1
[14:19:21] [PASSED] Link rate 810000 lane count 4
[14:19:21] [PASSED] Link rate 810000 lane count 2
[14:19:21] [PASSED] Link rate 810000 lane count 1
[14:19:21] [PASSED] Link rate 540000 lane count 4
[14:19:21] [PASSED] Link rate 540000 lane count 2
[14:19:21] [PASSED] Link rate 540000 lane count 1
[14:19:21] [PASSED] Link rate 270000 lane count 4
[14:19:21] [PASSED] Link rate 270000 lane count 2
[14:19:21] [PASSED] Link rate 270000 lane count 1
[14:19:21] [PASSED] Link rate 162000 lane count 4
[14:19:21] [PASSED] Link rate 162000 lane count 2
[14:19:21] [PASSED] Link rate 162000 lane count 1
[14:19:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:19:21] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[14:19:21] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:19:21] [PASSED] DP_POWER_UP_PHY with port number
[14:19:21] [PASSED] DP_POWER_DOWN_PHY with port number
[14:19:21] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:19:21] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:19:21] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:19:21] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:19:21] [PASSED] DP_QUERY_PAYLOAD with port number
[14:19:21] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:19:21] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:19:21] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:19:21] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:19:21] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:19:21] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:19:21] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:19:21] [PASSED] DP_REMOTE_I2C_READ with port number
[14:19:21] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:19:21] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:19:21] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:19:21] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:19:21] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:19:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:19:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:19:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:19:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:19:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:19:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:19:21] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:19:21] ================ [PASSED] drm_dp_mst_helper ================
[14:19:21] ================== drm_exec (7 subtests) ===================
[14:19:21] [PASSED] sanitycheck
[14:19:21] [PASSED] test_lock
[14:19:21] [PASSED] test_lock_unlock
[14:19:21] [PASSED] test_duplicates
[14:19:21] [PASSED] test_prepare
[14:19:21] [PASSED] test_prepare_array
[14:19:21] [PASSED] test_multiple_loops
[14:19:21] ==================== [PASSED] drm_exec =====================
[14:19:21] =========== drm_format_helper_test (17 subtests) ===========
[14:19:21] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:19:21] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:19:21] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:19:21] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:19:21] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:19:21] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:19:21] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:19:21] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[14:19:21] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:19:21] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:19:21] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:19:21] ============== drm_test_fb_xrgb8888_to_mono ===============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:19:21] ==================== drm_test_fb_swab =====================
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ================ [PASSED] drm_test_fb_swab =================
[14:19:21] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:19:21] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[14:19:21] [PASSED] single_pixel_source_buffer
[14:19:21] [PASSED] single_pixel_clip_rectangle
[14:19:21] [PASSED] well_known_colors
[14:19:21] [PASSED] destination_pitch
[14:19:21] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:19:21] ================= drm_test_fb_clip_offset =================
[14:19:21] [PASSED] pass through
[14:19:21] [PASSED] horizontal offset
[14:19:21] [PASSED] vertical offset
[14:19:21] [PASSED] horizontal and vertical offset
[14:19:21] [PASSED] horizontal offset (custom pitch)
[14:19:21] [PASSED] vertical offset (custom pitch)
[14:19:21] [PASSED] horizontal and vertical offset (custom pitch)
[14:19:21] ============= [PASSED] drm_test_fb_clip_offset =============
[14:19:21] =================== drm_test_fb_memcpy ====================
[14:19:21] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:19:21] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:19:21] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:19:21] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:19:21] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:19:21] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:19:21] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:19:21] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:19:21] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:19:21] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:19:21] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:19:21] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:19:21] =============== [PASSED] drm_test_fb_memcpy ================
[14:19:21] ============= [PASSED] drm_format_helper_test ==============
[14:19:21] ================= drm_format (18 subtests) =================
[14:19:21] [PASSED] drm_test_format_block_width_invalid
[14:19:21] [PASSED] drm_test_format_block_width_one_plane
[14:19:21] [PASSED] drm_test_format_block_width_two_plane
[14:19:21] [PASSED] drm_test_format_block_width_three_plane
[14:19:21] [PASSED] drm_test_format_block_width_tiled
[14:19:21] [PASSED] drm_test_format_block_height_invalid
[14:19:21] [PASSED] drm_test_format_block_height_one_plane
[14:19:21] [PASSED] drm_test_format_block_height_two_plane
[14:19:21] [PASSED] drm_test_format_block_height_three_plane
[14:19:21] [PASSED] drm_test_format_block_height_tiled
[14:19:21] [PASSED] drm_test_format_min_pitch_invalid
[14:19:21] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:19:21] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:19:21] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:19:21] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:19:21] [PASSED] drm_test_format_min_pitch_two_plane
[14:19:21] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:19:21] [PASSED] drm_test_format_min_pitch_tiled
[14:19:21] =================== [PASSED] drm_format ====================
[14:19:21] ============== drm_framebuffer (10 subtests) ===============
[14:19:21] ========== drm_test_framebuffer_check_src_coords ==========
[14:19:21] [PASSED] Success: source fits into fb
[14:19:21] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:19:21] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:19:21] [PASSED] Fail: overflowing fb with source width
[14:19:21] [PASSED] Fail: overflowing fb with source height
[14:19:21] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:19:21] [PASSED] drm_test_framebuffer_cleanup
[14:19:21] =============== drm_test_framebuffer_create ===============
[14:19:21] [PASSED] ABGR8888 normal sizes
[14:19:21] [PASSED] ABGR8888 max sizes
[14:19:21] [PASSED] ABGR8888 pitch greater than min required
[14:19:21] [PASSED] ABGR8888 pitch less than min required
[14:19:21] [PASSED] ABGR8888 Invalid width
[14:19:21] [PASSED] ABGR8888 Invalid buffer handle
[14:19:21] [PASSED] No pixel format
[14:19:21] [PASSED] ABGR8888 Width 0
[14:19:21] [PASSED] ABGR8888 Height 0
[14:19:21] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:19:21] [PASSED] ABGR8888 Large buffer offset
[14:19:21] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:19:21] [PASSED] ABGR8888 Invalid flag
[14:19:21] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:19:21] [PASSED] ABGR8888 Valid buffer modifier
[14:19:21] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:19:21] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:19:21] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:19:21] [PASSED] NV12 Normal sizes
[14:19:21] [PASSED] NV12 Max sizes
[14:19:21] [PASSED] NV12 Invalid pitch
[14:19:21] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:19:21] [PASSED] NV12 different modifier per-plane
[14:19:21] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:19:21] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:19:21] [PASSED] NV12 Modifier for inexistent plane
[14:19:21] [PASSED] NV12 Handle for inexistent plane
[14:19:21] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:19:21] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:19:21] [PASSED] YVU420 Normal sizes
[14:19:21] [PASSED] YVU420 Max sizes
[14:19:21] [PASSED] YVU420 Invalid pitch
[14:19:21] [PASSED] YVU420 Different pitches
[14:19:21] [PASSED] YVU420 Different buffer offsets/pitches
[14:19:21] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:19:21] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:19:21] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:19:21] [PASSED] YVU420 Valid modifier
[14:19:21] [PASSED] YVU420 Different modifiers per plane
[14:19:21] [PASSED] YVU420 Modifier for inexistent plane
[14:19:21] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:19:21] [PASSED] X0L2 Normal sizes
[14:19:21] [PASSED] X0L2 Max sizes
[14:19:21] [PASSED] X0L2 Invalid pitch
[14:19:21] [PASSED] X0L2 Pitch greater than minimum required
[14:19:21] [PASSED] X0L2 Handle for inexistent plane
[14:19:21] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:19:21] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:19:21] [PASSED] X0L2 Valid modifier
[14:19:21] [PASSED] X0L2 Modifier for inexistent plane
[14:19:21] =========== [PASSED] drm_test_framebuffer_create ===========
[14:19:21] [PASSED] drm_test_framebuffer_free
[14:19:21] [PASSED] drm_test_framebuffer_init
[14:19:21] [PASSED] drm_test_framebuffer_init_bad_format
[14:19:21] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:19:21] [PASSED] drm_test_framebuffer_lookup
[14:19:21] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:19:21] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:19:21] ================= [PASSED] drm_framebuffer =================
[14:19:21] ================ drm_gem_shmem (8 subtests) ================
[14:19:21] [PASSED] drm_gem_shmem_test_obj_create
[14:19:21] [PASSED] drm_gem_shmem_test_obj_create_private
[14:19:21] [PASSED] drm_gem_shmem_test_pin_pages
[14:19:21] [PASSED] drm_gem_shmem_test_vmap
[14:19:21] [PASSED] drm_gem_shmem_test_get_sg_table
[14:19:21] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:19:21] [PASSED] drm_gem_shmem_test_madvise
[14:19:21] [PASSED] drm_gem_shmem_test_purge
[14:19:21] ================== [PASSED] drm_gem_shmem ==================
[14:19:21] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:19:21] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[14:19:21] [PASSED] Automatic
[14:19:21] [PASSED] Full
[14:19:21] [PASSED] Limited 16:235
[14:19:21] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:19:21] [PASSED] drm_test_check_disable_connector
[14:19:21] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:19:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[14:19:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[14:19:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[14:19:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[14:19:21] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[14:19:21] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:19:21] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:19:21] [PASSED] drm_test_check_output_bpc_dvi
[14:19:21] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:19:21] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:19:21] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:19:21] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:19:21] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:19:21] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:19:21] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:19:21] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:19:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:19:21] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:19:21] [PASSED] drm_test_check_broadcast_rgb_value
[14:19:21] [PASSED] drm_test_check_bpc_8_value
[14:19:21] [PASSED] drm_test_check_bpc_10_value
[14:19:21] [PASSED] drm_test_check_bpc_12_value
[14:19:21] [PASSED] drm_test_check_format_value
[14:19:21] [PASSED] drm_test_check_tmds_char_value
[14:19:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:19:21] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[14:19:21] [PASSED] drm_test_check_mode_valid
[14:19:21] [PASSED] drm_test_check_mode_valid_reject
[14:19:21] [PASSED] drm_test_check_mode_valid_reject_rate
[14:19:21] [PASSED] drm_test_check_mode_valid_reject_max_clock
[14:19:21] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[14:19:21] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[14:19:21] [PASSED] drm_test_check_infoframes
[14:19:21] [PASSED] drm_test_check_reject_avi_infoframe
[14:19:21] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[14:19:21] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[14:19:21] [PASSED] drm_test_check_reject_audio_infoframe
[14:19:21] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[14:19:21] ================= drm_managed (2 subtests) =================
[14:19:21] [PASSED] drm_test_managed_release_action
[14:19:21] [PASSED] drm_test_managed_run_action
[14:19:21] =================== [PASSED] drm_managed ===================
[14:19:21] =================== drm_mm (6 subtests) ====================
[14:19:21] [PASSED] drm_test_mm_init
[14:19:21] [PASSED] drm_test_mm_debug
[14:19:21] [PASSED] drm_test_mm_align32
[14:19:21] [PASSED] drm_test_mm_align64
[14:19:21] [PASSED] drm_test_mm_lowest
[14:19:21] [PASSED] drm_test_mm_highest
[14:19:21] ===================== [PASSED] drm_mm ======================
[14:19:21] ============= drm_modes_analog_tv (5 subtests) =============
[14:19:21] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:19:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:19:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:19:21] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:19:21] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:19:21] =============== [PASSED] drm_modes_analog_tv ===============
[14:19:21] ============== drm_plane_helper (2 subtests) ===============
[14:19:21] =============== drm_test_check_plane_state ================
[14:19:21] [PASSED] clipping_simple
[14:19:21] [PASSED] clipping_rotate_reflect
[14:19:21] [PASSED] positioning_simple
[14:19:21] [PASSED] upscaling
[14:19:21] [PASSED] downscaling
[14:19:21] [PASSED] rounding1
[14:19:21] [PASSED] rounding2
[14:19:21] [PASSED] rounding3
[14:19:21] [PASSED] rounding4
[14:19:21] =========== [PASSED] drm_test_check_plane_state ============
[14:19:21] =========== drm_test_check_invalid_plane_state ============
[14:19:21] [PASSED] positioning_invalid
[14:19:21] [PASSED] upscaling_invalid
[14:19:21] [PASSED] downscaling_invalid
[14:19:21] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:19:21] ================ [PASSED] drm_plane_helper =================
[14:19:21] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:19:21] ====== drm_test_connector_helper_tv_get_modes_check =======
[14:19:21] [PASSED] None
[14:19:21] [PASSED] PAL
[14:19:21] [PASSED] NTSC
[14:19:21] [PASSED] Both, NTSC Default
[14:19:21] [PASSED] Both, PAL Default
[14:19:21] [PASSED] Both, NTSC Default, with PAL on command-line
[14:19:21] [PASSED] Both, PAL Default, with NTSC on command-line
[14:19:21] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:19:21] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:19:21] ================== drm_rect (9 subtests) ===================
[14:19:21] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:19:21] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:19:21] [PASSED] drm_test_rect_clip_scaled_clipped
[14:19:21] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:19:21] ================= drm_test_rect_intersect =================
[14:19:21] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:19:21] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:19:21] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:19:21] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:19:21] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:19:21] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:19:21] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:19:21] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:19:21] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:19:21] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:19:21] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:19:21] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:19:21] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:19:21] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:19:21] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[14:19:21] ============= [PASSED] drm_test_rect_intersect =============
[14:19:21] ================ drm_test_rect_calc_hscale ================
[14:19:21] [PASSED] normal use
[14:19:21] [PASSED] out of max range
[14:19:21] [PASSED] out of min range
[14:19:21] [PASSED] zero dst
[14:19:21] [PASSED] negative src
[14:19:21] [PASSED] negative dst
[14:19:21] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:19:21] ================ drm_test_rect_calc_vscale ================
[14:19:21] [PASSED] normal use
[14:19:21] [PASSED] out of max range
[14:19:21] [PASSED] out of min range
[14:19:21] [PASSED] zero dst
[14:19:21] [PASSED] negative src
[14:19:21] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[14:19:21] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:19:21] ================== drm_test_rect_rotate ===================
[14:19:21] [PASSED] reflect-x
[14:19:21] [PASSED] reflect-y
[14:19:21] [PASSED] rotate-0
[14:19:21] [PASSED] rotate-90
[14:19:21] [PASSED] rotate-180
[14:19:21] [PASSED] rotate-270
[14:19:21] ============== [PASSED] drm_test_rect_rotate ===============
[14:19:21] ================ drm_test_rect_rotate_inv =================
[14:19:21] [PASSED] reflect-x
[14:19:21] [PASSED] reflect-y
[14:19:21] [PASSED] rotate-0
[14:19:21] [PASSED] rotate-90
[14:19:21] [PASSED] rotate-180
[14:19:21] [PASSED] rotate-270
[14:19:21] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:19:21] ==================== [PASSED] drm_rect =====================
[14:19:21] ============ drm_sysfb_modeset_test (1 subtest) ============
[14:19:21] ============ drm_test_sysfb_build_fourcc_list =============
[14:19:21] [PASSED] no native formats
[14:19:21] [PASSED] XRGB8888 as native format
[14:19:21] [PASSED] remove duplicates
[14:19:21] [PASSED] convert alpha formats
[14:19:21] [PASSED] random formats
[14:19:21] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[14:19:21] ============= [PASSED] drm_sysfb_modeset_test ==============
[14:19:21] ================== drm_fixp (2 subtests) ===================
[14:19:21] [PASSED] drm_test_int2fixp
[14:19:21] [PASSED] drm_test_sm2fixp
[14:19:21] ==================== [PASSED] drm_fixp =====================
[14:19:21] ============================================================
[14:19:21] Testing complete. Ran 621 tests: passed: 621
[14:19:21] Elapsed time: 26.530s total, 1.746s configuring, 24.612s building, 0.135s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:19:21] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:19:23] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:19:33] Starting KUnit Kernel (1/1)...
[14:19:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:19:33] ================= ttm_device (5 subtests) ==================
[14:19:33] [PASSED] ttm_device_init_basic
[14:19:33] [PASSED] ttm_device_init_multiple
[14:19:33] [PASSED] ttm_device_fini_basic
[14:19:33] [PASSED] ttm_device_init_no_vma_man
[14:19:33] ================== ttm_device_init_pools ==================
[14:19:33] [PASSED] No DMA allocations, no DMA32 required
[14:19:33] [PASSED] DMA allocations, DMA32 required
[14:19:33] [PASSED] No DMA allocations, DMA32 required
[14:19:33] [PASSED] DMA allocations, no DMA32 required
[14:19:33] ============== [PASSED] ttm_device_init_pools ==============
[14:19:33] =================== [PASSED] ttm_device ====================
[14:19:33] ================== ttm_pool (8 subtests) ===================
[14:19:33] ================== ttm_pool_alloc_basic ===================
[14:19:33] [PASSED] One page
[14:19:33] [PASSED] More than one page
[14:19:33] [PASSED] Above the allocation limit
[14:19:33] [PASSED] One page, with coherent DMA mappings enabled
[14:19:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:19:33] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:19:33] ============== ttm_pool_alloc_basic_dma_addr ==============
[14:19:33] [PASSED] One page
[14:19:33] [PASSED] More than one page
[14:19:33] [PASSED] Above the allocation limit
[14:19:33] [PASSED] One page, with coherent DMA mappings enabled
[14:19:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:19:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:19:33] [PASSED] ttm_pool_alloc_order_caching_match
[14:19:33] [PASSED] ttm_pool_alloc_caching_mismatch
[14:19:33] [PASSED] ttm_pool_alloc_order_mismatch
[14:19:33] [PASSED] ttm_pool_free_dma_alloc
[14:19:33] [PASSED] ttm_pool_free_no_dma_alloc
[14:19:33] [PASSED] ttm_pool_fini_basic
[14:19:33] ==================== [PASSED] ttm_pool =====================
[14:19:33] ================ ttm_resource (8 subtests) =================
[14:19:33] ================= ttm_resource_init_basic =================
[14:19:33] [PASSED] Init resource in TTM_PL_SYSTEM
[14:19:33] [PASSED] Init resource in TTM_PL_VRAM
[14:19:33] [PASSED] Init resource in a private placement
[14:19:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:19:33] ============= [PASSED] ttm_resource_init_basic =============
[14:19:33] [PASSED] ttm_resource_init_pinned
[14:19:33] [PASSED] ttm_resource_fini_basic
[14:19:33] [PASSED] ttm_resource_manager_init_basic
[14:19:33] [PASSED] ttm_resource_manager_usage_basic
[14:19:33] [PASSED] ttm_resource_manager_set_used_basic
[14:19:33] [PASSED] ttm_sys_man_alloc_basic
[14:19:33] [PASSED] ttm_sys_man_free_basic
[14:19:33] ================== [PASSED] ttm_resource ===================
[14:19:33] =================== ttm_tt (15 subtests) ===================
[14:19:33] ==================== ttm_tt_init_basic ====================
[14:19:33] [PASSED] Page-aligned size
[14:19:33] [PASSED] Extra pages requested
[14:19:33] ================ [PASSED] ttm_tt_init_basic ================
[14:19:33] [PASSED] ttm_tt_init_misaligned
[14:19:33] [PASSED] ttm_tt_fini_basic
[14:19:33] [PASSED] ttm_tt_fini_sg
[14:19:33] [PASSED] ttm_tt_fini_shmem
[14:19:33] [PASSED] ttm_tt_create_basic
[14:19:33] [PASSED] ttm_tt_create_invalid_bo_type
[14:19:33] [PASSED] ttm_tt_create_ttm_exists
[14:19:33] [PASSED] ttm_tt_create_failed
[14:19:33] [PASSED] ttm_tt_destroy_basic
[14:19:33] [PASSED] ttm_tt_populate_null_ttm
[14:19:33] [PASSED] ttm_tt_populate_populated_ttm
[14:19:33] [PASSED] ttm_tt_unpopulate_basic
[14:19:33] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:19:33] [PASSED] ttm_tt_swapin_basic
[14:19:33] ===================== [PASSED] ttm_tt ======================
[14:19:33] =================== ttm_bo (14 subtests) ===================
[14:19:33] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[14:19:33] [PASSED] Cannot be interrupted and sleeps
[14:19:33] [PASSED] Cannot be interrupted, locks straight away
[14:19:33] [PASSED] Can be interrupted, sleeps
[14:19:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:19:33] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:19:33] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:19:33] [PASSED] ttm_bo_reserve_double_resv
[14:19:33] [PASSED] ttm_bo_reserve_interrupted
[14:19:33] [PASSED] ttm_bo_reserve_deadlock
[14:19:33] [PASSED] ttm_bo_unreserve_basic
[14:19:33] [PASSED] ttm_bo_unreserve_pinned
[14:19:33] [PASSED] ttm_bo_unreserve_bulk
[14:19:33] [PASSED] ttm_bo_fini_basic
[14:19:33] [PASSED] ttm_bo_fini_shared_resv
[14:19:33] [PASSED] ttm_bo_pin_basic
[14:19:33] [PASSED] ttm_bo_pin_unpin_resource
[14:19:33] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:19:33] ===================== [PASSED] ttm_bo ======================
[14:19:33] ============== ttm_bo_validate (22 subtests) ===============
[14:19:33] ============== ttm_bo_init_reserved_sys_man ===============
[14:19:33] [PASSED] Buffer object for userspace
[14:19:33] [PASSED] Kernel buffer object
[14:19:33] [PASSED] Shared buffer object
[14:19:33] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:19:33] ============== ttm_bo_init_reserved_mock_man ==============
[14:19:33] [PASSED] Buffer object for userspace
[14:19:33] [PASSED] Kernel buffer object
[14:19:33] [PASSED] Shared buffer object
[14:19:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:19:33] [PASSED] ttm_bo_init_reserved_resv
[14:19:33] ================== ttm_bo_validate_basic ==================
[14:19:33] [PASSED] Buffer object for userspace
[14:19:33] [PASSED] Kernel buffer object
[14:19:33] [PASSED] Shared buffer object
[14:19:33] ============== [PASSED] ttm_bo_validate_basic ==============
[14:19:33] [PASSED] ttm_bo_validate_invalid_placement
[14:19:33] ============= ttm_bo_validate_same_placement ==============
[14:19:33] [PASSED] System manager
[14:19:33] [PASSED] VRAM manager
[14:19:33] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:19:33] [PASSED] ttm_bo_validate_failed_alloc
[14:19:33] [PASSED] ttm_bo_validate_pinned
[14:19:33] [PASSED] ttm_bo_validate_busy_placement
[14:19:33] ================ ttm_bo_validate_multihop =================
[14:19:33] [PASSED] Buffer object for userspace
[14:19:33] [PASSED] Kernel buffer object
[14:19:33] [PASSED] Shared buffer object
[14:19:33] ============ [PASSED] ttm_bo_validate_multihop =============
[14:19:33] ========== ttm_bo_validate_no_placement_signaled ==========
[14:19:33] [PASSED] Buffer object in system domain, no page vector
[14:19:33] [PASSED] Buffer object in system domain with an existing page vector
[14:19:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:19:33] ======== ttm_bo_validate_no_placement_not_signaled ========
[14:19:33] [PASSED] Buffer object for userspace
[14:19:33] [PASSED] Kernel buffer object
[14:19:33] [PASSED] Shared buffer object
[14:19:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:19:33] [PASSED] ttm_bo_validate_move_fence_signaled
[14:19:33] ========= ttm_bo_validate_move_fence_not_signaled =========
[14:19:33] [PASSED] Waits for GPU
[14:19:33] [PASSED] Tries to lock straight away
[14:19:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:19:33] [PASSED] ttm_bo_validate_swapout
[14:19:33] [PASSED] ttm_bo_validate_happy_evict
[14:19:33] [PASSED] ttm_bo_validate_all_pinned_evict
[14:19:33] [PASSED] ttm_bo_validate_allowed_only_evict
[14:19:33] [PASSED] ttm_bo_validate_deleted_evict
[14:19:33] [PASSED] ttm_bo_validate_busy_domain_evict
[14:19:33] [PASSED] ttm_bo_validate_evict_gutting
[14:19:33] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[14:19:33] ================= [PASSED] ttm_bo_validate =================
[14:19:33] ============================================================
[14:19:33] Testing complete. Ran 102 tests: passed: 102
[14:19:33] Elapsed time: 11.453s total, 1.673s configuring, 9.565s building, 0.184s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ Xe.CI.BAT: success for Introduce Xe PCIe FLR (rev5)
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (10 preceding siblings ...)
2026-04-06 14:19 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-06 14:54 ` Patchwork
2026-04-06 18:08 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-10 14:22 ` [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
13 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-04-06 14:54 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1439 bytes --]
== Series Details ==
Series: Introduce Xe PCIe FLR (rev5)
URL : https://patchwork.freedesktop.org/series/162055/
State : success
== Summary ==
CI Bug Log - changes from xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf_BAT -> xe-pw-162055v5_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-162055v5_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-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8847 -> IGT_8849
* Linux: xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf -> xe-pw-162055v5
IGT_8847: 8847
IGT_8849: 8849
xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf: d873f0156bd08a3031097d459e2d3604bfe1b1bf
xe-pw-162055v5: 162055v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/index.html
[-- Attachment #2: Type: text/html, Size: 2018 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ Xe.CI.FULL: failure for Introduce Xe PCIe FLR (rev5)
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (11 preceding siblings ...)
2026-04-06 14:54 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-06 18:08 ` Patchwork
2026-04-10 14:22 ` [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
13 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-04-06 18:08 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 39182 bytes --]
== Series Details ==
Series: Introduce Xe PCIe FLR (rev5)
URL : https://patchwork.freedesktop.org/series/162055/
State : failure
== Summary ==
CI Bug Log - changes from xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf_FULL -> xe-pw-162055v5_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-162055v5_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-162055v5_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-162055v5_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@wait-idle@pipe-d-dp-2:
- shard-bmg: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-6/igt@kms_vblank@wait-idle@pipe-d-dp-2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@kms_vblank@wait-idle@pipe-d-dp-2.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-userptr.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-userptr.html
Known issues
------------
Here are the changes found in xe-pw-162055v5_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2233])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2370])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7679])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367] / [Intel XE#7354])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#3432]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#7642])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2390] / [Intel XE#6974])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2320]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#6747]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x256.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2321] / [Intel XE#7355])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2244])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2244])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-3/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4422] / [Intel XE#7442])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2374] / [Intel XE#6128])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@kms_feature_discovery@psr2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7178] / [Intel XE#7351])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7351])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +13 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +7 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2313]) +11 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#656])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#1503])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7283]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7130]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#7283])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#4596] / [Intel XE#5854])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7376] / [Intel XE#870])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][41] -> [FAIL][42] ([Intel XE#7340])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#2029] / [Intel XE#7395])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-2/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1489]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-bmg: [PASS][49] -> [FAIL][50] ([Intel XE#7589])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2330] / [Intel XE#5813])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1435])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7636]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7140])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7136]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6874]) +12 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#6874]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-3/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#6703]) +10 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-5/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#5625])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_system_allocator@threads-many-mmap-shared-remap-dontunmap:
- shard-bmg: [PASS][63] -> [DMESG-FAIL][64] ([Intel XE#6652])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-mmap-shared-remap-dontunmap.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-mmap-shared-remap-dontunmap.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#7138])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7138]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [PASS][67] -> [ABORT][68] ([Intel XE#7578])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2229])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#6964]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html
* igt@xe_oa@buffer-fill:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#6703])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_oa@buffer-fill.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2245] / [Intel XE#7590])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7590])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4650] / [Intel XE#7347])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-7/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4733] / [Intel XE#7417])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#944])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-8/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#944]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: NOTRUN -> [FAIL][79] ([Intel XE#6569])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][80] ([Intel XE#7445]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][82] ([Intel XE#7571]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][84] ([Intel XE#301]) -> [PASS][85] +1 other test pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-lnl: [INCOMPLETE][86] -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][88] ([Intel XE#7340]) -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
#### Warnings ####
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: [SKIP][90] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][91] ([Intel XE#6703])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][92] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][93] ([Intel XE#3544])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: [SKIP][94] ([Intel XE#6874]) -> [SKIP][95] ([Intel XE#6703]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_module_load@load:
- shard-bmg: ([SKIP][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [DMESG-FAIL][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121]) ([Intel XE#2457] / [Intel XE#5545] / [Intel XE#6652] / [Intel XE#7405]) -> ([PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [SKIP][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147]) ([Intel XE#2457] / [Intel XE#7405])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-5/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-6/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-3/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-7/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-7/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-7/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-10/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-2/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-2/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-6/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-10/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-10/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-2/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-5/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-9/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-9/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-1/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-1/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-5/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-5/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-8/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-8/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-8/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-3/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-3/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf/shard-bmg-1/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-3/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-3/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-1/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-8/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-10/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-1/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-5/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-6/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-2/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-8/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-1/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-7/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/shard-bmg-9/igt@xe_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7589]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7589
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[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#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8847 -> IGT_8849
* Linux: xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf -> xe-pw-162055v5
IGT_8847: 8847
IGT_8849: 8849
xe-4852-d873f0156bd08a3031097d459e2d3604bfe1b1bf: d873f0156bd08a3031097d459e2d3604bfe1b1bf
xe-pw-162055v5: 162055v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162055v5/index.html
[-- Attachment #2: Type: text/html, Size: 43078 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH v5 0/9] Introduce Xe PCIe FLR
2026-04-06 14:07 [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
` (12 preceding siblings ...)
2026-04-06 18:08 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-10 14:22 ` Raag Jadav
2026-04-10 18:22 ` Maarten Lankhorst
13 siblings, 1 reply; 17+ messages in thread
From: Raag Jadav @ 2026-04-10 14:22 UTC (permalink / raw)
To: intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
maarten, jani.nikula, lukasz.laguna, zhanjun.dong, lukas
On Mon, Apr 06, 2026 at 07:37:13PM +0530, Raag Jadav wrote:
> Here's my humble attempt at introducing PCIe Function Level Reset (FLR)
> support in xe driver. This is ofcourse a half baked implementation and
> only limited to re-initializing GT. This needs to be extended for a lot
> of different components which I've skipped here for my lack of competence,
> so feel free to join in and support them.
>
> PS: All xe_exec_basic tests and clpeak run smoothly after FLR. Give it
> a spin and let me know if any regressions.
>
> Trigger it with:
>
> $ echo 1 > /sys/bus/pci/devices/<BDF>/reset
Anything I can do to move this forward?
Raag
> v2: Re-initialize migrate context (Matthew Brost)
> Add kernel doc (Matthew Brost)
> Spell out Function Level Reset (Jani)
>
> v3: Cancel in-flight jobs before FLR
>
> v4: Teardown exec queues instead of mangling scheduler pending list (Matthew Brost)
>
> v5: Re-initialize kernel queues through submission backend (Matthew Brost)
> Prevent PM ref leak for wedged device (Matthew Brost)
>
> Raag Jadav (9):
> drm/xe/uc_fw: Allow re-initializing firmware
> drm/xe/guc_submit: Introduce guc_exec_queue_reinit()
> drm/xe/gt: Introduce FLR helpers
> drm/xe/irq: Introduce xe_irq_disable()
> drm/xe: Introduce xe_device_assert_lmem_ready()
> drm/xe/bo_evict: Introduce xe_bo_restore_map()
> drm/xe/exec_queue: Introduce xe_exec_queue_reinit()
> drm/xe/migrate: Introduce xe_migrate_reinit()
> drm/xe/pci: Introduce PCIe FLR
>
> drivers/gpu/drm/xe/Makefile | 1 +
> drivers/gpu/drm/xe/xe_bo_evict.c | 51 ++++++--
> drivers/gpu/drm/xe/xe_bo_evict.h | 2 +
> drivers/gpu/drm/xe/xe_device.c | 10 +-
> drivers/gpu/drm/xe/xe_device.h | 1 +
> drivers/gpu/drm/xe/xe_device_types.h | 3 +
> drivers/gpu/drm/xe/xe_exec_queue.c | 37 +++++-
> drivers/gpu/drm/xe/xe_exec_queue.h | 1 +
> drivers/gpu/drm/xe/xe_exec_queue_types.h | 2 +
> drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +
> drivers/gpu/drm/xe/xe_gsc.c | 14 ++
> drivers/gpu/drm/xe/xe_gsc.h | 1 +
> drivers/gpu/drm/xe/xe_gt.c | 47 +++++++
> drivers/gpu/drm/xe/xe_gt.h | 2 +
> drivers/gpu/drm/xe/xe_gt_types.h | 9 ++
> drivers/gpu/drm/xe/xe_guc.c | 29 ++++
> drivers/gpu/drm/xe/xe_guc.h | 2 +
> drivers/gpu/drm/xe/xe_guc_submit.c | 11 ++
> drivers/gpu/drm/xe/xe_huc.c | 14 ++
> drivers/gpu/drm/xe/xe_huc.h | 1 +
> drivers/gpu/drm/xe/xe_irq.c | 13 +-
> drivers/gpu/drm/xe/xe_irq.h | 1 +
> drivers/gpu/drm/xe/xe_lrc.c | 17 +++
> drivers/gpu/drm/xe/xe_lrc.h | 2 +
> drivers/gpu/drm/xe/xe_migrate.c | 12 ++
> drivers/gpu/drm/xe/xe_migrate.h | 1 +
> drivers/gpu/drm/xe/xe_pci.c | 1 +
> drivers/gpu/drm/xe/xe_pci.h | 2 +
> drivers/gpu/drm/xe/xe_pci_err.c | 160 +++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_uc.c | 37 ++++++
> drivers/gpu/drm/xe/xe_uc.h | 2 +
> drivers/gpu/drm/xe/xe_uc_fw.c | 39 +++++-
> drivers/gpu/drm/xe/xe_uc_fw.h | 1 +
> 33 files changed, 510 insertions(+), 21 deletions(-)
> create mode 100644 drivers/gpu/drm/xe/xe_pci_err.c
>
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH v5 0/9] Introduce Xe PCIe FLR
2026-04-10 14:22 ` [PATCH v5 0/9] Introduce Xe PCIe FLR Raag Jadav
@ 2026-04-10 18:22 ` Maarten Lankhorst
2026-04-11 8:11 ` Raag Jadav
0 siblings, 1 reply; 17+ messages in thread
From: Maarten Lankhorst @ 2026-04-10 18:22 UTC (permalink / raw)
To: Raag Jadav, intel-xe
Cc: matthew.brost, rodrigo.vivi, thomas.hellstrom, riana.tauro,
michal.wajdeczko, matthew.d.roper, michal.winiarski, matthew.auld,
jani.nikula, lukasz.laguna, zhanjun.dong, lukas
To me the series looks ok, I don't know if anyone else has objections but might be good to at least have an ack from display.
Kind regards,
~Maarten Lankhorst
Den 2026-04-10 kl. 16:22, skrev Raag Jadav:
> On Mon, Apr 06, 2026 at 07:37:13PM +0530, Raag Jadav wrote:
>> Here's my humble attempt at introducing PCIe Function Level Reset (FLR)
>> support in xe driver. This is ofcourse a half baked implementation and
>> only limited to re-initializing GT. This needs to be extended for a lot
>> of different components which I've skipped here for my lack of competence,
>> so feel free to join in and support them.
>>
>> PS: All xe_exec_basic tests and clpeak run smoothly after FLR. Give it
>> a spin and let me know if any regressions.
>>
>> Trigger it with:
>>
>> $ echo 1 > /sys/bus/pci/devices/<BDF>/reset
> Anything I can do to move this forward?
>
> Raag
>
>> v2: Re-initialize migrate context (Matthew Brost)
>> Add kernel doc (Matthew Brost)
>> Spell out Function Level Reset (Jani)
>>
>> v3: Cancel in-flight jobs before FLR
>>
>> v4: Teardown exec queues instead of mangling scheduler pending list (Matthew Brost)
>>
>> v5: Re-initialize kernel queues through submission backend (Matthew Brost)
>> Prevent PM ref leak for wedged device (Matthew Brost)
>>
>> Raag Jadav (9):
>> drm/xe/uc_fw: Allow re-initializing firmware
>> drm/xe/guc_submit: Introduce guc_exec_queue_reinit()
>> drm/xe/gt: Introduce FLR helpers
>> drm/xe/irq: Introduce xe_irq_disable()
>> drm/xe: Introduce xe_device_assert_lmem_ready()
>> drm/xe/bo_evict: Introduce xe_bo_restore_map()
>> drm/xe/exec_queue: Introduce xe_exec_queue_reinit()
>> drm/xe/migrate: Introduce xe_migrate_reinit()
>> drm/xe/pci: Introduce PCIe FLR
>>
>> drivers/gpu/drm/xe/Makefile | 1 +
>> drivers/gpu/drm/xe/xe_bo_evict.c | 51 ++++++--
>> drivers/gpu/drm/xe/xe_bo_evict.h | 2 +
>> drivers/gpu/drm/xe/xe_device.c | 10 +-
>> drivers/gpu/drm/xe/xe_device.h | 1 +
>> drivers/gpu/drm/xe/xe_device_types.h | 3 +
>> drivers/gpu/drm/xe/xe_exec_queue.c | 37 +++++-
>> drivers/gpu/drm/xe/xe_exec_queue.h | 1 +
>> drivers/gpu/drm/xe/xe_exec_queue_types.h | 2 +
>> drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +
>> drivers/gpu/drm/xe/xe_gsc.c | 14 ++
>> drivers/gpu/drm/xe/xe_gsc.h | 1 +
>> drivers/gpu/drm/xe/xe_gt.c | 47 +++++++
>> drivers/gpu/drm/xe/xe_gt.h | 2 +
>> drivers/gpu/drm/xe/xe_gt_types.h | 9 ++
>> drivers/gpu/drm/xe/xe_guc.c | 29 ++++
>> drivers/gpu/drm/xe/xe_guc.h | 2 +
>> drivers/gpu/drm/xe/xe_guc_submit.c | 11 ++
>> drivers/gpu/drm/xe/xe_huc.c | 14 ++
>> drivers/gpu/drm/xe/xe_huc.h | 1 +
>> drivers/gpu/drm/xe/xe_irq.c | 13 +-
>> drivers/gpu/drm/xe/xe_irq.h | 1 +
>> drivers/gpu/drm/xe/xe_lrc.c | 17 +++
>> drivers/gpu/drm/xe/xe_lrc.h | 2 +
>> drivers/gpu/drm/xe/xe_migrate.c | 12 ++
>> drivers/gpu/drm/xe/xe_migrate.h | 1 +
>> drivers/gpu/drm/xe/xe_pci.c | 1 +
>> drivers/gpu/drm/xe/xe_pci.h | 2 +
>> drivers/gpu/drm/xe/xe_pci_err.c | 160 +++++++++++++++++++++++
>> drivers/gpu/drm/xe/xe_uc.c | 37 ++++++
>> drivers/gpu/drm/xe/xe_uc.h | 2 +
>> drivers/gpu/drm/xe/xe_uc_fw.c | 39 +++++-
>> drivers/gpu/drm/xe/xe_uc_fw.h | 1 +
>> 33 files changed, 510 insertions(+), 21 deletions(-)
>> create mode 100644 drivers/gpu/drm/xe/xe_pci_err.c
>>
>> --
>> 2.43.0
>>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH v5 0/9] Introduce Xe PCIe FLR
2026-04-10 18:22 ` Maarten Lankhorst
@ 2026-04-11 8:11 ` Raag Jadav
0 siblings, 0 replies; 17+ messages in thread
From: Raag Jadav @ 2026-04-11 8:11 UTC (permalink / raw)
To: Maarten Lankhorst
Cc: intel-xe, matthew.brost, rodrigo.vivi, thomas.hellstrom,
riana.tauro, michal.wajdeczko, matthew.d.roper, michal.winiarski,
matthew.auld, jani.nikula, lukasz.laguna, zhanjun.dong, lukas,
ville.syrjala
On Fri, Apr 10, 2026 at 08:22:54PM +0200, Maarten Lankhorst wrote:
> To me the series looks ok, I don't know if anyone else has objections but might be good to at least have an ack from display.
Jani? Ville? Any input on this?
Raag
> Den 2026-04-10 kl. 16:22, skrev Raag Jadav:
> > On Mon, Apr 06, 2026 at 07:37:13PM +0530, Raag Jadav wrote:
> >> Here's my humble attempt at introducing PCIe Function Level Reset (FLR)
> >> support in xe driver. This is ofcourse a half baked implementation and
> >> only limited to re-initializing GT. This needs to be extended for a lot
> >> of different components which I've skipped here for my lack of competence,
> >> so feel free to join in and support them.
> >>
> >> PS: All xe_exec_basic tests and clpeak run smoothly after FLR. Give it
> >> a spin and let me know if any regressions.
> >>
> >> Trigger it with:
> >>
> >> $ echo 1 > /sys/bus/pci/devices/<BDF>/reset
> > Anything I can do to move this forward?
> >
> > Raag
> >
> >> v2: Re-initialize migrate context (Matthew Brost)
> >> Add kernel doc (Matthew Brost)
> >> Spell out Function Level Reset (Jani)
> >>
> >> v3: Cancel in-flight jobs before FLR
> >>
> >> v4: Teardown exec queues instead of mangling scheduler pending list (Matthew Brost)
> >>
> >> v5: Re-initialize kernel queues through submission backend (Matthew Brost)
> >> Prevent PM ref leak for wedged device (Matthew Brost)
> >>
> >> Raag Jadav (9):
> >> drm/xe/uc_fw: Allow re-initializing firmware
> >> drm/xe/guc_submit: Introduce guc_exec_queue_reinit()
> >> drm/xe/gt: Introduce FLR helpers
> >> drm/xe/irq: Introduce xe_irq_disable()
> >> drm/xe: Introduce xe_device_assert_lmem_ready()
> >> drm/xe/bo_evict: Introduce xe_bo_restore_map()
> >> drm/xe/exec_queue: Introduce xe_exec_queue_reinit()
> >> drm/xe/migrate: Introduce xe_migrate_reinit()
> >> drm/xe/pci: Introduce PCIe FLR
> >>
> >> drivers/gpu/drm/xe/Makefile | 1 +
> >> drivers/gpu/drm/xe/xe_bo_evict.c | 51 ++++++--
> >> drivers/gpu/drm/xe/xe_bo_evict.h | 2 +
> >> drivers/gpu/drm/xe/xe_device.c | 10 +-
> >> drivers/gpu/drm/xe/xe_device.h | 1 +
> >> drivers/gpu/drm/xe/xe_device_types.h | 3 +
> >> drivers/gpu/drm/xe/xe_exec_queue.c | 37 +++++-
> >> drivers/gpu/drm/xe/xe_exec_queue.h | 1 +
> >> drivers/gpu/drm/xe/xe_exec_queue_types.h | 2 +
> >> drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +
> >> drivers/gpu/drm/xe/xe_gsc.c | 14 ++
> >> drivers/gpu/drm/xe/xe_gsc.h | 1 +
> >> drivers/gpu/drm/xe/xe_gt.c | 47 +++++++
> >> drivers/gpu/drm/xe/xe_gt.h | 2 +
> >> drivers/gpu/drm/xe/xe_gt_types.h | 9 ++
> >> drivers/gpu/drm/xe/xe_guc.c | 29 ++++
> >> drivers/gpu/drm/xe/xe_guc.h | 2 +
> >> drivers/gpu/drm/xe/xe_guc_submit.c | 11 ++
> >> drivers/gpu/drm/xe/xe_huc.c | 14 ++
> >> drivers/gpu/drm/xe/xe_huc.h | 1 +
> >> drivers/gpu/drm/xe/xe_irq.c | 13 +-
> >> drivers/gpu/drm/xe/xe_irq.h | 1 +
> >> drivers/gpu/drm/xe/xe_lrc.c | 17 +++
> >> drivers/gpu/drm/xe/xe_lrc.h | 2 +
> >> drivers/gpu/drm/xe/xe_migrate.c | 12 ++
> >> drivers/gpu/drm/xe/xe_migrate.h | 1 +
> >> drivers/gpu/drm/xe/xe_pci.c | 1 +
> >> drivers/gpu/drm/xe/xe_pci.h | 2 +
> >> drivers/gpu/drm/xe/xe_pci_err.c | 160 +++++++++++++++++++++++
> >> drivers/gpu/drm/xe/xe_uc.c | 37 ++++++
> >> drivers/gpu/drm/xe/xe_uc.h | 2 +
> >> drivers/gpu/drm/xe/xe_uc_fw.c | 39 +++++-
> >> drivers/gpu/drm/xe/xe_uc_fw.h | 1 +
> >> 33 files changed, 510 insertions(+), 21 deletions(-)
> >> create mode 100644 drivers/gpu/drm/xe/xe_pci_err.c
> >>
> >> --
> >> 2.43.0
> >>
>
^ permalink raw reply [flat|nested] 17+ messages in thread