* [PATCH v3 0/5] Introduce xe_wedge
@ 2026-09-07 8:34 Raag Jadav
2026-09-07 8:34 ` [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging Raag Jadav
` (8 more replies)
0 siblings, 9 replies; 15+ messages in thread
From: Raag Jadav @ 2026-09-07 8:34 UTC (permalink / raw)
To: intel-xe
Cc: riana.tauro, michal.wajdeczko, lukasz.laguna, matthew.d.roper,
matthew.brost, rodrigo.vivi, Raag Jadav
In the history of xe technical debt, this series takes one more step and
consolidates all wedging implementation into a dedicated xe_wedge component.
While at it, this fixes a few pre-existing issues related to wedge handling.
Detailed description in commit message.
v1: https://patchwork.freedesktop.org/series/172727/
v2: Split fixes into separate patches (Rodrigo, Michal)
Also move struct xe_wedge and wedged_mode debt to xe_wedge (Lukasz, Michal)
Naming and aesthetic adjustments (Lukasz, Michal)
v3: Respect the component namespace (Rodrigo)
Avoid chaining header includes (Rodrigo)
Squash debugfs changes with xe_wedge patch (Lukasz)
Raag Jadav (5):
drm/xe/gt: Use GT ordered workqueue for wedging
drm/xe: Move xe_device_wedged_fini() registration to
xe_device_probe_early()
drm/xe: Make xe_device_declare_wedged() IRQ safe
drm/xe: Introduce xe_wedge
drm/xe/ras: Move xe_ras_process_errors() to xe_ras
Documentation/gpu/xe/xe_device.rst | 2 +-
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/tests/xe_kunit_helpers.c | 3 +-
drivers/gpu/drm/xe/xe_amc.c | 3 +-
drivers/gpu/drm/xe/xe_bo.c | 3 +-
drivers/gpu/drm/xe/xe_debugfs.c | 66 +----
drivers/gpu/drm/xe/xe_device.c | 190 +------------
drivers/gpu/drm/xe/xe_device.h | 10 -
drivers/gpu/drm/xe/xe_device_types.h | 28 +-
drivers/gpu/drm/xe/xe_gsc.c | 3 +-
drivers/gpu/drm/xe/xe_gt.c | 26 +-
drivers/gpu/drm/xe/xe_gt.h | 2 +-
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 3 +-
drivers/gpu/drm/xe/xe_gt_types.h | 6 +
drivers/gpu/drm/xe/xe_guc.c | 4 +-
drivers/gpu/drm/xe/xe_guc.h | 2 +-
drivers/gpu/drm/xe/xe_guc_ct.c | 7 +-
drivers/gpu/drm/xe/xe_guc_pc.c | 11 +-
drivers/gpu/drm/xe/xe_guc_rc.c | 5 +-
drivers/gpu/drm/xe/xe_guc_submit.c | 13 +-
drivers/gpu/drm/xe/xe_guc_tlb_inval.c | 3 +-
drivers/gpu/drm/xe/xe_mert.c | 5 +-
drivers/gpu/drm/xe/xe_pci_error.c | 9 +-
drivers/gpu/drm/xe/xe_ras.c | 12 +-
drivers/gpu/drm/xe/xe_sriov_pf.c | 3 +-
drivers/gpu/drm/xe/xe_survivability_mode.c | 5 +-
drivers/gpu/drm/xe/xe_uc.c | 6 +-
drivers/gpu/drm/xe/xe_uc.h | 2 +-
drivers/gpu/drm/xe/xe_wedge.c | 286 ++++++++++++++++++++
drivers/gpu/drm/xe/xe_wedge.h | 20 ++
drivers/gpu/drm/xe/xe_wedge_types.h | 45 +++
31 files changed, 454 insertions(+), 330 deletions(-)
create mode 100644 drivers/gpu/drm/xe/xe_wedge.c
create mode 100644 drivers/gpu/drm/xe/xe_wedge.h
create mode 100644 drivers/gpu/drm/xe/xe_wedge_types.h
--
2.43.0
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav @ 2026-09-07 8:34 ` Raag Jadav 2026-09-07 8:50 ` sashiko-bot 2026-09-07 12:02 ` Michal Wajdeczko 2026-09-07 8:34 ` [PATCH v3 2/5] drm/xe: Move xe_device_wedged_fini() registration to xe_device_probe_early() Raag Jadav ` (7 subsequent siblings) 8 siblings, 2 replies; 15+ messages in thread From: Raag Jadav @ 2026-09-07 8:34 UTC (permalink / raw) To: intel-xe Cc: riana.tauro, michal.wajdeczko, lukasz.laguna, matthew.d.roper, matthew.brost, rodrigo.vivi, Raag Jadav Currently, xe_gt_declare_wedged() stops GuC CT and initiates exec queue teardown synchronously. This can result in tdr timeout in cases where the device is declared wedged while jobs are still in-flight. Introduce a worker for GT specific wedge handling and queue the teardown on GT ordered workqueue, so we don't disrupt the scheduler while jobs are still in-flight. Fixes: c9474b726b93 ("drm/xe: Wedge the entire device") Signed-off-by: Raag Jadav <raag.jadav@intel.com> --- v2: Split fixes into separate patches (Rodrigo, Michal) --- drivers/gpu/drm/xe/xe_gt.c | 17 +++++++++++++++-- drivers/gpu/drm/xe/xe_gt_types.h | 6 ++++++ 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c index 478e047031f4..200e34331c19 100644 --- a/drivers/gpu/drm/xe/xe_gt.c +++ b/drivers/gpu/drm/xe/xe_gt.c @@ -173,6 +173,7 @@ static void xe_gt_enable_comp_1wcoh(struct xe_gt *gt) } static void gt_reset_worker(struct work_struct *w); +static void gt_wedge_worker(struct work_struct *w); static int emit_job_sync(struct xe_exec_queue *q, struct xe_bb *bb, long timeout_jiffies, bool force_reset) @@ -704,6 +705,8 @@ static void xe_gt_fini(void *arg) struct xe_gt *gt = arg; int i; + disable_work_sync(>->wedge.worker); + if (disable_work_sync(>->reset.worker)) /* * If gt_reset_worker was halted from executing, take care of @@ -723,6 +726,7 @@ int xe_gt_init(struct xe_gt *gt) int i; INIT_WORK(>->reset.worker, gt_reset_worker); + INIT_WORK(>->wedge.worker, gt_wedge_worker); for (i = 0; i < XE_ENGINE_CLASS_MAX; ++i) { gt->ring_ops[i] = xe_ring_ops_get(gt, i); @@ -1005,6 +1009,14 @@ void xe_gt_reset_async(struct xe_gt *gt) xe_pm_runtime_put(xe); } +static void gt_wedge_worker(struct work_struct *w) +{ + struct xe_gt *gt = container_of(w, typeof(*gt), wedge.worker); + + xe_uc_declare_wedged(>->uc); + xe_tlb_inval_reset(>->tlb_inval); +} + void xe_gt_suspend_prepare(struct xe_gt *gt) { xe_uc_suspend_prepare(>->uc); @@ -1195,6 +1207,7 @@ void xe_gt_declare_wedged(struct xe_gt *gt) { xe_gt_assert(gt, gt_to_xe(gt)->wedged.mode); - xe_uc_declare_wedged(>->uc); - xe_tlb_inval_reset(>->tlb_inval); + /* Prevent queueing uninitialized worker if hit during probe */ + if (gt->wedge.worker.func) + queue_work(gt->ordered_wq, >->wedge.worker); } diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h index 628911346455..b11ac52b0ab7 100644 --- a/drivers/gpu/drm/xe/xe_gt_types.h +++ b/drivers/gpu/drm/xe/xe_gt_types.h @@ -233,6 +233,12 @@ struct xe_gt { struct work_struct worker; } reset; + /** @wedge: state for GT wedge */ + struct { + /** @wedge.worker: worker for GT wedge to be done async */ + struct work_struct worker; + } wedge; + /** @tlb_inval: TLB invalidation state */ struct xe_tlb_inval tlb_inval; -- 2.43.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging 2026-09-07 8:34 ` [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging Raag Jadav @ 2026-09-07 8:50 ` sashiko-bot 2026-09-07 12:02 ` Michal Wajdeczko 1 sibling, 0 replies; 15+ messages in thread From: sashiko-bot @ 2026-09-07 8:50 UTC (permalink / raw) To: Raag Jadav; +Cc: intel-xe Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: - [High] Lockless TOCTOU race on work_struct initialization can lead to queueing an uninitialized work item. -- commit 70fa657e4e9d6562a705a7808a6bc4a42f57256e Author: Raag Jadav <raag.jadav@intel.com> Subject: drm/xe/gt: Use GT ordered workqueue for wedging This commit introduces a GT ordered workqueue for GT wedge handling to avoid disrupting the scheduler with in-flight jobs. It adds a wedge worker initialized during GT init and queued when a wedge is declared. > diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c > index 478e047031f4f..200e34331c195 100644 > --- a/drivers/gpu/drm/xe/xe_gt.c > +++ b/drivers/gpu/drm/xe/xe_gt.c [ ... ] > @@ -1195,6 +1207,7 @@ void xe_gt_declare_wedged(struct xe_gt *gt) > { > xe_gt_assert(gt, gt_to_xe(gt)->wedged.mode); > > - xe_uc_declare_wedged(>->uc); > - xe_tlb_inval_reset(>->tlb_inval); > + /* Prevent queueing uninitialized worker if hit during probe */ > + if (gt->wedge.worker.func) > + queue_work(gt->ordered_wq, >->wedge.worker); [Severity: High] Could this lockless check of the work_struct func field lead to list corruption on weakly ordered architectures? During driver probe, an asynchronous hardware fault (such as a PCI AER or an I2C interrupt) could trigger xe_gt_declare_wedged() concurrently with xe_gt_init(). In xe_gt_init(), the worker is initialized via: INIT_WORK(>->wedge.worker, gt_wedge_worker); This macro sets the work_struct's data, entry, and finally func, but does so without memory barriers. If an interrupting CPU observes the writes out of order due to CPU store reordering, func could be seen as non-NULL while data or entry remain uninitialized. If that happens, xe_gt_declare_wedged() would pass this check and call queue_work() with a partially initialized work_struct. This can cause a kernel panic in the workqueue core. Is there a safer way to synchronize this probe-time wedge check without relying on lockless field inspection? > } -- Sashiko AI review · https://sashiko.dev/#/patchset/20260907083541.2194747-1-raag.jadav@intel.com?part=1 ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging 2026-09-07 8:34 ` [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging Raag Jadav 2026-09-07 8:50 ` sashiko-bot @ 2026-09-07 12:02 ` Michal Wajdeczko 2026-09-07 13:06 ` Raag Jadav 1 sibling, 1 reply; 15+ messages in thread From: Michal Wajdeczko @ 2026-09-07 12:02 UTC (permalink / raw) To: Raag Jadav, intel-xe Cc: riana.tauro, lukasz.laguna, matthew.d.roper, matthew.brost, rodrigo.vivi On 9/7/2026 10:34 AM, Raag Jadav wrote: > Currently, xe_gt_declare_wedged() stops GuC CT and initiates exec queue > teardown synchronously. This can result in tdr timeout in cases where > the device is declared wedged while jobs are still in-flight. > > Introduce a worker for GT specific wedge handling and queue the teardown > on GT ordered workqueue, so we don't disrupt the scheduler while jobs > are still in-flight. > > Fixes: c9474b726b93 ("drm/xe: Wedge the entire device") > Signed-off-by: Raag Jadav <raag.jadav@intel.com> > --- > v2: Split fixes into separate patches (Rodrigo, Michal) > --- > drivers/gpu/drm/xe/xe_gt.c | 17 +++++++++++++++-- > drivers/gpu/drm/xe/xe_gt_types.h | 6 ++++++ > 2 files changed, 21 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c > index 478e047031f4..200e34331c19 100644 > --- a/drivers/gpu/drm/xe/xe_gt.c > +++ b/drivers/gpu/drm/xe/xe_gt.c > @@ -173,6 +173,7 @@ static void xe_gt_enable_comp_1wcoh(struct xe_gt *gt) > } > > static void gt_reset_worker(struct work_struct *w); > +static void gt_wedge_worker(struct work_struct *w); > > static int emit_job_sync(struct xe_exec_queue *q, struct xe_bb *bb, > long timeout_jiffies, bool force_reset) > @@ -704,6 +705,8 @@ static void xe_gt_fini(void *arg) > struct xe_gt *gt = arg; > int i; > > + disable_work_sync(>->wedge.worker); > + > if (disable_work_sync(>->reset.worker)) > /* > * If gt_reset_worker was halted from executing, take care of > @@ -723,6 +726,7 @@ int xe_gt_init(struct xe_gt *gt) > int i; > > INIT_WORK(>->reset.worker, gt_reset_worker); > + INIT_WORK(>->wedge.worker, gt_wedge_worker); hmm, shouldn't this be done in xe_gt_alloc() ? as xe_gt_init_early() seems to be doing something else and much later > > for (i = 0; i < XE_ENGINE_CLASS_MAX; ++i) { > gt->ring_ops[i] = xe_ring_ops_get(gt, i); > @@ -1005,6 +1009,14 @@ void xe_gt_reset_async(struct xe_gt *gt) > xe_pm_runtime_put(xe); > } > > +static void gt_wedge_worker(struct work_struct *w) > +{ > + struct xe_gt *gt = container_of(w, typeof(*gt), wedge.worker); > + > + xe_uc_declare_wedged(>->uc); > + xe_tlb_inval_reset(>->tlb_inval); > +} > + > void xe_gt_suspend_prepare(struct xe_gt *gt) > { > xe_uc_suspend_prepare(>->uc); > @@ -1195,6 +1207,7 @@ void xe_gt_declare_wedged(struct xe_gt *gt) > { > xe_gt_assert(gt, gt_to_xe(gt)->wedged.mode); > > - xe_uc_declare_wedged(>->uc); > - xe_tlb_inval_reset(>->tlb_inval); > + /* Prevent queueing uninitialized worker if hit during probe */ > + if (gt->wedge.worker.func) > + queue_work(gt->ordered_wq, >->wedge.worker); > } > diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h > index 628911346455..b11ac52b0ab7 100644 > --- a/drivers/gpu/drm/xe/xe_gt_types.h > +++ b/drivers/gpu/drm/xe/xe_gt_types.h > @@ -233,6 +233,12 @@ struct xe_gt { > struct work_struct worker; > } reset; > > + /** @wedge: state for GT wedge */ > + struct { > + /** @wedge.worker: worker for GT wedge to be done async */ > + struct work_struct worker; > + } wedge; > + > /** @tlb_inval: TLB invalidation state */ > struct xe_tlb_inval tlb_inval; > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging 2026-09-07 12:02 ` Michal Wajdeczko @ 2026-09-07 13:06 ` Raag Jadav 0 siblings, 0 replies; 15+ messages in thread From: Raag Jadav @ 2026-09-07 13:06 UTC (permalink / raw) To: Michal Wajdeczko Cc: intel-xe, riana.tauro, lukasz.laguna, matthew.d.roper, matthew.brost, rodrigo.vivi On Mon, Sep 07, 2026 at 02:02:59PM +0200, Michal Wajdeczko wrote: > On 9/7/2026 10:34 AM, Raag Jadav wrote: > > Currently, xe_gt_declare_wedged() stops GuC CT and initiates exec queue > > teardown synchronously. This can result in tdr timeout in cases where > > the device is declared wedged while jobs are still in-flight. > > > > Introduce a worker for GT specific wedge handling and queue the teardown > > on GT ordered workqueue, so we don't disrupt the scheduler while jobs > > are still in-flight. > > > > Fixes: c9474b726b93 ("drm/xe: Wedge the entire device") > > Signed-off-by: Raag Jadav <raag.jadav@intel.com> > > --- > > v2: Split fixes into separate patches (Rodrigo, Michal) > > --- > > drivers/gpu/drm/xe/xe_gt.c | 17 +++++++++++++++-- > > drivers/gpu/drm/xe/xe_gt_types.h | 6 ++++++ > > 2 files changed, 21 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c > > index 478e047031f4..200e34331c19 100644 > > --- a/drivers/gpu/drm/xe/xe_gt.c > > +++ b/drivers/gpu/drm/xe/xe_gt.c > > @@ -173,6 +173,7 @@ static void xe_gt_enable_comp_1wcoh(struct xe_gt *gt) > > } > > > > static void gt_reset_worker(struct work_struct *w); > > +static void gt_wedge_worker(struct work_struct *w); > > > > static int emit_job_sync(struct xe_exec_queue *q, struct xe_bb *bb, > > long timeout_jiffies, bool force_reset) > > @@ -704,6 +705,8 @@ static void xe_gt_fini(void *arg) > > struct xe_gt *gt = arg; > > int i; > > > > + disable_work_sync(>->wedge.worker); > > + > > if (disable_work_sync(>->reset.worker)) > > /* > > * If gt_reset_worker was halted from executing, take care of > > @@ -723,6 +726,7 @@ int xe_gt_init(struct xe_gt *gt) > > int i; > > > > INIT_WORK(>->reset.worker, gt_reset_worker); > > + INIT_WORK(>->wedge.worker, gt_wedge_worker); > > hmm, shouldn't this be done in xe_gt_alloc() ? The worker is touching hardware, which I'm assuming shouldn't be done before xe_device_probe()? Raag > as xe_gt_init_early() seems to be doing something else and much later > > > > > for (i = 0; i < XE_ENGINE_CLASS_MAX; ++i) { > > gt->ring_ops[i] = xe_ring_ops_get(gt, i); > > @@ -1005,6 +1009,14 @@ void xe_gt_reset_async(struct xe_gt *gt) > > xe_pm_runtime_put(xe); > > } > > > > +static void gt_wedge_worker(struct work_struct *w) > > +{ > > + struct xe_gt *gt = container_of(w, typeof(*gt), wedge.worker); > > + > > + xe_uc_declare_wedged(>->uc); > > + xe_tlb_inval_reset(>->tlb_inval); > > +} > > + > > void xe_gt_suspend_prepare(struct xe_gt *gt) > > { > > xe_uc_suspend_prepare(>->uc); > > @@ -1195,6 +1207,7 @@ void xe_gt_declare_wedged(struct xe_gt *gt) > > { > > xe_gt_assert(gt, gt_to_xe(gt)->wedged.mode); > > > > - xe_uc_declare_wedged(>->uc); > > - xe_tlb_inval_reset(>->tlb_inval); > > + /* Prevent queueing uninitialized worker if hit during probe */ > > + if (gt->wedge.worker.func) > > + queue_work(gt->ordered_wq, >->wedge.worker); > > } > > diff --git a/drivers/gpu/drm/xe/xe_gt_types.h b/drivers/gpu/drm/xe/xe_gt_types.h > > index 628911346455..b11ac52b0ab7 100644 > > --- a/drivers/gpu/drm/xe/xe_gt_types.h > > +++ b/drivers/gpu/drm/xe/xe_gt_types.h > > @@ -233,6 +233,12 @@ struct xe_gt { > > struct work_struct worker; > > } reset; > > > > + /** @wedge: state for GT wedge */ > > + struct { > > + /** @wedge.worker: worker for GT wedge to be done async */ > > + struct work_struct worker; > > + } wedge; > > + > > /** @tlb_inval: TLB invalidation state */ > > struct xe_tlb_inval tlb_inval; > > > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v3 2/5] drm/xe: Move xe_device_wedged_fini() registration to xe_device_probe_early() 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav 2026-09-07 8:34 ` [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging Raag Jadav @ 2026-09-07 8:34 ` Raag Jadav 2026-09-07 8:54 ` sashiko-bot 2026-09-07 8:34 ` [PATCH v3 3/5] drm/xe: Make xe_device_declare_wedged() IRQ safe Raag Jadav ` (6 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Raag Jadav @ 2026-09-07 8:34 UTC (permalink / raw) To: intel-xe Cc: riana.tauro, michal.wajdeczko, lukasz.laguna, matthew.d.roper, matthew.brost, rodrigo.vivi, Raag Jadav The device can be declared wedged while processing boot-time hardware errors, which can result in PM reference leak if driver probe fails before xe_device_wedged_fini() is registered. Early register the required cleanup action and fix this. Fixes: a7df563b45b0 ("drm/xe/xe_hw_error: Handle CSC Firmware reported Hardware errors") Signed-off-by: Raag Jadav <raag.jadav@intel.com> --- v2: Split fixes into separate patches (Rodrigo, Michal) --- drivers/gpu/drm/xe/xe_device.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c index 8583b2e9ecf4..c4194507118b 100644 --- a/drivers/gpu/drm/xe/xe_device.c +++ b/drivers/gpu/drm/xe/xe_device.c @@ -770,6 +770,8 @@ static int xe_device_vram_alloc(struct xe_device *xe) return 0; } +static void xe_device_wedged_fini(struct drm_device *drm, void *arg); + /** * xe_device_probe_early: Device early probe * @xe: xe device instance @@ -838,6 +840,10 @@ int xe_device_probe_early(struct xe_device *xe) if (err) return err; + err = drmm_add_action_or_reset(&xe->drm, xe_device_wedged_fini, xe); + if (err) + return err; + return 0; } ALLOW_ERROR_INJECTION(xe_device_probe_early, ERRNO); /* See xe_pci_probe() */ @@ -1156,10 +1162,6 @@ int xe_device_probe(struct xe_device *xe) detect_preproduction_hw(xe); - err = drmm_add_action_or_reset(&xe->drm, xe_device_wedged_fini, xe); - if (err) - goto err_unregister_display; - /* * Process and log any errors detected by hardware. Possible results can * include declaring the device as wedged, which must be done only after -- 2.43.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v3 2/5] drm/xe: Move xe_device_wedged_fini() registration to xe_device_probe_early() 2026-09-07 8:34 ` [PATCH v3 2/5] drm/xe: Move xe_device_wedged_fini() registration to xe_device_probe_early() Raag Jadav @ 2026-09-07 8:54 ` sashiko-bot 0 siblings, 0 replies; 15+ messages in thread From: sashiko-bot @ 2026-09-07 8:54 UTC (permalink / raw) To: Raag Jadav; +Cc: intel-xe Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider: Pre-existing issues: - [High] Unbalanced PM runtime reference leak (underflow) during PCI error recovery. - [High] Unbounded memory accumulation (Denial of Service) via `barrier_fault` dummy page allocation. - [High] Uninitialized work_struct (`csc_hw_error_work`) on remote tiles leads to kernel panic. - [High] Uncanceled `csc_hw_error_work` leads to Use-After-Free during driver unload. -- commit 372b7f6c41961551c6da41044311be66293a0cdb Author: Raag Jadav <raag.jadav@intel.com> drm/xe: Move xe_device_wedged_fini() registration to xe_device_probe_early() This commit moves the registration of the wedged cleanup action to the early probe phase. This helps prevent a PM reference leak if the driver probe fails after the device is declared wedged but before the cleanup was registered. > diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c [ ... ] > @@ -838,6 +840,10 @@ int xe_device_probe_early(struct xe_device *xe) > if (err) > return err; > > + err = drmm_add_action_or_reset(&xe->drm, xe_device_wedged_fini, xe); > + if (err) > + return err; > + > return 0; > } [Severity: High] This is a pre-existing issue, but I noticed a potential unbalanced PM runtime reference leak related to the wedged cleanup action being registered here. In xe_pci_error_slot_reset() within drivers/gpu/drm/xe/xe_pci_error.c, the wedged flag is forcibly set: atomic_set(&xe->wedged.flag, 1); If a PCI error triggers this, the flag is set to 1 without taking a PM runtime reference. If the device is hot-unplugged before xe_pci_error_resume() can clear the flag, xe_device_wedged_fini() will see the flag set during teardown and call xe_pm_runtime_put(xe). Will this cause a PM usage counter underflow? [Severity: High] This is a pre-existing issue, but while looking at drmm_add_action_or_reset() usage in this file, I noticed a potential memory accumulation in barrier_fault() within drivers/gpu/drm/xe/xe_device.c. When barrier_fault() allocates a dummy page, it registers a cleanup action: if (drmm_add_action_or_reset(dev, barrier_release_dummy_page, page)) These callbacks are tied to the drm_device lifecycle. If a device is unplugged (causing drm_dev_enter to fail) and a local user repeatedly maps, accesses to fault, and unmaps the barrier offset, will this leak memory until the file descriptor is fully closed? [Severity: High] This is a pre-existing issue, but reviewing the hardware error paths revealed a potential kernel panic with uninitialized work structures. In xe_hw_error_init() within drivers/gpu/drm/xe/xe_hw_error.c, the hardware error work is only initialized for the root tile: INIT_WORK(&tile->csc_hw_error_work, csc_hw_error_work); If a CSC hardware error occurs on a remote tile, xe_hw_error_irq_handler() attempts to schedule it: schedule_work(&tile->csc_hw_error_work); Could this crash the kernel when the workqueue core manipulates the uninitialized list on the remote tile? [Severity: High] This is a pre-existing issue, but there also appears to be a use-after-free risk with this same work structure during driver unload. The work is initialized in xe_hw_error_init() within drivers/gpu/drm/xe/xe_hw_error.c: INIT_WORK(&tile->csc_hw_error_work, csc_hw_error_work); If a CSC error schedules this work on the global workqueue, and the driver is subsequently unbound (e.g., via hot-unplug or probe failure) before the work executes, the xe_tile memory structure is freed. Since there is no corresponding cancel_work_sync() during teardown, can the worker function access a freed tile pointer when it eventually runs? -- Sashiko AI review · https://sashiko.dev/#/patchset/20260907083541.2194747-1-raag.jadav@intel.com?part=2 ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v3 3/5] drm/xe: Make xe_device_declare_wedged() IRQ safe 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav 2026-09-07 8:34 ` [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging Raag Jadav 2026-09-07 8:34 ` [PATCH v3 2/5] drm/xe: Move xe_device_wedged_fini() registration to xe_device_probe_early() Raag Jadav @ 2026-09-07 8:34 ` Raag Jadav 2026-09-07 8:34 ` [PATCH v3 4/5] drm/xe: Introduce xe_wedge Raag Jadav ` (5 subsequent siblings) 8 siblings, 0 replies; 15+ messages in thread From: Raag Jadav @ 2026-09-07 8:34 UTC (permalink / raw) To: intel-xe Cc: riana.tauro, michal.wajdeczko, lukasz.laguna, matthew.d.roper, matthew.brost, rodrigo.vivi, Raag Jadav Currently, xe_device_declare_wedged() implementation wedges the GTs and sends wedged uevent to userspace. This is problematic for usecases which require declaring the device as wedged in IRQ context, as it allocates memory for event buffer and acquires mutexes deep into it's call path. Fix this by deferring wedge handling into its dedicated worker, so that xe_device_declare_wedged() can be called in IRQ context. First user of this requirement is introduced in commit def675cf3f10 ("drm/xe/mert: Improve handling of MERT CAT errors"), which declares the device as wedged on catastrophic errors received in form of an IRQ. Fixes: def675cf3f10 ("drm/xe/mert: Improve handling of MERT CAT errors") Signed-off-by: Raag Jadav <raag.jadav@intel.com> --- v2: Split fixes into separate patches (Rodrigo, Michal) --- drivers/gpu/drm/xe/xe_device.c | 51 +++++++++++++++++----------- drivers/gpu/drm/xe/xe_device_types.h | 2 ++ 2 files changed, 34 insertions(+), 19 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c index c4194507118b..1daa02d39f3a 100644 --- a/drivers/gpu/drm/xe/xe_device.c +++ b/drivers/gpu/drm/xe/xe_device.c @@ -770,8 +770,16 @@ static int xe_device_vram_alloc(struct xe_device *xe) return 0; } +static void wedged_work(struct work_struct *work); static void xe_device_wedged_fini(struct drm_device *drm, void *arg); +static int xe_device_wedged_init(struct xe_device *xe) +{ + INIT_WORK(&xe->wedged.work, wedged_work); + + return drmm_add_action_or_reset(&xe->drm, xe_device_wedged_fini, xe); +} + /** * xe_device_probe_early: Device early probe * @xe: xe device instance @@ -840,7 +848,7 @@ int xe_device_probe_early(struct xe_device *xe) if (err) return err; - err = drmm_add_action_or_reset(&xe->drm, xe_device_wedged_fini, xe); + err = xe_device_wedged_init(xe); if (err) return err; @@ -1453,6 +1461,26 @@ void xe_device_set_wedged_method(struct xe_device *xe, unsigned long method) xe->wedged.method = method; } +static void wedged_work(struct work_struct *work) +{ + struct xe_device *xe = container_of(work, struct xe_device, wedged.work); + + /* + * XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET is intended for debugging + * hangs, so wedge the device with 'none' recovery method and have + * it available to the user for debugging. + */ + if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) + xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_NONE); + /* If no wedge recovery method is set, use default */ + else if (!xe->wedged.method) + xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_REBIND | + DRM_WEDGE_RECOVERY_BUS_RESET); + + /* Notify userspace of wedged device */ + drm_dev_wedged_event(&xe->drm, xe->wedged.method, NULL); +} + #define WEDGED_URL "https://docs.kernel.org/gpu/drm-uapi.html#device-wedging" #define XE_BUG_URL "https://gitlab.freedesktop.org/drm/xe/kernel/issues/new" @@ -1493,26 +1521,11 @@ void xe_device_declare_wedged(struct xe_device *xe) "For recovery procedure, refer to %s\n" "Please file a _new_ bug report at %s\n", WEDGED_URL, XE_BUG_URL); - } - for_each_gt(gt, xe, id) - xe_gt_declare_wedged(gt); + for_each_gt(gt, xe, id) + xe_gt_declare_wedged(gt); - if (xe_device_wedged(xe)) { - /* - * XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET is intended for debugging - * hangs, so wedge the device with 'none' recovery method and have - * it available to the user for debugging. - */ - if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) - xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_NONE); - /* If no wedge recovery method is set, use default */ - else if (!xe->wedged.method) - xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_REBIND | - DRM_WEDGE_RECOVERY_BUS_RESET); - - /* Notify userspace of wedged device */ - drm_dev_wedged_event(&xe->drm, xe->wedged.method, NULL); + schedule_work(&xe->wedged.work); } } diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index 180d450a6deb..7d83f79f27f4 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -534,6 +534,8 @@ struct xe_device { unsigned long method; /** @wedged.inconsistent_reset: Inconsistent reset policy state between GTs */ bool inconsistent_reset; + /** @wedged.work: Worker for wedge handling */ + struct work_struct work; } wedged; /** @devres_group: devres group */ -- 2.43.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v3 4/5] drm/xe: Introduce xe_wedge 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav ` (2 preceding siblings ...) 2026-09-07 8:34 ` [PATCH v3 3/5] drm/xe: Make xe_device_declare_wedged() IRQ safe Raag Jadav @ 2026-09-07 8:34 ` Raag Jadav 2026-09-07 8:34 ` [PATCH v3 5/5] drm/xe/ras: Move xe_ras_process_errors() to xe_ras Raag Jadav ` (4 subsequent siblings) 8 siblings, 0 replies; 15+ messages in thread From: Raag Jadav @ 2026-09-07 8:34 UTC (permalink / raw) To: intel-xe Cc: riana.tauro, michal.wajdeczko, lukasz.laguna, matthew.d.roper, matthew.brost, rodrigo.vivi, Raag Jadav Consolidate wedging implementation into a dedicated xe_wedge component for better maintainability. While at it, rename all wedge helpers to match with component name. No functional impact. Signed-off-by: Raag Jadav <raag.jadav@intel.com> --- v2: Also move struct xe_wedge and wedged_mode debt to xe_wedge (Lukasz, Michal) Naming and aesthetic adjustments (Lukasz, Michal) v3: Respect the component namespace (Rodrigo) Avoid chaining header includes (Rodrigo) Squash debugfs changes with xe_wedge patch (Lukasz) --- Documentation/gpu/xe/xe_device.rst | 2 +- drivers/gpu/drm/xe/Makefile | 1 + drivers/gpu/drm/xe/tests/xe_kunit_helpers.c | 3 +- drivers/gpu/drm/xe/xe_amc.c | 3 +- drivers/gpu/drm/xe/xe_bo.c | 3 +- drivers/gpu/drm/xe/xe_debugfs.c | 66 +---- drivers/gpu/drm/xe/xe_device.c | 194 +------------ drivers/gpu/drm/xe/xe_device.h | 10 - drivers/gpu/drm/xe/xe_device_types.h | 30 +- drivers/gpu/drm/xe/xe_gsc.c | 3 +- drivers/gpu/drm/xe/xe_gt.c | 11 +- drivers/gpu/drm/xe/xe_gt.h | 2 +- drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 3 +- drivers/gpu/drm/xe/xe_guc.c | 4 +- drivers/gpu/drm/xe/xe_guc.h | 2 +- drivers/gpu/drm/xe/xe_guc_ct.c | 7 +- drivers/gpu/drm/xe/xe_guc_pc.c | 11 +- drivers/gpu/drm/xe/xe_guc_rc.c | 5 +- drivers/gpu/drm/xe/xe_guc_submit.c | 13 +- drivers/gpu/drm/xe/xe_guc_tlb_inval.c | 3 +- drivers/gpu/drm/xe/xe_mert.c | 5 +- drivers/gpu/drm/xe/xe_pci_error.c | 9 +- drivers/gpu/drm/xe/xe_ras.c | 5 +- drivers/gpu/drm/xe/xe_sriov_pf.c | 3 +- drivers/gpu/drm/xe/xe_survivability_mode.c | 5 +- drivers/gpu/drm/xe/xe_uc.c | 6 +- drivers/gpu/drm/xe/xe_uc.h | 2 +- drivers/gpu/drm/xe/xe_wedge.c | 286 ++++++++++++++++++++ drivers/gpu/drm/xe/xe_wedge.h | 20 ++ drivers/gpu/drm/xe/xe_wedge_types.h | 45 +++ 30 files changed, 425 insertions(+), 337 deletions(-) create mode 100644 drivers/gpu/drm/xe/xe_wedge.c create mode 100644 drivers/gpu/drm/xe/xe_wedge.h create mode 100644 drivers/gpu/drm/xe/xe_wedge_types.h diff --git a/Documentation/gpu/xe/xe_device.rst b/Documentation/gpu/xe/xe_device.rst index d3a022362ade..8baed81580c9 100644 --- a/Documentation/gpu/xe/xe_device.rst +++ b/Documentation/gpu/xe/xe_device.rst @@ -6,7 +6,7 @@ Xe Device Wedging ================== -.. kernel-doc:: drivers/gpu/drm/xe/xe_device.c +.. kernel-doc:: drivers/gpu/drm/xe/xe_wedge.c :doc: Xe Device Wedging ==================== diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile index adc2de37e768..c739a50b6896 100644 --- a/drivers/gpu/drm/xe/Makefile +++ b/drivers/gpu/drm/xe/Makefile @@ -152,6 +152,7 @@ xe-y += xe_bb.o \ xe_vsec.o \ xe_wa.o \ xe_wait_user_fence.o \ + xe_wedge.o \ xe_wopcm.o xe-$(CONFIG_I2C) += xe_i2c.o \ diff --git a/drivers/gpu/drm/xe/tests/xe_kunit_helpers.c b/drivers/gpu/drm/xe/tests/xe_kunit_helpers.c index 27740b40c8ae..57ea88cce92d 100644 --- a/drivers/gpu/drm/xe/tests/xe_kunit_helpers.c +++ b/drivers/gpu/drm/xe/tests/xe_kunit_helpers.c @@ -15,6 +15,7 @@ #include "xe_device.h" #include "xe_device_types.h" #include "xe_pm.h" +#include "xe_wedge.h" /** * xe_kunit_helper_alloc_xe_device - Allocate a &xe_device for a KUnit test. @@ -123,7 +124,7 @@ int xe_kunit_helper_xe_device_live_test_init(struct kunit *test) KUNIT_ASSERT_NOT_ERR_OR_NULL(test, xe); kunit_info(test, "running on %s device\n", xe->info.platform_name); - KUNIT_ASSERT_FALSE(test, xe_device_wedged(xe)); + KUNIT_ASSERT_FALSE(test, xe_wedged(xe)); xe_pm_runtime_get(xe); KUNIT_ASSERT_EQ(test, 0, kunit_add_action_or_reset(test, put_xe_pm_runtime, xe)); diff --git a/drivers/gpu/drm/xe/xe_amc.c b/drivers/gpu/drm/xe/xe_amc.c index 8ecadee6eea3..ca8013d7f569 100644 --- a/drivers/gpu/drm/xe/xe_amc.c +++ b/drivers/gpu/drm/xe/xe_amc.c @@ -18,6 +18,7 @@ #include "xe_device.h" #include "xe_i2c.h" #include "xe_mmio.h" +#include "xe_wedge.h" /** * DOC: Add-In Management Controller (AMC) @@ -160,7 +161,7 @@ static void xe_amc_work(struct work_struct *work) case AMC_ALERT_OOB_RESET: case AMC_ALERT_CATERR: dev_warn(amc->i2c->drm_dev, "AMC Alert: %s\n", amc_alert[alert_reason]); - xe_device_declare_wedged(i2c_client_to_xe_device(client)); + xe_wedge_declare(i2c_client_to_xe_device(client)); break; default: dev_warn(amc->i2c->drm_dev, "unknown AMC alert: %d\n", alert_reason); diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c index b162753cebb7..b5552845c57c 100644 --- a/drivers/gpu/drm/xe/xe_bo.c +++ b/drivers/gpu/drm/xe/xe_bo.c @@ -40,6 +40,7 @@ #include "xe_ttm_stolen_mgr.h" #include "xe_vm.h" #include "xe_vram_types.h" +#include "xe_wedge.h" const char *const xe_mem_type_to_name[TTM_NUM_MEM_TYPES] = { [XE_PL_SYSTEM] = "system", @@ -2100,7 +2101,7 @@ static vm_fault_t xe_bo_cpu_fault(struct vm_fault *vmf) int err = 0; int idx; - if (xe_device_wedged(xe) || !drm_dev_enter(&xe->drm, &idx)) + if (xe_wedged(xe) || !drm_dev_enter(&xe->drm, &idx)) return ttm_bo_vm_dummy_page(vmf, vmf->vma->vm_page_prot); ret = xe_bo_cpu_fault_fastpath(vmf, xe, bo, needs_rpm); diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c index 80f62634fae5..a01c057cb0b0 100644 --- a/drivers/gpu/drm/xe/xe_debugfs.c +++ b/drivers/gpu/drm/xe/xe_debugfs.c @@ -18,13 +18,12 @@ #include "xe_force_wake.h" #include "xe_gt.h" #include "xe_gt_debugfs.h" -#include "xe_gt_printk.h" -#include "xe_guc_ads.h" #include "xe_hw_engine.h" #include "xe_mmio.h" #include "xe_pagefault.h" #include "xe_pcode.h" #include "xe_pm.h" +#include "xe_printk.h" #include "xe_psmi.h" #include "xe_pxp_debugfs.h" #include "xe_sriov.h" @@ -35,6 +34,7 @@ #include "xe_ttm_vram_mgr.h" #include "xe_vsec.h" #include "xe_wa.h" +#include "xe_wedge.h" #ifdef CONFIG_DRM_XE_DEBUG #include "xe_bo_evict.h" @@ -423,58 +423,6 @@ static ssize_t wedged_mode_show(struct file *f, char __user *ubuf, return simple_read_from_buffer(ubuf, size, pos, buf, len); } -static int __wedged_mode_set_reset_policy(struct xe_gt *gt, enum xe_wedged_mode mode) -{ - bool enable_engine_reset; - int ret; - - enable_engine_reset = (mode != XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET); - ret = xe_guc_ads_scheduler_policy_toggle_reset(>->uc.guc.ads, - enable_engine_reset); - if (ret) - xe_gt_err(gt, "Failed to update GuC ADS scheduler policy (%pe)\n", ERR_PTR(ret)); - - return ret; -} - -static int wedged_mode_set_reset_policy(struct xe_device *xe, enum xe_wedged_mode mode) -{ - struct xe_gt *gt; - int ret; - u8 id; - - guard(xe_pm_runtime)(xe); - for_each_gt(gt, xe, id) { - ret = __wedged_mode_set_reset_policy(gt, mode); - if (ret) { - if (id > 0) { - xe->wedged.inconsistent_reset = true; - drm_err(&xe->drm, "Inconsistent reset policy state between GTs\n"); - } - return ret; - } - } - - xe->wedged.inconsistent_reset = false; - - return 0; -} - -static bool wedged_mode_needs_policy_update(struct xe_device *xe, enum xe_wedged_mode mode) -{ - if (xe->wedged.inconsistent_reset) - return true; - - if (xe->wedged.mode == mode) - return false; - - if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET || - mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) - return true; - - return false; -} - static ssize_t wedged_mode_set(struct file *f, const char __user *ubuf, size_t size, loff_t *pos) { @@ -486,18 +434,10 @@ static ssize_t wedged_mode_set(struct file *f, const char __user *ubuf, if (ret) return ret; - ret = xe_device_validate_wedged_mode(xe, wedged_mode); + ret = xe_wedge_set_mode(xe, wedged_mode); if (ret) return ret; - if (wedged_mode_needs_policy_update(xe, wedged_mode)) { - ret = wedged_mode_set_reset_policy(xe, wedged_mode); - if (ret) - return ret; - } - - xe->wedged.mode = wedged_mode; - return size; } diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c index 1daa02d39f3a..12279ed27629 100644 --- a/drivers/gpu/drm/xe/xe_device.c +++ b/drivers/gpu/drm/xe/xe_device.c @@ -79,6 +79,7 @@ #include "xe_vsec.h" #include "xe_wait_user_fence.h" #include "xe_wa.h" +#include "xe_wedge.h" #include <generated/xe_device_wa_oob.h> #include <generated/xe_wa_oob.h> @@ -225,7 +226,7 @@ static long xe_drm_ioctl(struct file *file, unsigned int cmd, unsigned long arg) struct xe_device *xe = to_xe_device(file_priv->minor->dev); long ret; - if (xe_device_wedged(xe)) + if (xe_wedged(xe)) return -ECANCELED; ACQUIRE(xe_pm_runtime_ioctl, pm)(xe); @@ -243,7 +244,7 @@ static long xe_drm_compat_ioctl(struct file *file, unsigned int cmd, unsigned lo struct xe_device *xe = to_xe_device(file_priv->minor->dev); long ret; - if (xe_device_wedged(xe)) + if (xe_wedged(xe)) return -ECANCELED; ACQUIRE(xe_pm_runtime_ioctl, pm)(xe); @@ -770,16 +771,6 @@ static int xe_device_vram_alloc(struct xe_device *xe) return 0; } -static void wedged_work(struct work_struct *work); -static void xe_device_wedged_fini(struct drm_device *drm, void *arg); - -static int xe_device_wedged_init(struct xe_device *xe) -{ - INIT_WORK(&xe->wedged.work, wedged_work); - - return drmm_add_action_or_reset(&xe->drm, xe_device_wedged_fini, xe); -} - /** * xe_device_probe_early: Device early probe * @xe: xe device instance @@ -839,16 +830,11 @@ int xe_device_probe_early(struct xe_device *xe) */ 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; - drm_dbg(&xe->drm, "wedged_mode: setting mode (%u) %s\n", - xe->wedged.mode, xe_wedged_mode_to_string(xe->wedged.mode)); - err = xe_device_vram_alloc(xe); if (err) return err; - err = xe_device_wedged_init(xe); + err = xe_wedge_init(xe); if (err) return err; @@ -938,14 +924,6 @@ static void detect_preproduction_hw(struct xe_device *xe) } } -static void xe_device_wedged_fini(struct drm_device *drm, void *arg) -{ - struct xe_device *xe = arg; - - if (atomic_read(&xe->wedged.flag)) - xe_pm_runtime_put(xe); -} - #ifdef CONFIG_DRM_XE_DEBUG_PAGE_SIZE static int xe_debug_page_size_alloc_ctrl_init(struct xe_device *xe) { @@ -1173,7 +1151,7 @@ int xe_device_probe(struct xe_device *xe) /* * Process and log any errors detected by hardware. Possible results can * include declaring the device as wedged, which must be done only after - * xe_device_wedged_fini() is registered. + * xe_wedge_fini() is registered. */ xe_ras_process_errors(xe); @@ -1412,168 +1390,6 @@ u64 xe_device_uncanonicalize_addr(struct xe_device *xe, u64 address) return address & GENMASK_ULL(xe->info.va_bits - 1, 0); } -/** - * DOC: Xe Device Wedging - * - * Xe driver uses drm device wedged uevent as documented in Documentation/gpu/drm-uapi.rst. - * When device is in wedged state, every IOCTL will be blocked and GT cannot - * be used. The conditions under which the driver declares the device wedged - * depend on the wedged mode configuration (see &enum xe_wedged_mode). The - * default recovery method for a wedged state is rebind/bus-reset. - * - * Another recovery method is vendor-specific. Below are the cases that send - * ``WEDGED=vendor-specific`` recovery method in drm device wedged uevent. - * - * Case: Firmware Flash - * -------------------- - * - * Identification Hint - * +++++++++++++++++++ - * - * ``WEDGED=vendor-specific`` drm device wedged uevent with - * :ref:`Runtime Survivability mode <xe-survivability-mode>` is used to notify - * admin/userspace consumer about the need for a firmware flash. - * - * Recovery Procedure - * ++++++++++++++++++ - * - * Once ``WEDGED=vendor-specific`` drm device wedged uevent is received, follow - * the below steps - * - * - Check Runtime Survivability mode sysfs. - * If enabled, firmware flash is required to recover the device. - * - * /sys/bus/pci/devices/<device>/survivability_mode - * - * - Admin/userspace consumer can use firmware flashing tools like fwupd to flash - * firmware and restore device to normal operation. - */ - -/** - * xe_device_set_wedged_method - Set wedged recovery method - * @xe: xe device instance - * @method: recovery method to set - * - * Set wedged recovery method to be sent in drm wedged uevent. - */ -void xe_device_set_wedged_method(struct xe_device *xe, unsigned long method) -{ - xe->wedged.method = method; -} - -static void wedged_work(struct work_struct *work) -{ - struct xe_device *xe = container_of(work, struct xe_device, wedged.work); - - /* - * XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET is intended for debugging - * hangs, so wedge the device with 'none' recovery method and have - * it available to the user for debugging. - */ - if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) - xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_NONE); - /* If no wedge recovery method is set, use default */ - else if (!xe->wedged.method) - xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_REBIND | - DRM_WEDGE_RECOVERY_BUS_RESET); - - /* Notify userspace of wedged device */ - drm_dev_wedged_event(&xe->drm, xe->wedged.method, NULL); -} - -#define WEDGED_URL "https://docs.kernel.org/gpu/drm-uapi.html#device-wedging" -#define XE_BUG_URL "https://gitlab.freedesktop.org/drm/xe/kernel/issues/new" - -/** - * xe_device_declare_wedged - Declare device wedged - * @xe: xe device instance - * - * This is a final state that can only be cleared with the recovery method - * specified in the drm wedged uevent. The method can be set using - * xe_device_set_wedged_method before declaring the device as wedged. If no method - * is set, reprobe (unbind/re-bind) will be sent by default. - * - * In this state every IOCTL will be blocked so the GT cannot be used. - * In general it will be called upon any critical error such as gt reset - * failure or guc loading failure. Userspace will be notified of this state - * through device wedged uevent. - * If xe.wedged module parameter is set to 2, this function will be called - * on every single execution timeout (a.k.a. GPU hang) right after devcoredump - * snapshot capture. In this mode, GT reset won't be attempted so the state of - * the issue is preserved for further debugging. - */ -void xe_device_declare_wedged(struct xe_device *xe) -{ - struct xe_gt *gt; - u8 id; - - if (xe->wedged.mode == XE_WEDGED_MODE_NEVER) { - drm_dbg(&xe->drm, "Wedged mode is forcibly disabled\n"); - return; - } - - if (!atomic_xchg(&xe->wedged.flag, 1)) { - xe->needs_flr_on_fini = true; - xe_pm_runtime_get_noresume(xe); - - xe_log_err_fatal(xe, WEDGED, -EIO, "Device declared wedged!\n"); - xe_err_once(xe, "IOCTLs and executions are now blocked!\n" - "For recovery procedure, refer to %s\n" - "Please file a _new_ bug report at %s\n", - WEDGED_URL, XE_BUG_URL); - - for_each_gt(gt, xe, id) - xe_gt_declare_wedged(gt); - - schedule_work(&xe->wedged.work); - } -} - -/** - * xe_device_validate_wedged_mode - Check if given mode is supported - * @xe: the &xe_device - * @mode: requested mode to validate - * - * Check whether the provided wedged mode is supported. - * - * Return: 0 if mode is supported, error code otherwise. - */ -int xe_device_validate_wedged_mode(struct xe_device *xe, unsigned int mode) -{ - if (mode > XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) { - drm_dbg(&xe->drm, "wedged_mode: invalid value (%u)\n", mode); - return -EINVAL; - } else if (mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET && (IS_SRIOV_VF(xe) || - (IS_SRIOV_PF(xe) && !IS_ENABLED(CONFIG_DRM_XE_DEBUG)))) { - drm_dbg(&xe->drm, "wedged_mode: (%u) %s mode is not supported for %s\n", - mode, xe_wedged_mode_to_string(mode), - xe_sriov_mode_to_string(xe_device_sriov_mode(xe))); - return -EPERM; - } - - return 0; -} - -/** - * xe_wedged_mode_to_string - Convert enum value to string. - * @mode: the &xe_wedged_mode to convert - * - * Returns: wedged mode as a user friendly string. - */ -const char *xe_wedged_mode_to_string(enum xe_wedged_mode mode) -{ - switch (mode) { - case XE_WEDGED_MODE_NEVER: - return "never"; - case XE_WEDGED_MODE_UPON_CRITICAL_ERROR: - return "upon-critical-error"; - case XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET: - return "upon-any-hang-no-reset"; - default: - return "<invalid>"; - } -} - /** * xe_device_asid_to_vm() - Find VM from ASID * @xe: the &xe_device diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h index 6d3d6d5eba29..9c0be9e16f72 100644 --- a/drivers/gpu/drm/xe/xe_device.h +++ b/drivers/gpu/drm/xe/xe_device.h @@ -207,11 +207,6 @@ bool xe_device_is_l2_flush_optimized(struct xe_device *xe); void xe_device_td_flush(struct xe_device *xe); void xe_device_l2_flush(struct xe_device *xe, bool force); -static inline bool xe_device_wedged(struct xe_device *xe) -{ - return atomic_read(&xe->wedged.flag); -} - #ifdef CONFIG_DRM_XE_DEBUG_PAGE_SIZE static inline bool xe_debug_page_size_supported(struct xe_device *xe) { @@ -260,11 +255,6 @@ static inline bool xe_debug_page_size_mode_is_mixed(struct xe_device *xe) } #endif -void xe_device_set_wedged_method(struct xe_device *xe, unsigned long method); -void xe_device_declare_wedged(struct xe_device *xe); -int xe_device_validate_wedged_mode(struct xe_device *xe, unsigned int mode); -const char *xe_wedged_mode_to_string(enum xe_wedged_mode mode); - struct xe_file *xe_file_get(struct xe_file *xef); void xe_file_put(struct xe_file *xef); diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index 7d83f79f27f4..2b7114e9fee1 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -30,6 +30,7 @@ #include "xe_sysctrl_types.h" #include "xe_tile_types.h" #include "xe_validation.h" +#include "xe_wedge_types.h" #if IS_ENABLED(CONFIG_DRM_XE_DEBUG) #define TEST_VM_OPS_ERROR @@ -45,22 +46,6 @@ struct xe_pxp; struct xe_ttm_stolen_mgr; struct xe_vram_region; -/** - * enum xe_wedged_mode - possible wedged modes - * @XE_WEDGED_MODE_NEVER: Device will never be declared wedged. - * @XE_WEDGED_MODE_UPON_CRITICAL_ERROR: Device will be declared wedged only - * when critical error occurs like GT reset failure or firmware failure. - * This is the default mode. - * @XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET: Device will be declared wedged on - * any hang. In this mode, engine resets are disabled to avoid automatic - * recovery attempts. This mode is primarily intended for debugging hangs. - */ -enum xe_wedged_mode { - XE_WEDGED_MODE_NEVER = 0, - XE_WEDGED_MODE_UPON_CRITICAL_ERROR = 1, - XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET = 2, -}; - #ifdef CONFIG_DRM_XE_DEBUG_PAGE_SIZE /** * enum xe_page_size_alloc_ctrl_mode - User BO page-size allocation control modes @@ -525,18 +510,7 @@ struct xe_device { atomic_t in_reset; /** @wedged: Struct to control Wedged States and mode */ - struct { - /** @wedged.flag: Xe device faced a critical error and is now blocked. */ - atomic_t flag; - /** @wedged.mode: Mode controlled by kernel parameter and debugfs */ - enum xe_wedged_mode mode; - /** @wedged.method: Recovery method to be sent in the drm device wedged uevent */ - unsigned long method; - /** @wedged.inconsistent_reset: Inconsistent reset policy state between GTs */ - bool inconsistent_reset; - /** @wedged.work: Worker for wedge handling */ - struct work_struct work; - } wedged; + struct xe_wedge wedged; /** @devres_group: devres group */ void *devres_group; diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c index 524ac56bdcc7..cd333f2a6632 100644 --- a/drivers/gpu/drm/xe/xe_gsc.c +++ b/drivers/gpu/drm/xe/xe_gsc.c @@ -31,6 +31,7 @@ #include "xe_sched_job.h" #include "xe_uc_fw.h" #include "xe_wa.h" +#include "xe_wedge.h" #include "instructions/xe_gsc_commands.h" #include "regs/xe_gsc_regs.h" #include "regs/xe_gt_regs.h" @@ -340,7 +341,7 @@ static int gsc_er_complete(struct xe_gt *gt) * declare the device as wedged. */ xe_gt_err(gt, "GSC ER timed out!\n"); - xe_device_declare_wedged(gt_to_xe(gt)); + xe_wedge_declare(gt_to_xe(gt)); return -EIO; } diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c index 200e34331c19..e4e2b70ca0ca 100644 --- a/drivers/gpu/drm/xe/xe_gt.c +++ b/drivers/gpu/drm/xe/xe_gt.c @@ -68,6 +68,7 @@ #include "xe_uc_fw.h" #include "xe_vm.h" #include "xe_wa.h" +#include "xe_wedge.h" #include "xe_wopcm.h" struct xe_gt *xe_gt_alloc(struct xe_tile *tile) @@ -926,7 +927,7 @@ static void gt_reset_worker(struct work_struct *w) unsigned int fw_ref; int err; - if (xe_device_wedged(gt_to_xe(gt))) + if (xe_wedged(gt_to_xe(gt))) goto err_pm_put; if (xe_device_is_in_reset(gt_to_xe(gt))) @@ -985,7 +986,7 @@ static void gt_reset_worker(struct work_struct *w) err_fail: xe_log_err_fatal(gt, GT, err, "reset failed\n"); - xe_device_declare_wedged(gt_to_xe(gt)); + xe_wedge_declare(gt_to_xe(gt)); err_pm_put: xe_pm_runtime_put(gt_to_xe(gt)); } @@ -1013,7 +1014,7 @@ static void gt_wedge_worker(struct work_struct *w) { struct xe_gt *gt = container_of(w, typeof(*gt), wedge.worker); - xe_uc_declare_wedged(>->uc); + xe_uc_wedge_declare(>->uc); xe_tlb_inval_reset(>->tlb_inval); } @@ -1197,13 +1198,13 @@ struct xe_hw_engine *xe_gt_any_hw_engine(struct xe_gt *gt) } /** - * xe_gt_declare_wedged() - Declare GT wedged + * xe_gt_wedge_declare() - Declare GT wedged * @gt: the GT object * * Wedge the GT which stops all submission, saves desired debug state, and * cleans up anything which could timeout. */ -void xe_gt_declare_wedged(struct xe_gt *gt) +void xe_gt_wedge_declare(struct xe_gt *gt) { xe_gt_assert(gt, gt_to_xe(gt)->wedged.mode); diff --git a/drivers/gpu/drm/xe/xe_gt.h b/drivers/gpu/drm/xe/xe_gt.h index 92d934d50244..7b6952fe804c 100644 --- a/drivers/gpu/drm/xe/xe_gt.h +++ b/drivers/gpu/drm/xe/xe_gt.h @@ -40,7 +40,7 @@ struct xe_gt *xe_gt_alloc(struct xe_tile *tile); int xe_gt_init_early(struct xe_gt *gt); int xe_gt_init(struct xe_gt *gt); void xe_gt_mmio_init(struct xe_gt *gt); -void xe_gt_declare_wedged(struct xe_gt *gt); +void xe_gt_wedge_declare(struct xe_gt *gt); int xe_gt_record_default_lrcs(struct xe_gt *gt); /** diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c index 37899fcf5b22..0007fb21908f 100644 --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c @@ -37,6 +37,7 @@ #include "xe_tile_sriov_vf.h" #include "xe_tlb_inval.h" #include "xe_uc_fw.h" +#include "xe_wedge.h" #include "xe_wopcm.h" #define make_u64_from_u32(hi, lo) ((u64)((u64)(u32)(hi) << 32 | (u32)(lo))) @@ -1462,7 +1463,7 @@ static void vf_post_migration_recovery(struct xe_gt *gt) fail: vf_post_migration_abort(gt); xe_gt_sriov_err(gt, "migration recovery failed (%pe)\n", ERR_PTR(err)); - xe_device_declare_wedged(xe); + xe_wedge_declare(xe); return; queue: diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c index c7f8bbd4cb92..23a4f5064476 100644 --- a/drivers/gpu/drm/xe/xe_guc.c +++ b/drivers/gpu/drm/xe/xe_guc.c @@ -1813,13 +1813,13 @@ int xe_guc_print_info(struct xe_guc *guc, struct drm_printer *p) } /** - * xe_guc_declare_wedged() - Declare GuC wedged + * xe_guc_wedge_declare() - Declare GuC wedged * @guc: the GuC object * * Wedge the GuC which stops all submission, saves desired debug state, and * cleans up anything which could timeout. */ -void xe_guc_declare_wedged(struct xe_guc *guc) +void xe_guc_wedge_declare(struct xe_guc *guc) { xe_gt_assert(guc_to_gt(guc), guc_to_xe(guc)->wedged.mode); diff --git a/drivers/gpu/drm/xe/xe_guc.h b/drivers/gpu/drm/xe/xe_guc.h index 61e3ee19a59b..8e2c0486f85a 100644 --- a/drivers/gpu/drm/xe/xe_guc.h +++ b/drivers/gpu/drm/xe/xe_guc.h @@ -60,7 +60,7 @@ void xe_guc_reset_wait(struct xe_guc *guc); void xe_guc_stop_prepare(struct xe_guc *guc); void xe_guc_stop(struct xe_guc *guc); int xe_guc_start(struct xe_guc *guc); -void xe_guc_declare_wedged(struct xe_guc *guc); +void xe_guc_wedge_declare(struct xe_guc *guc); bool xe_guc_using_main_gamctrl_queues(struct xe_guc *guc); bool xe_guc_has_paging_engine(struct xe_guc *guc); diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c index 5c4733da385c..ffa7902bb533 100644 --- a/drivers/gpu/drm/xe/xe_guc_ct.c +++ b/drivers/gpu/drm/xe/xe_guc_ct.c @@ -36,6 +36,7 @@ #include "xe_sleep.h" #include "xe_sriov_vf.h" #include "xe_trace_guc.h" +#include "xe_wedge.h" static void receive_g2h(struct xe_guc_ct *ct); static void g2h_worker_func(struct work_struct *w); @@ -1062,7 +1063,7 @@ static int __guc_ct_send_locked(struct xe_guc_ct *ct, const u32 *action, xe_gt_assert(gt, g2h_len || !num_g2h); lockdep_assert_held(&ct->lock); - if (xe_device_wedged(ct_to_xe(ct))) { + if (xe_wedged(ct_to_xe(ct))) { ret = -ENOTRECOVERABLE; goto out; } @@ -1474,7 +1475,7 @@ static int guc_ct_send_recv(struct xe_guc_ct *ct, const u32 *action, u32 len, if (g2h_fence.fail) { if (g2h_fence.cancel) { xe_gt_dbg(gt, "H2G request %#x canceled!\n", action[0]); - ret = xe_device_wedged(ct_to_xe(ct)) ? -ENOTRECOVERABLE : -ECANCELED; + ret = xe_wedged(ct_to_xe(ct)) ? -ENOTRECOVERABLE : -ECANCELED; goto unlock; } xe_gt_err(gt, "H2G request %#x failed: error %#x hint %#x\n", @@ -1813,7 +1814,7 @@ static int g2h_read(struct xe_guc_ct *ct, u32 *msg, bool fast_path) xe_gt_assert(gt, xe_guc_ct_initialized(ct)); lockdep_assert_held(&ct->fast_lock); - if (xe_device_wedged(xe)) + if (xe_wedged(xe)) return -ENOTRECOVERABLE; if (ct->state == XE_GUC_CT_STATE_DISABLED) diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c index 097b075bd89a..88676469ea96 100644 --- a/drivers/gpu/drm/xe/xe_guc_pc.c +++ b/drivers/gpu/drm/xe/xe_guc_pc.c @@ -36,6 +36,7 @@ #include "xe_pm.h" #include "xe_sriov.h" #include "xe_wa.h" +#include "xe_wedge.h" #define MCHBAR_MIRROR_BASE_SNB 0x140000 @@ -188,7 +189,7 @@ static int pc_action_reset(struct xe_guc_pc *pc) int ret; ret = xe_guc_ct_send(ct, action, ARRAY_SIZE(action), 0, 0); - if (ret && !(xe_device_wedged(pc_to_xe(pc)) && ret == -ECANCELED)) + if (ret && !(xe_wedged(pc_to_xe(pc)) && ret == -ECANCELED)) xe_gt_err(pc_to_gt(pc), "GuC PC reset failed: %pe\n", ERR_PTR(ret)); @@ -212,7 +213,7 @@ static int pc_action_query_task_state(struct xe_guc_pc *pc) /* Blocking here to ensure the results are ready before reading them */ ret = xe_guc_ct_send_block(ct, action, ARRAY_SIZE(action)); - if (ret && !(xe_device_wedged(pc_to_xe(pc)) && ret == -ECANCELED)) + if (ret && !(xe_wedged(pc_to_xe(pc)) && ret == -ECANCELED)) xe_gt_err(pc_to_gt(pc), "GuC PC query task state failed: %pe\n", ERR_PTR(ret)); @@ -235,7 +236,7 @@ static int pc_action_set_param(struct xe_guc_pc *pc, u8 id, u32 value) return -EAGAIN; ret = xe_guc_ct_send(ct, action, ARRAY_SIZE(action), 0, 0); - if (ret && !(xe_device_wedged(pc_to_xe(pc)) && ret == -ECANCELED)) + if (ret && !(xe_wedged(pc_to_xe(pc)) && ret == -ECANCELED)) xe_gt_err(pc_to_gt(pc), "GuC PC set param[%u]=%u failed: %pe\n", id, value, ERR_PTR(ret)); @@ -257,7 +258,7 @@ static int pc_action_unset_param(struct xe_guc_pc *pc, u8 id) return -EAGAIN; ret = xe_guc_ct_send(ct, action, ARRAY_SIZE(action), 0, 0); - if (ret && !(xe_device_wedged(pc_to_xe(pc)) && ret == -ECANCELED)) + if (ret && !(xe_wedged(pc_to_xe(pc)) && ret == -ECANCELED)) xe_gt_err(pc_to_gt(pc), "GuC PC unset param failed: %pe", ERR_PTR(ret)); @@ -1357,7 +1358,7 @@ static void xe_guc_pc_fini_hw(void *arg) struct xe_guc_pc *pc = arg; struct xe_device *xe = pc_to_xe(pc); - if (xe_device_wedged(xe)) + if (xe_wedged(xe)) return; xe_guc_pc_stop(pc); diff --git a/drivers/gpu/drm/xe/xe_guc_rc.c b/drivers/gpu/drm/xe/xe_guc_rc.c index 99fa127b261f..fa3062ab134a 100644 --- a/drivers/gpu/drm/xe/xe_guc_rc.c +++ b/drivers/gpu/drm/xe/xe_guc_rc.c @@ -16,6 +16,7 @@ #include "xe_guc_pc.h" #include "xe_guc_rc.h" #include "xe_pm.h" +#include "xe_wedge.h" /** * DOC: GuC RC (Render C-states) @@ -40,7 +41,7 @@ static int guc_action_setup_gucrc(struct xe_guc *guc, u32 control) int ret; ret = xe_guc_ct_send(&guc->ct, action, ARRAY_SIZE(action), 0, 0); - if (ret && !(xe_device_wedged(guc_to_xe(guc)) && ret == -ECANCELED)) + if (ret && !(xe_wedged(guc_to_xe(guc)) && ret == -ECANCELED)) xe_gt_err(guc_to_gt(guc), "GuC RC setup %s(%u) failed (%pe)\n", control == GUCRC_HOST_CONTROL ? "HOST_CONTROL" : @@ -73,7 +74,7 @@ static void xe_guc_rc_fini_hw(void *arg) struct xe_device *xe = guc_to_xe(guc); struct xe_gt *gt = guc_to_gt(guc); - if (xe_device_wedged(xe)) + if (xe_wedged(xe)) return; CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT); diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c index 0a6e2b81b5a5..2fbb1eecd80c 100644 --- a/drivers/gpu/drm/xe/xe_guc_submit.c +++ b/drivers/gpu/drm/xe/xe_guc_submit.c @@ -47,6 +47,7 @@ #include "xe_trace.h" #include "xe_uc_fw.h" #include "xe_vm.h" +#include "xe_wedge.h" #define XE_GUC_EXEC_QUEUE_CGP_CONTEXT_ERROR_LEN 6 @@ -1388,10 +1389,10 @@ static bool guc_submit_hint_wedged(struct xe_guc *guc) if (xe->wedged.mode != XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) return false; - if (xe_device_wedged(xe)) + if (xe_wedged(xe)) return true; - xe_device_declare_wedged(xe); + xe_wedge_declare(xe); return true; } @@ -1598,7 +1599,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job) if (!exec_queue_killed(q)) wedged = guc_submit_hint_wedged(exec_queue_to_guc(q)); else - wedged = xe_device_wedged(xe); + wedged = xe_wedged(xe); /* * Only tag as GPU hang if this is the original timeout, not a @@ -1718,7 +1719,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job) } if (wedge_device) - xe_device_declare_wedged(gt_to_xe(q->gt)); + xe_wedge_declare(gt_to_xe(q->gt)); /* * We want the job added back to the pending list so it gets freed; this @@ -2462,7 +2463,7 @@ static int guc_exec_queue_wait_suspend_done(struct xe_exec_queue *q, bool blocki WAIT_COND, HZ * 5); } - if (!blocking && vf_recovery(guc) && !xe_device_wedged(xe)) + if (!blocking && vf_recovery(guc) && !xe_wedged(xe)) return -EAGAIN; if (!ret) @@ -2720,7 +2721,7 @@ int xe_guc_submit_reset_prepare(struct xe_guc *guc) void xe_guc_submit_reset_wait(struct xe_guc *guc) { - wait_event(guc->ct.wq, xe_device_wedged(guc_to_xe(guc)) || + wait_event(guc->ct.wq, xe_wedged(guc_to_xe(guc)) || !xe_guc_read_stopped(guc)); } diff --git a/drivers/gpu/drm/xe/xe_guc_tlb_inval.c b/drivers/gpu/drm/xe/xe_guc_tlb_inval.c index 111fef781b2a..dd38d95c6014 100644 --- a/drivers/gpu/drm/xe/xe_guc_tlb_inval.c +++ b/drivers/gpu/drm/xe/xe_guc_tlb_inval.c @@ -19,6 +19,7 @@ #include "xe_sa.h" #include "xe_tlb_inval.h" #include "xe_vm.h" +#include "xe_wedge.h" #include "regs/xe_guc_regs.h" @@ -77,7 +78,7 @@ static int send_tlb_inval_ggtt(struct xe_tlb_inval *tlb_inval, u32 seqno) }; return send_tlb_inval(guc, action, ARRAY_SIZE(action)); - } else if (xe_device_uc_enabled(xe) && !xe_device_wedged(xe)) { + } else if (xe_device_uc_enabled(xe) && !xe_wedged(xe)) { struct xe_mmio *mmio = >->mmio; if (IS_SRIOV_VF(xe)) diff --git a/drivers/gpu/drm/xe/xe_mert.c b/drivers/gpu/drm/xe/xe_mert.c index 32700c19a1df..b9948153ca0b 100644 --- a/drivers/gpu/drm/xe/xe_mert.c +++ b/drivers/gpu/drm/xe/xe_mert.c @@ -11,6 +11,7 @@ #include "xe_mmio.h" #include "xe_sriov_printk.h" #include "xe_tile.h" +#include "xe_wedge.h" /** * xe_mert_init_early() - Initialize MERT data @@ -74,7 +75,7 @@ static void mert_handle_cat_error(struct xe_device *xe) break; case CATERR_UNMAPPED_GGTT: xe_sriov_err(xe, "MERT: CAT_ERR: Access to an unmapped GGTT!\n"); - xe_device_declare_wedged(xe); + xe_wedge_declare(xe); break; case CATERR_LMTT_FAULT: xe_sriov_dbg_ratelimited(xe, "MERT: CAT_ERR: VF%u LMTT fault!\n", vfid); @@ -82,7 +83,7 @@ static void mert_handle_cat_error(struct xe_device *xe) break; default: xe_sriov_err(xe, "MERT: Unexpected CAT_ERR code=%#x!\n", code); - xe_device_declare_wedged(xe); + xe_wedge_declare(xe); break; } } diff --git a/drivers/gpu/drm/xe/xe_pci_error.c b/drivers/gpu/drm/xe/xe_pci_error.c index 79ce0c671549..418b07dc983a 100644 --- a/drivers/gpu/drm/xe/xe_pci_error.c +++ b/drivers/gpu/drm/xe/xe_pci_error.c @@ -13,6 +13,7 @@ #include "xe_printk.h" #include "xe_ras.h" #include "xe_survivability_mode.h" +#include "xe_wedge.h" static void prepare_device_for_reset(struct pci_dev *pdev) { @@ -22,7 +23,7 @@ static void prepare_device_for_reset(struct pci_dev *pdev) /* * Wedge the device to prevent userspace access but do not send the uevent. - * xe_device_wedged_fini() releases runtime pm if wedged flag is set, so acquire a runtime + * xe_wedge_fini() releases runtime pm if wedged flag is set, so acquire a runtime * pm reference to avoid underflow. */ if (!atomic_xchg(&xe->wedged.flag, 1)) @@ -31,7 +32,7 @@ static void prepare_device_for_reset(struct pci_dev *pdev) xe_device_set_in_reset(xe); for_each_gt(gt, xe, id) - xe_gt_declare_wedged(gt); + xe_gt_wedge_declare(gt); pci_disable_device(pdev); } @@ -61,7 +62,7 @@ static pci_ers_result_t xe_pci_error_detected(struct pci_dev *pdev, pci_channel_ return PCI_ERS_RESULT_DISCONNECT; /* If the device is already wedged or in survivability mode, do not attempt recovery */ - if (xe_survivability_mode_is_boot_enabled(xe) || xe_device_wedged(xe)) + if (xe_survivability_mode_is_boot_enabled(xe) || xe_wedged(xe)) return PCI_ERS_RESULT_DISCONNECT; switch (state) { @@ -86,7 +87,7 @@ static pci_ers_result_t xe_pci_error_mmio_enabled(struct pci_dev *pdev) /* User wants to debug the error, prevent reset */ if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) { - xe_device_declare_wedged(xe); + xe_wedge_declare(xe); return PCI_ERS_RESULT_DISCONNECT; } diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c index 7a85735c57d5..2e8eb8856f97 100644 --- a/drivers/gpu/drm/xe/xe_ras.c +++ b/drivers/gpu/drm/xe/xe_ras.c @@ -16,6 +16,7 @@ #include "xe_sysctrl_event_types.h" #include "xe_sysctrl_mailbox.h" #include "xe_sysctrl_mailbox_types.h" +#include "xe_wedge.h" #define CORE_COMPUTE_UNCORR_TYPE GENMASK(26, 25) /* @@ -321,8 +322,8 @@ static u8 handle_core_compute_errors(struct xe_ras_error_array *arr) static void punit_error_handler(struct xe_device *xe) { - xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_COLD_RESET); - xe_device_declare_wedged(xe); + xe_wedge_set_method(xe, DRM_WEDGE_RECOVERY_COLD_RESET); + xe_wedge_declare(xe); } static u8 handle_soc_internal_errors(struct xe_device *xe, struct xe_ras_error_array *arr) diff --git a/drivers/gpu/drm/xe/xe_sriov_pf.c b/drivers/gpu/drm/xe/xe_sriov_pf.c index 33bd754d138f..ce0db26203ec 100644 --- a/drivers/gpu/drm/xe/xe_sriov_pf.c +++ b/drivers/gpu/drm/xe/xe_sriov_pf.c @@ -19,6 +19,7 @@ #include "xe_sriov_pf_service.h" #include "xe_sriov_pf_sysfs.h" #include "xe_sriov_printk.h" +#include "xe_wedge.h" static unsigned int wanted_max_vfs(struct xe_device *xe) { @@ -157,7 +158,7 @@ int xe_sriov_pf_wait_ready(struct xe_device *xe) unsigned int id; int err; - if (xe_device_wedged(xe)) + if (xe_wedged(xe)) return -ECANCELED; for_each_gt(gt, xe, id) { diff --git a/drivers/gpu/drm/xe/xe_survivability_mode.c b/drivers/gpu/drm/xe/xe_survivability_mode.c index 45d44ebe288b..dacb6303b8da 100644 --- a/drivers/gpu/drm/xe/xe_survivability_mode.c +++ b/drivers/gpu/drm/xe/xe_survivability_mode.c @@ -20,6 +20,7 @@ #include "xe_pcode_api.h" #include "xe_printk.h" #include "xe_vsec.h" +#include "xe_wedge.h" /** * DOC: Survivability Mode @@ -446,8 +447,8 @@ void xe_survivability_mode_runtime_enable(struct xe_device *xe) survivability->type = XE_SURVIVABILITY_TYPE_RUNTIME; xe_log_err(xe, SURVIVABILITY, 0, "Runtime Mode enabled!\n"); - xe_device_set_wedged_method(xe, DRM_WEDGE_RECOVERY_VENDOR); - xe_device_declare_wedged(xe); + xe_wedge_set_method(xe, DRM_WEDGE_RECOVERY_VENDOR); + xe_wedge_declare(xe); xe_log_err(xe, SURVIVABILITY, 0, "Firmware flash required!\n"); xe_info(xe, "Please refer to the userspace documentation for more details how to flash the firmware on %s!\n", diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c index 65f59f06177f..686c28856014 100644 --- a/drivers/gpu/drm/xe/xe_uc.c +++ b/drivers/gpu/drm/xe/xe_uc.c @@ -326,15 +326,15 @@ void xe_uc_runtime_resume(struct xe_uc *uc) } /** - * xe_uc_declare_wedged() - Declare UC wedged + * xe_uc_wedge_declare() - Declare UC wedged * @uc: the UC object * * Wedge the UC which stops all submission, saves desired debug state, and * cleans up anything which could timeout. */ -void xe_uc_declare_wedged(struct xe_uc *uc) +void xe_uc_wedge_declare(struct xe_uc *uc) { xe_gt_assert(uc_to_gt(uc), uc_to_xe(uc)->wedged.mode); - xe_guc_declare_wedged(&uc->guc); + xe_guc_wedge_declare(&uc->guc); } diff --git a/drivers/gpu/drm/xe/xe_uc.h b/drivers/gpu/drm/xe/xe_uc.h index 255a54a8f876..23bc0ce1c42f 100644 --- a/drivers/gpu/drm/xe/xe_uc.h +++ b/drivers/gpu/drm/xe/xe_uc.h @@ -21,6 +21,6 @@ int xe_uc_start(struct xe_uc *uc); void xe_uc_suspend_prepare(struct xe_uc *uc); int xe_uc_suspend(struct xe_uc *uc); int xe_uc_sanitize_reset(struct xe_uc *uc); -void xe_uc_declare_wedged(struct xe_uc *uc); +void xe_uc_wedge_declare(struct xe_uc *uc); #endif diff --git a/drivers/gpu/drm/xe/xe_wedge.c b/drivers/gpu/drm/xe/xe_wedge.c new file mode 100644 index 000000000000..c3710a5eafcd --- /dev/null +++ b/drivers/gpu/drm/xe/xe_wedge.c @@ -0,0 +1,286 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2026 Intel Corporation + */ + +#include <drm/drm_drv.h> +#include <drm/drm_managed.h> + +#include "xe_defaults.h" +#include "xe_device_types.h" +#include "xe_gt.h" +#include "xe_gt_printk.h" +#include "xe_guc_ads.h" +#include "xe_log.h" +#include "xe_module.h" +#include "xe_pm.h" +#include "xe_printk.h" +#include "xe_wedge.h" + +/** + * DOC: Xe Device Wedging + * + * Xe driver uses drm device wedged uevent as documented in Documentation/gpu/drm-uapi.rst. + * When device is in wedged state, every IOCTL will be blocked and GT cannot + * be used. The conditions under which the driver declares the device wedged + * depend on the wedge mode configuration (see &enum xe_wedged_mode). The + * default recovery method for a wedged state is rebind/bus-reset. + * + * Another recovery method is vendor-specific. Below are the cases that send + * ``WEDGED=vendor-specific`` recovery method in drm device wedged uevent. + * + * Case: Firmware Flash + * -------------------- + * + * Identification Hint + * +++++++++++++++++++ + * + * ``WEDGED=vendor-specific`` drm device wedged uevent with + * :ref:`Runtime Survivability mode <xe-survivability-mode>` is used to notify + * admin/userspace consumer about the need for a firmware flash. + * + * Recovery Procedure + * ++++++++++++++++++ + * + * Once ``WEDGED=vendor-specific`` drm device wedged uevent is received, follow + * the below steps + * + * - Check Runtime Survivability mode sysfs. + * If enabled, firmware flash is required to recover the device. + * + * /sys/bus/pci/devices/<device>/survivability_mode + * + * - Admin/userspace consumer can use firmware flashing tools like fwupd to flash + * firmware and restore device to normal operation. + */ + +/** + * xe_wedge_set_method() - Set wedge recovery method + * @xe: xe device instance + * @method: recovery method to set + * + * Set wedge recovery method to be sent in drm wedged uevent. + */ +void xe_wedge_set_method(struct xe_device *xe, unsigned long method) +{ + xe->wedged.method = method; +} + +/** + * xe_wedged() - Check for wedged device + * @xe: xe device instance + * + * Returns: %true if device is wedged, %false otherwise. + */ +bool xe_wedged(struct xe_device *xe) +{ + return atomic_read(&xe->wedged.flag); +} + +static void wedge_work(struct work_struct *work) +{ + struct xe_device *xe = container_of(work, struct xe_device, wedged.work); + + /* + * XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET is intended for debugging + * hangs, so wedge the device with 'none' recovery method and have + * it available to the user for debugging. + */ + if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) + xe_wedge_set_method(xe, DRM_WEDGE_RECOVERY_NONE); + /* If no wedge recovery method is set, use default */ + else if (!xe->wedged.method) + xe_wedge_set_method(xe, DRM_WEDGE_RECOVERY_REBIND | + DRM_WEDGE_RECOVERY_BUS_RESET); + + /* Notify userspace of wedged device */ + drm_dev_wedged_event(&xe->drm, xe->wedged.method, NULL); +} + +#define WEDGED_URL "https://docs.kernel.org/gpu/drm-uapi.html#device-wedging" +#define XE_BUG_URL "https://gitlab.freedesktop.org/drm/xe/kernel/issues/new" + +/** + * xe_wedge_declare() - Declare device wedged + * @xe: xe device instance + * + * This is a final state that can only be cleared with the recovery method + * specified in the drm wedged uevent. The method can be set using + * xe_wedge_set_method() before declaring the device as wedged. + * If no method is set, rebind/bus-reset will be sent by default. + * + * In this state every IOCTL will be blocked so the GT cannot be used. + * In general it will be called upon any critical error such as gt reset + * failure or guc loading failure. Userspace will be notified of this state + * through device wedged uevent. + * If xe.wedged module parameter is set to 2, this function will be called + * on every single execution timeout (a.k.a. GPU hang) right after devcoredump + * snapshot capture. In this mode, GT reset won't be attempted so the state of + * the issue is preserved for further debugging. + * + * Since the wedge handling is done as part of worker thread, this is safe for + * atomic callers. + */ +void xe_wedge_declare(struct xe_device *xe) +{ + struct xe_gt *gt; + u8 id; + + if (xe->wedged.mode == XE_WEDGED_MODE_NEVER) { + xe_dbg(xe, "Wedged mode is forcibly disabled\n"); + return; + } + + if (atomic_xchg(&xe->wedged.flag, 1)) + return; + + xe->needs_flr_on_fini = true; + xe_pm_runtime_get_noresume(xe); + + xe_log_err_fatal(xe, WEDGED, -EIO, "Device declared wedged!\n"); + xe_err_once(xe, "IOCTLs and executions are now blocked!\n" + "For recovery procedure, refer to %s\n" + "Please file a _new_ bug report at %s\n", + WEDGED_URL, XE_BUG_URL); + + for_each_gt(gt, xe, id) + xe_gt_wedge_declare(gt); + + schedule_work(&xe->wedged.work); +} + +static const char *wedge_mode_to_string(enum xe_wedged_mode mode) +{ + switch (mode) { + case XE_WEDGED_MODE_NEVER: + return "never"; + case XE_WEDGED_MODE_UPON_CRITICAL_ERROR: + return "upon-critical-error"; + case XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET: + return "upon-any-hang-no-reset"; + default: + return "<invalid>"; + } +} + +static int wedge_validate_mode(struct xe_device *xe, unsigned int mode) +{ + if (mode > XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) { + xe_dbg(xe, "wedged_mode: invalid value (%u)\n", mode); + return -EINVAL; + } else if (mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET && (IS_SRIOV_VF(xe) || + (IS_SRIOV_PF(xe) && !IS_ENABLED(CONFIG_DRM_XE_DEBUG)))) { + xe_dbg(xe, "wedged_mode: (%u) %s mode is not supported for %s\n", + mode, wedge_mode_to_string(mode), + xe_sriov_mode_to_string(xe_device_sriov_mode(xe))); + return -EPERM; + } + + return 0; +} + +static bool wedge_mode_needs_policy_update(struct xe_device *xe, enum xe_wedged_mode mode) +{ + if (xe->wedged.inconsistent_reset) + return true; + + if (xe->wedged.mode == mode) + return false; + + if (xe->wedged.mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET || + mode == XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET) + return true; + + return false; +} + +static int __wedge_mode_set_reset_policy(struct xe_gt *gt, enum xe_wedged_mode mode) +{ + bool enable_engine_reset; + int ret; + + enable_engine_reset = (mode != XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET); + ret = xe_guc_ads_scheduler_policy_toggle_reset(>->uc.guc.ads, + enable_engine_reset); + if (ret) + xe_gt_err(gt, "Failed to update GuC ADS scheduler policy (%pe)\n", ERR_PTR(ret)); + + return ret; +} + +static int wedge_mode_set_reset_policy(struct xe_device *xe, enum xe_wedged_mode mode) +{ + struct xe_gt *gt; + int ret; + u8 id; + + guard(xe_pm_runtime)(xe); + for_each_gt(gt, xe, id) { + ret = __wedge_mode_set_reset_policy(gt, mode); + if (ret) { + if (id > 0) { + xe->wedged.inconsistent_reset = true; + xe_err(xe, "Inconsistent reset policy state between GTs\n"); + } + return ret; + } + } + + xe->wedged.inconsistent_reset = false; + + return 0; +} + +/** + * xe_wedge_set_mode() - Set wedge mode + * @xe: xe device instance + * @mode: wedge mode to be set + * + * Returns: 0 on success, negative error code otherwise. + */ +int xe_wedge_set_mode(struct xe_device *xe, enum xe_wedged_mode mode) +{ + int ret; + + ret = wedge_validate_mode(xe, mode); + if (ret) + return ret; + + if (wedge_mode_needs_policy_update(xe, mode)) { + ret = wedge_mode_set_reset_policy(xe, mode); + if (ret) + return ret; + } + + xe->wedged.mode = mode; + + return ret; +} + +static void xe_wedge_fini(struct drm_device *drm, void *arg) +{ + struct xe_device *xe = arg; + + disable_work_sync(&xe->wedged.work); + + if (atomic_read(&xe->wedged.flag)) + xe_pm_runtime_put(xe); +} + +/** + * xe_wedge_init() - Initialize wedge + * @xe: xe device instance + * + * Returns: 0 on success, negative error code otherwise. + */ +int xe_wedge_init(struct xe_device *xe) +{ + INIT_WORK(&xe->wedged.work, wedge_work); + + xe->wedged.mode = wedge_validate_mode(xe, xe_modparam.wedged_mode) ? + XE_DEFAULT_WEDGED_MODE : xe_modparam.wedged_mode; + xe_dbg(xe, "wedged_mode: setting mode (%u) %s\n", + xe->wedged.mode, wedge_mode_to_string(xe->wedged.mode)); + + return drmm_add_action_or_reset(&xe->drm, xe_wedge_fini, xe); +} diff --git a/drivers/gpu/drm/xe/xe_wedge.h b/drivers/gpu/drm/xe/xe_wedge.h new file mode 100644 index 000000000000..e564a3b9d7d8 --- /dev/null +++ b/drivers/gpu/drm/xe/xe_wedge.h @@ -0,0 +1,20 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2026 Intel Corporation + */ + +#ifndef _XE_WEDGE_H_ +#define _XE_WEDGE_H_ + +#include <linux/types.h> + +struct xe_device; +enum xe_wedged_mode; + +bool xe_wedged(struct xe_device *xe); +void xe_wedge_declare(struct xe_device *xe); +int xe_wedge_init(struct xe_device *xe); +void xe_wedge_set_method(struct xe_device *xe, unsigned long method); +int xe_wedge_set_mode(struct xe_device *xe, enum xe_wedged_mode mode); + +#endif diff --git a/drivers/gpu/drm/xe/xe_wedge_types.h b/drivers/gpu/drm/xe/xe_wedge_types.h new file mode 100644 index 000000000000..e6084f151c62 --- /dev/null +++ b/drivers/gpu/drm/xe/xe_wedge_types.h @@ -0,0 +1,45 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2026 Intel Corporation + */ + +#ifndef _XE_WEDGE_TYPES_H_ +#define _XE_WEDGE_TYPES_H_ + +#include <linux/atomic.h> +#include <linux/types.h> +#include <linux/workqueue_types.h> + +/** + * enum xe_wedged_mode - Possible wedge modes + * @XE_WEDGED_MODE_NEVER: Device will never be declared wedged. + * @XE_WEDGED_MODE_UPON_CRITICAL_ERROR: Device will be declared wedged only + * when critical error occurs like GT reset failure or firmware failure. + * This is the default mode. + * @XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET: Device will be declared wedged on + * any hang. In this mode, engine resets are disabled to avoid automatic + * recovery attempts. This mode is primarily intended for debugging hangs. + */ +enum xe_wedged_mode { + XE_WEDGED_MODE_NEVER = 0, + XE_WEDGED_MODE_UPON_CRITICAL_ERROR = 1, + XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET = 2, +}; + +/** + * struct xe_wedge - Struct to control Wedged States and mode + */ +struct xe_wedge { + /** @flag: Xe device faced a critical error and is now blocked. */ + atomic_t flag; + /** @mode: Mode controlled by kernel parameter and debugfs */ + enum xe_wedged_mode mode; + /** @method: Recovery method to be sent in the drm device wedged uevent */ + unsigned long method; + /** @inconsistent_reset: Inconsistent reset policy state between GTs */ + bool inconsistent_reset; + /** @work: Worker for wedge handling */ + struct work_struct work; +}; + +#endif -- 2.43.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v3 5/5] drm/xe/ras: Move xe_ras_process_errors() to xe_ras 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav ` (3 preceding siblings ...) 2026-09-07 8:34 ` [PATCH v3 4/5] drm/xe: Introduce xe_wedge Raag Jadav @ 2026-09-07 8:34 ` Raag Jadav 2026-09-07 8:55 ` sashiko-bot 2026-09-07 9:35 ` ✗ CI.checkpatch: warning for Introduce xe_wedge (rev2) Patchwork ` (3 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Raag Jadav @ 2026-09-07 8:34 UTC (permalink / raw) To: intel-xe Cc: riana.tauro, michal.wajdeczko, lukasz.laguna, matthew.d.roper, matthew.brost, rodrigo.vivi, Raag Jadav With xe_wedge_fini() now moved to xe_wedge and registered as part of xe_device_probe_early(), it is safe to move xe_ras_process_errors() back to xe_ras where it belongs. This essentially reverts commit 20bc4883c7c0 ("drm/xe/ras: Fix boot-time ras error processing") which was added to prevent PM reference leak in case of early wedging in probe sequence. Signed-off-by: Raag Jadav <raag.jadav@intel.com> --- drivers/gpu/drm/xe/xe_device.c | 7 ------- drivers/gpu/drm/xe/xe_ras.c | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c index 12279ed27629..8b0ea8a48d57 100644 --- a/drivers/gpu/drm/xe/xe_device.c +++ b/drivers/gpu/drm/xe/xe_device.c @@ -1148,13 +1148,6 @@ int xe_device_probe(struct xe_device *xe) detect_preproduction_hw(xe); - /* - * Process and log any errors detected by hardware. Possible results can - * include declaring the device as wedged, which must be done only after - * xe_wedge_fini() is registered. - */ - xe_ras_process_errors(xe); - err = devm_add_action_or_reset(xe->drm.dev, xe_device_sanitize, xe); if (err) goto err_unregister_display; diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c index 2e8eb8856f97..abf4800ff1e3 100644 --- a/drivers/gpu/drm/xe/xe_ras.c +++ b/drivers/gpu/drm/xe/xe_ras.c @@ -933,6 +933,13 @@ void xe_ras_init(struct xe_device *xe) if (IS_ENABLED(CONFIG_PCIEAER)) ras_usp_aer_init(xe); + /* + * During probe, process and log any errors detected by firmware while the driver was not + * loaded. Critical errors such as Punit and CSC are reported through Pcode init failure, + * causing the driver to enter survivability mode. + */ + xe_ras_process_errors(xe); + ret = devm_device_add_group(xe->drm.dev, &gpu_health_group); if (ret) xe_err(xe, "Failed to create GPU health sysfs, err=%d\n", ret); -- 2.43.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v3 5/5] drm/xe/ras: Move xe_ras_process_errors() to xe_ras 2026-09-07 8:34 ` [PATCH v3 5/5] drm/xe/ras: Move xe_ras_process_errors() to xe_ras Raag Jadav @ 2026-09-07 8:55 ` sashiko-bot 0 siblings, 0 replies; 15+ messages in thread From: sashiko-bot @ 2026-09-07 8:55 UTC (permalink / raw) To: Raag Jadav; +Cc: intel-xe Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider: - [High] Moving xe_ras_process_errors() earlier in the probe sequence causes WEDGED uevents to be silently dropped and GT-level wedging to be skipped. - [Medium] Moving xe_ras_process_errors() to xe_ras_init() behind the xe->info.has_sysctrl check breaks fault injection for non-sysctrl platforms. -- commit 09bf5945b56af88ea485174674cf6523adc4c2a4 Author: Raag Jadav <raag.jadav@intel.com> drm/xe/ras: Move xe_ras_process_errors() to xe_ras This commit moves the execution of xe_ras_process_errors() from the end of xe_device_probe() into xe_ras_init(). > diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c > index 12279ed276297..8b0ea8a48d57b 100644 > --- a/drivers/gpu/drm/xe/xe_device.c > +++ b/drivers/gpu/drm/xe/xe_device.c [ ... ] > @@ -1148,13 +1148,6 @@ int xe_device_probe(struct xe_device *xe) > > detect_preproduction_hw(xe); > > - /* > - * Process and log any errors detected by hardware. Possible results can > - * include declaring the device as wedged, which must be done only after > - * xe_wedge_fini() is registered. > - */ > - xe_ras_process_errors(xe); > - > err = devm_add_action_or_reset(xe->drm.dev, xe_device_sanitize, xe); > diff --git a/drivers/gpu/drm/xe/xe_ras.c b/drivers/gpu/drm/xe/xe_ras.c > index 2e8eb8856f97b..abf4800ff1e36 100644 > --- a/drivers/gpu/drm/xe/xe_ras.c > +++ b/drivers/gpu/drm/xe/xe_ras.c [ ... ] > @@ -933,6 +933,13 @@ void xe_ras_init(struct xe_device *xe) > if (IS_ENABLED(CONFIG_PCIEAER)) > ras_usp_aer_init(xe); > > + /* > + * During probe, process and log any errors detected by firmware while the driver was not > + * loaded. Critical errors such as Punit and CSC are reported through Pcode init failure, > + * causing the driver to enter survivability mode. > + */ > + xe_ras_process_errors(xe); [Severity: High] Does moving this call into xe_ras_init() cause WEDGED uevents to be silently dropped and GT-level wedging to be skipped? Because xe_ras_init() runs early in the probe sequence, before xe_gt_init() and drm_dev_register() have executed, a boot-time hardware error detected here (or fault injection) triggers xe_wedge_declare() prematurely. This synchronously calls xe_gt_wedge_declare() while gt->wedge.worker.func is still NULL, causing GT wedging to be skipped entirely. Additionally, the async wedge_work races with drm_dev_register(), leading kobject_uevent_env() to silently drop the uevent because the DRM device is not yet exposed in sysfs. This leaves the device in a partially wedged state where GT components like GuC continue running, and userspace is not notified of the wedged state. [Severity: Medium] Does placing this call behind the xe->info.has_sysctrl check break fault injection for non-sysctrl platforms? Earlier in xe_ras_init(), there is an early return: if (!xe->info.has_sysctrl) return; Prior to this patch, xe_ras_process_errors() was called unconditionally in xe_device_probe(), meaning the cold-reset wedge fault injection (xe_fault_wedge_cold_reset) could be triggered on any platform. Now, the sysctrl early return bypasses xe_ras_process_errors() entirely on platforms without sysctrl, which causes a regression in the testing infrastructure. -- Sashiko AI review · https://sashiko.dev/#/patchset/20260907083541.2194747-1-raag.jadav@intel.com?part=5 ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.checkpatch: warning for Introduce xe_wedge (rev2) 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav ` (4 preceding siblings ...) 2026-09-07 8:34 ` [PATCH v3 5/5] drm/xe/ras: Move xe_ras_process_errors() to xe_ras Raag Jadav @ 2026-09-07 9:35 ` Patchwork 2026-09-07 9:37 ` ✓ CI.KUnit: success " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-09-07 9:35 UTC (permalink / raw) To: Raag Jadav; +Cc: intel-xe == Series Details == Series: Introduce xe_wedge (rev2) URL : https://patchwork.freedesktop.org/series/173011/ 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 d875049d2b299159a272bd5151994970cdcd1e31 + cd /kernel + git config --global --add safe.directory /kernel + git log -n1 commit ba3f0c8cf7d79d1cc32faaf7f11e57539783c824 Author: Raag Jadav <raag.jadav@intel.com> Date: Mon Sep 7 14:04:40 2026 +0530 drm/xe/ras: Move xe_ras_process_errors() to xe_ras With xe_wedge_fini() now moved to xe_wedge and registered as part of xe_device_probe_early(), it is safe to move xe_ras_process_errors() back to xe_ras where it belongs. This essentially reverts commit 20bc4883c7c0 ("drm/xe/ras: Fix boot-time ras error processing") which was added to prevent PM reference leak in case of early wedging in probe sequence. Signed-off-by: Raag Jadav <raag.jadav@intel.com> + /mt/dim checkpatch c60540b13d7bacc21848ed94fd368a968454d5db drm-intel 1c20364ccb32 drm/xe/gt: Use GT ordered workqueue for wedging e49775412e28 drm/xe: Move xe_device_wedged_fini() registration to xe_device_probe_early() cc625991f946 drm/xe: Make xe_device_declare_wedged() IRQ safe 1062bfa75b7d drm/xe: Introduce xe_wedge -:1081: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #1081: new file mode 100644 total: 0 errors, 1 warnings, 0 checks, 1235 lines checked ba3f0c8cf7d7 drm/xe/ras: Move xe_ras_process_errors() to xe_ras ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ CI.KUnit: success for Introduce xe_wedge (rev2) 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav ` (5 preceding siblings ...) 2026-09-07 9:35 ` ✗ CI.checkpatch: warning for Introduce xe_wedge (rev2) Patchwork @ 2026-09-07 9:37 ` Patchwork 2026-09-07 10:26 ` ✓ Xe.CI.BAT: " Patchwork 2026-09-07 11:39 ` ✓ Xe.CI.FULL: " Patchwork 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-09-07 9:37 UTC (permalink / raw) To: Raag Jadav; +Cc: intel-xe == Series Details == Series: Introduce xe_wedge (rev2) URL : https://patchwork.freedesktop.org/series/173011/ State : success == Summary == + trap cleanup EXIT + kunitconfigs=('/kernel/drivers/gpu/tests/.kunitconfig' '/kernel/drivers/gpu/drm/xe/.kunitconfig' '/kernel/drivers/gpu/drm/tests/.kunitconfig' '/kernel/drivers/gpu/drm/ttm/tests/.kunitconfig' '/kernel/drivers/dma-buf/.kunitconfig') + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/gpu/tests/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/tests/.kunitconfig [09:35:07] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [09:35:12] 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 [09:35:32] Starting KUnit Kernel (1/1)... [09:35:32] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [09:35:32] ============= refcount_interrupt (4 subtests) ============== [09:35:32] [PASSED] test_single_irq_change [09:35:32] [PASSED] test_nested_irq_change [09:35:32] [PASSED] test_multiple_irq_change [09:35:32] [PASSED] test_irq_save [09:35:32] =============== [PASSED] refcount_interrupt ================ [09:35:32] ================= gpu_buddy (14 subtests) ================== [09:35:32] [PASSED] gpu_test_buddy_alloc_limit [09:35:32] [PASSED] gpu_test_buddy_alloc_optimistic [09:35:32] [PASSED] gpu_test_buddy_alloc_pessimistic [09:35:32] [PASSED] gpu_test_buddy_alloc_pathological [09:35:32] [PASSED] gpu_test_buddy_alloc_contiguous [09:35:32] [PASSED] gpu_test_buddy_alloc_clear [09:35:32] [PASSED] gpu_test_buddy_alloc_range [09:35:32] [PASSED] gpu_test_buddy_alloc_range_bias [09:35:33] [PASSED] gpu_test_buddy_fragmentation_performance [09:35:34] [PASSED] gpu_test_buddy_dirty_tracker_performance [09:35:34] [PASSED] gpu_test_buddy_alloc_exceeds_max_order [09:35:34] [PASSED] gpu_test_buddy_offset_aligned_allocation [09:35:34] [PASSED] gpu_test_buddy_subtree_offset_alignment_stress [09:35:34] [PASSED] gpu_test_buddy_addr_to_block [09:35:34] ==================== [PASSED] gpu_buddy ==================== [09:35:34] ============================================================ [09:35:34] Testing complete. Ran 18 tests: passed: 18 [09:35:34] Elapsed time: 26.422s total, 4.350s configuring, 20.154s building, 1.867s running + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/gpu/drm/xe/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [09:35:34] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [09:35:36] 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 [09:36:09] Starting KUnit Kernel (1/1)... [09:36:09] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [09:36:10] ============= refcount_interrupt (4 subtests) ============== [09:36:10] [PASSED] test_single_irq_change [09:36:10] [PASSED] test_nested_irq_change [09:36:10] [PASSED] test_multiple_irq_change [09:36:10] [PASSED] test_irq_save [09:36:10] =============== [PASSED] refcount_interrupt ================ [09:36:10] ================== guc_buf (11 subtests) =================== [09:36:10] [PASSED] test_smallest [09:36:10] [PASSED] test_largest [09:36:10] [PASSED] test_granular [09:36:10] [PASSED] test_unique [09:36:10] [PASSED] test_overlap [09:36:10] [PASSED] test_reusable [09:36:10] [PASSED] test_too_big [09:36:10] [PASSED] test_flush [09:36:10] [PASSED] test_lookup [09:36:10] [PASSED] test_data [09:36:10] [PASSED] test_class [09:36:10] ===================== [PASSED] guc_buf ===================== [09:36:10] =================== guc_dbm (7 subtests) =================== [09:36:10] [PASSED] test_empty [09:36:10] [PASSED] test_default [09:36:10] ======================== test_size ======================== [09:36:10] [PASSED] 4 [09:36:10] [PASSED] 8 [09:36:10] [PASSED] 32 [09:36:10] [PASSED] 256 [09:36:10] ==================== [PASSED] test_size ==================== [09:36:10] ======================= test_reuse ======================== [09:36:10] [PASSED] 4 [09:36:10] [PASSED] 8 [09:36:10] [PASSED] 32 [09:36:10] [PASSED] 256 [09:36:10] =================== [PASSED] test_reuse ==================== [09:36:10] =================== test_range_overlap ==================== [09:36:10] [PASSED] 4 [09:36:10] [PASSED] 8 [09:36:10] [PASSED] 32 [09:36:10] [PASSED] 256 [09:36:10] =============== [PASSED] test_range_overlap ================ [09:36:10] =================== test_range_compact ==================== [09:36:10] [PASSED] 4 [09:36:10] [PASSED] 8 [09:36:10] [PASSED] 32 [09:36:10] [PASSED] 256 [09:36:10] =============== [PASSED] test_range_compact ================ [09:36:10] ==================== test_range_spare ===================== [09:36:10] [PASSED] 4 [09:36:10] [PASSED] 8 [09:36:10] [PASSED] 32 [09:36:10] [PASSED] 256 [09:36:10] ================ [PASSED] test_range_spare ================= [09:36:10] ===================== [PASSED] guc_dbm ===================== [09:36:10] =================== guc_idm (6 subtests) =================== [09:36:10] [PASSED] bad_init [09:36:10] [PASSED] no_init [09:36:10] [PASSED] init_fini [09:36:10] [PASSED] check_used [09:36:10] [PASSED] check_quota [09:36:10] [PASSED] check_all [09:36:10] ===================== [PASSED] guc_idm ===================== [09:36:10] =============== guc_klv_helpers (9 subtests) =============== [09:36:10] [PASSED] test_count [09:36:10] [PASSED] test_encode_u32 [09:36:10] [PASSED] test_encode_u64 [09:36:10] [PASSED] test_encode_string [09:36:10] [PASSED] test_encode_object_raw [09:36:10] [PASSED] test_encode_object_klv [09:36:10] [PASSED] test_encode_object_nested [09:36:10] [PASSED] test_encode_object_basic [09:36:10] [PASSED] test_print [09:36:10] ================= [PASSED] guc_klv_helpers ================= [09:36:10] =================== xe_log (4 subtests) ==================== [09:36:10] [PASSED] demo_cper [09:36:10] [PASSED] demo_dmesg [09:36:10] ======================= test_dmesg ======================== [09:36:10] [PASSED] test_fatal [09:36:10] [PASSED] test_fatal_tile [09:36:10] [PASSED] test_fatal_gt [09:36:10] [PASSED] test_fatal_comp [09:36:10] [PASSED] test_fatal_comp_tile [09:36:10] [PASSED] test_fatal_comp_gt [09:36:10] [PASSED] test_fatal_all [09:36:10] [PASSED] test_recoverable [09:36:10] [PASSED] test_recoverable_tile [09:36:10] [PASSED] test_recoverable_gt [09:36:10] [PASSED] test_recoverable_comp [09:36:10] [PASSED] test_recoverable_comp_tile [09:36:10] [PASSED] test_recoverable_comp_gt [09:36:10] [PASSED] test_recoverable_all [09:36:10] [PASSED] test_info [09:36:10] [PASSED] test_info_tile [09:36:10] [PASSED] test_info_gt [09:36:10] [PASSED] test_info_err [09:36:10] [PASSED] test_info_comp [09:36:10] [PASSED] test_info_comp_tile [09:36:10] [PASSED] test_info_comp_gt [09:36:10] [PASSED] test_info_all [09:36:10] [PASSED] test_hw_fatal [09:36:10] [PASSED] test_hw_recoverable [09:36:10] [PASSED] test_hw_corrected [09:36:10] [PASSED] test_hw_informational [09:36:10] =================== [PASSED] test_dmesg ==================== [09:36:10] ====================== test_invalid ======================= [09:36:10] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG) [09:36:10] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG) [09:36:10] ================== [SKIPPED] test_invalid ================== [09:36:10] ===================== [PASSED] xe_log ====================== [09:36:10] ================== no_relay (3 subtests) =================== [09:36:10] [PASSED] xe_drops_guc2pf_if_not_ready [09:36:10] [PASSED] xe_drops_guc2vf_if_not_ready [09:36:10] [PASSED] xe_rejects_send_if_not_ready [09:36:10] ==================== [PASSED] no_relay ===================== [09:36:10] ================== pf_relay (14 subtests) ================== [09:36:10] [PASSED] pf_rejects_guc2pf_too_short [09:36:10] [PASSED] pf_rejects_guc2pf_too_long [09:36:10] [PASSED] pf_rejects_guc2pf_no_payload [09:36:10] [PASSED] pf_fails_no_payload [09:36:10] [PASSED] pf_fails_bad_origin [09:36:10] [PASSED] pf_fails_bad_type [09:36:10] [PASSED] pf_txn_reports_error [09:36:10] [PASSED] pf_txn_sends_pf2guc [09:36:10] [PASSED] pf_sends_pf2guc [09:36:10] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:36:10] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:36:10] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:36:10] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:36:10] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV) [09:36:10] ==================== [PASSED] pf_relay ===================== [09:36:10] ================== vf_relay (3 subtests) =================== [09:36:10] [PASSED] vf_rejects_guc2vf_too_short [09:36:10] [PASSED] vf_rejects_guc2vf_too_long [09:36:10] [PASSED] vf_rejects_guc2vf_no_payload [09:36:10] ==================== [PASSED] vf_relay ===================== [09:36:10] ================ pf_gt_config (9 subtests) ================= [09:36:10] [PASSED] fair_contexts_1vf [09:36:10] [PASSED] fair_doorbells_1vf [09:36:10] [PASSED] fair_ggtt_1vf [09:36:10] ====================== fair_vram_1vf ====================== [09:36:10] [PASSED] 3.50 GiB [09:36:10] [PASSED] 11.5 GiB [09:36:10] [PASSED] 15.5 GiB [09:36:10] [PASSED] 31.5 GiB [09:36:10] [PASSED] 63.5 GiB [09:36:10] [PASSED] 1.91 GiB [09:36:10] ================== [PASSED] fair_vram_1vf ================== [09:36:10] ================ fair_vram_1vf_admin_only ================= [09:36:10] [PASSED] 3.50 GiB [09:36:10] [PASSED] 11.5 GiB [09:36:10] [PASSED] 15.5 GiB [09:36:10] [PASSED] 31.5 GiB [09:36:10] [PASSED] 63.5 GiB [09:36:10] [PASSED] 1.91 GiB [09:36:10] ============ [PASSED] fair_vram_1vf_admin_only ============= [09:36:10] ====================== fair_contexts ====================== [09:36:10] [PASSED] 1 VF [09:36:10] [PASSED] 2 VFs [09:36:10] [PASSED] 3 VFs [09:36:10] [PASSED] 4 VFs [09:36:10] [PASSED] 5 VFs [09:36:10] [PASSED] 6 VFs [09:36:10] [PASSED] 7 VFs [09:36:10] [PASSED] 8 VFs [09:36:10] [PASSED] 9 VFs [09:36:10] [PASSED] 10 VFs [09:36:10] [PASSED] 11 VFs [09:36:10] [PASSED] 12 VFs [09:36:10] [PASSED] 13 VFs [09:36:10] [PASSED] 14 VFs [09:36:10] [PASSED] 15 VFs [09:36:10] [PASSED] 16 VFs [09:36:10] [PASSED] 17 VFs [09:36:10] [PASSED] 18 VFs [09:36:10] [PASSED] 19 VFs [09:36:10] [PASSED] 20 VFs [09:36:10] [PASSED] 21 VFs [09:36:10] [PASSED] 22 VFs [09:36:10] [PASSED] 23 VFs [09:36:10] [PASSED] 24 VFs [09:36:10] [PASSED] 25 VFs [09:36:10] [PASSED] 26 VFs [09:36:10] [PASSED] 27 VFs [09:36:10] [PASSED] 28 VFs [09:36:10] [PASSED] 29 VFs [09:36:10] [PASSED] 30 VFs [09:36:10] [PASSED] 31 VFs [09:36:10] [PASSED] 32 VFs [09:36:10] [PASSED] 33 VFs [09:36:10] [PASSED] 34 VFs [09:36:10] [PASSED] 35 VFs [09:36:10] [PASSED] 36 VFs [09:36:10] [PASSED] 37 VFs [09:36:10] [PASSED] 38 VFs [09:36:10] [PASSED] 39 VFs [09:36:10] [PASSED] 40 VFs [09:36:10] [PASSED] 41 VFs [09:36:10] [PASSED] 42 VFs [09:36:10] [PASSED] 43 VFs [09:36:10] [PASSED] 44 VFs [09:36:10] [PASSED] 45 VFs [09:36:10] [PASSED] 46 VFs [09:36:10] [PASSED] 47 VFs [09:36:10] [PASSED] 48 VFs [09:36:10] [PASSED] 49 VFs [09:36:10] [PASSED] 50 VFs [09:36:10] [PASSED] 51 VFs [09:36:10] [PASSED] 52 VFs [09:36:10] [PASSED] 53 VFs [09:36:10] [PASSED] 54 VFs [09:36:10] [PASSED] 55 VFs [09:36:10] [PASSED] 56 VFs [09:36:10] [PASSED] 57 VFs [09:36:10] [PASSED] 58 VFs [09:36:10] [PASSED] 59 VFs [09:36:10] [PASSED] 60 VFs [09:36:10] [PASSED] 61 VFs [09:36:10] [PASSED] 62 VFs [09:36:10] [PASSED] 63 VFs [09:36:10] ================== [PASSED] fair_contexts ================== [09:36:10] ===================== fair_doorbells ====================== [09:36:10] [PASSED] 1 VF [09:36:10] [PASSED] 2 VFs [09:36:10] [PASSED] 3 VFs [09:36:10] [PASSED] 4 VFs [09:36:10] [PASSED] 5 VFs [09:36:10] [PASSED] 6 VFs [09:36:10] [PASSED] 7 VFs [09:36:10] [PASSED] 8 VFs [09:36:10] [PASSED] 9 VFs [09:36:10] [PASSED] 10 VFs [09:36:10] [PASSED] 11 VFs [09:36:10] [PASSED] 12 VFs [09:36:10] [PASSED] 13 VFs [09:36:10] [PASSED] 14 VFs [09:36:10] [PASSED] 15 VFs [09:36:10] [PASSED] 16 VFs [09:36:10] [PASSED] 17 VFs [09:36:10] [PASSED] 18 VFs [09:36:10] [PASSED] 19 VFs [09:36:10] [PASSED] 20 VFs [09:36:10] [PASSED] 21 VFs [09:36:10] [PASSED] 22 VFs [09:36:10] [PASSED] 23 VFs [09:36:10] [PASSED] 24 VFs [09:36:10] [PASSED] 25 VFs [09:36:10] [PASSED] 26 VFs [09:36:10] [PASSED] 27 VFs [09:36:10] [PASSED] 28 VFs [09:36:10] [PASSED] 29 VFs [09:36:10] [PASSED] 30 VFs [09:36:10] [PASSED] 31 VFs [09:36:10] [PASSED] 32 VFs [09:36:10] [PASSED] 33 VFs [09:36:10] [PASSED] 34 VFs [09:36:10] [PASSED] 35 VFs [09:36:10] [PASSED] 36 VFs [09:36:10] [PASSED] 37 VFs [09:36:10] [PASSED] 38 VFs [09:36:10] [PASSED] 39 VFs [09:36:10] [PASSED] 40 VFs [09:36:10] [PASSED] 41 VFs [09:36:10] [PASSED] 42 VFs [09:36:10] [PASSED] 43 VFs [09:36:10] [PASSED] 44 VFs [09:36:10] [PASSED] 45 VFs [09:36:10] [PASSED] 46 VFs [09:36:10] [PASSED] 47 VFs [09:36:10] [PASSED] 48 VFs [09:36:10] [PASSED] 49 VFs [09:36:10] [PASSED] 50 VFs [09:36:10] [PASSED] 51 VFs [09:36:10] [PASSED] 52 VFs [09:36:10] [PASSED] 53 VFs [09:36:10] [PASSED] 54 VFs [09:36:10] [PASSED] 55 VFs [09:36:10] [PASSED] 56 VFs [09:36:10] [PASSED] 57 VFs [09:36:10] [PASSED] 58 VFs [09:36:10] [PASSED] 59 VFs [09:36:10] [PASSED] 60 VFs [09:36:10] [PASSED] 61 VFs [09:36:10] [PASSED] 62 VFs [09:36:10] [PASSED] 63 VFs [09:36:10] ================= [PASSED] fair_doorbells ================== [09:36:10] ======================== fair_ggtt ======================== [09:36:10] [PASSED] 1 VF [09:36:10] [PASSED] 2 VFs [09:36:10] [PASSED] 3 VFs [09:36:10] [PASSED] 4 VFs [09:36:10] [PASSED] 5 VFs [09:36:10] [PASSED] 6 VFs [09:36:10] [PASSED] 7 VFs [09:36:10] [PASSED] 8 VFs [09:36:10] [PASSED] 9 VFs [09:36:10] [PASSED] 10 VFs [09:36:10] [PASSED] 11 VFs [09:36:10] [PASSED] 12 VFs [09:36:10] [PASSED] 13 VFs [09:36:10] [PASSED] 14 VFs [09:36:10] [PASSED] 15 VFs [09:36:10] [PASSED] 16 VFs [09:36:10] [PASSED] 17 VFs [09:36:10] [PASSED] 18 VFs [09:36:10] [PASSED] 19 VFs [09:36:10] [PASSED] 20 VFs [09:36:10] [PASSED] 21 VFs [09:36:10] [PASSED] 22 VFs [09:36:10] [PASSED] 23 VFs [09:36:10] [PASSED] 24 VFs [09:36:10] [PASSED] 25 VFs [09:36:10] [PASSED] 26 VFs [09:36:10] [PASSED] 27 VFs [09:36:10] [PASSED] 28 VFs [09:36:10] [PASSED] 29 VFs [09:36:10] [PASSED] 30 VFs [09:36:10] [PASSED] 31 VFs [09:36:10] [PASSED] 32 VFs [09:36:10] [PASSED] 33 VFs [09:36:10] [PASSED] 34 VFs [09:36:10] [PASSED] 35 VFs [09:36:10] [PASSED] 36 VFs [09:36:10] [PASSED] 37 VFs [09:36:10] [PASSED] 38 VFs [09:36:10] [PASSED] 39 VFs [09:36:10] [PASSED] 40 VFs [09:36:10] [PASSED] 41 VFs [09:36:10] [PASSED] 42 VFs [09:36:10] [PASSED] 43 VFs [09:36:10] [PASSED] 44 VFs [09:36:10] [PASSED] 45 VFs [09:36:10] [PASSED] 46 VFs [09:36:10] [PASSED] 47 VFs [09:36:10] [PASSED] 48 VFs [09:36:10] [PASSED] 49 VFs [09:36:10] [PASSED] 50 VFs [09:36:10] [PASSED] 51 VFs [09:36:10] [PASSED] 52 VFs [09:36:10] [PASSED] 53 VFs [09:36:10] [PASSED] 54 VFs [09:36:10] [PASSED] 55 VFs [09:36:10] [PASSED] 56 VFs [09:36:10] [PASSED] 57 VFs [09:36:10] [PASSED] 58 VFs [09:36:10] [PASSED] 59 VFs [09:36:10] [PASSED] 60 VFs [09:36:10] [PASSED] 61 VFs [09:36:10] [PASSED] 62 VFs [09:36:10] [PASSED] 63 VFs [09:36:10] ==================== [PASSED] fair_ggtt ==================== [09:36:10] ======================== fair_vram ======================== [09:36:10] [PASSED] 1 VF [09:36:10] [PASSED] 2 VFs [09:36:10] [PASSED] 3 VFs [09:36:10] [PASSED] 4 VFs [09:36:10] [PASSED] 5 VFs [09:36:10] [PASSED] 6 VFs [09:36:10] [PASSED] 7 VFs [09:36:10] [PASSED] 8 VFs [09:36:10] [PASSED] 9 VFs [09:36:10] [PASSED] 10 VFs [09:36:10] [PASSED] 11 VFs [09:36:10] [PASSED] 12 VFs [09:36:10] [PASSED] 13 VFs [09:36:10] [PASSED] 14 VFs [09:36:10] [PASSED] 15 VFs [09:36:10] [PASSED] 16 VFs [09:36:10] [PASSED] 17 VFs [09:36:10] [PASSED] 18 VFs [09:36:10] [PASSED] 19 VFs [09:36:10] [PASSED] 20 VFs [09:36:10] [PASSED] 21 VFs [09:36:10] [PASSED] 22 VFs [09:36:10] [PASSED] 23 VFs [09:36:10] [PASSED] 24 VFs [09:36:10] [PASSED] 25 VFs [09:36:10] [PASSED] 26 VFs [09:36:10] [PASSED] 27 VFs [09:36:10] [PASSED] 28 VFs [09:36:10] [PASSED] 29 VFs [09:36:10] [PASSED] 30 VFs [09:36:10] [PASSED] 31 VFs [09:36:10] [PASSED] 32 VFs [09:36:10] [PASSED] 33 VFs [09:36:10] [PASSED] 34 VFs [09:36:10] [PASSED] 35 VFs [09:36:10] [PASSED] 36 VFs [09:36:10] [PASSED] 37 VFs [09:36:10] [PASSED] 38 VFs [09:36:10] [PASSED] 39 VFs [09:36:10] [PASSED] 40 VFs [09:36:10] [PASSED] 41 VFs [09:36:10] [PASSED] 42 VFs [09:36:10] [PASSED] 43 VFs [09:36:10] [PASSED] 44 VFs [09:36:10] [PASSED] 45 VFs [09:36:10] [PASSED] 46 VFs [09:36:10] [PASSED] 47 VFs [09:36:10] [PASSED] 48 VFs [09:36:10] [PASSED] 49 VFs [09:36:10] [PASSED] 50 VFs [09:36:10] [PASSED] 51 VFs [09:36:10] [PASSED] 52 VFs [09:36:10] [PASSED] 53 VFs [09:36:10] [PASSED] 54 VFs [09:36:10] [PASSED] 55 VFs [09:36:10] [PASSED] 56 VFs [09:36:10] [PASSED] 57 VFs [09:36:10] [PASSED] 58 VFs [09:36:10] [PASSED] 59 VFs [09:36:10] [PASSED] 60 VFs [09:36:10] [PASSED] 61 VFs [09:36:10] [PASSED] 62 VFs [09:36:10] [PASSED] 63 VFs [09:36:10] ==================== [PASSED] fair_vram ==================== [09:36:10] ================== [PASSED] pf_gt_config =================== [09:36:10] ===================== lmtt (1 subtest) ===================== [09:36:10] ======================== test_ops ========================= [09:36:10] [PASSED] 2-level [09:36:10] [PASSED] multi-level [09:36:10] ==================== [PASSED] test_ops ===================== [09:36:10] ====================== [PASSED] lmtt ======================= [09:36:10] ================= sriov_packet (1 subtest) ================= [09:36:10] [PASSED] test_descriptor_init [09:36:10] ================== [PASSED] sriov_packet =================== [09:36:10] ================= pf_service (11 subtests) ================= [09:36:10] [PASSED] pf_negotiate_any [09:36:10] [PASSED] pf_negotiate_base_match [09:36:10] [PASSED] pf_negotiate_base_newer [09:36:10] [PASSED] pf_negotiate_base_next [09:36:10] [SKIPPED] pf_negotiate_base_older (no older minor) [09:36:10] [PASSED] pf_negotiate_base_prev [09:36:10] [PASSED] pf_negotiate_latest_match [09:36:10] [PASSED] pf_negotiate_latest_newer [09:36:10] [PASSED] pf_negotiate_latest_next [09:36:10] [SKIPPED] pf_negotiate_latest_older (no older minor) [09:36:10] [SKIPPED] pf_negotiate_latest_prev (no prev major) [09:36:10] =================== [PASSED] pf_service ==================== [09:36:10] ================= xe_guc_g2g (2 subtests) ================== [09:36:10] ============== xe_live_guc_g2g_kunit_default ============== [09:36:10] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [09:36:10] ============== xe_live_guc_g2g_kunit_allmem =============== [09:36:10] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [09:36:10] =================== [SKIPPED] xe_guc_g2g =================== [09:36:10] =================== xe_mocs (2 subtests) =================== [09:36:10] ================ xe_live_mocs_kernel_kunit ================ [09:36:10] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [09:36:10] ================ xe_live_mocs_reset_kunit ================= [09:36:10] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [09:36:10] ==================== [SKIPPED] xe_mocs ===================== [09:36:10] ================= xe_migrate (2 subtests) ================== [09:36:10] ================= xe_migrate_sanity_kunit ================= [09:36:10] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [09:36:10] ================== xe_validate_ccs_kunit ================== [09:36:10] ============= [SKIPPED] xe_validate_ccs_kunit ============== [09:36:10] =================== [SKIPPED] xe_migrate =================== [09:36:10] ================== xe_dma_buf (1 subtest) ================== [09:36:10] ==================== xe_dma_buf_kunit ===================== [09:36:10] ================ [SKIPPED] xe_dma_buf_kunit ================ [09:36:10] =================== [SKIPPED] xe_dma_buf =================== [09:36:10] ================= xe_bo_shrink (1 subtest) ================= [09:36:10] =================== xe_bo_shrink_kunit ==================== [09:36:10] =============== [SKIPPED] xe_bo_shrink_kunit =============== [09:36:10] ================== [SKIPPED] xe_bo_shrink ================== [09:36:10] ==================== xe_bo (2 subtests) ==================== [09:36:10] ================== xe_ccs_migrate_kunit =================== [09:36:10] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [09:36:10] ==================== xe_bo_evict_kunit ==================== [09:36:10] =============== [SKIPPED] xe_bo_evict_kunit ================ [09:36:10] ===================== [SKIPPED] xe_bo ====================== [09:36:10] =================== xe_any (9 subtests) ==================== [09:36:10] [PASSED] test_to_xe [09:36:10] [PASSED] test_to_dev [09:36:10] [PASSED] test_to_pdev [09:36:10] [PASSED] test_to_drm [09:36:10] [PASSED] test_if_pdev [09:36:10] [PASSED] test_if_xe [09:36:10] [PASSED] test_if_tile [09:36:10] [PASSED] test_if_gt [09:36:10] [PASSED] test_to_id [09:36:10] ===================== [PASSED] xe_any ====================== [09:36:10] ==================== args (13 subtests) ==================== [09:36:10] [PASSED] count_args_test [09:36:10] [PASSED] call_args_example [09:36:10] [PASSED] call_args_test [09:36:10] [PASSED] drop_first_arg_example [09:36:10] [PASSED] drop_first_arg_test [09:36:10] [PASSED] first_arg_example [09:36:10] [PASSED] first_arg_test [09:36:10] [PASSED] last_arg_example [09:36:10] [PASSED] last_arg_test [09:36:10] [PASSED] pick_arg_example [09:36:10] [PASSED] if_args_example [09:36:10] [PASSED] if_args_test [09:36:10] [PASSED] sep_comma_example [09:36:10] ====================== [PASSED] args ======================= [09:36:10] =================== xe_pci (3 subtests) ==================== [09:36:10] ==================== check_graphics_ip ==================== [09:36:10] [PASSED] 12.00 Xe_LP [09:36:10] [PASSED] 12.10 Xe_LP+ [09:36:10] [PASSED] 12.55 Xe_HPG [09:36:10] [PASSED] 12.60 Xe_HPC [09:36:10] [PASSED] 12.70 Xe_LPG [09:36:10] [PASSED] 12.71 Xe_LPG [09:36:10] [PASSED] 12.74 Xe_LPG+ [09:36:10] [PASSED] 20.01 Xe2_HPG [09:36:10] [PASSED] 20.02 Xe2_HPG [09:36:10] [PASSED] 20.04 Xe2_LPG [09:36:10] [PASSED] 30.00 Xe3_LPG [09:36:10] [PASSED] 30.01 Xe3_LPG [09:36:10] [PASSED] 30.03 Xe3_LPG [09:36:10] [PASSED] 30.04 Xe3_LPG [09:36:10] [PASSED] 30.05 Xe3_LPG [09:36:10] [PASSED] 35.10 Xe3p_LPG [09:36:10] [PASSED] 35.11 Xe3p_XPC [09:36:10] ================ [PASSED] check_graphics_ip ================ [09:36:10] ===================== check_media_ip ====================== [09:36:10] [PASSED] 12.00 Xe_M [09:36:10] [PASSED] 12.55 Xe_HPM [09:36:10] [PASSED] 13.00 Xe_LPM+ [09:36:10] [PASSED] 13.01 Xe2_HPM [09:36:10] [PASSED] 20.00 Xe2_LPM [09:36:10] [PASSED] 30.00 Xe3_LPM [09:36:10] [PASSED] 30.02 Xe3_LPM [09:36:10] [PASSED] 35.00 Xe3p_LPM [09:36:10] [PASSED] 35.03 Xe3p_HPM [09:36:10] ================= [PASSED] check_media_ip ================== [09:36:10] =================== check_platform_desc =================== [09:36:10] [PASSED] 0x9A60 (TIGERLAKE) [09:36:10] [PASSED] 0x9A68 (TIGERLAKE) [09:36:10] [PASSED] 0x9A70 (TIGERLAKE) [09:36:10] [PASSED] 0x9A40 (TIGERLAKE) [09:36:10] [PASSED] 0x9A49 (TIGERLAKE) [09:36:10] [PASSED] 0x9A59 (TIGERLAKE) [09:36:10] [PASSED] 0x9A78 (TIGERLAKE) [09:36:10] [PASSED] 0x9AC0 (TIGERLAKE) [09:36:10] [PASSED] 0x9AC9 (TIGERLAKE) [09:36:10] [PASSED] 0x9AD9 (TIGERLAKE) [09:36:10] [PASSED] 0x9AF8 (TIGERLAKE) [09:36:10] [PASSED] 0x4C80 (ROCKETLAKE) [09:36:10] [PASSED] 0x4C8A (ROCKETLAKE) [09:36:10] [PASSED] 0x4C8B (ROCKETLAKE) [09:36:10] [PASSED] 0x4C8C (ROCKETLAKE) [09:36:10] [PASSED] 0x4C90 (ROCKETLAKE) [09:36:10] [PASSED] 0x4C9A (ROCKETLAKE) [09:36:10] [PASSED] 0x4680 (ALDERLAKE_S) [09:36:10] [PASSED] 0x4682 (ALDERLAKE_S) [09:36:10] [PASSED] 0x4688 (ALDERLAKE_S) [09:36:10] [PASSED] 0x468A (ALDERLAKE_S) [09:36:10] [PASSED] 0x468B (ALDERLAKE_S) [09:36:10] [PASSED] 0x4690 (ALDERLAKE_S) [09:36:10] [PASSED] 0x4692 (ALDERLAKE_S) [09:36:10] [PASSED] 0x4693 (ALDERLAKE_S) [09:36:10] [PASSED] 0x46A0 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46A1 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46A2 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46A3 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46A6 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46A8 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46AA (ALDERLAKE_P) [09:36:10] [PASSED] 0x462A (ALDERLAKE_P) [09:36:10] [PASSED] 0x4626 (ALDERLAKE_P) [09:36:10] [PASSED] 0x4628 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46B0 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46B1 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46B2 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46B3 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46C0 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46C1 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46C2 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46C3 (ALDERLAKE_P) [09:36:10] [PASSED] 0x46D0 (ALDERLAKE_N) [09:36:10] [PASSED] 0x46D1 (ALDERLAKE_N) [09:36:10] [PASSED] 0x46D2 (ALDERLAKE_N) [09:36:10] [PASSED] 0x46D3 (ALDERLAKE_N) [09:36:10] [PASSED] 0x46D4 (ALDERLAKE_N) [09:36:10] [PASSED] 0xA721 (ALDERLAKE_P) [09:36:10] [PASSED] 0xA7A1 (ALDERLAKE_P) [09:36:10] [PASSED] 0xA7A9 (ALDERLAKE_P) [09:36:10] [PASSED] 0xA7AC (ALDERLAKE_P) [09:36:10] [PASSED] 0xA7AD (ALDERLAKE_P) [09:36:10] [PASSED] 0xA720 (ALDERLAKE_P) [09:36:10] [PASSED] 0xA7A0 (ALDERLAKE_P) [09:36:10] [PASSED] 0xA7A8 (ALDERLAKE_P) [09:36:10] [PASSED] 0xA7AA (ALDERLAKE_P) [09:36:10] [PASSED] 0xA7AB (ALDERLAKE_P) [09:36:10] [PASSED] 0xA780 (ALDERLAKE_S) [09:36:10] [PASSED] 0xA781 (ALDERLAKE_S) [09:36:10] [PASSED] 0xA782 (ALDERLAKE_S) [09:36:10] [PASSED] 0xA783 (ALDERLAKE_S) [09:36:10] [PASSED] 0xA788 (ALDERLAKE_S) [09:36:10] [PASSED] 0xA789 (ALDERLAKE_S) [09:36:10] [PASSED] 0xA78A (ALDERLAKE_S) [09:36:10] [PASSED] 0xA78B (ALDERLAKE_S) [09:36:10] [PASSED] 0x4905 (DG1) [09:36:10] [PASSED] 0x4906 (DG1) [09:36:10] [PASSED] 0x4907 (DG1) [09:36:10] [PASSED] 0x4908 (DG1) [09:36:10] [PASSED] 0x4909 (DG1) [09:36:10] [PASSED] 0x56C0 (DG2) [09:36:10] [PASSED] 0x56C2 (DG2) [09:36:10] [PASSED] 0x56C1 (DG2) [09:36:10] [PASSED] 0x7D51 (METEORLAKE) [09:36:10] [PASSED] 0x7DD1 (METEORLAKE) [09:36:10] [PASSED] 0x7D41 (METEORLAKE) [09:36:10] [PASSED] 0x7D67 (METEORLAKE) [09:36:10] [PASSED] 0xB640 (METEORLAKE) [09:36:10] [PASSED] 0x56A0 (DG2) [09:36:10] [PASSED] 0x56A1 (DG2) [09:36:10] [PASSED] 0x56A2 (DG2) [09:36:10] [PASSED] 0x56BE (DG2) [09:36:10] [PASSED] 0x56BF (DG2) [09:36:10] [PASSED] 0x5690 (DG2) [09:36:10] [PASSED] 0x5691 (DG2) [09:36:10] [PASSED] 0x5692 (DG2) [09:36:10] [PASSED] 0x56A5 (DG2) [09:36:10] [PASSED] 0x56A6 (DG2) [09:36:10] [PASSED] 0x56B0 (DG2) [09:36:10] [PASSED] 0x56B1 (DG2) [09:36:10] [PASSED] 0x56BA (DG2) [09:36:10] [PASSED] 0x56BB (DG2) [09:36:10] [PASSED] 0x56BC (DG2) [09:36:10] [PASSED] 0x56BD (DG2) [09:36:10] [PASSED] 0x5693 (DG2) [09:36:10] [PASSED] 0x5694 (DG2) [09:36:10] [PASSED] 0x5695 (DG2) [09:36:10] [PASSED] 0x56A3 (DG2) [09:36:10] [PASSED] 0x56A4 (DG2) [09:36:10] [PASSED] 0x56B2 (DG2) [09:36:10] [PASSED] 0x56B3 (DG2) [09:36:10] [PASSED] 0x5696 (DG2) [09:36:10] [PASSED] 0x5697 (DG2) [09:36:10] [PASSED] 0xB69 (PVC) [09:36:10] [PASSED] 0xB6E (PVC) [09:36:10] [PASSED] 0xBD4 (PVC) [09:36:10] [PASSED] 0xBD5 (PVC) [09:36:10] [PASSED] 0xBD6 (PVC) [09:36:10] [PASSED] 0xBD7 (PVC) [09:36:10] [PASSED] 0xBD8 (PVC) [09:36:10] [PASSED] 0xBD9 (PVC) [09:36:10] [PASSED] 0xBDA (PVC) [09:36:10] [PASSED] 0xBDB (PVC) [09:36:10] [PASSED] 0xBE0 (PVC) [09:36:10] [PASSED] 0xBE1 (PVC) [09:36:10] [PASSED] 0xBE5 (PVC) [09:36:10] [PASSED] 0x7D40 (METEORLAKE) [09:36:10] [PASSED] 0x7D45 (METEORLAKE) [09:36:10] [PASSED] 0x7D55 (METEORLAKE) [09:36:10] [PASSED] 0x7D60 (METEORLAKE) [09:36:10] [PASSED] 0x7DD5 (METEORLAKE) [09:36:10] [PASSED] 0x6420 (LUNARLAKE) [09:36:10] [PASSED] 0x64A0 (LUNARLAKE) [09:36:10] [PASSED] 0x64B0 (LUNARLAKE) [09:36:10] [PASSED] 0xE202 (BATTLEMAGE) [09:36:10] [PASSED] 0xE209 (BATTLEMAGE) [09:36:10] [PASSED] 0xE20B (BATTLEMAGE) [09:36:10] [PASSED] 0xE20C (BATTLEMAGE) [09:36:10] [PASSED] 0xE20D (BATTLEMAGE) [09:36:10] [PASSED] 0xE210 (BATTLEMAGE) [09:36:10] [PASSED] 0xE211 (BATTLEMAGE) [09:36:10] [PASSED] 0xE212 (BATTLEMAGE) [09:36:10] [PASSED] 0xE216 (BATTLEMAGE) [09:36:10] [PASSED] 0xE220 (BATTLEMAGE) [09:36:10] [PASSED] 0xE221 (BATTLEMAGE) [09:36:10] [PASSED] 0xE222 (BATTLEMAGE) [09:36:10] [PASSED] 0xE223 (BATTLEMAGE) [09:36:10] [PASSED] 0xB080 (PANTHERLAKE) [09:36:10] [PASSED] 0xB081 (PANTHERLAKE) [09:36:10] [PASSED] 0xB082 (PANTHERLAKE) [09:36:10] [PASSED] 0xB083 (PANTHERLAKE) [09:36:10] [PASSED] 0xB084 (PANTHERLAKE) [09:36:10] [PASSED] 0xB085 (PANTHERLAKE) [09:36:10] [PASSED] 0xB086 (PANTHERLAKE) [09:36:10] [PASSED] 0xB087 (PANTHERLAKE) [09:36:10] [PASSED] 0xB08F (PANTHERLAKE) [09:36:10] [PASSED] 0xB090 (PANTHERLAKE) [09:36:10] [PASSED] 0xB0A0 (PANTHERLAKE) [09:36:10] [PASSED] 0xB0B0 (PANTHERLAKE) [09:36:10] [PASSED] 0xFD80 (PANTHERLAKE) [09:36:10] [PASSED] 0xFD81 (PANTHERLAKE) [09:36:10] [PASSED] 0xD740 (NOVALAKE_S) [09:36:10] [PASSED] 0xD741 (NOVALAKE_S) [09:36:10] [PASSED] 0xD742 (NOVALAKE_S) [09:36:10] [PASSED] 0xD743 (NOVALAKE_S) [09:36:10] [PASSED] 0xD745 (NOVALAKE_S) [09:36:10] [PASSED] 0xD74A (NOVALAKE_S) [09:36:10] [PASSED] 0xD74B (NOVALAKE_S) [09:36:10] [PASSED] 0x674C (CRESCENTISLAND) [09:36:10] [PASSED] 0x674D (CRESCENTISLAND) [09:36:10] [PASSED] 0x674E (CRESCENTISLAND) [09:36:10] [PASSED] 0x674F (CRESCENTISLAND) [09:36:10] [PASSED] 0x6750 (CRESCENTISLAND) [09:36:10] [PASSED] 0xD750 (NOVALAKE_P) [09:36:10] [PASSED] 0xD751 (NOVALAKE_P) [09:36:10] [PASSED] 0xD752 (NOVALAKE_P) [09:36:10] [PASSED] 0xD753 (NOVALAKE_P) [09:36:10] [PASSED] 0xD754 (NOVALAKE_P) [09:36:10] [PASSED] 0xD755 (NOVALAKE_P) [09:36:10] [PASSED] 0xD756 (NOVALAKE_P) [09:36:10] [PASSED] 0xD757 (NOVALAKE_P) [09:36:10] [PASSED] 0xD75F (NOVALAKE_P) [09:36:10] =============== [PASSED] check_platform_desc =============== [09:36:10] ===================== [PASSED] xe_pci ====================== [09:36:10] ============= xe_rtp_tables_test (5 subtests) ============== [09:36:10] ================== xe_rtp_table_gt_test =================== [09:36:10] [PASSED] gt_was/14011060649 [09:36:10] [PASSED] gt_was/14011059788 [09:36:10] [PASSED] gt_was/14015795083 [09:36:10] [PASSED] gt_was/16021867713 [09:36:10] [PASSED] gt_was/14019449301 [09:36:10] [PASSED] gt_was/16028005424 [09:36:10] [PASSED] gt_was/14026578760 [09:36:10] [PASSED] gt_was/1409420604 [09:36:10] [PASSED] gt_was/1408615072 [09:36:10] [PASSED] gt_was/22010523718 [09:36:10] [PASSED] gt_was/14011006942 [09:36:10] [PASSED] gt_was/14014830051 [09:36:10] [PASSED] gt_was/18018781329 [09:36:10] [PASSED] gt_was/1509235366 [09:36:10] [PASSED] gt_was/18018781329 [09:36:10] [PASSED] gt_was/16016694945 [09:36:10] [PASSED] gt_was/14018575942 [09:36:10] [PASSED] gt_was/22016670082 [09:36:10] [PASSED] gt_was/22016670082 [09:36:10] [PASSED] gt_was/14017421178 [09:36:10] [PASSED] gt_was/16025250150 [09:36:10] [PASSED] gt_was/14021871409 [09:36:10] [PASSED] gt_was/16021865536 [09:36:10] [PASSED] gt_was/14021486841 [09:36:10] [PASSED] gt_was/14025160223 [09:36:10] [PASSED] gt_was/14026144927, 16029437861, 14026127056 [09:36:10] [PASSED] gt_was/14025635424 [09:36:10] [PASSED] gt_was/16028005424 [09:36:10] ============== [PASSED] xe_rtp_table_gt_test =============== [09:36:10] ================== xe_rtp_table_gt_test =================== [09:36:10] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable [09:36:10] [PASSED] gt_tunings/Tuning: 32B Access Enable [09:36:10] [PASSED] gt_tunings/Tuning: L3 cache [09:36:10] [PASSED] gt_tunings/Tuning: L3 cache - media [09:36:10] [PASSED] gt_tunings/Tuning: Compression Overfetch [09:36:10] [PASSED] gt_tunings/Tuning: Compression Overfetch - media [09:36:10] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 [09:36:10] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media [09:36:10] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only [09:36:10] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media [09:36:10] [PASSED] gt_tunings/Tuning: Stateless compression control [09:36:10] [PASSED] gt_tunings/Tuning: Stateless compression control - media [09:36:10] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache [09:36:10] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media [09:36:10] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB [09:36:10] ============== [PASSED] xe_rtp_table_gt_test =============== [09:36:10] ================== xe_rtp_table_oob_test ================== [09:36:10] [PASSED] oob_was/1607983814 [09:36:10] [PASSED] oob_was/16010904313 [09:36:10] [PASSED] oob_was/18022495364 [09:36:10] [PASSED] oob_was/22012773006 [09:36:10] [PASSED] oob_was/14014475959 [09:36:10] [PASSED] oob_was/22011391025 [09:36:10] [PASSED] oob_was/22012727170 [09:36:10] [PASSED] oob_was/22012727685 [09:36:10] [PASSED] oob_was/22016596838 [09:36:10] [PASSED] oob_was/18020744125 [09:36:10] [PASSED] oob_was/1409600907 [09:36:10] [PASSED] oob_was/22014953428 [09:36:10] [PASSED] oob_was/16017236439 [09:36:10] [PASSED] oob_was/14019821291 [09:36:10] [PASSED] oob_was/14015076503 [09:36:10] [PASSED] oob_was/14018913170 [09:36:10] [PASSED] oob_was/14018094691 [09:36:10] [PASSED] oob_was/18024947630 [09:36:10] [PASSED] oob_was/16022287689 [09:36:10] [PASSED] oob_was/13011645652 [09:36:10] [PASSED] oob_was/14022293748 [09:36:10] [PASSED] oob_was/22019794406 [09:36:10] [PASSED] oob_was/22019338487 [09:36:10] [PASSED] oob_was/16023588340 [09:36:10] [PASSED] oob_was/14019789679 [09:36:10] [PASSED] oob_was/14022866841 [09:36:10] [PASSED] oob_was/16021333562 [09:36:10] [PASSED] oob_was/14016712196 [09:36:10] [PASSED] oob_was/14015568240 [09:36:10] [PASSED] oob_was/18013179988 [09:36:10] [PASSED] oob_was/1508761755 [09:36:10] [PASSED] oob_was/16023105232 [09:36:10] [PASSED] oob_was/16026508708 [09:36:10] [PASSED] oob_was/14020001231 [09:36:10] [PASSED] oob_was/16023683509 [09:36:10] [PASSED] oob_was/14025515070 [09:36:10] [PASSED] oob_was/15015404425_disable [09:36:10] [PASSED] oob_was/16026007364 [09:36:10] [PASSED] oob_was/14020316580 [09:36:10] [PASSED] oob_was/14025883347 [09:36:10] [PASSED] oob_was/16029380221 [09:36:10] [PASSED] oob_was/22022079272 [09:36:10] [PASSED] oob_was/16029897822 [09:36:10] [PASSED] oob_was/14027054324 [09:36:10] ============== [PASSED] xe_rtp_table_oob_test ============== [09:36:10] ================ xe_rtp_table_dev_oob_test ================ [09:36:10] [PASSED] device_oob_was/22010954014 [09:36:10] [PASSED] device_oob_was/15015404425 [09:36:10] [PASSED] device_oob_was/22019338487_display [09:36:10] [PASSED] device_oob_was/14022085890 [09:36:10] [PASSED] device_oob_was/14026539277 [09:36:10] [PASSED] device_oob_was/14026633728 [09:36:10] [PASSED] device_oob_was/14026746987 [09:36:10] [PASSED] device_oob_was/14026779378 [09:36:10] ============ [PASSED] xe_rtp_table_dev_oob_test ============ [09:36:10] ========== xe_rtp_table_missing_upper_bound_test ========== [09:36:10] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865 [09:36:10] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037 [09:36:10] [PASSED] register_whitelist/1806527549 [09:36:10] [PASSED] register_whitelist/allow_read_ctx_timestamp [09:36:10] [PASSED] register_whitelist/allow_read_queue_timestamp [09:36:10] [PASSED] register_whitelist/16014440446 [09:36:10] [PASSED] register_whitelist/16017236439 [09:36:10] [PASSED] register_whitelist/16020183090 [09:36:10] [PASSED] register_whitelist/14024997852 [09:36:10] [PASSED] register_whitelist/14024997852 [09:36:10] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ====== [09:36:10] =============== [PASSED] xe_rtp_tables_test ================ [09:36:10] =================== xe_rtp (3 subtests) ==================== [09:36:10] =================== xe_rtp_rules_tests ==================== [09:36:10] [PASSED] no [09:36:10] [PASSED] yes [09:36:10] [PASSED] no-and-no [09:36:10] [PASSED] no-and-yes [09:36:10] [PASSED] yes-and-no [09:36:10] [PASSED] yes-and-yes [09:36:10] [PASSED] no-or-no [09:36:10] [PASSED] no-or-yes [09:36:10] [PASSED] yes-or-no [09:36:10] [PASSED] yes-or-yes [09:36:10] [PASSED] no-yes-or-yes-no [09:36:10] [PASSED] no-yes-or-yes-yes [09:36:10] [PASSED] yes-yes-or-no-yes [09:36:10] [PASSED] yes-yes-or-yes-yes [09:36:10] [PASSED] no-no-or-yes-or-no [09:36:10] [PASSED] or [09:36:10] [PASSED] or-yes [09:36:10] [PASSED] or-no [09:36:10] [PASSED] yes-or [09:36:10] [PASSED] no-or [09:36:10] [PASSED] no-or-or-yes [09:36:10] [PASSED] yes-or-or-no [09:36:10] [PASSED] no-or-or-no [09:36:10] [PASSED] missing-context-engine-class [09:36:10] [PASSED] missing-context-engine-class-or-yes [09:36:10] [PASSED] missing-context-engine-class-or-or-yes [09:36:10] =============== [PASSED] xe_rtp_rules_tests ================ [09:36:10] =============== xe_rtp_process_to_sr_tests ================ [09:36:10] [PASSED] coalesce-same-reg [09:36:10] [PASSED] coalesce-same-reg-literal-and-func [09:36:10] [PASSED] no-match-no-add [09:36:10] [PASSED] two-regs-two-entries [09:36:10] [PASSED] clr-one-set-other [09:36:10] [PASSED] set-field [09:36:10] [PASSED] conflict-duplicate [09:36:10] [PASSED] conflict-not-disjoint [09:36:10] [PASSED] conflict-not-disjoint-literal-and-func [09:36:10] [PASSED] conflict-reg-type [09:36:10] [PASSED] bad-mcr-reg-forced-to-regular [09:36:10] [PASSED] bad-regular-reg-forced-to-mcr [09:36:10] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [09:36:10] ================== xe_rtp_process_tests =================== [09:36:10] [PASSED] active1 [09:36:10] [PASSED] active2 [09:36:10] [PASSED] active-inactive [09:36:10] [PASSED] inactive-active [09:36:10] [PASSED] inactive-active-inactive [09:36:10] [PASSED] inactive-inactive-inactive [09:36:10] ============== [PASSED] xe_rtp_process_tests =============== [09:36:10] ===================== [PASSED] xe_rtp ====================== [09:36:10] ==================== xe_wa (1 subtest) ===================== [09:36:10] ======================== xe_wa_gt ========================= [09:36:10] [PASSED] TIGERLAKE B0 [09:36:10] [PASSED] DG1 A0 [09:36:10] [PASSED] DG1 B0 [09:36:10] [PASSED] ALDERLAKE_S A0 [09:36:10] [PASSED] ALDERLAKE_S B0 [09:36:10] [PASSED] ALDERLAKE_S C0 [09:36:10] [PASSED] ALDERLAKE_S D0 [09:36:10] [PASSED] ALDERLAKE_P A0 [09:36:10] [PASSED] ALDERLAKE_P B0 [09:36:10] [PASSED] ALDERLAKE_P C0 [09:36:10] [PASSED] ALDERLAKE_S RPLS D0 [09:36:10] [PASSED] ALDERLAKE_P RPLU E0 [09:36:10] [PASSED] DG2 G10 C0 [09:36:10] [PASSED] DG2 G11 B1 [09:36:10] [PASSED] DG2 G12 A1 [09:36:10] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [09:36:10] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [09:36:10] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [09:36:10] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [09:36:10] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [09:36:10] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [09:36:10] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [09:36:10] ==================== [PASSED] xe_wa_gt ===================== [09:36:10] ====================== [PASSED] xe_wa ====================== [09:36:10] ============================================================ [09:36:10] Testing complete. Ran 793 tests: passed: 765, skipped: 28 [09:36:10] Elapsed time: 36.255s total, 1.773s configuring, 33.766s building, 0.706s running + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/gpu/drm/tests/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [09:36:10] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [09:36:12] 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 [09:36:37] Starting KUnit Kernel (1/1)... [09:36:37] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [09:36:37] ============= refcount_interrupt (4 subtests) ============== [09:36:37] [PASSED] test_single_irq_change [09:36:37] [PASSED] test_nested_irq_change [09:36:37] [PASSED] test_multiple_irq_change [09:36:37] [PASSED] test_irq_save [09:36:37] =============== [PASSED] refcount_interrupt ================ [09:36:37] ============ drm_test_pick_cmdline (2 subtests) ============ [09:36:37] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [09:36:37] =============== drm_test_pick_cmdline_named =============== [09:36:37] [PASSED] NTSC [09:36:37] [PASSED] NTSC-J [09:36:37] [PASSED] PAL [09:36:37] [PASSED] PAL-M [09:36:37] =========== [PASSED] drm_test_pick_cmdline_named =========== [09:36:37] ============== [PASSED] drm_test_pick_cmdline ============== [09:36:37] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [09:36:37] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [09:36:37] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [09:36:37] =========== drm_validate_clone_mode (2 subtests) =========== [09:36:37] ============== drm_test_check_in_clone_mode =============== [09:36:37] [PASSED] in_clone_mode [09:36:37] [PASSED] not_in_clone_mode [09:36:37] ========== [PASSED] drm_test_check_in_clone_mode =========== [09:36:37] =============== drm_test_check_valid_clones =============== [09:36:37] [PASSED] not_in_clone_mode [09:36:37] [PASSED] valid_clone [09:36:37] [PASSED] invalid_clone [09:36:37] =========== [PASSED] drm_test_check_valid_clones =========== [09:36:37] ============= [PASSED] drm_validate_clone_mode ============= [09:36:37] ============= drm_validate_modeset (1 subtest) ============= [09:36:37] [PASSED] drm_test_check_connector_changed_modeset [09:36:37] ============== [PASSED] drm_validate_modeset =============== [09:36:37] ====== drm_test_bridge_get_current_state (1 subtest) ======= [09:36:37] [PASSED] drm_test_drm_bridge_get_current_state_atomic [09:36:37] ======== [PASSED] drm_test_bridge_get_current_state ======== [09:36:37] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [09:36:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [09:36:37] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [09:36:37] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts [09:36:37] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [09:36:37] ============== drm_bridge_alloc (2 subtests) =============== [09:36:37] [PASSED] drm_test_drm_bridge_alloc_basic [09:36:37] [PASSED] drm_test_drm_bridge_alloc_get_put [09:36:37] ================ [PASSED] drm_bridge_alloc ================= [09:36:37] ============= drm_bridge_bus_fmt (5 subtests) ============== [09:36:37] [PASSED] drm_test_bridge_rgb_yuv_rgb [09:36:37] [PASSED] drm_test_bridge_must_convert_to_yuv444 [09:36:37] [PASSED] drm_test_bridge_hdmi_auto_rgb [09:36:37] [PASSED] drm_test_bridge_auto_first [09:36:37] [PASSED] drm_test_bridge_rgb_yuv_no_path [09:36:37] =============== [PASSED] drm_bridge_bus_fmt ================ [09:36:37] ============= drm_cmdline_parser (40 subtests) ============= [09:36:37] [PASSED] drm_test_cmdline_force_d_only [09:36:37] [PASSED] drm_test_cmdline_force_D_only_dvi [09:36:37] [PASSED] drm_test_cmdline_force_D_only_hdmi [09:36:37] [PASSED] drm_test_cmdline_force_D_only_not_digital [09:36:37] [PASSED] drm_test_cmdline_force_e_only [09:36:37] [PASSED] drm_test_cmdline_res [09:36:37] [PASSED] drm_test_cmdline_res_vesa [09:36:37] [PASSED] drm_test_cmdline_res_vesa_rblank [09:36:37] [PASSED] drm_test_cmdline_res_rblank [09:36:37] [PASSED] drm_test_cmdline_res_bpp [09:36:37] [PASSED] drm_test_cmdline_res_refresh [09:36:37] [PASSED] drm_test_cmdline_res_bpp_refresh [09:36:37] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [09:36:37] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [09:36:37] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [09:36:37] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [09:36:37] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [09:36:37] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [09:36:37] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [09:36:37] [PASSED] drm_test_cmdline_res_margins_force_on [09:36:37] [PASSED] drm_test_cmdline_res_vesa_margins [09:36:37] [PASSED] drm_test_cmdline_name [09:36:37] [PASSED] drm_test_cmdline_name_bpp [09:36:37] [PASSED] drm_test_cmdline_name_option [09:36:37] [PASSED] drm_test_cmdline_name_bpp_option [09:36:37] [PASSED] drm_test_cmdline_rotate_0 [09:36:37] [PASSED] drm_test_cmdline_rotate_90 [09:36:37] [PASSED] drm_test_cmdline_rotate_180 [09:36:37] [PASSED] drm_test_cmdline_rotate_270 [09:36:37] [PASSED] drm_test_cmdline_hmirror [09:36:37] [PASSED] drm_test_cmdline_vmirror [09:36:37] [PASSED] drm_test_cmdline_margin_options [09:36:37] [PASSED] drm_test_cmdline_multiple_options [09:36:37] [PASSED] drm_test_cmdline_bpp_extra_and_option [09:36:37] [PASSED] drm_test_cmdline_extra_and_option [09:36:37] [PASSED] drm_test_cmdline_freestanding_options [09:36:37] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [09:36:37] [PASSED] drm_test_cmdline_panel_orientation [09:36:37] ================ drm_test_cmdline_invalid ================= [09:36:37] [PASSED] margin_only [09:36:37] [PASSED] interlace_only [09:36:37] [PASSED] res_missing_x [09:36:37] [PASSED] res_missing_y [09:36:37] [PASSED] res_bad_y [09:36:37] [PASSED] res_missing_y_bpp [09:36:37] [PASSED] res_bad_bpp [09:36:37] [PASSED] res_bad_refresh [09:36:37] [PASSED] res_bpp_refresh_force_on_off [09:36:37] [PASSED] res_invalid_mode [09:36:37] [PASSED] res_bpp_wrong_place_mode [09:36:37] [PASSED] name_bpp_refresh [09:36:37] [PASSED] name_refresh [09:36:37] [PASSED] name_refresh_wrong_mode [09:36:37] [PASSED] name_refresh_invalid_mode [09:36:37] [PASSED] rotate_multiple [09:36:37] [PASSED] rotate_invalid_val [09:36:37] [PASSED] rotate_truncated [09:36:37] [PASSED] invalid_option [09:36:37] [PASSED] invalid_tv_option [09:36:37] [PASSED] truncated_tv_option [09:36:37] ============ [PASSED] drm_test_cmdline_invalid ============= [09:36:37] =============== drm_test_cmdline_tv_options =============== [09:36:37] [PASSED] NTSC [09:36:37] [PASSED] NTSC_443 [09:36:37] [PASSED] NTSC_J [09:36:37] [PASSED] PAL [09:36:37] [PASSED] PAL_M [09:36:37] [PASSED] PAL_N [09:36:37] [PASSED] SECAM [09:36:37] [PASSED] MONO_525 [09:36:37] [PASSED] MONO_625 [09:36:37] =========== [PASSED] drm_test_cmdline_tv_options =========== [09:36:37] =============== [PASSED] drm_cmdline_parser ================ [09:36:37] ========== drmm_connector_hdmi_init (20 subtests) ========== [09:36:37] [PASSED] drm_test_connector_hdmi_init_valid [09:36:37] [PASSED] drm_test_connector_hdmi_init_bpc_8 [09:36:37] [PASSED] drm_test_connector_hdmi_init_bpc_10 [09:36:37] [PASSED] drm_test_connector_hdmi_init_bpc_12 [09:36:37] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [09:36:37] [PASSED] drm_test_connector_hdmi_init_bpc_null [09:36:37] [PASSED] drm_test_connector_hdmi_init_formats_empty [09:36:37] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [09:36:37] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [09:36:37] [PASSED] supported_formats=0x9 yuv420_allowed=1 [09:36:37] [PASSED] supported_formats=0x9 yuv420_allowed=0 [09:36:37] [PASSED] supported_formats=0x5 yuv420_allowed=1 [09:36:37] [PASSED] supported_formats=0x5 yuv420_allowed=0 [09:36:37] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [09:36:37] [PASSED] drm_test_connector_hdmi_init_null_ddc [09:36:37] [PASSED] drm_test_connector_hdmi_init_null_product [09:36:37] [PASSED] drm_test_connector_hdmi_init_null_vendor [09:36:37] [PASSED] drm_test_connector_hdmi_init_product_length_exact [09:36:37] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [09:36:37] [PASSED] drm_test_connector_hdmi_init_product_valid [09:36:37] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [09:36:37] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [09:36:37] [PASSED] drm_test_connector_hdmi_init_vendor_valid [09:36:37] ========= drm_test_connector_hdmi_init_type_valid ========= [09:36:37] [PASSED] HDMI-A [09:36:37] [PASSED] HDMI-B [09:36:37] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [09:36:37] ======== drm_test_connector_hdmi_init_type_invalid ======== [09:36:37] [PASSED] Unknown [09:36:37] [PASSED] VGA [09:36:37] [PASSED] DVI-I [09:36:37] [PASSED] DVI-D [09:36:37] [PASSED] DVI-A [09:36:37] [PASSED] Composite [09:36:37] [PASSED] SVIDEO [09:36:37] [PASSED] LVDS [09:36:37] [PASSED] Component [09:36:37] [PASSED] DIN [09:36:37] [PASSED] DP [09:36:37] [PASSED] TV [09:36:37] [PASSED] eDP [09:36:37] [PASSED] Virtual [09:36:37] [PASSED] DSI [09:36:37] [PASSED] DPI [09:36:37] [PASSED] Writeback [09:36:37] [PASSED] SPI [09:36:37] [PASSED] USB [09:36:37] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [09:36:37] ============ [PASSED] drmm_connector_hdmi_init ============= [09:36:37] ============= drmm_connector_init (3 subtests) ============= [09:36:37] [PASSED] drm_test_drmm_connector_init [09:36:37] [PASSED] drm_test_drmm_connector_init_null_ddc [09:36:37] ========= drm_test_drmm_connector_init_type_valid ========= [09:36:37] [PASSED] Unknown [09:36:37] [PASSED] VGA [09:36:37] [PASSED] DVI-I [09:36:37] [PASSED] DVI-D [09:36:37] [PASSED] DVI-A [09:36:37] [PASSED] Composite [09:36:37] [PASSED] SVIDEO [09:36:37] [PASSED] LVDS [09:36:37] [PASSED] Component [09:36:37] [PASSED] DIN [09:36:37] [PASSED] DP [09:36:37] [PASSED] HDMI-A [09:36:37] [PASSED] HDMI-B [09:36:37] [PASSED] TV [09:36:37] [PASSED] eDP [09:36:37] [PASSED] Virtual [09:36:37] [PASSED] DSI [09:36:37] [PASSED] DPI [09:36:37] [PASSED] Writeback [09:36:37] [PASSED] SPI [09:36:37] [PASSED] USB [09:36:37] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [09:36:37] =============== [PASSED] drmm_connector_init =============== [09:36:37] ========= drm_connector_dynamic_init (6 subtests) ========== [09:36:37] [PASSED] drm_test_drm_connector_dynamic_init [09:36:37] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [09:36:37] [PASSED] drm_test_drm_connector_dynamic_init_not_added [09:36:37] [PASSED] drm_test_drm_connector_dynamic_init_properties [09:36:37] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [09:36:37] [PASSED] Unknown [09:36:37] [PASSED] VGA [09:36:37] [PASSED] DVI-I [09:36:37] [PASSED] DVI-D [09:36:37] [PASSED] DVI-A [09:36:37] [PASSED] Composite [09:36:37] [PASSED] SVIDEO [09:36:37] [PASSED] LVDS [09:36:37] [PASSED] Component [09:36:37] [PASSED] DIN [09:36:37] [PASSED] DP [09:36:37] [PASSED] HDMI-A [09:36:37] [PASSED] HDMI-B [09:36:37] [PASSED] TV [09:36:37] [PASSED] eDP [09:36:37] [PASSED] Virtual [09:36:37] [PASSED] DSI [09:36:37] [PASSED] DPI [09:36:37] [PASSED] Writeback [09:36:37] [PASSED] SPI [09:36:37] [PASSED] USB [09:36:37] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [09:36:37] ======== drm_test_drm_connector_dynamic_init_name ========= [09:36:37] [PASSED] Unknown [09:36:37] [PASSED] VGA [09:36:37] [PASSED] DVI-I [09:36:37] [PASSED] DVI-D [09:36:37] [PASSED] DVI-A [09:36:37] [PASSED] Composite [09:36:37] [PASSED] SVIDEO [09:36:37] [PASSED] LVDS [09:36:37] [PASSED] Component [09:36:37] [PASSED] DIN [09:36:37] [PASSED] DP [09:36:37] [PASSED] HDMI-A [09:36:37] [PASSED] HDMI-B [09:36:37] [PASSED] TV [09:36:37] [PASSED] eDP [09:36:37] [PASSED] Virtual [09:36:37] [PASSED] DSI [09:36:37] [PASSED] DPI [09:36:37] [PASSED] Writeback [09:36:37] [PASSED] SPI [09:36:37] [PASSED] USB [09:36:37] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [09:36:37] =========== [PASSED] drm_connector_dynamic_init ============ [09:36:37] ==== drm_connector_dynamic_register_early (4 subtests) ===== [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [09:36:37] ====== [PASSED] drm_connector_dynamic_register_early ======= [09:36:37] ======= drm_connector_dynamic_register (7 subtests) ======== [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_on_list [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_no_init [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [09:36:37] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [09:36:37] ========= [PASSED] drm_connector_dynamic_register ========== [09:36:37] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [09:36:37] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [09:36:37] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [09:36:37] === [PASSED] drm_connector_attach_broadcast_rgb_property === [09:36:37] ========== drm_get_tv_mode_from_name (2 subtests) ========== [09:36:37] ========== drm_test_get_tv_mode_from_name_valid =========== [09:36:37] [PASSED] NTSC [09:36:37] [PASSED] NTSC-443 [09:36:37] [PASSED] NTSC-J [09:36:37] [PASSED] PAL [09:36:37] [PASSED] PAL-M [09:36:37] [PASSED] PAL-N [09:36:37] [PASSED] SECAM [09:36:37] [PASSED] Mono [09:36:37] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [09:36:37] [PASSED] drm_test_get_tv_mode_from_name_truncated [09:36:37] ============ [PASSED] drm_get_tv_mode_from_name ============ [09:36:37] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [09:36:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [09:36:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [09:36:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [09:36:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [09:36:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [09:36:37] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [09:36:37] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [09:36:37] [PASSED] VIC 96 [09:36:37] [PASSED] VIC 97 [09:36:37] [PASSED] VIC 101 [09:36:37] [PASSED] VIC 102 [09:36:37] [PASSED] VIC 106 [09:36:37] [PASSED] VIC 107 [09:36:37] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [09:36:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [09:36:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [09:36:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [09:36:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [09:36:37] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [09:36:37] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [09:36:37] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [09:36:37] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [09:36:37] [PASSED] Automatic [09:36:37] [PASSED] Full [09:36:37] [PASSED] Limited 16:235 [09:36:37] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [09:36:37] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [09:36:37] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [09:36:37] == drm_hdmi_connector_get_output_format_name (2 subtests) == [09:36:37] === drm_test_drm_hdmi_connector_get_output_format_name ==== [09:36:37] [PASSED] RGB [09:36:37] [PASSED] YUV 4:2:0 [09:36:37] [PASSED] YUV 4:2:2 [09:36:37] [PASSED] YUV 4:4:4 [09:36:37] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [09:36:37] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [09:36:37] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [09:36:37] ============= drm_damage_helper (21 subtests) ============== [09:36:37] [PASSED] drm_test_damage_iter_no_damage [09:36:37] [PASSED] drm_test_damage_iter_no_damage_fractional_src [09:36:37] [PASSED] drm_test_damage_iter_no_damage_src_moved [09:36:37] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [09:36:37] [PASSED] drm_test_damage_iter_no_damage_not_visible [09:36:37] [PASSED] drm_test_damage_iter_no_damage_no_crtc [09:36:37] [PASSED] drm_test_damage_iter_no_damage_no_fb [09:36:37] [PASSED] drm_test_damage_iter_simple_damage [09:36:37] [PASSED] drm_test_damage_iter_single_damage [09:36:37] [PASSED] drm_test_damage_iter_single_damage_intersect_src [09:36:37] [PASSED] drm_test_damage_iter_single_damage_outside_src [09:36:37] [PASSED] drm_test_damage_iter_single_damage_fractional_src [09:36:37] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [09:36:37] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [09:36:37] [PASSED] drm_test_damage_iter_single_damage_src_moved [09:36:37] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [09:36:37] [PASSED] drm_test_damage_iter_damage [09:36:37] [PASSED] drm_test_damage_iter_damage_one_intersect [09:36:37] [PASSED] drm_test_damage_iter_damage_one_outside [09:36:37] [PASSED] drm_test_damage_iter_damage_src_moved [09:36:37] [PASSED] drm_test_damage_iter_damage_not_visible [09:36:37] ================ [PASSED] drm_damage_helper ================ [09:36:37] ============== drm_dp_mst_helper (3 subtests) ============== [09:36:37] ============== drm_test_dp_mst_calc_pbn_mode ============== [09:36:37] [PASSED] Clock 154000 BPP 30 DSC disabled [09:36:37] [PASSED] Clock 234000 BPP 30 DSC disabled [09:36:37] [PASSED] Clock 297000 BPP 24 DSC disabled [09:36:37] [PASSED] Clock 332880 BPP 24 DSC enabled [09:36:37] [PASSED] Clock 324540 BPP 24 DSC enabled [09:36:37] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [09:36:37] ============== drm_test_dp_mst_calc_pbn_div =============== [09:36:37] [PASSED] Link rate 2000000 lane count 4 [09:36:37] [PASSED] Link rate 2000000 lane count 2 [09:36:37] [PASSED] Link rate 2000000 lane count 1 [09:36:37] [PASSED] Link rate 1350000 lane count 4 [09:36:37] [PASSED] Link rate 1350000 lane count 2 [09:36:37] [PASSED] Link rate 1350000 lane count 1 [09:36:37] [PASSED] Link rate 1000000 lane count 4 [09:36:37] [PASSED] Link rate 1000000 lane count 2 [09:36:37] [PASSED] Link rate 1000000 lane count 1 [09:36:37] [PASSED] Link rate 810000 lane count 4 [09:36:37] [PASSED] Link rate 810000 lane count 2 [09:36:37] [PASSED] Link rate 810000 lane count 1 [09:36:37] [PASSED] Link rate 540000 lane count 4 [09:36:37] [PASSED] Link rate 540000 lane count 2 [09:36:37] [PASSED] Link rate 540000 lane count 1 [09:36:37] [PASSED] Link rate 270000 lane count 4 [09:36:37] [PASSED] Link rate 270000 lane count 2 [09:36:37] [PASSED] Link rate 270000 lane count 1 [09:36:37] [PASSED] Link rate 162000 lane count 4 [09:36:37] [PASSED] Link rate 162000 lane count 2 [09:36:37] [PASSED] Link rate 162000 lane count 1 [09:36:37] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [09:36:37] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [09:36:37] [PASSED] DP_ENUM_PATH_RESOURCES with port number [09:36:37] [PASSED] DP_POWER_UP_PHY with port number [09:36:37] [PASSED] DP_POWER_DOWN_PHY with port number [09:36:37] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [09:36:37] [PASSED] DP_ALLOCATE_PAYLOAD with port number [09:36:37] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [09:36:37] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [09:36:37] [PASSED] DP_QUERY_PAYLOAD with port number [09:36:37] [PASSED] DP_QUERY_PAYLOAD with VCPI [09:36:37] [PASSED] DP_REMOTE_DPCD_READ with port number [09:36:37] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [09:36:37] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [09:36:37] [PASSED] DP_REMOTE_DPCD_WRITE with port number [09:36:37] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [09:36:37] [PASSED] DP_REMOTE_DPCD_WRITE with data array [09:36:37] [PASSED] DP_REMOTE_I2C_READ with port number [09:36:37] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [09:36:37] [PASSED] DP_REMOTE_I2C_READ with transactions array [09:36:37] [PASSED] DP_REMOTE_I2C_WRITE with port number [09:36:37] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [09:36:37] [PASSED] DP_REMOTE_I2C_WRITE with data array [09:36:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [09:36:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [09:36:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [09:36:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [09:36:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [09:36:37] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [09:36:37] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [09:36:37] ================ [PASSED] drm_dp_mst_helper ================ [09:36:37] ================== drm_exec (7 subtests) =================== [09:36:37] [PASSED] sanitycheck [09:36:37] [PASSED] test_lock [09:36:37] [PASSED] test_lock_unlock [09:36:37] [PASSED] test_duplicates [09:36:37] [PASSED] test_prepare [09:36:37] [PASSED] test_prepare_array [09:36:37] [PASSED] test_multiple_loops [09:36:37] ==================== [PASSED] drm_exec ===================== [09:36:37] =========== drm_format_helper_test (17 subtests) =========== [09:36:37] ============== drm_test_fb_xrgb8888_to_gray8 ============== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [09:36:37] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [09:36:37] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [09:36:37] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [09:36:37] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [09:36:37] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [09:36:37] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [09:36:37] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [09:36:37] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [09:36:37] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [09:36:37] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [09:36:37] ============== drm_test_fb_xrgb8888_to_mono =============== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [09:36:37] ==================== drm_test_fb_swab ===================== [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ================ [PASSED] drm_test_fb_swab ================= [09:36:37] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [09:36:37] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [09:36:37] [PASSED] single_pixel_source_buffer [09:36:37] [PASSED] single_pixel_clip_rectangle [09:36:37] [PASSED] well_known_colors [09:36:37] [PASSED] destination_pitch [09:36:37] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [09:36:37] ================= drm_test_fb_clip_offset ================= [09:36:37] [PASSED] pass through [09:36:37] [PASSED] horizontal offset [09:36:37] [PASSED] vertical offset [09:36:37] [PASSED] horizontal and vertical offset [09:36:37] [PASSED] horizontal offset (custom pitch) [09:36:37] [PASSED] vertical offset (custom pitch) [09:36:37] [PASSED] horizontal and vertical offset (custom pitch) [09:36:37] ============= [PASSED] drm_test_fb_clip_offset ============= [09:36:37] =================== drm_test_fb_memcpy ==================== [09:36:37] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [09:36:37] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [09:36:37] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [09:36:37] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [09:36:37] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [09:36:37] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [09:36:37] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [09:36:37] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [09:36:37] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [09:36:37] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [09:36:37] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [09:36:37] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [09:36:37] =============== [PASSED] drm_test_fb_memcpy ================ [09:36:37] ============= [PASSED] drm_format_helper_test ============== [09:36:37] ================= drm_format (18 subtests) ================= [09:36:37] [PASSED] drm_test_format_block_width_invalid [09:36:37] [PASSED] drm_test_format_block_width_one_plane [09:36:37] [PASSED] drm_test_format_block_width_two_plane [09:36:37] [PASSED] drm_test_format_block_width_three_plane [09:36:37] [PASSED] drm_test_format_block_width_tiled [09:36:37] [PASSED] drm_test_format_block_height_invalid [09:36:37] [PASSED] drm_test_format_block_height_one_plane [09:36:37] [PASSED] drm_test_format_block_height_two_plane [09:36:37] [PASSED] drm_test_format_block_height_three_plane [09:36:37] [PASSED] drm_test_format_block_height_tiled [09:36:37] [PASSED] drm_test_format_min_pitch_invalid [09:36:37] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [09:36:37] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [09:36:37] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [09:36:37] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [09:36:37] [PASSED] drm_test_format_min_pitch_two_plane [09:36:37] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [09:36:37] [PASSED] drm_test_format_min_pitch_tiled [09:36:37] =================== [PASSED] drm_format ==================== [09:36:37] ============== drm_framebuffer (10 subtests) =============== [09:36:37] ========== drm_test_framebuffer_check_src_coords ========== [09:36:37] [PASSED] Success: source fits into fb [09:36:37] [PASSED] Fail: overflowing fb with x-axis coordinate [09:36:37] [PASSED] Fail: overflowing fb with y-axis coordinate [09:36:37] [PASSED] Fail: overflowing fb with source width [09:36:37] [PASSED] Fail: overflowing fb with source height [09:36:37] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [09:36:37] [PASSED] drm_test_framebuffer_cleanup [09:36:37] =============== drm_test_framebuffer_create =============== [09:36:37] [PASSED] ABGR8888 normal sizes [09:36:37] [PASSED] ABGR8888 max sizes [09:36:37] [PASSED] ABGR8888 pitch greater than min required [09:36:37] [PASSED] ABGR8888 pitch less than min required [09:36:37] [PASSED] ABGR8888 Invalid width [09:36:37] [PASSED] ABGR8888 Invalid buffer handle [09:36:37] [PASSED] No pixel format [09:36:37] [PASSED] ABGR8888 Width 0 [09:36:37] [PASSED] ABGR8888 Height 0 [09:36:37] [PASSED] ABGR8888 Out of bound height * pitch combination [09:36:37] [PASSED] ABGR8888 Large buffer offset [09:36:37] [PASSED] ABGR8888 Buffer offset for inexistent plane [09:36:37] [PASSED] ABGR8888 Invalid flag [09:36:37] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [09:36:37] [PASSED] ABGR8888 Valid buffer modifier [09:36:37] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [09:36:37] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [09:36:37] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [09:36:37] [PASSED] NV12 Normal sizes [09:36:37] [PASSED] NV12 Max sizes [09:36:37] [PASSED] NV12 Invalid pitch [09:36:37] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [09:36:37] [PASSED] NV12 different modifier per-plane [09:36:37] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [09:36:37] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [09:36:37] [PASSED] NV12 Modifier for inexistent plane [09:36:37] [PASSED] NV12 Handle for inexistent plane [09:36:37] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [09:36:37] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [09:36:37] [PASSED] YVU420 Normal sizes [09:36:37] [PASSED] YVU420 Max sizes [09:36:37] [PASSED] YVU420 Invalid pitch [09:36:37] [PASSED] YVU420 Different pitches [09:36:37] [PASSED] YVU420 Different buffer offsets/pitches [09:36:37] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [09:36:37] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [09:36:37] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [09:36:37] [PASSED] YVU420 Valid modifier [09:36:37] [PASSED] YVU420 Different modifiers per plane [09:36:37] [PASSED] YVU420 Modifier for inexistent plane [09:36:37] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [09:36:37] [PASSED] X0L2 Normal sizes [09:36:37] [PASSED] X0L2 Max sizes [09:36:37] [PASSED] X0L2 Invalid pitch [09:36:37] [PASSED] X0L2 Pitch greater than minimum required [09:36:37] [PASSED] X0L2 Handle for inexistent plane [09:36:37] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [09:36:37] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [09:36:37] [PASSED] X0L2 Valid modifier [09:36:37] [PASSED] X0L2 Modifier for inexistent plane [09:36:37] =========== [PASSED] drm_test_framebuffer_create =========== [09:36:37] [PASSED] drm_test_framebuffer_free [09:36:37] [PASSED] drm_test_framebuffer_init [09:36:37] [PASSED] drm_test_framebuffer_init_bad_format [09:36:37] [PASSED] drm_test_framebuffer_init_dev_mismatch [09:36:37] [PASSED] drm_test_framebuffer_lookup [09:36:37] [PASSED] drm_test_framebuffer_lookup_inexistent [09:36:37] [PASSED] drm_test_framebuffer_modifiers_not_supported [09:36:37] ================= [PASSED] drm_framebuffer ================= [09:36:37] ================ drm_gem_shmem (8 subtests) ================ [09:36:37] [PASSED] drm_gem_shmem_test_obj_create [09:36:37] [PASSED] drm_gem_shmem_test_obj_create_private [09:36:37] [PASSED] drm_gem_shmem_test_pin_pages [09:36:37] [PASSED] drm_gem_shmem_test_vmap [09:36:37] [PASSED] drm_gem_shmem_test_get_sg_table [09:36:37] [PASSED] drm_gem_shmem_test_get_pages_sgt [09:36:37] [PASSED] drm_gem_shmem_test_madvise [09:36:37] [PASSED] drm_gem_shmem_test_purge [09:36:37] ================== [PASSED] drm_gem_shmem ================== [09:36:37] === drm_atomic_helper_connector_hdmi_check (29 subtests) === [09:36:37] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [09:36:37] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [09:36:37] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [09:36:37] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [09:36:37] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [09:36:37] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [09:36:37] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [09:36:37] [PASSED] Automatic [09:36:37] [PASSED] Full [09:36:37] [PASSED] Limited 16:235 [09:36:37] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [09:36:37] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [09:36:37] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [09:36:37] [PASSED] drm_test_check_disable_connector [09:36:37] [PASSED] drm_test_check_hdmi_funcs_reject_rate [09:36:37] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [09:36:37] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [09:36:37] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [09:36:37] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [09:36:37] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [09:36:37] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [09:36:37] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [09:36:37] [PASSED] drm_test_check_output_bpc_dvi [09:36:37] [PASSED] drm_test_check_output_bpc_format_vic_1 [09:36:37] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [09:36:37] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [09:36:37] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [09:36:37] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [09:36:37] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [09:36:37] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [09:36:37] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [09:36:37] ============ drm_test_check_hdmi_color_format ============= [09:36:37] [PASSED] AUTO -> RGB [09:36:37] [PASSED] YCBCR422 -> YUV422 [09:36:37] [PASSED] YCBCR420 -> YUV420 [09:36:37] [PASSED] YCBCR444 -> YUV444 [09:36:37] [PASSED] RGB -> RGB [09:36:37] ======== [PASSED] drm_test_check_hdmi_color_format ========= [09:36:37] ======== drm_test_check_hdmi_color_format_420_only ======== [09:36:37] [PASSED] RGB should fail [09:36:37] [PASSED] YUV444 should fail [09:36:37] [PASSED] YUV422 should fail [09:36:37] [PASSED] YUV420 should work [09:36:37] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ==== [09:36:37] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [09:36:37] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [09:36:37] [PASSED] drm_test_check_broadcast_rgb_value [09:36:37] [PASSED] drm_test_check_bpc_8_value [09:36:37] [PASSED] drm_test_check_bpc_10_value [09:36:37] [PASSED] drm_test_check_bpc_12_value [09:36:37] [PASSED] drm_test_check_format_value [09:36:37] [PASSED] drm_test_check_tmds_char_value [09:36:37] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [09:36:37] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) = [09:36:37] [PASSED] drm_test_check_mode_valid [09:36:37] [PASSED] drm_test_check_mode_valid_reject [09:36:37] [PASSED] drm_test_check_mode_valid_reject_rate [09:36:37] [PASSED] drm_test_check_mode_valid_reject_max_clock [09:36:37] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock [09:36:37] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector [09:36:37] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb [09:36:37] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [09:36:37] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) = [09:36:37] [PASSED] drm_test_check_infoframes [09:36:37] [PASSED] drm_test_check_reject_avi_infoframe [09:36:37] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8 [09:36:37] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10 [09:36:37] [PASSED] drm_test_check_reject_audio_infoframe [09:36:37] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes === [09:36:37] ================= drm_managed (2 subtests) ================= [09:36:37] [PASSED] drm_test_managed_release_action [09:36:37] [PASSED] drm_test_managed_run_action [09:36:37] =================== [PASSED] drm_managed =================== [09:36:37] =================== drm_mm (6 subtests) ==================== [09:36:37] [PASSED] drm_test_mm_init [09:36:37] [PASSED] drm_test_mm_debug [09:36:37] [PASSED] drm_test_mm_align32 [09:36:37] [PASSED] drm_test_mm_align64 [09:36:37] [PASSED] drm_test_mm_lowest [09:36:37] [PASSED] drm_test_mm_highest [09:36:37] ===================== [PASSED] drm_mm ====================== [09:36:37] ============= drm_modes_analog_tv (5 subtests) ============= [09:36:37] [PASSED] drm_test_modes_analog_tv_mono_576i [09:36:37] [PASSED] drm_test_modes_analog_tv_ntsc_480i [09:36:37] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [09:36:37] [PASSED] drm_test_modes_analog_tv_pal_576i [09:36:37] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [09:36:37] =============== [PASSED] drm_modes_analog_tv =============== [09:36:37] ============== drm_plane_helper (2 subtests) =============== [09:36:37] =============== drm_test_check_plane_state ================ [09:36:37] [PASSED] clipping_simple [09:36:37] [PASSED] clipping_rotate_reflect [09:36:37] [PASSED] positioning_simple [09:36:37] [PASSED] upscaling [09:36:37] [PASSED] downscaling [09:36:37] [PASSED] rounding1 [09:36:37] [PASSED] rounding2 [09:36:37] [PASSED] rounding3 [09:36:37] [PASSED] rounding4 [09:36:37] =========== [PASSED] drm_test_check_plane_state ============ [09:36:37] =========== drm_test_check_invalid_plane_state ============ [09:36:37] [PASSED] positioning_invalid [09:36:37] [PASSED] upscaling_invalid [09:36:37] [PASSED] downscaling_invalid [09:36:37] ======= [PASSED] drm_test_check_invalid_plane_state ======== [09:36:37] ================ [PASSED] drm_plane_helper ================= [09:36:37] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [09:36:37] ====== drm_test_connector_helper_tv_get_modes_check ======= [09:36:37] [PASSED] None [09:36:37] [PASSED] PAL [09:36:37] [PASSED] NTSC [09:36:37] [PASSED] Both, NTSC Default [09:36:37] [PASSED] Both, PAL Default [09:36:37] [PASSED] Both, NTSC Default, with PAL on command-line [09:36:37] [PASSED] Both, PAL Default, with NTSC on command-line [09:36:37] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [09:36:37] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [09:36:37] ================== drm_rect (9 subtests) =================== [09:36:37] [PASSED] drm_test_rect_clip_scaled_div_by_zero [09:36:37] [PASSED] drm_test_rect_clip_scaled_not_clipped [09:36:37] [PASSED] drm_test_rect_clip_scaled_clipped [09:36:37] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [09:36:37] ================= drm_test_rect_intersect ================= [09:36:37] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [09:36:37] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [09:36:37] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [09:36:37] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [09:36:37] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [09:36:37] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [09:36:37] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [09:36:37] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [09:36:37] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [09:36:37] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [09:36:37] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [09:36:37] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [09:36:37] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [09:36:37] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [09:36:37] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [09:36:37] ============= [PASSED] drm_test_rect_intersect ============= [09:36:37] ================ drm_test_rect_calc_hscale ================ [09:36:37] [PASSED] normal use [09:36:37] [PASSED] out of max range [09:36:37] [PASSED] out of min range [09:36:37] [PASSED] zero dst [09:36:37] [PASSED] negative src [09:36:37] [PASSED] negative dst [09:36:37] ============ [PASSED] drm_test_rect_calc_hscale ============ [09:36:37] ================ drm_test_rect_calc_vscale ================ [09:36:37] [PASSED] normal use [09:36:37] [PASSED] out of max range [09:36:37] [PASSED] out of min range [09:36:37] [PASSED] zero dst [09:36:37] [PASSED] negative src [09:36:37] [PASSED] negative dst [09:36:37] ============ [PASSED] drm_test_rect_calc_vscale ============ [09:36:37] ================== drm_test_rect_rotate =================== [09:36:37] [PASSED] reflect-x [09:36:37] [PASSED] reflect-y [09:36:37] [PASSED] rotate-0 [09:36:37] [PASSED] rotate-90 [09:36:37] [PASSED] rotate-180 [09:36:37] [PASSED] rotate-270 [09:36:37] ============== [PASSED] drm_test_rect_rotate =============== [09:36:37] ================ drm_test_rect_rotate_inv ================= [09:36:37] [PASSED] reflect-x [09:36:37] [PASSED] reflect-y [09:36:37] [PASSED] rotate-0 [09:36:37] [PASSED] rotate-90 [09:36:37] [PASSED] rotate-180 [09:36:37] [PASSED] rotate-270 [09:36:37] ============ [PASSED] drm_test_rect_rotate_inv ============= [09:36:37] ==================== [PASSED] drm_rect ===================== [09:36:37] ============ drm_sysfb_modeset_test (1 subtest) ============ [09:36:37] ============ drm_test_sysfb_build_fourcc_list ============= [09:36:37] [PASSED] no native formats [09:36:37] [PASSED] XRGB8888 as native format [09:36:37] [PASSED] remove duplicates [09:36:37] [PASSED] convert alpha formats [09:36:37] [PASSED] random formats [09:36:37] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [09:36:37] ============= [PASSED] drm_sysfb_modeset_test ============== [09:36:37] ================== drm_fixp (2 subtests) =================== [09:36:37] [PASSED] drm_test_int2fixp [09:36:37] [PASSED] drm_test_sm2fixp [09:36:37] ==================== [PASSED] drm_fixp ===================== [09:36:37] ============================================================ [09:36:37] Testing complete. Ran 641 tests: passed: 641 [09:36:37] Elapsed time: 26.863s total, 1.824s configuring, 24.871s building, 0.150s running + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [09:36:37] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [09:36:39] 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 [09:36:49] Starting KUnit Kernel (1/1)... [09:36:49] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [09:36:49] ============= refcount_interrupt (4 subtests) ============== [09:36:49] [PASSED] test_single_irq_change [09:36:49] [PASSED] test_nested_irq_change [09:36:49] [PASSED] test_multiple_irq_change [09:36:49] [PASSED] test_irq_save [09:36:49] =============== [PASSED] refcount_interrupt ================ [09:36:49] ================= ttm_device (5 subtests) ================== [09:36:49] [PASSED] ttm_device_init_basic [09:36:49] [PASSED] ttm_device_init_multiple [09:36:49] [PASSED] ttm_device_fini_basic [09:36:49] [PASSED] ttm_device_init_no_vma_man [09:36:49] ================== ttm_device_init_pools ================== [09:36:49] [PASSED] No DMA allocations, no DMA32 required [09:36:49] [PASSED] DMA allocations, DMA32 required [09:36:49] [PASSED] No DMA allocations, DMA32 required [09:36:49] [PASSED] DMA allocations, no DMA32 required [09:36:49] ============== [PASSED] ttm_device_init_pools ============== [09:36:49] =================== [PASSED] ttm_device ==================== [09:36:49] ================== ttm_pool (8 subtests) =================== [09:36:49] ================== ttm_pool_alloc_basic =================== [09:36:49] [PASSED] One page [09:36:49] [PASSED] More than one page [09:36:49] [PASSED] Above the allocation limit [09:36:49] [PASSED] One page, with coherent DMA mappings enabled [09:36:49] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [09:36:49] ============== [PASSED] ttm_pool_alloc_basic =============== [09:36:49] ============== ttm_pool_alloc_basic_dma_addr ============== [09:36:49] [PASSED] One page [09:36:49] [PASSED] More than one page [09:36:49] [PASSED] Above the allocation limit [09:36:49] [PASSED] One page, with coherent DMA mappings enabled [09:36:49] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [09:36:49] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [09:36:49] [PASSED] ttm_pool_alloc_order_caching_match [09:36:49] [PASSED] ttm_pool_alloc_caching_mismatch [09:36:49] [PASSED] ttm_pool_alloc_order_mismatch [09:36:49] [PASSED] ttm_pool_free_dma_alloc [09:36:49] [PASSED] ttm_pool_free_no_dma_alloc [09:36:49] [PASSED] ttm_pool_fini_basic [09:36:49] ==================== [PASSED] ttm_pool ===================== [09:36:49] ================ ttm_resource (8 subtests) ================= [09:36:49] ================= ttm_resource_init_basic ================= [09:36:49] [PASSED] Init resource in TTM_PL_SYSTEM [09:36:49] [PASSED] Init resource in TTM_PL_VRAM [09:36:49] [PASSED] Init resource in a private placement [09:36:49] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [09:36:49] ============= [PASSED] ttm_resource_init_basic ============= [09:36:49] [PASSED] ttm_resource_init_pinned [09:36:49] [PASSED] ttm_resource_fini_basic [09:36:49] [PASSED] ttm_resource_manager_init_basic [09:36:49] [PASSED] ttm_resource_manager_usage_basic [09:36:49] [PASSED] ttm_resource_manager_set_used_basic [09:36:49] [PASSED] ttm_sys_man_alloc_basic [09:36:49] [PASSED] ttm_sys_man_free_basic [09:36:49] ================== [PASSED] ttm_resource =================== [09:36:49] =================== ttm_tt (15 subtests) =================== [09:36:49] ==================== ttm_tt_init_basic ==================== [09:36:49] [PASSED] Page-aligned size [09:36:49] [PASSED] Extra pages requested [09:36:49] ================ [PASSED] ttm_tt_init_basic ================ [09:36:49] [PASSED] ttm_tt_init_misaligned [09:36:49] [PASSED] ttm_tt_fini_basic [09:36:49] [PASSED] ttm_tt_fini_sg [09:36:49] [PASSED] ttm_tt_fini_shmem [09:36:49] [PASSED] ttm_tt_create_basic [09:36:49] [PASSED] ttm_tt_create_invalid_bo_type [09:36:49] [PASSED] ttm_tt_create_ttm_exists [09:36:49] [PASSED] ttm_tt_create_failed [09:36:49] [PASSED] ttm_tt_destroy_basic [09:36:49] [PASSED] ttm_tt_populate_null_ttm [09:36:49] [PASSED] ttm_tt_populate_populated_ttm [09:36:49] [PASSED] ttm_tt_unpopulate_basic [09:36:49] [PASSED] ttm_tt_unpopulate_empty_ttm [09:36:49] [PASSED] ttm_tt_swapin_basic [09:36:49] ===================== [PASSED] ttm_tt ====================== [09:36:49] =================== ttm_bo (14 subtests) =================== [09:36:49] =========== ttm_bo_reserve_optimistic_no_ticket =========== [09:36:49] [PASSED] Cannot be interrupted and sleeps [09:36:49] [PASSED] Cannot be interrupted, locks straight away [09:36:49] [PASSED] Can be interrupted, sleeps [09:36:49] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [09:36:49] [PASSED] ttm_bo_reserve_locked_no_sleep [09:36:49] [PASSED] ttm_bo_reserve_no_wait_ticket [09:36:49] [PASSED] ttm_bo_reserve_double_resv [09:36:49] [PASSED] ttm_bo_reserve_interrupted [09:36:49] [PASSED] ttm_bo_reserve_deadlock [09:36:49] [PASSED] ttm_bo_unreserve_basic [09:36:49] [PASSED] ttm_bo_unreserve_pinned [09:36:49] [PASSED] ttm_bo_unreserve_bulk [09:36:49] [PASSED] ttm_bo_fini_basic [09:36:49] [PASSED] ttm_bo_fini_shared_resv [09:36:49] [PASSED] ttm_bo_pin_basic [09:36:49] [PASSED] ttm_bo_pin_unpin_resource [09:36:49] [PASSED] ttm_bo_multiple_pin_one_unpin [09:36:49] ===================== [PASSED] ttm_bo ====================== [09:36:49] ============== ttm_bo_validate (22 subtests) =============== [09:36:49] ============== ttm_bo_init_reserved_sys_man =============== [09:36:49] [PASSED] Buffer object for userspace [09:36:49] [PASSED] Kernel buffer object [09:36:49] [PASSED] Shared buffer object [09:36:49] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [09:36:49] ============== ttm_bo_init_reserved_mock_man ============== [09:36:49] [PASSED] Buffer object for userspace [09:36:49] [PASSED] Kernel buffer object [09:36:49] [PASSED] Shared buffer object [09:36:49] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [09:36:49] [PASSED] ttm_bo_init_reserved_resv [09:36:49] ================== ttm_bo_validate_basic ================== [09:36:49] [PASSED] Buffer object for userspace [09:36:49] [PASSED] Kernel buffer object [09:36:49] [PASSED] Shared buffer object [09:36:49] ============== [PASSED] ttm_bo_validate_basic ============== [09:36:49] [PASSED] ttm_bo_validate_invalid_placement [09:36:49] ============= ttm_bo_validate_same_placement ============== [09:36:49] [PASSED] System manager [09:36:49] [PASSED] VRAM manager [09:36:49] ========= [PASSED] ttm_bo_validate_same_placement ========== [09:36:49] [PASSED] ttm_bo_validate_failed_alloc [09:36:49] [PASSED] ttm_bo_validate_pinned [09:36:49] [PASSED] ttm_bo_validate_busy_placement [09:36:49] ================ ttm_bo_validate_multihop ================= [09:36:49] [PASSED] Buffer object for userspace [09:36:49] [PASSED] Kernel buffer object [09:36:49] [PASSED] Shared buffer object [09:36:49] ============ [PASSED] ttm_bo_validate_multihop ============= [09:36:49] ========== ttm_bo_validate_no_placement_signaled ========== [09:36:49] [PASSED] Buffer object in system domain, no page vector [09:36:49] [PASSED] Buffer object in system domain with an existing page vector [09:36:49] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [09:36:49] ======== ttm_bo_validate_no_placement_not_signaled ======== [09:36:49] [PASSED] Buffer object for userspace [09:36:49] [PASSED] Kernel buffer object [09:36:49] [PASSED] Shared buffer object [09:36:49] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [09:36:49] [PASSED] ttm_bo_validate_move_fence_signaled [09:36:49] ========= ttm_bo_validate_move_fence_not_signaled ========= [09:36:49] [PASSED] Waits for GPU [09:36:49] [PASSED] Tries to lock straight away [09:36:49] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [09:36:49] [PASSED] ttm_bo_validate_swapout [09:36:49] [PASSED] ttm_bo_validate_happy_evict [09:36:49] [PASSED] ttm_bo_validate_all_pinned_evict [09:36:49] [PASSED] ttm_bo_validate_allowed_only_evict [09:36:49] [PASSED] ttm_bo_validate_deleted_evict [09:36:49] [PASSED] ttm_bo_validate_busy_domain_evict [09:36:49] [PASSED] ttm_bo_validate_evict_gutting [09:36:49] [PASSED] ttm_bo_validate_recrusive_evict [09:36:49] ================= [PASSED] ttm_bo_validate ================= [09:36:49] ============================================================ [09:36:49] Testing complete. Ran 106 tests: passed: 106 [09:36:49] Elapsed time: 12.150s total, 1.821s configuring, 10.064s building, 0.221s running + for kcfg in "${kunitconfigs[@]}" + [[ ! -f /kernel/drivers/dma-buf/.kunitconfig ]] + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig [09:36:50] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [09:36:51] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [09:37:00] Starting KUnit Kernel (1/1)... [09:37:00] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [09:37:00] ============= refcount_interrupt (4 subtests) ============== [09:37:00] [PASSED] test_single_irq_change [09:37:00] [PASSED] test_nested_irq_change [09:37:00] [PASSED] test_multiple_irq_change [09:37:00] [PASSED] test_irq_save [09:37:00] =============== [PASSED] refcount_interrupt ================ [09:37:00] =============== dma-buf-fence (12 subtests) ================ [09:37:00] [PASSED] test_sanitycheck [09:37:00] [PASSED] test_signaling [09:37:00] [PASSED] test_add_callback [09:37:00] [PASSED] test_late_add_callback [09:37:00] [PASSED] test_rm_callback [09:37:00] [PASSED] test_late_rm_callback [09:37:00] [PASSED] test_status [09:37:00] [PASSED] test_error [09:37:00] [PASSED] test_wait [09:37:00] [PASSED] test_wait_timeout [09:37:00] [PASSED] test_stub [09:37:00] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs) [09:37:00] ================== [PASSED] dma-buf-fence ================== [09:37:00] ============ dma-buf-fence-chain (11 subtests) ============= [09:37:00] [PASSED] test_sanitycheck [09:37:00] [PASSED] test_find_seqno [09:37:00] [PASSED] test_find_signaled [09:37:00] [PASSED] test_find_out_of_order [09:37:05] [PASSED] test_find_gap [09:37:05] [PASSED] test_find_race [09:37:05] [PASSED] test_signal_forward [09:37:05] [PASSED] test_signal_backward [09:37:05] [PASSED] test_wait_forward [09:37:05] [PASSED] test_wait_backward [09:37:05] [PASSED] test_wait_random [09:37:05] =============== [PASSED] dma-buf-fence-chain =============== [09:37:05] ============ dma-buf-fence-unwrap (10 subtests) ============ [09:37:05] [PASSED] test_sanitycheck [09:37:05] [PASSED] test_unwrap_array [09:37:05] [PASSED] test_unwrap_chain [09:37:05] [PASSED] test_unwrap_chain_array [09:37:05] [PASSED] test_unwrap_merge [09:37:05] [PASSED] test_unwrap_merge_duplicate [09:37:05] [PASSED] test_unwrap_merge_seqno [09:37:05] [PASSED] test_unwrap_merge_order [09:37:05] [PASSED] test_unwrap_merge_complex [09:37:05] [PASSED] test_unwrap_merge_complex_seqno [09:37:05] ============== [PASSED] dma-buf-fence-unwrap =============== [09:37:05] ================ dma-buf-resv (5 subtests) ================= [09:37:05] [PASSED] test_sanitycheck [09:37:05] ===================== test_signaling ====================== [09:37:05] [PASSED] kernel [09:37:05] [PASSED] write [09:37:05] [PASSED] read [09:37:05] [PASSED] bookkeep [09:37:05] ================= [PASSED] test_signaling ================== [09:37:05] ====================== test_for_each ====================== [09:37:05] [PASSED] kernel [09:37:05] [PASSED] write [09:37:05] [PASSED] read [09:37:05] [PASSED] bookkeep [09:37:05] ================== [PASSED] test_for_each ================== [09:37:05] ================= test_for_each_unlocked ================== [09:37:05] [PASSED] kernel [09:37:05] [PASSED] write [09:37:05] [PASSED] read [09:37:05] [PASSED] bookkeep [09:37:05] ============= [PASSED] test_for_each_unlocked ============== [09:37:05] ===================== test_get_fences ===================== [09:37:05] [PASSED] kernel [09:37:05] [PASSED] write [09:37:05] [PASSED] read [09:37:05] [PASSED] bookkeep [09:37:05] ================= [PASSED] test_get_fences ================= [09:37:05] ================== [PASSED] dma-buf-resv =================== [09:37:05] ============================================================ [09:37:05] Testing complete. Ran 54 tests: passed: 53, skipped: 1 [09:37:05] Elapsed time: 15.823s total, 1.781s configuring, 8.719s building, 5.272s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for Introduce xe_wedge (rev2) 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav ` (6 preceding siblings ...) 2026-09-07 9:37 ` ✓ CI.KUnit: success " Patchwork @ 2026-09-07 10:26 ` Patchwork 2026-09-07 11:39 ` ✓ Xe.CI.FULL: " Patchwork 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-09-07 10:26 UTC (permalink / raw) To: Raag Jadav; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 9535 bytes --] == Series Details == Series: Introduce xe_wedge (rev2) URL : https://patchwork.freedesktop.org/series/173011/ State : success == Summary == CI Bug Log - changes from xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f_BAT -> xe-pw-173011v2_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 14) ------------------------------ Additional (2): bat-nvls-2 bat-bmg-vm Known issues ------------ Here are the changes found in xe-pw-173011v2_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - bat-nvls-2: NOTRUN -> [SKIP][1] ([Intel XE#8742]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@fbdev@eof.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-nvls-2: NOTRUN -> [SKIP][2] ([Intel XE#8757]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-nvls-2: NOTRUN -> [SKIP][3] ([Intel XE#8756] / [Intel XE#8783]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_frontbuffer_tracking@basic: - bat-nvls-2: NOTRUN -> [SKIP][4] ([Intel XE#8761] / [Intel XE#8773]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-nvls-2: NOTRUN -> [SKIP][5] ([Intel XE#8755]) +13 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-nvls-2: NOTRUN -> [SKIP][6] ([Intel XE#8758] / [Intel XE#8784]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_evict@evict-small-multi-vm: - bat-nvls-2: NOTRUN -> [SKIP][7] ([Intel XE#8777]) +9 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_evict@evict-small-multi-vm.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - bat-nvls-2: NOTRUN -> [SKIP][8] ([Intel XE#8744]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_balancer@no-exec-virtual-basic: - bat-nvls-2: NOTRUN -> [SKIP][9] ([Intel XE#8741]) +17 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_exec_balancer@no-exec-virtual-basic.html * igt@xe_exec_multi_queue@many-queues-basic-smem: - bat-nvls-2: NOTRUN -> [SKIP][10] ([Intel XE#8377]) +13 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_exec_multi_queue@many-queues-basic-smem.html * igt@xe_exec_multi_queue@many-queues-userptr-invalidate: - bat-bmg-vm: NOTRUN -> [SKIP][11] ([Intel XE#8364]) +13 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-bmg-vm/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html * igt@xe_huc_copy@huc_copy: - bat-nvls-2: NOTRUN -> [SKIP][12] ([Intel XE#8746]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_bo: - bat-nvls-2: NOTRUN -> [SKIP][13] ([Intel XE#8792]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - bat-nvls-2: NOTRUN -> [SKIP][14] ([Intel XE#8791] / [Intel XE#8792]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-vm: NOTRUN -> [SKIP][15] ([Intel XE#2229]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-bmg-vm/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-nvls-2: NOTRUN -> [SKIP][16] ([Intel XE#8791]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_mmap@vram: - bat-nvls-2: NOTRUN -> [SKIP][17] ([Intel XE#8747]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-vm: NOTRUN -> [SKIP][18] ([Intel XE#1420] / [Intel XE#7590]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-bmg-vm/igt@xe_pat@pat-index-xehpc.html - bat-nvls-2: NOTRUN -> [SKIP][19] ([Intel XE#8748]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-nvls-2: NOTRUN -> [SKIP][20] ([Intel XE#8743]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_pat@pat-index-xelp.html - bat-bmg-vm: NOTRUN -> [SKIP][21] ([Intel XE#2245] / [Intel XE#7590]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-bmg-vm/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-vm: NOTRUN -> [SKIP][22] ([Intel XE#2236] / [Intel XE#7590]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-bmg-vm/igt@xe_pat@pat-index-xelpg.html - bat-nvls-2: NOTRUN -> [SKIP][23] ([Intel XE#8745]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-nvls-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_waitfence@reltime: - bat-ptl-2: [PASS][24] -> [FAIL][25] ([Intel XE#9115]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/bat-ptl-2/igt@xe_waitfence@reltime.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-ptl-2/igt@xe_waitfence@reltime.html #### Possible fixes #### * igt@xe_waitfence@engine: - bat-ptl-2: [FAIL][26] ([Intel XE#9109]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/bat-ptl-2/igt@xe_waitfence@engine.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-ptl-2/igt@xe_waitfence@engine.html - bat-wcl-1: [FAIL][28] ([Intel XE#9103]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/bat-wcl-1/igt@xe_waitfence@engine.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/bat-wcl-1/igt@xe_waitfence@engine.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8377 [Intel XE#8741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8741 [Intel XE#8742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8742 [Intel XE#8743]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8743 [Intel XE#8744]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8744 [Intel XE#8745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8745 [Intel XE#8746]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8746 [Intel XE#8747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8747 [Intel XE#8748]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8748 [Intel XE#8755]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8755 [Intel XE#8756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8756 [Intel XE#8757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8757 [Intel XE#8758]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8758 [Intel XE#8761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8761 [Intel XE#8773]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8773 [Intel XE#8777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8777 [Intel XE#8783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8783 [Intel XE#8784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8784 [Intel XE#8791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8791 [Intel XE#8792]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8792 [Intel XE#9103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9103 [Intel XE#9109]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9109 [Intel XE#9115]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9115 Build changes ------------- * Linux: xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f -> xe-pw-173011v2 IGT_9084: 9084 xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f: 496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f xe-pw-173011v2: 173011v2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/index.html [-- Attachment #2: Type: text/html, Size: 10827 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.FULL: success for Introduce xe_wedge (rev2) 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav ` (7 preceding siblings ...) 2026-09-07 10:26 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-09-07 11:39 ` Patchwork 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-09-07 11:39 UTC (permalink / raw) To: Raag Jadav; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 104236 bytes --] == Series Details == Series: Introduce xe_wedge (rev2) URL : https://patchwork.freedesktop.org/series/173011/ State : success == Summary == CI Bug Log - changes from xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f_FULL -> xe-pw-173011v2_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in xe-pw-173011v2_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - shard-lnl: [PASS][1] -> [SKIP][2] ([Intel XE#2134]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@fbdev@eof.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@fbdev@eof.html * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1125] / [Intel XE#7312]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@intel_hwmon@hwmon-read.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#7059] / [Intel XE#7085]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#7679]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7679]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#367]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +7 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2669] / [Intel XE#7389]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#306] / [Intel XE#7358]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#7358]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_chamelium_color_pipeline@plane-lut1d.html - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7358]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2252]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-lnl: [PASS][22] -> [SKIP][23] ([Intel XE#1511] / [Intel XE#3297]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_color@deep-color.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_color@deep-color.html * igt@kms_color_pipeline@plane-ctm3x4: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#7006]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_color_pipeline@plane-ctm3x4.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-lnl: [PASS][25] -> [SKIP][26] ([Intel XE#7006]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-plane-1: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#6969]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-plane-1.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-plane-2: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6969] / [Intel XE#7006]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-plane-2.html * igt@kms_content_protection@legacy-hdcp14: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7642]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_content_protection@legacy-hdcp14.html - shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2320]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1424]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-tearing-position-change: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#9125]) +32 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_cursor_crc@cursor-tearing-position-change.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#309] / [Intel XE#7343]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1508]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_aux_dev@basic: - shard-lnl: [PASS][36] -> [SKIP][37] ([Intel XE#3009]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_dp_aux_dev@basic.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#9009]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#8265]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#4422] / [Intel XE#7442]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4422] / [Intel XE#7442]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4156] / [Intel XE#7425]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr: - shard-lnl: [PASS][43] -> [SKIP][44] ([Intel XE#8680]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_fbcon_fbt@psr.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2373] / [Intel XE#7448]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dsc: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8586]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@hdr: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#8586]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr1: - shard-lnl: [PASS][48] -> [SKIP][49] ([Intel XE#1135]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_feature_discovery@psr1.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1421]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@basic-flip-vs-modeset: - shard-lnl: [PASS][51] -> [SKIP][52] ([Intel XE#2482]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_flip@basic-flip-vs-modeset.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#301]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][55] -> [FAIL][56] ([Intel XE#301] / [Intel XE#3149]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-lnl: [PASS][57] -> [SKIP][58] ([Intel XE#1745] / [Intel XE#9144]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1397] / [Intel XE#7385] / [Intel XE#9144]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1745] / [Intel XE#9144]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7178] / [Intel XE#7351]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2311]) +18 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#6312]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4141]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7779]) +24 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6312] / [Intel XE#651]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2548] / [Intel XE#7779]) +18 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-lnl: [PASS][69] -> [SKIP][70] ([Intel XE#2548] / [Intel XE#7779]) +13 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#7905]) +20 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#7061]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt.html - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7061]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#7865]) +10 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render: - shard-lnl: [PASS][75] -> [SKIP][76] ([Intel XE#7779]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#656] / [Intel XE#7905]) +13 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#7061] / [Intel XE#7356]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2313]) +27 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_invalid_mode@bad-vsync-end: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#2568]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_invalid_mode@zero-hdisplay: - shard-lnl: [PASS][81] -> [SKIP][82] ([Intel XE#2568]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_invalid_mode@zero-hdisplay.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_joiner@basic-force-big-joiner: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7086] / [Intel XE#7390]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6911] / [Intel XE#7466]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#6900] / [Intel XE#7362]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_lease@lease-unleased-crtc: - shard-lnl: [PASS][86] -> [SKIP][87] ([Intel XE#9125]) +31 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_lease@lease-unleased-crtc.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_lease@lease-unleased-crtc.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#7283]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-modifier: - shard-lnl: [PASS][91] -> [SKIP][92] ([Intel XE#7250] / [Intel XE#9128]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-modifier.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#7283]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@planar-pixel-format-settings: - shard-lnl: [PASS][94] -> [SKIP][95] ([Intel XE#7780] / [Intel XE#9125]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_plane@planar-pixel-format-settings.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane@plane-position-covered: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#9128]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane@plane-position-covered.html * igt@kms_plane@plane-position-hole: - shard-lnl: [PASS][97] -> [SKIP][98] ([Intel XE#9128]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_plane@plane-position-hole.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane@plane-position-hole.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#599] / [Intel XE#7382]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2393]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#5021] / [Intel XE#7377]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-lnl: [PASS][102] -> [SKIP][103] ([Intel XE#2763] / [Intel XE#6886]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c: - shard-lnl: [PASS][104] -> [SKIP][105] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2763] / [Intel XE#6886]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-lnl: [PASS][108] -> [SKIP][109] ([Intel XE#870]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_pm_backlight@bad-brightness.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][111] -> [FAIL][112] ([Intel XE#8399]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#7794]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@drm-resources-equal: - shard-lnl: [PASS][114] -> [SKIP][115] ([Intel XE#7106]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_pm_rpm@drm-resources-equal.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1489]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#4608]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#4608] / [Intel XE#7304]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893] / [Intel XE#7304]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: [PASS][124] -> [SKIP][125] ([Intel XE#1489]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-primary-blt: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr2-basic@edp-1: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_psr@fbc-psr2-basic@edp-1.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1406]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-lnl: [PASS][130] -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_psr@psr-sprite-plane-onoff.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#6503]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_vrr@flip-dpms: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#1499]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-8/igt@kms_vrr@flip-dpms.html * igt@sriov_basic@pf-unbind-with-vf-probed: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#8866]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@sriov_basic@pf-unbind-with-vf-probed.html * igt@xe_ccs@vm-bind-fault-mode-decompress: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#7644]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_ccs@vm-bind-fault-mode-decompress.html * igt@xe_evict@evict-beng-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#6540] / [Intel XE#688]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@xe_evict@evict-beng-large-external-cm.html * igt@xe_evict@evict-small-external-multi-queue-cm: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#8370]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@xe_evict@evict-small-external-multi-queue-cm.html * igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#7482]) +13 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1392]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#8374]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#8374]) +8 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#8364]) +18 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_multi_queue@two-queues-close-fd-smem: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#8364]) +22 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html * igt@xe_exec_reset@multi-queue-close-execqueues: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#8369]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@xe_exec_reset@multi-queue-close-execqueues.html - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#8369]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_exec_reset@multi-queue-close-execqueues.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#6196]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_exec_threads@threads-multi-queue-cm-rebind: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#8378]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#8378]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_multigpu_svm@mgpu-pagefault-conflict: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#6964]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html * igt@xe_multigpu_svm@mgpu-pagefault-prefetch: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#6964]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html * igt@xe_page_reclaim@prl-invalidate-full: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#7793]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@xe_page_reclaim@prl-invalidate-full.html - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#7793]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_page_reclaim@prl-invalidate-full.html * igt@xe_pat@pat-index-xelpg: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#7590] / [Intel XE#979]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@xe_pat@pat-index-xelpg.html * igt@xe_pat@xa-app-transient-media-off: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#7590]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@xe_pat@xa-app-transient-media-off.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm_residency@aspm_link_residency: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#7271]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_prefetch_fault@prefetch-fault: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#7599]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_prefetch_fault@prefetch-fault.html * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html * igt@xe_query@multigpu-query-hwconfig: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#944]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@xe_query@multigpu-query-hwconfig.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#944]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#7174]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#4130] / [Intel XE#7366]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_sriov_vram@vf-access-provisioned: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@xe_sriov_vram@vf-access-provisioned.html * igt@xe_vm@overcommit-fault-vram-lr: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#7892]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-1/igt@xe_vm@overcommit-fault-vram-lr.html #### Possible fixes #### * igt@core_hotunplug@hotrebind-lateclose: - shard-bmg: [ABORT][168] ([Intel XE#8007]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-8/igt@core_hotunplug@hotrebind-lateclose.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@core_hotunplug@hotrebind-lateclose.html * igt@fbdev@nullptr: - shard-lnl: [SKIP][170] ([Intel XE#2134]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@fbdev@nullptr.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@fbdev@nullptr.html * igt@kms_flip@busy-flip: - shard-lnl: [SKIP][172] ([Intel XE#2482]) -> [PASS][173] +4 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_flip@busy-flip.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_flip@busy-flip.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render: - shard-lnl: [SKIP][174] ([Intel XE#7779]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-lnl: [SKIP][176] ([Intel XE#2548] / [Intel XE#7779]) -> [PASS][177] +13 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][178] ([Intel XE#1503]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-1/igt@kms_hdr@invalid-hdr.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_hdr@invalid-hdr.html * igt@kms_invalid_mode@bad-hsync-start: - shard-lnl: [SKIP][180] ([Intel XE#2568]) -> [PASS][181] +2 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_invalid_mode@bad-hsync-start.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_invalid_mode@bad-hsync-start.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-lnl: [SKIP][182] ([Intel XE#9128]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_plane@plane-panning-bottom-right-suspend.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b: - shard-lnl: [SKIP][184] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][185] +5 other tests pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-lnl: [SKIP][186] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [PASS][187] +5 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_pm_backlight@fade-with-dpms: - shard-lnl: [SKIP][188] ([Intel XE#870]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_pm_backlight@fade-with-dpms.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-lnl: [SKIP][190] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [SKIP][192] ([Intel XE#4886]) -> [PASS][193] +1 other test pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_pm_rpm@legacy-planes.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_pm_rpm@legacy-planes.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-lnl: [SKIP][194] ([Intel XE#1489]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr@psr-no-drrs: - shard-lnl: [SKIP][196] ([Intel XE#2850] / [Intel XE#929]) -> [PASS][197] +3 other tests pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_psr@psr-no-drrs.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_psr@psr-no-drrs.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [SKIP][198] ([Intel XE#7795]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vblank@query-forked: - shard-lnl: [SKIP][200] ([Intel XE#9125]) -> [PASS][201] +39 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_vblank@query-forked.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_vblank@query-forked.html * igt@xe_exec_reset@gt-stress-reset-concurrent-submit: - shard-bmg: [DMESG-WARN][202] ([Intel XE#8649] / [Intel XE#8652]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-6/igt@xe_exec_reset@gt-stress-reset-concurrent-submit.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-5/igt@xe_exec_reset@gt-stress-reset-concurrent-submit.html * igt@xe_exec_threads@threads-hang-userptr-invalidate-race: - shard-bmg: [FAIL][204] ([Intel XE#9096]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-7/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-1/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html #### Warnings #### * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-lnl: [SKIP][206] ([Intel XE#3279]) -> [SKIP][207] ([Intel XE#9125]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [SKIP][208] ([Intel XE#1407]) -> [SKIP][209] ([Intel XE#9125]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: [SKIP][210] ([Intel XE#9125]) -> [SKIP][211] ([Intel XE#7059] / [Intel XE#7085]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-lnl: [SKIP][212] ([Intel XE#9125]) -> [SKIP][213] ([Intel XE#1407]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-lnl: [SKIP][214] ([Intel XE#1477] / [Intel XE#7361]) -> [SKIP][215] ([Intel XE#9125]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-lnl: [SKIP][216] ([Intel XE#1124]) -> [SKIP][217] ([Intel XE#9125]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-lnl: [SKIP][218] ([Intel XE#9125]) -> [SKIP][219] ([Intel XE#1124]) +7 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: [SKIP][220] ([Intel XE#9125]) -> [SKIP][221] ([Intel XE#1477] / [Intel XE#7361]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p: - shard-lnl: [SKIP][222] ([Intel XE#9125]) -> [SKIP][223] ([Intel XE#7679]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p: - shard-lnl: [SKIP][224] ([Intel XE#7679]) -> [SKIP][225] ([Intel XE#9125]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-lnl: [SKIP][226] ([Intel XE#9125]) -> [SKIP][227] ([Intel XE#8365]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-target-2160x1440p: - shard-lnl: [SKIP][228] ([Intel XE#367]) -> [SKIP][229] ([Intel XE#9125]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-target-2560x1440p: - shard-lnl: [SKIP][230] ([Intel XE#9125]) -> [SKIP][231] ([Intel XE#367]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-target-2160x1440p: - shard-lnl: [SKIP][232] ([Intel XE#8365]) -> [SKIP][233] ([Intel XE#9125]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-lnl: [SKIP][234] ([Intel XE#2887]) -> [SKIP][235] ([Intel XE#9125]) +8 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-lnl: [SKIP][236] ([Intel XE#9125]) -> [SKIP][237] ([Intel XE#2669] / [Intel XE#7389]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-lnl: [SKIP][238] ([Intel XE#2669] / [Intel XE#7389]) -> [SKIP][239] ([Intel XE#9125]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-lnl: [SKIP][240] ([Intel XE#9125]) -> [SKIP][241] ([Intel XE#3432]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-lnl: [SKIP][242] ([Intel XE#3432]) -> [SKIP][243] ([Intel XE#9125]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-lnl: [SKIP][244] ([Intel XE#9125]) -> [SKIP][245] ([Intel XE#2887]) +10 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@mode-transition: - shard-lnl: [SKIP][246] ([Intel XE#4417] / [Intel XE#5447]) -> [SKIP][247] ([Intel XE#9125]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_cdclk@mode-transition.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_cdclk@mode-transition.html * igt@kms_color_pipeline@plane-lut3d-green-only: - shard-lnl: [SKIP][248] ([Intel XE#7006]) -> [SKIP][249] ([Intel XE#6969] / [Intel XE#7006]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_color_pipeline@plane-lut3d-green-only.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-lnl: [SKIP][250] ([Intel XE#9125]) -> [SKIP][251] ([Intel XE#6974]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-lnl: [SKIP][252] ([Intel XE#9125]) -> [SKIP][253] ([Intel XE#7642]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_content_protection@lic-type-1.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@suspend-resume: - shard-lnl: [SKIP][254] ([Intel XE#7642]) -> [SKIP][255] ([Intel XE#9125]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_content_protection@suspend-resume.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: [SKIP][256] ([Intel XE#9125]) -> [SKIP][257] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: [SKIP][258] ([Intel XE#9125]) -> [SKIP][259] ([Intel XE#1424]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-lnl: [SKIP][260] ([Intel XE#1424]) -> [SKIP][261] ([Intel XE#9125]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: [SKIP][262] ([Intel XE#9125]) -> [SKIP][263] ([Intel XE#309] / [Intel XE#7343]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: [SKIP][264] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][265] ([Intel XE#9125]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: [SKIP][266] ([Intel XE#323] / [Intel XE#6035]) -> [SKIP][267] ([Intel XE#9125]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_link_training@uhbr-mst: - shard-lnl: [SKIP][268] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][269] ([Intel XE#9125]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_dp_link_training@uhbr-mst.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-lnl: [SKIP][270] ([Intel XE#9125]) -> [SKIP][271] ([Intel XE#8265]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - shard-lnl: [SKIP][272] ([Intel XE#8265]) -> [SKIP][273] ([Intel XE#9125]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][274] ([Intel XE#301]) -> [FAIL][275] ([Intel XE#301] / [Intel XE#3149]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-lnl: [SKIP][276] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) -> [SKIP][277] ([Intel XE#1745] / [Intel XE#9144]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: [SKIP][278] ([Intel XE#1745] / [Intel XE#9144]) -> [SKIP][279] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385] / [Intel XE#9144]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: [SKIP][280] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][281] ([Intel XE#6312] / [Intel XE#651]) +10 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc: - shard-lnl: [SKIP][282] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][283] ([Intel XE#7779]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: [SKIP][284] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][285] ([Intel XE#2548] / [Intel XE#7779]) +29 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt: - shard-lnl: [SKIP][286] ([Intel XE#7779]) -> [SKIP][287] ([Intel XE#7061] / [Intel XE#7356]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-lnl: [SKIP][288] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][289] ([Intel XE#2548] / [Intel XE#7779]) +9 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-blt: - shard-lnl: [SKIP][290] ([Intel XE#6312]) -> [SKIP][291] ([Intel XE#7779]) +10 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-blt.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff: - shard-lnl: [SKIP][292] ([Intel XE#7779]) -> [SKIP][293] ([Intel XE#6312]) +12 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-mmap-wc: - shard-lnl: [SKIP][294] ([Intel XE#7779]) -> [SKIP][295] ([Intel XE#7061]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-mmap-wc.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-lnl: [SKIP][296] ([Intel XE#7779]) -> [SKIP][297] ([Intel XE#7399]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: [SKIP][298] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][299] ([Intel XE#1469] / [Intel XE#7399]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-lnl: [SKIP][300] ([Intel XE#7399]) -> [SKIP][301] ([Intel XE#7779]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: [SKIP][302] ([Intel XE#7905]) -> [SKIP][303] ([Intel XE#7779]) +34 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: [SKIP][304] ([Intel XE#2548] / [Intel XE#7779]) -> [SKIP][305] ([Intel XE#656] / [Intel XE#7905]) +30 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt: - shard-lnl: [SKIP][306] ([Intel XE#7865]) -> [SKIP][307] ([Intel XE#7779]) +22 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-lnl: [SKIP][308] ([Intel XE#7779]) -> [SKIP][309] ([Intel XE#7865]) +19 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-lnl: [SKIP][310] ([Intel XE#7779]) -> [SKIP][311] ([Intel XE#7905]) +33 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt: - shard-lnl: [SKIP][312] ([Intel XE#7061]) -> [SKIP][313] ([Intel XE#7779]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][314] ([Intel XE#3544]) -> [SKIP][315] ([Intel XE#3374] / [Intel XE#3544]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-lnl: [SKIP][316] ([Intel XE#9125]) -> [SKIP][317] ([Intel XE#1503]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_hdr@static-toggle.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_hdr@static-toggle.html * igt@kms_plane_lowres@tiling-x: - shard-lnl: [SKIP][318] ([Intel XE#9125]) -> [SKIP][319] ([Intel XE#599] / [Intel XE#7382]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_plane_lowres@tiling-x.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_multiple@2x-tiling-none: - shard-lnl: [SKIP][320] ([Intel XE#4596] / [Intel XE#5854]) -> [SKIP][321] ([Intel XE#9125]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-none.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-lnl: [SKIP][322] ([Intel XE#9125]) -> [SKIP][323] ([Intel XE#4596] / [Intel XE#5854]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-x.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: [SKIP][324] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][325] ([Intel XE#7343] / [Intel XE#7687] / [Intel XE#9125]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: [SKIP][326] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][327] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-lnl: [SKIP][328] ([Intel XE#2763] / [Intel XE#6886] / [Intel XE#7687] / [Intel XE#9125]) -> [SKIP][329] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [SKIP][330] ([Intel XE#7778]) -> [FAIL][331] ([Intel XE#2029] / [Intel XE#7395]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: [SKIP][332] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [SKIP][333] ([Intel XE#1489]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-lnl: [SKIP][334] ([Intel XE#1489]) -> [SKIP][335] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: [SKIP][336] ([Intel XE#1489]) -> [SKIP][337] ([Intel XE#2893] / [Intel XE#7304]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-lnl: [SKIP][338] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][339] ([Intel XE#1489]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: [SKIP][340] ([Intel XE#1122] / [Intel XE#7429]) -> [SKIP][341] ([Intel XE#1128] / [Intel XE#7413]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_psr2_su@page_flip-p010.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-basic: - shard-lnl: [SKIP][342] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][343] ([Intel XE#1406] / [Intel XE#7345]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_psr@fbc-psr2-basic.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-3/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-lnl: [SKIP][344] ([Intel XE#1406] / [Intel XE#7345]) -> [SKIP][345] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-blt.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-basic: - shard-lnl: [SKIP][346] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][347] ([Intel XE#1406]) +3 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_psr@pr-basic.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_psr@pr-basic.html * igt@kms_psr@pr-sprite-blt: - shard-lnl: [SKIP][348] ([Intel XE#1406]) -> [SKIP][349] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_psr@pr-sprite-blt.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_psr@pr-sprite-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-lnl: [SKIP][350] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][351] ([Intel XE#9125]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-lnl: [SKIP][352] ([Intel XE#9125]) -> [SKIP][353] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][354] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][355] ([Intel XE#2426] / [Intel XE#5848]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][356] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][357] ([Intel XE#2509] / [Intel XE#7437]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@lobf-dc3co: - shard-lnl: [SKIP][358] ([Intel XE#8397]) -> [SKIP][359] ([Intel XE#9125]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-7/igt@kms_vrr@lobf-dc3co.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-6/igt@kms_vrr@lobf-dc3co.html * igt@xe_exec_reset@gt-reset-fault-injection: - shard-bmg: [ABORT][360] ([Intel XE#9131] / [Intel XE#9145]) -> [DMESG-WARN][361] ([Intel XE#9130]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-3/igt@xe_exec_reset@gt-reset-fault-injection.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-4/igt@xe_exec_reset@gt-reset-fault-injection.html - shard-lnl: [ABORT][362] ([Intel XE#9140] / [Intel XE#9145]) -> [DMESG-WARN][363] ([Intel XE#9130]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-lnl-3/igt@xe_exec_reset@gt-reset-fault-injection.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-lnl-5/igt@xe_exec_reset@gt-reset-fault-injection.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: [ABORT][364] ([Intel XE#8007]) -> [SKIP][365] ([Intel XE#6281] / [Intel XE#7426]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f/shard-bmg-5/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/shard-bmg-8/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1511]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1511 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4886 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5447 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7106 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7250]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7250 [Intel XE#7271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7271 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312 [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322 [Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [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#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362 [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389 [Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390 [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402 [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408 [Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7778]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7778 [Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779 [Intel XE#7780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7780 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586 [Intel XE#8649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8649 [Intel XE#8652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8652 [Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#8866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8866 [Intel XE#9009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9009 [Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096 [Intel XE#9125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9125 [Intel XE#9128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9128 [Intel XE#9130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9130 [Intel XE#9131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9131 [Intel XE#9140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9140 [Intel XE#9144]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9144 [Intel XE#9145]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9145 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * Linux: xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f -> xe-pw-173011v2 IGT_9084: 9084 xe-5696-496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f: 496ff8213a2d2e1e5b1c8efe8b55e1dcdc3e3f8f xe-pw-173011v2: 173011v2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-173011v2/index.html [-- Attachment #2: Type: text/html, Size: 129009 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2026-09-07 13:06 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-09-07 8:34 [PATCH v3 0/5] Introduce xe_wedge Raag Jadav 2026-09-07 8:34 ` [PATCH v3 1/5] drm/xe/gt: Use GT ordered workqueue for wedging Raag Jadav 2026-09-07 8:50 ` sashiko-bot 2026-09-07 12:02 ` Michal Wajdeczko 2026-09-07 13:06 ` Raag Jadav 2026-09-07 8:34 ` [PATCH v3 2/5] drm/xe: Move xe_device_wedged_fini() registration to xe_device_probe_early() Raag Jadav 2026-09-07 8:54 ` sashiko-bot 2026-09-07 8:34 ` [PATCH v3 3/5] drm/xe: Make xe_device_declare_wedged() IRQ safe Raag Jadav 2026-09-07 8:34 ` [PATCH v3 4/5] drm/xe: Introduce xe_wedge Raag Jadav 2026-09-07 8:34 ` [PATCH v3 5/5] drm/xe/ras: Move xe_ras_process_errors() to xe_ras Raag Jadav 2026-09-07 8:55 ` sashiko-bot 2026-09-07 9:35 ` ✗ CI.checkpatch: warning for Introduce xe_wedge (rev2) Patchwork 2026-09-07 9:37 ` ✓ CI.KUnit: success " Patchwork 2026-09-07 10:26 ` ✓ Xe.CI.BAT: " Patchwork 2026-09-07 11:39 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox