* [PATCH 1/6] drm/i915/cursor: Check joiner cursor commit status
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
@ 2026-08-21 4:47 ` Nemesa Garg
2026-08-27 9:45 ` Borah, Chaitanya Kumar
2026-08-21 4:47 ` [PATCH 2/6] drm/i915/cursor: Add helper to update cursor plane Nemesa Garg
` (8 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Nemesa Garg @ 2026-08-21 4:47 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: chaitanya.kumar.borah, Nemesa Garg
In joiner mode, secondary cursor commits may still be running
even when the primary cursor commit is done. Walking the secondary
pipes also requires holding the secondary planes modeset locks.
Add intel_cursor_lock_joined_planes() to acquire modeset locks
for all secondary cursor planes. Check all joined cursor commit
status before taking the fast path. If any commit is still pending,
fallback to slow path.
v2: Use intel_crtc_joined_pipe_mask(). [Ville]
v3: Lock secondary cursor CRTCs and planes. [sashiko]
v4: Iterate the full joined mask uniformly in both helpers, no
primary special-case.
Move the parameter-change check above the lock acquisition so
we don't grab secondary locks just to fall to slow path. [Chaitanya]
v5: Remove extra header declerartion. [Chaitanya]
Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
drivers/gpu/drm/i915/display/intel_cursor.c | 68 ++++++++++++++++++---
1 file changed, 59 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index 0673f16f6fd0..bc1e58d5c4c5 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -796,6 +796,50 @@ void intel_cursor_unpin_work(struct kthread_work *base)
intel_plane_destroy_state(&plane->base, &plane_state->uapi);
}
+static int intel_cursor_lock_joined_planes(struct intel_display *display,
+ const struct intel_crtc_state *crtc_state,
+ struct drm_modeset_acquire_ctx *ctx)
+{
+ struct intel_crtc *pipe_crtc;
+ int ret;
+
+ for_each_intel_crtc_in_pipe_mask(display, pipe_crtc,
+ intel_crtc_joined_pipe_mask(crtc_state)) {
+ struct intel_plane *pipe_plane =
+ intel_crtc_get_plane(pipe_crtc, PLANE_CURSOR);
+
+ ret = drm_modeset_lock(&pipe_crtc->base.mutex, ctx);
+ if (ret)
+ return ret;
+
+ ret = drm_modeset_lock(&pipe_plane->base.mutex, ctx);
+ if (ret)
+ return ret;
+ }
+ return 0;
+}
+
+static bool
+intel_cursor_joiner_commits_idle(struct intel_display *display,
+ const struct intel_crtc_state *crtc_state)
+{
+ struct intel_crtc *pipe_crtc;
+
+ for_each_intel_crtc_in_pipe_mask(display, pipe_crtc,
+ intel_crtc_joined_pipe_mask(crtc_state)) {
+ struct intel_plane *pipe_plane =
+ intel_crtc_get_plane(pipe_crtc, PLANE_CURSOR);
+ struct intel_plane_state *pipe_plane_state =
+ to_intel_plane_state(pipe_plane->base.state);
+
+ if (pipe_plane_state->uapi.commit &&
+ !try_wait_for_completion(&pipe_plane_state->uapi.commit->hw_done))
+ return false;
+ }
+
+ return true;
+}
+
static int
intel_legacy_cursor_update(struct drm_plane *_plane,
struct drm_crtc *_crtc,
@@ -833,15 +877,6 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
crtc_state->joiner_pipes)
goto slow;
- /*
- * Don't do an async update if there is an outstanding commit modifying
- * the plane. This prevents our async update's changes from getting
- * overridden by a previous synchronous update's state.
- */
- if (old_plane_state->uapi.commit &&
- !try_wait_for_completion(&old_plane_state->uapi.commit->hw_done))
- goto slow;
-
/*
* If any parameters change that may affect watermarks,
* take the slowpath. Only changing fb or position should be
@@ -855,6 +890,21 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
!old_plane_state->uapi.fb != !fb)
goto slow;
+ ret = intel_cursor_lock_joined_planes(display, crtc_state, ctx);
+ if (ret == -EDEADLK)
+ return ret;
+ if (ret)
+ goto slow;
+
+ /*
+ * Don't do an async update if there is an outstanding commit modifying
+ * any of the joined cursor planes. This prevents our async update's
+ * changes from getting overridden by a previous synchronous update's
+ * state.
+ */
+ if (!intel_cursor_joiner_commits_idle(display, crtc_state))
+ goto slow;
+
new_plane_state = to_intel_plane_state(intel_plane_duplicate_state(&plane->base));
if (!new_plane_state)
return -ENOMEM;
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH 1/6] drm/i915/cursor: Check joiner cursor commit status
2026-08-21 4:47 ` [PATCH 1/6] drm/i915/cursor: Check joiner cursor commit status Nemesa Garg
@ 2026-08-27 9:45 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 20+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-08-27 9:45 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe
On 8/21/2026 10:17 AM, Nemesa Garg wrote:
> In joiner mode, secondary cursor commits may still be running
> even when the primary cursor commit is done. Walking the secondary
> pipes also requires holding the secondary planes modeset locks.
> Add intel_cursor_lock_joined_planes() to acquire modeset locks
> for all secondary cursor planes. Check all joined cursor commit
> status before taking the fast path. If any commit is still pending,
> fallback to slow path.
>
> v2: Use intel_crtc_joined_pipe_mask(). [Ville]
> v3: Lock secondary cursor CRTCs and planes. [sashiko]
> v4: Iterate the full joined mask uniformly in both helpers, no
> primary special-case.
> Move the parameter-change check above the lock acquisition so
> we don't grab secondary locks just to fall to slow path. [Chaitanya]
> v5: Remove extra header declerartion. [Chaitanya]
declaration.
Other than that, LGTM
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
P.S. Please add version prefix while sending out the patches.
>
> Assisted-by: Claude:claude-sonnet-4.6
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_cursor.c | 68 ++++++++++++++++++---
> 1 file changed, 59 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
> index 0673f16f6fd0..bc1e58d5c4c5 100644
> --- a/drivers/gpu/drm/i915/display/intel_cursor.c
> +++ b/drivers/gpu/drm/i915/display/intel_cursor.c
> @@ -796,6 +796,50 @@ void intel_cursor_unpin_work(struct kthread_work *base)
> intel_plane_destroy_state(&plane->base, &plane_state->uapi);
> }
>
> +static int intel_cursor_lock_joined_planes(struct intel_display *display,
> + const struct intel_crtc_state *crtc_state,
> + struct drm_modeset_acquire_ctx *ctx)
> +{
> + struct intel_crtc *pipe_crtc;
> + int ret;
> +
> + for_each_intel_crtc_in_pipe_mask(display, pipe_crtc,
> + intel_crtc_joined_pipe_mask(crtc_state)) {
> + struct intel_plane *pipe_plane =
> + intel_crtc_get_plane(pipe_crtc, PLANE_CURSOR);
> +
> + ret = drm_modeset_lock(&pipe_crtc->base.mutex, ctx);
> + if (ret)
> + return ret;
> +
> + ret = drm_modeset_lock(&pipe_plane->base.mutex, ctx);
> + if (ret)
> + return ret;
> + }
> + return 0;
> +}
> +
> +static bool
> +intel_cursor_joiner_commits_idle(struct intel_display *display,
> + const struct intel_crtc_state *crtc_state)
> +{
> + struct intel_crtc *pipe_crtc;
> +
> + for_each_intel_crtc_in_pipe_mask(display, pipe_crtc,
> + intel_crtc_joined_pipe_mask(crtc_state)) {
> + struct intel_plane *pipe_plane =
> + intel_crtc_get_plane(pipe_crtc, PLANE_CURSOR);
> + struct intel_plane_state *pipe_plane_state =
> + to_intel_plane_state(pipe_plane->base.state);
> +
> + if (pipe_plane_state->uapi.commit &&
> + !try_wait_for_completion(&pipe_plane_state->uapi.commit->hw_done))
> + return false;
> + }
> +
> + return true;
> +}
> +
> static int
> intel_legacy_cursor_update(struct drm_plane *_plane,
> struct drm_crtc *_crtc,
> @@ -833,15 +877,6 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> crtc_state->joiner_pipes)
> goto slow;
>
> - /*
> - * Don't do an async update if there is an outstanding commit modifying
> - * the plane. This prevents our async update's changes from getting
> - * overridden by a previous synchronous update's state.
> - */
> - if (old_plane_state->uapi.commit &&
> - !try_wait_for_completion(&old_plane_state->uapi.commit->hw_done))
> - goto slow;
> -
> /*
> * If any parameters change that may affect watermarks,
> * take the slowpath. Only changing fb or position should be
> @@ -855,6 +890,21 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> !old_plane_state->uapi.fb != !fb)
> goto slow;
>
> + ret = intel_cursor_lock_joined_planes(display, crtc_state, ctx);
> + if (ret == -EDEADLK)
> + return ret;
> + if (ret)
> + goto slow;
> +
> + /*
> + * Don't do an async update if there is an outstanding commit modifying
> + * any of the joined cursor planes. This prevents our async update's
> + * changes from getting overridden by a previous synchronous update's
> + * state.
> + */
> + if (!intel_cursor_joiner_commits_idle(display, crtc_state))
> + goto slow;
> +
> new_plane_state = to_intel_plane_state(intel_plane_duplicate_state(&plane->base));
> if (!new_plane_state)
> return -ENOMEM;
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH 2/6] drm/i915/cursor: Add helper to update cursor plane
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
2026-08-21 4:47 ` [PATCH 1/6] drm/i915/cursor: Check joiner cursor commit status Nemesa Garg
@ 2026-08-21 4:47 ` Nemesa Garg
2026-08-27 9:45 ` Borah, Chaitanya Kumar
2026-08-21 4:47 ` [PATCH 3/6] drm/i915/cursor: Handle secondary cursor state Nemesa Garg
` (7 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Nemesa Garg @ 2026-08-21 4:47 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: chaitanya.kumar.borah, Nemesa Garg
Move cursor fast path plane state update into helper
function. The target hw.crtc is passed as a parameter
so a later patch can reuse the helper for joiner
secondary pipes, where hw.crtc points at the secondary
being programmed while uapi.crtc stays on the primary.
v4: Drop uapi.crtc assignment from the helper. [Chaitanya]
Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
drivers/gpu/drm/i915/display/intel_cursor.c | 39 ++++++++++++++-------
1 file changed, 27 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index bc1e58d5c4c5..db4eaa74fc58 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -840,6 +840,29 @@ intel_cursor_joiner_commits_idle(struct intel_display *display,
return true;
}
+static void
+intel_cursor_fastpath_update_plane_state(struct intel_plane_state *plane_state,
+ struct drm_framebuffer *fb,
+ struct intel_crtc *hw_crtc,
+ int crtc_x, int crtc_y,
+ unsigned int crtc_w, unsigned int crtc_h,
+ u32 src_x, u32 src_y,
+ u32 src_w, u32 src_h)
+{
+ drm_atomic_set_fb_for_plane(&plane_state->uapi, fb);
+
+ plane_state->uapi.src_x = src_x;
+ plane_state->uapi.src_y = src_y;
+ plane_state->uapi.src_w = src_w;
+ plane_state->uapi.src_h = src_h;
+ plane_state->uapi.crtc_x = crtc_x;
+ plane_state->uapi.crtc_y = crtc_y;
+ plane_state->uapi.crtc_w = crtc_w;
+ plane_state->uapi.crtc_h = crtc_h;
+
+ intel_plane_copy_uapi_to_hw_state(NULL, plane_state, plane_state, hw_crtc);
+}
+
static int
intel_legacy_cursor_update(struct drm_plane *_plane,
struct drm_crtc *_crtc,
@@ -915,18 +938,10 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
goto out_free;
}
- drm_atomic_set_fb_for_plane(&new_plane_state->uapi, fb);
-
- new_plane_state->uapi.src_x = src_x;
- new_plane_state->uapi.src_y = src_y;
- new_plane_state->uapi.src_w = src_w;
- new_plane_state->uapi.src_h = src_h;
- new_plane_state->uapi.crtc_x = crtc_x;
- new_plane_state->uapi.crtc_y = crtc_y;
- new_plane_state->uapi.crtc_w = crtc_w;
- new_plane_state->uapi.crtc_h = crtc_h;
-
- intel_plane_copy_uapi_to_hw_state(NULL, new_plane_state, new_plane_state, crtc);
+ intel_cursor_fastpath_update_plane_state(new_plane_state, fb,
+ crtc,
+ crtc_x, crtc_y, crtc_w, crtc_h,
+ src_x, src_y, src_w, src_h);
ret = intel_plane_atomic_check_with_state(crtc_state, new_crtc_state,
old_plane_state, new_plane_state);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH 2/6] drm/i915/cursor: Add helper to update cursor plane
2026-08-21 4:47 ` [PATCH 2/6] drm/i915/cursor: Add helper to update cursor plane Nemesa Garg
@ 2026-08-27 9:45 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 20+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-08-27 9:45 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe
On 8/21/2026 10:17 AM, Nemesa Garg wrote:
> Move cursor fast path plane state update into helper
> function. The target hw.crtc is passed as a parameter
> so a later patch can reuse the helper for joiner
> secondary pipes, where hw.crtc points at the secondary
> being programmed while uapi.crtc stays on the primary.
>
> v4: Drop uapi.crtc assignment from the helper. [Chaitanya]
LGTM
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
>
> Assisted-by: Claude:claude-sonnet-4.6
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_cursor.c | 39 ++++++++++++++-------
> 1 file changed, 27 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
> index bc1e58d5c4c5..db4eaa74fc58 100644
> --- a/drivers/gpu/drm/i915/display/intel_cursor.c
> +++ b/drivers/gpu/drm/i915/display/intel_cursor.c
> @@ -840,6 +840,29 @@ intel_cursor_joiner_commits_idle(struct intel_display *display,
> return true;
> }
>
> +static void
> +intel_cursor_fastpath_update_plane_state(struct intel_plane_state *plane_state,
> + struct drm_framebuffer *fb,
> + struct intel_crtc *hw_crtc,
> + int crtc_x, int crtc_y,
> + unsigned int crtc_w, unsigned int crtc_h,
> + u32 src_x, u32 src_y,
> + u32 src_w, u32 src_h)
> +{
> + drm_atomic_set_fb_for_plane(&plane_state->uapi, fb);
> +
> + plane_state->uapi.src_x = src_x;
> + plane_state->uapi.src_y = src_y;
> + plane_state->uapi.src_w = src_w;
> + plane_state->uapi.src_h = src_h;
> + plane_state->uapi.crtc_x = crtc_x;
> + plane_state->uapi.crtc_y = crtc_y;
> + plane_state->uapi.crtc_w = crtc_w;
> + plane_state->uapi.crtc_h = crtc_h;
> +
> + intel_plane_copy_uapi_to_hw_state(NULL, plane_state, plane_state, hw_crtc);
> +}
> +
> static int
> intel_legacy_cursor_update(struct drm_plane *_plane,
> struct drm_crtc *_crtc,
> @@ -915,18 +938,10 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> goto out_free;
> }
>
> - drm_atomic_set_fb_for_plane(&new_plane_state->uapi, fb);
> -
> - new_plane_state->uapi.src_x = src_x;
> - new_plane_state->uapi.src_y = src_y;
> - new_plane_state->uapi.src_w = src_w;
> - new_plane_state->uapi.src_h = src_h;
> - new_plane_state->uapi.crtc_x = crtc_x;
> - new_plane_state->uapi.crtc_y = crtc_y;
> - new_plane_state->uapi.crtc_w = crtc_w;
> - new_plane_state->uapi.crtc_h = crtc_h;
> -
> - intel_plane_copy_uapi_to_hw_state(NULL, new_plane_state, new_plane_state, crtc);
> + intel_cursor_fastpath_update_plane_state(new_plane_state, fb,
> + crtc,
> + crtc_x, crtc_y, crtc_w, crtc_h,
> + src_x, src_y, src_w, src_h);
>
> ret = intel_plane_atomic_check_with_state(crtc_state, new_crtc_state,
> old_plane_state, new_plane_state);
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH 3/6] drm/i915/cursor: Handle secondary cursor state
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
2026-08-21 4:47 ` [PATCH 1/6] drm/i915/cursor: Check joiner cursor commit status Nemesa Garg
2026-08-21 4:47 ` [PATCH 2/6] drm/i915/cursor: Add helper to update cursor plane Nemesa Garg
@ 2026-08-21 4:47 ` Nemesa Garg
2026-08-27 9:45 ` Borah, Chaitanya Kumar
2026-08-21 4:47 ` [PATCH 4/6] drm/i915/cursor: Program secondary cursor planes Nemesa Garg
` (6 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Nemesa Garg @ 2026-08-21 4:47 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: chaitanya.kumar.borah, Nemesa Garg
In joiner mode the fast path cursor update must handle
secondary pipes. Iterate over all joined pipes uniformly
to duplicate plane state, run check_plane(), pin the
framebuffer and on success swap in the new plane state
for each secondary cursor.
Track every successfully prepared pipe in a joined_pipe_state[] array
of struct intel_cursor_joiner_state so that later frontbuffer, unpin
and error-cleanup paths treat primary and secondaries uniformly,
and ensures the primary's pinned framebuffer is released if a
secondary fails partway through.
v2: Use intel_crtc_joined_pipe_mask(). [Ville]
Add locking mechanism. [Ville]
v3: Drop the per-pipe fastpath mutex array. [sashiko]
v4: Fold parallel arrays into struct intel_cursor_joiner_state joined_pipe_state[].
unify primary/secondary in a single loop.
use bare check_plane(). [Chaitanya]
v5: Fix secondary uapi.crtc to each pipe's own crtc.
Rename intel_cursor_pipe to intel_cursor_joiner_state and
joined[] to joined_pipe_state[]. [Chaitanya]
v6: Mirror primary uapi into secondary hw state, don't set uapi.crtc. [sashiko]
Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
drivers/gpu/drm/i915/display/intel_cursor.c | 153 ++++++++++++++------
1 file changed, 105 insertions(+), 48 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index db4eaa74fc58..9cb8b0a8537c 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -842,6 +842,7 @@ intel_cursor_joiner_commits_idle(struct intel_display *display,
static void
intel_cursor_fastpath_update_plane_state(struct intel_plane_state *plane_state,
+ const struct intel_plane_state *from_plane_state,
struct drm_framebuffer *fb,
struct intel_crtc *hw_crtc,
int crtc_x, int crtc_y,
@@ -849,20 +850,34 @@ intel_cursor_fastpath_update_plane_state(struct intel_plane_state *plane_state,
u32 src_x, u32 src_y,
u32 src_w, u32 src_h)
{
- drm_atomic_set_fb_for_plane(&plane_state->uapi, fb);
-
- plane_state->uapi.src_x = src_x;
- plane_state->uapi.src_y = src_y;
- plane_state->uapi.src_w = src_w;
- plane_state->uapi.src_h = src_h;
- plane_state->uapi.crtc_x = crtc_x;
- plane_state->uapi.crtc_y = crtc_y;
- plane_state->uapi.crtc_w = crtc_w;
- plane_state->uapi.crtc_h = crtc_h;
-
- intel_plane_copy_uapi_to_hw_state(NULL, plane_state, plane_state, hw_crtc);
+ /*
+ * Only the primary owns its uapi state; a secondary mirrors it, so
+ * its uapi.crtc/fb stay NULL and hw.crtc comes from hw_crtc.
+ */
+ if (plane_state == from_plane_state) {
+ drm_atomic_set_fb_for_plane(&plane_state->uapi, fb);
+
+ plane_state->uapi.src_x = src_x;
+ plane_state->uapi.src_y = src_y;
+ plane_state->uapi.src_w = src_w;
+ plane_state->uapi.src_h = src_h;
+ plane_state->uapi.crtc_x = crtc_x;
+ plane_state->uapi.crtc_y = crtc_y;
+ plane_state->uapi.crtc_w = crtc_w;
+ plane_state->uapi.crtc_h = crtc_h;
+ }
+
+ intel_plane_copy_uapi_to_hw_state(NULL, plane_state, from_plane_state, hw_crtc);
}
+struct intel_cursor_joiner_state {
+ struct intel_plane *plane;
+ struct intel_crtc *crtc;
+ struct intel_crtc_state *crtc_state;
+ struct intel_plane_state *old_plane_state;
+ struct intel_plane_state *new_plane_state;
+};
+
static int
intel_legacy_cursor_update(struct drm_plane *_plane,
struct drm_crtc *_crtc,
@@ -878,11 +893,13 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
struct intel_display *display = to_intel_display(plane);
struct intel_plane_state *old_plane_state =
to_intel_plane_state(plane->base.state);
- struct intel_plane_state *new_plane_state;
+ struct intel_plane_state *new_plane_state = NULL;
struct intel_crtc_state *crtc_state =
to_intel_crtc_state(crtc->base.state);
- struct intel_crtc_state *new_crtc_state;
struct intel_vblank_evade_ctx evade;
+ struct intel_cursor_joiner_state joined_pipe_state[I915_MAX_PIPES] = {};
+ struct intel_crtc *pipe_crtc;
+ int num_pipes = 0;
int ret;
/*
@@ -928,38 +945,69 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
if (!intel_cursor_joiner_commits_idle(display, crtc_state))
goto slow;
- new_plane_state = to_intel_plane_state(intel_plane_duplicate_state(&plane->base));
- if (!new_plane_state)
- return -ENOMEM;
-
- new_crtc_state = to_intel_crtc_state(intel_crtc_duplicate_state(&crtc->base));
- if (!new_crtc_state) {
- ret = -ENOMEM;
- goto out_free;
- }
+ /*
+ * Iterate over all joined pipes (primary and secondary) uniformly.
+ * The joined pipe mask includes both the primary pipe and all
+ * secondary joiner pipes, allowing us to handle them all the same way.
+ */
+ for_each_intel_crtc_in_pipe_mask(display, pipe_crtc,
+ intel_crtc_joined_pipe_mask(crtc_state)) {
+ struct intel_cursor_joiner_state *j = &joined_pipe_state[num_pipes];
+
+ j->plane = intel_crtc_get_plane(pipe_crtc, PLANE_CURSOR);
+ j->crtc = pipe_crtc;
+ j->crtc_state = to_intel_crtc_state(pipe_crtc->base.state);
+ j->old_plane_state = to_intel_plane_state(j->plane->base.state);
+ j->new_plane_state =
+ to_intel_plane_state(intel_plane_duplicate_state(&j->plane->base));
+
+ if (!j->new_plane_state) {
+ ret = -ENOMEM;
+ goto out_free;
+ }
- intel_cursor_fastpath_update_plane_state(new_plane_state, fb,
- crtc,
- crtc_x, crtc_y, crtc_w, crtc_h,
- src_x, src_y, src_w, src_h);
+ intel_cursor_fastpath_update_plane_state(j->new_plane_state,
+ joined_pipe_state[0].new_plane_state,
+ fb, pipe_crtc,
+ crtc_x, crtc_y,
+ crtc_w, crtc_h,
+ src_x, src_y,
+ src_w, src_h);
+
+ ret = j->plane->check_plane(j->crtc_state, j->new_plane_state);
+ if (ret) {
+ intel_plane_destroy_state(&j->plane->base,
+ &j->new_plane_state->uapi);
+ goto out_free;
+ }
- ret = intel_plane_atomic_check_with_state(crtc_state, new_crtc_state,
- old_plane_state, new_plane_state);
- if (ret)
- goto out_free;
+ ret = intel_plane_pin_fb(j->new_plane_state, j->old_plane_state);
+ if (ret) {
+ intel_plane_destroy_state(&j->plane->base,
+ &j->new_plane_state->uapi);
+ goto out_free;
+ }
- ret = intel_plane_pin_fb(new_plane_state, old_plane_state);
- if (ret)
- goto out_free;
+ num_pipes++;
+ }
- intel_frontbuffer_flush(to_intel_frontbuffer(new_plane_state->hw.fb),
+ new_plane_state = joined_pipe_state[0].new_plane_state;
+ intel_frontbuffer_flush(to_intel_frontbuffer(joined_pipe_state[0].new_plane_state->hw.fb),
ORIGIN_CURSOR_UPDATE);
- intel_frontbuffer_track(to_intel_frontbuffer(old_plane_state->hw.fb),
- to_intel_frontbuffer(new_plane_state->hw.fb),
- plane->frontbuffer_bit);
- /* Swap plane state */
- plane->base.state = &new_plane_state->uapi;
+ for (int i = 0; i < num_pipes; i++)
+ intel_frontbuffer_track(to_intel_frontbuffer(joined_pipe_state[i].old_plane_state->hw.fb),
+ to_intel_frontbuffer(joined_pipe_state[i].new_plane_state->hw.fb),
+ joined_pipe_state[i].plane->frontbuffer_bit);
+
+ for (int i = 0; i < num_pipes; i++) {
+ joined_pipe_state[i].plane->base.state = &joined_pipe_state[i].new_plane_state->uapi;
+
+ if (joined_pipe_state[i].new_plane_state->uapi.visible)
+ joined_pipe_state[i].crtc_state->active_planes |= BIT(PLANE_CURSOR);
+ else
+ joined_pipe_state[i].crtc_state->active_planes &= ~BIT(PLANE_CURSOR);
+ }
/*
* We cannot swap crtc_state as it may be in use by an atomic commit or
@@ -971,7 +1019,6 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
* planes atomically. If the cursor was part of the atomic update then
* we would have taken the slowpath.
*/
- crtc_state->active_planes = new_crtc_state->active_planes;
intel_vblank_evade_init(crtc_state, crtc_state, &evade);
@@ -1004,6 +1051,10 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
intel_psr_unlock(crtc_state);
+ /*
+ * Schedule or immediately unpin old framebuffers.
+ * Protect against concurrent access.
+ */
if (old_plane_state->ggtt_vma != new_plane_state->ggtt_vma) {
drm_vblank_work_init(&old_plane_state->unpin_work, &crtc->base,
intel_cursor_unpin_work);
@@ -1012,18 +1063,24 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
drm_crtc_accurate_vblank_count(&crtc->base) + 1,
false);
- old_plane_state = NULL;
+ joined_pipe_state[0].old_plane_state = NULL;
} else {
intel_plane_unpin_fb(old_plane_state);
}
out_free:
- if (new_crtc_state)
- intel_crtc_destroy_state(&crtc->base, &new_crtc_state->uapi);
- if (ret)
- intel_plane_destroy_state(&plane->base, &new_plane_state->uapi);
- else if (old_plane_state)
- intel_plane_destroy_state(&plane->base, &old_plane_state->uapi);
+ if (ret) {
+ for (int i = 0; i < num_pipes; i++) {
+ intel_plane_unpin_fb(joined_pipe_state[i].new_plane_state);
+ intel_plane_destroy_state(&joined_pipe_state[i].plane->base,
+ &joined_pipe_state[i].new_plane_state->uapi);
+ }
+ } else {
+ for (int i = 0; i < num_pipes; i++)
+ if (joined_pipe_state[i].old_plane_state)
+ intel_plane_destroy_state(&joined_pipe_state[i].plane->base,
+ &joined_pipe_state[i].old_plane_state->uapi);
+ }
return ret;
slow:
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH 3/6] drm/i915/cursor: Handle secondary cursor state
2026-08-21 4:47 ` [PATCH 3/6] drm/i915/cursor: Handle secondary cursor state Nemesa Garg
@ 2026-08-27 9:45 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 20+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-08-27 9:45 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe
On 8/21/2026 10:17 AM, Nemesa Garg wrote:
> In joiner mode the fast path cursor update must handle
> secondary pipes. Iterate over all joined pipes uniformly
> to duplicate plane state, run check_plane(), pin the
> framebuffer and on success swap in the new plane state
> for each secondary cursor.
>
> Track every successfully prepared pipe in a joined_pipe_state[] array
> of struct intel_cursor_joiner_state so that later frontbuffer, unpin
> and error-cleanup paths treat primary and secondaries uniformly,
> and ensures the primary's pinned framebuffer is released if a
> secondary fails partway through.
>
> v2: Use intel_crtc_joined_pipe_mask(). [Ville]
> Add locking mechanism. [Ville]
> v3: Drop the per-pipe fastpath mutex array. [sashiko]
> v4: Fold parallel arrays into struct intel_cursor_joiner_state joined_pipe_state[].
> unify primary/secondary in a single loop.
> use bare check_plane(). [Chaitanya]
> v5: Fix secondary uapi.crtc to each pipe's own crtc.
> Rename intel_cursor_pipe to intel_cursor_joiner_state and
> joined[] to joined_pipe_state[]. [Chaitanya]
> v6: Mirror primary uapi into secondary hw state, don't set uapi.crtc. [sashiko]
>
LGTM
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Assisted-by: Claude:claude-sonnet-4.6
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_cursor.c | 153 ++++++++++++++------
> 1 file changed, 105 insertions(+), 48 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
> index db4eaa74fc58..9cb8b0a8537c 100644
> --- a/drivers/gpu/drm/i915/display/intel_cursor.c
> +++ b/drivers/gpu/drm/i915/display/intel_cursor.c
> @@ -842,6 +842,7 @@ intel_cursor_joiner_commits_idle(struct intel_display *display,
>
> static void
> intel_cursor_fastpath_update_plane_state(struct intel_plane_state *plane_state,
> + const struct intel_plane_state *from_plane_state,
> struct drm_framebuffer *fb,
> struct intel_crtc *hw_crtc,
> int crtc_x, int crtc_y,
> @@ -849,20 +850,34 @@ intel_cursor_fastpath_update_plane_state(struct intel_plane_state *plane_state,
> u32 src_x, u32 src_y,
> u32 src_w, u32 src_h)
> {
> - drm_atomic_set_fb_for_plane(&plane_state->uapi, fb);
> -
> - plane_state->uapi.src_x = src_x;
> - plane_state->uapi.src_y = src_y;
> - plane_state->uapi.src_w = src_w;
> - plane_state->uapi.src_h = src_h;
> - plane_state->uapi.crtc_x = crtc_x;
> - plane_state->uapi.crtc_y = crtc_y;
> - plane_state->uapi.crtc_w = crtc_w;
> - plane_state->uapi.crtc_h = crtc_h;
> -
> - intel_plane_copy_uapi_to_hw_state(NULL, plane_state, plane_state, hw_crtc);
> + /*
> + * Only the primary owns its uapi state; a secondary mirrors it, so
> + * its uapi.crtc/fb stay NULL and hw.crtc comes from hw_crtc.
> + */
> + if (plane_state == from_plane_state) {
> + drm_atomic_set_fb_for_plane(&plane_state->uapi, fb);
> +
> + plane_state->uapi.src_x = src_x;
> + plane_state->uapi.src_y = src_y;
> + plane_state->uapi.src_w = src_w;
> + plane_state->uapi.src_h = src_h;
> + plane_state->uapi.crtc_x = crtc_x;
> + plane_state->uapi.crtc_y = crtc_y;
> + plane_state->uapi.crtc_w = crtc_w;
> + plane_state->uapi.crtc_h = crtc_h;
> + }
> +
> + intel_plane_copy_uapi_to_hw_state(NULL, plane_state, from_plane_state, hw_crtc);
> }
>
> +struct intel_cursor_joiner_state {
> + struct intel_plane *plane;
> + struct intel_crtc *crtc;
> + struct intel_crtc_state *crtc_state;
> + struct intel_plane_state *old_plane_state;
> + struct intel_plane_state *new_plane_state;
> +};
> +
> static int
> intel_legacy_cursor_update(struct drm_plane *_plane,
> struct drm_crtc *_crtc,
> @@ -878,11 +893,13 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> struct intel_display *display = to_intel_display(plane);
> struct intel_plane_state *old_plane_state =
> to_intel_plane_state(plane->base.state);
> - struct intel_plane_state *new_plane_state;
> + struct intel_plane_state *new_plane_state = NULL;
> struct intel_crtc_state *crtc_state =
> to_intel_crtc_state(crtc->base.state);
> - struct intel_crtc_state *new_crtc_state;
> struct intel_vblank_evade_ctx evade;
> + struct intel_cursor_joiner_state joined_pipe_state[I915_MAX_PIPES] = {};
> + struct intel_crtc *pipe_crtc;
> + int num_pipes = 0;
> int ret;
>
> /*
> @@ -928,38 +945,69 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> if (!intel_cursor_joiner_commits_idle(display, crtc_state))
> goto slow;
>
> - new_plane_state = to_intel_plane_state(intel_plane_duplicate_state(&plane->base));
> - if (!new_plane_state)
> - return -ENOMEM;
> -
> - new_crtc_state = to_intel_crtc_state(intel_crtc_duplicate_state(&crtc->base));
> - if (!new_crtc_state) {
> - ret = -ENOMEM;
> - goto out_free;
> - }
> + /*
> + * Iterate over all joined pipes (primary and secondary) uniformly.
> + * The joined pipe mask includes both the primary pipe and all
> + * secondary joiner pipes, allowing us to handle them all the same way.
> + */
> + for_each_intel_crtc_in_pipe_mask(display, pipe_crtc,
> + intel_crtc_joined_pipe_mask(crtc_state)) {
> + struct intel_cursor_joiner_state *j = &joined_pipe_state[num_pipes];
> +
> + j->plane = intel_crtc_get_plane(pipe_crtc, PLANE_CURSOR);
> + j->crtc = pipe_crtc;
> + j->crtc_state = to_intel_crtc_state(pipe_crtc->base.state);
> + j->old_plane_state = to_intel_plane_state(j->plane->base.state);
> + j->new_plane_state =
> + to_intel_plane_state(intel_plane_duplicate_state(&j->plane->base));
> +
> + if (!j->new_plane_state) {
> + ret = -ENOMEM;
> + goto out_free;
> + }
>
> - intel_cursor_fastpath_update_plane_state(new_plane_state, fb,
> - crtc,
> - crtc_x, crtc_y, crtc_w, crtc_h,
> - src_x, src_y, src_w, src_h);
> + intel_cursor_fastpath_update_plane_state(j->new_plane_state,
> + joined_pipe_state[0].new_plane_state,
> + fb, pipe_crtc,
> + crtc_x, crtc_y,
> + crtc_w, crtc_h,
> + src_x, src_y,
> + src_w, src_h);
> +
> + ret = j->plane->check_plane(j->crtc_state, j->new_plane_state);
> + if (ret) {
> + intel_plane_destroy_state(&j->plane->base,
> + &j->new_plane_state->uapi);
> + goto out_free;
> + }
>
> - ret = intel_plane_atomic_check_with_state(crtc_state, new_crtc_state,
> - old_plane_state, new_plane_state);
> - if (ret)
> - goto out_free;
> + ret = intel_plane_pin_fb(j->new_plane_state, j->old_plane_state);
> + if (ret) {
> + intel_plane_destroy_state(&j->plane->base,
> + &j->new_plane_state->uapi);
> + goto out_free;
> + }
>
> - ret = intel_plane_pin_fb(new_plane_state, old_plane_state);
> - if (ret)
> - goto out_free;
> + num_pipes++;
> + }
>
> - intel_frontbuffer_flush(to_intel_frontbuffer(new_plane_state->hw.fb),
> + new_plane_state = joined_pipe_state[0].new_plane_state;
> + intel_frontbuffer_flush(to_intel_frontbuffer(joined_pipe_state[0].new_plane_state->hw.fb),
> ORIGIN_CURSOR_UPDATE);
> - intel_frontbuffer_track(to_intel_frontbuffer(old_plane_state->hw.fb),
> - to_intel_frontbuffer(new_plane_state->hw.fb),
> - plane->frontbuffer_bit);
>
> - /* Swap plane state */
> - plane->base.state = &new_plane_state->uapi;
> + for (int i = 0; i < num_pipes; i++)
> + intel_frontbuffer_track(to_intel_frontbuffer(joined_pipe_state[i].old_plane_state->hw.fb),
> + to_intel_frontbuffer(joined_pipe_state[i].new_plane_state->hw.fb),
> + joined_pipe_state[i].plane->frontbuffer_bit);
> +
> + for (int i = 0; i < num_pipes; i++) {
> + joined_pipe_state[i].plane->base.state = &joined_pipe_state[i].new_plane_state->uapi;
> +
> + if (joined_pipe_state[i].new_plane_state->uapi.visible)
> + joined_pipe_state[i].crtc_state->active_planes |= BIT(PLANE_CURSOR);
> + else
> + joined_pipe_state[i].crtc_state->active_planes &= ~BIT(PLANE_CURSOR);
> + }
>
> /*
> * We cannot swap crtc_state as it may be in use by an atomic commit or
> @@ -971,7 +1019,6 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> * planes atomically. If the cursor was part of the atomic update then
> * we would have taken the slowpath.
> */
> - crtc_state->active_planes = new_crtc_state->active_planes;
>
> intel_vblank_evade_init(crtc_state, crtc_state, &evade);
>
> @@ -1004,6 +1051,10 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
>
> intel_psr_unlock(crtc_state);
>
> + /*
> + * Schedule or immediately unpin old framebuffers.
> + * Protect against concurrent access.
> + */
> if (old_plane_state->ggtt_vma != new_plane_state->ggtt_vma) {
> drm_vblank_work_init(&old_plane_state->unpin_work, &crtc->base,
> intel_cursor_unpin_work);
> @@ -1012,18 +1063,24 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> drm_crtc_accurate_vblank_count(&crtc->base) + 1,
> false);
>
> - old_plane_state = NULL;
> + joined_pipe_state[0].old_plane_state = NULL;
> } else {
> intel_plane_unpin_fb(old_plane_state);
> }
>
> out_free:
> - if (new_crtc_state)
> - intel_crtc_destroy_state(&crtc->base, &new_crtc_state->uapi);
> - if (ret)
> - intel_plane_destroy_state(&plane->base, &new_plane_state->uapi);
> - else if (old_plane_state)
> - intel_plane_destroy_state(&plane->base, &old_plane_state->uapi);
> + if (ret) {
> + for (int i = 0; i < num_pipes; i++) {
> + intel_plane_unpin_fb(joined_pipe_state[i].new_plane_state);
> + intel_plane_destroy_state(&joined_pipe_state[i].plane->base,
> + &joined_pipe_state[i].new_plane_state->uapi);
> + }
> + } else {
> + for (int i = 0; i < num_pipes; i++)
> + if (joined_pipe_state[i].old_plane_state)
> + intel_plane_destroy_state(&joined_pipe_state[i].plane->base,
> + &joined_pipe_state[i].old_plane_state->uapi);
> + }
> return ret;
>
> slow:
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH 4/6] drm/i915/cursor: Program secondary cursor planes
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
` (2 preceding siblings ...)
2026-08-21 4:47 ` [PATCH 3/6] drm/i915/cursor: Handle secondary cursor state Nemesa Garg
@ 2026-08-21 4:47 ` Nemesa Garg
2026-08-27 9:46 ` Borah, Chaitanya Kumar
2026-08-21 4:47 ` [PATCH 5/6] drm/i915/cursor: Schedule cursor unpin per joined pipe Nemesa Garg
` (5 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Nemesa Garg @ 2026-08-21 4:47 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: chaitanya.kumar.borah, Nemesa Garg
Iterate over all joined pipes when arming/disabling the cursor plane so
secondary pipes are updated together with the primary. The pin, check
and state duplication for secondary pipes was already prepared in the
previous commit; this converts the update_arm pass to a loop over the
joined_pipe_state[] array.
Because the whole loop runs inside a single primary vblank-evade,
sample intel_crtc_get_vblank_counter() per pipe around each arm and
emit a drm_err() if the counter ticks during that pipe's own
programming.
v2: Check primary and secondary pipe together. [Ville]
v3: Use struct intel_cursor_joiner_state. [Ville]
v4: Add per-pipe vblank straddle detection around the arm loop. [Chaitanya]
v5: Move straddle check outside the loop to cover all pipes together.
Sample vblank counter from primary pipe only.
Move drm_err() after local_irq_enable(). [Chaitnaya]
Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
drivers/gpu/drm/i915/display/intel_cursor.c | 33 +++++++++++++++++----
1 file changed, 28 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index 9cb8b0a8537c..f5625dabc8f6 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -13,6 +13,7 @@
#include <drm/drm_vblank.h>
#include "intel_atomic.h"
+#include "intel_crtc.h"
#include "intel_cursor.h"
#include "intel_cursor_regs.h"
#include "intel_de.h"
@@ -900,6 +901,7 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
struct intel_cursor_joiner_state joined_pipe_state[I915_MAX_PIPES] = {};
struct intel_crtc *pipe_crtc;
int num_pipes = 0;
+ u32 start_vbl_count, end_vbl_count;
int ret;
/*
@@ -1040,15 +1042,36 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
local_irq_disable();
}
- if (new_plane_state->uapi.visible) {
- intel_plane_update_noarm(NULL, plane, crtc_state, new_plane_state);
- intel_plane_update_arm(NULL, plane, crtc_state, new_plane_state);
- } else {
- intel_plane_disable_arm(NULL, plane, crtc_state);
+ /*
+ * Joiner pipes are vblank-synchronized, so sampling only the primary
+ * pipe is sufficient to detect a straddle across all joined pipes.
+ * The vblank evasion above also operates on the primary pipe only.
+ */
+ start_vbl_count = intel_crtc_get_vblank_counter(joined_pipe_state[0].crtc);
+
+ for (int i = 0; i < num_pipes; i++) {
+ if (joined_pipe_state[i].new_plane_state->uapi.visible) {
+ intel_plane_update_noarm(NULL, joined_pipe_state[i].plane,
+ joined_pipe_state[i].crtc_state,
+ joined_pipe_state[i].new_plane_state);
+ intel_plane_update_arm(NULL, joined_pipe_state[i].plane,
+ joined_pipe_state[i].crtc_state,
+ joined_pipe_state[i].new_plane_state);
+ } else {
+ intel_plane_disable_arm(NULL, joined_pipe_state[i].plane, joined_pipe_state[i].crtc_state);
+ }
}
+ end_vbl_count = intel_crtc_get_vblank_counter(joined_pipe_state[0].crtc);
+
local_irq_enable();
+ if (start_vbl_count != end_vbl_count)
+ drm_err(display->drm,
+ "Atomic update failure on pipe %c (start=%u end=%u)\n",
+ pipe_name(joined_pipe_state[0].crtc->pipe),
+ start_vbl_count, end_vbl_count);
+
intel_psr_unlock(crtc_state);
/*
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH 4/6] drm/i915/cursor: Program secondary cursor planes
2026-08-21 4:47 ` [PATCH 4/6] drm/i915/cursor: Program secondary cursor planes Nemesa Garg
@ 2026-08-27 9:46 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 20+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-08-27 9:46 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe
On 8/21/2026 10:17 AM, Nemesa Garg wrote:
> Iterate over all joined pipes when arming/disabling the cursor plane so
> secondary pipes are updated together with the primary. The pin, check
> and state duplication for secondary pipes was already prepared in the
> previous commit; this converts the update_arm pass to a loop over the
> joined_pipe_state[] array.
>
> Because the whole loop runs inside a single primary vblank-evade,
> sample intel_crtc_get_vblank_counter() per pipe around each arm and
> emit a drm_err() if the counter ticks during that pipe's own
> programming.
>
> v2: Check primary and secondary pipe together. [Ville]
> v3: Use struct intel_cursor_joiner_state. [Ville]
> v4: Add per-pipe vblank straddle detection around the arm loop. [Chaitanya]
> v5: Move straddle check outside the loop to cover all pipes together.
> Sample vblank counter from primary pipe only.
> Move drm_err() after local_irq_enable(). [Chaitnaya]
>
LGTM, except my name ;)
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Assisted-by: Claude:claude-sonnet-4.6
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_cursor.c | 33 +++++++++++++++++----
> 1 file changed, 28 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
> index 9cb8b0a8537c..f5625dabc8f6 100644
> --- a/drivers/gpu/drm/i915/display/intel_cursor.c
> +++ b/drivers/gpu/drm/i915/display/intel_cursor.c
> @@ -13,6 +13,7 @@
> #include <drm/drm_vblank.h>
>
> #include "intel_atomic.h"
> +#include "intel_crtc.h"
> #include "intel_cursor.h"
> #include "intel_cursor_regs.h"
> #include "intel_de.h"
> @@ -900,6 +901,7 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> struct intel_cursor_joiner_state joined_pipe_state[I915_MAX_PIPES] = {};
> struct intel_crtc *pipe_crtc;
> int num_pipes = 0;
> + u32 start_vbl_count, end_vbl_count;
> int ret;
>
> /*
> @@ -1040,15 +1042,36 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> local_irq_disable();
> }
>
> - if (new_plane_state->uapi.visible) {
> - intel_plane_update_noarm(NULL, plane, crtc_state, new_plane_state);
> - intel_plane_update_arm(NULL, plane, crtc_state, new_plane_state);
> - } else {
> - intel_plane_disable_arm(NULL, plane, crtc_state);
> + /*
> + * Joiner pipes are vblank-synchronized, so sampling only the primary
> + * pipe is sufficient to detect a straddle across all joined pipes.
> + * The vblank evasion above also operates on the primary pipe only.
> + */
> + start_vbl_count = intel_crtc_get_vblank_counter(joined_pipe_state[0].crtc);
> +
> + for (int i = 0; i < num_pipes; i++) {
> + if (joined_pipe_state[i].new_plane_state->uapi.visible) {
> + intel_plane_update_noarm(NULL, joined_pipe_state[i].plane,
> + joined_pipe_state[i].crtc_state,
> + joined_pipe_state[i].new_plane_state);
> + intel_plane_update_arm(NULL, joined_pipe_state[i].plane,
> + joined_pipe_state[i].crtc_state,
> + joined_pipe_state[i].new_plane_state);
> + } else {
> + intel_plane_disable_arm(NULL, joined_pipe_state[i].plane, joined_pipe_state[i].crtc_state);
> + }
> }
>
> + end_vbl_count = intel_crtc_get_vblank_counter(joined_pipe_state[0].crtc);
> +
> local_irq_enable();
>
> + if (start_vbl_count != end_vbl_count)
> + drm_err(display->drm,
> + "Atomic update failure on pipe %c (start=%u end=%u)\n",
> + pipe_name(joined_pipe_state[0].crtc->pipe),
> + start_vbl_count, end_vbl_count);
> +
> intel_psr_unlock(crtc_state);
>
> /*
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH 5/6] drm/i915/cursor: Schedule cursor unpin per joined pipe
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
` (3 preceding siblings ...)
2026-08-21 4:47 ` [PATCH 4/6] drm/i915/cursor: Program secondary cursor planes Nemesa Garg
@ 2026-08-21 4:47 ` Nemesa Garg
2026-08-27 9:46 ` Borah, Chaitanya Kumar
2026-08-21 4:47 ` [PATCH 6/6] drm/i915/cursor: Allow joiner cursor fast path update Nemesa Garg
` (4 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Nemesa Garg @ 2026-08-21 4:47 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: chaitanya.kumar.borah, Nemesa Garg
Convert the primary-only vblank unpin block into a loop over the
joined_pipe_state[] array so each pipe's old cursor framebuffer is scheduled for
unpin (or unpinned inline when unchanged) independently. All unpin
work is armed on the primary crtc's vblank (&crtc->base), consistent
with the single primary vblank evasion used above.
v4: Split from the update_arm loop conversion. [Chaitanya]
Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
drivers/gpu/drm/i915/display/intel_cursor.c | 26 ++++++++++-----------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index f5625dabc8f6..dedb6f87359c 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -894,7 +894,6 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
struct intel_display *display = to_intel_display(plane);
struct intel_plane_state *old_plane_state =
to_intel_plane_state(plane->base.state);
- struct intel_plane_state *new_plane_state = NULL;
struct intel_crtc_state *crtc_state =
to_intel_crtc_state(crtc->base.state);
struct intel_vblank_evade_ctx evade;
@@ -993,7 +992,6 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
num_pipes++;
}
- new_plane_state = joined_pipe_state[0].new_plane_state;
intel_frontbuffer_flush(to_intel_frontbuffer(joined_pipe_state[0].new_plane_state->hw.fb),
ORIGIN_CURSOR_UPDATE);
@@ -1078,17 +1076,19 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
* Schedule or immediately unpin old framebuffers.
* Protect against concurrent access.
*/
- if (old_plane_state->ggtt_vma != new_plane_state->ggtt_vma) {
- drm_vblank_work_init(&old_plane_state->unpin_work, &crtc->base,
- intel_cursor_unpin_work);
-
- drm_vblank_work_schedule(&old_plane_state->unpin_work,
- drm_crtc_accurate_vblank_count(&crtc->base) + 1,
- false);
-
- joined_pipe_state[0].old_plane_state = NULL;
- } else {
- intel_plane_unpin_fb(old_plane_state);
+ for (int i = 0; i < num_pipes; i++) {
+ struct intel_plane_state *old = joined_pipe_state[i].old_plane_state;
+
+ if (old->ggtt_vma != joined_pipe_state[i].new_plane_state->ggtt_vma) {
+ drm_vblank_work_init(&old->unpin_work, &crtc->base,
+ intel_cursor_unpin_work);
+ drm_vblank_work_schedule(&old->unpin_work,
+ drm_crtc_accurate_vblank_count(&crtc->base) + 1,
+ false);
+ joined_pipe_state[i].old_plane_state = NULL;
+ } else {
+ intel_plane_unpin_fb(old);
+ }
}
out_free:
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH 5/6] drm/i915/cursor: Schedule cursor unpin per joined pipe
2026-08-21 4:47 ` [PATCH 5/6] drm/i915/cursor: Schedule cursor unpin per joined pipe Nemesa Garg
@ 2026-08-27 9:46 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 20+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-08-27 9:46 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe
On 8/21/2026 10:17 AM, Nemesa Garg wrote:
> Convert the primary-only vblank unpin block into a loop over the
> joined_pipe_state[] array so each pipe's old cursor framebuffer is scheduled for
> unpin (or unpinned inline when unchanged) independently. All unpin
> work is armed on the primary crtc's vblank (&crtc->base), consistent
> with the single primary vblank evasion used above.
>
> v4: Split from the update_arm loop conversion. [Chaitanya]
>
If it is possible to do so cleanly, I would prefer to squash this change
with patch 3 for the sake of completion. Not a blocker though.
LGTM
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Assisted-by: Claude:claude-sonnet-4.6
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_cursor.c | 26 ++++++++++-----------
> 1 file changed, 13 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
> index f5625dabc8f6..dedb6f87359c 100644
> --- a/drivers/gpu/drm/i915/display/intel_cursor.c
> +++ b/drivers/gpu/drm/i915/display/intel_cursor.c
> @@ -894,7 +894,6 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> struct intel_display *display = to_intel_display(plane);
> struct intel_plane_state *old_plane_state =
> to_intel_plane_state(plane->base.state);
> - struct intel_plane_state *new_plane_state = NULL;
> struct intel_crtc_state *crtc_state =
> to_intel_crtc_state(crtc->base.state);
> struct intel_vblank_evade_ctx evade;
> @@ -993,7 +992,6 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> num_pipes++;
> }
>
> - new_plane_state = joined_pipe_state[0].new_plane_state;
> intel_frontbuffer_flush(to_intel_frontbuffer(joined_pipe_state[0].new_plane_state->hw.fb),
> ORIGIN_CURSOR_UPDATE);
>
> @@ -1078,17 +1076,19 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> * Schedule or immediately unpin old framebuffers.
> * Protect against concurrent access.
> */
> - if (old_plane_state->ggtt_vma != new_plane_state->ggtt_vma) {
> - drm_vblank_work_init(&old_plane_state->unpin_work, &crtc->base,
> - intel_cursor_unpin_work);
> -
> - drm_vblank_work_schedule(&old_plane_state->unpin_work,
> - drm_crtc_accurate_vblank_count(&crtc->base) + 1,
> - false);
> -
> - joined_pipe_state[0].old_plane_state = NULL;
> - } else {
> - intel_plane_unpin_fb(old_plane_state);
> + for (int i = 0; i < num_pipes; i++) {
> + struct intel_plane_state *old = joined_pipe_state[i].old_plane_state;
> +
> + if (old->ggtt_vma != joined_pipe_state[i].new_plane_state->ggtt_vma) {
> + drm_vblank_work_init(&old->unpin_work, &crtc->base,
> + intel_cursor_unpin_work);
> + drm_vblank_work_schedule(&old->unpin_work,
> + drm_crtc_accurate_vblank_count(&crtc->base) + 1,
> + false);
> + joined_pipe_state[i].old_plane_state = NULL;
> + } else {
> + intel_plane_unpin_fb(old);
> + }
> }
>
> out_free:
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH 6/6] drm/i915/cursor: Allow joiner cursor fast path update
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
` (4 preceding siblings ...)
2026-08-21 4:47 ` [PATCH 5/6] drm/i915/cursor: Schedule cursor unpin per joined pipe Nemesa Garg
@ 2026-08-21 4:47 ` Nemesa Garg
2026-08-27 9:46 ` Borah, Chaitanya Kumar
2026-08-21 4:57 ` ✗ CI.checkpatch: warning for Enable joiner cursor fast updates (rev6) Patchwork
` (3 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Nemesa Garg @ 2026-08-21 4:47 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: chaitanya.kumar.borah, Nemesa Garg
The legacy cursor path forced all joiner updates to the
slow path by checking joiner_pipes.
Drop the condition so that joiner cursor updates can use
the fast path.
v4: Trimmed to only the joiner_pipes gate drop. [Chaitanya]
Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
drivers/gpu/drm/i915/display/intel_cursor.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index dedb6f87359c..fbf0c9e143a1 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -909,13 +909,10 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
* PSR2 selective fetch also requires the slow path as
* PSR2 plane and transcoder registers can only be updated during
* vblank.
- *
- * FIXME joiner fastpath would be good
*/
if (!crtc_state->hw.active ||
intel_crtc_needs_modeset(crtc_state) ||
- intel_crtc_needs_fastset(crtc_state) ||
- crtc_state->joiner_pipes)
+ intel_crtc_needs_fastset(crtc_state))
goto slow;
/*
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH 6/6] drm/i915/cursor: Allow joiner cursor fast path update
2026-08-21 4:47 ` [PATCH 6/6] drm/i915/cursor: Allow joiner cursor fast path update Nemesa Garg
@ 2026-08-27 9:46 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 20+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-08-27 9:46 UTC (permalink / raw)
To: Nemesa Garg, intel-gfx, intel-xe
On 8/21/2026 10:17 AM, Nemesa Garg wrote:
> The legacy cursor path forced all joiner updates to the
> slow path by checking joiner_pipes.
> Drop the condition so that joiner cursor updates can use
> the fast path.
>
> v4: Trimmed to only the joiner_pipes gate drop. [Chaitanya]
>
LGTM
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Assisted-by: Claude:claude-sonnet-4.6
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_cursor.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
> index dedb6f87359c..fbf0c9e143a1 100644
> --- a/drivers/gpu/drm/i915/display/intel_cursor.c
> +++ b/drivers/gpu/drm/i915/display/intel_cursor.c
> @@ -909,13 +909,10 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
> * PSR2 selective fetch also requires the slow path as
> * PSR2 plane and transcoder registers can only be updated during
> * vblank.
> - *
> - * FIXME joiner fastpath would be good
> */
> if (!crtc_state->hw.active ||
> intel_crtc_needs_modeset(crtc_state) ||
> - intel_crtc_needs_fastset(crtc_state) ||
> - crtc_state->joiner_pipes)
> + intel_crtc_needs_fastset(crtc_state))
> goto slow;
>
> /*
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✗ CI.checkpatch: warning for Enable joiner cursor fast updates (rev6)
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
` (5 preceding siblings ...)
2026-08-21 4:47 ` [PATCH 6/6] drm/i915/cursor: Allow joiner cursor fast path update Nemesa Garg
@ 2026-08-21 4:57 ` Patchwork
2026-08-21 4:58 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2026-08-21 4:57 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
== Series Details ==
Series: Enable joiner cursor fast updates (rev6)
URL : https://patchwork.freedesktop.org/series/165272/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit ff5a70821ed9351c12694997884aefbadb200794
Author: Nemesa Garg <nemesa.garg@intel.com>
Date: Fri Aug 21 10:17:55 2026 +0530
drm/i915/cursor: Allow joiner cursor fast path update
The legacy cursor path forced all joiner updates to the
slow path by checking joiner_pipes.
Drop the condition so that joiner cursor updates can use
the fast path.
v4: Trimmed to only the joiner_pipes gate drop. [Chaitanya]
Assisted-by: Claude:claude-sonnet-4.6
Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
+ /mt/dim checkpatch 75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012 drm-intel
9c74516f00ca drm/i915/cursor: Check joiner cursor commit status
80c661f686c6 drm/i915/cursor: Add helper to update cursor plane
5c6f6a6b52ff drm/i915/cursor: Handle secondary cursor state
-:21: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#21:
v4: Fold parallel arrays into struct intel_cursor_joiner_state joined_pipe_state[].
-:188: WARNING:LONG_LINE: line length of 106 exceeds 100 columns
#188: FILE: drivers/gpu/drm/i915/display/intel_cursor.c:1004:
+ intel_frontbuffer_track(to_intel_frontbuffer(joined_pipe_state[i].old_plane_state->hw.fb),
-:189: WARNING:LONG_LINE: line length of 106 exceeds 100 columns
#189: FILE: drivers/gpu/drm/i915/display/intel_cursor.c:1005:
+ to_intel_frontbuffer(joined_pipe_state[i].new_plane_state->hw.fb),
-:193: WARNING:LONG_LINE: line length of 101 exceeds 100 columns
#193: FILE: drivers/gpu/drm/i915/display/intel_cursor.c:1009:
+ joined_pipe_state[i].plane->base.state = &joined_pipe_state[i].new_plane_state->uapi;
-:249: WARNING:LONG_LINE: line length of 103 exceeds 100 columns
#249: FILE: drivers/gpu/drm/i915/display/intel_cursor.c:1087:
+ &joined_pipe_state[i].old_plane_state->uapi);
total: 0 errors, 5 warnings, 0 checks, 211 lines checked
048c864caeba drm/i915/cursor: Program secondary cursor planes
-:72: WARNING:LONG_LINE: line length of 115 exceeds 100 columns
#72: FILE: drivers/gpu/drm/i915/display/intel_cursor.c:1066:
+ intel_plane_disable_arm(NULL, joined_pipe_state[i].plane, joined_pipe_state[i].crtc_state);
total: 0 errors, 1 warnings, 0 checks, 55 lines checked
48bff78dfc35 drm/i915/cursor: Schedule cursor unpin per joined pipe
-:7: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#7:
joined_pipe_state[] array so each pipe's old cursor framebuffer is scheduled for
total: 0 errors, 1 warnings, 0 checks, 44 lines checked
ff5a70821ed9 drm/i915/cursor: Allow joiner cursor fast path update
^ permalink raw reply [flat|nested] 20+ messages in thread* ✓ CI.KUnit: success for Enable joiner cursor fast updates (rev6)
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
` (6 preceding siblings ...)
2026-08-21 4:57 ` ✗ CI.checkpatch: warning for Enable joiner cursor fast updates (rev6) Patchwork
@ 2026-08-21 4:58 ` Patchwork
2026-08-21 5:51 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-21 6:40 ` ✗ Xe.CI.FULL: failure " Patchwork
9 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2026-08-21 4:58 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
== Series Details ==
Series: Enable joiner cursor fast updates (rev6)
URL : https://patchwork.freedesktop.org/series/165272/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[04:57:19] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:57:24] 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
[04:57:56] Starting KUnit Kernel (1/1)...
[04:57:56] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:57:56] ================== guc_buf (11 subtests) ===================
[04:57:56] [PASSED] test_smallest
[04:57:56] [PASSED] test_largest
[04:57:56] [PASSED] test_granular
[04:57:56] [PASSED] test_unique
[04:57:56] [PASSED] test_overlap
[04:57:56] [PASSED] test_reusable
[04:57:56] [PASSED] test_too_big
[04:57:56] [PASSED] test_flush
[04:57:56] [PASSED] test_lookup
[04:57:57] [PASSED] test_data
[04:57:57] [PASSED] test_class
[04:57:57] ===================== [PASSED] guc_buf =====================
[04:57:57] =================== guc_dbm (7 subtests) ===================
[04:57:57] [PASSED] test_empty
[04:57:57] [PASSED] test_default
[04:57:57] ======================== test_size ========================
[04:57:57] [PASSED] 4
[04:57:57] [PASSED] 8
[04:57:57] [PASSED] 32
[04:57:57] [PASSED] 256
[04:57:57] ==================== [PASSED] test_size ====================
[04:57:57] ======================= test_reuse ========================
[04:57:57] [PASSED] 4
[04:57:57] [PASSED] 8
[04:57:57] [PASSED] 32
[04:57:57] [PASSED] 256
[04:57:57] =================== [PASSED] test_reuse ====================
[04:57:57] =================== test_range_overlap ====================
[04:57:57] [PASSED] 4
[04:57:57] [PASSED] 8
[04:57:57] [PASSED] 32
[04:57:57] [PASSED] 256
[04:57:57] =============== [PASSED] test_range_overlap ================
[04:57:57] =================== test_range_compact ====================
[04:57:57] [PASSED] 4
[04:57:57] [PASSED] 8
[04:57:57] [PASSED] 32
[04:57:57] [PASSED] 256
[04:57:57] =============== [PASSED] test_range_compact ================
[04:57:57] ==================== test_range_spare =====================
[04:57:57] [PASSED] 4
[04:57:57] [PASSED] 8
[04:57:57] [PASSED] 32
[04:57:57] [PASSED] 256
[04:57:57] ================ [PASSED] test_range_spare =================
[04:57:57] ===================== [PASSED] guc_dbm =====================
[04:57:57] =================== guc_idm (6 subtests) ===================
[04:57:57] [PASSED] bad_init
[04:57:57] [PASSED] no_init
[04:57:57] [PASSED] init_fini
[04:57:57] [PASSED] check_used
[04:57:57] [PASSED] check_quota
[04:57:57] [PASSED] check_all
[04:57:57] ===================== [PASSED] guc_idm =====================
[04:57:57] =============== guc_klv_helpers (9 subtests) ===============
[04:57:57] [PASSED] test_count
[04:57:57] [PASSED] test_encode_u32
[04:57:57] [PASSED] test_encode_u64
[04:57:57] [PASSED] test_encode_string
[04:57:57] [PASSED] test_encode_object_raw
[04:57:57] [PASSED] test_encode_object_klv
[04:57:57] [PASSED] test_encode_object_nested
[04:57:57] [PASSED] test_encode_object_basic
[04:57:57] [PASSED] test_print
[04:57:57] ================= [PASSED] guc_klv_helpers =================
[04:57:57] =================== xe_log (4 subtests) ====================
[04:57:57] [PASSED] demo_cper
[04:57:57] [PASSED] demo_dmesg
[04:57:57] ======================= test_dmesg ========================
[04:57:57] [PASSED] test_fatal
[04:57:57] [PASSED] test_fatal_tile
[04:57:57] [PASSED] test_fatal_gt
[04:57:57] [PASSED] test_fatal_comp
[04:57:57] [PASSED] test_fatal_comp_tile
[04:57:57] [PASSED] test_fatal_comp_gt
[04:57:57] [PASSED] test_fatal_all
[04:57:57] [PASSED] test_recoverable
[04:57:57] [PASSED] test_recoverable_tile
[04:57:57] [PASSED] test_recoverable_gt
[04:57:57] [PASSED] test_recoverable_comp
[04:57:57] [PASSED] test_recoverable_comp_tile
[04:57:57] [PASSED] test_recoverable_comp_gt
[04:57:57] [PASSED] test_recoverable_all
[04:57:57] [PASSED] test_info
[04:57:57] [PASSED] test_info_tile
[04:57:57] [PASSED] test_info_gt
[04:57:57] [PASSED] test_info_err
[04:57:57] [PASSED] test_info_comp
[04:57:57] [PASSED] test_info_comp_tile
[04:57:57] [PASSED] test_info_comp_gt
[04:57:57] [PASSED] test_info_all
[04:57:57] [PASSED] test_hw_fatal
[04:57:57] [PASSED] test_hw_recoverable
[04:57:57] [PASSED] test_hw_corrected
[04:57:57] [PASSED] test_hw_informational
[04:57:57] =================== [PASSED] test_dmesg ====================
[04:57:57] ====================== test_invalid =======================
[04:57:57] [SKIPPED] no-component no-location no-warn (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] reserved location (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] unknown location (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] nonzero-device-id location (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] invalid-tile-id location (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] invalid-gt-id location (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] unknown component class (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] unknown system component (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] unknown hardware component (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] [SKIPPED] unknown component and location (requires CONFIG_DRM_XE_DEBUG)
[04:57:57] ================== [SKIPPED] test_invalid ==================
[04:57:57] ===================== [PASSED] xe_log ======================
[04:57:57] ================== no_relay (3 subtests) ===================
[04:57:57] [PASSED] xe_drops_guc2pf_if_not_ready
[04:57:57] [PASSED] xe_drops_guc2vf_if_not_ready
[04:57:57] [PASSED] xe_rejects_send_if_not_ready
[04:57:57] ==================== [PASSED] no_relay =====================
[04:57:57] ================== pf_relay (14 subtests) ==================
[04:57:57] [PASSED] pf_rejects_guc2pf_too_short
[04:57:57] [PASSED] pf_rejects_guc2pf_too_long
[04:57:57] [PASSED] pf_rejects_guc2pf_no_payload
[04:57:57] [PASSED] pf_fails_no_payload
[04:57:57] [PASSED] pf_fails_bad_origin
[04:57:57] [PASSED] pf_fails_bad_type
[04:57:57] [PASSED] pf_txn_reports_error
[04:57:57] [PASSED] pf_txn_sends_pf2guc
[04:57:57] [PASSED] pf_sends_pf2guc
[04:57:57] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[04:57:57] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[04:57:57] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[04:57:57] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[04:57:57] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[04:57:57] ==================== [PASSED] pf_relay =====================
[04:57:57] ================== vf_relay (3 subtests) ===================
[04:57:57] [PASSED] vf_rejects_guc2vf_too_short
[04:57:57] [PASSED] vf_rejects_guc2vf_too_long
[04:57:57] [PASSED] vf_rejects_guc2vf_no_payload
[04:57:57] ==================== [PASSED] vf_relay =====================
[04:57:57] ================ pf_gt_config (9 subtests) =================
[04:57:57] [PASSED] fair_contexts_1vf
[04:57:57] [PASSED] fair_doorbells_1vf
[04:57:57] [PASSED] fair_ggtt_1vf
[04:57:57] ====================== fair_vram_1vf ======================
[04:57:57] [PASSED] 3.50 GiB
[04:57:57] [PASSED] 11.5 GiB
[04:57:57] [PASSED] 15.5 GiB
[04:57:57] [PASSED] 31.5 GiB
[04:57:57] [PASSED] 63.5 GiB
[04:57:57] [PASSED] 1.91 GiB
[04:57:57] ================== [PASSED] fair_vram_1vf ==================
[04:57:57] ================ fair_vram_1vf_admin_only =================
[04:57:57] [PASSED] 3.50 GiB
[04:57:57] [PASSED] 11.5 GiB
[04:57:57] [PASSED] 15.5 GiB
[04:57:57] [PASSED] 31.5 GiB
[04:57:57] [PASSED] 63.5 GiB
[04:57:57] [PASSED] 1.91 GiB
[04:57:57] ============ [PASSED] fair_vram_1vf_admin_only =============
[04:57:57] ====================== fair_contexts ======================
[04:57:57] [PASSED] 1 VF
[04:57:57] [PASSED] 2 VFs
[04:57:57] [PASSED] 3 VFs
[04:57:57] [PASSED] 4 VFs
[04:57:57] [PASSED] 5 VFs
[04:57:57] [PASSED] 6 VFs
[04:57:57] [PASSED] 7 VFs
[04:57:57] [PASSED] 8 VFs
[04:57:57] [PASSED] 9 VFs
[04:57:57] [PASSED] 10 VFs
[04:57:57] [PASSED] 11 VFs
[04:57:57] [PASSED] 12 VFs
[04:57:57] [PASSED] 13 VFs
[04:57:57] [PASSED] 14 VFs
[04:57:57] [PASSED] 15 VFs
[04:57:57] [PASSED] 16 VFs
[04:57:57] [PASSED] 17 VFs
[04:57:57] [PASSED] 18 VFs
[04:57:57] [PASSED] 19 VFs
[04:57:57] [PASSED] 20 VFs
[04:57:57] [PASSED] 21 VFs
[04:57:57] [PASSED] 22 VFs
[04:57:57] [PASSED] 23 VFs
[04:57:57] [PASSED] 24 VFs
[04:57:57] [PASSED] 25 VFs
[04:57:57] [PASSED] 26 VFs
[04:57:57] [PASSED] 27 VFs
[04:57:57] [PASSED] 28 VFs
[04:57:57] [PASSED] 29 VFs
[04:57:57] [PASSED] 30 VFs
[04:57:57] [PASSED] 31 VFs
[04:57:57] [PASSED] 32 VFs
[04:57:57] [PASSED] 33 VFs
[04:57:57] [PASSED] 34 VFs
[04:57:57] [PASSED] 35 VFs
[04:57:57] [PASSED] 36 VFs
[04:57:57] [PASSED] 37 VFs
[04:57:57] [PASSED] 38 VFs
[04:57:57] [PASSED] 39 VFs
[04:57:57] [PASSED] 40 VFs
[04:57:57] [PASSED] 41 VFs
[04:57:57] [PASSED] 42 VFs
[04:57:57] [PASSED] 43 VFs
[04:57:57] [PASSED] 44 VFs
[04:57:57] [PASSED] 45 VFs
[04:57:57] [PASSED] 46 VFs
[04:57:57] [PASSED] 47 VFs
[04:57:57] [PASSED] 48 VFs
[04:57:57] [PASSED] 49 VFs
[04:57:57] [PASSED] 50 VFs
[04:57:57] [PASSED] 51 VFs
[04:57:57] [PASSED] 52 VFs
[04:57:57] [PASSED] 53 VFs
[04:57:57] [PASSED] 54 VFs
[04:57:57] [PASSED] 55 VFs
[04:57:57] [PASSED] 56 VFs
[04:57:57] [PASSED] 57 VFs
[04:57:57] [PASSED] 58 VFs
[04:57:57] [PASSED] 59 VFs
[04:57:57] [PASSED] 60 VFs
[04:57:57] [PASSED] 61 VFs
[04:57:57] [PASSED] 62 VFs
[04:57:57] [PASSED] 63 VFs
[04:57:57] ================== [PASSED] fair_contexts ==================
[04:57:57] ===================== fair_doorbells ======================
[04:57:57] [PASSED] 1 VF
[04:57:57] [PASSED] 2 VFs
[04:57:57] [PASSED] 3 VFs
[04:57:57] [PASSED] 4 VFs
[04:57:57] [PASSED] 5 VFs
[04:57:57] [PASSED] 6 VFs
[04:57:57] [PASSED] 7 VFs
[04:57:57] [PASSED] 8 VFs
[04:57:57] [PASSED] 9 VFs
[04:57:57] [PASSED] 10 VFs
[04:57:57] [PASSED] 11 VFs
[04:57:57] [PASSED] 12 VFs
[04:57:57] [PASSED] 13 VFs
[04:57:57] [PASSED] 14 VFs
[04:57:57] [PASSED] 15 VFs
[04:57:57] [PASSED] 16 VFs
[04:57:57] [PASSED] 17 VFs
[04:57:57] [PASSED] 18 VFs
[04:57:57] [PASSED] 19 VFs
[04:57:57] [PASSED] 20 VFs
[04:57:57] [PASSED] 21 VFs
[04:57:57] [PASSED] 22 VFs
[04:57:57] [PASSED] 23 VFs
[04:57:57] [PASSED] 24 VFs
[04:57:57] [PASSED] 25 VFs
[04:57:57] [PASSED] 26 VFs
[04:57:57] [PASSED] 27 VFs
[04:57:57] [PASSED] 28 VFs
[04:57:57] [PASSED] 29 VFs
[04:57:57] [PASSED] 30 VFs
[04:57:57] [PASSED] 31 VFs
[04:57:57] [PASSED] 32 VFs
[04:57:57] [PASSED] 33 VFs
[04:57:57] [PASSED] 34 VFs
[04:57:57] [PASSED] 35 VFs
[04:57:57] [PASSED] 36 VFs
[04:57:57] [PASSED] 37 VFs
[04:57:57] [PASSED] 38 VFs
[04:57:57] [PASSED] 39 VFs
[04:57:57] [PASSED] 40 VFs
[04:57:57] [PASSED] 41 VFs
[04:57:57] [PASSED] 42 VFs
[04:57:57] [PASSED] 43 VFs
[04:57:57] [PASSED] 44 VFs
[04:57:57] [PASSED] 45 VFs
[04:57:57] [PASSED] 46 VFs
[04:57:57] [PASSED] 47 VFs
[04:57:57] [PASSED] 48 VFs
[04:57:57] [PASSED] 49 VFs
[04:57:57] [PASSED] 50 VFs
[04:57:57] [PASSED] 51 VFs
[04:57:57] [PASSED] 52 VFs
[04:57:57] [PASSED] 53 VFs
[04:57:57] [PASSED] 54 VFs
[04:57:57] [PASSED] 55 VFs
[04:57:57] [PASSED] 56 VFs
[04:57:57] [PASSED] 57 VFs
[04:57:57] [PASSED] 58 VFs
[04:57:57] [PASSED] 59 VFs
[04:57:57] [PASSED] 60 VFs
[04:57:57] [PASSED] 61 VFs
[04:57:57] [PASSED] 62 VFs
[04:57:57] [PASSED] 63 VFs
[04:57:57] ================= [PASSED] fair_doorbells ==================
[04:57:57] ======================== fair_ggtt ========================
[04:57:57] [PASSED] 1 VF
[04:57:57] [PASSED] 2 VFs
[04:57:57] [PASSED] 3 VFs
[04:57:57] [PASSED] 4 VFs
[04:57:57] [PASSED] 5 VFs
[04:57:57] [PASSED] 6 VFs
[04:57:57] [PASSED] 7 VFs
[04:57:57] [PASSED] 8 VFs
[04:57:57] [PASSED] 9 VFs
[04:57:57] [PASSED] 10 VFs
[04:57:57] [PASSED] 11 VFs
[04:57:57] [PASSED] 12 VFs
[04:57:57] [PASSED] 13 VFs
[04:57:57] [PASSED] 14 VFs
[04:57:57] [PASSED] 15 VFs
[04:57:57] [PASSED] 16 VFs
[04:57:57] [PASSED] 17 VFs
[04:57:57] [PASSED] 18 VFs
[04:57:57] [PASSED] 19 VFs
[04:57:57] [PASSED] 20 VFs
[04:57:57] [PASSED] 21 VFs
[04:57:57] [PASSED] 22 VFs
[04:57:57] [PASSED] 23 VFs
[04:57:57] [PASSED] 24 VFs
[04:57:57] [PASSED] 25 VFs
[04:57:57] [PASSED] 26 VFs
[04:57:57] [PASSED] 27 VFs
[04:57:57] [PASSED] 28 VFs
[04:57:57] [PASSED] 29 VFs
[04:57:57] [PASSED] 30 VFs
[04:57:57] [PASSED] 31 VFs
[04:57:57] [PASSED] 32 VFs
[04:57:57] [PASSED] 33 VFs
[04:57:57] [PASSED] 34 VFs
[04:57:57] [PASSED] 35 VFs
[04:57:57] [PASSED] 36 VFs
[04:57:57] [PASSED] 37 VFs
[04:57:57] [PASSED] 38 VFs
[04:57:57] [PASSED] 39 VFs
[04:57:57] [PASSED] 40 VFs
[04:57:57] [PASSED] 41 VFs
[04:57:57] [PASSED] 42 VFs
[04:57:57] [PASSED] 43 VFs
[04:57:57] [PASSED] 44 VFs
[04:57:57] [PASSED] 45 VFs
[04:57:57] [PASSED] 46 VFs
[04:57:57] [PASSED] 47 VFs
[04:57:57] [PASSED] 48 VFs
[04:57:57] [PASSED] 49 VFs
[04:57:57] [PASSED] 50 VFs
[04:57:57] [PASSED] 51 VFs
[04:57:57] [PASSED] 52 VFs
[04:57:57] [PASSED] 53 VFs
[04:57:57] [PASSED] 54 VFs
[04:57:57] [PASSED] 55 VFs
[04:57:57] [PASSED] 56 VFs
[04:57:57] [PASSED] 57 VFs
[04:57:57] [PASSED] 58 VFs
[04:57:57] [PASSED] 59 VFs
[04:57:57] [PASSED] 60 VFs
[04:57:57] [PASSED] 61 VFs
[04:57:57] [PASSED] 62 VFs
[04:57:57] [PASSED] 63 VFs
[04:57:57] ==================== [PASSED] fair_ggtt ====================
[04:57:57] ======================== fair_vram ========================
[04:57:57] [PASSED] 1 VF
[04:57:57] [PASSED] 2 VFs
[04:57:57] [PASSED] 3 VFs
[04:57:57] [PASSED] 4 VFs
[04:57:57] [PASSED] 5 VFs
[04:57:57] [PASSED] 6 VFs
[04:57:57] [PASSED] 7 VFs
[04:57:57] [PASSED] 8 VFs
[04:57:57] [PASSED] 9 VFs
[04:57:57] [PASSED] 10 VFs
[04:57:57] [PASSED] 11 VFs
[04:57:57] [PASSED] 12 VFs
[04:57:57] [PASSED] 13 VFs
[04:57:57] [PASSED] 14 VFs
[04:57:57] [PASSED] 15 VFs
[04:57:57] [PASSED] 16 VFs
[04:57:57] [PASSED] 17 VFs
[04:57:57] [PASSED] 18 VFs
[04:57:57] [PASSED] 19 VFs
[04:57:57] [PASSED] 20 VFs
[04:57:57] [PASSED] 21 VFs
[04:57:57] [PASSED] 22 VFs
[04:57:57] [PASSED] 23 VFs
[04:57:57] [PASSED] 24 VFs
[04:57:57] [PASSED] 25 VFs
[04:57:57] [PASSED] 26 VFs
[04:57:57] [PASSED] 27 VFs
[04:57:57] [PASSED] 28 VFs
[04:57:57] [PASSED] 29 VFs
[04:57:57] [PASSED] 30 VFs
[04:57:57] [PASSED] 31 VFs
[04:57:57] [PASSED] 32 VFs
[04:57:57] [PASSED] 33 VFs
[04:57:57] [PASSED] 34 VFs
[04:57:57] [PASSED] 35 VFs
[04:57:57] [PASSED] 36 VFs
[04:57:57] [PASSED] 37 VFs
[04:57:57] [PASSED] 38 VFs
[04:57:57] [PASSED] 39 VFs
[04:57:57] [PASSED] 40 VFs
[04:57:57] [PASSED] 41 VFs
[04:57:57] [PASSED] 42 VFs
[04:57:57] [PASSED] 43 VFs
[04:57:57] [PASSED] 44 VFs
[04:57:57] [PASSED] 45 VFs
[04:57:57] [PASSED] 46 VFs
[04:57:57] [PASSED] 47 VFs
[04:57:57] [PASSED] 48 VFs
[04:57:57] [PASSED] 49 VFs
[04:57:57] [PASSED] 50 VFs
[04:57:57] [PASSED] 51 VFs
[04:57:57] [PASSED] 52 VFs
[04:57:57] [PASSED] 53 VFs
[04:57:57] [PASSED] 54 VFs
[04:57:57] [PASSED] 55 VFs
[04:57:57] [PASSED] 56 VFs
[04:57:57] [PASSED] 57 VFs
[04:57:57] [PASSED] 58 VFs
[04:57:57] [PASSED] 59 VFs
[04:57:57] [PASSED] 60 VFs
[04:57:57] [PASSED] 61 VFs
[04:57:57] [PASSED] 62 VFs
[04:57:57] [PASSED] 63 VFs
[04:57:57] ==================== [PASSED] fair_vram ====================
[04:57:57] ================== [PASSED] pf_gt_config ===================
[04:57:57] ===================== lmtt (1 subtest) =====================
[04:57:57] ======================== test_ops =========================
[04:57:57] [PASSED] 2-level
[04:57:57] [PASSED] multi-level
[04:57:57] ==================== [PASSED] test_ops =====================
[04:57:57] ====================== [PASSED] lmtt =======================
[04:57:57] ================= sriov_packet (1 subtest) =================
[04:57:57] [PASSED] test_descriptor_init
[04:57:57] ================== [PASSED] sriov_packet ===================
[04:57:57] ================= pf_service (11 subtests) =================
[04:57:57] [PASSED] pf_negotiate_any
[04:57:57] [PASSED] pf_negotiate_base_match
[04:57:57] [PASSED] pf_negotiate_base_newer
[04:57:57] [PASSED] pf_negotiate_base_next
[04:57:57] [SKIPPED] pf_negotiate_base_older (no older minor)
[04:57:57] [PASSED] pf_negotiate_base_prev
[04:57:57] [PASSED] pf_negotiate_latest_match
[04:57:57] [PASSED] pf_negotiate_latest_newer
[04:57:57] [PASSED] pf_negotiate_latest_next
[04:57:57] [SKIPPED] pf_negotiate_latest_older (no older minor)
[04:57:57] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[04:57:57] =================== [PASSED] pf_service ====================
[04:57:57] ================= xe_guc_g2g (2 subtests) ==================
[04:57:57] ============== xe_live_guc_g2g_kunit_default ==============
[04:57:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[04:57:57] ============== xe_live_guc_g2g_kunit_allmem ===============
[04:57:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[04:57:57] =================== [SKIPPED] xe_guc_g2g ===================
[04:57:57] =================== xe_mocs (2 subtests) ===================
[04:57:57] ================ xe_live_mocs_kernel_kunit ================
[04:57:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[04:57:57] ================ xe_live_mocs_reset_kunit =================
[04:57:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[04:57:57] ==================== [SKIPPED] xe_mocs =====================
[04:57:57] ================= xe_migrate (2 subtests) ==================
[04:57:57] ================= xe_migrate_sanity_kunit =================
[04:57:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[04:57:57] ================== xe_validate_ccs_kunit ==================
[04:57:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[04:57:57] =================== [SKIPPED] xe_migrate ===================
[04:57:57] ================== xe_dma_buf (1 subtest) ==================
[04:57:57] ==================== xe_dma_buf_kunit =====================
[04:57:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[04:57:57] =================== [SKIPPED] xe_dma_buf ===================
[04:57:57] ================= xe_bo_shrink (1 subtest) =================
[04:57:57] =================== xe_bo_shrink_kunit ====================
[04:57:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[04:57:57] ================== [SKIPPED] xe_bo_shrink ==================
[04:57:57] ==================== xe_bo (2 subtests) ====================
[04:57:57] ================== xe_ccs_migrate_kunit ===================
[04:57:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[04:57:57] ==================== xe_bo_evict_kunit ====================
[04:57:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[04:57:57] ===================== [SKIPPED] xe_bo ======================
[04:57:57] =================== xe_any (9 subtests) ====================
[04:57:57] [PASSED] test_to_xe
[04:57:57] [PASSED] test_to_dev
[04:57:57] [PASSED] test_to_pdev
[04:57:57] [PASSED] test_to_drm
[04:57:57] [PASSED] test_if_pdev
[04:57:57] [PASSED] test_if_xe
[04:57:57] [PASSED] test_if_tile
[04:57:57] [PASSED] test_if_gt
[04:57:57] [PASSED] test_to_id
[04:57:57] ===================== [PASSED] xe_any ======================
[04:57:57] ==================== args (13 subtests) ====================
[04:57:57] [PASSED] count_args_test
[04:57:57] [PASSED] call_args_example
[04:57:57] [PASSED] call_args_test
[04:57:57] [PASSED] drop_first_arg_example
[04:57:57] [PASSED] drop_first_arg_test
[04:57:57] [PASSED] first_arg_example
[04:57:57] [PASSED] first_arg_test
[04:57:57] [PASSED] last_arg_example
[04:57:57] [PASSED] last_arg_test
[04:57:57] [PASSED] pick_arg_example
[04:57:57] [PASSED] if_args_example
[04:57:57] [PASSED] if_args_test
[04:57:57] [PASSED] sep_comma_example
[04:57:57] ====================== [PASSED] args =======================
[04:57:57] =================== xe_pci (3 subtests) ====================
[04:57:57] ==================== check_graphics_ip ====================
[04:57:57] [PASSED] 12.00 Xe_LP
[04:57:57] [PASSED] 12.10 Xe_LP+
[04:57:57] [PASSED] 12.55 Xe_HPG
[04:57:57] [PASSED] 12.60 Xe_HPC
[04:57:57] [PASSED] 12.70 Xe_LPG
[04:57:57] [PASSED] 12.71 Xe_LPG
[04:57:57] [PASSED] 12.74 Xe_LPG+
[04:57:57] [PASSED] 20.01 Xe2_HPG
[04:57:57] [PASSED] 20.02 Xe2_HPG
[04:57:57] [PASSED] 20.04 Xe2_LPG
[04:57:57] [PASSED] 30.00 Xe3_LPG
[04:57:57] [PASSED] 30.01 Xe3_LPG
[04:57:57] [PASSED] 30.03 Xe3_LPG
[04:57:57] [PASSED] 30.04 Xe3_LPG
[04:57:57] [PASSED] 30.05 Xe3_LPG
[04:57:57] [PASSED] 35.10 Xe3p_LPG
[04:57:57] [PASSED] 35.11 Xe3p_XPC
[04:57:57] ================ [PASSED] check_graphics_ip ================
[04:57:57] ===================== check_media_ip ======================
[04:57:57] [PASSED] 12.00 Xe_M
[04:57:57] [PASSED] 12.55 Xe_HPM
[04:57:57] [PASSED] 13.00 Xe_LPM+
[04:57:57] [PASSED] 13.01 Xe2_HPM
[04:57:57] [PASSED] 20.00 Xe2_LPM
[04:57:57] [PASSED] 30.00 Xe3_LPM
[04:57:57] [PASSED] 30.02 Xe3_LPM
[04:57:57] [PASSED] 35.00 Xe3p_LPM
[04:57:57] [PASSED] 35.03 Xe3p_HPM
[04:57:57] ================= [PASSED] check_media_ip ==================
[04:57:57] =================== check_platform_desc ===================
[04:57:57] [PASSED] 0x9A60 (TIGERLAKE)
[04:57:57] [PASSED] 0x9A68 (TIGERLAKE)
[04:57:57] [PASSED] 0x9A70 (TIGERLAKE)
[04:57:57] [PASSED] 0x9A40 (TIGERLAKE)
[04:57:57] [PASSED] 0x9A49 (TIGERLAKE)
[04:57:57] [PASSED] 0x9A59 (TIGERLAKE)
[04:57:57] [PASSED] 0x9A78 (TIGERLAKE)
[04:57:57] [PASSED] 0x9AC0 (TIGERLAKE)
[04:57:57] [PASSED] 0x9AC9 (TIGERLAKE)
[04:57:57] [PASSED] 0x9AD9 (TIGERLAKE)
[04:57:57] [PASSED] 0x9AF8 (TIGERLAKE)
[04:57:57] [PASSED] 0x4C80 (ROCKETLAKE)
[04:57:57] [PASSED] 0x4C8A (ROCKETLAKE)
[04:57:57] [PASSED] 0x4C8B (ROCKETLAKE)
[04:57:57] [PASSED] 0x4C8C (ROCKETLAKE)
[04:57:57] [PASSED] 0x4C90 (ROCKETLAKE)
[04:57:57] [PASSED] 0x4C9A (ROCKETLAKE)
[04:57:57] [PASSED] 0x4680 (ALDERLAKE_S)
[04:57:57] [PASSED] 0x4682 (ALDERLAKE_S)
[04:57:57] [PASSED] 0x4688 (ALDERLAKE_S)
[04:57:57] [PASSED] 0x468A (ALDERLAKE_S)
[04:57:57] [PASSED] 0x468B (ALDERLAKE_S)
[04:57:57] [PASSED] 0x4690 (ALDERLAKE_S)
[04:57:57] [PASSED] 0x4692 (ALDERLAKE_S)
[04:57:57] [PASSED] 0x4693 (ALDERLAKE_S)
[04:57:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46AA (ALDERLAKE_P)
[04:57:57] [PASSED] 0x462A (ALDERLAKE_P)
[04:57:57] [PASSED] 0x4626 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x4628 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46B0 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[04:57:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[04:57:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[04:57:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[04:57:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[04:57:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[04:57:57] [PASSED] 0xA721 (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA720 (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[04:57:57] [PASSED] 0xA780 (ALDERLAKE_S)
[04:57:57] [PASSED] 0xA781 (ALDERLAKE_S)
[04:57:57] [PASSED] 0xA782 (ALDERLAKE_S)
[04:57:57] [PASSED] 0xA783 (ALDERLAKE_S)
[04:57:57] [PASSED] 0xA788 (ALDERLAKE_S)
[04:57:57] [PASSED] 0xA789 (ALDERLAKE_S)
[04:57:57] [PASSED] 0xA78A (ALDERLAKE_S)
[04:57:57] [PASSED] 0xA78B (ALDERLAKE_S)
[04:57:57] [PASSED] 0x4905 (DG1)
[04:57:57] [PASSED] 0x4906 (DG1)
[04:57:57] [PASSED] 0x4907 (DG1)
[04:57:57] [PASSED] 0x4908 (DG1)
[04:57:57] [PASSED] 0x4909 (DG1)
[04:57:57] [PASSED] 0x56C0 (DG2)
[04:57:57] [PASSED] 0x56C2 (DG2)
[04:57:57] [PASSED] 0x56C1 (DG2)
[04:57:57] [PASSED] 0x7D51 (METEORLAKE)
[04:57:57] [PASSED] 0x7DD1 (METEORLAKE)
[04:57:57] [PASSED] 0x7D41 (METEORLAKE)
[04:57:57] [PASSED] 0x7D67 (METEORLAKE)
[04:57:57] [PASSED] 0xB640 (METEORLAKE)
[04:57:57] [PASSED] 0x56A0 (DG2)
[04:57:57] [PASSED] 0x56A1 (DG2)
[04:57:57] [PASSED] 0x56A2 (DG2)
[04:57:57] [PASSED] 0x56BE (DG2)
[04:57:57] [PASSED] 0x56BF (DG2)
[04:57:57] [PASSED] 0x5690 (DG2)
[04:57:57] [PASSED] 0x5691 (DG2)
[04:57:57] [PASSED] 0x5692 (DG2)
[04:57:57] [PASSED] 0x56A5 (DG2)
[04:57:57] [PASSED] 0x56A6 (DG2)
[04:57:57] [PASSED] 0x56B0 (DG2)
[04:57:57] [PASSED] 0x56B1 (DG2)
[04:57:57] [PASSED] 0x56BA (DG2)
[04:57:57] [PASSED] 0x56BB (DG2)
[04:57:57] [PASSED] 0x56BC (DG2)
[04:57:57] [PASSED] 0x56BD (DG2)
[04:57:57] [PASSED] 0x5693 (DG2)
[04:57:57] [PASSED] 0x5694 (DG2)
[04:57:57] [PASSED] 0x5695 (DG2)
[04:57:57] [PASSED] 0x56A3 (DG2)
[04:57:57] [PASSED] 0x56A4 (DG2)
[04:57:57] [PASSED] 0x56B2 (DG2)
[04:57:57] [PASSED] 0x56B3 (DG2)
[04:57:57] [PASSED] 0x5696 (DG2)
[04:57:57] [PASSED] 0x5697 (DG2)
[04:57:57] [PASSED] 0xB69 (PVC)
[04:57:57] [PASSED] 0xB6E (PVC)
[04:57:57] [PASSED] 0xBD4 (PVC)
[04:57:57] [PASSED] 0xBD5 (PVC)
[04:57:57] [PASSED] 0xBD6 (PVC)
[04:57:57] [PASSED] 0xBD7 (PVC)
[04:57:57] [PASSED] 0xBD8 (PVC)
[04:57:57] [PASSED] 0xBD9 (PVC)
[04:57:57] [PASSED] 0xBDA (PVC)
[04:57:57] [PASSED] 0xBDB (PVC)
[04:57:57] [PASSED] 0xBE0 (PVC)
[04:57:57] [PASSED] 0xBE1 (PVC)
[04:57:57] [PASSED] 0xBE5 (PVC)
[04:57:57] [PASSED] 0x7D40 (METEORLAKE)
[04:57:57] [PASSED] 0x7D45 (METEORLAKE)
[04:57:57] [PASSED] 0x7D55 (METEORLAKE)
[04:57:57] [PASSED] 0x7D60 (METEORLAKE)
[04:57:57] [PASSED] 0x7DD5 (METEORLAKE)
[04:57:57] [PASSED] 0x6420 (LUNARLAKE)
[04:57:57] [PASSED] 0x64A0 (LUNARLAKE)
[04:57:57] [PASSED] 0x64B0 (LUNARLAKE)
[04:57:57] [PASSED] 0xE202 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE209 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE20B (BATTLEMAGE)
[04:57:57] [PASSED] 0xE20C (BATTLEMAGE)
[04:57:57] [PASSED] 0xE20D (BATTLEMAGE)
[04:57:57] [PASSED] 0xE210 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE211 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE212 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE216 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE220 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE221 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE222 (BATTLEMAGE)
[04:57:57] [PASSED] 0xE223 (BATTLEMAGE)
[04:57:57] [PASSED] 0xB080 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB081 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB082 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB083 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB084 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB085 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB086 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB087 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB08F (PANTHERLAKE)
[04:57:57] [PASSED] 0xB090 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[04:57:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[04:57:57] [PASSED] 0xFD80 (PANTHERLAKE)
[04:57:57] [PASSED] 0xFD81 (PANTHERLAKE)
[04:57:57] [PASSED] 0xD740 (NOVALAKE_S)
[04:57:57] [PASSED] 0xD741 (NOVALAKE_S)
[04:57:57] [PASSED] 0xD742 (NOVALAKE_S)
[04:57:57] [PASSED] 0xD743 (NOVALAKE_S)
[04:57:57] [PASSED] 0xD745 (NOVALAKE_S)
[04:57:57] [PASSED] 0xD74A (NOVALAKE_S)
[04:57:57] [PASSED] 0xD74B (NOVALAKE_S)
[04:57:57] [PASSED] 0x674C (CRESCENTISLAND)
[04:57:57] [PASSED] 0x674D (CRESCENTISLAND)
[04:57:57] [PASSED] 0x674E (CRESCENTISLAND)
[04:57:57] [PASSED] 0x674F (CRESCENTISLAND)
[04:57:57] [PASSED] 0x6750 (CRESCENTISLAND)
[04:57:57] [PASSED] 0xD750 (NOVALAKE_P)
[04:57:57] [PASSED] 0xD751 (NOVALAKE_P)
[04:57:57] [PASSED] 0xD752 (NOVALAKE_P)
[04:57:57] [PASSED] 0xD753 (NOVALAKE_P)
[04:57:57] [PASSED] 0xD754 (NOVALAKE_P)
[04:57:57] [PASSED] 0xD755 (NOVALAKE_P)
[04:57:57] [PASSED] 0xD756 (NOVALAKE_P)
[04:57:57] [PASSED] 0xD757 (NOVALAKE_P)
[04:57:57] [PASSED] 0xD75F (NOVALAKE_P)
[04:57:57] =============== [PASSED] check_platform_desc ===============
[04:57:57] ===================== [PASSED] xe_pci ======================
[04:57:57] ============= xe_rtp_tables_test (5 subtests) ==============
[04:57:57] ================== xe_rtp_table_gt_test ===================
[04:57:57] [PASSED] gt_was/14011060649
[04:57:57] [PASSED] gt_was/14011059788
[04:57:57] [PASSED] gt_was/14015795083
[04:57:57] [PASSED] gt_was/16021867713
[04:57:57] [PASSED] gt_was/14019449301
[04:57:57] [PASSED] gt_was/16028005424
[04:57:57] [PASSED] gt_was/14026578760
[04:57:57] [PASSED] gt_was/1409420604
[04:57:57] [PASSED] gt_was/1408615072
[04:57:57] [PASSED] gt_was/22010523718
[04:57:57] [PASSED] gt_was/14011006942
[04:57:57] [PASSED] gt_was/14014830051
[04:57:57] [PASSED] gt_was/18018781329
[04:57:57] [PASSED] gt_was/1509235366
[04:57:57] [PASSED] gt_was/18018781329
[04:57:57] [PASSED] gt_was/16016694945
[04:57:57] [PASSED] gt_was/14018575942
[04:57:57] [PASSED] gt_was/22016670082
[04:57:57] [PASSED] gt_was/22016670082
[04:57:57] [PASSED] gt_was/14017421178
[04:57:57] [PASSED] gt_was/16025250150
[04:57:57] [PASSED] gt_was/14021871409
[04:57:57] [PASSED] gt_was/16021865536
[04:57:57] [PASSED] gt_was/14021486841
[04:57:57] [PASSED] gt_was/14025160223
[04:57:57] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[04:57:57] [PASSED] gt_was/14025635424
[04:57:57] [PASSED] gt_was/16028005424
[04:57:57] ============== [PASSED] xe_rtp_table_gt_test ===============
[04:57:57] ================== xe_rtp_table_gt_test ===================
[04:57:57] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[04:57:57] [PASSED] gt_tunings/Tuning: 32B Access Enable
[04:57:57] [PASSED] gt_tunings/Tuning: L3 cache
[04:57:57] [PASSED] gt_tunings/Tuning: L3 cache - media
[04:57:57] [PASSED] gt_tunings/Tuning: Compression Overfetch
[04:57:57] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[04:57:57] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[04:57:57] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[04:57:57] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[04:57:57] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[04:57:57] [PASSED] gt_tunings/Tuning: Stateless compression control
[04:57:57] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[04:57:57] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[04:57:57] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[04:57:57] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[04:57:57] ============== [PASSED] xe_rtp_table_gt_test ===============
[04:57:57] ================== xe_rtp_table_oob_test ==================
[04:57:57] [PASSED] oob_was/1607983814
[04:57:57] [PASSED] oob_was/16010904313
[04:57:57] [PASSED] oob_was/18022495364
[04:57:57] [PASSED] oob_was/22012773006
[04:57:57] [PASSED] oob_was/14014475959
[04:57:57] [PASSED] oob_was/22011391025
[04:57:57] [PASSED] oob_was/22012727170
[04:57:57] [PASSED] oob_was/22012727685
[04:57:57] [PASSED] oob_was/22016596838
[04:57:57] [PASSED] oob_was/18020744125
[04:57:57] [PASSED] oob_was/1409600907
[04:57:57] [PASSED] oob_was/22014953428
[04:57:57] [PASSED] oob_was/16017236439
[04:57:57] [PASSED] oob_was/14019821291
[04:57:57] [PASSED] oob_was/14015076503
[04:57:57] [PASSED] oob_was/14018913170
[04:57:57] [PASSED] oob_was/14018094691
[04:57:57] [PASSED] oob_was/18024947630
[04:57:57] [PASSED] oob_was/16022287689
[04:57:57] [PASSED] oob_was/13011645652
[04:57:57] [PASSED] oob_was/14022293748
[04:57:57] [PASSED] oob_was/22019794406
[04:57:57] [PASSED] oob_was/22019338487
[04:57:57] [PASSED] oob_was/16023588340
[04:57:57] [PASSED] oob_was/14019789679
[04:57:57] [PASSED] oob_was/14022866841
[04:57:57] [PASSED] oob_was/16021333562
[04:57:57] [PASSED] oob_was/14016712196
[04:57:57] [PASSED] oob_was/14015568240
[04:57:57] [PASSED] oob_was/18013179988
[04:57:57] [PASSED] oob_was/1508761755
[04:57:57] [PASSED] oob_was/16023105232
[04:57:57] [PASSED] oob_was/16026508708
[04:57:57] [PASSED] oob_was/14020001231
[04:57:57] [PASSED] oob_was/16023683509
[04:57:57] [PASSED] oob_was/14025515070
[04:57:57] [PASSED] oob_was/15015404425_disable
[04:57:57] [PASSED] oob_was/16026007364
[04:57:57] [PASSED] oob_was/14020316580
[04:57:57] [PASSED] oob_was/14025883347
[04:57:57] [PASSED] oob_was/16029380221
[04:57:57] [PASSED] oob_was/22022079272
[04:57:57] [PASSED] oob_was/16029897822
[04:57:57] [PASSED] oob_was/14027054324
[04:57:57] ============== [PASSED] xe_rtp_table_oob_test ==============
[04:57:57] ================ xe_rtp_table_dev_oob_test ================
[04:57:57] [PASSED] device_oob_was/22010954014
[04:57:57] [PASSED] device_oob_was/15015404425
[04:57:57] [PASSED] device_oob_was/22019338487_display
[04:57:57] [PASSED] device_oob_was/14022085890
[04:57:57] [PASSED] device_oob_was/14026539277
[04:57:57] [PASSED] device_oob_was/14026633728
[04:57:57] [PASSED] device_oob_was/14026746987
[04:57:57] [PASSED] device_oob_was/14026779378
[04:57:57] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[04:57:57] ========== xe_rtp_table_missing_upper_bound_test ==========
[04:57:57] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[04:57:57] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[04:57:57] [PASSED] register_whitelist/1806527549
[04:57:57] [PASSED] register_whitelist/allow_read_ctx_timestamp
[04:57:57] [PASSED] register_whitelist/allow_read_queue_timestamp
[04:57:57] [PASSED] register_whitelist/16014440446
[04:57:57] [PASSED] register_whitelist/16017236439
[04:57:57] [PASSED] register_whitelist/16020183090
[04:57:57] [PASSED] register_whitelist/14024997852
[04:57:57] [PASSED] register_whitelist/14024997852
[04:57:57] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[04:57:57] =============== [PASSED] xe_rtp_tables_test ================
[04:57:57] =================== xe_rtp (3 subtests) ====================
[04:57:57] =================== xe_rtp_rules_tests ====================
[04:57:57] [PASSED] no
[04:57:57] [PASSED] yes
[04:57:57] [PASSED] no-and-no
[04:57:57] [PASSED] no-and-yes
[04:57:57] [PASSED] yes-and-no
[04:57:57] [PASSED] yes-and-yes
[04:57:57] [PASSED] no-or-no
[04:57:57] [PASSED] no-or-yes
[04:57:57] [PASSED] yes-or-no
[04:57:57] [PASSED] yes-or-yes
[04:57:57] [PASSED] no-yes-or-yes-no
[04:57:57] [PASSED] no-yes-or-yes-yes
[04:57:57] [PASSED] yes-yes-or-no-yes
[04:57:57] [PASSED] yes-yes-or-yes-yes
[04:57:57] [PASSED] no-no-or-yes-or-no
[04:57:57] [PASSED] or
[04:57:57] [PASSED] or-yes
[04:57:57] [PASSED] or-no
[04:57:57] [PASSED] yes-or
[04:57:57] [PASSED] no-or
[04:57:57] [PASSED] no-or-or-yes
[04:57:57] [PASSED] yes-or-or-no
[04:57:57] [PASSED] no-or-or-no
[04:57:57] [PASSED] missing-context-engine-class
[04:57:57] [PASSED] missing-context-engine-class-or-yes
[04:57:57] [PASSED] missing-context-engine-class-or-or-yes
[04:57:57] =============== [PASSED] xe_rtp_rules_tests ================
[04:57:57] =============== xe_rtp_process_to_sr_tests ================
[04:57:57] [PASSED] coalesce-same-reg
[04:57:57] [PASSED] coalesce-same-reg-literal-and-func
[04:57:57] [PASSED] no-match-no-add
[04:57:57] [PASSED] two-regs-two-entries
[04:57:57] [PASSED] clr-one-set-other
[04:57:57] [PASSED] set-field
[04:57:57] [PASSED] conflict-duplicate
[04:57:57] [PASSED] conflict-not-disjoint
[04:57:57] [PASSED] conflict-not-disjoint-literal-and-func
[04:57:57] [PASSED] conflict-reg-type
[04:57:57] [PASSED] bad-mcr-reg-forced-to-regular
[04:57:57] [PASSED] bad-regular-reg-forced-to-mcr
[04:57:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[04:57:57] ================== xe_rtp_process_tests ===================
[04:57:57] [PASSED] active1
[04:57:57] [PASSED] active2
[04:57:57] [PASSED] active-inactive
[04:57:57] [PASSED] inactive-active
[04:57:57] [PASSED] inactive-active-inactive
[04:57:57] [PASSED] inactive-inactive-inactive
[04:57:57] ============== [PASSED] xe_rtp_process_tests ===============
[04:57:57] ===================== [PASSED] xe_rtp ======================
[04:57:57] ==================== xe_wa (1 subtest) =====================
[04:57:57] ======================== xe_wa_gt =========================
[04:57:57] [PASSED] TIGERLAKE B0
[04:57:57] [PASSED] DG1 A0
[04:57:57] [PASSED] DG1 B0
[04:57:57] [PASSED] ALDERLAKE_S A0
[04:57:57] [PASSED] ALDERLAKE_S B0
[04:57:57] [PASSED] ALDERLAKE_S C0
[04:57:57] [PASSED] ALDERLAKE_S D0
[04:57:57] [PASSED] ALDERLAKE_P A0
[04:57:57] [PASSED] ALDERLAKE_P B0
[04:57:57] [PASSED] ALDERLAKE_P C0
[04:57:57] [PASSED] ALDERLAKE_S RPLS D0
[04:57:57] [PASSED] ALDERLAKE_P RPLU E0
[04:57:57] [PASSED] DG2 G10 C0
[04:57:57] [PASSED] DG2 G11 B1
[04:57:57] [PASSED] DG2 G12 A1
[04:57:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[04:57:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[04:57:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[04:57:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[04:57:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[04:57:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[04:57:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[04:57:57] ==================== [PASSED] xe_wa_gt =====================
[04:57:57] ====================== [PASSED] xe_wa ======================
[04:57:57] ============================================================
[04:57:57] Testing complete. Ran 789 tests: passed: 761, skipped: 28
[04:57:57] Elapsed time: 37.850s total, 4.449s configuring, 32.685s building, 0.688s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[04:57:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:57: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
[04:58:24] Starting KUnit Kernel (1/1)...
[04:58:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:58:24] ============ drm_test_pick_cmdline (2 subtests) ============
[04:58:24] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[04:58:24] =============== drm_test_pick_cmdline_named ===============
[04:58:24] [PASSED] NTSC
[04:58:24] [PASSED] NTSC-J
[04:58:24] [PASSED] PAL
[04:58:24] [PASSED] PAL-M
[04:58:24] =========== [PASSED] drm_test_pick_cmdline_named ===========
[04:58:24] ============== [PASSED] drm_test_pick_cmdline ==============
[04:58:24] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[04:58:24] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[04:58:24] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[04:58:24] =========== drm_validate_clone_mode (2 subtests) ===========
[04:58:24] ============== drm_test_check_in_clone_mode ===============
[04:58:24] [PASSED] in_clone_mode
[04:58:24] [PASSED] not_in_clone_mode
[04:58:24] ========== [PASSED] drm_test_check_in_clone_mode ===========
[04:58:24] =============== drm_test_check_valid_clones ===============
[04:58:24] [PASSED] not_in_clone_mode
[04:58:24] [PASSED] valid_clone
[04:58:24] [PASSED] invalid_clone
[04:58:24] =========== [PASSED] drm_test_check_valid_clones ===========
[04:58:24] ============= [PASSED] drm_validate_clone_mode =============
[04:58:24] ============= drm_validate_modeset (1 subtest) =============
[04:58:24] [PASSED] drm_test_check_connector_changed_modeset
[04:58:24] ============== [PASSED] drm_validate_modeset ===============
[04:58:24] ====== drm_test_bridge_get_current_state (1 subtest) =======
[04:58:24] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[04:58:24] ======== [PASSED] drm_test_bridge_get_current_state ========
[04:58:24] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[04:58:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[04:58:24] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[04:58:24] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[04:58:24] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[04:58:24] ============== drm_bridge_alloc (2 subtests) ===============
[04:58:24] [PASSED] drm_test_drm_bridge_alloc_basic
[04:58:24] [PASSED] drm_test_drm_bridge_alloc_get_put
[04:58:24] ================ [PASSED] drm_bridge_alloc =================
[04:58:24] ============= drm_bridge_bus_fmt (5 subtests) ==============
[04:58:24] [PASSED] drm_test_bridge_rgb_yuv_rgb
[04:58:24] [PASSED] drm_test_bridge_must_convert_to_yuv444
[04:58:24] [PASSED] drm_test_bridge_hdmi_auto_rgb
[04:58:24] [PASSED] drm_test_bridge_auto_first
[04:58:24] [PASSED] drm_test_bridge_rgb_yuv_no_path
[04:58:24] =============== [PASSED] drm_bridge_bus_fmt ================
[04:58:24] ============= drm_cmdline_parser (40 subtests) =============
[04:58:24] [PASSED] drm_test_cmdline_force_d_only
[04:58:24] [PASSED] drm_test_cmdline_force_D_only_dvi
[04:58:24] [PASSED] drm_test_cmdline_force_D_only_hdmi
[04:58:24] [PASSED] drm_test_cmdline_force_D_only_not_digital
[04:58:24] [PASSED] drm_test_cmdline_force_e_only
[04:58:24] [PASSED] drm_test_cmdline_res
[04:58:24] [PASSED] drm_test_cmdline_res_vesa
[04:58:24] [PASSED] drm_test_cmdline_res_vesa_rblank
[04:58:24] [PASSED] drm_test_cmdline_res_rblank
[04:58:24] [PASSED] drm_test_cmdline_res_bpp
[04:58:24] [PASSED] drm_test_cmdline_res_refresh
[04:58:24] [PASSED] drm_test_cmdline_res_bpp_refresh
[04:58:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[04:58:24] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[04:58:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[04:58:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[04:58:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[04:58:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[04:58:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[04:58:24] [PASSED] drm_test_cmdline_res_margins_force_on
[04:58:24] [PASSED] drm_test_cmdline_res_vesa_margins
[04:58:24] [PASSED] drm_test_cmdline_name
[04:58:24] [PASSED] drm_test_cmdline_name_bpp
[04:58:24] [PASSED] drm_test_cmdline_name_option
[04:58:24] [PASSED] drm_test_cmdline_name_bpp_option
[04:58:24] [PASSED] drm_test_cmdline_rotate_0
[04:58:24] [PASSED] drm_test_cmdline_rotate_90
[04:58:24] [PASSED] drm_test_cmdline_rotate_180
[04:58:24] [PASSED] drm_test_cmdline_rotate_270
[04:58:24] [PASSED] drm_test_cmdline_hmirror
[04:58:24] [PASSED] drm_test_cmdline_vmirror
[04:58:24] [PASSED] drm_test_cmdline_margin_options
[04:58:24] [PASSED] drm_test_cmdline_multiple_options
[04:58:24] [PASSED] drm_test_cmdline_bpp_extra_and_option
[04:58:24] [PASSED] drm_test_cmdline_extra_and_option
[04:58:24] [PASSED] drm_test_cmdline_freestanding_options
[04:58:24] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[04:58:24] [PASSED] drm_test_cmdline_panel_orientation
[04:58:24] ================ drm_test_cmdline_invalid =================
[04:58:24] [PASSED] margin_only
[04:58:24] [PASSED] interlace_only
[04:58:24] [PASSED] res_missing_x
[04:58:24] [PASSED] res_missing_y
[04:58:24] [PASSED] res_bad_y
[04:58:24] [PASSED] res_missing_y_bpp
[04:58:24] [PASSED] res_bad_bpp
[04:58:24] [PASSED] res_bad_refresh
[04:58:24] [PASSED] res_bpp_refresh_force_on_off
[04:58:24] [PASSED] res_invalid_mode
[04:58:24] [PASSED] res_bpp_wrong_place_mode
[04:58:24] [PASSED] name_bpp_refresh
[04:58:24] [PASSED] name_refresh
[04:58:24] [PASSED] name_refresh_wrong_mode
[04:58:24] [PASSED] name_refresh_invalid_mode
[04:58:24] [PASSED] rotate_multiple
[04:58:24] [PASSED] rotate_invalid_val
[04:58:24] [PASSED] rotate_truncated
[04:58:24] [PASSED] invalid_option
[04:58:24] [PASSED] invalid_tv_option
[04:58:24] [PASSED] truncated_tv_option
[04:58:24] ============ [PASSED] drm_test_cmdline_invalid =============
[04:58:24] =============== drm_test_cmdline_tv_options ===============
[04:58:24] [PASSED] NTSC
[04:58:24] [PASSED] NTSC_443
[04:58:24] [PASSED] NTSC_J
[04:58:24] [PASSED] PAL
[04:58:24] [PASSED] PAL_M
[04:58:24] [PASSED] PAL_N
[04:58:24] [PASSED] SECAM
[04:58:24] [PASSED] MONO_525
[04:58:24] [PASSED] MONO_625
[04:58:24] =========== [PASSED] drm_test_cmdline_tv_options ===========
[04:58:24] =============== [PASSED] drm_cmdline_parser ================
[04:58:24] ========== drmm_connector_hdmi_init (20 subtests) ==========
[04:58:24] [PASSED] drm_test_connector_hdmi_init_valid
[04:58:24] [PASSED] drm_test_connector_hdmi_init_bpc_8
[04:58:24] [PASSED] drm_test_connector_hdmi_init_bpc_10
[04:58:24] [PASSED] drm_test_connector_hdmi_init_bpc_12
[04:58:24] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[04:58:24] [PASSED] drm_test_connector_hdmi_init_bpc_null
[04:58:24] [PASSED] drm_test_connector_hdmi_init_formats_empty
[04:58:24] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[04:58:24] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:58:24] [PASSED] supported_formats=0x9 yuv420_allowed=1
[04:58:24] [PASSED] supported_formats=0x9 yuv420_allowed=0
[04:58:24] [PASSED] supported_formats=0x5 yuv420_allowed=1
[04:58:24] [PASSED] supported_formats=0x5 yuv420_allowed=0
[04:58:24] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:58:24] [PASSED] drm_test_connector_hdmi_init_null_ddc
[04:58:24] [PASSED] drm_test_connector_hdmi_init_null_product
[04:58:24] [PASSED] drm_test_connector_hdmi_init_null_vendor
[04:58:24] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[04:58:24] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[04:58:24] [PASSED] drm_test_connector_hdmi_init_product_valid
[04:58:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[04:58:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[04:58:24] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[04:58:24] ========= drm_test_connector_hdmi_init_type_valid =========
[04:58:24] [PASSED] HDMI-A
[04:58:24] [PASSED] HDMI-B
[04:58:24] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[04:58:24] ======== drm_test_connector_hdmi_init_type_invalid ========
[04:58:24] [PASSED] Unknown
[04:58:24] [PASSED] VGA
[04:58:24] [PASSED] DVI-I
[04:58:24] [PASSED] DVI-D
[04:58:24] [PASSED] DVI-A
[04:58:24] [PASSED] Composite
[04:58:24] [PASSED] SVIDEO
[04:58:24] [PASSED] LVDS
[04:58:24] [PASSED] Component
[04:58:24] [PASSED] DIN
[04:58:24] [PASSED] DP
[04:58:24] [PASSED] TV
[04:58:24] [PASSED] eDP
[04:58:24] [PASSED] Virtual
[04:58:24] [PASSED] DSI
[04:58:24] [PASSED] DPI
[04:58:24] [PASSED] Writeback
[04:58:24] [PASSED] SPI
[04:58:24] [PASSED] USB
[04:58:24] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[04:58:24] ============ [PASSED] drmm_connector_hdmi_init =============
[04:58:24] ============= drmm_connector_init (3 subtests) =============
[04:58:24] [PASSED] drm_test_drmm_connector_init
[04:58:24] [PASSED] drm_test_drmm_connector_init_null_ddc
[04:58:24] ========= drm_test_drmm_connector_init_type_valid =========
[04:58:24] [PASSED] Unknown
[04:58:24] [PASSED] VGA
[04:58:24] [PASSED] DVI-I
[04:58:24] [PASSED] DVI-D
[04:58:24] [PASSED] DVI-A
[04:58:24] [PASSED] Composite
[04:58:24] [PASSED] SVIDEO
[04:58:24] [PASSED] LVDS
[04:58:24] [PASSED] Component
[04:58:24] [PASSED] DIN
[04:58:24] [PASSED] DP
[04:58:24] [PASSED] HDMI-A
[04:58:24] [PASSED] HDMI-B
[04:58:24] [PASSED] TV
[04:58:24] [PASSED] eDP
[04:58:24] [PASSED] Virtual
[04:58:24] [PASSED] DSI
[04:58:24] [PASSED] DPI
[04:58:24] [PASSED] Writeback
[04:58:24] [PASSED] SPI
[04:58:24] [PASSED] USB
[04:58:24] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[04:58:24] =============== [PASSED] drmm_connector_init ===============
[04:58:24] ========= drm_connector_dynamic_init (6 subtests) ==========
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_init
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_init_properties
[04:58:24] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[04:58:24] [PASSED] Unknown
[04:58:24] [PASSED] VGA
[04:58:24] [PASSED] DVI-I
[04:58:24] [PASSED] DVI-D
[04:58:24] [PASSED] DVI-A
[04:58:24] [PASSED] Composite
[04:58:24] [PASSED] SVIDEO
[04:58:24] [PASSED] LVDS
[04:58:24] [PASSED] Component
[04:58:24] [PASSED] DIN
[04:58:24] [PASSED] DP
[04:58:24] [PASSED] HDMI-A
[04:58:24] [PASSED] HDMI-B
[04:58:24] [PASSED] TV
[04:58:24] [PASSED] eDP
[04:58:24] [PASSED] Virtual
[04:58:24] [PASSED] DSI
[04:58:24] [PASSED] DPI
[04:58:24] [PASSED] Writeback
[04:58:24] [PASSED] SPI
[04:58:24] [PASSED] USB
[04:58:24] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[04:58:24] ======== drm_test_drm_connector_dynamic_init_name =========
[04:58:24] [PASSED] Unknown
[04:58:24] [PASSED] VGA
[04:58:24] [PASSED] DVI-I
[04:58:24] [PASSED] DVI-D
[04:58:24] [PASSED] DVI-A
[04:58:24] [PASSED] Composite
[04:58:24] [PASSED] SVIDEO
[04:58:24] [PASSED] LVDS
[04:58:24] [PASSED] Component
[04:58:24] [PASSED] DIN
[04:58:24] [PASSED] DP
[04:58:24] [PASSED] HDMI-A
[04:58:24] [PASSED] HDMI-B
[04:58:24] [PASSED] TV
[04:58:24] [PASSED] eDP
[04:58:24] [PASSED] Virtual
[04:58:24] [PASSED] DSI
[04:58:24] [PASSED] DPI
[04:58:24] [PASSED] Writeback
[04:58:24] [PASSED] SPI
[04:58:24] [PASSED] USB
[04:58:24] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[04:58:24] =========== [PASSED] drm_connector_dynamic_init ============
[04:58:24] ==== drm_connector_dynamic_register_early (4 subtests) =====
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[04:58:24] ====== [PASSED] drm_connector_dynamic_register_early =======
[04:58:24] ======= drm_connector_dynamic_register (7 subtests) ========
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[04:58:24] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[04:58:24] ========= [PASSED] drm_connector_dynamic_register ==========
[04:58:24] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[04:58:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[04:58:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[04:58:24] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[04:58:24] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[04:58:24] ========== drm_test_get_tv_mode_from_name_valid ===========
[04:58:24] [PASSED] NTSC
[04:58:24] [PASSED] NTSC-443
[04:58:24] [PASSED] NTSC-J
[04:58:24] [PASSED] PAL
[04:58:24] [PASSED] PAL-M
[04:58:24] [PASSED] PAL-N
[04:58:24] [PASSED] SECAM
[04:58:24] [PASSED] Mono
[04:58:24] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[04:58:24] [PASSED] drm_test_get_tv_mode_from_name_truncated
[04:58:24] ============ [PASSED] drm_get_tv_mode_from_name ============
[04:58:24] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[04:58:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[04:58:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[04:58:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[04:58:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[04:58:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[04:58:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[04:58:24] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[04:58:24] [PASSED] VIC 96
[04:58:24] [PASSED] VIC 97
[04:58:24] [PASSED] VIC 101
[04:58:24] [PASSED] VIC 102
[04:58:24] [PASSED] VIC 106
[04:58:24] [PASSED] VIC 107
[04:58:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[04:58:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[04:58:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[04:58:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[04:58:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[04:58:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[04:58:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[04:58:24] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[04:58:24] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[04:58:24] [PASSED] Automatic
[04:58:24] [PASSED] Full
[04:58:24] [PASSED] Limited 16:235
[04:58:24] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[04:58:24] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[04:58:24] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[04:58:24] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[04:58:24] === drm_test_drm_hdmi_connector_get_output_format_name ====
[04:58:24] [PASSED] RGB
[04:58:24] [PASSED] YUV 4:2:0
[04:58:24] [PASSED] YUV 4:2:2
[04:58:24] [PASSED] YUV 4:4:4
[04:58:24] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[04:58:24] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[04:58:24] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[04:58:24] ============= drm_damage_helper (21 subtests) ==============
[04:58:24] [PASSED] drm_test_damage_iter_no_damage
[04:58:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[04:58:24] [PASSED] drm_test_damage_iter_no_damage_src_moved
[04:58:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[04:58:24] [PASSED] drm_test_damage_iter_no_damage_not_visible
[04:58:24] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[04:58:24] [PASSED] drm_test_damage_iter_no_damage_no_fb
[04:58:24] [PASSED] drm_test_damage_iter_simple_damage
[04:58:24] [PASSED] drm_test_damage_iter_single_damage
[04:58:24] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[04:58:24] [PASSED] drm_test_damage_iter_single_damage_outside_src
[04:58:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[04:58:24] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[04:58:24] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[04:58:24] [PASSED] drm_test_damage_iter_single_damage_src_moved
[04:58:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[04:58:24] [PASSED] drm_test_damage_iter_damage
[04:58:24] [PASSED] drm_test_damage_iter_damage_one_intersect
[04:58:24] [PASSED] drm_test_damage_iter_damage_one_outside
[04:58:24] [PASSED] drm_test_damage_iter_damage_src_moved
[04:58:24] [PASSED] drm_test_damage_iter_damage_not_visible
[04:58:24] ================ [PASSED] drm_damage_helper ================
[04:58:24] ============== drm_dp_mst_helper (3 subtests) ==============
[04:58:24] ============== drm_test_dp_mst_calc_pbn_mode ==============
[04:58:24] [PASSED] Clock 154000 BPP 30 DSC disabled
[04:58:24] [PASSED] Clock 234000 BPP 30 DSC disabled
[04:58:24] [PASSED] Clock 297000 BPP 24 DSC disabled
[04:58:24] [PASSED] Clock 332880 BPP 24 DSC enabled
[04:58:24] [PASSED] Clock 324540 BPP 24 DSC enabled
[04:58:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[04:58:24] ============== drm_test_dp_mst_calc_pbn_div ===============
[04:58:24] [PASSED] Link rate 2000000 lane count 4
[04:58:24] [PASSED] Link rate 2000000 lane count 2
[04:58:24] [PASSED] Link rate 2000000 lane count 1
[04:58:24] [PASSED] Link rate 1350000 lane count 4
[04:58:24] [PASSED] Link rate 1350000 lane count 2
[04:58:24] [PASSED] Link rate 1350000 lane count 1
[04:58:24] [PASSED] Link rate 1000000 lane count 4
[04:58:24] [PASSED] Link rate 1000000 lane count 2
[04:58:24] [PASSED] Link rate 1000000 lane count 1
[04:58:24] [PASSED] Link rate 810000 lane count 4
[04:58:24] [PASSED] Link rate 810000 lane count 2
[04:58:24] [PASSED] Link rate 810000 lane count 1
[04:58:24] [PASSED] Link rate 540000 lane count 4
[04:58:24] [PASSED] Link rate 540000 lane count 2
[04:58:24] [PASSED] Link rate 540000 lane count 1
[04:58:24] [PASSED] Link rate 270000 lane count 4
[04:58:24] [PASSED] Link rate 270000 lane count 2
[04:58:24] [PASSED] Link rate 270000 lane count 1
[04:58:24] [PASSED] Link rate 162000 lane count 4
[04:58:24] [PASSED] Link rate 162000 lane count 2
[04:58:24] [PASSED] Link rate 162000 lane count 1
[04:58:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[04:58:24] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[04:58:24] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[04:58:24] [PASSED] DP_POWER_UP_PHY with port number
[04:58:24] [PASSED] DP_POWER_DOWN_PHY with port number
[04:58:24] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[04:58:24] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[04:58:24] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[04:58:24] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[04:58:24] [PASSED] DP_QUERY_PAYLOAD with port number
[04:58:24] [PASSED] DP_QUERY_PAYLOAD with VCPI
[04:58:24] [PASSED] DP_REMOTE_DPCD_READ with port number
[04:58:24] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[04:58:24] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[04:58:24] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[04:58:24] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[04:58:24] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[04:58:24] [PASSED] DP_REMOTE_I2C_READ with port number
[04:58:24] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[04:58:24] [PASSED] DP_REMOTE_I2C_READ with transactions array
[04:58:24] [PASSED] DP_REMOTE_I2C_WRITE with port number
[04:58:24] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[04:58:24] [PASSED] DP_REMOTE_I2C_WRITE with data array
[04:58:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[04:58:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[04:58:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[04:58:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[04:58:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[04:58:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[04:58:24] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[04:58:24] ================ [PASSED] drm_dp_mst_helper ================
[04:58:24] ================== drm_exec (7 subtests) ===================
[04:58:24] [PASSED] sanitycheck
[04:58:24] [PASSED] test_lock
[04:58:24] [PASSED] test_lock_unlock
[04:58:24] [PASSED] test_duplicates
[04:58:24] [PASSED] test_prepare
[04:58:24] [PASSED] test_prepare_array
[04:58:24] [PASSED] test_multiple_loops
[04:58:24] ==================== [PASSED] drm_exec =====================
[04:58:24] =========== drm_format_helper_test (17 subtests) ===========
[04:58:24] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[04:58:24] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[04:58:24] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[04:58:24] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[04:58:24] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[04:58:24] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[04:58:24] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[04:58:24] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[04:58:24] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[04:58:24] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[04:58:24] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[04:58:24] ============== drm_test_fb_xrgb8888_to_mono ===============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[04:58:24] ==================== drm_test_fb_swab =====================
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ================ [PASSED] drm_test_fb_swab =================
[04:58:24] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[04:58:24] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[04:58:24] [PASSED] single_pixel_source_buffer
[04:58:24] [PASSED] single_pixel_clip_rectangle
[04:58:24] [PASSED] well_known_colors
[04:58:24] [PASSED] destination_pitch
[04:58:24] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[04:58:24] ================= drm_test_fb_clip_offset =================
[04:58:24] [PASSED] pass through
[04:58:24] [PASSED] horizontal offset
[04:58:24] [PASSED] vertical offset
[04:58:24] [PASSED] horizontal and vertical offset
[04:58:24] [PASSED] horizontal offset (custom pitch)
[04:58:24] [PASSED] vertical offset (custom pitch)
[04:58:24] [PASSED] horizontal and vertical offset (custom pitch)
[04:58:24] ============= [PASSED] drm_test_fb_clip_offset =============
[04:58:24] =================== drm_test_fb_memcpy ====================
[04:58:24] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[04:58:24] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[04:58:24] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[04:58:24] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[04:58:24] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[04:58:24] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[04:58:24] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[04:58:24] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[04:58:24] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[04:58:24] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[04:58:24] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[04:58:24] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[04:58:24] =============== [PASSED] drm_test_fb_memcpy ================
[04:58:24] ============= [PASSED] drm_format_helper_test ==============
[04:58:24] ================= drm_format (18 subtests) =================
[04:58:24] [PASSED] drm_test_format_block_width_invalid
[04:58:24] [PASSED] drm_test_format_block_width_one_plane
[04:58:24] [PASSED] drm_test_format_block_width_two_plane
[04:58:24] [PASSED] drm_test_format_block_width_three_plane
[04:58:24] [PASSED] drm_test_format_block_width_tiled
[04:58:24] [PASSED] drm_test_format_block_height_invalid
[04:58:24] [PASSED] drm_test_format_block_height_one_plane
[04:58:24] [PASSED] drm_test_format_block_height_two_plane
[04:58:24] [PASSED] drm_test_format_block_height_three_plane
[04:58:24] [PASSED] drm_test_format_block_height_tiled
[04:58:24] [PASSED] drm_test_format_min_pitch_invalid
[04:58:24] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[04:58:24] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[04:58:24] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[04:58:24] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[04:58:24] [PASSED] drm_test_format_min_pitch_two_plane
[04:58:24] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[04:58:24] [PASSED] drm_test_format_min_pitch_tiled
[04:58:24] =================== [PASSED] drm_format ====================
[04:58:24] ============== drm_framebuffer (10 subtests) ===============
[04:58:24] ========== drm_test_framebuffer_check_src_coords ==========
[04:58:24] [PASSED] Success: source fits into fb
[04:58:24] [PASSED] Fail: overflowing fb with x-axis coordinate
[04:58:24] [PASSED] Fail: overflowing fb with y-axis coordinate
[04:58:24] [PASSED] Fail: overflowing fb with source width
[04:58:24] [PASSED] Fail: overflowing fb with source height
[04:58:24] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[04:58:24] [PASSED] drm_test_framebuffer_cleanup
[04:58:24] =============== drm_test_framebuffer_create ===============
[04:58:24] [PASSED] ABGR8888 normal sizes
[04:58:24] [PASSED] ABGR8888 max sizes
[04:58:24] [PASSED] ABGR8888 pitch greater than min required
[04:58:24] [PASSED] ABGR8888 pitch less than min required
[04:58:24] [PASSED] ABGR8888 Invalid width
[04:58:24] [PASSED] ABGR8888 Invalid buffer handle
[04:58:24] [PASSED] No pixel format
[04:58:24] [PASSED] ABGR8888 Width 0
[04:58:24] [PASSED] ABGR8888 Height 0
[04:58:24] [PASSED] ABGR8888 Out of bound height * pitch combination
[04:58:24] [PASSED] ABGR8888 Large buffer offset
[04:58:24] [PASSED] ABGR8888 Buffer offset for inexistent plane
[04:58:24] [PASSED] ABGR8888 Invalid flag
[04:58:24] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[04:58:24] [PASSED] ABGR8888 Valid buffer modifier
[04:58:24] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[04:58:24] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[04:58:24] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[04:58:24] [PASSED] NV12 Normal sizes
[04:58:24] [PASSED] NV12 Max sizes
[04:58:24] [PASSED] NV12 Invalid pitch
[04:58:24] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[04:58:24] [PASSED] NV12 different modifier per-plane
[04:58:24] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[04:58:24] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[04:58:24] [PASSED] NV12 Modifier for inexistent plane
[04:58:24] [PASSED] NV12 Handle for inexistent plane
[04:58:24] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[04:58:24] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[04:58:24] [PASSED] YVU420 Normal sizes
[04:58:24] [PASSED] YVU420 Max sizes
[04:58:24] [PASSED] YVU420 Invalid pitch
[04:58:24] [PASSED] YVU420 Different pitches
[04:58:24] [PASSED] YVU420 Different buffer offsets/pitches
[04:58:24] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[04:58:24] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[04:58:24] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[04:58:24] [PASSED] YVU420 Valid modifier
[04:58:24] [PASSED] YVU420 Different modifiers per plane
[04:58:24] [PASSED] YVU420 Modifier for inexistent plane
[04:58:24] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[04:58:24] [PASSED] X0L2 Normal sizes
[04:58:24] [PASSED] X0L2 Max sizes
[04:58:24] [PASSED] X0L2 Invalid pitch
[04:58:24] [PASSED] X0L2 Pitch greater than minimum required
[04:58:24] [PASSED] X0L2 Handle for inexistent plane
[04:58:24] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[04:58:24] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[04:58:24] [PASSED] X0L2 Valid modifier
[04:58:24] [PASSED] X0L2 Modifier for inexistent plane
[04:58:24] =========== [PASSED] drm_test_framebuffer_create ===========
[04:58:24] [PASSED] drm_test_framebuffer_free
[04:58:24] [PASSED] drm_test_framebuffer_init
[04:58:24] [PASSED] drm_test_framebuffer_init_bad_format
[04:58:24] [PASSED] drm_test_framebuffer_init_dev_mismatch
[04:58:24] [PASSED] drm_test_framebuffer_lookup
[04:58:24] [PASSED] drm_test_framebuffer_lookup_inexistent
[04:58:24] [PASSED] drm_test_framebuffer_modifiers_not_supported
[04:58:24] ================= [PASSED] drm_framebuffer =================
[04:58:24] ================ drm_gem_shmem (8 subtests) ================
[04:58:24] [PASSED] drm_gem_shmem_test_obj_create
[04:58:24] [PASSED] drm_gem_shmem_test_obj_create_private
[04:58:24] [PASSED] drm_gem_shmem_test_pin_pages
[04:58:24] [PASSED] drm_gem_shmem_test_vmap
[04:58:24] [PASSED] drm_gem_shmem_test_get_sg_table
[04:58:24] [PASSED] drm_gem_shmem_test_get_pages_sgt
[04:58:24] [PASSED] drm_gem_shmem_test_madvise
[04:58:24] [PASSED] drm_gem_shmem_test_purge
[04:58:24] ================== [PASSED] drm_gem_shmem ==================
[04:58:24] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[04:58:24] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[04:58:24] [PASSED] Automatic
[04:58:24] [PASSED] Full
[04:58:24] [PASSED] Limited 16:235
[04:58:24] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[04:58:24] [PASSED] drm_test_check_disable_connector
[04:58:24] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[04:58:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[04:58:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[04:58:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[04:58:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[04:58:24] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[04:58:24] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[04:58:24] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[04:58:24] [PASSED] drm_test_check_output_bpc_dvi
[04:58:24] [PASSED] drm_test_check_output_bpc_format_vic_1
[04:58:24] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[04:58:24] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[04:58:24] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[04:58:24] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[04:58:24] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[04:58:24] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[04:58:24] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[04:58:24] ============ drm_test_check_hdmi_color_format =============
[04:58:24] [PASSED] AUTO -> RGB
[04:58:24] [PASSED] YCBCR422 -> YUV422
[04:58:24] [PASSED] YCBCR420 -> YUV420
[04:58:24] [PASSED] YCBCR444 -> YUV444
[04:58:24] [PASSED] RGB -> RGB
[04:58:24] ======== [PASSED] drm_test_check_hdmi_color_format =========
[04:58:24] ======== drm_test_check_hdmi_color_format_420_only ========
[04:58:24] [PASSED] RGB should fail
[04:58:24] [PASSED] YUV444 should fail
[04:58:24] [PASSED] YUV422 should fail
[04:58:24] [PASSED] YUV420 should work
[04:58:24] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[04:58:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[04:58:24] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[04:58:24] [PASSED] drm_test_check_broadcast_rgb_value
[04:58:24] [PASSED] drm_test_check_bpc_8_value
[04:58:24] [PASSED] drm_test_check_bpc_10_value
[04:58:24] [PASSED] drm_test_check_bpc_12_value
[04:58:24] [PASSED] drm_test_check_format_value
[04:58:24] [PASSED] drm_test_check_tmds_char_value
[04:58:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[04:58:24] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[04:58:24] [PASSED] drm_test_check_mode_valid
[04:58:24] [PASSED] drm_test_check_mode_valid_reject
[04:58:24] [PASSED] drm_test_check_mode_valid_reject_rate
[04:58:24] [PASSED] drm_test_check_mode_valid_reject_max_clock
[04:58:24] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[04:58:24] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[04:58:24] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[04:58:24] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[04:58:24] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[04:58:24] [PASSED] drm_test_check_infoframes
[04:58:24] [PASSED] drm_test_check_reject_avi_infoframe
[04:58:24] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[04:58:24] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[04:58:24] [PASSED] drm_test_check_reject_audio_infoframe
[04:58:24] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[04:58:24] ================= drm_managed (2 subtests) =================
[04:58:24] [PASSED] drm_test_managed_release_action
[04:58:24] [PASSED] drm_test_managed_run_action
[04:58:24] =================== [PASSED] drm_managed ===================
[04:58:24] =================== drm_mm (6 subtests) ====================
[04:58:24] [PASSED] drm_test_mm_init
[04:58:24] [PASSED] drm_test_mm_debug
[04:58:24] [PASSED] drm_test_mm_align32
[04:58:24] [PASSED] drm_test_mm_align64
[04:58:24] [PASSED] drm_test_mm_lowest
[04:58:24] [PASSED] drm_test_mm_highest
[04:58:24] ===================== [PASSED] drm_mm ======================
[04:58:24] ============= drm_modes_analog_tv (5 subtests) =============
[04:58:24] [PASSED] drm_test_modes_analog_tv_mono_576i
[04:58:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[04:58:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[04:58:24] [PASSED] drm_test_modes_analog_tv_pal_576i
[04:58:24] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[04:58:24] =============== [PASSED] drm_modes_analog_tv ===============
[04:58:24] ============== drm_plane_helper (2 subtests) ===============
[04:58:24] =============== drm_test_check_plane_state ================
[04:58:24] [PASSED] clipping_simple
[04:58:24] [PASSED] clipping_rotate_reflect
[04:58:24] [PASSED] positioning_simple
[04:58:24] [PASSED] upscaling
[04:58:24] [PASSED] downscaling
[04:58:24] [PASSED] rounding1
[04:58:24] [PASSED] rounding2
[04:58:24] [PASSED] rounding3
[04:58:24] [PASSED] rounding4
[04:58:24] =========== [PASSED] drm_test_check_plane_state ============
[04:58:24] =========== drm_test_check_invalid_plane_state ============
[04:58:24] [PASSED] positioning_invalid
[04:58:24] [PASSED] upscaling_invalid
[04:58:24] [PASSED] downscaling_invalid
[04:58:24] ======= [PASSED] drm_test_check_invalid_plane_state ========
[04:58:24] ================ [PASSED] drm_plane_helper =================
[04:58:24] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[04:58:24] ====== drm_test_connector_helper_tv_get_modes_check =======
[04:58:24] [PASSED] None
[04:58:24] [PASSED] PAL
[04:58:24] [PASSED] NTSC
[04:58:24] [PASSED] Both, NTSC Default
[04:58:24] [PASSED] Both, PAL Default
[04:58:24] [PASSED] Both, NTSC Default, with PAL on command-line
[04:58:24] [PASSED] Both, PAL Default, with NTSC on command-line
[04:58:24] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[04:58:24] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[04:58:24] ================== drm_rect (9 subtests) ===================
[04:58:24] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[04:58:24] [PASSED] drm_test_rect_clip_scaled_not_clipped
[04:58:24] [PASSED] drm_test_rect_clip_scaled_clipped
[04:58:24] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[04:58:24] ================= drm_test_rect_intersect =================
[04:58:24] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[04:58:24] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[04:58:24] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[04:58:24] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[04:58:24] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[04:58:24] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[04:58:24] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[04:58:24] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[04:58:24] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[04:58:24] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[04:58:24] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[04:58:24] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[04:58:24] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[04:58:24] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[04:58:24] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[04:58:24] ============= [PASSED] drm_test_rect_intersect =============
[04:58:24] ================ drm_test_rect_calc_hscale ================
[04:58:24] [PASSED] normal use
[04:58:24] [PASSED] out of max range
[04:58:24] [PASSED] out of min range
[04:58:24] [PASSED] zero dst
[04:58:24] [PASSED] negative src
[04:58:24] [PASSED] negative dst
[04:58:24] ============ [PASSED] drm_test_rect_calc_hscale ============
[04:58:24] ================ drm_test_rect_calc_vscale ================
[04:58:24] [PASSED] normal use
[04:58:24] [PASSED] out of max range
[04:58:24] [PASSED] out of min range
[04:58:24] [PASSED] zero dst
[04:58:24] [PASSED] negative src
[04:58:24] [PASSED] negative dst
[04:58:24] ============ [PASSED] drm_test_rect_calc_vscale ============
[04:58:24] ================== drm_test_rect_rotate ===================
[04:58:24] [PASSED] reflect-x
[04:58:24] [PASSED] reflect-y
[04:58:24] [PASSED] rotate-0
[04:58:24] [PASSED] rotate-90
[04:58:24] [PASSED] rotate-180
[04:58:24] [PASSED] rotate-270
[04:58:24] ============== [PASSED] drm_test_rect_rotate ===============
[04:58:24] ================ drm_test_rect_rotate_inv =================
[04:58:24] [PASSED] reflect-x
[04:58:24] [PASSED] reflect-y
[04:58:24] [PASSED] rotate-0
[04:58:24] [PASSED] rotate-90
[04:58:24] [PASSED] rotate-180
[04:58:24] [PASSED] rotate-270
[04:58:24] ============ [PASSED] drm_test_rect_rotate_inv =============
[04:58:24] ==================== [PASSED] drm_rect =====================
[04:58:24] ============ drm_sysfb_modeset_test (1 subtest) ============
[04:58:24] ============ drm_test_sysfb_build_fourcc_list =============
[04:58:24] [PASSED] no native formats
[04:58:24] [PASSED] XRGB8888 as native format
[04:58:24] [PASSED] remove duplicates
[04:58:24] [PASSED] convert alpha formats
[04:58:24] [PASSED] random formats
[04:58:24] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[04:58:24] ============= [PASSED] drm_sysfb_modeset_test ==============
[04:58:24] ================== drm_fixp (2 subtests) ===================
[04:58:24] [PASSED] drm_test_int2fixp
[04:58:24] [PASSED] drm_test_sm2fixp
[04:58:24] ==================== [PASSED] drm_fixp =====================
[04:58:24] ============================================================
[04:58:24] Testing complete. Ran 637 tests: passed: 637
[04:58:24] Elapsed time: 27.347s total, 1.837s configuring, 25.343s building, 0.147s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[04:58:25] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:58: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
[04:58:36] Starting KUnit Kernel (1/1)...
[04:58:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:58:36] ================= ttm_device (5 subtests) ==================
[04:58:36] [PASSED] ttm_device_init_basic
[04:58:36] [PASSED] ttm_device_init_multiple
[04:58:36] [PASSED] ttm_device_fini_basic
[04:58:36] [PASSED] ttm_device_init_no_vma_man
[04:58:36] ================== ttm_device_init_pools ==================
[04:58:36] [PASSED] No DMA allocations, no DMA32 required
[04:58:36] [PASSED] DMA allocations, DMA32 required
[04:58:36] [PASSED] No DMA allocations, DMA32 required
[04:58:36] [PASSED] DMA allocations, no DMA32 required
[04:58:36] ============== [PASSED] ttm_device_init_pools ==============
[04:58:36] =================== [PASSED] ttm_device ====================
[04:58:36] ================== ttm_pool (8 subtests) ===================
[04:58:36] ================== ttm_pool_alloc_basic ===================
[04:58:36] [PASSED] One page
[04:58:36] [PASSED] More than one page
[04:58:36] [PASSED] Above the allocation limit
[04:58:36] [PASSED] One page, with coherent DMA mappings enabled
[04:58:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:58:36] ============== [PASSED] ttm_pool_alloc_basic ===============
[04:58:36] ============== ttm_pool_alloc_basic_dma_addr ==============
[04:58:36] [PASSED] One page
[04:58:36] [PASSED] More than one page
[04:58:36] [PASSED] Above the allocation limit
[04:58:36] [PASSED] One page, with coherent DMA mappings enabled
[04:58:36] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:58:36] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[04:58:36] [PASSED] ttm_pool_alloc_order_caching_match
[04:58:36] [PASSED] ttm_pool_alloc_caching_mismatch
[04:58:36] [PASSED] ttm_pool_alloc_order_mismatch
[04:58:36] [PASSED] ttm_pool_free_dma_alloc
[04:58:36] [PASSED] ttm_pool_free_no_dma_alloc
[04:58:36] [PASSED] ttm_pool_fini_basic
[04:58:36] ==================== [PASSED] ttm_pool =====================
[04:58:36] ================ ttm_resource (8 subtests) =================
[04:58:36] ================= ttm_resource_init_basic =================
[04:58:36] [PASSED] Init resource in TTM_PL_SYSTEM
[04:58:36] [PASSED] Init resource in TTM_PL_VRAM
[04:58:36] [PASSED] Init resource in a private placement
[04:58:36] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[04:58:36] ============= [PASSED] ttm_resource_init_basic =============
[04:58:36] [PASSED] ttm_resource_init_pinned
[04:58:36] [PASSED] ttm_resource_fini_basic
[04:58:36] [PASSED] ttm_resource_manager_init_basic
[04:58:36] [PASSED] ttm_resource_manager_usage_basic
[04:58:36] [PASSED] ttm_resource_manager_set_used_basic
[04:58:36] [PASSED] ttm_sys_man_alloc_basic
[04:58:36] [PASSED] ttm_sys_man_free_basic
[04:58:36] ================== [PASSED] ttm_resource ===================
[04:58:36] =================== ttm_tt (15 subtests) ===================
[04:58:36] ==================== ttm_tt_init_basic ====================
[04:58:36] [PASSED] Page-aligned size
[04:58:36] [PASSED] Extra pages requested
[04:58:36] ================ [PASSED] ttm_tt_init_basic ================
[04:58:36] [PASSED] ttm_tt_init_misaligned
[04:58:36] [PASSED] ttm_tt_fini_basic
[04:58:36] [PASSED] ttm_tt_fini_sg
[04:58:36] [PASSED] ttm_tt_fini_shmem
[04:58:36] [PASSED] ttm_tt_create_basic
[04:58:36] [PASSED] ttm_tt_create_invalid_bo_type
[04:58:36] [PASSED] ttm_tt_create_ttm_exists
[04:58:36] [PASSED] ttm_tt_create_failed
[04:58:36] [PASSED] ttm_tt_destroy_basic
[04:58:36] [PASSED] ttm_tt_populate_null_ttm
[04:58:36] [PASSED] ttm_tt_populate_populated_ttm
[04:58:36] [PASSED] ttm_tt_unpopulate_basic
[04:58:36] [PASSED] ttm_tt_unpopulate_empty_ttm
[04:58:36] [PASSED] ttm_tt_swapin_basic
[04:58:36] ===================== [PASSED] ttm_tt ======================
[04:58:36] =================== ttm_bo (14 subtests) ===================
[04:58:36] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[04:58:36] [PASSED] Cannot be interrupted and sleeps
[04:58:36] [PASSED] Cannot be interrupted, locks straight away
[04:58:36] [PASSED] Can be interrupted, sleeps
[04:58:36] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[04:58:36] [PASSED] ttm_bo_reserve_locked_no_sleep
[04:58:36] [PASSED] ttm_bo_reserve_no_wait_ticket
[04:58:36] [PASSED] ttm_bo_reserve_double_resv
[04:58:36] [PASSED] ttm_bo_reserve_interrupted
[04:58:36] [PASSED] ttm_bo_reserve_deadlock
[04:58:36] [PASSED] ttm_bo_unreserve_basic
[04:58:36] [PASSED] ttm_bo_unreserve_pinned
[04:58:36] [PASSED] ttm_bo_unreserve_bulk
[04:58:36] [PASSED] ttm_bo_fini_basic
[04:58:36] [PASSED] ttm_bo_fini_shared_resv
[04:58:36] [PASSED] ttm_bo_pin_basic
[04:58:36] [PASSED] ttm_bo_pin_unpin_resource
[04:58:36] [PASSED] ttm_bo_multiple_pin_one_unpin
[04:58:36] ===================== [PASSED] ttm_bo ======================
[04:58:36] ============== ttm_bo_validate (22 subtests) ===============
[04:58:36] ============== ttm_bo_init_reserved_sys_man ===============
[04:58:36] [PASSED] Buffer object for userspace
[04:58:36] [PASSED] Kernel buffer object
[04:58:36] [PASSED] Shared buffer object
[04:58:36] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[04:58:36] ============== ttm_bo_init_reserved_mock_man ==============
[04:58:36] [PASSED] Buffer object for userspace
[04:58:36] [PASSED] Kernel buffer object
[04:58:36] [PASSED] Shared buffer object
[04:58:36] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[04:58:36] [PASSED] ttm_bo_init_reserved_resv
[04:58:36] ================== ttm_bo_validate_basic ==================
[04:58:36] [PASSED] Buffer object for userspace
[04:58:36] [PASSED] Kernel buffer object
[04:58:36] [PASSED] Shared buffer object
[04:58:36] ============== [PASSED] ttm_bo_validate_basic ==============
[04:58:36] [PASSED] ttm_bo_validate_invalid_placement
[04:58:36] ============= ttm_bo_validate_same_placement ==============
[04:58:36] [PASSED] System manager
[04:58:36] [PASSED] VRAM manager
[04:58:36] ========= [PASSED] ttm_bo_validate_same_placement ==========
[04:58:36] [PASSED] ttm_bo_validate_failed_alloc
[04:58:36] [PASSED] ttm_bo_validate_pinned
[04:58:36] [PASSED] ttm_bo_validate_busy_placement
[04:58:36] ================ ttm_bo_validate_multihop =================
[04:58:36] [PASSED] Buffer object for userspace
[04:58:36] [PASSED] Kernel buffer object
[04:58:36] [PASSED] Shared buffer object
[04:58:36] ============ [PASSED] ttm_bo_validate_multihop =============
[04:58:36] ========== ttm_bo_validate_no_placement_signaled ==========
[04:58:36] [PASSED] Buffer object in system domain, no page vector
[04:58:36] [PASSED] Buffer object in system domain with an existing page vector
[04:58:36] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[04:58:36] ======== ttm_bo_validate_no_placement_not_signaled ========
[04:58:36] [PASSED] Buffer object for userspace
[04:58:36] [PASSED] Kernel buffer object
[04:58:36] [PASSED] Shared buffer object
[04:58:36] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[04:58:36] [PASSED] ttm_bo_validate_move_fence_signaled
[04:58:36] ========= ttm_bo_validate_move_fence_not_signaled =========
[04:58:36] [PASSED] Waits for GPU
[04:58:36] [PASSED] Tries to lock straight away
[04:58:36] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[04:58:36] [PASSED] ttm_bo_validate_swapout
[04:58:36] [PASSED] ttm_bo_validate_happy_evict
[04:58:36] [PASSED] ttm_bo_validate_all_pinned_evict
[04:58:36] [PASSED] ttm_bo_validate_allowed_only_evict
[04:58:36] [PASSED] ttm_bo_validate_deleted_evict
[04:58:36] [PASSED] ttm_bo_validate_busy_domain_evict
[04:58:36] [PASSED] ttm_bo_validate_evict_gutting
[04:58:36] [PASSED] ttm_bo_validate_recrusive_evict
[04:58:36] ================= [PASSED] ttm_bo_validate =================
[04:58:36] ============================================================
[04:58:36] Testing complete. Ran 102 tests: passed: 102
[04:58:36] Elapsed time: 11.854s total, 1.818s configuring, 9.821s building, 0.179s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/dma-buf/.kunitconfig
[04:58:37] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:58:38] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[04:58:47] Starting KUnit Kernel (1/1)...
[04:58:47] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:58:47] =============== dma-buf-fence (12 subtests) ================
[04:58:47] [PASSED] test_sanitycheck
[04:58:47] [PASSED] test_signaling
[04:58:47] [PASSED] test_add_callback
[04:58:47] [PASSED] test_late_add_callback
[04:58:47] [PASSED] test_rm_callback
[04:58:47] [PASSED] test_late_rm_callback
[04:58:47] [PASSED] test_status
[04:58:47] [PASSED] test_error
[04:58:47] [PASSED] test_wait
[04:58:47] [PASSED] test_wait_timeout
[04:58:47] [PASSED] test_stub
[04:58:47] [SKIPPED] test_race_signal_callback (requires at least 2 CPUs)
[04:58:47] ================== [PASSED] dma-buf-fence ==================
[04:58:47] ============ dma-buf-fence-chain (11 subtests) =============
[04:58:47] [PASSED] test_sanitycheck
[04:58:47] [PASSED] test_find_seqno
[04:58:47] [PASSED] test_find_signaled
[04:58:47] [PASSED] test_find_out_of_order
[04:58:52] [PASSED] test_find_gap
[04:58:52] [PASSED] test_find_race
[04:58:52] [PASSED] test_signal_forward
[04:58:52] [PASSED] test_signal_backward
[04:58:52] [PASSED] test_wait_forward
[04:58:52] [PASSED] test_wait_backward
[04:58:52] [PASSED] test_wait_random
[04:58:52] =============== [PASSED] dma-buf-fence-chain ===============
[04:58:52] ============ dma-buf-fence-unwrap (10 subtests) ============
[04:58:52] [PASSED] test_sanitycheck
[04:58:52] [PASSED] test_unwrap_array
[04:58:52] [PASSED] test_unwrap_chain
[04:58:52] [PASSED] test_unwrap_chain_array
[04:58:52] [PASSED] test_unwrap_merge
[04:58:52] [PASSED] test_unwrap_merge_duplicate
[04:58:52] [PASSED] test_unwrap_merge_seqno
[04:58:52] [PASSED] test_unwrap_merge_order
[04:58:52] [PASSED] test_unwrap_merge_complex
[04:58:52] [PASSED] test_unwrap_merge_complex_seqno
[04:58:52] ============== [PASSED] dma-buf-fence-unwrap ===============
[04:58:52] ================ dma-buf-resv (5 subtests) =================
[04:58:52] [PASSED] test_sanitycheck
[04:58:52] ===================== test_signaling ======================
[04:58:52] [PASSED] kernel
[04:58:52] [PASSED] write
[04:58:52] [PASSED] read
[04:58:52] [PASSED] bookkeep
[04:58:52] ================= [PASSED] test_signaling ==================
[04:58:52] ====================== test_for_each ======================
[04:58:52] [PASSED] kernel
[04:58:52] [PASSED] write
[04:58:52] [PASSED] read
[04:58:52] [PASSED] bookkeep
[04:58:52] ================== [PASSED] test_for_each ==================
[04:58:52] ================= test_for_each_unlocked ==================
[04:58:52] [PASSED] kernel
[04:58:52] [PASSED] write
[04:58:52] [PASSED] read
[04:58:52] [PASSED] bookkeep
[04:58:52] ============= [PASSED] test_for_each_unlocked ==============
[04:58:52] ===================== test_get_fences =====================
[04:58:52] [PASSED] kernel
[04:58:52] [PASSED] write
[04:58:52] [PASSED] read
[04:58:52] [PASSED] bookkeep
[04:58:52] ================= [PASSED] test_get_fences =================
[04:58:52] ================== [PASSED] dma-buf-resv ===================
[04:58:52] ============================================================
[04:58:52] Testing complete. Ran 50 tests: passed: 49, skipped: 1
[04:58:52] Elapsed time: 15.756s total, 1.771s configuring, 8.613s building, 5.355s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 20+ messages in thread* ✓ Xe.CI.BAT: success for Enable joiner cursor fast updates (rev6)
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
` (7 preceding siblings ...)
2026-08-21 4:58 ` ✓ CI.KUnit: success " Patchwork
@ 2026-08-21 5:51 ` Patchwork
2026-08-21 6:40 ` ✗ Xe.CI.FULL: failure " Patchwork
9 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2026-08-21 5:51 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 5787 bytes --]
== Series Details ==
Series: Enable joiner cursor fast updates (rev6)
URL : https://patchwork.freedesktop.org/series/165272/
State : success
== Summary ==
CI Bug Log - changes from xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012_BAT -> xe-pw-165272v6_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-bmg-2
Known issues
------------
Here are the changes found in xe-pw-165272v6_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-nvls-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#8762])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/bat-nvls-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-nvls-1/igt@core_hotunplug@unbind-rebind.html
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2233])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2482]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#8364]) +13 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2229])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#1420] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][12] ([Intel XE#2245] / [Intel XE#7590])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2236] / [Intel XE#7590])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
#### Possible fixes ####
* igt@xe_waitfence@reltime:
- bat-atsm-2: [FAIL][14] ([Intel XE#9002]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/bat-atsm-2/igt@xe_waitfence@reltime.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/bat-atsm-2/igt@xe_waitfence@reltime.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8762]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8762
[Intel XE#9002]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9002
Build changes
-------------
* IGT: IGT_9066 -> IGT_9067
* Linux: xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012 -> xe-pw-165272v6
IGT_9066: 9066
IGT_9067: 9067
xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012: 75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012
xe-pw-165272v6: 165272v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/index.html
[-- Attachment #2: Type: text/html, Size: 6752 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* ✗ Xe.CI.FULL: failure for Enable joiner cursor fast updates (rev6)
2026-08-21 4:47 [PATCH 0/6] Enable joiner cursor fast updates Nemesa Garg
` (8 preceding siblings ...)
2026-08-21 5:51 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-08-21 6:40 ` Patchwork
9 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2026-08-21 6:40 UTC (permalink / raw)
To: Nemesa Garg; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 27743 bytes --]
== Series Details ==
Series: Enable joiner cursor fast updates (rev6)
URL : https://patchwork.freedesktop.org/series/165272/
State : failure
== Summary ==
CI Bug Log - changes from xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012_FULL -> xe-pw-165272v6_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-165272v6_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-165272v6_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-165272v6_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-lnl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback:
- shard-bmg: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-7/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
- shard-lnl: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-4/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
#### Warnings ####
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: [SKIP][5] ([Intel XE#4294] / [Intel XE#7477]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-lnl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
Known issues
------------
Here are the changes found in xe-pw-165272v6_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#8583])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][9] -> [FAIL][10] ([Intel XE#3718] / [Intel XE#6078])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- shard-bmg: [PASS][11] -> [FAIL][12] ([Intel XE#6078])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-dp-2:
- shard-bmg: [PASS][13] -> [INCOMPLETE][14] ([Intel XE#8587]) +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-10/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-dp-2.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-2/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-dp-2.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#7679])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7679])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-1/igt@kms_ccs@bad-pixel-format-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +6 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7358]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#7358])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-9/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14:
- 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-165272v6/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#323] / [Intel XE#6035])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2286] / [Intel XE#6035])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-basic-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#8265]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-10/igt@kms_dsc@dsc-basic-ultrajoiner.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#8680])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#6312] / [Intel XE#651])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2311]) +15 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-spr-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7905])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-5/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4141]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2352] / [Intel XE#7399])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7061] / [Intel XE#7356])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#7865])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-1/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7061]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7061])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +15 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656] / [Intel XE#7905]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4298] / [Intel XE#5873])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-2/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7283])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7283])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#8399])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1489]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4608])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#4608] / [Intel XE#7304])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr@fbc-psr-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-4/igt@kms_psr@fbc-psr-sprite-blt.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1406])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-4/igt@kms_psr@pr-no-drrs.html
* igt@kms_sharpness_filter@filter-tap:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6503])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-6/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][54] ([Intel XE#1729] / [Intel XE#7424])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all:
- shard-bmg: NOTRUN -> [ABORT][55] ([Intel XE#8868]) +1 other test abort
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-4/igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#8374]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-8/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#8364]) +7 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-1/igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem.html
* igt@xe_exec_multi_queue@two-queues-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#8364]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-5/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-bmg: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#8649] / [Intel XE#8652])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-1/igt@xe_exec_reset@gt-reset-stress.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-3/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#8378])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#8378]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6964])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-5/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1420] / [Intel XE#7590])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2284] / [Intel XE#7370])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-9/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: [PASS][67] -> [FAIL][68] ([Intel XE#8555])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance1:
- shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#8555]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance1.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-5/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance1.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [PASS][71] -> [ABORT][72] ([Intel XE#8007])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][73] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][74] +1 other test pass
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][75] ([Intel XE#301]) -> [PASS][76] +3 other tests pass
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [SKIP][77] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-bmg-3/igt@kms_plane_scaling@intel-max-src-size.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-bmg-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][79] ([Intel XE#8399]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-a-edp-1:
- shard-lnl: [INCOMPLETE][81] -> [PASS][82] +1 other test pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-lnl-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-a-edp-1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-a-edp-1.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][83] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][84] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[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#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[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#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#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#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8555
[Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583
[Intel XE#8587]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8587
[Intel XE#8649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8649
[Intel XE#8652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8652
[Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
[Intel XE#8868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8868
Build changes
-------------
* IGT: IGT_9066 -> IGT_9067
* Linux: xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012 -> xe-pw-165272v6
IGT_9066: 9066
IGT_9067: 9067
xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012: 75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012
xe-pw-165272v6: 165272v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165272v6/index.html
[-- Attachment #2: Type: text/html, Size: 30859 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread