* [PATCH v2 1/5] drm/i915/reset: Reorganize display reset code
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
@ 2026-04-14 14:22 ` Ville Syrjala
2026-04-15 8:56 ` [PATCH v3 " Ville Syrjala
2026-04-14 14:22 ` [PATCH v2 2/5] drm/i915/reset: Move pending_fb_pin handling to i915 Ville Syrjala
` (9 subsequent siblings)
10 siblings, 1 reply; 14+ messages in thread
From: Ville Syrjala @ 2026-04-14 14:22 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jouni Högander, Maarten Lankhorst, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Stop returning the "is there a display?" status from
intel_display_reset_prepare(). I plan to move the pending_fb_pin
into the i915 code, so I need to make that determination already
before intel_display_reset_prepare() is called. Add a new
intel_display_reset_supported() function for that.
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
.../drm/i915/display/intel_display_reset.c | 23 ++++++++-----------
.../drm/i915/display/intel_display_reset.h | 3 ++-
drivers/gpu/drm/i915/gt/intel_reset.c | 13 +++++++----
3 files changed, 20 insertions(+), 19 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_reset.c b/drivers/gpu/drm/i915/display/intel_display_reset.c
index d00ef5bdcbda..137a2a33c8b0 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reset.c
+++ b/drivers/gpu/drm/i915/display/intel_display_reset.c
@@ -16,22 +16,24 @@
#include "intel_hotplug.h"
#include "intel_pps.h"
+bool intel_display_reset_supported(struct intel_display *display)
+{
+ return HAS_DISPLAY(display);
+}
+
bool intel_display_reset_test(struct intel_display *display)
{
- return display->params.force_reset_modeset_test;
+ return HAS_DISPLAY(display) &&
+ display->params.force_reset_modeset_test;
}
-/* returns true if intel_display_reset_finish() needs to be called */
-bool intel_display_reset_prepare(struct intel_display *display,
+void intel_display_reset_prepare(struct intel_display *display,
modeset_stuck_fn modeset_stuck, void *context)
{
struct drm_modeset_acquire_ctx *ctx = &display->restore.reset_ctx;
struct drm_atomic_state *state;
int ret;
- if (!HAS_DISPLAY(display))
- return false;
-
if (atomic_read(&display->restore.pending_fb_pin)) {
drm_dbg_kms(display->drm,
"Modeset potentially stuck, unbreaking through wedging\n");
@@ -60,7 +62,7 @@ bool intel_display_reset_prepare(struct intel_display *display,
ret = PTR_ERR(state);
drm_err(display->drm, "Duplicating state failed with %i\n",
ret);
- return true;
+ return;
}
ret = drm_atomic_helper_disable_all(display->drm, ctx);
@@ -68,13 +70,11 @@ bool intel_display_reset_prepare(struct intel_display *display,
drm_err(display->drm, "Suspending crtc's failed with %i\n",
ret);
drm_atomic_state_put(state);
- return true;
+ return;
}
display->restore.modeset_state = state;
state->acquire_ctx = ctx;
-
- return true;
}
void intel_display_reset_finish(struct intel_display *display, bool test_only)
@@ -83,9 +83,6 @@ void intel_display_reset_finish(struct intel_display *display, bool test_only)
struct drm_atomic_state *state;
int ret;
- if (!HAS_DISPLAY(display))
- return;
-
state = fetch_and_zero(&display->restore.modeset_state);
if (!state)
goto unlock;
diff --git a/drivers/gpu/drm/i915/display/intel_display_reset.h b/drivers/gpu/drm/i915/display/intel_display_reset.h
index 8b3bda134454..e0f15e757728 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reset.h
+++ b/drivers/gpu/drm/i915/display/intel_display_reset.h
@@ -12,8 +12,9 @@ struct intel_display;
typedef void modeset_stuck_fn(void *context);
+bool intel_display_reset_supported(struct intel_display *display);
bool intel_display_reset_test(struct intel_display *display);
-bool intel_display_reset_prepare(struct intel_display *display,
+void intel_display_reset_prepare(struct intel_display *display,
modeset_stuck_fn modeset_stuck, void *context);
void intel_display_reset_finish(struct intel_display *display, bool test_only);
diff --git a/drivers/gpu/drm/i915/gt/intel_reset.c b/drivers/gpu/drm/i915/gt/intel_reset.c
index 37272871b0f2..ffd11767874f 100644
--- a/drivers/gpu/drm/i915/gt/intel_reset.c
+++ b/drivers/gpu/drm/i915/gt/intel_reset.c
@@ -1425,16 +1425,19 @@ static void intel_gt_reset_global(struct intel_gt *gt,
bool need_display_reset;
bool reset_display;
- need_display_reset = intel_gt_gpu_reset_clobbers_display(gt) &&
+ need_display_reset =
+ intel_display_reset_supported(display) &&
+ intel_gt_gpu_reset_clobbers_display(gt) &&
intel_has_gpu_reset(gt);
- reset_display = intel_display_reset_test(display) ||
+ reset_display =
+ intel_display_reset_test(display) ||
need_display_reset;
if (reset_display)
- reset_display = intel_display_reset_prepare(display,
- display_reset_modeset_stuck,
- gt);
+ intel_display_reset_prepare(display,
+ display_reset_modeset_stuck,
+ gt);
intel_gt_reset(gt, engine_mask, reason);
--
2.52.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v3 1/5] drm/i915/reset: Reorganize display reset code
2026-04-14 14:22 ` [PATCH v2 1/5] drm/i915/reset: Reorganize display reset code Ville Syrjala
@ 2026-04-15 8:56 ` Ville Syrjala
0 siblings, 0 replies; 14+ messages in thread
From: Ville Syrjala @ 2026-04-15 8:56 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jouni Högander, Maarten Lankhorst, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Stop returning the "is there a display?" status from
intel_display_reset_prepare(). I plan to move the pending_fb_pin
into the i915 code, so I need to make that determination already
before intel_display_reset_prepare() is called. Add a new
intel_display_reset_supported() function for that.
v2: Also check display!=NULL for mock tests
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
.../drm/i915/display/intel_display_reset.c | 23 ++++++++-----------
.../drm/i915/display/intel_display_reset.h | 3 ++-
drivers/gpu/drm/i915/gt/intel_reset.c | 13 +++++++----
3 files changed, 20 insertions(+), 19 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_reset.c b/drivers/gpu/drm/i915/display/intel_display_reset.c
index d00ef5bdcbda..fc661c623cb8 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reset.c
+++ b/drivers/gpu/drm/i915/display/intel_display_reset.c
@@ -16,22 +16,24 @@
#include "intel_hotplug.h"
#include "intel_pps.h"
+bool intel_display_reset_supported(struct intel_display *display)
+{
+ return display && HAS_DISPLAY(display);
+}
+
bool intel_display_reset_test(struct intel_display *display)
{
- return display->params.force_reset_modeset_test;
+ return display && HAS_DISPLAY(display) &&
+ display->params.force_reset_modeset_test;
}
-/* returns true if intel_display_reset_finish() needs to be called */
-bool intel_display_reset_prepare(struct intel_display *display,
+void intel_display_reset_prepare(struct intel_display *display,
modeset_stuck_fn modeset_stuck, void *context)
{
struct drm_modeset_acquire_ctx *ctx = &display->restore.reset_ctx;
struct drm_atomic_state *state;
int ret;
- if (!HAS_DISPLAY(display))
- return false;
-
if (atomic_read(&display->restore.pending_fb_pin)) {
drm_dbg_kms(display->drm,
"Modeset potentially stuck, unbreaking through wedging\n");
@@ -60,7 +62,7 @@ bool intel_display_reset_prepare(struct intel_display *display,
ret = PTR_ERR(state);
drm_err(display->drm, "Duplicating state failed with %i\n",
ret);
- return true;
+ return;
}
ret = drm_atomic_helper_disable_all(display->drm, ctx);
@@ -68,13 +70,11 @@ bool intel_display_reset_prepare(struct intel_display *display,
drm_err(display->drm, "Suspending crtc's failed with %i\n",
ret);
drm_atomic_state_put(state);
- return true;
+ return;
}
display->restore.modeset_state = state;
state->acquire_ctx = ctx;
-
- return true;
}
void intel_display_reset_finish(struct intel_display *display, bool test_only)
@@ -83,9 +83,6 @@ void intel_display_reset_finish(struct intel_display *display, bool test_only)
struct drm_atomic_state *state;
int ret;
- if (!HAS_DISPLAY(display))
- return;
-
state = fetch_and_zero(&display->restore.modeset_state);
if (!state)
goto unlock;
diff --git a/drivers/gpu/drm/i915/display/intel_display_reset.h b/drivers/gpu/drm/i915/display/intel_display_reset.h
index 8b3bda134454..e0f15e757728 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reset.h
+++ b/drivers/gpu/drm/i915/display/intel_display_reset.h
@@ -12,8 +12,9 @@ struct intel_display;
typedef void modeset_stuck_fn(void *context);
+bool intel_display_reset_supported(struct intel_display *display);
bool intel_display_reset_test(struct intel_display *display);
-bool intel_display_reset_prepare(struct intel_display *display,
+void intel_display_reset_prepare(struct intel_display *display,
modeset_stuck_fn modeset_stuck, void *context);
void intel_display_reset_finish(struct intel_display *display, bool test_only);
diff --git a/drivers/gpu/drm/i915/gt/intel_reset.c b/drivers/gpu/drm/i915/gt/intel_reset.c
index 37272871b0f2..ffd11767874f 100644
--- a/drivers/gpu/drm/i915/gt/intel_reset.c
+++ b/drivers/gpu/drm/i915/gt/intel_reset.c
@@ -1425,16 +1425,19 @@ static void intel_gt_reset_global(struct intel_gt *gt,
bool need_display_reset;
bool reset_display;
- need_display_reset = intel_gt_gpu_reset_clobbers_display(gt) &&
+ need_display_reset =
+ intel_display_reset_supported(display) &&
+ intel_gt_gpu_reset_clobbers_display(gt) &&
intel_has_gpu_reset(gt);
- reset_display = intel_display_reset_test(display) ||
+ reset_display =
+ intel_display_reset_test(display) ||
need_display_reset;
if (reset_display)
- reset_display = intel_display_reset_prepare(display,
- display_reset_modeset_stuck,
- gt);
+ intel_display_reset_prepare(display,
+ display_reset_modeset_stuck,
+ gt);
intel_gt_reset(gt, engine_mask, reason);
--
2.52.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v2 2/5] drm/i915/reset: Move pending_fb_pin handling to i915
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
2026-04-14 14:22 ` [PATCH v2 1/5] drm/i915/reset: Reorganize display reset code Ville Syrjala
@ 2026-04-14 14:22 ` Ville Syrjala
2026-04-14 14:22 ` [PATCH v2 3/5] drm/xe/display: Add init_clock_gating.h stubs Ville Syrjala
` (8 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Ville Syrjala @ 2026-04-14 14:22 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jouni Högander, Maarten Lankhorst, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Only i915 uses the pending_fb_pin counter to potentially whack
the GPU harder if the display gets nuked during a GPU reset.
Move the atomic counter into the i915 specific bits of code, so
that we don't need to worry about on the display side.
For some reason the overlay code kept the pending_fb_pin counter
elevated for longer than just for the pin, but from now on it'll
just cover the actual pinning part.
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
.../gpu/drm/i915/display/intel_display_core.h | 1 -
.../drm/i915/display/intel_display_reset.c | 9 +--------
.../drm/i915/display/intel_display_reset.h | 5 +----
drivers/gpu/drm/i915/display/intel_overlay.c | 10 ++--------
drivers/gpu/drm/i915/gt/intel_reset.c | 19 ++++++++++---------
drivers/gpu/drm/i915/i915_dpt.c | 5 ++---
drivers/gpu/drm/i915/i915_drv.h | 2 ++
drivers/gpu/drm/i915/i915_fb_pin.c | 9 ++++-----
drivers/gpu/drm/i915/i915_overlay.c | 6 ++++++
9 files changed, 28 insertions(+), 38 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_core.h b/drivers/gpu/drm/i915/display/intel_display_core.h
index d9baca2d5aaf..38296a38372c 100644
--- a/drivers/gpu/drm/i915/display/intel_display_core.h
+++ b/drivers/gpu/drm/i915/display/intel_display_core.h
@@ -564,7 +564,6 @@ struct intel_display {
struct drm_atomic_state *modeset_state;
struct drm_modeset_acquire_ctx reset_ctx;
/* modeset stuck tracking for reset */
- atomic_t pending_fb_pin;
u32 saveDSPARB;
u32 saveSWF0[16];
u32 saveSWF1[16];
diff --git a/drivers/gpu/drm/i915/display/intel_display_reset.c b/drivers/gpu/drm/i915/display/intel_display_reset.c
index 137a2a33c8b0..ca15dc18ef0f 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reset.c
+++ b/drivers/gpu/drm/i915/display/intel_display_reset.c
@@ -27,19 +27,12 @@ bool intel_display_reset_test(struct intel_display *display)
display->params.force_reset_modeset_test;
}
-void intel_display_reset_prepare(struct intel_display *display,
- modeset_stuck_fn modeset_stuck, void *context)
+void intel_display_reset_prepare(struct intel_display *display)
{
struct drm_modeset_acquire_ctx *ctx = &display->restore.reset_ctx;
struct drm_atomic_state *state;
int ret;
- if (atomic_read(&display->restore.pending_fb_pin)) {
- drm_dbg_kms(display->drm,
- "Modeset potentially stuck, unbreaking through wedging\n");
- modeset_stuck(context);
- }
-
/*
* Need mode_config.mutex so that we don't
* trample ongoing ->detect() and whatnot.
diff --git a/drivers/gpu/drm/i915/display/intel_display_reset.h b/drivers/gpu/drm/i915/display/intel_display_reset.h
index e0f15e757728..a8aa7729d33f 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reset.h
+++ b/drivers/gpu/drm/i915/display/intel_display_reset.h
@@ -10,12 +10,9 @@
struct intel_display;
-typedef void modeset_stuck_fn(void *context);
-
bool intel_display_reset_supported(struct intel_display *display);
bool intel_display_reset_test(struct intel_display *display);
-void intel_display_reset_prepare(struct intel_display *display,
- modeset_stuck_fn modeset_stuck, void *context);
+void intel_display_reset_prepare(struct intel_display *display);
void intel_display_reset_finish(struct intel_display *display, bool test_only);
#endif /* __INTEL_RESET_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c b/drivers/gpu/drm/i915/display/intel_overlay.c
index 12a325ceae6f..a809aa2950ac 100644
--- a/drivers/gpu/drm/i915/display/intel_overlay.c
+++ b/drivers/gpu/drm/i915/display/intel_overlay.c
@@ -481,13 +481,9 @@ static int intel_overlay_do_put_image(struct intel_overlay *overlay,
if (ret != 0)
return ret;
- atomic_inc(&display->restore.pending_fb_pin);
-
vma = intel_parent_overlay_pin_fb(display, obj, &offset);
- if (IS_ERR(vma)) {
- ret = PTR_ERR(vma);
- goto out_pin_section;
- }
+ if (IS_ERR(vma))
+ return PTR_ERR(vma);
if (!intel_parent_overlay_is_active(display)) {
const struct intel_crtc_state *crtc_state =
@@ -571,8 +567,6 @@ static int intel_overlay_do_put_image(struct intel_overlay *overlay,
out_unpin:
intel_parent_overlay_unpin_fb(display, vma);
-out_pin_section:
- atomic_dec(&display->restore.pending_fb_pin);
return ret;
}
diff --git a/drivers/gpu/drm/i915/gt/intel_reset.c b/drivers/gpu/drm/i915/gt/intel_reset.c
index ffd11767874f..a1e6aaca8c9b 100644
--- a/drivers/gpu/drm/i915/gt/intel_reset.c
+++ b/drivers/gpu/drm/i915/gt/intel_reset.c
@@ -1398,11 +1398,6 @@ int intel_engine_reset(struct intel_engine_cs *engine, const char *msg)
return err;
}
-static void display_reset_modeset_stuck(void *gt)
-{
- intel_gt_set_wedged(gt);
-}
-
static void intel_gt_reset_global(struct intel_gt *gt,
u32 engine_mask,
const char *reason)
@@ -1434,10 +1429,16 @@ static void intel_gt_reset_global(struct intel_gt *gt,
intel_display_reset_test(display) ||
need_display_reset;
- if (reset_display)
- intel_display_reset_prepare(display,
- display_reset_modeset_stuck,
- gt);
+ if (reset_display) {
+ if (atomic_read(&i915->pending_fb_pin)) {
+ drm_dbg_kms(&i915->drm,
+ "Modeset potentially stuck, unbreaking through wedging\n");
+
+ intel_gt_set_wedged(gt);
+ }
+
+ intel_display_reset_prepare(display);
+ }
intel_gt_reset(gt, engine_mask, reason);
diff --git a/drivers/gpu/drm/i915/i915_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c
index 9f47bb563c85..fcd7cced771d 100644
--- a/drivers/gpu/drm/i915/i915_dpt.c
+++ b/drivers/gpu/drm/i915/i915_dpt.c
@@ -129,7 +129,6 @@ static void dpt_cleanup(struct i915_address_space *vm)
struct i915_vma *i915_dpt_pin_to_ggtt(struct intel_dpt *dpt, unsigned int alignment)
{
struct drm_i915_private *i915 = dpt->vm.i915;
- struct intel_display *display = i915->display;
struct ref_tracker *wakeref;
struct i915_vma *vma;
void __iomem *iomem;
@@ -141,7 +140,7 @@ struct i915_vma *i915_dpt_pin_to_ggtt(struct intel_dpt *dpt, unsigned int alignm
pin_flags |= PIN_MAPPABLE;
wakeref = intel_runtime_pm_get(&i915->runtime_pm);
- atomic_inc(&display->restore.pending_fb_pin);
+ atomic_inc(&i915->pending_fb_pin);
for_i915_gem_ww(&ww, err, true) {
err = i915_gem_object_lock(dpt->obj, &ww);
@@ -171,7 +170,7 @@ struct i915_vma *i915_dpt_pin_to_ggtt(struct intel_dpt *dpt, unsigned int alignm
dpt->obj->mm.dirty = true;
- atomic_dec(&display->restore.pending_fb_pin);
+ atomic_dec(&i915->pending_fb_pin);
intel_runtime_pm_put(&i915->runtime_pm, wakeref);
return err ? ERR_PTR(err) : vma;
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index dafee3dcd1c5..844ed79e7211 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -315,6 +315,8 @@ struct drm_i915_private {
/* The TTM device structure. */
struct ttm_device bdev;
+ atomic_t pending_fb_pin;
+
I915_SELFTEST_DECLARE(struct i915_selftest_stash selftest;)
/*
diff --git a/drivers/gpu/drm/i915/i915_fb_pin.c b/drivers/gpu/drm/i915/i915_fb_pin.c
index 1018f4b7bc2c..a08a8ace681f 100644
--- a/drivers/gpu/drm/i915/i915_fb_pin.c
+++ b/drivers/gpu/drm/i915/i915_fb_pin.c
@@ -29,7 +29,6 @@ intel_fb_pin_to_dpt(const struct drm_framebuffer *fb,
unsigned long *out_flags,
struct intel_dpt *dpt)
{
- struct intel_display *display = to_intel_display(fb->dev);
struct drm_i915_private *i915 = to_i915(fb->dev);
struct drm_gem_object *_obj = intel_fb_bo(fb);
struct drm_i915_gem_object *obj = to_intel_bo(_obj);
@@ -48,7 +47,7 @@ intel_fb_pin_to_dpt(const struct drm_framebuffer *fb,
if (WARN_ON(!i915_gem_object_is_framebuffer(obj)))
return ERR_PTR(-EINVAL);
- atomic_inc(&display->restore.pending_fb_pin);
+ atomic_inc(&i915->pending_fb_pin);
for_i915_gem_ww(&ww, ret, true) {
ret = i915_gem_object_lock(obj, &ww);
@@ -103,7 +102,7 @@ intel_fb_pin_to_dpt(const struct drm_framebuffer *fb,
i915_vma_get(vma);
err:
- atomic_dec(&display->restore.pending_fb_pin);
+ atomic_dec(&i915->pending_fb_pin);
return vma;
}
@@ -142,7 +141,7 @@ intel_fb_pin_to_ggtt(const struct drm_framebuffer *fb,
*/
wakeref = intel_runtime_pm_get(&i915->runtime_pm);
- atomic_inc(&display->restore.pending_fb_pin);
+ atomic_inc(&i915->pending_fb_pin);
/*
* Valleyview is definitely limited to scanning out the first
@@ -218,7 +217,7 @@ intel_fb_pin_to_ggtt(const struct drm_framebuffer *fb,
if (ret)
vma = ERR_PTR(ret);
- atomic_dec(&display->restore.pending_fb_pin);
+ atomic_dec(&i915->pending_fb_pin);
intel_runtime_pm_put(&i915->runtime_pm, wakeref);
return vma;
}
diff --git a/drivers/gpu/drm/i915/i915_overlay.c b/drivers/gpu/drm/i915/i915_overlay.c
index 2d7aff51e39b..6de550a17756 100644
--- a/drivers/gpu/drm/i915/i915_overlay.c
+++ b/drivers/gpu/drm/i915/i915_overlay.c
@@ -354,11 +354,14 @@ static struct i915_vma *i915_overlay_pin_fb(struct drm_device *drm,
struct drm_gem_object *obj,
u32 *offset)
{
+ struct drm_i915_private *i915 = to_i915(drm);
struct drm_i915_gem_object *new_bo = to_intel_bo(obj);
struct i915_gem_ww_ctx ww;
struct i915_vma *vma;
int ret;
+ atomic_inc(&i915->pending_fb_pin);
+
i915_gem_ww_ctx_init(&ww, true);
retry:
ret = i915_gem_object_lock(new_bo, &ww);
@@ -373,6 +376,9 @@ static struct i915_vma *i915_overlay_pin_fb(struct drm_device *drm,
goto retry;
}
i915_gem_ww_ctx_fini(&ww);
+
+ atomic_dec(&i915->pending_fb_pin);
+
if (ret)
return ERR_PTR(ret);
--
2.52.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v2 3/5] drm/xe/display: Add init_clock_gating.h stubs
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
2026-04-14 14:22 ` [PATCH v2 1/5] drm/i915/reset: Reorganize display reset code Ville Syrjala
2026-04-14 14:22 ` [PATCH v2 2/5] drm/i915/reset: Move pending_fb_pin handling to i915 Ville Syrjala
@ 2026-04-14 14:22 ` Ville Syrjala
2026-04-14 14:22 ` [PATCH v2 4/5] drm/i915/reset: Add "display_reset_count" debugfs file Ville Syrjala
` (7 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Ville Syrjala @ 2026-04-14 14:22 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jouni Högander, Maarten Lankhorst, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Add static inline stubs for init_clock_gating.h functions
so that we don't need ifdefs in the actual code. We already
have one in intel_display_power.c, and now I need to bring
over intel_display_reset.c.
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_display_power.c | 2 --
| 10 +++++++++-
2 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
index 8a7afe2a94bc..80ecf373fb19 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power.c
@@ -1420,9 +1420,7 @@ static void hsw_disable_pc8(struct intel_display *display)
intel_init_pch_refclk(display);
/* Many display registers don't survive PC8+ */
-#ifdef I915 /* FIXME */
intel_clock_gating_init(display->drm);
-#endif
}
static void intel_pch_reset_handshake(struct intel_display *display,
--git a/drivers/gpu/drm/xe/compat-i915-headers/intel_clock_gating.h b/drivers/gpu/drm/xe/compat-i915-headers/intel_clock_gating.h
index ce986f0e8f38..552975a30ba2 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/intel_clock_gating.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/intel_clock_gating.h
@@ -3,4 +3,12 @@
* Copyright © 2023 Intel Corporation
*/
-#include "../../i915/intel_clock_gating.h"
+#ifndef __INTEL_CLOCK_GATING_H__
+#define __INTEL_CLOCK_GATING_H__
+
+struct drm_device;
+
+static inline void intel_clock_gating_init(struct drm_device *drm) {}
+static inline void intel_clock_gating_hooks_init(struct drm_device *drm) {}
+
+#endif /* __INTEL_CLOCK_GATING_H__ */
--
2.52.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v2 4/5] drm/i915/reset: Add "display_reset_count" debugfs file
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
` (2 preceding siblings ...)
2026-04-14 14:22 ` [PATCH v2 3/5] drm/xe/display: Add init_clock_gating.h stubs Ville Syrjala
@ 2026-04-14 14:22 ` Ville Syrjala
2026-04-14 14:22 ` [PATCH v2 5/5] drm/i915/reset: Disable execlist per-engine reset for display reset tests Ville Syrjala
` (6 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Ville Syrjala @ 2026-04-14 14:22 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jouni Högander, Maarten Lankhorst, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Expose the number of display resets performed in a new
"display_reset_count" debugfs file. kms_busy can use this to
confirm that the kernel actually took the full display reset path.
v2: Give the file an "intel_" namespace (Jani)
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Testcase: igt/kms_busy/*-with-reset
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_display_core.h | 4 ++++
drivers/gpu/drm/i915/display/intel_display_debugfs.c | 2 ++
drivers/gpu/drm/i915/display/intel_display_reset.c | 10 ++++++++++
drivers/gpu/drm/i915/display/intel_display_reset.h | 2 ++
drivers/gpu/drm/xe/Makefile | 1 +
5 files changed, 19 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display_core.h b/drivers/gpu/drm/i915/display/intel_display_core.h
index 38296a38372c..c5a07090cba6 100644
--- a/drivers/gpu/drm/i915/display/intel_display_core.h
+++ b/drivers/gpu/drm/i915/display/intel_display_core.h
@@ -559,6 +559,10 @@ struct intel_display {
unsigned long mask;
} quirks;
+ struct {
+ u32 count;
+ } reset;
+
struct {
/* restore state for suspend/resume and display reset */
struct drm_atomic_state *modeset_state;
diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
index f244a2b5d139..81bef000a4e3 100644
--- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c
+++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c
@@ -27,6 +27,7 @@
#include "intel_display_power.h"
#include "intel_display_power_well.h"
#include "intel_display_regs.h"
+#include "intel_display_reset.h"
#include "intel_display_rpm.h"
#include "intel_display_types.h"
#include "intel_dmc.h"
@@ -838,6 +839,7 @@ void intel_display_debugfs_register(struct intel_display *display)
intel_bios_debugfs_register(display);
intel_cdclk_debugfs_register(display);
+ intel_display_reset_debugfs_register(display);
intel_dmc_debugfs_register(display);
intel_dp_test_debugfs_register(display);
intel_fbc_debugfs_register(display);
diff --git a/drivers/gpu/drm/i915/display/intel_display_reset.c b/drivers/gpu/drm/i915/display/intel_display_reset.c
index ca15dc18ef0f..e06a8c933cf0 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reset.c
+++ b/drivers/gpu/drm/i915/display/intel_display_reset.c
@@ -3,6 +3,8 @@
* Copyright © 2023 Intel Corporation
*/
+#include <linux/debugfs.h>
+
#include <drm/drm_atomic_helper.h>
#include <drm/drm_print.h>
@@ -66,6 +68,7 @@ void intel_display_reset_prepare(struct intel_display *display)
return;
}
+ display->reset.count++;
display->restore.modeset_state = state;
state->acquire_ctx = ctx;
}
@@ -114,3 +117,10 @@ void intel_display_reset_finish(struct intel_display *display, bool test_only)
drm_modeset_acquire_fini(ctx);
mutex_unlock(&display->drm->mode_config.mutex);
}
+
+void intel_display_reset_debugfs_register(struct intel_display *display)
+{
+ debugfs_create_u32("intel_display_reset_count", 0400,
+ display->drm->debugfs_root,
+ &display->reset.count);
+}
diff --git a/drivers/gpu/drm/i915/display/intel_display_reset.h b/drivers/gpu/drm/i915/display/intel_display_reset.h
index a8aa7729d33f..b88c330a3441 100644
--- a/drivers/gpu/drm/i915/display/intel_display_reset.h
+++ b/drivers/gpu/drm/i915/display/intel_display_reset.h
@@ -15,4 +15,6 @@ bool intel_display_reset_test(struct intel_display *display);
void intel_display_reset_prepare(struct intel_display *display);
void intel_display_reset_finish(struct intel_display *display, bool test_only);
+void intel_display_reset_debugfs_register(struct intel_display *display);
+
#endif /* __INTEL_RESET_H__ */
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index e42e582aca5c..95666f950a6f 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -263,6 +263,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
i915-display/intel_display_power.o \
i915-display/intel_display_power_map.o \
i915-display/intel_display_power_well.o \
+ i915-display/intel_display_reset.o \
i915-display/intel_display_rpm.o \
i915-display/intel_display_rps.o \
i915-display/intel_display_trace.o \
--
2.52.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v2 5/5] drm/i915/reset: Disable execlist per-engine reset for display reset tests
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
` (3 preceding siblings ...)
2026-04-14 14:22 ` [PATCH v2 4/5] drm/i915/reset: Add "display_reset_count" debugfs file Ville Syrjala
@ 2026-04-14 14:22 ` Ville Syrjala
2026-04-14 15:56 ` Jani Nikula
2026-04-14 14:32 ` ✓ CI.KUnit: success for drm/i915/reset: Expose "display_reset_count" in debugfs (rev2) Patchwork
` (5 subsequent siblings)
10 siblings, 1 reply; 14+ messages in thread
From: Ville Syrjala @ 2026-04-14 14:22 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula, Jouni Högander, Maarten Lankhorst
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The display reset only happens from the full reset path. We must
therefore force execlist submission to always take the full reset
path and not the per-engine reset path. Currently the display
reset tests are in fact not testing display resets at all on
platforms using execlist submission. Ring submission and GuC
submission always take the full path anyway.
Also disable the engine reset inside __intel_gt_set_wedged() so
that we simulate the intel_gt_gpu_reset_clobbers_display() behavior
as closely as possible also when taking the full wedge path.
The slight race between the separate intel_display_reset_test()
calls in the overall reset path is harmless. kms_busy will keep
the modparam fixed during the test, and even if someone were to
fiddle with the modparam manually nothing bad should happen if
the calls return different values.
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Jouni Högander <jouni.hogander@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/gt/intel_reset.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_reset.c b/drivers/gpu/drm/i915/gt/intel_reset.c
index a1e6aaca8c9b..0b5f3fc58009 100644
--- a/drivers/gpu/drm/i915/gt/intel_reset.c
+++ b/drivers/gpu/drm/i915/gt/intel_reset.c
@@ -967,6 +967,7 @@ static void nop_submit_request(struct i915_request *request)
static void __intel_gt_set_wedged(struct intel_gt *gt)
{
+ struct intel_display *display = gt->i915->display;
struct intel_engine_cs *engine;
intel_engine_mask_t awake;
enum intel_engine_id id;
@@ -984,7 +985,8 @@ static void __intel_gt_set_wedged(struct intel_gt *gt)
awake = reset_prepare(gt);
/* Even if the GPU reset fails, it should still stop the engines */
- if (!intel_gt_gpu_reset_clobbers_display(gt))
+ if (!intel_gt_gpu_reset_clobbers_display(gt) &&
+ !intel_display_reset_test(display))
intel_gt_reset_all_engines(gt);
for_each_engine(engine, gt, id)
@@ -1506,9 +1508,10 @@ void intel_gt_handle_error(struct intel_gt *gt,
/*
* Try engine reset when available. We fall back to full reset if
- * single reset fails.
+ * single reset fails. Display reset test needs a full reset.
*/
- if (!intel_uc_uses_guc_submission(>->uc) &&
+ if (!intel_display_reset_test(gt->i915->display) &&
+ !intel_uc_uses_guc_submission(>->uc) &&
intel_has_reset_engine(gt) && !intel_gt_is_wedged(gt)) {
local_bh_disable();
for_each_engine_masked(engine, gt, engine_mask, tmp) {
--
2.52.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH v2 5/5] drm/i915/reset: Disable execlist per-engine reset for display reset tests
2026-04-14 14:22 ` [PATCH v2 5/5] drm/i915/reset: Disable execlist per-engine reset for display reset tests Ville Syrjala
@ 2026-04-14 15:56 ` Jani Nikula
0 siblings, 0 replies; 14+ messages in thread
From: Jani Nikula @ 2026-04-14 15:56 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe, Jouni Högander, Maarten Lankhorst
On Tue, 14 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The display reset only happens from the full reset path. We must
> therefore force execlist submission to always take the full reset
> path and not the per-engine reset path. Currently the display
> reset tests are in fact not testing display resets at all on
> platforms using execlist submission. Ring submission and GuC
> submission always take the full path anyway.
>
> Also disable the engine reset inside __intel_gt_set_wedged() so
> that we simulate the intel_gt_gpu_reset_clobbers_display() behavior
> as closely as possible also when taking the full wedge path.
>
> The slight race between the separate intel_display_reset_test()
> calls in the overall reset path is harmless. kms_busy will keep
> the modparam fixed during the test, and even if someone were to
> fiddle with the modparam manually nothing bad should happen if
> the calls return different values.
>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Cc: Jouni Högander <jouni.hogander@intel.com>
> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Not an expert here, but seems reasonable.
Acked-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/gt/intel_reset.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/intel_reset.c b/drivers/gpu/drm/i915/gt/intel_reset.c
> index a1e6aaca8c9b..0b5f3fc58009 100644
> --- a/drivers/gpu/drm/i915/gt/intel_reset.c
> +++ b/drivers/gpu/drm/i915/gt/intel_reset.c
> @@ -967,6 +967,7 @@ static void nop_submit_request(struct i915_request *request)
>
> static void __intel_gt_set_wedged(struct intel_gt *gt)
> {
> + struct intel_display *display = gt->i915->display;
> struct intel_engine_cs *engine;
> intel_engine_mask_t awake;
> enum intel_engine_id id;
> @@ -984,7 +985,8 @@ static void __intel_gt_set_wedged(struct intel_gt *gt)
> awake = reset_prepare(gt);
>
> /* Even if the GPU reset fails, it should still stop the engines */
> - if (!intel_gt_gpu_reset_clobbers_display(gt))
> + if (!intel_gt_gpu_reset_clobbers_display(gt) &&
> + !intel_display_reset_test(display))
> intel_gt_reset_all_engines(gt);
>
> for_each_engine(engine, gt, id)
> @@ -1506,9 +1508,10 @@ void intel_gt_handle_error(struct intel_gt *gt,
>
> /*
> * Try engine reset when available. We fall back to full reset if
> - * single reset fails.
> + * single reset fails. Display reset test needs a full reset.
> */
> - if (!intel_uc_uses_guc_submission(>->uc) &&
> + if (!intel_display_reset_test(gt->i915->display) &&
> + !intel_uc_uses_guc_submission(>->uc) &&
> intel_has_reset_engine(gt) && !intel_gt_is_wedged(gt)) {
> local_bh_disable();
> for_each_engine_masked(engine, gt, engine_mask, tmp) {
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for drm/i915/reset: Expose "display_reset_count" in debugfs (rev2)
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
` (4 preceding siblings ...)
2026-04-14 14:22 ` [PATCH v2 5/5] drm/i915/reset: Disable execlist per-engine reset for display reset tests Ville Syrjala
@ 2026-04-14 14:32 ` Patchwork
2026-04-14 15:40 ` ✓ Xe.CI.BAT: " Patchwork
` (4 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-14 14:32 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
== Series Details ==
Series: drm/i915/reset: Expose "display_reset_count" in debugfs (rev2)
URL : https://patchwork.freedesktop.org/series/164676/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[14:31:02] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:31:09] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:31:45] Starting KUnit Kernel (1/1)...
[14:31:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:31:45] ================== guc_buf (11 subtests) ===================
[14:31:45] [PASSED] test_smallest
[14:31:45] [PASSED] test_largest
[14:31:45] [PASSED] test_granular
[14:31:45] [PASSED] test_unique
[14:31:45] [PASSED] test_overlap
[14:31:45] [PASSED] test_reusable
[14:31:45] [PASSED] test_too_big
[14:31:45] [PASSED] test_flush
[14:31:45] [PASSED] test_lookup
[14:31:45] [PASSED] test_data
[14:31:45] [PASSED] test_class
[14:31:45] ===================== [PASSED] guc_buf =====================
[14:31:45] =================== guc_dbm (7 subtests) ===================
[14:31:45] [PASSED] test_empty
[14:31:45] [PASSED] test_default
[14:31:45] ======================== test_size ========================
[14:31:45] [PASSED] 4
[14:31:45] [PASSED] 8
[14:31:45] [PASSED] 32
[14:31:45] [PASSED] 256
[14:31:45] ==================== [PASSED] test_size ====================
[14:31:45] ======================= test_reuse ========================
[14:31:45] [PASSED] 4
[14:31:45] [PASSED] 8
[14:31:45] [PASSED] 32
[14:31:45] [PASSED] 256
[14:31:45] =================== [PASSED] test_reuse ====================
[14:31:45] =================== test_range_overlap ====================
[14:31:45] [PASSED] 4
[14:31:45] [PASSED] 8
[14:31:45] [PASSED] 32
[14:31:45] [PASSED] 256
[14:31:45] =============== [PASSED] test_range_overlap ================
[14:31:45] =================== test_range_compact ====================
[14:31:45] [PASSED] 4
[14:31:45] [PASSED] 8
[14:31:45] [PASSED] 32
[14:31:45] [PASSED] 256
[14:31:45] =============== [PASSED] test_range_compact ================
[14:31:45] ==================== test_range_spare =====================
[14:31:45] [PASSED] 4
[14:31:45] [PASSED] 8
[14:31:45] [PASSED] 32
[14:31:45] [PASSED] 256
[14:31:45] ================ [PASSED] test_range_spare =================
[14:31:45] ===================== [PASSED] guc_dbm =====================
[14:31:45] =================== guc_idm (6 subtests) ===================
[14:31:45] [PASSED] bad_init
[14:31:45] [PASSED] no_init
[14:31:45] [PASSED] init_fini
[14:31:45] [PASSED] check_used
[14:31:46] [PASSED] check_quota
[14:31:46] [PASSED] check_all
[14:31:46] ===================== [PASSED] guc_idm =====================
[14:31:46] ================== no_relay (3 subtests) ===================
[14:31:46] [PASSED] xe_drops_guc2pf_if_not_ready
[14:31:46] [PASSED] xe_drops_guc2vf_if_not_ready
[14:31:46] [PASSED] xe_rejects_send_if_not_ready
[14:31:46] ==================== [PASSED] no_relay =====================
[14:31:46] ================== pf_relay (14 subtests) ==================
[14:31:46] [PASSED] pf_rejects_guc2pf_too_short
[14:31:46] [PASSED] pf_rejects_guc2pf_too_long
[14:31:46] [PASSED] pf_rejects_guc2pf_no_payload
[14:31:46] [PASSED] pf_fails_no_payload
[14:31:46] [PASSED] pf_fails_bad_origin
[14:31:46] [PASSED] pf_fails_bad_type
[14:31:46] [PASSED] pf_txn_reports_error
[14:31:46] [PASSED] pf_txn_sends_pf2guc
[14:31:46] [PASSED] pf_sends_pf2guc
[14:31:46] [SKIPPED] pf_loopback_nop
[14:31:46] [SKIPPED] pf_loopback_echo
[14:31:46] [SKIPPED] pf_loopback_fail
[14:31:46] [SKIPPED] pf_loopback_busy
[14:31:46] [SKIPPED] pf_loopback_retry
[14:31:46] ==================== [PASSED] pf_relay =====================
[14:31:46] ================== vf_relay (3 subtests) ===================
[14:31:46] [PASSED] vf_rejects_guc2vf_too_short
[14:31:46] [PASSED] vf_rejects_guc2vf_too_long
[14:31:46] [PASSED] vf_rejects_guc2vf_no_payload
[14:31:46] ==================== [PASSED] vf_relay =====================
[14:31:46] ================ pf_gt_config (9 subtests) =================
[14:31:46] [PASSED] fair_contexts_1vf
[14:31:46] [PASSED] fair_doorbells_1vf
[14:31:46] [PASSED] fair_ggtt_1vf
[14:31:46] ====================== fair_vram_1vf ======================
[14:31:46] [PASSED] 3.50 GiB
[14:31:46] [PASSED] 11.5 GiB
[14:31:46] [PASSED] 15.5 GiB
[14:31:46] [PASSED] 31.5 GiB
[14:31:46] [PASSED] 63.5 GiB
[14:31:46] [PASSED] 1.91 GiB
[14:31:46] ================== [PASSED] fair_vram_1vf ==================
[14:31:46] ================ fair_vram_1vf_admin_only =================
[14:31:46] [PASSED] 3.50 GiB
[14:31:46] [PASSED] 11.5 GiB
[14:31:46] [PASSED] 15.5 GiB
[14:31:46] [PASSED] 31.5 GiB
[14:31:46] [PASSED] 63.5 GiB
[14:31:46] [PASSED] 1.91 GiB
[14:31:46] ============ [PASSED] fair_vram_1vf_admin_only =============
[14:31:46] ====================== fair_contexts ======================
[14:31:46] [PASSED] 1 VF
[14:31:46] [PASSED] 2 VFs
[14:31:46] [PASSED] 3 VFs
[14:31:46] [PASSED] 4 VFs
[14:31:46] [PASSED] 5 VFs
[14:31:46] [PASSED] 6 VFs
[14:31:46] [PASSED] 7 VFs
[14:31:46] [PASSED] 8 VFs
[14:31:46] [PASSED] 9 VFs
[14:31:46] [PASSED] 10 VFs
[14:31:46] [PASSED] 11 VFs
[14:31:46] [PASSED] 12 VFs
[14:31:46] [PASSED] 13 VFs
[14:31:46] [PASSED] 14 VFs
[14:31:46] [PASSED] 15 VFs
[14:31:46] [PASSED] 16 VFs
[14:31:46] [PASSED] 17 VFs
[14:31:46] [PASSED] 18 VFs
[14:31:46] [PASSED] 19 VFs
[14:31:46] [PASSED] 20 VFs
[14:31:46] [PASSED] 21 VFs
[14:31:46] [PASSED] 22 VFs
[14:31:46] [PASSED] 23 VFs
[14:31:46] [PASSED] 24 VFs
[14:31:46] [PASSED] 25 VFs
[14:31:46] [PASSED] 26 VFs
[14:31:46] [PASSED] 27 VFs
[14:31:46] [PASSED] 28 VFs
[14:31:46] [PASSED] 29 VFs
[14:31:46] [PASSED] 30 VFs
[14:31:46] [PASSED] 31 VFs
[14:31:46] [PASSED] 32 VFs
[14:31:46] [PASSED] 33 VFs
[14:31:46] [PASSED] 34 VFs
[14:31:46] [PASSED] 35 VFs
[14:31:46] [PASSED] 36 VFs
[14:31:46] [PASSED] 37 VFs
[14:31:46] [PASSED] 38 VFs
[14:31:46] [PASSED] 39 VFs
[14:31:46] [PASSED] 40 VFs
[14:31:46] [PASSED] 41 VFs
[14:31:46] [PASSED] 42 VFs
[14:31:46] [PASSED] 43 VFs
[14:31:46] [PASSED] 44 VFs
[14:31:46] [PASSED] 45 VFs
[14:31:46] [PASSED] 46 VFs
[14:31:46] [PASSED] 47 VFs
[14:31:46] [PASSED] 48 VFs
[14:31:46] [PASSED] 49 VFs
[14:31:46] [PASSED] 50 VFs
[14:31:46] [PASSED] 51 VFs
[14:31:46] [PASSED] 52 VFs
[14:31:46] [PASSED] 53 VFs
[14:31:46] [PASSED] 54 VFs
[14:31:46] [PASSED] 55 VFs
[14:31:46] [PASSED] 56 VFs
[14:31:46] [PASSED] 57 VFs
[14:31:46] [PASSED] 58 VFs
[14:31:46] [PASSED] 59 VFs
[14:31:46] [PASSED] 60 VFs
[14:31:46] [PASSED] 61 VFs
[14:31:46] [PASSED] 62 VFs
[14:31:46] [PASSED] 63 VFs
[14:31:46] ================== [PASSED] fair_contexts ==================
[14:31:46] ===================== fair_doorbells ======================
[14:31:46] [PASSED] 1 VF
[14:31:46] [PASSED] 2 VFs
[14:31:46] [PASSED] 3 VFs
[14:31:46] [PASSED] 4 VFs
[14:31:46] [PASSED] 5 VFs
[14:31:46] [PASSED] 6 VFs
[14:31:46] [PASSED] 7 VFs
[14:31:46] [PASSED] 8 VFs
[14:31:46] [PASSED] 9 VFs
[14:31:46] [PASSED] 10 VFs
[14:31:46] [PASSED] 11 VFs
[14:31:46] [PASSED] 12 VFs
[14:31:46] [PASSED] 13 VFs
[14:31:46] [PASSED] 14 VFs
[14:31:46] [PASSED] 15 VFs
[14:31:46] [PASSED] 16 VFs
[14:31:46] [PASSED] 17 VFs
[14:31:46] [PASSED] 18 VFs
[14:31:46] [PASSED] 19 VFs
[14:31:46] [PASSED] 20 VFs
[14:31:46] [PASSED] 21 VFs
[14:31:46] [PASSED] 22 VFs
[14:31:46] [PASSED] 23 VFs
[14:31:46] [PASSED] 24 VFs
[14:31:46] [PASSED] 25 VFs
[14:31:46] [PASSED] 26 VFs
[14:31:46] [PASSED] 27 VFs
[14:31:46] [PASSED] 28 VFs
[14:31:46] [PASSED] 29 VFs
[14:31:46] [PASSED] 30 VFs
[14:31:46] [PASSED] 31 VFs
[14:31:46] [PASSED] 32 VFs
[14:31:46] [PASSED] 33 VFs
[14:31:46] [PASSED] 34 VFs
[14:31:46] [PASSED] 35 VFs
[14:31:46] [PASSED] 36 VFs
[14:31:46] [PASSED] 37 VFs
[14:31:46] [PASSED] 38 VFs
[14:31:46] [PASSED] 39 VFs
[14:31:46] [PASSED] 40 VFs
[14:31:46] [PASSED] 41 VFs
[14:31:46] [PASSED] 42 VFs
[14:31:46] [PASSED] 43 VFs
[14:31:46] [PASSED] 44 VFs
[14:31:46] [PASSED] 45 VFs
[14:31:46] [PASSED] 46 VFs
[14:31:46] [PASSED] 47 VFs
[14:31:46] [PASSED] 48 VFs
[14:31:46] [PASSED] 49 VFs
[14:31:46] [PASSED] 50 VFs
[14:31:46] [PASSED] 51 VFs
[14:31:46] [PASSED] 52 VFs
[14:31:46] [PASSED] 53 VFs
[14:31:46] [PASSED] 54 VFs
[14:31:46] [PASSED] 55 VFs
[14:31:46] [PASSED] 56 VFs
[14:31:46] [PASSED] 57 VFs
[14:31:46] [PASSED] 58 VFs
[14:31:46] [PASSED] 59 VFs
[14:31:46] [PASSED] 60 VFs
[14:31:46] [PASSED] 61 VFs
[14:31:46] [PASSED] 62 VFs
[14:31:46] [PASSED] 63 VFs
[14:31:46] ================= [PASSED] fair_doorbells ==================
[14:31:46] ======================== fair_ggtt ========================
[14:31:46] [PASSED] 1 VF
[14:31:46] [PASSED] 2 VFs
[14:31:46] [PASSED] 3 VFs
[14:31:46] [PASSED] 4 VFs
[14:31:46] [PASSED] 5 VFs
[14:31:46] [PASSED] 6 VFs
[14:31:46] [PASSED] 7 VFs
[14:31:46] [PASSED] 8 VFs
[14:31:46] [PASSED] 9 VFs
[14:31:46] [PASSED] 10 VFs
[14:31:46] [PASSED] 11 VFs
[14:31:46] [PASSED] 12 VFs
[14:31:46] [PASSED] 13 VFs
[14:31:46] [PASSED] 14 VFs
[14:31:46] [PASSED] 15 VFs
[14:31:46] [PASSED] 16 VFs
[14:31:46] [PASSED] 17 VFs
[14:31:46] [PASSED] 18 VFs
[14:31:46] [PASSED] 19 VFs
[14:31:46] [PASSED] 20 VFs
[14:31:46] [PASSED] 21 VFs
[14:31:46] [PASSED] 22 VFs
[14:31:46] [PASSED] 23 VFs
[14:31:46] [PASSED] 24 VFs
[14:31:46] [PASSED] 25 VFs
[14:31:46] [PASSED] 26 VFs
[14:31:46] [PASSED] 27 VFs
[14:31:46] [PASSED] 28 VFs
[14:31:46] [PASSED] 29 VFs
[14:31:46] [PASSED] 30 VFs
[14:31:46] [PASSED] 31 VFs
[14:31:46] [PASSED] 32 VFs
[14:31:46] [PASSED] 33 VFs
[14:31:46] [PASSED] 34 VFs
[14:31:46] [PASSED] 35 VFs
[14:31:46] [PASSED] 36 VFs
[14:31:46] [PASSED] 37 VFs
[14:31:46] [PASSED] 38 VFs
[14:31:46] [PASSED] 39 VFs
[14:31:46] [PASSED] 40 VFs
[14:31:46] [PASSED] 41 VFs
[14:31:46] [PASSED] 42 VFs
[14:31:46] [PASSED] 43 VFs
[14:31:46] [PASSED] 44 VFs
[14:31:46] [PASSED] 45 VFs
[14:31:46] [PASSED] 46 VFs
[14:31:46] [PASSED] 47 VFs
[14:31:46] [PASSED] 48 VFs
[14:31:46] [PASSED] 49 VFs
[14:31:46] [PASSED] 50 VFs
[14:31:46] [PASSED] 51 VFs
[14:31:46] [PASSED] 52 VFs
[14:31:46] [PASSED] 53 VFs
[14:31:46] [PASSED] 54 VFs
[14:31:46] [PASSED] 55 VFs
[14:31:46] [PASSED] 56 VFs
[14:31:46] [PASSED] 57 VFs
[14:31:46] [PASSED] 58 VFs
[14:31:46] [PASSED] 59 VFs
[14:31:46] [PASSED] 60 VFs
[14:31:46] [PASSED] 61 VFs
[14:31:46] [PASSED] 62 VFs
[14:31:46] [PASSED] 63 VFs
[14:31:46] ==================== [PASSED] fair_ggtt ====================
[14:31:46] ======================== fair_vram ========================
[14:31:46] [PASSED] 1 VF
[14:31:46] [PASSED] 2 VFs
[14:31:46] [PASSED] 3 VFs
[14:31:46] [PASSED] 4 VFs
[14:31:46] [PASSED] 5 VFs
[14:31:46] [PASSED] 6 VFs
[14:31:46] [PASSED] 7 VFs
[14:31:46] [PASSED] 8 VFs
[14:31:46] [PASSED] 9 VFs
[14:31:46] [PASSED] 10 VFs
[14:31:46] [PASSED] 11 VFs
[14:31:46] [PASSED] 12 VFs
[14:31:46] [PASSED] 13 VFs
[14:31:46] [PASSED] 14 VFs
[14:31:46] [PASSED] 15 VFs
[14:31:46] [PASSED] 16 VFs
[14:31:46] [PASSED] 17 VFs
[14:31:46] [PASSED] 18 VFs
[14:31:46] [PASSED] 19 VFs
[14:31:46] [PASSED] 20 VFs
[14:31:46] [PASSED] 21 VFs
[14:31:46] [PASSED] 22 VFs
[14:31:46] [PASSED] 23 VFs
[14:31:46] [PASSED] 24 VFs
[14:31:46] [PASSED] 25 VFs
[14:31:46] [PASSED] 26 VFs
[14:31:46] [PASSED] 27 VFs
[14:31:46] [PASSED] 28 VFs
[14:31:46] [PASSED] 29 VFs
[14:31:46] [PASSED] 30 VFs
[14:31:46] [PASSED] 31 VFs
[14:31:46] [PASSED] 32 VFs
[14:31:46] [PASSED] 33 VFs
[14:31:46] [PASSED] 34 VFs
[14:31:46] [PASSED] 35 VFs
[14:31:46] [PASSED] 36 VFs
[14:31:46] [PASSED] 37 VFs
[14:31:46] [PASSED] 38 VFs
[14:31:46] [PASSED] 39 VFs
[14:31:46] [PASSED] 40 VFs
[14:31:46] [PASSED] 41 VFs
[14:31:46] [PASSED] 42 VFs
[14:31:46] [PASSED] 43 VFs
[14:31:46] [PASSED] 44 VFs
[14:31:46] [PASSED] 45 VFs
[14:31:46] [PASSED] 46 VFs
[14:31:46] [PASSED] 47 VFs
[14:31:46] [PASSED] 48 VFs
[14:31:46] [PASSED] 49 VFs
[14:31:46] [PASSED] 50 VFs
[14:31:46] [PASSED] 51 VFs
[14:31:46] [PASSED] 52 VFs
[14:31:46] [PASSED] 53 VFs
[14:31:46] [PASSED] 54 VFs
[14:31:46] [PASSED] 55 VFs
[14:31:46] [PASSED] 56 VFs
[14:31:46] [PASSED] 57 VFs
[14:31:46] [PASSED] 58 VFs
[14:31:46] [PASSED] 59 VFs
[14:31:46] [PASSED] 60 VFs
[14:31:46] [PASSED] 61 VFs
[14:31:46] [PASSED] 62 VFs
[14:31:46] [PASSED] 63 VFs
[14:31:46] ==================== [PASSED] fair_vram ====================
[14:31:46] ================== [PASSED] pf_gt_config ===================
[14:31:46] ===================== lmtt (1 subtest) =====================
[14:31:46] ======================== test_ops =========================
[14:31:46] [PASSED] 2-level
[14:31:46] [PASSED] multi-level
[14:31:46] ==================== [PASSED] test_ops =====================
[14:31:46] ====================== [PASSED] lmtt =======================
[14:31:46] ================= pf_service (11 subtests) =================
[14:31:46] [PASSED] pf_negotiate_any
[14:31:46] [PASSED] pf_negotiate_base_match
[14:31:46] [PASSED] pf_negotiate_base_newer
[14:31:46] [PASSED] pf_negotiate_base_next
[14:31:46] [SKIPPED] pf_negotiate_base_older
[14:31:46] [PASSED] pf_negotiate_base_prev
[14:31:46] [PASSED] pf_negotiate_latest_match
[14:31:46] [PASSED] pf_negotiate_latest_newer
[14:31:46] [PASSED] pf_negotiate_latest_next
[14:31:46] [SKIPPED] pf_negotiate_latest_older
[14:31:46] [SKIPPED] pf_negotiate_latest_prev
[14:31:46] =================== [PASSED] pf_service ====================
[14:31:46] ================= xe_guc_g2g (2 subtests) ==================
[14:31:46] ============== xe_live_guc_g2g_kunit_default ==============
[14:31:46] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[14:31:46] ============== xe_live_guc_g2g_kunit_allmem ===============
[14:31:46] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[14:31:46] =================== [SKIPPED] xe_guc_g2g ===================
[14:31:46] =================== xe_mocs (2 subtests) ===================
[14:31:46] ================ xe_live_mocs_kernel_kunit ================
[14:31:46] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[14:31:46] ================ xe_live_mocs_reset_kunit =================
[14:31:46] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[14:31:46] ==================== [SKIPPED] xe_mocs =====================
[14:31:46] ================= xe_migrate (2 subtests) ==================
[14:31:46] ================= xe_migrate_sanity_kunit =================
[14:31:46] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[14:31:46] ================== xe_validate_ccs_kunit ==================
[14:31:46] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[14:31:46] =================== [SKIPPED] xe_migrate ===================
[14:31:46] ================== xe_dma_buf (1 subtest) ==================
[14:31:46] ==================== xe_dma_buf_kunit =====================
[14:31:46] ================ [SKIPPED] xe_dma_buf_kunit ================
[14:31:46] =================== [SKIPPED] xe_dma_buf ===================
[14:31:46] ================= xe_bo_shrink (1 subtest) =================
[14:31:46] =================== xe_bo_shrink_kunit ====================
[14:31:46] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[14:31:46] ================== [SKIPPED] xe_bo_shrink ==================
[14:31:46] ==================== xe_bo (2 subtests) ====================
[14:31:46] ================== xe_ccs_migrate_kunit ===================
[14:31:46] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[14:31:46] ==================== xe_bo_evict_kunit ====================
[14:31:46] =============== [SKIPPED] xe_bo_evict_kunit ================
[14:31:46] ===================== [SKIPPED] xe_bo ======================
[14:31:46] ==================== args (13 subtests) ====================
[14:31:46] [PASSED] count_args_test
[14:31:46] [PASSED] call_args_example
[14:31:46] [PASSED] call_args_test
[14:31:46] [PASSED] drop_first_arg_example
[14:31:46] [PASSED] drop_first_arg_test
[14:31:46] [PASSED] first_arg_example
[14:31:46] [PASSED] first_arg_test
[14:31:46] [PASSED] last_arg_example
[14:31:46] [PASSED] last_arg_test
[14:31:46] [PASSED] pick_arg_example
[14:31:46] [PASSED] if_args_example
[14:31:46] [PASSED] if_args_test
[14:31:46] [PASSED] sep_comma_example
[14:31:46] ====================== [PASSED] args =======================
[14:31:46] =================== xe_pci (3 subtests) ====================
[14:31:46] ==================== check_graphics_ip ====================
[14:31:46] [PASSED] 12.00 Xe_LP
[14:31:46] [PASSED] 12.10 Xe_LP+
[14:31:46] [PASSED] 12.55 Xe_HPG
[14:31:46] [PASSED] 12.60 Xe_HPC
[14:31:46] [PASSED] 12.70 Xe_LPG
[14:31:46] [PASSED] 12.71 Xe_LPG
[14:31:46] [PASSED] 12.74 Xe_LPG+
[14:31:46] [PASSED] 20.01 Xe2_HPG
[14:31:46] [PASSED] 20.02 Xe2_HPG
[14:31:46] [PASSED] 20.04 Xe2_LPG
[14:31:46] [PASSED] 30.00 Xe3_LPG
[14:31:46] [PASSED] 30.01 Xe3_LPG
[14:31:46] [PASSED] 30.03 Xe3_LPG
[14:31:46] [PASSED] 30.04 Xe3_LPG
[14:31:46] [PASSED] 30.05 Xe3_LPG
[14:31:46] [PASSED] 35.10 Xe3p_LPG
[14:31:46] [PASSED] 35.11 Xe3p_XPC
[14:31:46] ================ [PASSED] check_graphics_ip ================
[14:31:46] ===================== check_media_ip ======================
[14:31:46] [PASSED] 12.00 Xe_M
[14:31:46] [PASSED] 12.55 Xe_HPM
[14:31:46] [PASSED] 13.00 Xe_LPM+
[14:31:46] [PASSED] 13.01 Xe2_HPM
[14:31:46] [PASSED] 20.00 Xe2_LPM
[14:31:46] [PASSED] 30.00 Xe3_LPM
[14:31:46] [PASSED] 30.02 Xe3_LPM
[14:31:46] [PASSED] 35.00 Xe3p_LPM
[14:31:46] [PASSED] 35.03 Xe3p_HPM
[14:31:46] ================= [PASSED] check_media_ip ==================
[14:31:46] =================== check_platform_desc ===================
[14:31:46] [PASSED] 0x9A60 (TIGERLAKE)
[14:31:46] [PASSED] 0x9A68 (TIGERLAKE)
[14:31:46] [PASSED] 0x9A70 (TIGERLAKE)
[14:31:46] [PASSED] 0x9A40 (TIGERLAKE)
[14:31:46] [PASSED] 0x9A49 (TIGERLAKE)
[14:31:46] [PASSED] 0x9A59 (TIGERLAKE)
[14:31:46] [PASSED] 0x9A78 (TIGERLAKE)
[14:31:46] [PASSED] 0x9AC0 (TIGERLAKE)
[14:31:46] [PASSED] 0x9AC9 (TIGERLAKE)
[14:31:46] [PASSED] 0x9AD9 (TIGERLAKE)
[14:31:46] [PASSED] 0x9AF8 (TIGERLAKE)
[14:31:46] [PASSED] 0x4C80 (ROCKETLAKE)
[14:31:46] [PASSED] 0x4C8A (ROCKETLAKE)
[14:31:46] [PASSED] 0x4C8B (ROCKETLAKE)
[14:31:46] [PASSED] 0x4C8C (ROCKETLAKE)
[14:31:46] [PASSED] 0x4C90 (ROCKETLAKE)
[14:31:46] [PASSED] 0x4C9A (ROCKETLAKE)
[14:31:46] [PASSED] 0x4680 (ALDERLAKE_S)
[14:31:46] [PASSED] 0x4682 (ALDERLAKE_S)
[14:31:46] [PASSED] 0x4688 (ALDERLAKE_S)
[14:31:46] [PASSED] 0x468A (ALDERLAKE_S)
[14:31:46] [PASSED] 0x468B (ALDERLAKE_S)
[14:31:46] [PASSED] 0x4690 (ALDERLAKE_S)
[14:31:46] [PASSED] 0x4692 (ALDERLAKE_S)
[14:31:46] [PASSED] 0x4693 (ALDERLAKE_S)
[14:31:46] [PASSED] 0x46A0 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46A1 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46A2 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46A3 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46A6 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46A8 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46AA (ALDERLAKE_P)
[14:31:46] [PASSED] 0x462A (ALDERLAKE_P)
[14:31:46] [PASSED] 0x4626 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x4628 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46B0 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46B1 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46B2 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46B3 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46C0 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46C1 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46C2 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46C3 (ALDERLAKE_P)
[14:31:46] [PASSED] 0x46D0 (ALDERLAKE_N)
[14:31:46] [PASSED] 0x46D1 (ALDERLAKE_N)
[14:31:46] [PASSED] 0x46D2 (ALDERLAKE_N)
[14:31:46] [PASSED] 0x46D3 (ALDERLAKE_N)
[14:31:46] [PASSED] 0x46D4 (ALDERLAKE_N)
[14:31:46] [PASSED] 0xA721 (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA7A1 (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA7A9 (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA7AC (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA7AD (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA720 (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA7A0 (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA7A8 (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA7AA (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA7AB (ALDERLAKE_P)
[14:31:46] [PASSED] 0xA780 (ALDERLAKE_S)
[14:31:46] [PASSED] 0xA781 (ALDERLAKE_S)
[14:31:46] [PASSED] 0xA782 (ALDERLAKE_S)
[14:31:46] [PASSED] 0xA783 (ALDERLAKE_S)
[14:31:46] [PASSED] 0xA788 (ALDERLAKE_S)
[14:31:46] [PASSED] 0xA789 (ALDERLAKE_S)
[14:31:46] [PASSED] 0xA78A (ALDERLAKE_S)
[14:31:46] [PASSED] 0xA78B (ALDERLAKE_S)
[14:31:46] [PASSED] 0x4905 (DG1)
[14:31:46] [PASSED] 0x4906 (DG1)
[14:31:46] [PASSED] 0x4907 (DG1)
[14:31:46] [PASSED] 0x4908 (DG1)
[14:31:46] [PASSED] 0x4909 (DG1)
[14:31:46] [PASSED] 0x56C0 (DG2)
[14:31:46] [PASSED] 0x56C2 (DG2)
[14:31:46] [PASSED] 0x56C1 (DG2)
[14:31:46] [PASSED] 0x7D51 (METEORLAKE)
[14:31:46] [PASSED] 0x7DD1 (METEORLAKE)
[14:31:46] [PASSED] 0x7D41 (METEORLAKE)
[14:31:46] [PASSED] 0x7D67 (METEORLAKE)
[14:31:46] [PASSED] 0xB640 (METEORLAKE)
[14:31:46] [PASSED] 0x56A0 (DG2)
[14:31:46] [PASSED] 0x56A1 (DG2)
[14:31:46] [PASSED] 0x56A2 (DG2)
[14:31:46] [PASSED] 0x56BE (DG2)
[14:31:46] [PASSED] 0x56BF (DG2)
[14:31:46] [PASSED] 0x5690 (DG2)
[14:31:46] [PASSED] 0x5691 (DG2)
[14:31:46] [PASSED] 0x5692 (DG2)
[14:31:46] [PASSED] 0x56A5 (DG2)
[14:31:46] [PASSED] 0x56A6 (DG2)
[14:31:46] [PASSED] 0x56B0 (DG2)
[14:31:46] [PASSED] 0x56B1 (DG2)
[14:31:46] [PASSED] 0x56BA (DG2)
[14:31:46] [PASSED] 0x56BB (DG2)
[14:31:46] [PASSED] 0x56BC (DG2)
[14:31:46] [PASSED] 0x56BD (DG2)
[14:31:46] [PASSED] 0x5693 (DG2)
[14:31:46] [PASSED] 0x5694 (DG2)
[14:31:46] [PASSED] 0x5695 (DG2)
[14:31:46] [PASSED] 0x56A3 (DG2)
[14:31:46] [PASSED] 0x56A4 (DG2)
[14:31:46] [PASSED] 0x56B2 (DG2)
[14:31:46] [PASSED] 0x56B3 (DG2)
[14:31:46] [PASSED] 0x5696 (DG2)
[14:31:46] [PASSED] 0x5697 (DG2)
[14:31:46] [PASSED] 0xB69 (PVC)
[14:31:46] [PASSED] 0xB6E (PVC)
[14:31:46] [PASSED] 0xBD4 (PVC)
[14:31:46] [PASSED] 0xBD5 (PVC)
[14:31:46] [PASSED] 0xBD6 (PVC)
[14:31:46] [PASSED] 0xBD7 (PVC)
[14:31:46] [PASSED] 0xBD8 (PVC)
[14:31:46] [PASSED] 0xBD9 (PVC)
[14:31:46] [PASSED] 0xBDA (PVC)
[14:31:46] [PASSED] 0xBDB (PVC)
[14:31:46] [PASSED] 0xBE0 (PVC)
[14:31:46] [PASSED] 0xBE1 (PVC)
[14:31:46] [PASSED] 0xBE5 (PVC)
[14:31:46] [PASSED] 0x7D40 (METEORLAKE)
[14:31:46] [PASSED] 0x7D45 (METEORLAKE)
[14:31:46] [PASSED] 0x7D55 (METEORLAKE)
[14:31:46] [PASSED] 0x7D60 (METEORLAKE)
[14:31:46] [PASSED] 0x7DD5 (METEORLAKE)
[14:31:46] [PASSED] 0x6420 (LUNARLAKE)
[14:31:46] [PASSED] 0x64A0 (LUNARLAKE)
[14:31:46] [PASSED] 0x64B0 (LUNARLAKE)
[14:31:46] [PASSED] 0xE202 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE209 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE20B (BATTLEMAGE)
[14:31:46] [PASSED] 0xE20C (BATTLEMAGE)
[14:31:46] [PASSED] 0xE20D (BATTLEMAGE)
[14:31:46] [PASSED] 0xE210 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE211 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE212 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE216 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE220 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE221 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE222 (BATTLEMAGE)
[14:31:46] [PASSED] 0xE223 (BATTLEMAGE)
[14:31:46] [PASSED] 0xB080 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB081 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB082 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB083 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB084 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB085 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB086 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB087 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB08F (PANTHERLAKE)
[14:31:46] [PASSED] 0xB090 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB0A0 (PANTHERLAKE)
[14:31:46] [PASSED] 0xB0B0 (PANTHERLAKE)
[14:31:46] [PASSED] 0xFD80 (PANTHERLAKE)
[14:31:46] [PASSED] 0xFD81 (PANTHERLAKE)
[14:31:46] [PASSED] 0xD740 (NOVALAKE_S)
[14:31:46] [PASSED] 0xD741 (NOVALAKE_S)
[14:31:46] [PASSED] 0xD742 (NOVALAKE_S)
[14:31:46] [PASSED] 0xD743 (NOVALAKE_S)
[14:31:46] [PASSED] 0xD744 (NOVALAKE_S)
[14:31:46] [PASSED] 0xD745 (NOVALAKE_S)
[14:31:46] [PASSED] 0x674C (CRESCENTISLAND)
[14:31:46] [PASSED] 0xD750 (NOVALAKE_P)
[14:31:46] [PASSED] 0xD751 (NOVALAKE_P)
[14:31:46] [PASSED] 0xD752 (NOVALAKE_P)
[14:31:46] [PASSED] 0xD753 (NOVALAKE_P)
[14:31:46] [PASSED] 0xD754 (NOVALAKE_P)
[14:31:46] [PASSED] 0xD755 (NOVALAKE_P)
[14:31:46] [PASSED] 0xD756 (NOVALAKE_P)
[14:31:46] [PASSED] 0xD757 (NOVALAKE_P)
[14:31:46] [PASSED] 0xD75F (NOVALAKE_P)
[14:31:46] =============== [PASSED] check_platform_desc ===============
[14:31:46] ===================== [PASSED] xe_pci ======================
[14:31:46] =================== xe_rtp (2 subtests) ====================
[14:31:46] =============== xe_rtp_process_to_sr_tests ================
[14:31:46] [PASSED] coalesce-same-reg
[14:31:46] [PASSED] no-match-no-add
[14:31:46] [PASSED] match-or
[14:31:46] [PASSED] match-or-xfail
[14:31:46] [PASSED] no-match-no-add-multiple-rules
[14:31:46] [PASSED] two-regs-two-entries
[14:31:46] [PASSED] clr-one-set-other
[14:31:46] [PASSED] set-field
[14:31:46] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[14:31:46] [PASSED] conflict-not-disjoint
[14:31:46] [PASSED] conflict-reg-type
[14:31:46] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[14:31:46] ================== xe_rtp_process_tests ===================
[14:31:46] [PASSED] active1
[14:31:46] [PASSED] active2
[14:31:46] [PASSED] active-inactive
[14:31:46] [PASSED] inactive-active
[14:31:46] [PASSED] inactive-1st_or_active-inactive
[14:31:46] [PASSED] inactive-2nd_or_active-inactive
[14:31:46] [PASSED] inactive-last_or_active-inactive
[14:31:46] [PASSED] inactive-no_or_active-inactive
[14:31:46] ============== [PASSED] xe_rtp_process_tests ===============
[14:31:46] ===================== [PASSED] xe_rtp ======================
[14:31:46] ==================== xe_wa (1 subtest) =====================
[14:31:46] ======================== xe_wa_gt =========================
[14:31:46] [PASSED] TIGERLAKE B0
[14:31:46] [PASSED] DG1 A0
[14:31:46] [PASSED] DG1 B0
[14:31:46] [PASSED] ALDERLAKE_S A0
[14:31:46] [PASSED] ALDERLAKE_S B0
[14:31:46] [PASSED] ALDERLAKE_S C0
[14:31:46] [PASSED] ALDERLAKE_S D0
[14:31:46] [PASSED] ALDERLAKE_P A0
[14:31:46] [PASSED] ALDERLAKE_P B0
[14:31:46] [PASSED] ALDERLAKE_P C0
[14:31:46] [PASSED] ALDERLAKE_S RPLS D0
[14:31:46] [PASSED] ALDERLAKE_P RPLU E0
[14:31:46] [PASSED] DG2 G10 C0
[14:31:46] [PASSED] DG2 G11 B1
[14:31:46] [PASSED] DG2 G12 A1
[14:31:46] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:31:46] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[14:31:46] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[14:31:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[14:31:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[14:31:46] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[14:31:46] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[14:31:46] ==================== [PASSED] xe_wa_gt =====================
[14:31:46] ====================== [PASSED] xe_wa ======================
[14:31:46] ============================================================
[14:31:46] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[14:31:46] Elapsed time: 44.127s total, 7.498s configuring, 35.962s building, 0.634s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[14:31:46] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:31:48] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:32:12] Starting KUnit Kernel (1/1)...
[14:32:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:32:12] ============ drm_test_pick_cmdline (2 subtests) ============
[14:32:12] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[14:32:12] =============== drm_test_pick_cmdline_named ===============
[14:32:12] [PASSED] NTSC
[14:32:12] [PASSED] NTSC-J
[14:32:12] [PASSED] PAL
[14:32:12] [PASSED] PAL-M
[14:32:12] =========== [PASSED] drm_test_pick_cmdline_named ===========
[14:32:12] ============== [PASSED] drm_test_pick_cmdline ==============
[14:32:12] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[14:32:12] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[14:32:12] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[14:32:12] =========== drm_validate_clone_mode (2 subtests) ===========
[14:32:12] ============== drm_test_check_in_clone_mode ===============
[14:32:12] [PASSED] in_clone_mode
[14:32:12] [PASSED] not_in_clone_mode
[14:32:12] ========== [PASSED] drm_test_check_in_clone_mode ===========
[14:32:12] =============== drm_test_check_valid_clones ===============
[14:32:12] [PASSED] not_in_clone_mode
[14:32:12] [PASSED] valid_clone
[14:32:12] [PASSED] invalid_clone
[14:32:12] =========== [PASSED] drm_test_check_valid_clones ===========
[14:32:12] ============= [PASSED] drm_validate_clone_mode =============
[14:32:12] ============= drm_validate_modeset (1 subtest) =============
[14:32:12] [PASSED] drm_test_check_connector_changed_modeset
[14:32:12] ============== [PASSED] drm_validate_modeset ===============
[14:32:12] ====== drm_test_bridge_get_current_state (2 subtests) ======
[14:32:12] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[14:32:12] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[14:32:12] ======== [PASSED] drm_test_bridge_get_current_state ========
[14:32:12] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[14:32:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[14:32:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[14:32:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[14:32:12] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[14:32:12] ============== drm_bridge_alloc (2 subtests) ===============
[14:32:12] [PASSED] drm_test_drm_bridge_alloc_basic
[14:32:12] [PASSED] drm_test_drm_bridge_alloc_get_put
[14:32:12] ================ [PASSED] drm_bridge_alloc =================
[14:32:12] ============= drm_cmdline_parser (40 subtests) =============
[14:32:12] [PASSED] drm_test_cmdline_force_d_only
[14:32:12] [PASSED] drm_test_cmdline_force_D_only_dvi
[14:32:12] [PASSED] drm_test_cmdline_force_D_only_hdmi
[14:32:12] [PASSED] drm_test_cmdline_force_D_only_not_digital
[14:32:12] [PASSED] drm_test_cmdline_force_e_only
[14:32:12] [PASSED] drm_test_cmdline_res
[14:32:12] [PASSED] drm_test_cmdline_res_vesa
[14:32:12] [PASSED] drm_test_cmdline_res_vesa_rblank
[14:32:12] [PASSED] drm_test_cmdline_res_rblank
[14:32:12] [PASSED] drm_test_cmdline_res_bpp
[14:32:12] [PASSED] drm_test_cmdline_res_refresh
[14:32:12] [PASSED] drm_test_cmdline_res_bpp_refresh
[14:32:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[14:32:12] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[14:32:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[14:32:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[14:32:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[14:32:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[14:32:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[14:32:12] [PASSED] drm_test_cmdline_res_margins_force_on
[14:32:12] [PASSED] drm_test_cmdline_res_vesa_margins
[14:32:12] [PASSED] drm_test_cmdline_name
[14:32:12] [PASSED] drm_test_cmdline_name_bpp
[14:32:12] [PASSED] drm_test_cmdline_name_option
[14:32:12] [PASSED] drm_test_cmdline_name_bpp_option
[14:32:12] [PASSED] drm_test_cmdline_rotate_0
[14:32:12] [PASSED] drm_test_cmdline_rotate_90
[14:32:12] [PASSED] drm_test_cmdline_rotate_180
[14:32:12] [PASSED] drm_test_cmdline_rotate_270
[14:32:12] [PASSED] drm_test_cmdline_hmirror
[14:32:12] [PASSED] drm_test_cmdline_vmirror
[14:32:12] [PASSED] drm_test_cmdline_margin_options
[14:32:12] [PASSED] drm_test_cmdline_multiple_options
[14:32:12] [PASSED] drm_test_cmdline_bpp_extra_and_option
[14:32:12] [PASSED] drm_test_cmdline_extra_and_option
[14:32:12] [PASSED] drm_test_cmdline_freestanding_options
[14:32:12] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[14:32:12] [PASSED] drm_test_cmdline_panel_orientation
[14:32:12] ================ drm_test_cmdline_invalid =================
[14:32:12] [PASSED] margin_only
[14:32:12] [PASSED] interlace_only
[14:32:12] [PASSED] res_missing_x
[14:32:12] [PASSED] res_missing_y
[14:32:12] [PASSED] res_bad_y
[14:32:12] [PASSED] res_missing_y_bpp
[14:32:12] [PASSED] res_bad_bpp
[14:32:12] [PASSED] res_bad_refresh
[14:32:12] [PASSED] res_bpp_refresh_force_on_off
[14:32:12] [PASSED] res_invalid_mode
[14:32:12] [PASSED] res_bpp_wrong_place_mode
[14:32:12] [PASSED] name_bpp_refresh
[14:32:12] [PASSED] name_refresh
[14:32:12] [PASSED] name_refresh_wrong_mode
[14:32:12] [PASSED] name_refresh_invalid_mode
[14:32:12] [PASSED] rotate_multiple
[14:32:12] [PASSED] rotate_invalid_val
[14:32:12] [PASSED] rotate_truncated
[14:32:12] [PASSED] invalid_option
[14:32:12] [PASSED] invalid_tv_option
[14:32:12] [PASSED] truncated_tv_option
[14:32:12] ============ [PASSED] drm_test_cmdline_invalid =============
[14:32:12] =============== drm_test_cmdline_tv_options ===============
[14:32:12] [PASSED] NTSC
[14:32:12] [PASSED] NTSC_443
[14:32:12] [PASSED] NTSC_J
[14:32:12] [PASSED] PAL
[14:32:12] [PASSED] PAL_M
[14:32:12] [PASSED] PAL_N
[14:32:12] [PASSED] SECAM
[14:32:12] [PASSED] MONO_525
[14:32:12] [PASSED] MONO_625
[14:32:12] =========== [PASSED] drm_test_cmdline_tv_options ===========
[14:32:12] =============== [PASSED] drm_cmdline_parser ================
[14:32:12] ========== drmm_connector_hdmi_init (20 subtests) ==========
[14:32:12] [PASSED] drm_test_connector_hdmi_init_valid
[14:32:12] [PASSED] drm_test_connector_hdmi_init_bpc_8
[14:32:12] [PASSED] drm_test_connector_hdmi_init_bpc_10
[14:32:12] [PASSED] drm_test_connector_hdmi_init_bpc_12
[14:32:12] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[14:32:12] [PASSED] drm_test_connector_hdmi_init_bpc_null
[14:32:12] [PASSED] drm_test_connector_hdmi_init_formats_empty
[14:32:12] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[14:32:12] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:32:12] [PASSED] supported_formats=0x9 yuv420_allowed=1
[14:32:12] [PASSED] supported_formats=0x9 yuv420_allowed=0
[14:32:12] [PASSED] supported_formats=0x5 yuv420_allowed=1
[14:32:12] [PASSED] supported_formats=0x5 yuv420_allowed=0
[14:32:12] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[14:32:12] [PASSED] drm_test_connector_hdmi_init_null_ddc
[14:32:12] [PASSED] drm_test_connector_hdmi_init_null_product
[14:32:12] [PASSED] drm_test_connector_hdmi_init_null_vendor
[14:32:12] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[14:32:12] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[14:32:12] [PASSED] drm_test_connector_hdmi_init_product_valid
[14:32:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[14:32:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[14:32:12] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[14:32:12] ========= drm_test_connector_hdmi_init_type_valid =========
[14:32:12] [PASSED] HDMI-A
[14:32:12] [PASSED] HDMI-B
[14:32:12] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[14:32:12] ======== drm_test_connector_hdmi_init_type_invalid ========
[14:32:12] [PASSED] Unknown
[14:32:12] [PASSED] VGA
[14:32:12] [PASSED] DVI-I
[14:32:12] [PASSED] DVI-D
[14:32:12] [PASSED] DVI-A
[14:32:12] [PASSED] Composite
[14:32:12] [PASSED] SVIDEO
[14:32:12] [PASSED] LVDS
[14:32:12] [PASSED] Component
[14:32:12] [PASSED] DIN
[14:32:12] [PASSED] DP
[14:32:12] [PASSED] TV
[14:32:12] [PASSED] eDP
[14:32:12] [PASSED] Virtual
[14:32:12] [PASSED] DSI
[14:32:12] [PASSED] DPI
[14:32:12] [PASSED] Writeback
[14:32:12] [PASSED] SPI
[14:32:12] [PASSED] USB
[14:32:12] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[14:32:12] ============ [PASSED] drmm_connector_hdmi_init =============
[14:32:12] ============= drmm_connector_init (3 subtests) =============
[14:32:12] [PASSED] drm_test_drmm_connector_init
[14:32:12] [PASSED] drm_test_drmm_connector_init_null_ddc
[14:32:12] ========= drm_test_drmm_connector_init_type_valid =========
[14:32:12] [PASSED] Unknown
[14:32:12] [PASSED] VGA
[14:32:12] [PASSED] DVI-I
[14:32:12] [PASSED] DVI-D
[14:32:12] [PASSED] DVI-A
[14:32:12] [PASSED] Composite
[14:32:12] [PASSED] SVIDEO
[14:32:12] [PASSED] LVDS
[14:32:12] [PASSED] Component
[14:32:12] [PASSED] DIN
[14:32:12] [PASSED] DP
[14:32:12] [PASSED] HDMI-A
[14:32:12] [PASSED] HDMI-B
[14:32:12] [PASSED] TV
[14:32:12] [PASSED] eDP
[14:32:12] [PASSED] Virtual
[14:32:12] [PASSED] DSI
[14:32:12] [PASSED] DPI
[14:32:12] [PASSED] Writeback
[14:32:12] [PASSED] SPI
[14:32:12] [PASSED] USB
[14:32:12] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[14:32:12] =============== [PASSED] drmm_connector_init ===============
[14:32:12] ========= drm_connector_dynamic_init (6 subtests) ==========
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_init
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_init_properties
[14:32:12] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[14:32:12] [PASSED] Unknown
[14:32:12] [PASSED] VGA
[14:32:12] [PASSED] DVI-I
[14:32:12] [PASSED] DVI-D
[14:32:12] [PASSED] DVI-A
[14:32:12] [PASSED] Composite
[14:32:12] [PASSED] SVIDEO
[14:32:12] [PASSED] LVDS
[14:32:12] [PASSED] Component
[14:32:12] [PASSED] DIN
[14:32:12] [PASSED] DP
[14:32:12] [PASSED] HDMI-A
[14:32:12] [PASSED] HDMI-B
[14:32:12] [PASSED] TV
[14:32:12] [PASSED] eDP
[14:32:12] [PASSED] Virtual
[14:32:12] [PASSED] DSI
[14:32:12] [PASSED] DPI
[14:32:12] [PASSED] Writeback
[14:32:12] [PASSED] SPI
[14:32:12] [PASSED] USB
[14:32:12] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[14:32:12] ======== drm_test_drm_connector_dynamic_init_name =========
[14:32:12] [PASSED] Unknown
[14:32:12] [PASSED] VGA
[14:32:12] [PASSED] DVI-I
[14:32:12] [PASSED] DVI-D
[14:32:12] [PASSED] DVI-A
[14:32:12] [PASSED] Composite
[14:32:12] [PASSED] SVIDEO
[14:32:12] [PASSED] LVDS
[14:32:12] [PASSED] Component
[14:32:12] [PASSED] DIN
[14:32:12] [PASSED] DP
[14:32:12] [PASSED] HDMI-A
[14:32:12] [PASSED] HDMI-B
[14:32:12] [PASSED] TV
[14:32:12] [PASSED] eDP
[14:32:12] [PASSED] Virtual
[14:32:12] [PASSED] DSI
[14:32:12] [PASSED] DPI
[14:32:12] [PASSED] Writeback
[14:32:12] [PASSED] SPI
[14:32:12] [PASSED] USB
[14:32:12] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[14:32:12] =========== [PASSED] drm_connector_dynamic_init ============
[14:32:12] ==== drm_connector_dynamic_register_early (4 subtests) =====
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[14:32:12] ====== [PASSED] drm_connector_dynamic_register_early =======
[14:32:12] ======= drm_connector_dynamic_register (7 subtests) ========
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[14:32:12] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[14:32:12] ========= [PASSED] drm_connector_dynamic_register ==========
[14:32:12] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[14:32:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[14:32:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[14:32:12] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[14:32:12] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[14:32:12] ========== drm_test_get_tv_mode_from_name_valid ===========
[14:32:12] [PASSED] NTSC
[14:32:12] [PASSED] NTSC-443
[14:32:12] [PASSED] NTSC-J
[14:32:12] [PASSED] PAL
[14:32:12] [PASSED] PAL-M
[14:32:12] [PASSED] PAL-N
[14:32:12] [PASSED] SECAM
[14:32:12] [PASSED] Mono
[14:32:12] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[14:32:12] [PASSED] drm_test_get_tv_mode_from_name_truncated
[14:32:12] ============ [PASSED] drm_get_tv_mode_from_name ============
[14:32:12] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[14:32:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[14:32:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[14:32:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[14:32:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[14:32:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[14:32:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[14:32:12] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[14:32:12] [PASSED] VIC 96
[14:32:12] [PASSED] VIC 97
[14:32:12] [PASSED] VIC 101
[14:32:12] [PASSED] VIC 102
[14:32:12] [PASSED] VIC 106
[14:32:12] [PASSED] VIC 107
[14:32:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[14:32:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[14:32:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[14:32:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[14:32:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[14:32:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[14:32:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[14:32:12] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[14:32:12] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[14:32:12] [PASSED] Automatic
[14:32:12] [PASSED] Full
[14:32:12] [PASSED] Limited 16:235
[14:32:12] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[14:32:12] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[14:32:12] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[14:32:12] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[14:32:12] === drm_test_drm_hdmi_connector_get_output_format_name ====
[14:32:12] [PASSED] RGB
[14:32:12] [PASSED] YUV 4:2:0
[14:32:12] [PASSED] YUV 4:2:2
[14:32:12] [PASSED] YUV 4:4:4
[14:32:12] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[14:32:12] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[14:32:12] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[14:32:12] ============= drm_damage_helper (21 subtests) ==============
[14:32:12] [PASSED] drm_test_damage_iter_no_damage
[14:32:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[14:32:12] [PASSED] drm_test_damage_iter_no_damage_src_moved
[14:32:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[14:32:12] [PASSED] drm_test_damage_iter_no_damage_not_visible
[14:32:12] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[14:32:12] [PASSED] drm_test_damage_iter_no_damage_no_fb
[14:32:12] [PASSED] drm_test_damage_iter_simple_damage
[14:32:12] [PASSED] drm_test_damage_iter_single_damage
[14:32:12] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[14:32:12] [PASSED] drm_test_damage_iter_single_damage_outside_src
[14:32:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[14:32:12] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[14:32:12] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[14:32:12] [PASSED] drm_test_damage_iter_single_damage_src_moved
[14:32:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[14:32:12] [PASSED] drm_test_damage_iter_damage
[14:32:12] [PASSED] drm_test_damage_iter_damage_one_intersect
[14:32:12] [PASSED] drm_test_damage_iter_damage_one_outside
[14:32:12] [PASSED] drm_test_damage_iter_damage_src_moved
[14:32:12] [PASSED] drm_test_damage_iter_damage_not_visible
[14:32:12] ================ [PASSED] drm_damage_helper ================
[14:32:12] ============== drm_dp_mst_helper (3 subtests) ==============
[14:32:12] ============== drm_test_dp_mst_calc_pbn_mode ==============
[14:32:12] [PASSED] Clock 154000 BPP 30 DSC disabled
[14:32:12] [PASSED] Clock 234000 BPP 30 DSC disabled
[14:32:12] [PASSED] Clock 297000 BPP 24 DSC disabled
[14:32:12] [PASSED] Clock 332880 BPP 24 DSC enabled
[14:32:12] [PASSED] Clock 324540 BPP 24 DSC enabled
[14:32:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[14:32:12] ============== drm_test_dp_mst_calc_pbn_div ===============
[14:32:12] [PASSED] Link rate 2000000 lane count 4
[14:32:12] [PASSED] Link rate 2000000 lane count 2
[14:32:12] [PASSED] Link rate 2000000 lane count 1
[14:32:12] [PASSED] Link rate 1350000 lane count 4
[14:32:12] [PASSED] Link rate 1350000 lane count 2
[14:32:12] [PASSED] Link rate 1350000 lane count 1
[14:32:12] [PASSED] Link rate 1000000 lane count 4
[14:32:12] [PASSED] Link rate 1000000 lane count 2
[14:32:12] [PASSED] Link rate 1000000 lane count 1
[14:32:12] [PASSED] Link rate 810000 lane count 4
[14:32:12] [PASSED] Link rate 810000 lane count 2
[14:32:12] [PASSED] Link rate 810000 lane count 1
[14:32:12] [PASSED] Link rate 540000 lane count 4
[14:32:12] [PASSED] Link rate 540000 lane count 2
[14:32:12] [PASSED] Link rate 540000 lane count 1
[14:32:12] [PASSED] Link rate 270000 lane count 4
[14:32:12] [PASSED] Link rate 270000 lane count 2
[14:32:12] [PASSED] Link rate 270000 lane count 1
[14:32:12] [PASSED] Link rate 162000 lane count 4
[14:32:12] [PASSED] Link rate 162000 lane count 2
[14:32:12] [PASSED] Link rate 162000 lane count 1
[14:32:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[14:32:12] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[14:32:12] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[14:32:12] [PASSED] DP_POWER_UP_PHY with port number
[14:32:12] [PASSED] DP_POWER_DOWN_PHY with port number
[14:32:12] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[14:32:12] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[14:32:12] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[14:32:12] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[14:32:12] [PASSED] DP_QUERY_PAYLOAD with port number
[14:32:12] [PASSED] DP_QUERY_PAYLOAD with VCPI
[14:32:12] [PASSED] DP_REMOTE_DPCD_READ with port number
[14:32:12] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[14:32:12] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[14:32:12] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[14:32:12] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[14:32:12] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[14:32:12] [PASSED] DP_REMOTE_I2C_READ with port number
[14:32:12] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[14:32:12] [PASSED] DP_REMOTE_I2C_READ with transactions array
[14:32:12] [PASSED] DP_REMOTE_I2C_WRITE with port number
[14:32:12] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[14:32:12] [PASSED] DP_REMOTE_I2C_WRITE with data array
[14:32:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[14:32:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[14:32:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[14:32:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[14:32:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[14:32:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[14:32:12] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[14:32:12] ================ [PASSED] drm_dp_mst_helper ================
[14:32:12] ================== drm_exec (7 subtests) ===================
[14:32:12] [PASSED] sanitycheck
[14:32:12] [PASSED] test_lock
[14:32:12] [PASSED] test_lock_unlock
[14:32:12] [PASSED] test_duplicates
[14:32:12] [PASSED] test_prepare
[14:32:12] [PASSED] test_prepare_array
[14:32:12] [PASSED] test_multiple_loops
[14:32:12] ==================== [PASSED] drm_exec =====================
[14:32:12] =========== drm_format_helper_test (17 subtests) ===========
[14:32:12] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[14:32:12] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[14:32:12] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[14:32:12] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[14:32:12] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[14:32:12] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[14:32:12] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[14:32:12] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[14:32:12] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[14:32:12] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[14:32:12] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[14:32:12] ============== drm_test_fb_xrgb8888_to_mono ===============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[14:32:12] ==================== drm_test_fb_swab =====================
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ================ [PASSED] drm_test_fb_swab =================
[14:32:12] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[14:32:12] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[14:32:12] [PASSED] single_pixel_source_buffer
[14:32:12] [PASSED] single_pixel_clip_rectangle
[14:32:12] [PASSED] well_known_colors
[14:32:12] [PASSED] destination_pitch
[14:32:12] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[14:32:12] ================= drm_test_fb_clip_offset =================
[14:32:12] [PASSED] pass through
[14:32:12] [PASSED] horizontal offset
[14:32:12] [PASSED] vertical offset
[14:32:12] [PASSED] horizontal and vertical offset
[14:32:12] [PASSED] horizontal offset (custom pitch)
[14:32:12] [PASSED] vertical offset (custom pitch)
[14:32:12] [PASSED] horizontal and vertical offset (custom pitch)
[14:32:12] ============= [PASSED] drm_test_fb_clip_offset =============
[14:32:12] =================== drm_test_fb_memcpy ====================
[14:32:12] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[14:32:12] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[14:32:12] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[14:32:12] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[14:32:12] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[14:32:12] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[14:32:12] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[14:32:12] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[14:32:12] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[14:32:12] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[14:32:12] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[14:32:12] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[14:32:12] =============== [PASSED] drm_test_fb_memcpy ================
[14:32:12] ============= [PASSED] drm_format_helper_test ==============
[14:32:12] ================= drm_format (18 subtests) =================
[14:32:12] [PASSED] drm_test_format_block_width_invalid
[14:32:12] [PASSED] drm_test_format_block_width_one_plane
[14:32:12] [PASSED] drm_test_format_block_width_two_plane
[14:32:12] [PASSED] drm_test_format_block_width_three_plane
[14:32:12] [PASSED] drm_test_format_block_width_tiled
[14:32:12] [PASSED] drm_test_format_block_height_invalid
[14:32:12] [PASSED] drm_test_format_block_height_one_plane
[14:32:12] [PASSED] drm_test_format_block_height_two_plane
[14:32:12] [PASSED] drm_test_format_block_height_three_plane
[14:32:12] [PASSED] drm_test_format_block_height_tiled
[14:32:12] [PASSED] drm_test_format_min_pitch_invalid
[14:32:12] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[14:32:12] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[14:32:12] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[14:32:12] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[14:32:12] [PASSED] drm_test_format_min_pitch_two_plane
[14:32:12] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[14:32:12] [PASSED] drm_test_format_min_pitch_tiled
[14:32:12] =================== [PASSED] drm_format ====================
[14:32:12] ============== drm_framebuffer (10 subtests) ===============
[14:32:12] ========== drm_test_framebuffer_check_src_coords ==========
[14:32:12] [PASSED] Success: source fits into fb
[14:32:12] [PASSED] Fail: overflowing fb with x-axis coordinate
[14:32:12] [PASSED] Fail: overflowing fb with y-axis coordinate
[14:32:12] [PASSED] Fail: overflowing fb with source width
[14:32:12] [PASSED] Fail: overflowing fb with source height
[14:32:12] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[14:32:12] [PASSED] drm_test_framebuffer_cleanup
[14:32:12] =============== drm_test_framebuffer_create ===============
[14:32:12] [PASSED] ABGR8888 normal sizes
[14:32:12] [PASSED] ABGR8888 max sizes
[14:32:12] [PASSED] ABGR8888 pitch greater than min required
[14:32:12] [PASSED] ABGR8888 pitch less than min required
[14:32:12] [PASSED] ABGR8888 Invalid width
[14:32:12] [PASSED] ABGR8888 Invalid buffer handle
[14:32:12] [PASSED] No pixel format
[14:32:12] [PASSED] ABGR8888 Width 0
[14:32:12] [PASSED] ABGR8888 Height 0
[14:32:12] [PASSED] ABGR8888 Out of bound height * pitch combination
[14:32:12] [PASSED] ABGR8888 Large buffer offset
[14:32:12] [PASSED] ABGR8888 Buffer offset for inexistent plane
[14:32:12] [PASSED] ABGR8888 Invalid flag
[14:32:12] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[14:32:12] [PASSED] ABGR8888 Valid buffer modifier
[14:32:12] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[14:32:12] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[14:32:12] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[14:32:12] [PASSED] NV12 Normal sizes
[14:32:12] [PASSED] NV12 Max sizes
[14:32:12] [PASSED] NV12 Invalid pitch
[14:32:12] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[14:32:12] [PASSED] NV12 different modifier per-plane
[14:32:12] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[14:32:12] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[14:32:12] [PASSED] NV12 Modifier for inexistent plane
[14:32:12] [PASSED] NV12 Handle for inexistent plane
[14:32:12] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[14:32:12] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[14:32:12] [PASSED] YVU420 Normal sizes
[14:32:12] [PASSED] YVU420 Max sizes
[14:32:12] [PASSED] YVU420 Invalid pitch
[14:32:12] [PASSED] YVU420 Different pitches
[14:32:12] [PASSED] YVU420 Different buffer offsets/pitches
[14:32:12] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[14:32:12] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[14:32:12] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[14:32:12] [PASSED] YVU420 Valid modifier
[14:32:12] [PASSED] YVU420 Different modifiers per plane
[14:32:12] [PASSED] YVU420 Modifier for inexistent plane
[14:32:12] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[14:32:12] [PASSED] X0L2 Normal sizes
[14:32:12] [PASSED] X0L2 Max sizes
[14:32:12] [PASSED] X0L2 Invalid pitch
[14:32:12] [PASSED] X0L2 Pitch greater than minimum required
[14:32:12] [PASSED] X0L2 Handle for inexistent plane
[14:32:12] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[14:32:12] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[14:32:12] [PASSED] X0L2 Valid modifier
[14:32:12] [PASSED] X0L2 Modifier for inexistent plane
[14:32:12] =========== [PASSED] drm_test_framebuffer_create ===========
[14:32:12] [PASSED] drm_test_framebuffer_free
[14:32:12] [PASSED] drm_test_framebuffer_init
[14:32:12] [PASSED] drm_test_framebuffer_init_bad_format
[14:32:12] [PASSED] drm_test_framebuffer_init_dev_mismatch
[14:32:12] [PASSED] drm_test_framebuffer_lookup
[14:32:12] [PASSED] drm_test_framebuffer_lookup_inexistent
[14:32:12] [PASSED] drm_test_framebuffer_modifiers_not_supported
[14:32:12] ================= [PASSED] drm_framebuffer =================
[14:32:12] ================ drm_gem_shmem (8 subtests) ================
[14:32:12] [PASSED] drm_gem_shmem_test_obj_create
[14:32:12] [PASSED] drm_gem_shmem_test_obj_create_private
[14:32:12] [PASSED] drm_gem_shmem_test_pin_pages
[14:32:12] [PASSED] drm_gem_shmem_test_vmap
[14:32:12] [PASSED] drm_gem_shmem_test_get_sg_table
[14:32:12] [PASSED] drm_gem_shmem_test_get_pages_sgt
[14:32:12] [PASSED] drm_gem_shmem_test_madvise
[14:32:12] [PASSED] drm_gem_shmem_test_purge
[14:32:12] ================== [PASSED] drm_gem_shmem ==================
[14:32:12] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[14:32:12] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[14:32:12] [PASSED] Automatic
[14:32:12] [PASSED] Full
[14:32:12] [PASSED] Limited 16:235
[14:32:12] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[14:32:12] [PASSED] drm_test_check_disable_connector
[14:32:12] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[14:32:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[14:32:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[14:32:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[14:32:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[14:32:12] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[14:32:12] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[14:32:12] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[14:32:12] [PASSED] drm_test_check_output_bpc_dvi
[14:32:12] [PASSED] drm_test_check_output_bpc_format_vic_1
[14:32:12] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[14:32:12] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[14:32:12] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[14:32:12] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[14:32:12] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[14:32:12] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[14:32:12] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[14:32:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[14:32:12] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[14:32:12] [PASSED] drm_test_check_broadcast_rgb_value
[14:32:12] [PASSED] drm_test_check_bpc_8_value
[14:32:12] [PASSED] drm_test_check_bpc_10_value
[14:32:12] [PASSED] drm_test_check_bpc_12_value
[14:32:12] [PASSED] drm_test_check_format_value
[14:32:12] [PASSED] drm_test_check_tmds_char_value
[14:32:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[14:32:12] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[14:32:12] [PASSED] drm_test_check_mode_valid
[14:32:12] [PASSED] drm_test_check_mode_valid_reject
[14:32:12] [PASSED] drm_test_check_mode_valid_reject_rate
[14:32:12] [PASSED] drm_test_check_mode_valid_reject_max_clock
[14:32:12] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[14:32:12] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[14:32:12] [PASSED] drm_test_check_infoframes
[14:32:12] [PASSED] drm_test_check_reject_avi_infoframe
[14:32:12] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[14:32:12] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[14:32:12] [PASSED] drm_test_check_reject_audio_infoframe
[14:32:12] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[14:32:12] ================= drm_managed (2 subtests) =================
[14:32:12] [PASSED] drm_test_managed_release_action
[14:32:12] [PASSED] drm_test_managed_run_action
[14:32:12] =================== [PASSED] drm_managed ===================
[14:32:12] =================== drm_mm (6 subtests) ====================
[14:32:12] [PASSED] drm_test_mm_init
[14:32:12] [PASSED] drm_test_mm_debug
[14:32:12] [PASSED] drm_test_mm_align32
[14:32:12] [PASSED] drm_test_mm_align64
[14:32:12] [PASSED] drm_test_mm_lowest
[14:32:12] [PASSED] drm_test_mm_highest
[14:32:12] ===================== [PASSED] drm_mm ======================
[14:32:12] ============= drm_modes_analog_tv (5 subtests) =============
[14:32:12] [PASSED] drm_test_modes_analog_tv_mono_576i
[14:32:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[14:32:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[14:32:12] [PASSED] drm_test_modes_analog_tv_pal_576i
[14:32:12] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[14:32:12] =============== [PASSED] drm_modes_analog_tv ===============
[14:32:12] ============== drm_plane_helper (2 subtests) ===============
[14:32:12] =============== drm_test_check_plane_state ================
[14:32:12] [PASSED] clipping_simple
[14:32:12] [PASSED] clipping_rotate_reflect
[14:32:12] [PASSED] positioning_simple
[14:32:12] [PASSED] upscaling
[14:32:12] [PASSED] downscaling
[14:32:12] [PASSED] rounding1
[14:32:12] [PASSED] rounding2
[14:32:12] [PASSED] rounding3
[14:32:12] [PASSED] rounding4
[14:32:12] =========== [PASSED] drm_test_check_plane_state ============
[14:32:12] =========== drm_test_check_invalid_plane_state ============
[14:32:12] [PASSED] positioning_invalid
[14:32:12] [PASSED] upscaling_invalid
[14:32:12] [PASSED] downscaling_invalid
[14:32:12] ======= [PASSED] drm_test_check_invalid_plane_state ========
[14:32:12] ================ [PASSED] drm_plane_helper =================
[14:32:12] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[14:32:12] ====== drm_test_connector_helper_tv_get_modes_check =======
[14:32:12] [PASSED] None
[14:32:12] [PASSED] PAL
[14:32:12] [PASSED] NTSC
[14:32:12] [PASSED] Both, NTSC Default
[14:32:12] [PASSED] Both, PAL Default
[14:32:12] [PASSED] Both, NTSC Default, with PAL on command-line
[14:32:12] [PASSED] Both, PAL Default, with NTSC on command-line
[14:32:12] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[14:32:12] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[14:32:12] ================== drm_rect (9 subtests) ===================
[14:32:12] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[14:32:12] [PASSED] drm_test_rect_clip_scaled_not_clipped
[14:32:12] [PASSED] drm_test_rect_clip_scaled_clipped
[14:32:12] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[14:32:12] ================= drm_test_rect_intersect =================
[14:32:12] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[14:32:12] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[14:32:12] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[14:32:12] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[14:32:12] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[14:32:12] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[14:32:12] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[14:32:12] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[14:32:12] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[14:32:12] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[14:32:12] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[14:32:12] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[14:32:12] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[14:32:12] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[14:32:12] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[14:32:12] ============= [PASSED] drm_test_rect_intersect =============
[14:32:12] ================ drm_test_rect_calc_hscale ================
[14:32:12] [PASSED] normal use
[14:32:12] [PASSED] out of max range
[14:32:12] [PASSED] out of min range
[14:32:12] [PASSED] zero dst
[14:32:12] [PASSED] negative src
[14:32:12] [PASSED] negative dst
[14:32:12] ============ [PASSED] drm_test_rect_calc_hscale ============
[14:32:12] ================ drm_test_rect_calc_vscale ================
[14:32:12] [PASSED] normal use
[14:32:12] [PASSED] out of max range
[14:32:12] [PASSED] out of min range
[14:32:12] [PASSED] zero dst
[14:32:12] [PASSED] negative src
[14:32:12] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[14:32:12] ============ [PASSED] drm_test_rect_calc_vscale ============
[14:32:12] ================== drm_test_rect_rotate ===================
[14:32:12] [PASSED] reflect-x
[14:32:12] [PASSED] reflect-y
[14:32:12] [PASSED] rotate-0
[14:32:12] [PASSED] rotate-90
[14:32:12] [PASSED] rotate-180
[14:32:12] [PASSED] rotate-270
[14:32:12] ============== [PASSED] drm_test_rect_rotate ===============
[14:32:12] ================ drm_test_rect_rotate_inv =================
[14:32:12] [PASSED] reflect-x
[14:32:12] [PASSED] reflect-y
[14:32:12] [PASSED] rotate-0
[14:32:12] [PASSED] rotate-90
[14:32:12] [PASSED] rotate-180
[14:32:12] [PASSED] rotate-270
[14:32:12] ============ [PASSED] drm_test_rect_rotate_inv =============
[14:32:12] ==================== [PASSED] drm_rect =====================
[14:32:12] ============ drm_sysfb_modeset_test (1 subtest) ============
[14:32:12] ============ drm_test_sysfb_build_fourcc_list =============
[14:32:12] [PASSED] no native formats
[14:32:12] [PASSED] XRGB8888 as native format
[14:32:12] [PASSED] remove duplicates
[14:32:12] [PASSED] convert alpha formats
[14:32:12] [PASSED] random formats
[14:32:12] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[14:32:12] ============= [PASSED] drm_sysfb_modeset_test ==============
[14:32:12] ================== drm_fixp (2 subtests) ===================
[14:32:12] [PASSED] drm_test_int2fixp
[14:32:12] [PASSED] drm_test_sm2fixp
[14:32:12] ==================== [PASSED] drm_fixp =====================
[14:32:12] ============================================================
[14:32:12] Testing complete. Ran 621 tests: passed: 621
[14:32:12] Elapsed time: 26.522s total, 1.688s configuring, 24.668s building, 0.124s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[14:32:13] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[14:32:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[14:32:24] Starting KUnit Kernel (1/1)...
[14:32:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[14:32:24] ================= ttm_device (5 subtests) ==================
[14:32:24] [PASSED] ttm_device_init_basic
[14:32:24] [PASSED] ttm_device_init_multiple
[14:32:24] [PASSED] ttm_device_fini_basic
[14:32:24] [PASSED] ttm_device_init_no_vma_man
[14:32:24] ================== ttm_device_init_pools ==================
[14:32:24] [PASSED] No DMA allocations, no DMA32 required
[14:32:24] [PASSED] DMA allocations, DMA32 required
[14:32:24] [PASSED] No DMA allocations, DMA32 required
[14:32:24] [PASSED] DMA allocations, no DMA32 required
[14:32:24] ============== [PASSED] ttm_device_init_pools ==============
[14:32:24] =================== [PASSED] ttm_device ====================
[14:32:24] ================== ttm_pool (8 subtests) ===================
[14:32:24] ================== ttm_pool_alloc_basic ===================
[14:32:24] [PASSED] One page
[14:32:24] [PASSED] More than one page
[14:32:24] [PASSED] Above the allocation limit
[14:32:24] [PASSED] One page, with coherent DMA mappings enabled
[14:32:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:32:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[14:32:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[14:32:24] [PASSED] One page
[14:32:24] [PASSED] More than one page
[14:32:24] [PASSED] Above the allocation limit
[14:32:24] [PASSED] One page, with coherent DMA mappings enabled
[14:32:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[14:32:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[14:32:24] [PASSED] ttm_pool_alloc_order_caching_match
[14:32:24] [PASSED] ttm_pool_alloc_caching_mismatch
[14:32:24] [PASSED] ttm_pool_alloc_order_mismatch
[14:32:24] [PASSED] ttm_pool_free_dma_alloc
[14:32:24] [PASSED] ttm_pool_free_no_dma_alloc
[14:32:24] [PASSED] ttm_pool_fini_basic
[14:32:24] ==================== [PASSED] ttm_pool =====================
[14:32:24] ================ ttm_resource (8 subtests) =================
[14:32:24] ================= ttm_resource_init_basic =================
[14:32:24] [PASSED] Init resource in TTM_PL_SYSTEM
[14:32:24] [PASSED] Init resource in TTM_PL_VRAM
[14:32:24] [PASSED] Init resource in a private placement
[14:32:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[14:32:24] ============= [PASSED] ttm_resource_init_basic =============
[14:32:24] [PASSED] ttm_resource_init_pinned
[14:32:24] [PASSED] ttm_resource_fini_basic
[14:32:24] [PASSED] ttm_resource_manager_init_basic
[14:32:24] [PASSED] ttm_resource_manager_usage_basic
[14:32:24] [PASSED] ttm_resource_manager_set_used_basic
[14:32:24] [PASSED] ttm_sys_man_alloc_basic
[14:32:24] [PASSED] ttm_sys_man_free_basic
[14:32:24] ================== [PASSED] ttm_resource ===================
[14:32:24] =================== ttm_tt (15 subtests) ===================
[14:32:24] ==================== ttm_tt_init_basic ====================
[14:32:24] [PASSED] Page-aligned size
[14:32:24] [PASSED] Extra pages requested
[14:32:24] ================ [PASSED] ttm_tt_init_basic ================
[14:32:24] [PASSED] ttm_tt_init_misaligned
[14:32:24] [PASSED] ttm_tt_fini_basic
[14:32:24] [PASSED] ttm_tt_fini_sg
[14:32:24] [PASSED] ttm_tt_fini_shmem
[14:32:24] [PASSED] ttm_tt_create_basic
[14:32:24] [PASSED] ttm_tt_create_invalid_bo_type
[14:32:24] [PASSED] ttm_tt_create_ttm_exists
[14:32:24] [PASSED] ttm_tt_create_failed
[14:32:24] [PASSED] ttm_tt_destroy_basic
[14:32:24] [PASSED] ttm_tt_populate_null_ttm
[14:32:24] [PASSED] ttm_tt_populate_populated_ttm
[14:32:24] [PASSED] ttm_tt_unpopulate_basic
[14:32:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[14:32:24] [PASSED] ttm_tt_swapin_basic
[14:32:24] ===================== [PASSED] ttm_tt ======================
[14:32:24] =================== ttm_bo (14 subtests) ===================
[14:32:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[14:32:24] [PASSED] Cannot be interrupted and sleeps
[14:32:24] [PASSED] Cannot be interrupted, locks straight away
[14:32:24] [PASSED] Can be interrupted, sleeps
[14:32:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[14:32:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[14:32:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[14:32:24] [PASSED] ttm_bo_reserve_double_resv
[14:32:24] [PASSED] ttm_bo_reserve_interrupted
[14:32:24] [PASSED] ttm_bo_reserve_deadlock
[14:32:24] [PASSED] ttm_bo_unreserve_basic
[14:32:24] [PASSED] ttm_bo_unreserve_pinned
[14:32:24] [PASSED] ttm_bo_unreserve_bulk
[14:32:24] [PASSED] ttm_bo_fini_basic
[14:32:24] [PASSED] ttm_bo_fini_shared_resv
[14:32:24] [PASSED] ttm_bo_pin_basic
[14:32:24] [PASSED] ttm_bo_pin_unpin_resource
[14:32:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[14:32:24] ===================== [PASSED] ttm_bo ======================
[14:32:24] ============== ttm_bo_validate (22 subtests) ===============
[14:32:24] ============== ttm_bo_init_reserved_sys_man ===============
[14:32:24] [PASSED] Buffer object for userspace
[14:32:24] [PASSED] Kernel buffer object
[14:32:24] [PASSED] Shared buffer object
[14:32:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[14:32:24] ============== ttm_bo_init_reserved_mock_man ==============
[14:32:24] [PASSED] Buffer object for userspace
[14:32:24] [PASSED] Kernel buffer object
[14:32:24] [PASSED] Shared buffer object
[14:32:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[14:32:24] [PASSED] ttm_bo_init_reserved_resv
[14:32:24] ================== ttm_bo_validate_basic ==================
[14:32:24] [PASSED] Buffer object for userspace
[14:32:24] [PASSED] Kernel buffer object
[14:32:24] [PASSED] Shared buffer object
[14:32:24] ============== [PASSED] ttm_bo_validate_basic ==============
[14:32:24] [PASSED] ttm_bo_validate_invalid_placement
[14:32:24] ============= ttm_bo_validate_same_placement ==============
[14:32:24] [PASSED] System manager
[14:32:24] [PASSED] VRAM manager
[14:32:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[14:32:24] [PASSED] ttm_bo_validate_failed_alloc
[14:32:24] [PASSED] ttm_bo_validate_pinned
[14:32:24] [PASSED] ttm_bo_validate_busy_placement
[14:32:24] ================ ttm_bo_validate_multihop =================
[14:32:24] [PASSED] Buffer object for userspace
[14:32:24] [PASSED] Kernel buffer object
[14:32:24] [PASSED] Shared buffer object
[14:32:24] ============ [PASSED] ttm_bo_validate_multihop =============
[14:32:24] ========== ttm_bo_validate_no_placement_signaled ==========
[14:32:24] [PASSED] Buffer object in system domain, no page vector
[14:32:24] [PASSED] Buffer object in system domain with an existing page vector
[14:32:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[14:32:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[14:32:24] [PASSED] Buffer object for userspace
[14:32:24] [PASSED] Kernel buffer object
[14:32:24] [PASSED] Shared buffer object
[14:32:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[14:32:24] [PASSED] ttm_bo_validate_move_fence_signaled
[14:32:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[14:32:24] [PASSED] Waits for GPU
[14:32:24] [PASSED] Tries to lock straight away
[14:32:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[14:32:24] [PASSED] ttm_bo_validate_swapout
[14:32:24] [PASSED] ttm_bo_validate_happy_evict
[14:32:24] [PASSED] ttm_bo_validate_all_pinned_evict
[14:32:24] [PASSED] ttm_bo_validate_allowed_only_evict
[14:32:24] [PASSED] ttm_bo_validate_deleted_evict
[14:32:24] [PASSED] ttm_bo_validate_busy_domain_evict
[14:32:24] [PASSED] ttm_bo_validate_evict_gutting
[14:32:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[14:32:24] ================= [PASSED] ttm_bo_validate =================
[14:32:24] ============================================================
[14:32:24] Testing complete. Ran 102 tests: passed: 102
[14:32:24] Elapsed time: 11.478s total, 1.643s configuring, 9.569s building, 0.237s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ Xe.CI.BAT: success for drm/i915/reset: Expose "display_reset_count" in debugfs (rev2)
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
` (5 preceding siblings ...)
2026-04-14 14:32 ` ✓ CI.KUnit: success for drm/i915/reset: Expose "display_reset_count" in debugfs (rev2) Patchwork
@ 2026-04-14 15:40 ` Patchwork
2026-04-14 17:07 ` ✗ Xe.CI.FULL: failure " Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-14 15:40 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 976 bytes --]
== Series Details ==
Series: drm/i915/reset: Expose "display_reset_count" in debugfs (rev2)
URL : https://patchwork.freedesktop.org/series/164676/
State : success
== Summary ==
CI Bug Log - changes from xe-4901-b96553291acba156d4f41bc740daa5de58413cd6_BAT -> xe-pw-164676v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4901-b96553291acba156d4f41bc740daa5de58413cd6 -> xe-pw-164676v2
IGT_8855: 3c05ee1076cee44a2bc3c176ec21e651f6eca600 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4901-b96553291acba156d4f41bc740daa5de58413cd6: b96553291acba156d4f41bc740daa5de58413cd6
xe-pw-164676v2: 164676v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/index.html
[-- Attachment #2: Type: text/html, Size: 1534 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Xe.CI.FULL: failure for drm/i915/reset: Expose "display_reset_count" in debugfs (rev2)
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
` (6 preceding siblings ...)
2026-04-14 15:40 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-14 17:07 ` Patchwork
2026-04-15 9:05 ` ✓ CI.KUnit: success for drm/i915/reset: Expose "display_reset_count" in debugfs (rev3) Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-14 17:07 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 24619 bytes --]
== Series Details ==
Series: drm/i915/reset: Expose "display_reset_count" in debugfs (rev2)
URL : https://patchwork.freedesktop.org/series/164676/
State : failure
== Summary ==
CI Bug Log - changes from xe-4901-b96553291acba156d4f41bc740daa5de58413cd6_FULL -> xe-pw-164676v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-164676v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-164676v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-164676v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-suspend@pipe-c-edp-1:
- shard-lnl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-lnl-5/igt@kms_cursor_crc@cursor-suspend@pipe-c-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-lnl-4/igt@kms_cursor_crc@cursor-suspend@pipe-c-edp-1.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-bmg: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning-interruptible.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html
Known issues
------------
Here are the changes found in xe-pw-164676v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#3718] / [Intel XE#6078]) +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2328] / [Intel XE#7367])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367] / [Intel XE#7354])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2:
- shard-bmg: [PASS][12] -> [INCOMPLETE][13] ([Intel XE#7084]) +1 other test incomplete
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2325] / [Intel XE#7358])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2320])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#7571])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1138] / [Intel XE#7344])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7178] / [Intel XE#7349])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2311]) +6 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4141]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2313]) +6 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7130]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7283])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2391] / [Intel XE#6927])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_psr@pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2234] / [Intel XE#2850])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6503])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7636]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_exec_basic@multigpu-once-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_exec_basic@multigpu-once-userptr-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7136]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6874]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_reset@parallel-close-fd:
- shard-bmg: [PASS][36] -> [ABORT][37] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-7/igt@xe_exec_reset@parallel-close-fd.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-2/igt@xe_exec_reset@parallel-close-fd.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7138]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_module_load@reload:
- shard-bmg: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#7725]) +1 other test dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-6/igt@xe_module_load@reload.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-6/igt@xe_module_load@reload.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6964])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking:
- shard-bmg: [INCOMPLETE][42] -> [PASS][43] +1 other test pass
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][44] ([Intel XE#6321]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][46] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][47] ([Intel XE#1729] / [Intel XE#7424])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [SKIP][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [SKIP][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [DMESG-WARN][97], [PASS][98], [PASS][99]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-5/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-6/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-6/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-2/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-2/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-2/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-4/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-4/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-4/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-9/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-9/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-9/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-7/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-3/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-7/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-3/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-3/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-1/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-1/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-1/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-10/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-10/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-8/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-5/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-8/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4901-b96553291acba156d4f41bc740daa5de58413cd6/shard-bmg-8/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-6/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-1/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-8/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-2/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-6/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-2/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-8/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-7/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-2/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-9/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-2/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-9/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-9/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-4/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-7/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-8/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-1/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-5/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-10/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-3/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-7/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-6/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-6/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/shard-bmg-10/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[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#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
Build changes
-------------
* Linux: xe-4901-b96553291acba156d4f41bc740daa5de58413cd6 -> xe-pw-164676v2
IGT_8855: 3c05ee1076cee44a2bc3c176ec21e651f6eca600 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4901-b96553291acba156d4f41bc740daa5de58413cd6: b96553291acba156d4f41bc740daa5de58413cd6
xe-pw-164676v2: 164676v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v2/index.html
[-- Attachment #2: Type: text/html, Size: 26401 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ CI.KUnit: success for drm/i915/reset: Expose "display_reset_count" in debugfs (rev3)
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
` (7 preceding siblings ...)
2026-04-14 17:07 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-15 9:05 ` Patchwork
2026-04-15 10:15 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-15 11:49 ` ✗ Xe.CI.FULL: failure " Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-15 9:05 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
== Series Details ==
Series: drm/i915/reset: Expose "display_reset_count" in debugfs (rev3)
URL : https://patchwork.freedesktop.org/series/164676/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[09:04:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:04:22] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[09:04:57] Starting KUnit Kernel (1/1)...
[09:04:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:04:57] ================== guc_buf (11 subtests) ===================
[09:04:57] [PASSED] test_smallest
[09:04:57] [PASSED] test_largest
[09:04:57] [PASSED] test_granular
[09:04:57] [PASSED] test_unique
[09:04:57] [PASSED] test_overlap
[09:04:57] [PASSED] test_reusable
[09:04:57] [PASSED] test_too_big
[09:04:57] [PASSED] test_flush
[09:04:57] [PASSED] test_lookup
[09:04:57] [PASSED] test_data
[09:04:57] [PASSED] test_class
[09:04:57] ===================== [PASSED] guc_buf =====================
[09:04:57] =================== guc_dbm (7 subtests) ===================
[09:04:57] [PASSED] test_empty
[09:04:57] [PASSED] test_default
[09:04:57] ======================== test_size ========================
[09:04:57] [PASSED] 4
[09:04:57] [PASSED] 8
[09:04:57] [PASSED] 32
[09:04:57] [PASSED] 256
[09:04:57] ==================== [PASSED] test_size ====================
[09:04:57] ======================= test_reuse ========================
[09:04:57] [PASSED] 4
[09:04:57] [PASSED] 8
[09:04:57] [PASSED] 32
[09:04:57] [PASSED] 256
[09:04:57] =================== [PASSED] test_reuse ====================
[09:04:57] =================== test_range_overlap ====================
[09:04:57] [PASSED] 4
[09:04:57] [PASSED] 8
[09:04:57] [PASSED] 32
[09:04:57] [PASSED] 256
[09:04:57] =============== [PASSED] test_range_overlap ================
[09:04:57] =================== test_range_compact ====================
[09:04:57] [PASSED] 4
[09:04:57] [PASSED] 8
[09:04:57] [PASSED] 32
[09:04:57] [PASSED] 256
[09:04:57] =============== [PASSED] test_range_compact ================
[09:04:57] ==================== test_range_spare =====================
[09:04:57] [PASSED] 4
[09:04:57] [PASSED] 8
[09:04:57] [PASSED] 32
[09:04:57] [PASSED] 256
[09:04:57] ================ [PASSED] test_range_spare =================
[09:04:57] ===================== [PASSED] guc_dbm =====================
[09:04:57] =================== guc_idm (6 subtests) ===================
[09:04:57] [PASSED] bad_init
[09:04:57] [PASSED] no_init
[09:04:57] [PASSED] init_fini
[09:04:57] [PASSED] check_used
[09:04:57] [PASSED] check_quota
[09:04:57] [PASSED] check_all
[09:04:57] ===================== [PASSED] guc_idm =====================
[09:04:57] ================== no_relay (3 subtests) ===================
[09:04:57] [PASSED] xe_drops_guc2pf_if_not_ready
[09:04:57] [PASSED] xe_drops_guc2vf_if_not_ready
[09:04:57] [PASSED] xe_rejects_send_if_not_ready
[09:04:57] ==================== [PASSED] no_relay =====================
[09:04:57] ================== pf_relay (14 subtests) ==================
[09:04:57] [PASSED] pf_rejects_guc2pf_too_short
[09:04:57] [PASSED] pf_rejects_guc2pf_too_long
[09:04:57] [PASSED] pf_rejects_guc2pf_no_payload
[09:04:57] [PASSED] pf_fails_no_payload
[09:04:57] [PASSED] pf_fails_bad_origin
[09:04:57] [PASSED] pf_fails_bad_type
[09:04:57] [PASSED] pf_txn_reports_error
[09:04:57] [PASSED] pf_txn_sends_pf2guc
[09:04:57] [PASSED] pf_sends_pf2guc
[09:04:57] [SKIPPED] pf_loopback_nop
[09:04:57] [SKIPPED] pf_loopback_echo
[09:04:57] [SKIPPED] pf_loopback_fail
[09:04:57] [SKIPPED] pf_loopback_busy
[09:04:57] [SKIPPED] pf_loopback_retry
[09:04:57] ==================== [PASSED] pf_relay =====================
[09:04:57] ================== vf_relay (3 subtests) ===================
[09:04:57] [PASSED] vf_rejects_guc2vf_too_short
[09:04:57] [PASSED] vf_rejects_guc2vf_too_long
[09:04:57] [PASSED] vf_rejects_guc2vf_no_payload
[09:04:57] ==================== [PASSED] vf_relay =====================
[09:04:57] ================ pf_gt_config (9 subtests) =================
[09:04:57] [PASSED] fair_contexts_1vf
[09:04:57] [PASSED] fair_doorbells_1vf
[09:04:57] [PASSED] fair_ggtt_1vf
[09:04:57] ====================== fair_vram_1vf ======================
[09:04:57] [PASSED] 3.50 GiB
[09:04:57] [PASSED] 11.5 GiB
[09:04:57] [PASSED] 15.5 GiB
[09:04:57] [PASSED] 31.5 GiB
[09:04:57] [PASSED] 63.5 GiB
[09:04:57] [PASSED] 1.91 GiB
[09:04:57] ================== [PASSED] fair_vram_1vf ==================
[09:04:57] ================ fair_vram_1vf_admin_only =================
[09:04:57] [PASSED] 3.50 GiB
[09:04:57] [PASSED] 11.5 GiB
[09:04:57] [PASSED] 15.5 GiB
[09:04:57] [PASSED] 31.5 GiB
[09:04:57] [PASSED] 63.5 GiB
[09:04:57] [PASSED] 1.91 GiB
[09:04:57] ============ [PASSED] fair_vram_1vf_admin_only =============
[09:04:57] ====================== fair_contexts ======================
[09:04:57] [PASSED] 1 VF
[09:04:57] [PASSED] 2 VFs
[09:04:57] [PASSED] 3 VFs
[09:04:57] [PASSED] 4 VFs
[09:04:57] [PASSED] 5 VFs
[09:04:57] [PASSED] 6 VFs
[09:04:57] [PASSED] 7 VFs
[09:04:57] [PASSED] 8 VFs
[09:04:57] [PASSED] 9 VFs
[09:04:57] [PASSED] 10 VFs
[09:04:57] [PASSED] 11 VFs
[09:04:57] [PASSED] 12 VFs
[09:04:57] [PASSED] 13 VFs
[09:04:57] [PASSED] 14 VFs
[09:04:57] [PASSED] 15 VFs
[09:04:57] [PASSED] 16 VFs
[09:04:57] [PASSED] 17 VFs
[09:04:57] [PASSED] 18 VFs
[09:04:57] [PASSED] 19 VFs
[09:04:57] [PASSED] 20 VFs
[09:04:57] [PASSED] 21 VFs
[09:04:57] [PASSED] 22 VFs
[09:04:57] [PASSED] 23 VFs
[09:04:57] [PASSED] 24 VFs
[09:04:57] [PASSED] 25 VFs
[09:04:57] [PASSED] 26 VFs
[09:04:57] [PASSED] 27 VFs
[09:04:57] [PASSED] 28 VFs
[09:04:57] [PASSED] 29 VFs
[09:04:57] [PASSED] 30 VFs
[09:04:57] [PASSED] 31 VFs
[09:04:57] [PASSED] 32 VFs
[09:04:57] [PASSED] 33 VFs
[09:04:57] [PASSED] 34 VFs
[09:04:57] [PASSED] 35 VFs
[09:04:57] [PASSED] 36 VFs
[09:04:57] [PASSED] 37 VFs
[09:04:57] [PASSED] 38 VFs
[09:04:57] [PASSED] 39 VFs
[09:04:57] [PASSED] 40 VFs
[09:04:57] [PASSED] 41 VFs
[09:04:57] [PASSED] 42 VFs
[09:04:57] [PASSED] 43 VFs
[09:04:57] [PASSED] 44 VFs
[09:04:57] [PASSED] 45 VFs
[09:04:57] [PASSED] 46 VFs
[09:04:57] [PASSED] 47 VFs
[09:04:57] [PASSED] 48 VFs
[09:04:57] [PASSED] 49 VFs
[09:04:57] [PASSED] 50 VFs
[09:04:57] [PASSED] 51 VFs
[09:04:57] [PASSED] 52 VFs
[09:04:57] [PASSED] 53 VFs
[09:04:57] [PASSED] 54 VFs
[09:04:57] [PASSED] 55 VFs
[09:04:57] [PASSED] 56 VFs
[09:04:57] [PASSED] 57 VFs
[09:04:57] [PASSED] 58 VFs
[09:04:57] [PASSED] 59 VFs
[09:04:57] [PASSED] 60 VFs
[09:04:57] [PASSED] 61 VFs
[09:04:57] [PASSED] 62 VFs
[09:04:57] [PASSED] 63 VFs
[09:04:57] ================== [PASSED] fair_contexts ==================
[09:04:57] ===================== fair_doorbells ======================
[09:04:57] [PASSED] 1 VF
[09:04:57] [PASSED] 2 VFs
[09:04:57] [PASSED] 3 VFs
[09:04:57] [PASSED] 4 VFs
[09:04:57] [PASSED] 5 VFs
[09:04:57] [PASSED] 6 VFs
[09:04:57] [PASSED] 7 VFs
[09:04:57] [PASSED] 8 VFs
[09:04:57] [PASSED] 9 VFs
[09:04:57] [PASSED] 10 VFs
[09:04:57] [PASSED] 11 VFs
[09:04:57] [PASSED] 12 VFs
[09:04:57] [PASSED] 13 VFs
[09:04:57] [PASSED] 14 VFs
[09:04:57] [PASSED] 15 VFs
[09:04:57] [PASSED] 16 VFs
[09:04:57] [PASSED] 17 VFs
[09:04:57] [PASSED] 18 VFs
[09:04:57] [PASSED] 19 VFs
[09:04:57] [PASSED] 20 VFs
[09:04:57] [PASSED] 21 VFs
[09:04:57] [PASSED] 22 VFs
[09:04:57] [PASSED] 23 VFs
[09:04:57] [PASSED] 24 VFs
[09:04:57] [PASSED] 25 VFs
[09:04:57] [PASSED] 26 VFs
[09:04:57] [PASSED] 27 VFs
[09:04:57] [PASSED] 28 VFs
[09:04:57] [PASSED] 29 VFs
[09:04:57] [PASSED] 30 VFs
[09:04:57] [PASSED] 31 VFs
[09:04:57] [PASSED] 32 VFs
[09:04:57] [PASSED] 33 VFs
[09:04:57] [PASSED] 34 VFs
[09:04:57] [PASSED] 35 VFs
[09:04:57] [PASSED] 36 VFs
[09:04:57] [PASSED] 37 VFs
[09:04:57] [PASSED] 38 VFs
[09:04:57] [PASSED] 39 VFs
[09:04:57] [PASSED] 40 VFs
[09:04:57] [PASSED] 41 VFs
[09:04:57] [PASSED] 42 VFs
[09:04:57] [PASSED] 43 VFs
[09:04:57] [PASSED] 44 VFs
[09:04:57] [PASSED] 45 VFs
[09:04:57] [PASSED] 46 VFs
[09:04:57] [PASSED] 47 VFs
[09:04:57] [PASSED] 48 VFs
[09:04:57] [PASSED] 49 VFs
[09:04:57] [PASSED] 50 VFs
[09:04:57] [PASSED] 51 VFs
[09:04:57] [PASSED] 52 VFs
[09:04:57] [PASSED] 53 VFs
[09:04:57] [PASSED] 54 VFs
[09:04:57] [PASSED] 55 VFs
[09:04:57] [PASSED] 56 VFs
[09:04:57] [PASSED] 57 VFs
[09:04:57] [PASSED] 58 VFs
[09:04:57] [PASSED] 59 VFs
[09:04:57] [PASSED] 60 VFs
[09:04:57] [PASSED] 61 VFs
[09:04:57] [PASSED] 62 VFs
[09:04:57] [PASSED] 63 VFs
[09:04:57] ================= [PASSED] fair_doorbells ==================
[09:04:57] ======================== fair_ggtt ========================
[09:04:57] [PASSED] 1 VF
[09:04:57] [PASSED] 2 VFs
[09:04:57] [PASSED] 3 VFs
[09:04:57] [PASSED] 4 VFs
[09:04:57] [PASSED] 5 VFs
[09:04:57] [PASSED] 6 VFs
[09:04:57] [PASSED] 7 VFs
[09:04:57] [PASSED] 8 VFs
[09:04:57] [PASSED] 9 VFs
[09:04:57] [PASSED] 10 VFs
[09:04:57] [PASSED] 11 VFs
[09:04:57] [PASSED] 12 VFs
[09:04:57] [PASSED] 13 VFs
[09:04:57] [PASSED] 14 VFs
[09:04:57] [PASSED] 15 VFs
[09:04:57] [PASSED] 16 VFs
[09:04:57] [PASSED] 17 VFs
[09:04:57] [PASSED] 18 VFs
[09:04:57] [PASSED] 19 VFs
[09:04:57] [PASSED] 20 VFs
[09:04:57] [PASSED] 21 VFs
[09:04:57] [PASSED] 22 VFs
[09:04:57] [PASSED] 23 VFs
[09:04:57] [PASSED] 24 VFs
[09:04:57] [PASSED] 25 VFs
[09:04:57] [PASSED] 26 VFs
[09:04:57] [PASSED] 27 VFs
[09:04:57] [PASSED] 28 VFs
[09:04:57] [PASSED] 29 VFs
[09:04:57] [PASSED] 30 VFs
[09:04:57] [PASSED] 31 VFs
[09:04:57] [PASSED] 32 VFs
[09:04:57] [PASSED] 33 VFs
[09:04:57] [PASSED] 34 VFs
[09:04:57] [PASSED] 35 VFs
[09:04:57] [PASSED] 36 VFs
[09:04:57] [PASSED] 37 VFs
[09:04:57] [PASSED] 38 VFs
[09:04:57] [PASSED] 39 VFs
[09:04:57] [PASSED] 40 VFs
[09:04:57] [PASSED] 41 VFs
[09:04:57] [PASSED] 42 VFs
[09:04:57] [PASSED] 43 VFs
[09:04:57] [PASSED] 44 VFs
[09:04:57] [PASSED] 45 VFs
[09:04:57] [PASSED] 46 VFs
[09:04:57] [PASSED] 47 VFs
[09:04:57] [PASSED] 48 VFs
[09:04:57] [PASSED] 49 VFs
[09:04:57] [PASSED] 50 VFs
[09:04:57] [PASSED] 51 VFs
[09:04:57] [PASSED] 52 VFs
[09:04:57] [PASSED] 53 VFs
[09:04:57] [PASSED] 54 VFs
[09:04:57] [PASSED] 55 VFs
[09:04:57] [PASSED] 56 VFs
[09:04:57] [PASSED] 57 VFs
[09:04:57] [PASSED] 58 VFs
[09:04:57] [PASSED] 59 VFs
[09:04:57] [PASSED] 60 VFs
[09:04:57] [PASSED] 61 VFs
[09:04:57] [PASSED] 62 VFs
[09:04:57] [PASSED] 63 VFs
[09:04:57] ==================== [PASSED] fair_ggtt ====================
[09:04:57] ======================== fair_vram ========================
[09:04:57] [PASSED] 1 VF
[09:04:57] [PASSED] 2 VFs
[09:04:57] [PASSED] 3 VFs
[09:04:57] [PASSED] 4 VFs
[09:04:57] [PASSED] 5 VFs
[09:04:57] [PASSED] 6 VFs
[09:04:57] [PASSED] 7 VFs
[09:04:57] [PASSED] 8 VFs
[09:04:57] [PASSED] 9 VFs
[09:04:57] [PASSED] 10 VFs
[09:04:57] [PASSED] 11 VFs
[09:04:57] [PASSED] 12 VFs
[09:04:57] [PASSED] 13 VFs
[09:04:57] [PASSED] 14 VFs
[09:04:57] [PASSED] 15 VFs
[09:04:57] [PASSED] 16 VFs
[09:04:57] [PASSED] 17 VFs
[09:04:57] [PASSED] 18 VFs
[09:04:57] [PASSED] 19 VFs
[09:04:57] [PASSED] 20 VFs
[09:04:57] [PASSED] 21 VFs
[09:04:57] [PASSED] 22 VFs
[09:04:57] [PASSED] 23 VFs
[09:04:57] [PASSED] 24 VFs
[09:04:57] [PASSED] 25 VFs
[09:04:57] [PASSED] 26 VFs
[09:04:57] [PASSED] 27 VFs
[09:04:57] [PASSED] 28 VFs
[09:04:57] [PASSED] 29 VFs
[09:04:57] [PASSED] 30 VFs
[09:04:57] [PASSED] 31 VFs
[09:04:57] [PASSED] 32 VFs
[09:04:57] [PASSED] 33 VFs
[09:04:57] [PASSED] 34 VFs
[09:04:57] [PASSED] 35 VFs
[09:04:57] [PASSED] 36 VFs
[09:04:57] [PASSED] 37 VFs
[09:04:57] [PASSED] 38 VFs
[09:04:57] [PASSED] 39 VFs
[09:04:57] [PASSED] 40 VFs
[09:04:57] [PASSED] 41 VFs
[09:04:57] [PASSED] 42 VFs
[09:04:57] [PASSED] 43 VFs
[09:04:57] [PASSED] 44 VFs
[09:04:57] [PASSED] 45 VFs
[09:04:57] [PASSED] 46 VFs
[09:04:57] [PASSED] 47 VFs
[09:04:57] [PASSED] 48 VFs
[09:04:57] [PASSED] 49 VFs
[09:04:57] [PASSED] 50 VFs
[09:04:57] [PASSED] 51 VFs
[09:04:57] [PASSED] 52 VFs
[09:04:57] [PASSED] 53 VFs
[09:04:57] [PASSED] 54 VFs
[09:04:57] [PASSED] 55 VFs
[09:04:57] [PASSED] 56 VFs
[09:04:57] [PASSED] 57 VFs
[09:04:57] [PASSED] 58 VFs
[09:04:57] [PASSED] 59 VFs
[09:04:57] [PASSED] 60 VFs
[09:04:57] [PASSED] 61 VFs
[09:04:57] [PASSED] 62 VFs
[09:04:57] [PASSED] 63 VFs
[09:04:57] ==================== [PASSED] fair_vram ====================
[09:04:57] ================== [PASSED] pf_gt_config ===================
[09:04:57] ===================== lmtt (1 subtest) =====================
[09:04:57] ======================== test_ops =========================
[09:04:57] [PASSED] 2-level
[09:04:57] [PASSED] multi-level
[09:04:57] ==================== [PASSED] test_ops =====================
[09:04:57] ====================== [PASSED] lmtt =======================
[09:04:57] ================= pf_service (11 subtests) =================
[09:04:57] [PASSED] pf_negotiate_any
[09:04:57] [PASSED] pf_negotiate_base_match
[09:04:57] [PASSED] pf_negotiate_base_newer
[09:04:57] [PASSED] pf_negotiate_base_next
[09:04:57] [SKIPPED] pf_negotiate_base_older
[09:04:57] [PASSED] pf_negotiate_base_prev
[09:04:57] [PASSED] pf_negotiate_latest_match
[09:04:57] [PASSED] pf_negotiate_latest_newer
[09:04:57] [PASSED] pf_negotiate_latest_next
[09:04:57] [SKIPPED] pf_negotiate_latest_older
[09:04:57] [SKIPPED] pf_negotiate_latest_prev
[09:04:57] =================== [PASSED] pf_service ====================
[09:04:57] ================= xe_guc_g2g (2 subtests) ==================
[09:04:57] ============== xe_live_guc_g2g_kunit_default ==============
[09:04:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[09:04:57] ============== xe_live_guc_g2g_kunit_allmem ===============
[09:04:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[09:04:57] =================== [SKIPPED] xe_guc_g2g ===================
[09:04:57] =================== xe_mocs (2 subtests) ===================
[09:04:57] ================ xe_live_mocs_kernel_kunit ================
[09:04:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:04:57] ================ xe_live_mocs_reset_kunit =================
[09:04:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:04:57] ==================== [SKIPPED] xe_mocs =====================
[09:04:57] ================= xe_migrate (2 subtests) ==================
[09:04:57] ================= xe_migrate_sanity_kunit =================
[09:04:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:04:57] ================== xe_validate_ccs_kunit ==================
[09:04:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:04:57] =================== [SKIPPED] xe_migrate ===================
[09:04:57] ================== xe_dma_buf (1 subtest) ==================
[09:04:57] ==================== xe_dma_buf_kunit =====================
[09:04:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:04:57] =================== [SKIPPED] xe_dma_buf ===================
[09:04:57] ================= xe_bo_shrink (1 subtest) =================
[09:04:57] =================== xe_bo_shrink_kunit ====================
[09:04:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:04:57] ================== [SKIPPED] xe_bo_shrink ==================
[09:04:57] ==================== xe_bo (2 subtests) ====================
[09:04:57] ================== xe_ccs_migrate_kunit ===================
[09:04:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:04:57] ==================== xe_bo_evict_kunit ====================
[09:04:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:04:57] ===================== [SKIPPED] xe_bo ======================
[09:04:57] ==================== args (13 subtests) ====================
[09:04:57] [PASSED] count_args_test
[09:04:57] [PASSED] call_args_example
[09:04:57] [PASSED] call_args_test
[09:04:57] [PASSED] drop_first_arg_example
[09:04:57] [PASSED] drop_first_arg_test
[09:04:57] [PASSED] first_arg_example
[09:04:57] [PASSED] first_arg_test
[09:04:57] [PASSED] last_arg_example
[09:04:57] [PASSED] last_arg_test
[09:04:57] [PASSED] pick_arg_example
[09:04:57] [PASSED] if_args_example
[09:04:57] [PASSED] if_args_test
[09:04:57] [PASSED] sep_comma_example
[09:04:57] ====================== [PASSED] args =======================
[09:04:57] =================== xe_pci (3 subtests) ====================
[09:04:57] ==================== check_graphics_ip ====================
[09:04:57] [PASSED] 12.00 Xe_LP
[09:04:57] [PASSED] 12.10 Xe_LP+
[09:04:57] [PASSED] 12.55 Xe_HPG
[09:04:57] [PASSED] 12.60 Xe_HPC
[09:04:57] [PASSED] 12.70 Xe_LPG
[09:04:57] [PASSED] 12.71 Xe_LPG
[09:04:57] [PASSED] 12.74 Xe_LPG+
[09:04:57] [PASSED] 20.01 Xe2_HPG
[09:04:57] [PASSED] 20.02 Xe2_HPG
[09:04:57] [PASSED] 20.04 Xe2_LPG
[09:04:57] [PASSED] 30.00 Xe3_LPG
[09:04:57] [PASSED] 30.01 Xe3_LPG
[09:04:57] [PASSED] 30.03 Xe3_LPG
[09:04:57] [PASSED] 30.04 Xe3_LPG
[09:04:57] [PASSED] 30.05 Xe3_LPG
[09:04:57] [PASSED] 35.10 Xe3p_LPG
[09:04:57] [PASSED] 35.11 Xe3p_XPC
[09:04:57] ================ [PASSED] check_graphics_ip ================
[09:04:57] ===================== check_media_ip ======================
[09:04:57] [PASSED] 12.00 Xe_M
[09:04:57] [PASSED] 12.55 Xe_HPM
[09:04:57] [PASSED] 13.00 Xe_LPM+
[09:04:57] [PASSED] 13.01 Xe2_HPM
[09:04:57] [PASSED] 20.00 Xe2_LPM
[09:04:57] [PASSED] 30.00 Xe3_LPM
[09:04:57] [PASSED] 30.02 Xe3_LPM
[09:04:57] [PASSED] 35.00 Xe3p_LPM
[09:04:57] [PASSED] 35.03 Xe3p_HPM
[09:04:57] ================= [PASSED] check_media_ip ==================
[09:04:57] =================== check_platform_desc ===================
[09:04:57] [PASSED] 0x9A60 (TIGERLAKE)
[09:04:57] [PASSED] 0x9A68 (TIGERLAKE)
[09:04:57] [PASSED] 0x9A70 (TIGERLAKE)
[09:04:57] [PASSED] 0x9A40 (TIGERLAKE)
[09:04:57] [PASSED] 0x9A49 (TIGERLAKE)
[09:04:57] [PASSED] 0x9A59 (TIGERLAKE)
[09:04:57] [PASSED] 0x9A78 (TIGERLAKE)
[09:04:57] [PASSED] 0x9AC0 (TIGERLAKE)
[09:04:57] [PASSED] 0x9AC9 (TIGERLAKE)
[09:04:57] [PASSED] 0x9AD9 (TIGERLAKE)
[09:04:57] [PASSED] 0x9AF8 (TIGERLAKE)
[09:04:57] [PASSED] 0x4C80 (ROCKETLAKE)
[09:04:57] [PASSED] 0x4C8A (ROCKETLAKE)
[09:04:57] [PASSED] 0x4C8B (ROCKETLAKE)
[09:04:57] [PASSED] 0x4C8C (ROCKETLAKE)
[09:04:57] [PASSED] 0x4C90 (ROCKETLAKE)
[09:04:57] [PASSED] 0x4C9A (ROCKETLAKE)
[09:04:57] [PASSED] 0x4680 (ALDERLAKE_S)
[09:04:57] [PASSED] 0x4682 (ALDERLAKE_S)
[09:04:57] [PASSED] 0x4688 (ALDERLAKE_S)
[09:04:57] [PASSED] 0x468A (ALDERLAKE_S)
[09:04:57] [PASSED] 0x468B (ALDERLAKE_S)
[09:04:57] [PASSED] 0x4690 (ALDERLAKE_S)
[09:04:57] [PASSED] 0x4692 (ALDERLAKE_S)
[09:04:57] [PASSED] 0x4693 (ALDERLAKE_S)
[09:04:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46AA (ALDERLAKE_P)
[09:04:57] [PASSED] 0x462A (ALDERLAKE_P)
[09:04:57] [PASSED] 0x4626 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x4628 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:04:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:04:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:04:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:04:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:04:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:04:57] [PASSED] 0xA721 (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA720 (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:04:57] [PASSED] 0xA780 (ALDERLAKE_S)
[09:04:57] [PASSED] 0xA781 (ALDERLAKE_S)
[09:04:57] [PASSED] 0xA782 (ALDERLAKE_S)
[09:04:57] [PASSED] 0xA783 (ALDERLAKE_S)
[09:04:57] [PASSED] 0xA788 (ALDERLAKE_S)
[09:04:57] [PASSED] 0xA789 (ALDERLAKE_S)
[09:04:57] [PASSED] 0xA78A (ALDERLAKE_S)
[09:04:57] [PASSED] 0xA78B (ALDERLAKE_S)
[09:04:57] [PASSED] 0x4905 (DG1)
[09:04:57] [PASSED] 0x4906 (DG1)
[09:04:57] [PASSED] 0x4907 (DG1)
[09:04:57] [PASSED] 0x4908 (DG1)
[09:04:57] [PASSED] 0x4909 (DG1)
[09:04:57] [PASSED] 0x56C0 (DG2)
[09:04:57] [PASSED] 0x56C2 (DG2)
[09:04:57] [PASSED] 0x56C1 (DG2)
[09:04:57] [PASSED] 0x7D51 (METEORLAKE)
[09:04:57] [PASSED] 0x7DD1 (METEORLAKE)
[09:04:57] [PASSED] 0x7D41 (METEORLAKE)
[09:04:57] [PASSED] 0x7D67 (METEORLAKE)
[09:04:57] [PASSED] 0xB640 (METEORLAKE)
[09:04:57] [PASSED] 0x56A0 (DG2)
[09:04:57] [PASSED] 0x56A1 (DG2)
[09:04:57] [PASSED] 0x56A2 (DG2)
[09:04:57] [PASSED] 0x56BE (DG2)
[09:04:57] [PASSED] 0x56BF (DG2)
[09:04:57] [PASSED] 0x5690 (DG2)
[09:04:57] [PASSED] 0x5691 (DG2)
[09:04:57] [PASSED] 0x5692 (DG2)
[09:04:57] [PASSED] 0x56A5 (DG2)
[09:04:57] [PASSED] 0x56A6 (DG2)
[09:04:57] [PASSED] 0x56B0 (DG2)
[09:04:57] [PASSED] 0x56B1 (DG2)
[09:04:57] [PASSED] 0x56BA (DG2)
[09:04:57] [PASSED] 0x56BB (DG2)
[09:04:57] [PASSED] 0x56BC (DG2)
[09:04:57] [PASSED] 0x56BD (DG2)
[09:04:57] [PASSED] 0x5693 (DG2)
[09:04:57] [PASSED] 0x5694 (DG2)
[09:04:57] [PASSED] 0x5695 (DG2)
[09:04:57] [PASSED] 0x56A3 (DG2)
[09:04:57] [PASSED] 0x56A4 (DG2)
[09:04:57] [PASSED] 0x56B2 (DG2)
[09:04:57] [PASSED] 0x56B3 (DG2)
[09:04:57] [PASSED] 0x5696 (DG2)
[09:04:57] [PASSED] 0x5697 (DG2)
[09:04:57] [PASSED] 0xB69 (PVC)
[09:04:57] [PASSED] 0xB6E (PVC)
[09:04:57] [PASSED] 0xBD4 (PVC)
[09:04:57] [PASSED] 0xBD5 (PVC)
[09:04:57] [PASSED] 0xBD6 (PVC)
[09:04:57] [PASSED] 0xBD7 (PVC)
[09:04:57] [PASSED] 0xBD8 (PVC)
[09:04:57] [PASSED] 0xBD9 (PVC)
[09:04:57] [PASSED] 0xBDA (PVC)
[09:04:57] [PASSED] 0xBDB (PVC)
[09:04:57] [PASSED] 0xBE0 (PVC)
[09:04:57] [PASSED] 0xBE1 (PVC)
[09:04:57] [PASSED] 0xBE5 (PVC)
[09:04:57] [PASSED] 0x7D40 (METEORLAKE)
[09:04:57] [PASSED] 0x7D45 (METEORLAKE)
[09:04:57] [PASSED] 0x7D55 (METEORLAKE)
[09:04:57] [PASSED] 0x7D60 (METEORLAKE)
[09:04:57] [PASSED] 0x7DD5 (METEORLAKE)
[09:04:57] [PASSED] 0x6420 (LUNARLAKE)
[09:04:57] [PASSED] 0x64A0 (LUNARLAKE)
[09:04:57] [PASSED] 0x64B0 (LUNARLAKE)
[09:04:57] [PASSED] 0xE202 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE209 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE20B (BATTLEMAGE)
[09:04:57] [PASSED] 0xE20C (BATTLEMAGE)
[09:04:57] [PASSED] 0xE20D (BATTLEMAGE)
[09:04:57] [PASSED] 0xE210 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE211 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE212 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE216 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE220 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE221 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE222 (BATTLEMAGE)
[09:04:57] [PASSED] 0xE223 (BATTLEMAGE)
[09:04:57] [PASSED] 0xB080 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB081 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB082 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB083 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB084 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB085 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB086 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB087 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB08F (PANTHERLAKE)
[09:04:57] [PASSED] 0xB090 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:04:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:04:57] [PASSED] 0xFD80 (PANTHERLAKE)
[09:04:57] [PASSED] 0xFD81 (PANTHERLAKE)
[09:04:57] [PASSED] 0xD740 (NOVALAKE_S)
[09:04:57] [PASSED] 0xD741 (NOVALAKE_S)
[09:04:57] [PASSED] 0xD742 (NOVALAKE_S)
[09:04:57] [PASSED] 0xD743 (NOVALAKE_S)
[09:04:57] [PASSED] 0xD744 (NOVALAKE_S)
[09:04:57] [PASSED] 0xD745 (NOVALAKE_S)
[09:04:57] [PASSED] 0x674C (CRESCENTISLAND)
[09:04:57] [PASSED] 0xD750 (NOVALAKE_P)
[09:04:57] [PASSED] 0xD751 (NOVALAKE_P)
[09:04:57] [PASSED] 0xD752 (NOVALAKE_P)
[09:04:57] [PASSED] 0xD753 (NOVALAKE_P)
[09:04:57] [PASSED] 0xD754 (NOVALAKE_P)
[09:04:57] [PASSED] 0xD755 (NOVALAKE_P)
[09:04:57] [PASSED] 0xD756 (NOVALAKE_P)
[09:04:57] [PASSED] 0xD757 (NOVALAKE_P)
[09:04:57] [PASSED] 0xD75F (NOVALAKE_P)
[09:04:57] =============== [PASSED] check_platform_desc ===============
[09:04:57] ===================== [PASSED] xe_pci ======================
[09:04:57] =================== xe_rtp (2 subtests) ====================
[09:04:57] =============== xe_rtp_process_to_sr_tests ================
[09:04:57] [PASSED] coalesce-same-reg
[09:04:57] [PASSED] no-match-no-add
[09:04:57] [PASSED] match-or
[09:04:57] [PASSED] match-or-xfail
[09:04:57] [PASSED] no-match-no-add-multiple-rules
[09:04:57] [PASSED] two-regs-two-entries
[09:04:57] [PASSED] clr-one-set-other
[09:04:57] [PASSED] set-field
[09:04:57] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[09:04:57] [PASSED] conflict-not-disjoint
[09:04:57] [PASSED] conflict-reg-type
[09:04:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:04:57] ================== xe_rtp_process_tests ===================
[09:04:57] [PASSED] active1
[09:04:57] [PASSED] active2
[09:04:57] [PASSED] active-inactive
[09:04:57] [PASSED] inactive-active
[09:04:57] [PASSED] inactive-1st_or_active-inactive
[09:04:57] [PASSED] inactive-2nd_or_active-inactive
[09:04:57] [PASSED] inactive-last_or_active-inactive
[09:04:57] [PASSED] inactive-no_or_active-inactive
[09:04:57] ============== [PASSED] xe_rtp_process_tests ===============
[09:04:57] ===================== [PASSED] xe_rtp ======================
[09:04:57] ==================== xe_wa (1 subtest) =====================
[09:04:57] ======================== xe_wa_gt =========================
[09:04:57] [PASSED] TIGERLAKE B0
[09:04:57] [PASSED] DG1 A0
[09:04:57] [PASSED] DG1 B0
[09:04:57] [PASSED] ALDERLAKE_S A0
[09:04:57] [PASSED] ALDERLAKE_S B0
[09:04:57] [PASSED] ALDERLAKE_S C0
[09:04:57] [PASSED] ALDERLAKE_S D0
[09:04:57] [PASSED] ALDERLAKE_P A0
[09:04:57] [PASSED] ALDERLAKE_P B0
[09:04:57] [PASSED] ALDERLAKE_P C0
[09:04:57] [PASSED] ALDERLAKE_S RPLS D0
[09:04:57] [PASSED] ALDERLAKE_P RPLU E0
[09:04:57] [PASSED] DG2 G10 C0
[09:04:57] [PASSED] DG2 G11 B1
[09:04:57] [PASSED] DG2 G12 A1
[09:04:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:04:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:04:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[09:04:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[09:04:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[09:04:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[09:04:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[09:04:57] ==================== [PASSED] xe_wa_gt =====================
[09:04:57] ====================== [PASSED] xe_wa ======================
[09:04:57] ============================================================
[09:04:57] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[09:04:57] Elapsed time: 39.566s total, 4.267s configuring, 34.682s building, 0.610s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[09:04:58] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:04:59] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[09:05:24] Starting KUnit Kernel (1/1)...
[09:05:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:05:24] ============ drm_test_pick_cmdline (2 subtests) ============
[09:05:24] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[09:05:24] =============== drm_test_pick_cmdline_named ===============
[09:05:24] [PASSED] NTSC
[09:05:24] [PASSED] NTSC-J
[09:05:24] [PASSED] PAL
[09:05:24] [PASSED] PAL-M
[09:05:24] =========== [PASSED] drm_test_pick_cmdline_named ===========
[09:05:24] ============== [PASSED] drm_test_pick_cmdline ==============
[09:05:24] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[09:05:24] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[09:05:24] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[09:05:24] =========== drm_validate_clone_mode (2 subtests) ===========
[09:05:24] ============== drm_test_check_in_clone_mode ===============
[09:05:24] [PASSED] in_clone_mode
[09:05:24] [PASSED] not_in_clone_mode
[09:05:24] ========== [PASSED] drm_test_check_in_clone_mode ===========
[09:05:24] =============== drm_test_check_valid_clones ===============
[09:05:24] [PASSED] not_in_clone_mode
[09:05:24] [PASSED] valid_clone
[09:05:24] [PASSED] invalid_clone
[09:05:24] =========== [PASSED] drm_test_check_valid_clones ===========
[09:05:24] ============= [PASSED] drm_validate_clone_mode =============
[09:05:24] ============= drm_validate_modeset (1 subtest) =============
[09:05:24] [PASSED] drm_test_check_connector_changed_modeset
[09:05:24] ============== [PASSED] drm_validate_modeset ===============
[09:05:24] ====== drm_test_bridge_get_current_state (2 subtests) ======
[09:05:24] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[09:05:24] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[09:05:24] ======== [PASSED] drm_test_bridge_get_current_state ========
[09:05:24] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[09:05:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[09:05:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[09:05:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[09:05:24] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[09:05:24] ============== drm_bridge_alloc (2 subtests) ===============
[09:05:24] [PASSED] drm_test_drm_bridge_alloc_basic
[09:05:24] [PASSED] drm_test_drm_bridge_alloc_get_put
[09:05:24] ================ [PASSED] drm_bridge_alloc =================
[09:05:24] ============= drm_cmdline_parser (40 subtests) =============
[09:05:24] [PASSED] drm_test_cmdline_force_d_only
[09:05:24] [PASSED] drm_test_cmdline_force_D_only_dvi
[09:05:24] [PASSED] drm_test_cmdline_force_D_only_hdmi
[09:05:24] [PASSED] drm_test_cmdline_force_D_only_not_digital
[09:05:24] [PASSED] drm_test_cmdline_force_e_only
[09:05:24] [PASSED] drm_test_cmdline_res
[09:05:24] [PASSED] drm_test_cmdline_res_vesa
[09:05:24] [PASSED] drm_test_cmdline_res_vesa_rblank
[09:05:24] [PASSED] drm_test_cmdline_res_rblank
[09:05:24] [PASSED] drm_test_cmdline_res_bpp
[09:05:24] [PASSED] drm_test_cmdline_res_refresh
[09:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh
[09:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[09:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[09:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[09:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[09:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[09:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[09:05:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[09:05:24] [PASSED] drm_test_cmdline_res_margins_force_on
[09:05:24] [PASSED] drm_test_cmdline_res_vesa_margins
[09:05:24] [PASSED] drm_test_cmdline_name
[09:05:24] [PASSED] drm_test_cmdline_name_bpp
[09:05:24] [PASSED] drm_test_cmdline_name_option
[09:05:24] [PASSED] drm_test_cmdline_name_bpp_option
[09:05:24] [PASSED] drm_test_cmdline_rotate_0
[09:05:24] [PASSED] drm_test_cmdline_rotate_90
[09:05:24] [PASSED] drm_test_cmdline_rotate_180
[09:05:24] [PASSED] drm_test_cmdline_rotate_270
[09:05:24] [PASSED] drm_test_cmdline_hmirror
[09:05:24] [PASSED] drm_test_cmdline_vmirror
[09:05:24] [PASSED] drm_test_cmdline_margin_options
[09:05:24] [PASSED] drm_test_cmdline_multiple_options
[09:05:24] [PASSED] drm_test_cmdline_bpp_extra_and_option
[09:05:24] [PASSED] drm_test_cmdline_extra_and_option
[09:05:24] [PASSED] drm_test_cmdline_freestanding_options
[09:05:24] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[09:05:24] [PASSED] drm_test_cmdline_panel_orientation
[09:05:24] ================ drm_test_cmdline_invalid =================
[09:05:24] [PASSED] margin_only
[09:05:24] [PASSED] interlace_only
[09:05:24] [PASSED] res_missing_x
[09:05:24] [PASSED] res_missing_y
[09:05:24] [PASSED] res_bad_y
[09:05:24] [PASSED] res_missing_y_bpp
[09:05:24] [PASSED] res_bad_bpp
[09:05:24] [PASSED] res_bad_refresh
[09:05:24] [PASSED] res_bpp_refresh_force_on_off
[09:05:24] [PASSED] res_invalid_mode
[09:05:24] [PASSED] res_bpp_wrong_place_mode
[09:05:24] [PASSED] name_bpp_refresh
[09:05:24] [PASSED] name_refresh
[09:05:24] [PASSED] name_refresh_wrong_mode
[09:05:24] [PASSED] name_refresh_invalid_mode
[09:05:24] [PASSED] rotate_multiple
[09:05:24] [PASSED] rotate_invalid_val
[09:05:24] [PASSED] rotate_truncated
[09:05:24] [PASSED] invalid_option
[09:05:24] [PASSED] invalid_tv_option
[09:05:24] [PASSED] truncated_tv_option
[09:05:24] ============ [PASSED] drm_test_cmdline_invalid =============
[09:05:24] =============== drm_test_cmdline_tv_options ===============
[09:05:24] [PASSED] NTSC
[09:05:24] [PASSED] NTSC_443
[09:05:24] [PASSED] NTSC_J
[09:05:24] [PASSED] PAL
[09:05:24] [PASSED] PAL_M
[09:05:24] [PASSED] PAL_N
[09:05:24] [PASSED] SECAM
[09:05:24] [PASSED] MONO_525
[09:05:24] [PASSED] MONO_625
[09:05:24] =========== [PASSED] drm_test_cmdline_tv_options ===========
[09:05:24] =============== [PASSED] drm_cmdline_parser ================
[09:05:24] ========== drmm_connector_hdmi_init (20 subtests) ==========
[09:05:24] [PASSED] drm_test_connector_hdmi_init_valid
[09:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_8
[09:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_10
[09:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_12
[09:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[09:05:24] [PASSED] drm_test_connector_hdmi_init_bpc_null
[09:05:24] [PASSED] drm_test_connector_hdmi_init_formats_empty
[09:05:24] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[09:05:24] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:05:24] [PASSED] supported_formats=0x9 yuv420_allowed=1
[09:05:24] [PASSED] supported_formats=0x9 yuv420_allowed=0
[09:05:24] [PASSED] supported_formats=0x5 yuv420_allowed=1
[09:05:24] [PASSED] supported_formats=0x5 yuv420_allowed=0
[09:05:24] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:05:24] [PASSED] drm_test_connector_hdmi_init_null_ddc
[09:05:24] [PASSED] drm_test_connector_hdmi_init_null_product
[09:05:24] [PASSED] drm_test_connector_hdmi_init_null_vendor
[09:05:24] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[09:05:24] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[09:05:24] [PASSED] drm_test_connector_hdmi_init_product_valid
[09:05:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[09:05:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[09:05:24] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[09:05:24] ========= drm_test_connector_hdmi_init_type_valid =========
[09:05:24] [PASSED] HDMI-A
[09:05:24] [PASSED] HDMI-B
[09:05:24] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[09:05:24] ======== drm_test_connector_hdmi_init_type_invalid ========
[09:05:24] [PASSED] Unknown
[09:05:24] [PASSED] VGA
[09:05:24] [PASSED] DVI-I
[09:05:24] [PASSED] DVI-D
[09:05:24] [PASSED] DVI-A
[09:05:24] [PASSED] Composite
[09:05:24] [PASSED] SVIDEO
[09:05:24] [PASSED] LVDS
[09:05:24] [PASSED] Component
[09:05:24] [PASSED] DIN
[09:05:24] [PASSED] DP
[09:05:24] [PASSED] TV
[09:05:24] [PASSED] eDP
[09:05:24] [PASSED] Virtual
[09:05:24] [PASSED] DSI
[09:05:24] [PASSED] DPI
[09:05:24] [PASSED] Writeback
[09:05:24] [PASSED] SPI
[09:05:24] [PASSED] USB
[09:05:24] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[09:05:24] ============ [PASSED] drmm_connector_hdmi_init =============
[09:05:24] ============= drmm_connector_init (3 subtests) =============
[09:05:24] [PASSED] drm_test_drmm_connector_init
[09:05:24] [PASSED] drm_test_drmm_connector_init_null_ddc
[09:05:24] ========= drm_test_drmm_connector_init_type_valid =========
[09:05:24] [PASSED] Unknown
[09:05:24] [PASSED] VGA
[09:05:24] [PASSED] DVI-I
[09:05:24] [PASSED] DVI-D
[09:05:24] [PASSED] DVI-A
[09:05:24] [PASSED] Composite
[09:05:24] [PASSED] SVIDEO
[09:05:24] [PASSED] LVDS
[09:05:24] [PASSED] Component
[09:05:24] [PASSED] DIN
[09:05:24] [PASSED] DP
[09:05:24] [PASSED] HDMI-A
[09:05:24] [PASSED] HDMI-B
[09:05:24] [PASSED] TV
[09:05:24] [PASSED] eDP
[09:05:24] [PASSED] Virtual
[09:05:24] [PASSED] DSI
[09:05:24] [PASSED] DPI
[09:05:24] [PASSED] Writeback
[09:05:24] [PASSED] SPI
[09:05:24] [PASSED] USB
[09:05:24] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[09:05:24] =============== [PASSED] drmm_connector_init ===============
[09:05:24] ========= drm_connector_dynamic_init (6 subtests) ==========
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_init
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_init_properties
[09:05:24] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[09:05:24] [PASSED] Unknown
[09:05:24] [PASSED] VGA
[09:05:24] [PASSED] DVI-I
[09:05:24] [PASSED] DVI-D
[09:05:24] [PASSED] DVI-A
[09:05:24] [PASSED] Composite
[09:05:24] [PASSED] SVIDEO
[09:05:24] [PASSED] LVDS
[09:05:24] [PASSED] Component
[09:05:24] [PASSED] DIN
[09:05:24] [PASSED] DP
[09:05:24] [PASSED] HDMI-A
[09:05:24] [PASSED] HDMI-B
[09:05:24] [PASSED] TV
[09:05:24] [PASSED] eDP
[09:05:24] [PASSED] Virtual
[09:05:24] [PASSED] DSI
[09:05:24] [PASSED] DPI
[09:05:24] [PASSED] Writeback
[09:05:24] [PASSED] SPI
[09:05:24] [PASSED] USB
[09:05:24] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[09:05:24] ======== drm_test_drm_connector_dynamic_init_name =========
[09:05:24] [PASSED] Unknown
[09:05:24] [PASSED] VGA
[09:05:24] [PASSED] DVI-I
[09:05:24] [PASSED] DVI-D
[09:05:24] [PASSED] DVI-A
[09:05:24] [PASSED] Composite
[09:05:24] [PASSED] SVIDEO
[09:05:24] [PASSED] LVDS
[09:05:24] [PASSED] Component
[09:05:24] [PASSED] DIN
[09:05:24] [PASSED] DP
[09:05:24] [PASSED] HDMI-A
[09:05:24] [PASSED] HDMI-B
[09:05:24] [PASSED] TV
[09:05:24] [PASSED] eDP
[09:05:24] [PASSED] Virtual
[09:05:24] [PASSED] DSI
[09:05:24] [PASSED] DPI
[09:05:24] [PASSED] Writeback
[09:05:24] [PASSED] SPI
[09:05:24] [PASSED] USB
[09:05:24] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[09:05:24] =========== [PASSED] drm_connector_dynamic_init ============
[09:05:24] ==== drm_connector_dynamic_register_early (4 subtests) =====
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[09:05:24] ====== [PASSED] drm_connector_dynamic_register_early =======
[09:05:24] ======= drm_connector_dynamic_register (7 subtests) ========
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[09:05:24] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[09:05:24] ========= [PASSED] drm_connector_dynamic_register ==========
[09:05:24] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[09:05:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[09:05:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[09:05:24] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[09:05:24] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[09:05:24] ========== drm_test_get_tv_mode_from_name_valid ===========
[09:05:24] [PASSED] NTSC
[09:05:24] [PASSED] NTSC-443
[09:05:24] [PASSED] NTSC-J
[09:05:24] [PASSED] PAL
[09:05:24] [PASSED] PAL-M
[09:05:24] [PASSED] PAL-N
[09:05:24] [PASSED] SECAM
[09:05:24] [PASSED] Mono
[09:05:24] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[09:05:24] [PASSED] drm_test_get_tv_mode_from_name_truncated
[09:05:24] ============ [PASSED] drm_get_tv_mode_from_name ============
[09:05:24] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[09:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[09:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[09:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[09:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[09:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[09:05:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[09:05:24] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[09:05:24] [PASSED] VIC 96
[09:05:24] [PASSED] VIC 97
[09:05:24] [PASSED] VIC 101
[09:05:24] [PASSED] VIC 102
[09:05:24] [PASSED] VIC 106
[09:05:24] [PASSED] VIC 107
[09:05:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[09:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[09:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[09:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[09:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[09:05:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[09:05:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[09:05:24] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[09:05:24] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[09:05:24] [PASSED] Automatic
[09:05:24] [PASSED] Full
[09:05:24] [PASSED] Limited 16:235
[09:05:24] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[09:05:24] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[09:05:24] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[09:05:24] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[09:05:24] === drm_test_drm_hdmi_connector_get_output_format_name ====
[09:05:24] [PASSED] RGB
[09:05:24] [PASSED] YUV 4:2:0
[09:05:24] [PASSED] YUV 4:2:2
[09:05:24] [PASSED] YUV 4:4:4
[09:05:24] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[09:05:24] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[09:05:24] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[09:05:24] ============= drm_damage_helper (21 subtests) ==============
[09:05:24] [PASSED] drm_test_damage_iter_no_damage
[09:05:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[09:05:24] [PASSED] drm_test_damage_iter_no_damage_src_moved
[09:05:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[09:05:24] [PASSED] drm_test_damage_iter_no_damage_not_visible
[09:05:24] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[09:05:24] [PASSED] drm_test_damage_iter_no_damage_no_fb
[09:05:24] [PASSED] drm_test_damage_iter_simple_damage
[09:05:24] [PASSED] drm_test_damage_iter_single_damage
[09:05:24] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[09:05:24] [PASSED] drm_test_damage_iter_single_damage_outside_src
[09:05:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[09:05:24] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[09:05:24] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[09:05:24] [PASSED] drm_test_damage_iter_single_damage_src_moved
[09:05:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[09:05:24] [PASSED] drm_test_damage_iter_damage
[09:05:24] [PASSED] drm_test_damage_iter_damage_one_intersect
[09:05:24] [PASSED] drm_test_damage_iter_damage_one_outside
[09:05:24] [PASSED] drm_test_damage_iter_damage_src_moved
[09:05:24] [PASSED] drm_test_damage_iter_damage_not_visible
[09:05:24] ================ [PASSED] drm_damage_helper ================
[09:05:24] ============== drm_dp_mst_helper (3 subtests) ==============
[09:05:24] ============== drm_test_dp_mst_calc_pbn_mode ==============
[09:05:24] [PASSED] Clock 154000 BPP 30 DSC disabled
[09:05:24] [PASSED] Clock 234000 BPP 30 DSC disabled
[09:05:24] [PASSED] Clock 297000 BPP 24 DSC disabled
[09:05:24] [PASSED] Clock 332880 BPP 24 DSC enabled
[09:05:24] [PASSED] Clock 324540 BPP 24 DSC enabled
[09:05:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[09:05:24] ============== drm_test_dp_mst_calc_pbn_div ===============
[09:05:24] [PASSED] Link rate 2000000 lane count 4
[09:05:24] [PASSED] Link rate 2000000 lane count 2
[09:05:24] [PASSED] Link rate 2000000 lane count 1
[09:05:24] [PASSED] Link rate 1350000 lane count 4
[09:05:24] [PASSED] Link rate 1350000 lane count 2
[09:05:24] [PASSED] Link rate 1350000 lane count 1
[09:05:24] [PASSED] Link rate 1000000 lane count 4
[09:05:24] [PASSED] Link rate 1000000 lane count 2
[09:05:24] [PASSED] Link rate 1000000 lane count 1
[09:05:24] [PASSED] Link rate 810000 lane count 4
[09:05:24] [PASSED] Link rate 810000 lane count 2
[09:05:24] [PASSED] Link rate 810000 lane count 1
[09:05:24] [PASSED] Link rate 540000 lane count 4
[09:05:24] [PASSED] Link rate 540000 lane count 2
[09:05:24] [PASSED] Link rate 540000 lane count 1
[09:05:24] [PASSED] Link rate 270000 lane count 4
[09:05:24] [PASSED] Link rate 270000 lane count 2
[09:05:24] [PASSED] Link rate 270000 lane count 1
[09:05:24] [PASSED] Link rate 162000 lane count 4
[09:05:24] [PASSED] Link rate 162000 lane count 2
[09:05:24] [PASSED] Link rate 162000 lane count 1
[09:05:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[09:05:24] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[09:05:24] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[09:05:24] [PASSED] DP_POWER_UP_PHY with port number
[09:05:24] [PASSED] DP_POWER_DOWN_PHY with port number
[09:05:24] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[09:05:24] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[09:05:24] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[09:05:24] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[09:05:24] [PASSED] DP_QUERY_PAYLOAD with port number
[09:05:24] [PASSED] DP_QUERY_PAYLOAD with VCPI
[09:05:24] [PASSED] DP_REMOTE_DPCD_READ with port number
[09:05:24] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[09:05:24] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[09:05:24] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[09:05:24] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[09:05:24] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[09:05:24] [PASSED] DP_REMOTE_I2C_READ with port number
[09:05:24] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[09:05:24] [PASSED] DP_REMOTE_I2C_READ with transactions array
[09:05:24] [PASSED] DP_REMOTE_I2C_WRITE with port number
[09:05:24] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[09:05:24] [PASSED] DP_REMOTE_I2C_WRITE with data array
[09:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[09:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[09:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[09:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[09:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[09:05:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[09:05:24] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[09:05:24] ================ [PASSED] drm_dp_mst_helper ================
[09:05:24] ================== drm_exec (7 subtests) ===================
[09:05:24] [PASSED] sanitycheck
[09:05:24] [PASSED] test_lock
[09:05:24] [PASSED] test_lock_unlock
[09:05:24] [PASSED] test_duplicates
[09:05:24] [PASSED] test_prepare
[09:05:24] [PASSED] test_prepare_array
[09:05:24] [PASSED] test_multiple_loops
[09:05:24] ==================== [PASSED] drm_exec =====================
[09:05:24] =========== drm_format_helper_test (17 subtests) ===========
[09:05:24] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[09:05:24] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[09:05:24] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[09:05:24] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[09:05:24] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[09:05:24] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[09:05:24] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[09:05:24] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[09:05:24] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[09:05:24] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[09:05:24] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[09:05:24] ============== drm_test_fb_xrgb8888_to_mono ===============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[09:05:24] ==================== drm_test_fb_swab =====================
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ================ [PASSED] drm_test_fb_swab =================
[09:05:24] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[09:05:24] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[09:05:24] [PASSED] single_pixel_source_buffer
[09:05:24] [PASSED] single_pixel_clip_rectangle
[09:05:24] [PASSED] well_known_colors
[09:05:24] [PASSED] destination_pitch
[09:05:24] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[09:05:24] ================= drm_test_fb_clip_offset =================
[09:05:24] [PASSED] pass through
[09:05:24] [PASSED] horizontal offset
[09:05:24] [PASSED] vertical offset
[09:05:24] [PASSED] horizontal and vertical offset
[09:05:24] [PASSED] horizontal offset (custom pitch)
[09:05:24] [PASSED] vertical offset (custom pitch)
[09:05:24] [PASSED] horizontal and vertical offset (custom pitch)
[09:05:24] ============= [PASSED] drm_test_fb_clip_offset =============
[09:05:24] =================== drm_test_fb_memcpy ====================
[09:05:24] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[09:05:24] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[09:05:24] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[09:05:24] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[09:05:24] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[09:05:24] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[09:05:24] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[09:05:24] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[09:05:24] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[09:05:24] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[09:05:24] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[09:05:24] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[09:05:24] =============== [PASSED] drm_test_fb_memcpy ================
[09:05:24] ============= [PASSED] drm_format_helper_test ==============
[09:05:24] ================= drm_format (18 subtests) =================
[09:05:24] [PASSED] drm_test_format_block_width_invalid
[09:05:24] [PASSED] drm_test_format_block_width_one_plane
[09:05:24] [PASSED] drm_test_format_block_width_two_plane
[09:05:24] [PASSED] drm_test_format_block_width_three_plane
[09:05:24] [PASSED] drm_test_format_block_width_tiled
[09:05:24] [PASSED] drm_test_format_block_height_invalid
[09:05:24] [PASSED] drm_test_format_block_height_one_plane
[09:05:24] [PASSED] drm_test_format_block_height_two_plane
[09:05:24] [PASSED] drm_test_format_block_height_three_plane
[09:05:24] [PASSED] drm_test_format_block_height_tiled
[09:05:24] [PASSED] drm_test_format_min_pitch_invalid
[09:05:24] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[09:05:24] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[09:05:24] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[09:05:24] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[09:05:24] [PASSED] drm_test_format_min_pitch_two_plane
[09:05:24] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[09:05:24] [PASSED] drm_test_format_min_pitch_tiled
[09:05:24] =================== [PASSED] drm_format ====================
[09:05:24] ============== drm_framebuffer (10 subtests) ===============
[09:05:24] ========== drm_test_framebuffer_check_src_coords ==========
[09:05:24] [PASSED] Success: source fits into fb
[09:05:24] [PASSED] Fail: overflowing fb with x-axis coordinate
[09:05:24] [PASSED] Fail: overflowing fb with y-axis coordinate
[09:05:24] [PASSED] Fail: overflowing fb with source width
[09:05:24] [PASSED] Fail: overflowing fb with source height
[09:05:24] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[09:05:24] [PASSED] drm_test_framebuffer_cleanup
[09:05:24] =============== drm_test_framebuffer_create ===============
[09:05:24] [PASSED] ABGR8888 normal sizes
[09:05:24] [PASSED] ABGR8888 max sizes
[09:05:24] [PASSED] ABGR8888 pitch greater than min required
[09:05:24] [PASSED] ABGR8888 pitch less than min required
[09:05:24] [PASSED] ABGR8888 Invalid width
[09:05:24] [PASSED] ABGR8888 Invalid buffer handle
[09:05:24] [PASSED] No pixel format
[09:05:24] [PASSED] ABGR8888 Width 0
[09:05:24] [PASSED] ABGR8888 Height 0
[09:05:24] [PASSED] ABGR8888 Out of bound height * pitch combination
[09:05:24] [PASSED] ABGR8888 Large buffer offset
[09:05:24] [PASSED] ABGR8888 Buffer offset for inexistent plane
[09:05:24] [PASSED] ABGR8888 Invalid flag
[09:05:24] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[09:05:24] [PASSED] ABGR8888 Valid buffer modifier
[09:05:24] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[09:05:24] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[09:05:24] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[09:05:24] [PASSED] NV12 Normal sizes
[09:05:24] [PASSED] NV12 Max sizes
[09:05:24] [PASSED] NV12 Invalid pitch
[09:05:24] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[09:05:24] [PASSED] NV12 different modifier per-plane
[09:05:24] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[09:05:24] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[09:05:24] [PASSED] NV12 Modifier for inexistent plane
[09:05:24] [PASSED] NV12 Handle for inexistent plane
[09:05:24] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[09:05:24] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[09:05:24] [PASSED] YVU420 Normal sizes
[09:05:24] [PASSED] YVU420 Max sizes
[09:05:24] [PASSED] YVU420 Invalid pitch
[09:05:24] [PASSED] YVU420 Different pitches
[09:05:24] [PASSED] YVU420 Different buffer offsets/pitches
[09:05:24] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[09:05:24] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[09:05:24] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[09:05:24] [PASSED] YVU420 Valid modifier
[09:05:24] [PASSED] YVU420 Different modifiers per plane
[09:05:24] [PASSED] YVU420 Modifier for inexistent plane
[09:05:24] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[09:05:24] [PASSED] X0L2 Normal sizes
[09:05:24] [PASSED] X0L2 Max sizes
[09:05:24] [PASSED] X0L2 Invalid pitch
[09:05:24] [PASSED] X0L2 Pitch greater than minimum required
[09:05:24] [PASSED] X0L2 Handle for inexistent plane
[09:05:24] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[09:05:24] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[09:05:24] [PASSED] X0L2 Valid modifier
[09:05:24] [PASSED] X0L2 Modifier for inexistent plane
[09:05:24] =========== [PASSED] drm_test_framebuffer_create ===========
[09:05:24] [PASSED] drm_test_framebuffer_free
[09:05:24] [PASSED] drm_test_framebuffer_init
[09:05:24] [PASSED] drm_test_framebuffer_init_bad_format
[09:05:24] [PASSED] drm_test_framebuffer_init_dev_mismatch
[09:05:24] [PASSED] drm_test_framebuffer_lookup
[09:05:24] [PASSED] drm_test_framebuffer_lookup_inexistent
[09:05:24] [PASSED] drm_test_framebuffer_modifiers_not_supported
[09:05:24] ================= [PASSED] drm_framebuffer =================
[09:05:24] ================ drm_gem_shmem (8 subtests) ================
[09:05:24] [PASSED] drm_gem_shmem_test_obj_create
[09:05:24] [PASSED] drm_gem_shmem_test_obj_create_private
[09:05:24] [PASSED] drm_gem_shmem_test_pin_pages
[09:05:24] [PASSED] drm_gem_shmem_test_vmap
[09:05:24] [PASSED] drm_gem_shmem_test_get_sg_table
[09:05:24] [PASSED] drm_gem_shmem_test_get_pages_sgt
[09:05:24] [PASSED] drm_gem_shmem_test_madvise
[09:05:24] [PASSED] drm_gem_shmem_test_purge
[09:05:24] ================== [PASSED] drm_gem_shmem ==================
[09:05:24] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[09:05:24] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[09:05:24] [PASSED] Automatic
[09:05:24] [PASSED] Full
[09:05:24] [PASSED] Limited 16:235
[09:05:24] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[09:05:24] [PASSED] drm_test_check_disable_connector
[09:05:24] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[09:05:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[09:05:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[09:05:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[09:05:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[09:05:24] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[09:05:24] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[09:05:24] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[09:05:24] [PASSED] drm_test_check_output_bpc_dvi
[09:05:24] [PASSED] drm_test_check_output_bpc_format_vic_1
[09:05:24] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[09:05:24] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[09:05:24] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[09:05:24] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[09:05:24] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[09:05:24] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[09:05:24] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[09:05:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[09:05:24] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[09:05:24] [PASSED] drm_test_check_broadcast_rgb_value
[09:05:24] [PASSED] drm_test_check_bpc_8_value
[09:05:24] [PASSED] drm_test_check_bpc_10_value
[09:05:24] [PASSED] drm_test_check_bpc_12_value
[09:05:24] [PASSED] drm_test_check_format_value
[09:05:24] [PASSED] drm_test_check_tmds_char_value
[09:05:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[09:05:24] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[09:05:24] [PASSED] drm_test_check_mode_valid
[09:05:24] [PASSED] drm_test_check_mode_valid_reject
[09:05:24] [PASSED] drm_test_check_mode_valid_reject_rate
[09:05:24] [PASSED] drm_test_check_mode_valid_reject_max_clock
[09:05:24] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[09:05:24] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[09:05:24] [PASSED] drm_test_check_infoframes
[09:05:24] [PASSED] drm_test_check_reject_avi_infoframe
[09:05:24] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[09:05:24] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[09:05:24] [PASSED] drm_test_check_reject_audio_infoframe
[09:05:24] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[09:05:24] ================= drm_managed (2 subtests) =================
[09:05:24] [PASSED] drm_test_managed_release_action
[09:05:24] [PASSED] drm_test_managed_run_action
[09:05:24] =================== [PASSED] drm_managed ===================
[09:05:24] =================== drm_mm (6 subtests) ====================
[09:05:24] [PASSED] drm_test_mm_init
[09:05:24] [PASSED] drm_test_mm_debug
[09:05:24] [PASSED] drm_test_mm_align32
[09:05:24] [PASSED] drm_test_mm_align64
[09:05:24] [PASSED] drm_test_mm_lowest
[09:05:24] [PASSED] drm_test_mm_highest
[09:05:24] ===================== [PASSED] drm_mm ======================
[09:05:24] ============= drm_modes_analog_tv (5 subtests) =============
[09:05:24] [PASSED] drm_test_modes_analog_tv_mono_576i
[09:05:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[09:05:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[09:05:24] [PASSED] drm_test_modes_analog_tv_pal_576i
[09:05:24] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[09:05:24] =============== [PASSED] drm_modes_analog_tv ===============
[09:05:24] ============== drm_plane_helper (2 subtests) ===============
[09:05:24] =============== drm_test_check_plane_state ================
[09:05:24] [PASSED] clipping_simple
[09:05:24] [PASSED] clipping_rotate_reflect
[09:05:24] [PASSED] positioning_simple
[09:05:24] [PASSED] upscaling
[09:05:24] [PASSED] downscaling
[09:05:24] [PASSED] rounding1
[09:05:24] [PASSED] rounding2
[09:05:24] [PASSED] rounding3
[09:05:24] [PASSED] rounding4
[09:05:24] =========== [PASSED] drm_test_check_plane_state ============
[09:05:24] =========== drm_test_check_invalid_plane_state ============
[09:05:24] [PASSED] positioning_invalid
[09:05:24] [PASSED] upscaling_invalid
[09:05:24] [PASSED] downscaling_invalid
[09:05:24] ======= [PASSED] drm_test_check_invalid_plane_state ========
[09:05:24] ================ [PASSED] drm_plane_helper =================
[09:05:24] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[09:05:24] ====== drm_test_connector_helper_tv_get_modes_check =======
[09:05:24] [PASSED] None
[09:05:24] [PASSED] PAL
[09:05:24] [PASSED] NTSC
[09:05:24] [PASSED] Both, NTSC Default
[09:05:24] [PASSED] Both, PAL Default
[09:05:24] [PASSED] Both, NTSC Default, with PAL on command-line
[09:05:24] [PASSED] Both, PAL Default, with NTSC on command-line
[09:05:24] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[09:05:24] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[09:05:24] ================== drm_rect (9 subtests) ===================
[09:05:24] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[09:05:24] [PASSED] drm_test_rect_clip_scaled_not_clipped
[09:05:24] [PASSED] drm_test_rect_clip_scaled_clipped
[09:05:24] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[09:05:24] ================= drm_test_rect_intersect =================
[09:05:24] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[09:05:24] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[09:05:24] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[09:05:24] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[09:05:24] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[09:05:24] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[09:05:24] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[09:05:24] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[09:05:24] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[09:05:24] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[09:05:24] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[09:05:24] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[09:05:24] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[09:05:24] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[09:05:24] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[09:05:24] ============= [PASSED] drm_test_rect_intersect =============
[09:05:24] ================ drm_test_rect_calc_hscale ================
[09:05:24] [PASSED] normal use
[09:05:24] [PASSED] out of max range
[09:05:24] [PASSED] out of min range
[09:05:24] [PASSED] zero dst
[09:05:24] [PASSED] negative src
[09:05:24] [PASSED] negative dst
[09:05:24] ============ [PASSED] drm_test_rect_calc_hscale ============
[09:05:24] ================ drm_test_rect_calc_vscale ================
[09:05:24] [PASSED] normal use
[09:05:24] [PASSED] out of max range
[09:05:24] [PASSED] out of min range
[09:05:24] [PASSED] zero dst
[09:05:24] [PASSED] negative src
[09:05:24] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[09:05:24] ============ [PASSED] drm_test_rect_calc_vscale ============
[09:05:24] ================== drm_test_rect_rotate ===================
[09:05:24] [PASSED] reflect-x
[09:05:24] [PASSED] reflect-y
[09:05:24] [PASSED] rotate-0
[09:05:24] [PASSED] rotate-90
[09:05:24] [PASSED] rotate-180
[09:05:24] [PASSED] rotate-270
[09:05:24] ============== [PASSED] drm_test_rect_rotate ===============
[09:05:24] ================ drm_test_rect_rotate_inv =================
[09:05:24] [PASSED] reflect-x
[09:05:24] [PASSED] reflect-y
[09:05:24] [PASSED] rotate-0
[09:05:24] [PASSED] rotate-90
[09:05:24] [PASSED] rotate-180
[09:05:24] [PASSED] rotate-270
[09:05:24] ============ [PASSED] drm_test_rect_rotate_inv =============
[09:05:24] ==================== [PASSED] drm_rect =====================
[09:05:24] ============ drm_sysfb_modeset_test (1 subtest) ============
[09:05:24] ============ drm_test_sysfb_build_fourcc_list =============
[09:05:24] [PASSED] no native formats
[09:05:24] [PASSED] XRGB8888 as native format
[09:05:24] [PASSED] remove duplicates
[09:05:24] [PASSED] convert alpha formats
[09:05:24] [PASSED] random formats
[09:05:24] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[09:05:24] ============= [PASSED] drm_sysfb_modeset_test ==============
[09:05:24] ================== drm_fixp (2 subtests) ===================
[09:05:24] [PASSED] drm_test_int2fixp
[09:05:24] [PASSED] drm_test_sm2fixp
[09:05:24] ==================== [PASSED] drm_fixp =====================
[09:05:24] ============================================================
[09:05:24] Testing complete. Ran 621 tests: passed: 621
[09:05:24] Elapsed time: 26.830s total, 1.746s configuring, 24.916s building, 0.141s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[09:05:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:05:26] 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:05:36] Starting KUnit Kernel (1/1)...
[09:05:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:05:36] ================= ttm_device (5 subtests) ==================
[09:05:36] [PASSED] ttm_device_init_basic
[09:05:36] [PASSED] ttm_device_init_multiple
[09:05:36] [PASSED] ttm_device_fini_basic
[09:05:36] [PASSED] ttm_device_init_no_vma_man
[09:05:36] ================== ttm_device_init_pools ==================
[09:05:36] [PASSED] No DMA allocations, no DMA32 required
[09:05:36] [PASSED] DMA allocations, DMA32 required
[09:05:36] [PASSED] No DMA allocations, DMA32 required
[09:05:36] [PASSED] DMA allocations, no DMA32 required
[09:05:36] ============== [PASSED] ttm_device_init_pools ==============
[09:05:36] =================== [PASSED] ttm_device ====================
[09:05:36] ================== ttm_pool (8 subtests) ===================
[09:05:36] ================== ttm_pool_alloc_basic ===================
[09:05:36] [PASSED] One page
[09:05:36] [PASSED] More than one page
[09:05:36] [PASSED] Above the allocation limit
[09:05:36] [PASSED] One page, with coherent DMA mappings enabled
[09:05:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:05:36] ============== [PASSED] ttm_pool_alloc_basic ===============
[09:05:36] ============== ttm_pool_alloc_basic_dma_addr ==============
[09:05:36] [PASSED] One page
[09:05:36] [PASSED] More than one page
[09:05:36] [PASSED] Above the allocation limit
[09:05:36] [PASSED] One page, with coherent DMA mappings enabled
[09:05:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:05:36] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[09:05:36] [PASSED] ttm_pool_alloc_order_caching_match
[09:05:36] [PASSED] ttm_pool_alloc_caching_mismatch
[09:05:36] [PASSED] ttm_pool_alloc_order_mismatch
[09:05:36] [PASSED] ttm_pool_free_dma_alloc
[09:05:36] [PASSED] ttm_pool_free_no_dma_alloc
[09:05:36] [PASSED] ttm_pool_fini_basic
[09:05:36] ==================== [PASSED] ttm_pool =====================
[09:05:36] ================ ttm_resource (8 subtests) =================
[09:05:36] ================= ttm_resource_init_basic =================
[09:05:36] [PASSED] Init resource in TTM_PL_SYSTEM
[09:05:36] [PASSED] Init resource in TTM_PL_VRAM
[09:05:36] [PASSED] Init resource in a private placement
[09:05:36] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[09:05:36] ============= [PASSED] ttm_resource_init_basic =============
[09:05:36] [PASSED] ttm_resource_init_pinned
[09:05:36] [PASSED] ttm_resource_fini_basic
[09:05:36] [PASSED] ttm_resource_manager_init_basic
[09:05:36] [PASSED] ttm_resource_manager_usage_basic
[09:05:36] [PASSED] ttm_resource_manager_set_used_basic
[09:05:36] [PASSED] ttm_sys_man_alloc_basic
[09:05:36] [PASSED] ttm_sys_man_free_basic
[09:05:36] ================== [PASSED] ttm_resource ===================
[09:05:36] =================== ttm_tt (15 subtests) ===================
[09:05:36] ==================== ttm_tt_init_basic ====================
[09:05:36] [PASSED] Page-aligned size
[09:05:36] [PASSED] Extra pages requested
[09:05:36] ================ [PASSED] ttm_tt_init_basic ================
[09:05:36] [PASSED] ttm_tt_init_misaligned
[09:05:36] [PASSED] ttm_tt_fini_basic
[09:05:36] [PASSED] ttm_tt_fini_sg
[09:05:36] [PASSED] ttm_tt_fini_shmem
[09:05:36] [PASSED] ttm_tt_create_basic
[09:05:36] [PASSED] ttm_tt_create_invalid_bo_type
[09:05:36] [PASSED] ttm_tt_create_ttm_exists
[09:05:36] [PASSED] ttm_tt_create_failed
[09:05:36] [PASSED] ttm_tt_destroy_basic
[09:05:36] [PASSED] ttm_tt_populate_null_ttm
[09:05:36] [PASSED] ttm_tt_populate_populated_ttm
[09:05:36] [PASSED] ttm_tt_unpopulate_basic
[09:05:36] [PASSED] ttm_tt_unpopulate_empty_ttm
[09:05:36] [PASSED] ttm_tt_swapin_basic
[09:05:36] ===================== [PASSED] ttm_tt ======================
[09:05:36] =================== ttm_bo (14 subtests) ===================
[09:05:36] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[09:05:36] [PASSED] Cannot be interrupted and sleeps
[09:05:36] [PASSED] Cannot be interrupted, locks straight away
[09:05:36] [PASSED] Can be interrupted, sleeps
[09:05:36] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[09:05:36] [PASSED] ttm_bo_reserve_locked_no_sleep
[09:05:36] [PASSED] ttm_bo_reserve_no_wait_ticket
[09:05:36] [PASSED] ttm_bo_reserve_double_resv
[09:05:36] [PASSED] ttm_bo_reserve_interrupted
[09:05:36] [PASSED] ttm_bo_reserve_deadlock
[09:05:36] [PASSED] ttm_bo_unreserve_basic
[09:05:36] [PASSED] ttm_bo_unreserve_pinned
[09:05:36] [PASSED] ttm_bo_unreserve_bulk
[09:05:36] [PASSED] ttm_bo_fini_basic
[09:05:36] [PASSED] ttm_bo_fini_shared_resv
[09:05:36] [PASSED] ttm_bo_pin_basic
[09:05:36] [PASSED] ttm_bo_pin_unpin_resource
[09:05:36] [PASSED] ttm_bo_multiple_pin_one_unpin
[09:05:36] ===================== [PASSED] ttm_bo ======================
[09:05:36] ============== ttm_bo_validate (22 subtests) ===============
[09:05:36] ============== ttm_bo_init_reserved_sys_man ===============
[09:05:36] [PASSED] Buffer object for userspace
[09:05:36] [PASSED] Kernel buffer object
[09:05:36] [PASSED] Shared buffer object
[09:05:36] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[09:05:36] ============== ttm_bo_init_reserved_mock_man ==============
[09:05:36] [PASSED] Buffer object for userspace
[09:05:36] [PASSED] Kernel buffer object
[09:05:36] [PASSED] Shared buffer object
[09:05:36] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[09:05:36] [PASSED] ttm_bo_init_reserved_resv
[09:05:36] ================== ttm_bo_validate_basic ==================
[09:05:36] [PASSED] Buffer object for userspace
[09:05:36] [PASSED] Kernel buffer object
[09:05:36] [PASSED] Shared buffer object
[09:05:36] ============== [PASSED] ttm_bo_validate_basic ==============
[09:05:36] [PASSED] ttm_bo_validate_invalid_placement
[09:05:36] ============= ttm_bo_validate_same_placement ==============
[09:05:36] [PASSED] System manager
[09:05:36] [PASSED] VRAM manager
[09:05:36] ========= [PASSED] ttm_bo_validate_same_placement ==========
[09:05:36] [PASSED] ttm_bo_validate_failed_alloc
[09:05:36] [PASSED] ttm_bo_validate_pinned
[09:05:36] [PASSED] ttm_bo_validate_busy_placement
[09:05:36] ================ ttm_bo_validate_multihop =================
[09:05:36] [PASSED] Buffer object for userspace
[09:05:36] [PASSED] Kernel buffer object
[09:05:36] [PASSED] Shared buffer object
[09:05:36] ============ [PASSED] ttm_bo_validate_multihop =============
[09:05:36] ========== ttm_bo_validate_no_placement_signaled ==========
[09:05:36] [PASSED] Buffer object in system domain, no page vector
[09:05:36] [PASSED] Buffer object in system domain with an existing page vector
[09:05:36] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[09:05:36] ======== ttm_bo_validate_no_placement_not_signaled ========
[09:05:36] [PASSED] Buffer object for userspace
[09:05:36] [PASSED] Kernel buffer object
[09:05:36] [PASSED] Shared buffer object
[09:05:36] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[09:05:36] [PASSED] ttm_bo_validate_move_fence_signaled
[09:05:36] ========= ttm_bo_validate_move_fence_not_signaled =========
[09:05:36] [PASSED] Waits for GPU
[09:05:36] [PASSED] Tries to lock straight away
[09:05:36] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[09:05:36] [PASSED] ttm_bo_validate_swapout
[09:05:36] [PASSED] ttm_bo_validate_happy_evict
[09:05:36] [PASSED] ttm_bo_validate_all_pinned_evict
[09:05:36] [PASSED] ttm_bo_validate_allowed_only_evict
[09:05:36] [PASSED] ttm_bo_validate_deleted_evict
[09:05:36] [PASSED] ttm_bo_validate_busy_domain_evict
[09:05:36] [PASSED] ttm_bo_validate_evict_gutting
[09:05:36] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[09:05:36] ================= [PASSED] ttm_bo_validate =================
[09:05:36] ============================================================
[09:05:36] Testing complete. Ran 102 tests: passed: 102
[09:05:36] Elapsed time: 11.485s total, 1.749s configuring, 9.519s building, 0.186s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ Xe.CI.BAT: success for drm/i915/reset: Expose "display_reset_count" in debugfs (rev3)
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
` (8 preceding siblings ...)
2026-04-15 9:05 ` ✓ CI.KUnit: success for drm/i915/reset: Expose "display_reset_count" in debugfs (rev3) Patchwork
@ 2026-04-15 10:15 ` Patchwork
2026-04-15 11:49 ` ✗ Xe.CI.FULL: failure " Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-15 10:15 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1975 bytes --]
== Series Details ==
Series: drm/i915/reset: Expose "display_reset_count" in debugfs (rev3)
URL : https://patchwork.freedesktop.org/series/164676/
State : success
== Summary ==
CI Bug Log - changes from xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4_BAT -> xe-pw-164676v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-164676v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2229])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-bmg-2: [ABORT][2] ([Intel XE#7249] / [Intel XE#7578]) -> [PASS][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
Build changes
-------------
* Linux: xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4 -> xe-pw-164676v3
IGT_8859: 8d537f073bd4d30da991ab868bee2310ca664401 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4: 921a34f07808e9a5468b56a2dba7ef281ff10ba4
xe-pw-164676v3: 164676v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/index.html
[-- Attachment #2: Type: text/html, Size: 2564 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Xe.CI.FULL: failure for drm/i915/reset: Expose "display_reset_count" in debugfs (rev3)
2026-04-14 14:22 [PATCH v2 0/5] drm/i915/reset: Expose "display_reset_count" in debugfs Ville Syrjala
` (9 preceding siblings ...)
2026-04-15 10:15 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-15 11:49 ` Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-04-15 11:49 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 43212 bytes --]
== Series Details ==
Series: drm/i915/reset: Expose "display_reset_count" in debugfs (rev3)
URL : https://patchwork.freedesktop.org/series/164676/
State : failure
== Summary ==
CI Bug Log - changes from xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4_FULL -> xe-pw-164676v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-164676v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-164676v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-164676v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-bmg: [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-10/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_vblank@query-forked-busy@pipe-d-dp-2:
- shard-bmg: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-10/igt@kms_vblank@query-forked-busy@pipe-d-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-6/igt@kms_vblank@query-forked-busy@pipe-d-dp-2.html
Known issues
------------
Here are the changes found in xe-pw-164676v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#7725]) +4 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-10/igt@core_hotunplug@hotreplug.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-6/igt@core_hotunplug@hotreplug.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2370])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7059] / [Intel XE#7085])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +10 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#610] / [Intel XE#7387])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7679])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#367] / [Intel XE#7354]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +15 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2887])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#3432])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#306] / [Intel XE#7358])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2325] / [Intel XE#7358])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2252]) +8 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#6974]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2321] / [Intel XE#7355])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1424])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2321] / [Intel XE#7355])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#309] / [Intel XE#7343])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2291])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][33] -> [FAIL][34] ([Intel XE#7571])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2286] / [Intel XE#6035])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4210] / [Intel XE#7467])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1508])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#4354] / [Intel XE#5882])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2244])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2244])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_dsc@dsc-with-bpc-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-164676v3/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4156] / [Intel XE#7425])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2374] / [Intel XE#6128])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1421]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7179])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#352])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4141]) +14 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1469] / [Intel XE#7399])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#6312])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2311]) +24 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#656]) +9 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2352] / [Intel XE#7399])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2313]) +29 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1503])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6911] / [Intel XE#7466])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#6900] / [Intel XE#7362])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7283]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#3307])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2499])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1489]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1435])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-tap:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6503])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][73] ([Intel XE#1729] / [Intel XE#7424])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1499])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2168] / [Intel XE#7444])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@kms_vrr@lobf.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6599]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7636]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7636]) +12 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#7482]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2322] / [Intel XE#7372]) +8 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1392])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7136]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#7136]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-4/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#6874]) +26 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-basic:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#6874]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-basic.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#7138]) +7 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#7138])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2833])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_multigpu_svm@mgpu-coherency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#6964]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#6964])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#7590]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#944]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-3/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#944])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_flr@flr-twice:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#4273])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-5/igt@xe_sriov_flr@flr-twice.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [DMESG-WARN][99] ([Intel XE#5545])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][100] ([Intel XE#7084]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][102] ([Intel XE#2291]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][104] ([Intel XE#301]) -> [PASS][105] +1 other test pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][106] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][107] +1 other test pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
- shard-bmg: [ABORT][108] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][109] +3 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
* igt@kms_plane_multiple@tiling-4:
- shard-bmg: [DMESG-FAIL][110] -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-6/igt@kms_plane_multiple@tiling-4.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-5/igt@kms_plane_multiple@tiling-4.html
* igt@kms_vblank@query-forked@pipe-d-dp-2:
- shard-bmg: [FAIL][112] -> [PASS][113] +4 other tests pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-6/igt@kms_vblank@query-forked@pipe-d-dp-2.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-5/igt@kms_vblank@query-forked@pipe-d-dp-2.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][114] ([Intel XE#4459]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@threads-many-mmap-remap-ro-dontunmap-eocheck:
- shard-bmg: [DMESG-WARN][116] ([Intel XE#7725]) -> [PASS][117] +5 other tests pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-mmap-remap-ro-dontunmap-eocheck.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-mmap-remap-ro-dontunmap-eocheck.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-bmg: [ABORT][118] ([Intel XE#7578]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][120] ([Intel XE#2312]) -> [SKIP][121] ([Intel XE#2311])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][122] ([Intel XE#2311]) -> [SKIP][123] ([Intel XE#2312])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][124] ([Intel XE#2312]) -> [SKIP][125] ([Intel XE#2313])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][126] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][127] ([Intel XE#2426] / [Intel XE#5848])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[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#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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[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#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#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#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[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#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[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#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[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#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[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#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[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#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4 -> xe-pw-164676v3
IGT_8859: 8d537f073bd4d30da991ab868bee2310ca664401 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4903-921a34f07808e9a5468b56a2dba7ef281ff10ba4: 921a34f07808e9a5468b56a2dba7ef281ff10ba4
xe-pw-164676v3: 164676v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164676v3/index.html
[-- Attachment #2: Type: text/html, Size: 47868 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread