* [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups
@ 2025-12-05 10:30 Jani Nikula
2025-12-05 10:30 ` [PATCH v2 1/4] drm/i915/fbc: let to_intel_display() do its generic magic Jani Nikula
` (8 more replies)
0 siblings, 9 replies; 14+ messages in thread
From: Jani Nikula @ 2025-12-05 10:30 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
v2 of [1], converting one more call that had appeared in the mean time.
[1] https://lore.kernel.org/r/cover.1764868989.git.jani.nikula@intel.com
Jani Nikula (4):
drm/i915/fbc: let to_intel_display() do its generic magic
drm/xe/stolen: unify interface with i915
drm/{i915,xe}/stolen: move stolen memory handling to display parent
interface
drm/{i915,xe}/stolen: make insert_node, area_address, area_size
optional
drivers/gpu/drm/i915/display/intel_fbc.c | 105 +++++++++---------
drivers/gpu/drm/i915/display/intel_parent.c | 76 +++++++++++++
drivers/gpu/drm/i915/display/intel_parent.h | 19 ++++
drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 52 ++++++---
drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 23 +---
drivers/gpu/drm/i915/i915_driver.c | 1 +
.../compat-i915-headers/gem/i915_gem_stolen.h | 40 -------
drivers/gpu/drm/xe/display/xe_display.c | 4 +-
drivers/gpu/drm/xe/display/xe_stolen.c | 62 +++++------
drivers/gpu/drm/xe/display/xe_stolen.h | 9 ++
include/drm/intel/display_parent_interface.h | 20 ++++
11 files changed, 243 insertions(+), 168 deletions(-)
delete mode 100644 drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h
create mode 100644 drivers/gpu/drm/xe/display/xe_stolen.h
--
2.47.3
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH v2 1/4] drm/i915/fbc: let to_intel_display() do its generic magic 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula @ 2025-12-05 10:30 ` Jani Nikula 2025-12-09 13:25 ` Govindapillai, Vinod 2025-12-05 10:30 ` [PATCH v2 2/4] drm/xe/stolen: unify interface with i915 Jani Nikula ` (7 subsequent siblings) 8 siblings, 1 reply; 14+ messages in thread From: Jani Nikula @ 2025-12-05 10:30 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula to_intel_display() generics can handle struct intel_plane_state, struct intel_atomic_state, and struct intel_crtc just fine. Pass them directly. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_fbc.c | 34 ++++++++++++------------ 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c index 155b308ed66f..0e946bed484f 100644 --- a/drivers/gpu/drm/i915/display/intel_fbc.c +++ b/drivers/gpu/drm/i915/display/intel_fbc.c @@ -217,7 +217,7 @@ static unsigned int _intel_fbc_cfb_stride(struct intel_display *display, static unsigned int intel_fbc_cfb_stride(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); unsigned int stride = intel_fbc_plane_cfb_stride(plane_state); unsigned int width = drm_rect_width(&plane_state->uapi.src) >> 16; unsigned int cpp = intel_fbc_cfb_cpp(plane_state); @@ -248,7 +248,7 @@ static unsigned int _intel_fbc_cfb_size(struct intel_display *display, static unsigned int intel_fbc_cfb_size(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); unsigned int height = drm_rect_height(&plane_state->uapi.src) >> 16; return _intel_fbc_cfb_size(display, height, intel_fbc_cfb_stride(plane_state)); @@ -256,7 +256,7 @@ static unsigned int intel_fbc_cfb_size(const struct intel_plane_state *plane_sta static u16 intel_fbc_override_cfb_stride(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); unsigned int stride_aligned = intel_fbc_cfb_stride(plane_state); unsigned int stride = intel_fbc_plane_cfb_stride(plane_state); const struct drm_framebuffer *fb = plane_state->hw.fb; @@ -1098,7 +1098,7 @@ static bool icl_fbc_stride_is_valid(const struct intel_plane_state *plane_state) static bool stride_is_valid(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); if (DISPLAY_VER(display) >= 11) return icl_fbc_stride_is_valid(plane_state); @@ -1114,7 +1114,7 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state) static bool i8xx_fbc_pixel_format_is_valid(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); const struct drm_framebuffer *fb = plane_state->hw.fb; switch (fb->format->format) { @@ -1134,7 +1134,7 @@ static bool i8xx_fbc_pixel_format_is_valid(const struct intel_plane_state *plane static bool g4x_fbc_pixel_format_is_valid(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); const struct drm_framebuffer *fb = plane_state->hw.fb; switch (fb->format->format) { @@ -1213,7 +1213,7 @@ intel_fbc_is_enable_pixel_normalizer(const struct intel_plane_state *plane_state static bool pixel_format_is_valid(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); if (DISPLAY_VER(display) >= 35) return xe3p_lpd_fbc_pixel_format_is_valid(plane_state); @@ -1249,7 +1249,7 @@ static bool skl_fbc_rotation_is_valid(const struct intel_plane_state *plane_stat static bool rotation_is_valid(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); if (DISPLAY_VER(display) >= 9) return skl_fbc_rotation_is_valid(plane_state); @@ -1288,7 +1288,7 @@ static void intel_fbc_max_surface_size(struct intel_display *display, */ static bool intel_fbc_surface_size_ok(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); unsigned int effective_w, effective_h, max_w, max_h; intel_fbc_max_surface_size(display, &max_w, &max_h); @@ -1321,7 +1321,7 @@ static void intel_fbc_max_plane_size(struct intel_display *display, static bool intel_fbc_plane_size_valid(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); unsigned int w, h, max_w, max_h; intel_fbc_max_plane_size(display, &max_w, &max_h); @@ -1346,7 +1346,7 @@ static bool skl_fbc_tiling_valid(const struct intel_plane_state *plane_state) static bool tiling_is_valid(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); if (DISPLAY_VER(display) >= 9) return skl_fbc_tiling_valid(plane_state); @@ -1426,7 +1426,7 @@ static void intel_fbc_update_state(struct intel_atomic_state *state, struct intel_crtc *crtc, struct intel_plane *plane) { - struct intel_display *display = to_intel_display(state->base.dev); + struct intel_display *display = to_intel_display(state); const struct intel_crtc_state *crtc_state = intel_atomic_get_new_crtc_state(state, crtc); const struct intel_plane_state *plane_state = @@ -1459,7 +1459,7 @@ static void intel_fbc_update_state(struct intel_atomic_state *state, static bool intel_fbc_is_fence_ok(const struct intel_plane_state *plane_state) { - struct intel_display *display = to_intel_display(plane_state->uapi.plane->dev); + struct intel_display *display = to_intel_display(plane_state); /* * The use of a CPU fence is one of two ways to detect writes by the @@ -1566,7 +1566,7 @@ static int _intel_fbc_min_cdclk(const struct intel_crtc_state *crtc_state) static int intel_fbc_check_plane(struct intel_atomic_state *state, struct intel_plane *plane) { - struct intel_display *display = to_intel_display(state->base.dev); + struct intel_display *display = to_intel_display(state); struct intel_plane_state *plane_state = intel_atomic_get_new_plane_state(state, plane); const struct drm_framebuffer *fb = plane_state->hw.fb; @@ -1793,7 +1793,7 @@ static bool __intel_fbc_pre_update(struct intel_atomic_state *state, struct intel_crtc *crtc, struct intel_plane *plane) { - struct intel_display *display = to_intel_display(state->base.dev); + struct intel_display *display = to_intel_display(state); struct intel_fbc *fbc = plane->fbc; bool need_vblank_wait = false; @@ -2008,7 +2008,7 @@ static void __intel_fbc_enable(struct intel_atomic_state *state, struct intel_crtc *crtc, struct intel_plane *plane) { - struct intel_display *display = to_intel_display(state->base.dev); + struct intel_display *display = to_intel_display(state); const struct intel_plane_state *plane_state = intel_atomic_get_new_plane_state(state, plane); struct intel_fbc *fbc = plane->fbc; @@ -2072,7 +2072,7 @@ static void __intel_fbc_enable(struct intel_atomic_state *state, */ void intel_fbc_disable(struct intel_crtc *crtc) { - struct intel_display *display = to_intel_display(crtc->base.dev); + struct intel_display *display = to_intel_display(crtc); struct intel_plane *plane; for_each_intel_plane(display->drm, plane) { -- 2.47.3 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH v2 1/4] drm/i915/fbc: let to_intel_display() do its generic magic 2025-12-05 10:30 ` [PATCH v2 1/4] drm/i915/fbc: let to_intel_display() do its generic magic Jani Nikula @ 2025-12-09 13:25 ` Govindapillai, Vinod 0 siblings, 0 replies; 14+ messages in thread From: Govindapillai, Vinod @ 2025-12-09 13:25 UTC (permalink / raw) To: intel-xe@lists.freedesktop.org, Nikula, Jani, intel-gfx@lists.freedesktop.org On Fri, 2025-12-05 at 12:30 +0200, Jani Nikula wrote: > to_intel_display() generics can handle struct intel_plane_state, > struct > intel_atomic_state, and struct intel_crtc just fine. Pass them > directly. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_fbc.c | 34 ++++++++++++---------- > -- > 1 file changed, 17 insertions(+), 17 deletions(-) > Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c > b/drivers/gpu/drm/i915/display/intel_fbc.c > index 155b308ed66f..0e946bed484f 100644 > --- a/drivers/gpu/drm/i915/display/intel_fbc.c > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c > @@ -217,7 +217,7 @@ static unsigned int _intel_fbc_cfb_stride(struct > intel_display *display, > > static unsigned int intel_fbc_cfb_stride(const struct > intel_plane_state *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > unsigned int stride = > intel_fbc_plane_cfb_stride(plane_state); > unsigned int width = drm_rect_width(&plane_state->uapi.src) > >> 16; > unsigned int cpp = intel_fbc_cfb_cpp(plane_state); > @@ -248,7 +248,7 @@ static unsigned int _intel_fbc_cfb_size(struct > intel_display *display, > > static unsigned int intel_fbc_cfb_size(const struct > intel_plane_state *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > unsigned int height = drm_rect_height(&plane_state- > >uapi.src) >> 16; > > return _intel_fbc_cfb_size(display, height, > intel_fbc_cfb_stride(plane_state)); > @@ -256,7 +256,7 @@ static unsigned int intel_fbc_cfb_size(const > struct intel_plane_state *plane_sta > > static u16 intel_fbc_override_cfb_stride(const struct > intel_plane_state *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > unsigned int stride_aligned = > intel_fbc_cfb_stride(plane_state); > unsigned int stride = > intel_fbc_plane_cfb_stride(plane_state); > const struct drm_framebuffer *fb = plane_state->hw.fb; > @@ -1098,7 +1098,7 @@ static bool icl_fbc_stride_is_valid(const > struct intel_plane_state *plane_state) > > static bool stride_is_valid(const struct intel_plane_state > *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > > if (DISPLAY_VER(display) >= 11) > return icl_fbc_stride_is_valid(plane_state); > @@ -1114,7 +1114,7 @@ static bool stride_is_valid(const struct > intel_plane_state *plane_state) > > static bool i8xx_fbc_pixel_format_is_valid(const struct > intel_plane_state *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > const struct drm_framebuffer *fb = plane_state->hw.fb; > > switch (fb->format->format) { > @@ -1134,7 +1134,7 @@ static bool > i8xx_fbc_pixel_format_is_valid(const struct intel_plane_state *plane > > static bool g4x_fbc_pixel_format_is_valid(const struct > intel_plane_state *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > const struct drm_framebuffer *fb = plane_state->hw.fb; > > switch (fb->format->format) { > @@ -1213,7 +1213,7 @@ intel_fbc_is_enable_pixel_normalizer(const > struct intel_plane_state *plane_state > > static bool pixel_format_is_valid(const struct intel_plane_state > *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > > if (DISPLAY_VER(display) >= 35) > return > xe3p_lpd_fbc_pixel_format_is_valid(plane_state); > @@ -1249,7 +1249,7 @@ static bool skl_fbc_rotation_is_valid(const > struct intel_plane_state *plane_stat > > static bool rotation_is_valid(const struct intel_plane_state > *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > > if (DISPLAY_VER(display) >= 9) > return skl_fbc_rotation_is_valid(plane_state); > @@ -1288,7 +1288,7 @@ static void intel_fbc_max_surface_size(struct > intel_display *display, > */ > static bool intel_fbc_surface_size_ok(const struct intel_plane_state > *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > unsigned int effective_w, effective_h, max_w, max_h; > > intel_fbc_max_surface_size(display, &max_w, &max_h); > @@ -1321,7 +1321,7 @@ static void intel_fbc_max_plane_size(struct > intel_display *display, > > static bool intel_fbc_plane_size_valid(const struct > intel_plane_state *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > unsigned int w, h, max_w, max_h; > > intel_fbc_max_plane_size(display, &max_w, &max_h); > @@ -1346,7 +1346,7 @@ static bool skl_fbc_tiling_valid(const struct > intel_plane_state *plane_state) > > static bool tiling_is_valid(const struct intel_plane_state > *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > > if (DISPLAY_VER(display) >= 9) > return skl_fbc_tiling_valid(plane_state); > @@ -1426,7 +1426,7 @@ static void intel_fbc_update_state(struct > intel_atomic_state *state, > struct intel_crtc *crtc, > struct intel_plane *plane) > { > - struct intel_display *display = to_intel_display(state- > >base.dev); > + struct intel_display *display = to_intel_display(state); > const struct intel_crtc_state *crtc_state = > intel_atomic_get_new_crtc_state(state, crtc); > const struct intel_plane_state *plane_state = > @@ -1459,7 +1459,7 @@ static void intel_fbc_update_state(struct > intel_atomic_state *state, > > static bool intel_fbc_is_fence_ok(const struct intel_plane_state > *plane_state) > { > - struct intel_display *display = > to_intel_display(plane_state->uapi.plane->dev); > + struct intel_display *display = > to_intel_display(plane_state); > > /* > * The use of a CPU fence is one of two ways to detect > writes by the > @@ -1566,7 +1566,7 @@ static int _intel_fbc_min_cdclk(const struct > intel_crtc_state *crtc_state) > static int intel_fbc_check_plane(struct intel_atomic_state *state, > struct intel_plane *plane) > { > - struct intel_display *display = to_intel_display(state- > >base.dev); > + struct intel_display *display = to_intel_display(state); > struct intel_plane_state *plane_state = > intel_atomic_get_new_plane_state(state, plane); > const struct drm_framebuffer *fb = plane_state->hw.fb; > @@ -1793,7 +1793,7 @@ static bool __intel_fbc_pre_update(struct > intel_atomic_state *state, > struct intel_crtc *crtc, > struct intel_plane *plane) > { > - struct intel_display *display = to_intel_display(state- > >base.dev); > + struct intel_display *display = to_intel_display(state); > struct intel_fbc *fbc = plane->fbc; > bool need_vblank_wait = false; > > @@ -2008,7 +2008,7 @@ static void __intel_fbc_enable(struct > intel_atomic_state *state, > struct intel_crtc *crtc, > struct intel_plane *plane) > { > - struct intel_display *display = to_intel_display(state- > >base.dev); > + struct intel_display *display = to_intel_display(state); > const struct intel_plane_state *plane_state = > intel_atomic_get_new_plane_state(state, plane); > struct intel_fbc *fbc = plane->fbc; > @@ -2072,7 +2072,7 @@ static void __intel_fbc_enable(struct > intel_atomic_state *state, > */ > void intel_fbc_disable(struct intel_crtc *crtc) > { > - struct intel_display *display = to_intel_display(crtc- > >base.dev); > + struct intel_display *display = to_intel_display(crtc); > struct intel_plane *plane; > > for_each_intel_plane(display->drm, plane) { ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 2/4] drm/xe/stolen: unify interface with i915 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula 2025-12-05 10:30 ` [PATCH v2 1/4] drm/i915/fbc: let to_intel_display() do its generic magic Jani Nikula @ 2025-12-05 10:30 ` Jani Nikula 2025-12-09 13:34 ` Govindapillai, Vinod 2025-12-05 10:30 ` [PATCH v2 3/4] drm/{i915, xe}/stolen: move stolen memory handling to display parent interface Jani Nikula ` (6 subsequent siblings) 8 siblings, 1 reply; 14+ messages in thread From: Jani Nikula @ 2025-12-05 10:30 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula Have i915_gem_stolen_node_offset() return u64, and pass const pointer to them. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h | 4 ++-- drivers/gpu/drm/xe/display/xe_stolen.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h index 48e3256ba37e..368045a470d1 100644 --- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h +++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h @@ -23,13 +23,13 @@ bool i915_gem_stolen_initialized(struct drm_device *drm); bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node); -u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node); +u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node); u64 i915_gem_stolen_area_address(struct drm_device *drm); u64 i915_gem_stolen_area_size(struct drm_device *drm); -u64 i915_gem_stolen_node_address(struct intel_stolen_node *node); +u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node); u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node); diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c index 9f04ba36e930..387506586288 100644 --- a/drivers/gpu/drm/xe/display/xe_stolen.c +++ b/drivers/gpu/drm/xe/display/xe_stolen.c @@ -67,7 +67,7 @@ bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node) return node->bo; } -u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node) +u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node) { struct xe_res_cursor res; @@ -91,7 +91,7 @@ u64 i915_gem_stolen_area_size(struct drm_device *drm) return 0; } -u64 i915_gem_stolen_node_address(struct intel_stolen_node *node) +u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node) { struct xe_device *xe = node->xe; -- 2.47.3 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH v2 2/4] drm/xe/stolen: unify interface with i915 2025-12-05 10:30 ` [PATCH v2 2/4] drm/xe/stolen: unify interface with i915 Jani Nikula @ 2025-12-09 13:34 ` Govindapillai, Vinod 0 siblings, 0 replies; 14+ messages in thread From: Govindapillai, Vinod @ 2025-12-09 13:34 UTC (permalink / raw) To: intel-xe@lists.freedesktop.org, Nikula, Jani, intel-gfx@lists.freedesktop.org On Fri, 2025-12-05 at 12:30 +0200, Jani Nikula wrote: > Have i915_gem_stolen_node_offset() return u64, and pass const pointer > to > them. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h | 4 ++- > - > drivers/gpu/drm/xe/display/xe_stolen.c | 4 ++- > - > 2 files changed, 4 insertions(+), 4 deletions(-) Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > > diff --git a/drivers/gpu/drm/xe/compat-i915- > headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915- > headers/gem/i915_gem_stolen.h > index 48e3256ba37e..368045a470d1 100644 > --- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h > +++ b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h > @@ -23,13 +23,13 @@ bool i915_gem_stolen_initialized(struct > drm_device *drm); > > bool i915_gem_stolen_node_allocated(const struct intel_stolen_node > *node); > > -u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node); > +u64 i915_gem_stolen_node_offset(const struct intel_stolen_node > *node); > > u64 i915_gem_stolen_area_address(struct drm_device *drm); > > u64 i915_gem_stolen_area_size(struct drm_device *drm); > > -u64 i915_gem_stolen_node_address(struct intel_stolen_node *node); > +u64 i915_gem_stolen_node_address(const struct intel_stolen_node > *node); > > u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node); > > diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c > b/drivers/gpu/drm/xe/display/xe_stolen.c > index 9f04ba36e930..387506586288 100644 > --- a/drivers/gpu/drm/xe/display/xe_stolen.c > +++ b/drivers/gpu/drm/xe/display/xe_stolen.c > @@ -67,7 +67,7 @@ bool i915_gem_stolen_node_allocated(const struct > intel_stolen_node *node) > return node->bo; > } > > -u32 i915_gem_stolen_node_offset(struct intel_stolen_node *node) > +u64 i915_gem_stolen_node_offset(const struct intel_stolen_node > *node) > { > struct xe_res_cursor res; > > @@ -91,7 +91,7 @@ u64 i915_gem_stolen_area_size(struct drm_device > *drm) > return 0; > } > > -u64 i915_gem_stolen_node_address(struct intel_stolen_node *node) > +u64 i915_gem_stolen_node_address(const struct intel_stolen_node > *node) > { > struct xe_device *xe = node->xe; > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 3/4] drm/{i915, xe}/stolen: move stolen memory handling to display parent interface 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula 2025-12-05 10:30 ` [PATCH v2 1/4] drm/i915/fbc: let to_intel_display() do its generic magic Jani Nikula 2025-12-05 10:30 ` [PATCH v2 2/4] drm/xe/stolen: unify interface with i915 Jani Nikula @ 2025-12-05 10:30 ` Jani Nikula 2025-12-09 14:15 ` Govindapillai, Vinod 2025-12-05 10:30 ` [PATCH v2 4/4] drm/{i915, xe}/stolen: make insert_node, area_address, area_size optional Jani Nikula ` (5 subsequent siblings) 8 siblings, 1 reply; 14+ messages in thread From: Jani Nikula @ 2025-12-05 10:30 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula Call the stolen memory interface through the display parent interface. This makes xe compat gem/i915_gem_stolen.h redundant, and it can be removed. v2: Rebase, convert one more call that appeared Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_fbc.c | 71 ++++++++++--------- drivers/gpu/drm/i915/display/intel_parent.c | 66 +++++++++++++++++ drivers/gpu/drm/i915/display/intel_parent.h | 19 +++++ drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 52 +++++++++----- drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 23 +----- drivers/gpu/drm/i915/i915_driver.c | 1 + .../compat-i915-headers/gem/i915_gem_stolen.h | 40 ----------- drivers/gpu/drm/xe/display/xe_display.c | 4 +- drivers/gpu/drm/xe/display/xe_stolen.c | 47 ++++++++---- drivers/gpu/drm/xe/display/xe_stolen.h | 9 +++ include/drm/intel/display_parent_interface.h | 20 ++++++ 11 files changed, 222 insertions(+), 130 deletions(-) delete mode 100644 drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h create mode 100644 drivers/gpu/drm/xe/display/xe_stolen.h diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c index 0e946bed484f..fef2f35ff1e9 100644 --- a/drivers/gpu/drm/i915/display/intel_fbc.c +++ b/drivers/gpu/drm/i915/display/intel_fbc.c @@ -45,8 +45,6 @@ #include <drm/drm_fourcc.h> #include <drm/drm_print.h> -#include "gem/i915_gem_stolen.h" - #include "i915_vma.h" #include "i9xx_plane_regs.h" #include "intel_de.h" @@ -393,17 +391,17 @@ static void i8xx_fbc_program_cfb(struct intel_fbc *fbc) struct intel_display *display = fbc->display; drm_WARN_ON(display->drm, - range_end_overflows_t(u64, i915_gem_stolen_area_address(display->drm), - i915_gem_stolen_node_offset(fbc->compressed_fb), + range_end_overflows_t(u64, intel_parent_stolen_area_address(display), + intel_parent_stolen_node_offset(display, fbc->compressed_fb), U32_MAX)); drm_WARN_ON(display->drm, - range_end_overflows_t(u64, i915_gem_stolen_area_address(display->drm), - i915_gem_stolen_node_offset(fbc->compressed_llb), + range_end_overflows_t(u64, intel_parent_stolen_area_address(display), + intel_parent_stolen_node_offset(display, fbc->compressed_llb), U32_MAX)); intel_de_write(display, FBC_CFB_BASE, - i915_gem_stolen_node_address(fbc->compressed_fb)); + intel_parent_stolen_node_address(display, fbc->compressed_fb)); intel_de_write(display, FBC_LL_BASE, - i915_gem_stolen_node_address(fbc->compressed_llb)); + intel_parent_stolen_node_address(display, fbc->compressed_llb)); } static const struct intel_fbc_funcs i8xx_fbc_funcs = { @@ -511,7 +509,7 @@ static void g4x_fbc_program_cfb(struct intel_fbc *fbc) struct intel_display *display = fbc->display; intel_de_write(display, DPFC_CB_BASE, - i915_gem_stolen_node_offset(fbc->compressed_fb)); + intel_parent_stolen_node_offset(display, fbc->compressed_fb)); } static const struct intel_fbc_funcs g4x_fbc_funcs = { @@ -580,7 +578,7 @@ static void ilk_fbc_program_cfb(struct intel_fbc *fbc) struct intel_display *display = fbc->display; intel_de_write(display, ILK_DPFC_CB_BASE(fbc->id), - i915_gem_stolen_node_offset(fbc->compressed_fb)); + intel_parent_stolen_node_offset(display, fbc->compressed_fb)); } static const struct intel_fbc_funcs ilk_fbc_funcs = { @@ -819,7 +817,7 @@ static u64 intel_fbc_stolen_end(struct intel_display *display) * underruns, even if that range is not reserved by the BIOS. */ if (display->platform.broadwell || (DISPLAY_VER(display) == 9 && !display->platform.broxton)) - end = i915_gem_stolen_area_size(display->drm) - 8 * 1024 * 1024; + end = intel_parent_stolen_area_size(display) - 8 * 1024 * 1024; else end = U64_MAX; @@ -854,14 +852,14 @@ static int find_compression_limit(struct intel_fbc *fbc, size /= limit; /* Try to over-allocate to reduce reallocations and fragmentation. */ - ret = i915_gem_stolen_insert_node_in_range(fbc->compressed_fb, - size <<= 1, 4096, 0, end); + ret = intel_parent_stolen_insert_node_in_range(display, fbc->compressed_fb, + size <<= 1, 4096, 0, end); if (ret == 0) return limit; for (; limit <= intel_fbc_max_limit(display); limit <<= 1) { - ret = i915_gem_stolen_insert_node_in_range(fbc->compressed_fb, - size >>= 1, 4096, 0, end); + ret = intel_parent_stolen_insert_node_in_range(display, fbc->compressed_fb, + size >>= 1, 4096, 0, end); if (ret == 0) return limit; } @@ -876,12 +874,12 @@ static int intel_fbc_alloc_cfb(struct intel_fbc *fbc, int ret; drm_WARN_ON(display->drm, - i915_gem_stolen_node_allocated(fbc->compressed_fb)); + intel_parent_stolen_node_allocated(display, fbc->compressed_fb)); drm_WARN_ON(display->drm, - i915_gem_stolen_node_allocated(fbc->compressed_llb)); + intel_parent_stolen_node_allocated(display, fbc->compressed_llb)); if (DISPLAY_VER(display) < 5 && !display->platform.g4x) { - ret = i915_gem_stolen_insert_node(fbc->compressed_llb, 4096, 4096); + ret = intel_parent_stolen_insert_node(display, fbc->compressed_llb, 4096, 4096); if (ret) goto err; } @@ -897,14 +895,14 @@ static int intel_fbc_alloc_cfb(struct intel_fbc *fbc, drm_dbg_kms(display->drm, "reserved %llu bytes of contiguous stolen space for FBC, limit: %d\n", - i915_gem_stolen_node_size(fbc->compressed_fb), fbc->limit); + intel_parent_stolen_node_size(display, fbc->compressed_fb), fbc->limit); return 0; err_llb: - if (i915_gem_stolen_node_allocated(fbc->compressed_llb)) - i915_gem_stolen_remove_node(fbc->compressed_llb); + if (intel_parent_stolen_node_allocated(display, fbc->compressed_llb)) + intel_parent_stolen_remove_node(display, fbc->compressed_llb); err: - if (i915_gem_stolen_initialized(display->drm)) + if (intel_parent_stolen_initialized(display)) drm_info_once(display->drm, "not enough stolen space for compressed buffer (need %d more bytes), disabling. Hint: you may be able to increase stolen memory size in the BIOS to avoid this.\n", size); return -ENOSPC; @@ -1010,7 +1008,7 @@ static void fbc_sys_cache_enable(const struct intel_fbc *fbc) range = fbc_sys_cache_limit(display) / (64 * 1024); - offset = i915_gem_stolen_node_offset(fbc->compressed_fb) / (4 * 1024); + offset = intel_parent_stolen_node_offset(display, fbc->compressed_fb) / (4 * 1024); cfg = FBC_SYS_CACHE_TAG_USE_RES_SPACE | FBC_SYS_CACHEABLE_RANGE(range) | FBC_SYS_CACHE_START_BASE(offset); @@ -1024,13 +1022,15 @@ static void fbc_sys_cache_enable(const struct intel_fbc *fbc) static void __intel_fbc_cleanup_cfb(struct intel_fbc *fbc) { + struct intel_display *display = fbc->display; + if (WARN_ON(intel_fbc_hw_is_active(fbc))) return; - if (i915_gem_stolen_node_allocated(fbc->compressed_llb)) - i915_gem_stolen_remove_node(fbc->compressed_llb); - if (i915_gem_stolen_node_allocated(fbc->compressed_fb)) - i915_gem_stolen_remove_node(fbc->compressed_fb); + if (intel_parent_stolen_node_allocated(display, fbc->compressed_llb)) + intel_parent_stolen_remove_node(display, fbc->compressed_llb); + if (intel_parent_stolen_node_allocated(display, fbc->compressed_fb)) + intel_parent_stolen_remove_node(display, fbc->compressed_fb); } void intel_fbc_cleanup(struct intel_display *display) @@ -1043,8 +1043,8 @@ void intel_fbc_cleanup(struct intel_display *display) __intel_fbc_cleanup_cfb(fbc); mutex_unlock(&fbc->lock); - i915_gem_stolen_node_free(fbc->compressed_fb); - i915_gem_stolen_node_free(fbc->compressed_llb); + intel_parent_stolen_node_free(display, fbc->compressed_fb); + intel_parent_stolen_node_free(display, fbc->compressed_llb); kfree(fbc); } @@ -1480,12 +1480,13 @@ static bool intel_fbc_is_fence_ok(const struct intel_plane_state *plane_state) static bool intel_fbc_is_cfb_ok(const struct intel_plane_state *plane_state) { + struct intel_display *display = to_intel_display(plane_state); struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); struct intel_fbc *fbc = plane->fbc; return intel_fbc_min_limit(plane_state) <= fbc->limit && intel_fbc_cfb_size(plane_state) <= fbc->limit * - i915_gem_stolen_node_size(fbc->compressed_fb); + intel_parent_stolen_node_size(display, fbc->compressed_fb); } static bool intel_fbc_is_ok(const struct intel_plane_state *plane_state) @@ -1577,7 +1578,7 @@ static int intel_fbc_check_plane(struct intel_atomic_state *state, if (!fbc) return 0; - if (!i915_gem_stolen_initialized(display->drm)) { + if (!intel_parent_stolen_initialized(display)) { plane_state->no_fbc_reason = "stolen memory not initialised"; return 0; } @@ -2282,10 +2283,10 @@ static struct intel_fbc *intel_fbc_create(struct intel_display *display, if (!fbc) return NULL; - fbc->compressed_fb = i915_gem_stolen_node_alloc(display->drm); + fbc->compressed_fb = intel_parent_stolen_node_alloc(display); if (!fbc->compressed_fb) goto err; - fbc->compressed_llb = i915_gem_stolen_node_alloc(display->drm); + fbc->compressed_llb = intel_parent_stolen_node_alloc(display); if (!fbc->compressed_llb) goto err; @@ -2310,8 +2311,8 @@ static struct intel_fbc *intel_fbc_create(struct intel_display *display, return fbc; err: - i915_gem_stolen_node_free(fbc->compressed_llb); - i915_gem_stolen_node_free(fbc->compressed_fb); + intel_parent_stolen_node_free(display, fbc->compressed_llb); + intel_parent_stolen_node_free(display, fbc->compressed_fb); kfree(fbc); return NULL; diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c index 2ea310cc3509..49cb64ca8c4c 100644 --- a/drivers/gpu/drm/i915/display/intel_parent.c +++ b/drivers/gpu/drm/i915/display/intel_parent.c @@ -79,6 +79,72 @@ void intel_parent_rps_ilk_irq_handler(struct intel_display *display) display->parent->rps->ilk_irq_handler(display->drm); } +int intel_parent_stolen_insert_node_in_range(struct intel_display *display, + struct intel_stolen_node *node, u64 size, + unsigned int align, u64 start, u64 end) +{ + return display->parent->stolen->insert_node_in_range(node, size, align, start, end); +} + +int intel_parent_stolen_insert_node(struct intel_display *display, struct intel_stolen_node *node, u64 size, + unsigned int align) +{ + return display->parent->stolen->insert_node(node, size, align); +} + +void intel_parent_stolen_remove_node(struct intel_display *display, + struct intel_stolen_node *node) +{ + display->parent->stolen->remove_node(node); +} + +bool intel_parent_stolen_initialized(struct intel_display *display) +{ + return display->parent->stolen->initialized(display->drm); +} + +bool intel_parent_stolen_node_allocated(struct intel_display *display, + const struct intel_stolen_node *node) +{ + return display->parent->stolen->node_allocated(node); +} + +u32 intel_parent_stolen_node_offset(struct intel_display *display, struct intel_stolen_node *node) +{ + return display->parent->stolen->node_offset(node); +} + +u64 intel_parent_stolen_area_address(struct intel_display *display) +{ + return display->parent->stolen->area_address(display->drm); +} + +u64 intel_parent_stolen_area_size(struct intel_display *display) +{ + return display->parent->stolen->area_size(display->drm); +} + +u64 intel_parent_stolen_node_address(struct intel_display *display, struct intel_stolen_node *node) +{ + return display->parent->stolen->node_address(node); +} + +u64 intel_parent_stolen_node_size(struct intel_display *display, const struct intel_stolen_node *node) +{ + return display->parent->stolen->node_size(node); +} + +struct intel_stolen_node *intel_parent_stolen_node_alloc(struct intel_display *display) +{ + return display->parent->stolen->node_alloc(display->drm); +} + +void intel_parent_stolen_node_free(struct intel_display *display, const struct intel_stolen_node *node) +{ + display->parent->stolen->node_free(node); +} + + bool intel_parent_vgpu_active(struct intel_display *display) { return display->parent->vgpu_active && display->parent->vgpu_active(display->drm); diff --git a/drivers/gpu/drm/i915/display/intel_parent.h b/drivers/gpu/drm/i915/display/intel_parent.h index 8f91a6f75c53..bc740dfad985 100644 --- a/drivers/gpu/drm/i915/display/intel_parent.h +++ b/drivers/gpu/drm/i915/display/intel_parent.h @@ -9,6 +9,7 @@ struct dma_fence; struct intel_display; struct intel_hdcp_gsc_context; +struct intel_stolen_node; ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display *display, struct intel_hdcp_gsc_context *gsc_context, @@ -27,6 +28,24 @@ void intel_parent_rps_boost_if_not_started(struct intel_display *display, struct void intel_parent_rps_mark_interactive(struct intel_display *display, bool interactive); void intel_parent_rps_ilk_irq_handler(struct intel_display *display); +int intel_parent_stolen_insert_node_in_range(struct intel_display *display, + struct intel_stolen_node *node, u64 size, + unsigned int align, u64 start, u64 end); +int intel_parent_stolen_insert_node(struct intel_display *display, struct intel_stolen_node *node, u64 size, + unsigned int align); +void intel_parent_stolen_remove_node(struct intel_display *display, + struct intel_stolen_node *node); +bool intel_parent_stolen_initialized(struct intel_display *display); +bool intel_parent_stolen_node_allocated(struct intel_display *display, + const struct intel_stolen_node *node); +u32 intel_parent_stolen_node_offset(struct intel_display *display, struct intel_stolen_node *node); +u64 intel_parent_stolen_area_address(struct intel_display *display); +u64 intel_parent_stolen_area_size(struct intel_display *display); +u64 intel_parent_stolen_node_address(struct intel_display *display, struct intel_stolen_node *node); +u64 intel_parent_stolen_node_size(struct intel_display *display, const struct intel_stolen_node *node); +struct intel_stolen_node *intel_parent_stolen_node_alloc(struct intel_display *display); +void intel_parent_stolen_node_free(struct intel_display *display, const struct intel_stolen_node *node); + bool intel_parent_vgpu_active(struct intel_display *display); bool intel_parent_has_fenced_regions(struct intel_display *display); diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c index f859c99f969b..c3e0b8da485c 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c @@ -8,6 +8,7 @@ #include <drm/drm_mm.h> #include <drm/drm_print.h> +#include <drm/intel/display_parent_interface.h> #include <drm/intel/i915_drm.h> #include "gem/i915_gem_lmem.h" @@ -64,8 +65,8 @@ static int __i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915, return ret; } -int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size, - unsigned int alignment, u64 start, u64 end) +static int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size, + unsigned int alignment, u64 start, u64 end) { return __i915_gem_stolen_insert_node_in_range(node->i915, &node->node, size, alignment, @@ -82,8 +83,8 @@ static int __i915_gem_stolen_insert_node(struct drm_i915_private *i915, U64_MAX); } -int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size, - unsigned int alignment) +static int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size, + unsigned int alignment) { return __i915_gem_stolen_insert_node(node->i915, &node->node, size, alignment); } @@ -96,7 +97,7 @@ static void __i915_gem_stolen_remove_node(struct drm_i915_private *i915, mutex_unlock(&i915->mm.stolen_lock); } -void i915_gem_stolen_remove_node(struct intel_stolen_node *node) +static void i915_gem_stolen_remove_node(struct intel_stolen_node *node) { __i915_gem_stolen_remove_node(node->i915, &node->node); } @@ -1025,50 +1026,50 @@ bool i915_gem_object_is_stolen(const struct drm_i915_gem_object *obj) return obj->ops == &i915_gem_object_stolen_ops; } -bool i915_gem_stolen_initialized(struct drm_device *drm) +static bool i915_gem_stolen_initialized(struct drm_device *drm) { struct drm_i915_private *i915 = to_i915(drm); return drm_mm_initialized(&i915->mm.stolen); } -u64 i915_gem_stolen_area_address(struct drm_device *drm) +static u64 i915_gem_stolen_area_address(struct drm_device *drm) { struct drm_i915_private *i915 = to_i915(drm); return i915->dsm.stolen.start; } -u64 i915_gem_stolen_area_size(struct drm_device *drm) +static u64 i915_gem_stolen_area_size(struct drm_device *drm) { struct drm_i915_private *i915 = to_i915(drm); return resource_size(&i915->dsm.stolen); } -u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node) +static u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node) +{ + return node->node.start; +} + +static u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node) { struct drm_i915_private *i915 = node->i915; return i915->dsm.stolen.start + i915_gem_stolen_node_offset(node); } -bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node) +static bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node) { return drm_mm_node_allocated(&node->node); } -u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node) -{ - return node->node.start; -} - -u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node) +static u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node) { return node->node.size; } -struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm) +static struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm) { struct drm_i915_private *i915 = to_i915(drm); struct intel_stolen_node *node; @@ -1082,7 +1083,22 @@ struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm) return node; } -void i915_gem_stolen_node_free(const struct intel_stolen_node *node) +static void i915_gem_stolen_node_free(const struct intel_stolen_node *node) { kfree(node); } + +const struct intel_display_stolen_interface i915_display_stolen_interface = { + .insert_node_in_range = i915_gem_stolen_insert_node_in_range, + .insert_node = i915_gem_stolen_insert_node, + .remove_node = i915_gem_stolen_remove_node, + .initialized = i915_gem_stolen_initialized, + .node_allocated = i915_gem_stolen_node_allocated, + .node_offset = i915_gem_stolen_node_offset, + .area_address = i915_gem_stolen_area_address, + .area_size = i915_gem_stolen_area_size, + .node_address = i915_gem_stolen_node_address, + .node_size = i915_gem_stolen_node_size, + .node_alloc = i915_gem_stolen_node_alloc, + .node_free = i915_gem_stolen_node_free, +}; diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h index 7b0386002ed4..6db5262046a2 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h +++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h @@ -8,17 +8,9 @@ #include <linux/types.h> -struct drm_device; struct drm_i915_gem_object; struct drm_i915_private; -struct intel_stolen_node; - -int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size, - unsigned alignment); -int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size, - unsigned alignment, u64 start, - u64 end); -void i915_gem_stolen_remove_node(struct intel_stolen_node *node); + struct intel_memory_region * i915_gem_stolen_smem_setup(struct drm_i915_private *i915, u16 type, u16 instance); @@ -34,17 +26,6 @@ bool i915_gem_object_is_stolen(const struct drm_i915_gem_object *obj); #define I915_GEM_STOLEN_BIAS SZ_128K -bool i915_gem_stolen_initialized(struct drm_device *drm); -u64 i915_gem_stolen_area_address(struct drm_device *drm); -u64 i915_gem_stolen_area_size(struct drm_device *drm); - -u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node); - -bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node); -u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node); -u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node); - -struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm); -void i915_gem_stolen_node_free(const struct intel_stolen_node *node); +extern const struct intel_display_stolen_interface i915_display_stolen_interface; #endif /* __I915_GEM_STOLEN_H__ */ diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c index d98839427ef9..fe84df4eae8f 100644 --- a/drivers/gpu/drm/i915/i915_driver.c +++ b/drivers/gpu/drm/i915/i915_driver.c @@ -762,6 +762,7 @@ static const struct intel_display_parent_interface parent = { .rpm = &i915_display_rpm_interface, .irq = &i915_display_irq_interface, .rps = &i915_display_rps_interface, + .stolen = &i915_display_stolen_interface, .vgpu_active = vgpu_active, .has_fenced_regions = has_fenced_regions, .fence_priority_display = fence_priority_display, diff --git a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h deleted file mode 100644 index 368045a470d1..000000000000 --- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h +++ /dev/null @@ -1,40 +0,0 @@ -/* SPDX-License-Identifier: MIT */ -/* - * Copyright © 2024 Intel Corporation - */ - -#ifndef _I915_GEM_STOLEN_H_ -#define _I915_GEM_STOLEN_H_ - -#include <linux/types.h> - -struct drm_device; -struct intel_stolen_node; - -int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size, - unsigned int align, u64 start, u64 end); - -int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size, - unsigned int align); - -void i915_gem_stolen_remove_node(struct intel_stolen_node *node); - -bool i915_gem_stolen_initialized(struct drm_device *drm); - -bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node); - -u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node); - -u64 i915_gem_stolen_area_address(struct drm_device *drm); - -u64 i915_gem_stolen_area_size(struct drm_device *drm); - -u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node); - -u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node); - -struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm); - -void i915_gem_stolen_node_free(const struct intel_stolen_node *node); - -#endif diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c index 9d2aa69ea428..9fb5c2f3ddd8 100644 --- a/drivers/gpu/drm/xe/display/xe_display.c +++ b/drivers/gpu/drm/xe/display/xe_display.c @@ -36,8 +36,9 @@ #include "intel_opregion.h" #include "skl_watermark.h" #include "xe_display_rpm.h" -#include "xe_module.h" #include "xe_hdcp_gsc.h" +#include "xe_module.h" +#include "xe_stolen.h" /* Ensure drm and display members are placed properly. */ INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct xe_device, drm, display); @@ -538,6 +539,7 @@ static const struct intel_display_parent_interface parent = { .hdcp = &xe_display_hdcp_interface, .rpm = &xe_display_rpm_interface, .irq = &xe_display_irq_interface, + .stolen = &xe_display_stolen_interface, }; /** diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c index 387506586288..cc7aec7db76c 100644 --- a/drivers/gpu/drm/xe/display/xe_stolen.c +++ b/drivers/gpu/drm/xe/display/xe_stolen.c @@ -1,8 +1,10 @@ // SPDX-License-Identifier: MIT /* Copyright © 2025 Intel Corporation */ -#include "gem/i915_gem_stolen.h" +#include <drm/intel/display_parent_interface.h> + #include "xe_res_cursor.h" +#include "xe_stolen.h" #include "xe_ttm_stolen_mgr.h" #include "xe_validation.h" @@ -11,8 +13,8 @@ struct intel_stolen_node { struct xe_bo *bo; }; -int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size, - unsigned int align, u64 start, u64 end) +static int xe_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 size, + unsigned int align, u64 start, u64 end) { struct xe_device *xe = node->xe; @@ -41,7 +43,7 @@ int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 siz return err; } -int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size, unsigned int align) +static int xe_stolen_insert_node(struct intel_stolen_node *node, u64 size, unsigned int align) { /* Not used on xe */ WARN_ON(1); @@ -49,25 +51,25 @@ int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 size, unsign return -ENODEV; } -void i915_gem_stolen_remove_node(struct intel_stolen_node *node) +static void xe_stolen_remove_node(struct intel_stolen_node *node) { xe_bo_unpin_map_no_vm(node->bo); node->bo = NULL; } -bool i915_gem_stolen_initialized(struct drm_device *drm) +static bool xe_stolen_initialized(struct drm_device *drm) { struct xe_device *xe = to_xe_device(drm); return ttm_manager_type(&xe->ttm, XE_PL_STOLEN); } -bool i915_gem_stolen_node_allocated(const struct intel_stolen_node *node) +static bool xe_stolen_node_allocated(const struct intel_stolen_node *node) { return node->bo; } -u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node) +static u64 xe_stolen_node_offset(const struct intel_stolen_node *node) { struct xe_res_cursor res; @@ -76,7 +78,7 @@ u64 i915_gem_stolen_node_offset(const struct intel_stolen_node *node) } /* Used for < gen4. These are not supported by Xe */ -u64 i915_gem_stolen_area_address(struct drm_device *drm) +static u64 xe_stolen_area_address(struct drm_device *drm) { WARN_ON(1); @@ -84,26 +86,26 @@ u64 i915_gem_stolen_area_address(struct drm_device *drm) } /* Used for gen9 specific WA. Gen9 is not supported by Xe */ -u64 i915_gem_stolen_area_size(struct drm_device *drm) +static u64 xe_stolen_area_size(struct drm_device *drm) { WARN_ON(1); return 0; } -u64 i915_gem_stolen_node_address(const struct intel_stolen_node *node) +static u64 xe_stolen_node_address(const struct intel_stolen_node *node) { struct xe_device *xe = node->xe; - return xe_ttm_stolen_gpu_offset(xe) + i915_gem_stolen_node_offset(node); + return xe_ttm_stolen_gpu_offset(xe) + xe_stolen_node_offset(node); } -u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node) +static u64 xe_stolen_node_size(const struct intel_stolen_node *node) { return node->bo->ttm.base.size; } -struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm) +static struct intel_stolen_node *xe_stolen_node_alloc(struct drm_device *drm) { struct xe_device *xe = to_xe_device(drm); struct intel_stolen_node *node; @@ -117,7 +119,22 @@ struct intel_stolen_node *i915_gem_stolen_node_alloc(struct drm_device *drm) return node; } -void i915_gem_stolen_node_free(const struct intel_stolen_node *node) +static void xe_stolen_node_free(const struct intel_stolen_node *node) { kfree(node); } + +const struct intel_display_stolen_interface xe_display_stolen_interface = { + .insert_node_in_range = xe_stolen_insert_node_in_range, + .insert_node = xe_stolen_insert_node, + .remove_node = xe_stolen_remove_node, + .initialized = xe_stolen_initialized, + .node_allocated = xe_stolen_node_allocated, + .node_offset = xe_stolen_node_offset, + .area_address = xe_stolen_area_address, + .area_size = xe_stolen_area_size, + .node_address = xe_stolen_node_address, + .node_size = xe_stolen_node_size, + .node_alloc = xe_stolen_node_alloc, + .node_free = xe_stolen_node_free, +}; diff --git a/drivers/gpu/drm/xe/display/xe_stolen.h b/drivers/gpu/drm/xe/display/xe_stolen.h new file mode 100644 index 000000000000..db86b9e01242 --- /dev/null +++ b/drivers/gpu/drm/xe/display/xe_stolen.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: MIT */ +/* Copyright © 2025 Intel Corporation */ + +#ifndef __XE_STOLEN_H__ +#define __XE_STOLEN_H__ + +extern const struct intel_display_stolen_interface xe_display_stolen_interface; + +#endif diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h index 61d1b22adc83..f590e846464d 100644 --- a/include/drm/intel/display_parent_interface.h +++ b/include/drm/intel/display_parent_interface.h @@ -9,6 +9,7 @@ struct dma_fence; struct drm_device; struct intel_hdcp_gsc_context; +struct intel_stolen_node; struct ref_tracker; struct intel_display_rpm_interface { @@ -47,6 +48,22 @@ struct intel_display_rps_interface { void (*ilk_irq_handler)(struct drm_device *drm); }; +struct intel_display_stolen_interface { + int (*insert_node_in_range)(struct intel_stolen_node *node, u64 size, + unsigned int align, u64 start, u64 end); + int (*insert_node)(struct intel_stolen_node *node, u64 size, unsigned int align); + void (*remove_node)(struct intel_stolen_node *node); + bool (*initialized)(struct drm_device *drm); + bool (*node_allocated)(const struct intel_stolen_node *node); + u64 (*node_offset)(const struct intel_stolen_node *node); + u64 (*area_address)(struct drm_device *drm); + u64 (*area_size)(struct drm_device *drm); + u64 (*node_address)(const struct intel_stolen_node *node); + u64 (*node_size)(const struct intel_stolen_node *node); + struct intel_stolen_node *(*node_alloc)(struct drm_device *drm); + void (*node_free)(const struct intel_stolen_node *node); +}; + /** * struct intel_display_parent_interface - services parent driver provides to display * @@ -72,6 +89,9 @@ struct intel_display_parent_interface { /** @rpm: RPS interface. Optional. */ const struct intel_display_rps_interface *rps; + /** @stolen: Stolen memory. */ + const struct intel_display_stolen_interface *stolen; + /** @vgpu_active: Is vGPU active? Optional. */ bool (*vgpu_active)(struct drm_device *drm); -- 2.47.3 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH v2 3/4] drm/{i915, xe}/stolen: move stolen memory handling to display parent interface 2025-12-05 10:30 ` [PATCH v2 3/4] drm/{i915, xe}/stolen: move stolen memory handling to display parent interface Jani Nikula @ 2025-12-09 14:15 ` Govindapillai, Vinod 0 siblings, 0 replies; 14+ messages in thread From: Govindapillai, Vinod @ 2025-12-09 14:15 UTC (permalink / raw) To: intel-xe@lists.freedesktop.org, Nikula, Jani, intel-gfx@lists.freedesktop.org On Fri, 2025-12-05 at 12:30 +0200, Jani Nikula wrote: > Call the stolen memory interface through the display parent > interface. > > This makes xe compat gem/i915_gem_stolen.h redundant, and it can be > removed. > > v2: Rebase, convert one more call that appeared > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_fbc.c | 71 ++++++++++------- > -- > drivers/gpu/drm/i915/display/intel_parent.c | 66 +++++++++++++++++ > drivers/gpu/drm/i915/display/intel_parent.h | 19 +++++ > drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 52 +++++++++----- > drivers/gpu/drm/i915/gem/i915_gem_stolen.h | 23 +----- > drivers/gpu/drm/i915/i915_driver.c | 1 + > .../compat-i915-headers/gem/i915_gem_stolen.h | 40 ----------- > drivers/gpu/drm/xe/display/xe_display.c | 4 +- > drivers/gpu/drm/xe/display/xe_stolen.c | 47 ++++++++---- > drivers/gpu/drm/xe/display/xe_stolen.h | 9 +++ > include/drm/intel/display_parent_interface.h | 20 ++++++ > 11 files changed, 222 insertions(+), 130 deletions(-) > delete mode 100644 drivers/gpu/drm/xe/compat-i915- > headers/gem/i915_gem_stolen.h > create mode 100644 drivers/gpu/drm/xe/display/xe_stolen.h > > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c > b/drivers/gpu/drm/i915/display/intel_fbc.c > index 0e946bed484f..fef2f35ff1e9 100644 > --- a/drivers/gpu/drm/i915/display/intel_fbc.c > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c > @@ -45,8 +45,6 @@ > #include <drm/drm_fourcc.h> > #include <drm/drm_print.h> > > -#include "gem/i915_gem_stolen.h" > - > #include "i915_vma.h" > #include "i9xx_plane_regs.h" > #include "intel_de.h" > @@ -393,17 +391,17 @@ static void i8xx_fbc_program_cfb(struct > intel_fbc *fbc) > struct intel_display *display = fbc->display; > > drm_WARN_ON(display->drm, > - range_end_overflows_t(u64, > i915_gem_stolen_area_address(display->drm), > - > i915_gem_stolen_node_offset(fbc->compressed_fb), > + range_end_overflows_t(u64, > intel_parent_stolen_area_address(display), > + > intel_parent_stolen_node_offset(display, fbc->compressed_fb), > U32_MAX)); > drm_WARN_ON(display->drm, > - range_end_overflows_t(u64, > i915_gem_stolen_area_address(display->drm), > - > i915_gem_stolen_node_offset(fbc->compressed_llb), > + range_end_overflows_t(u64, > intel_parent_stolen_area_address(display), > + > intel_parent_stolen_node_offset(display, fbc->compressed_llb), > U32_MAX)); Not related to this series, there are few other places in intel_fbc.c where we use intel_parent_stolen_node_offset() directly as a parameter to intel_de_write() which take u32. Wonder if we need to add the similar warn on those places as well. Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > intel_de_write(display, FBC_CFB_BASE, > - i915_gem_stolen_node_address(fbc- > >compressed_fb)); > + intel_parent_stolen_node_address(display, > fbc->compressed_fb)); > intel_de_write(display, FBC_LL_BASE, > - i915_gem_stolen_node_address(fbc- > >compressed_llb)); > + intel_parent_stolen_node_address(display, > fbc->compressed_llb)); > } > > static const struct intel_fbc_funcs i8xx_fbc_funcs = { > @@ -511,7 +509,7 @@ static void g4x_fbc_program_cfb(struct intel_fbc > *fbc) > struct intel_display *display = fbc->display; > > intel_de_write(display, DPFC_CB_BASE, > - i915_gem_stolen_node_offset(fbc- > >compressed_fb)); > + intel_parent_stolen_node_offset(display, fbc- > >compressed_fb)); > } > > static const struct intel_fbc_funcs g4x_fbc_funcs = { > @@ -580,7 +578,7 @@ static void ilk_fbc_program_cfb(struct intel_fbc > *fbc) > struct intel_display *display = fbc->display; > > intel_de_write(display, ILK_DPFC_CB_BASE(fbc->id), > - i915_gem_stolen_node_offset(fbc- > >compressed_fb)); > + intel_parent_stolen_node_offset(display, fbc- > >compressed_fb)); > } > > static const struct intel_fbc_funcs ilk_fbc_funcs = { > @@ -819,7 +817,7 @@ static u64 intel_fbc_stolen_end(struct > intel_display *display) > * underruns, even if that range is not reserved by the > BIOS. */ > if (display->platform.broadwell || > (DISPLAY_VER(display) == 9 && !display- > >platform.broxton)) > - end = i915_gem_stolen_area_size(display->drm) - 8 * > 1024 * 1024; > + end = intel_parent_stolen_area_size(display) - 8 * > 1024 * 1024; > else > end = U64_MAX; > > @@ -854,14 +852,14 @@ static int find_compression_limit(struct > intel_fbc *fbc, > size /= limit; > > /* Try to over-allocate to reduce reallocations and > fragmentation. */ > - ret = i915_gem_stolen_insert_node_in_range(fbc- > >compressed_fb, > - size <<= 1, 4096, > 0, end); > + ret = intel_parent_stolen_insert_node_in_range(display, fbc- > >compressed_fb, > + size <<= 1, > 4096, 0, end); > if (ret == 0) > return limit; > > for (; limit <= intel_fbc_max_limit(display); limit <<= 1) { > - ret = i915_gem_stolen_insert_node_in_range(fbc- > >compressed_fb, > - size >>= > 1, 4096, 0, end); > + ret = > intel_parent_stolen_insert_node_in_range(display, fbc->compressed_fb, > + size > >>= 1, 4096, 0, end); > if (ret == 0) > return limit; > } > @@ -876,12 +874,12 @@ static int intel_fbc_alloc_cfb(struct intel_fbc > *fbc, > int ret; > > drm_WARN_ON(display->drm, > - i915_gem_stolen_node_allocated(fbc- > >compressed_fb)); > + intel_parent_stolen_node_allocated(display, fbc- > >compressed_fb)); > drm_WARN_ON(display->drm, > - i915_gem_stolen_node_allocated(fbc- > >compressed_llb)); > + intel_parent_stolen_node_allocated(display, fbc- > >compressed_llb)); > > if (DISPLAY_VER(display) < 5 && !display->platform.g4x) { > - ret = i915_gem_stolen_insert_node(fbc- > >compressed_llb, 4096, 4096); > + ret = intel_parent_stolen_insert_node(display, fbc- > >compressed_llb, 4096, 4096); > if (ret) > goto err; > } > @@ -897,14 +895,14 @@ static int intel_fbc_alloc_cfb(struct intel_fbc > *fbc, > > drm_dbg_kms(display->drm, > "reserved %llu bytes of contiguous stolen space > for FBC, limit: %d\n", > - i915_gem_stolen_node_size(fbc->compressed_fb), > fbc->limit); > + intel_parent_stolen_node_size(display, fbc- > >compressed_fb), fbc->limit); > return 0; > > err_llb: > - if (i915_gem_stolen_node_allocated(fbc->compressed_llb)) > - i915_gem_stolen_remove_node(fbc->compressed_llb); > + if (intel_parent_stolen_node_allocated(display, fbc- > >compressed_llb)) > + intel_parent_stolen_remove_node(display, fbc- > >compressed_llb); > err: > - if (i915_gem_stolen_initialized(display->drm)) > + if (intel_parent_stolen_initialized(display)) > drm_info_once(display->drm, > "not enough stolen space for > compressed buffer (need %d more bytes), disabling. Hint: you may be > able to increase stolen memory size in the BIOS to avoid this.\n", > size); > return -ENOSPC; > @@ -1010,7 +1008,7 @@ static void fbc_sys_cache_enable(const struct > intel_fbc *fbc) > > range = fbc_sys_cache_limit(display) / (64 * 1024); > > - offset = i915_gem_stolen_node_offset(fbc->compressed_fb) / > (4 * 1024); > + offset = intel_parent_stolen_node_offset(display, fbc- > >compressed_fb) / (4 * 1024); > > cfg = FBC_SYS_CACHE_TAG_USE_RES_SPACE | > FBC_SYS_CACHEABLE_RANGE(range) | > FBC_SYS_CACHE_START_BASE(offset); > @@ -1024,13 +1022,15 @@ static void fbc_sys_cache_enable(const struct > intel_fbc *fbc) > > static void __intel_fbc_cleanup_cfb(struct intel_fbc *fbc) > { > + struct intel_display *display = fbc->display; > + > if (WARN_ON(intel_fbc_hw_is_active(fbc))) > return; > > - if (i915_gem_stolen_node_allocated(fbc->compressed_llb)) > - i915_gem_stolen_remove_node(fbc->compressed_llb); > - if (i915_gem_stolen_node_allocated(fbc->compressed_fb)) > - i915_gem_stolen_remove_node(fbc->compressed_fb); > + if (intel_parent_stolen_node_allocated(display, fbc- > >compressed_llb)) > + intel_parent_stolen_remove_node(display, fbc- > >compressed_llb); > + if (intel_parent_stolen_node_allocated(display, fbc- > >compressed_fb)) > + intel_parent_stolen_remove_node(display, fbc- > >compressed_fb); > } > > void intel_fbc_cleanup(struct intel_display *display) > @@ -1043,8 +1043,8 @@ void intel_fbc_cleanup(struct intel_display > *display) > __intel_fbc_cleanup_cfb(fbc); > mutex_unlock(&fbc->lock); > > - i915_gem_stolen_node_free(fbc->compressed_fb); > - i915_gem_stolen_node_free(fbc->compressed_llb); > + intel_parent_stolen_node_free(display, fbc- > >compressed_fb); > + intel_parent_stolen_node_free(display, fbc- > >compressed_llb); > > kfree(fbc); > } > @@ -1480,12 +1480,13 @@ static bool intel_fbc_is_fence_ok(const > struct intel_plane_state *plane_state) > > static bool intel_fbc_is_cfb_ok(const struct intel_plane_state > *plane_state) > { > + struct intel_display *display = > to_intel_display(plane_state); > struct intel_plane *plane = to_intel_plane(plane_state- > >uapi.plane); > struct intel_fbc *fbc = plane->fbc; > > return intel_fbc_min_limit(plane_state) <= fbc->limit && > intel_fbc_cfb_size(plane_state) <= fbc->limit * > - i915_gem_stolen_node_size(fbc- > >compressed_fb); > + intel_parent_stolen_node_size(display, fbc- > >compressed_fb); > } > > static bool intel_fbc_is_ok(const struct intel_plane_state > *plane_state) > @@ -1577,7 +1578,7 @@ static int intel_fbc_check_plane(struct > intel_atomic_state *state, > if (!fbc) > return 0; > > - if (!i915_gem_stolen_initialized(display->drm)) { > + if (!intel_parent_stolen_initialized(display)) { > plane_state->no_fbc_reason = "stolen memory not > initialised"; > return 0; > } > @@ -2282,10 +2283,10 @@ static struct intel_fbc > *intel_fbc_create(struct intel_display *display, > if (!fbc) > return NULL; > > - fbc->compressed_fb = i915_gem_stolen_node_alloc(display- > >drm); > + fbc->compressed_fb = > intel_parent_stolen_node_alloc(display); > if (!fbc->compressed_fb) > goto err; > - fbc->compressed_llb = i915_gem_stolen_node_alloc(display- > >drm); > + fbc->compressed_llb = > intel_parent_stolen_node_alloc(display); > if (!fbc->compressed_llb) > goto err; > > @@ -2310,8 +2311,8 @@ static struct intel_fbc > *intel_fbc_create(struct intel_display *display, > return fbc; > > err: > - i915_gem_stolen_node_free(fbc->compressed_llb); > - i915_gem_stolen_node_free(fbc->compressed_fb); > + intel_parent_stolen_node_free(display, fbc->compressed_llb); > + intel_parent_stolen_node_free(display, fbc->compressed_fb); > kfree(fbc); > > return NULL; > diff --git a/drivers/gpu/drm/i915/display/intel_parent.c > b/drivers/gpu/drm/i915/display/intel_parent.c > index 2ea310cc3509..49cb64ca8c4c 100644 > --- a/drivers/gpu/drm/i915/display/intel_parent.c > +++ b/drivers/gpu/drm/i915/display/intel_parent.c > @@ -79,6 +79,72 @@ void intel_parent_rps_ilk_irq_handler(struct > intel_display *display) > display->parent->rps->ilk_irq_handler(display->drm); > } > > +int intel_parent_stolen_insert_node_in_range(struct intel_display > *display, > + struct > intel_stolen_node *node, u64 size, > + unsigned int align, u64 > start, u64 end) > +{ > + return display->parent->stolen->insert_node_in_range(node, > size, align, start, end); > +} > + > +int intel_parent_stolen_insert_node(struct intel_display *display, > struct intel_stolen_node *node, u64 size, > + unsigned int align) > +{ > + return display->parent->stolen->insert_node(node, size, > align); > +} > + > +void intel_parent_stolen_remove_node(struct intel_display *display, > + struct intel_stolen_node *node) > +{ > + display->parent->stolen->remove_node(node); > +} > + > +bool intel_parent_stolen_initialized(struct intel_display *display) > +{ > + return display->parent->stolen->initialized(display->drm); > +} > + > +bool intel_parent_stolen_node_allocated(struct intel_display > *display, > + const struct > intel_stolen_node *node) > +{ > + return display->parent->stolen->node_allocated(node); > +} > + > +u32 intel_parent_stolen_node_offset(struct intel_display *display, > struct intel_stolen_node *node) > +{ > + return display->parent->stolen->node_offset(node); > +} > + > +u64 intel_parent_stolen_area_address(struct intel_display *display) > +{ > + return display->parent->stolen->area_address(display->drm); > +} > + > +u64 intel_parent_stolen_area_size(struct intel_display *display) > +{ > + return display->parent->stolen->area_size(display->drm); > +} > + > +u64 intel_parent_stolen_node_address(struct intel_display *display, > struct intel_stolen_node *node) > +{ > + return display->parent->stolen->node_address(node); > +} > + > +u64 intel_parent_stolen_node_size(struct intel_display *display, > const struct intel_stolen_node *node) > +{ > + return display->parent->stolen->node_size(node); > +} > + > +struct intel_stolen_node *intel_parent_stolen_node_alloc(struct > intel_display *display) > +{ > + return display->parent->stolen->node_alloc(display->drm); > +} > + > +void intel_parent_stolen_node_free(struct intel_display *display, > const struct intel_stolen_node *node) > +{ > + display->parent->stolen->node_free(node); > +} > + > + > bool intel_parent_vgpu_active(struct intel_display *display) > { > return display->parent->vgpu_active && display->parent- > >vgpu_active(display->drm); > diff --git a/drivers/gpu/drm/i915/display/intel_parent.h > b/drivers/gpu/drm/i915/display/intel_parent.h > index 8f91a6f75c53..bc740dfad985 100644 > --- a/drivers/gpu/drm/i915/display/intel_parent.h > +++ b/drivers/gpu/drm/i915/display/intel_parent.h > @@ -9,6 +9,7 @@ > struct dma_fence; > struct intel_display; > struct intel_hdcp_gsc_context; > +struct intel_stolen_node; > > ssize_t intel_parent_hdcp_gsc_msg_send(struct intel_display > *display, > struct intel_hdcp_gsc_context > *gsc_context, > @@ -27,6 +28,24 @@ void intel_parent_rps_boost_if_not_started(struct > intel_display *display, struct > void intel_parent_rps_mark_interactive(struct intel_display > *display, bool interactive); > void intel_parent_rps_ilk_irq_handler(struct intel_display > *display); > > +int intel_parent_stolen_insert_node_in_range(struct intel_display > *display, > + struct > intel_stolen_node *node, u64 size, > + unsigned int align, u64 > start, u64 end); > +int intel_parent_stolen_insert_node(struct intel_display *display, > struct intel_stolen_node *node, u64 size, > + unsigned int align); > +void intel_parent_stolen_remove_node(struct intel_display *display, > + struct intel_stolen_node > *node); > +bool intel_parent_stolen_initialized(struct intel_display *display); > +bool intel_parent_stolen_node_allocated(struct intel_display > *display, > + const struct > intel_stolen_node *node); > +u32 intel_parent_stolen_node_offset(struct intel_display *display, > struct intel_stolen_node *node); > +u64 intel_parent_stolen_area_address(struct intel_display *display); > +u64 intel_parent_stolen_area_size(struct intel_display *display); > +u64 intel_parent_stolen_node_address(struct intel_display *display, > struct intel_stolen_node *node); > +u64 intel_parent_stolen_node_size(struct intel_display *display, > const struct intel_stolen_node *node); > +struct intel_stolen_node *intel_parent_stolen_node_alloc(struct > intel_display *display); > +void intel_parent_stolen_node_free(struct intel_display *display, > const struct intel_stolen_node *node); > + > bool intel_parent_vgpu_active(struct intel_display *display); > > bool intel_parent_has_fenced_regions(struct intel_display *display); > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c > b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c > index f859c99f969b..c3e0b8da485c 100644 > --- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.c > +++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.c > @@ -8,6 +8,7 @@ > > #include <drm/drm_mm.h> > #include <drm/drm_print.h> > +#include <drm/intel/display_parent_interface.h> > #include <drm/intel/i915_drm.h> > > #include "gem/i915_gem_lmem.h" > @@ -64,8 +65,8 @@ static int > __i915_gem_stolen_insert_node_in_range(struct drm_i915_private *i915, > return ret; > } > > -int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node > *node, u64 size, > - unsigned int alignment, u64 > start, u64 end) > +static int i915_gem_stolen_insert_node_in_range(struct > intel_stolen_node *node, u64 size, > + unsigned int > alignment, u64 start, u64 end) > { > return __i915_gem_stolen_insert_node_in_range(node->i915, > &node->node, > size, > alignment, > @@ -82,8 +83,8 @@ static int __i915_gem_stolen_insert_node(struct > drm_i915_private *i915, > U64_MAX); > } > > -int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 > size, > - unsigned int alignment) > +static int i915_gem_stolen_insert_node(struct intel_stolen_node > *node, u64 size, > + unsigned int alignment) > { > return __i915_gem_stolen_insert_node(node->i915, &node- > >node, size, alignment); > } > @@ -96,7 +97,7 @@ static void __i915_gem_stolen_remove_node(struct > drm_i915_private *i915, > mutex_unlock(&i915->mm.stolen_lock); > } > > -void i915_gem_stolen_remove_node(struct intel_stolen_node *node) > +static void i915_gem_stolen_remove_node(struct intel_stolen_node > *node) > { > __i915_gem_stolen_remove_node(node->i915, &node->node); > } > @@ -1025,50 +1026,50 @@ bool i915_gem_object_is_stolen(const struct > drm_i915_gem_object *obj) > return obj->ops == &i915_gem_object_stolen_ops; > } > > -bool i915_gem_stolen_initialized(struct drm_device *drm) > +static bool i915_gem_stolen_initialized(struct drm_device *drm) > { > struct drm_i915_private *i915 = to_i915(drm); > > return drm_mm_initialized(&i915->mm.stolen); > } > > -u64 i915_gem_stolen_area_address(struct drm_device *drm) > +static u64 i915_gem_stolen_area_address(struct drm_device *drm) > { > struct drm_i915_private *i915 = to_i915(drm); > > return i915->dsm.stolen.start; > } > > -u64 i915_gem_stolen_area_size(struct drm_device *drm) > +static u64 i915_gem_stolen_area_size(struct drm_device *drm) > { > struct drm_i915_private *i915 = to_i915(drm); > > return resource_size(&i915->dsm.stolen); > } > > -u64 i915_gem_stolen_node_address(const struct intel_stolen_node > *node) > +static u64 i915_gem_stolen_node_offset(const struct > intel_stolen_node *node) > +{ > + return node->node.start; > +} > + > +static u64 i915_gem_stolen_node_address(const struct > intel_stolen_node *node) > { > struct drm_i915_private *i915 = node->i915; > > return i915->dsm.stolen.start + > i915_gem_stolen_node_offset(node); > } > > -bool i915_gem_stolen_node_allocated(const struct intel_stolen_node > *node) > +static bool i915_gem_stolen_node_allocated(const struct > intel_stolen_node *node) > { > return drm_mm_node_allocated(&node->node); > } > > -u64 i915_gem_stolen_node_offset(const struct intel_stolen_node > *node) > -{ > - return node->node.start; > -} > - > -u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node) > +static u64 i915_gem_stolen_node_size(const struct intel_stolen_node > *node) > { > return node->node.size; > } > > -struct intel_stolen_node *i915_gem_stolen_node_alloc(struct > drm_device *drm) > +static struct intel_stolen_node *i915_gem_stolen_node_alloc(struct > drm_device *drm) > { > struct drm_i915_private *i915 = to_i915(drm); > struct intel_stolen_node *node; > @@ -1082,7 +1083,22 @@ struct intel_stolen_node > *i915_gem_stolen_node_alloc(struct drm_device *drm) > return node; > } > > -void i915_gem_stolen_node_free(const struct intel_stolen_node *node) > +static void i915_gem_stolen_node_free(const struct intel_stolen_node > *node) > { > kfree(node); > } > + > +const struct intel_display_stolen_interface > i915_display_stolen_interface = { > + .insert_node_in_range = > i915_gem_stolen_insert_node_in_range, > + .insert_node = i915_gem_stolen_insert_node, > + .remove_node = i915_gem_stolen_remove_node, > + .initialized = i915_gem_stolen_initialized, > + .node_allocated = i915_gem_stolen_node_allocated, > + .node_offset = i915_gem_stolen_node_offset, > + .area_address = i915_gem_stolen_area_address, > + .area_size = i915_gem_stolen_area_size, > + .node_address = i915_gem_stolen_node_address, > + .node_size = i915_gem_stolen_node_size, > + .node_alloc = i915_gem_stolen_node_alloc, > + .node_free = i915_gem_stolen_node_free, > +}; > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h > b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h > index 7b0386002ed4..6db5262046a2 100644 > --- a/drivers/gpu/drm/i915/gem/i915_gem_stolen.h > +++ b/drivers/gpu/drm/i915/gem/i915_gem_stolen.h > @@ -8,17 +8,9 @@ > > #include <linux/types.h> > > -struct drm_device; > struct drm_i915_gem_object; > struct drm_i915_private; > -struct intel_stolen_node; > - > -int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 > size, > - unsigned alignment); > -int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node > *node, u64 size, > - unsigned alignment, u64 > start, > - u64 end); > -void i915_gem_stolen_remove_node(struct intel_stolen_node *node); > + > struct intel_memory_region * > i915_gem_stolen_smem_setup(struct drm_i915_private *i915, u16 type, > u16 instance); > @@ -34,17 +26,6 @@ bool i915_gem_object_is_stolen(const struct > drm_i915_gem_object *obj); > > #define I915_GEM_STOLEN_BIAS SZ_128K > > -bool i915_gem_stolen_initialized(struct drm_device *drm); > -u64 i915_gem_stolen_area_address(struct drm_device *drm); > -u64 i915_gem_stolen_area_size(struct drm_device *drm); > - > -u64 i915_gem_stolen_node_address(const struct intel_stolen_node > *node); > - > -bool i915_gem_stolen_node_allocated(const struct intel_stolen_node > *node); > -u64 i915_gem_stolen_node_offset(const struct intel_stolen_node > *node); > -u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node); > - > -struct intel_stolen_node *i915_gem_stolen_node_alloc(struct > drm_device *drm); > -void i915_gem_stolen_node_free(const struct intel_stolen_node > *node); > +extern const struct intel_display_stolen_interface > i915_display_stolen_interface; > > #endif /* __I915_GEM_STOLEN_H__ */ > diff --git a/drivers/gpu/drm/i915/i915_driver.c > b/drivers/gpu/drm/i915/i915_driver.c > index d98839427ef9..fe84df4eae8f 100644 > --- a/drivers/gpu/drm/i915/i915_driver.c > +++ b/drivers/gpu/drm/i915/i915_driver.c > @@ -762,6 +762,7 @@ static const struct > intel_display_parent_interface parent = { > .rpm = &i915_display_rpm_interface, > .irq = &i915_display_irq_interface, > .rps = &i915_display_rps_interface, > + .stolen = &i915_display_stolen_interface, > .vgpu_active = vgpu_active, > .has_fenced_regions = has_fenced_regions, > .fence_priority_display = fence_priority_display, > diff --git a/drivers/gpu/drm/xe/compat-i915- > headers/gem/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915- > headers/gem/i915_gem_stolen.h > deleted file mode 100644 > index 368045a470d1..000000000000 > --- a/drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_stolen.h > +++ /dev/null > @@ -1,40 +0,0 @@ > -/* SPDX-License-Identifier: MIT */ > -/* > - * Copyright © 2024 Intel Corporation > - */ > - > -#ifndef _I915_GEM_STOLEN_H_ > -#define _I915_GEM_STOLEN_H_ > - > -#include <linux/types.h> > - > -struct drm_device; > -struct intel_stolen_node; > - > -int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node > *node, u64 size, > - unsigned int align, u64 > start, u64 end); > - > -int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 > size, > - unsigned int align); > - > -void i915_gem_stolen_remove_node(struct intel_stolen_node *node); > - > -bool i915_gem_stolen_initialized(struct drm_device *drm); > - > -bool i915_gem_stolen_node_allocated(const struct intel_stolen_node > *node); > - > -u64 i915_gem_stolen_node_offset(const struct intel_stolen_node > *node); > - > -u64 i915_gem_stolen_area_address(struct drm_device *drm); > - > -u64 i915_gem_stolen_area_size(struct drm_device *drm); > - > -u64 i915_gem_stolen_node_address(const struct intel_stolen_node > *node); > - > -u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node); > - > -struct intel_stolen_node *i915_gem_stolen_node_alloc(struct > drm_device *drm); > - > -void i915_gem_stolen_node_free(const struct intel_stolen_node > *node); > - > -#endif > diff --git a/drivers/gpu/drm/xe/display/xe_display.c > b/drivers/gpu/drm/xe/display/xe_display.c > index 9d2aa69ea428..9fb5c2f3ddd8 100644 > --- a/drivers/gpu/drm/xe/display/xe_display.c > +++ b/drivers/gpu/drm/xe/display/xe_display.c > @@ -36,8 +36,9 @@ > #include "intel_opregion.h" > #include "skl_watermark.h" > #include "xe_display_rpm.h" > -#include "xe_module.h" > #include "xe_hdcp_gsc.h" > +#include "xe_module.h" > +#include "xe_stolen.h" > > /* Ensure drm and display members are placed properly. */ > INTEL_DISPLAY_MEMBER_STATIC_ASSERT(struct xe_device, drm, display); > @@ -538,6 +539,7 @@ static const struct > intel_display_parent_interface parent = { > .hdcp = &xe_display_hdcp_interface, > .rpm = &xe_display_rpm_interface, > .irq = &xe_display_irq_interface, > + .stolen = &xe_display_stolen_interface, > }; > > /** > diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c > b/drivers/gpu/drm/xe/display/xe_stolen.c > index 387506586288..cc7aec7db76c 100644 > --- a/drivers/gpu/drm/xe/display/xe_stolen.c > +++ b/drivers/gpu/drm/xe/display/xe_stolen.c > @@ -1,8 +1,10 @@ > // SPDX-License-Identifier: MIT > /* Copyright © 2025 Intel Corporation */ > > -#include "gem/i915_gem_stolen.h" > +#include <drm/intel/display_parent_interface.h> > + > #include "xe_res_cursor.h" > +#include "xe_stolen.h" > #include "xe_ttm_stolen_mgr.h" > #include "xe_validation.h" > > @@ -11,8 +13,8 @@ struct intel_stolen_node { > struct xe_bo *bo; > }; > > -int i915_gem_stolen_insert_node_in_range(struct intel_stolen_node > *node, u64 size, > - unsigned int align, u64 > start, u64 end) > +static int xe_stolen_insert_node_in_range(struct intel_stolen_node > *node, u64 size, > + unsigned int align, u64 > start, u64 end) > { > struct xe_device *xe = node->xe; > > @@ -41,7 +43,7 @@ int i915_gem_stolen_insert_node_in_range(struct > intel_stolen_node *node, u64 siz > return err; > } > > -int i915_gem_stolen_insert_node(struct intel_stolen_node *node, u64 > size, unsigned int align) > +static int xe_stolen_insert_node(struct intel_stolen_node *node, u64 > size, unsigned int align) > { > /* Not used on xe */ > WARN_ON(1); > @@ -49,25 +51,25 @@ int i915_gem_stolen_insert_node(struct > intel_stolen_node *node, u64 size, unsign > return -ENODEV; > } > > -void i915_gem_stolen_remove_node(struct intel_stolen_node *node) > +static void xe_stolen_remove_node(struct intel_stolen_node *node) > { > xe_bo_unpin_map_no_vm(node->bo); > node->bo = NULL; > } > > -bool i915_gem_stolen_initialized(struct drm_device *drm) > +static bool xe_stolen_initialized(struct drm_device *drm) > { > struct xe_device *xe = to_xe_device(drm); > > return ttm_manager_type(&xe->ttm, XE_PL_STOLEN); > } > > -bool i915_gem_stolen_node_allocated(const struct intel_stolen_node > *node) > +static bool xe_stolen_node_allocated(const struct intel_stolen_node > *node) > { > return node->bo; > } > > -u64 i915_gem_stolen_node_offset(const struct intel_stolen_node > *node) > +static u64 xe_stolen_node_offset(const struct intel_stolen_node > *node) > { > struct xe_res_cursor res; > > @@ -76,7 +78,7 @@ u64 i915_gem_stolen_node_offset(const struct > intel_stolen_node *node) > } > > /* Used for < gen4. These are not supported by Xe */ > -u64 i915_gem_stolen_area_address(struct drm_device *drm) > +static u64 xe_stolen_area_address(struct drm_device *drm) > { > WARN_ON(1); > > @@ -84,26 +86,26 @@ u64 i915_gem_stolen_area_address(struct > drm_device *drm) > } > > /* Used for gen9 specific WA. Gen9 is not supported by Xe */ > -u64 i915_gem_stolen_area_size(struct drm_device *drm) > +static u64 xe_stolen_area_size(struct drm_device *drm) > { > WARN_ON(1); > > return 0; > } > > -u64 i915_gem_stolen_node_address(const struct intel_stolen_node > *node) > +static u64 xe_stolen_node_address(const struct intel_stolen_node > *node) > { > struct xe_device *xe = node->xe; > > - return xe_ttm_stolen_gpu_offset(xe) + > i915_gem_stolen_node_offset(node); > + return xe_ttm_stolen_gpu_offset(xe) + > xe_stolen_node_offset(node); > } > > -u64 i915_gem_stolen_node_size(const struct intel_stolen_node *node) > +static u64 xe_stolen_node_size(const struct intel_stolen_node *node) > { > return node->bo->ttm.base.size; > } > > -struct intel_stolen_node *i915_gem_stolen_node_alloc(struct > drm_device *drm) > +static struct intel_stolen_node *xe_stolen_node_alloc(struct > drm_device *drm) > { > struct xe_device *xe = to_xe_device(drm); > struct intel_stolen_node *node; > @@ -117,7 +119,22 @@ struct intel_stolen_node > *i915_gem_stolen_node_alloc(struct drm_device *drm) > return node; > } > > -void i915_gem_stolen_node_free(const struct intel_stolen_node *node) > +static void xe_stolen_node_free(const struct intel_stolen_node > *node) > { > kfree(node); > } > + > +const struct intel_display_stolen_interface > xe_display_stolen_interface = { > + .insert_node_in_range = xe_stolen_insert_node_in_range, > + .insert_node = xe_stolen_insert_node, > + .remove_node = xe_stolen_remove_node, > + .initialized = xe_stolen_initialized, > + .node_allocated = xe_stolen_node_allocated, > + .node_offset = xe_stolen_node_offset, > + .area_address = xe_stolen_area_address, > + .area_size = xe_stolen_area_size, > + .node_address = xe_stolen_node_address, > + .node_size = xe_stolen_node_size, > + .node_alloc = xe_stolen_node_alloc, > + .node_free = xe_stolen_node_free, > +}; > diff --git a/drivers/gpu/drm/xe/display/xe_stolen.h > b/drivers/gpu/drm/xe/display/xe_stolen.h > new file mode 100644 > index 000000000000..db86b9e01242 > --- /dev/null > +++ b/drivers/gpu/drm/xe/display/xe_stolen.h > @@ -0,0 +1,9 @@ > +/* SPDX-License-Identifier: MIT */ > +/* Copyright © 2025 Intel Corporation */ > + > +#ifndef __XE_STOLEN_H__ > +#define __XE_STOLEN_H__ > + > +extern const struct intel_display_stolen_interface > xe_display_stolen_interface; > + > +#endif > diff --git a/include/drm/intel/display_parent_interface.h > b/include/drm/intel/display_parent_interface.h > index 61d1b22adc83..f590e846464d 100644 > --- a/include/drm/intel/display_parent_interface.h > +++ b/include/drm/intel/display_parent_interface.h > @@ -9,6 +9,7 @@ > struct dma_fence; > struct drm_device; > struct intel_hdcp_gsc_context; > +struct intel_stolen_node; > struct ref_tracker; > > struct intel_display_rpm_interface { > @@ -47,6 +48,22 @@ struct intel_display_rps_interface { > void (*ilk_irq_handler)(struct drm_device *drm); > }; > > +struct intel_display_stolen_interface { > + int (*insert_node_in_range)(struct intel_stolen_node *node, > u64 size, > + unsigned int align, u64 start, > u64 end); > + int (*insert_node)(struct intel_stolen_node *node, u64 size, > unsigned int align); > + void (*remove_node)(struct intel_stolen_node *node); > + bool (*initialized)(struct drm_device *drm); > + bool (*node_allocated)(const struct intel_stolen_node > *node); > + u64 (*node_offset)(const struct intel_stolen_node *node); > + u64 (*area_address)(struct drm_device *drm); > + u64 (*area_size)(struct drm_device *drm); > + u64 (*node_address)(const struct intel_stolen_node *node); > + u64 (*node_size)(const struct intel_stolen_node *node); > + struct intel_stolen_node *(*node_alloc)(struct drm_device > *drm); > + void (*node_free)(const struct intel_stolen_node *node); > +}; > + > /** > * struct intel_display_parent_interface - services parent driver > provides to display > * > @@ -72,6 +89,9 @@ struct intel_display_parent_interface { > /** @rpm: RPS interface. Optional. */ > const struct intel_display_rps_interface *rps; > > + /** @stolen: Stolen memory. */ > + const struct intel_display_stolen_interface *stolen; > + > /** @vgpu_active: Is vGPU active? Optional. */ > bool (*vgpu_active)(struct drm_device *drm); > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 4/4] drm/{i915, xe}/stolen: make insert_node, area_address, area_size optional 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula ` (2 preceding siblings ...) 2025-12-05 10:30 ` [PATCH v2 3/4] drm/{i915, xe}/stolen: move stolen memory handling to display parent interface Jani Nikula @ 2025-12-05 10:30 ` Jani Nikula 2025-12-09 14:16 ` Govindapillai, Vinod 2025-12-05 11:45 ` ✗ CI.checkpatch: warning for drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) Patchwork ` (4 subsequent siblings) 8 siblings, 1 reply; 14+ messages in thread From: Jani Nikula @ 2025-12-05 10:30 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula Since the stolen memory hooks are function pointers, make some of them optional instead of having to define them for xe. insert_node, area_address, and area_size are only needed on platforms not supported by xe. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_parent.c | 10 ++++++++ drivers/gpu/drm/xe/display/xe_stolen.c | 27 -------------------- include/drm/intel/display_parent_interface.h | 6 ++--- 3 files changed, 13 insertions(+), 30 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_parent.c b/drivers/gpu/drm/i915/display/intel_parent.c index 49cb64ca8c4c..d16163007545 100644 --- a/drivers/gpu/drm/i915/display/intel_parent.c +++ b/drivers/gpu/drm/i915/display/intel_parent.c @@ -17,6 +17,7 @@ * function pointer interface. */ +#include <drm/drm_print.h> #include <drm/intel/display_parent_interface.h> #include "intel_display_core.h" @@ -89,6 +90,9 @@ int intel_parent_stolen_insert_node_in_range(struct intel_display *display, int intel_parent_stolen_insert_node(struct intel_display *display, struct intel_stolen_node *node, u64 size, unsigned int align) { + if (drm_WARN_ON_ONCE(display->drm, !display->parent->stolen->insert_node)) + return -ENODEV; + return display->parent->stolen->insert_node(node, size, align); } @@ -116,11 +120,17 @@ u32 intel_parent_stolen_node_offset(struct intel_display *display, struct intel_ u64 intel_parent_stolen_area_address(struct intel_display *display) { + if (drm_WARN_ON_ONCE(display->drm, !display->parent->stolen->area_address)) + return 0; + return display->parent->stolen->area_address(display->drm); } u64 intel_parent_stolen_area_size(struct intel_display *display) { + if (drm_WARN_ON_ONCE(display->drm, !display->parent->stolen->area_size)) + return 0; + return display->parent->stolen->area_size(display->drm); } diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c b/drivers/gpu/drm/xe/display/xe_stolen.c index cc7aec7db76c..12771709183a 100644 --- a/drivers/gpu/drm/xe/display/xe_stolen.c +++ b/drivers/gpu/drm/xe/display/xe_stolen.c @@ -43,14 +43,6 @@ static int xe_stolen_insert_node_in_range(struct intel_stolen_node *node, u64 si return err; } -static int xe_stolen_insert_node(struct intel_stolen_node *node, u64 size, unsigned int align) -{ - /* Not used on xe */ - WARN_ON(1); - - return -ENODEV; -} - static void xe_stolen_remove_node(struct intel_stolen_node *node) { xe_bo_unpin_map_no_vm(node->bo); @@ -77,22 +69,6 @@ static u64 xe_stolen_node_offset(const struct intel_stolen_node *node) return res.start; } -/* Used for < gen4. These are not supported by Xe */ -static u64 xe_stolen_area_address(struct drm_device *drm) -{ - WARN_ON(1); - - return 0; -} - -/* Used for gen9 specific WA. Gen9 is not supported by Xe */ -static u64 xe_stolen_area_size(struct drm_device *drm) -{ - WARN_ON(1); - - return 0; -} - static u64 xe_stolen_node_address(const struct intel_stolen_node *node) { struct xe_device *xe = node->xe; @@ -126,13 +102,10 @@ static void xe_stolen_node_free(const struct intel_stolen_node *node) const struct intel_display_stolen_interface xe_display_stolen_interface = { .insert_node_in_range = xe_stolen_insert_node_in_range, - .insert_node = xe_stolen_insert_node, .remove_node = xe_stolen_remove_node, .initialized = xe_stolen_initialized, .node_allocated = xe_stolen_node_allocated, .node_offset = xe_stolen_node_offset, - .area_address = xe_stolen_area_address, - .area_size = xe_stolen_area_size, .node_address = xe_stolen_node_address, .node_size = xe_stolen_node_size, .node_alloc = xe_stolen_node_alloc, diff --git a/include/drm/intel/display_parent_interface.h b/include/drm/intel/display_parent_interface.h index f590e846464d..cc13b2ce1324 100644 --- a/include/drm/intel/display_parent_interface.h +++ b/include/drm/intel/display_parent_interface.h @@ -51,13 +51,13 @@ struct intel_display_rps_interface { struct intel_display_stolen_interface { int (*insert_node_in_range)(struct intel_stolen_node *node, u64 size, unsigned int align, u64 start, u64 end); - int (*insert_node)(struct intel_stolen_node *node, u64 size, unsigned int align); + int (*insert_node)(struct intel_stolen_node *node, u64 size, unsigned int align); /* Optional */ void (*remove_node)(struct intel_stolen_node *node); bool (*initialized)(struct drm_device *drm); bool (*node_allocated)(const struct intel_stolen_node *node); u64 (*node_offset)(const struct intel_stolen_node *node); - u64 (*area_address)(struct drm_device *drm); - u64 (*area_size)(struct drm_device *drm); + u64 (*area_address)(struct drm_device *drm); /* Optional */ + u64 (*area_size)(struct drm_device *drm); /* Optional */ u64 (*node_address)(const struct intel_stolen_node *node); u64 (*node_size)(const struct intel_stolen_node *node); struct intel_stolen_node *(*node_alloc)(struct drm_device *drm); -- 2.47.3 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH v2 4/4] drm/{i915, xe}/stolen: make insert_node, area_address, area_size optional 2025-12-05 10:30 ` [PATCH v2 4/4] drm/{i915, xe}/stolen: make insert_node, area_address, area_size optional Jani Nikula @ 2025-12-09 14:16 ` Govindapillai, Vinod 0 siblings, 0 replies; 14+ messages in thread From: Govindapillai, Vinod @ 2025-12-09 14:16 UTC (permalink / raw) To: intel-xe@lists.freedesktop.org, Nikula, Jani, intel-gfx@lists.freedesktop.org On Fri, 2025-12-05 at 12:30 +0200, Jani Nikula wrote: > Since the stolen memory hooks are function pointers, make some of > them > optional instead of having to define them for xe. > > insert_node, area_address, and area_size are only needed on platforms > not supported by xe. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_parent.c | 10 ++++++++ > drivers/gpu/drm/xe/display/xe_stolen.c | 27 ------------------ > -- > include/drm/intel/display_parent_interface.h | 6 ++--- > 3 files changed, 13 insertions(+), 30 deletions(-) > Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > diff --git a/drivers/gpu/drm/i915/display/intel_parent.c > b/drivers/gpu/drm/i915/display/intel_parent.c > index 49cb64ca8c4c..d16163007545 100644 > --- a/drivers/gpu/drm/i915/display/intel_parent.c > +++ b/drivers/gpu/drm/i915/display/intel_parent.c > @@ -17,6 +17,7 @@ > * function pointer interface. > */ > > +#include <drm/drm_print.h> > #include <drm/intel/display_parent_interface.h> > > #include "intel_display_core.h" > @@ -89,6 +90,9 @@ int intel_parent_stolen_insert_node_in_range(struct > intel_display *display, > int intel_parent_stolen_insert_node(struct intel_display *display, > struct intel_stolen_node *node, u64 size, > unsigned int align) > { > + if (drm_WARN_ON_ONCE(display->drm, !display->parent->stolen- > >insert_node)) > + return -ENODEV; > + > return display->parent->stolen->insert_node(node, size, > align); > } > > @@ -116,11 +120,17 @@ u32 intel_parent_stolen_node_offset(struct > intel_display *display, struct intel_ > > u64 intel_parent_stolen_area_address(struct intel_display *display) > { > + if (drm_WARN_ON_ONCE(display->drm, !display->parent->stolen- > >area_address)) > + return 0; > + > return display->parent->stolen->area_address(display->drm); > } > > u64 intel_parent_stolen_area_size(struct intel_display *display) > { > + if (drm_WARN_ON_ONCE(display->drm, !display->parent->stolen- > >area_size)) > + return 0; > + > return display->parent->stolen->area_size(display->drm); > } > > diff --git a/drivers/gpu/drm/xe/display/xe_stolen.c > b/drivers/gpu/drm/xe/display/xe_stolen.c > index cc7aec7db76c..12771709183a 100644 > --- a/drivers/gpu/drm/xe/display/xe_stolen.c > +++ b/drivers/gpu/drm/xe/display/xe_stolen.c > @@ -43,14 +43,6 @@ static int xe_stolen_insert_node_in_range(struct > intel_stolen_node *node, u64 si > return err; > } > > -static int xe_stolen_insert_node(struct intel_stolen_node *node, u64 > size, unsigned int align) > -{ > - /* Not used on xe */ > - WARN_ON(1); > - > - return -ENODEV; > -} > - > static void xe_stolen_remove_node(struct intel_stolen_node *node) > { > xe_bo_unpin_map_no_vm(node->bo); > @@ -77,22 +69,6 @@ static u64 xe_stolen_node_offset(const struct > intel_stolen_node *node) > return res.start; > } > > -/* Used for < gen4. These are not supported by Xe */ > -static u64 xe_stolen_area_address(struct drm_device *drm) > -{ > - WARN_ON(1); > - > - return 0; > -} > - > -/* Used for gen9 specific WA. Gen9 is not supported by Xe */ > -static u64 xe_stolen_area_size(struct drm_device *drm) > -{ > - WARN_ON(1); > - > - return 0; > -} > - > static u64 xe_stolen_node_address(const struct intel_stolen_node > *node) > { > struct xe_device *xe = node->xe; > @@ -126,13 +102,10 @@ static void xe_stolen_node_free(const struct > intel_stolen_node *node) > > const struct intel_display_stolen_interface > xe_display_stolen_interface = { > .insert_node_in_range = xe_stolen_insert_node_in_range, > - .insert_node = xe_stolen_insert_node, > .remove_node = xe_stolen_remove_node, > .initialized = xe_stolen_initialized, > .node_allocated = xe_stolen_node_allocated, > .node_offset = xe_stolen_node_offset, > - .area_address = xe_stolen_area_address, > - .area_size = xe_stolen_area_size, > .node_address = xe_stolen_node_address, > .node_size = xe_stolen_node_size, > .node_alloc = xe_stolen_node_alloc, > diff --git a/include/drm/intel/display_parent_interface.h > b/include/drm/intel/display_parent_interface.h > index f590e846464d..cc13b2ce1324 100644 > --- a/include/drm/intel/display_parent_interface.h > +++ b/include/drm/intel/display_parent_interface.h > @@ -51,13 +51,13 @@ struct intel_display_rps_interface { > struct intel_display_stolen_interface { > int (*insert_node_in_range)(struct intel_stolen_node *node, > u64 size, > unsigned int align, u64 start, > u64 end); > - int (*insert_node)(struct intel_stolen_node *node, u64 size, > unsigned int align); > + int (*insert_node)(struct intel_stolen_node *node, u64 size, > unsigned int align); /* Optional */ > void (*remove_node)(struct intel_stolen_node *node); > bool (*initialized)(struct drm_device *drm); > bool (*node_allocated)(const struct intel_stolen_node > *node); > u64 (*node_offset)(const struct intel_stolen_node *node); > - u64 (*area_address)(struct drm_device *drm); > - u64 (*area_size)(struct drm_device *drm); > + u64 (*area_address)(struct drm_device *drm); /* Optional */ > + u64 (*area_size)(struct drm_device *drm); /* Optional */ > u64 (*node_address)(const struct intel_stolen_node *node); > u64 (*node_size)(const struct intel_stolen_node *node); > struct intel_stolen_node *(*node_alloc)(struct drm_device > *drm); ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.checkpatch: warning for drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula ` (3 preceding siblings ...) 2025-12-05 10:30 ` [PATCH v2 4/4] drm/{i915, xe}/stolen: make insert_node, area_address, area_size optional Jani Nikula @ 2025-12-05 11:45 ` Patchwork 2025-12-05 11:46 ` ✓ CI.KUnit: success " Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2025-12-05 11:45 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-xe == Series Details == Series: drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) URL : https://patchwork.freedesktop.org/series/158508/ 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 2de9a3901bc28757c7906b454717b64e2a214021 + cd /kernel + git config --global --add safe.directory /kernel + git log -n1 commit 970080c6addb2ba29c619884fbfb91c38a4353a8 Author: Jani Nikula <jani.nikula@intel.com> Date: Fri Dec 5 12:30:30 2025 +0200 drm/{i915, xe}/stolen: make insert_node, area_address, area_size optional Since the stolen memory hooks are function pointers, make some of them optional instead of having to define them for xe. insert_node, area_address, and area_size are only needed on platforms not supported by xe. Signed-off-by: Jani Nikula <jani.nikula@intel.com> + /mt/dim checkpatch ed8ce44996043699e633e2f9868e185193d04182 drm-intel 63873bb9b169 drm/i915/fbc: let to_intel_display() do its generic magic 63f4c18c0894 drm/xe/stolen: unify interface with i915 316dbc575171 drm/{i915, xe}/stolen: move stolen memory handling to display parent interface -:36: WARNING:LONG_LINE: line length of 103 exceeds 100 columns #36: FILE: drivers/gpu/drm/i915/display/intel_fbc.c:395: + intel_parent_stolen_node_offset(display, fbc->compressed_fb), -:42: WARNING:LONG_LINE: line length of 104 exceeds 100 columns #42: FILE: drivers/gpu/drm/i915/display/intel_fbc.c:399: + intel_parent_stolen_node_offset(display, fbc->compressed_llb), -:237: WARNING:LONG_LINE: line length of 108 exceeds 100 columns #237: FILE: drivers/gpu/drm/i915/display/intel_parent.c:89: +int intel_parent_stolen_insert_node(struct intel_display *display, struct intel_stolen_node *node, u64 size, -:280: WARNING:LONG_LINE: line length of 102 exceeds 100 columns #280: FILE: drivers/gpu/drm/i915/display/intel_parent.c:132: +u64 intel_parent_stolen_node_size(struct intel_display *display, const struct intel_stolen_node *node) -:290: WARNING:LONG_LINE: line length of 103 exceeds 100 columns #290: FILE: drivers/gpu/drm/i915/display/intel_parent.c:142: +void intel_parent_stolen_node_free(struct intel_display *display, const struct intel_stolen_node *node) -:295: CHECK:LINE_SPACING: Please don't use multiple blank lines #295: FILE: drivers/gpu/drm/i915/display/intel_parent.c:147: + + -:318: WARNING:LONG_LINE: line length of 108 exceeds 100 columns #318: FILE: drivers/gpu/drm/i915/display/intel_parent.h:34: +int intel_parent_stolen_insert_node(struct intel_display *display, struct intel_stolen_node *node, u64 size, -:329: WARNING:LONG_LINE: line length of 103 exceeds 100 columns #329: FILE: drivers/gpu/drm/i915/display/intel_parent.h:45: +u64 intel_parent_stolen_node_size(struct intel_display *display, const struct intel_stolen_node *node); -:331: WARNING:LONG_LINE: line length of 104 exceeds 100 columns #331: FILE: drivers/gpu/drm/i915/display/intel_parent.h:47: +void intel_parent_stolen_node_free(struct intel_display *display, const struct intel_stolen_node *node); -:521: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #521: deleted file mode 100644 total: 0 errors, 9 warnings, 1 checks, 637 lines checked 970080c6addb drm/{i915, xe}/stolen: make insert_node, area_address, area_size optional -:120: WARNING:LONG_LINE_COMMENT: line length of 104 exceeds 100 columns #120: FILE: include/drm/intel/display_parent_interface.h:54: + int (*insert_node)(struct intel_stolen_node *node, u64 size, unsigned int align); /* Optional */ total: 0 errors, 1 warnings, 0 checks, 98 lines checked ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula ` (4 preceding siblings ...) 2025-12-05 11:45 ` ✗ CI.checkpatch: warning for drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) Patchwork @ 2025-12-05 11:46 ` Patchwork 2025-12-05 12:01 ` ✗ CI.checksparse: warning " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2025-12-05 11:46 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-xe == Series Details == Series: drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) URL : https://patchwork.freedesktop.org/series/158508/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [11:45:17] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [11:45:21] 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 [11:45:52] Starting KUnit Kernel (1/1)... [11:45:52] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [11:45:52] ================== guc_buf (11 subtests) =================== [11:45:52] [PASSED] test_smallest [11:45:52] [PASSED] test_largest [11:45:52] [PASSED] test_granular [11:45:52] [PASSED] test_unique [11:45:52] [PASSED] test_overlap [11:45:52] [PASSED] test_reusable [11:45:52] [PASSED] test_too_big [11:45:52] [PASSED] test_flush [11:45:52] [PASSED] test_lookup [11:45:52] [PASSED] test_data [11:45:52] [PASSED] test_class [11:45:52] ===================== [PASSED] guc_buf ===================== [11:45:52] =================== guc_dbm (7 subtests) =================== [11:45:52] [PASSED] test_empty [11:45:52] [PASSED] test_default [11:45:52] ======================== test_size ======================== [11:45:52] [PASSED] 4 [11:45:52] [PASSED] 8 [11:45:52] [PASSED] 32 [11:45:52] [PASSED] 256 [11:45:52] ==================== [PASSED] test_size ==================== [11:45:52] ======================= test_reuse ======================== [11:45:52] [PASSED] 4 [11:45:52] [PASSED] 8 [11:45:52] [PASSED] 32 [11:45:52] [PASSED] 256 [11:45:52] =================== [PASSED] test_reuse ==================== [11:45:52] =================== test_range_overlap ==================== [11:45:52] [PASSED] 4 [11:45:52] [PASSED] 8 [11:45:52] [PASSED] 32 [11:45:52] [PASSED] 256 [11:45:52] =============== [PASSED] test_range_overlap ================ [11:45:52] =================== test_range_compact ==================== [11:45:52] [PASSED] 4 [11:45:52] [PASSED] 8 [11:45:52] [PASSED] 32 [11:45:52] [PASSED] 256 [11:45:52] =============== [PASSED] test_range_compact ================ [11:45:52] ==================== test_range_spare ===================== [11:45:52] [PASSED] 4 [11:45:52] [PASSED] 8 [11:45:52] [PASSED] 32 [11:45:52] [PASSED] 256 [11:45:52] ================ [PASSED] test_range_spare ================= [11:45:52] ===================== [PASSED] guc_dbm ===================== [11:45:52] =================== guc_idm (6 subtests) =================== [11:45:52] [PASSED] bad_init [11:45:52] [PASSED] no_init [11:45:52] [PASSED] init_fini [11:45:52] [PASSED] check_used [11:45:52] [PASSED] check_quota [11:45:52] [PASSED] check_all [11:45:52] ===================== [PASSED] guc_idm ===================== [11:45:52] ================== no_relay (3 subtests) =================== [11:45:52] [PASSED] xe_drops_guc2pf_if_not_ready [11:45:52] [PASSED] xe_drops_guc2vf_if_not_ready [11:45:52] [PASSED] xe_rejects_send_if_not_ready [11:45:52] ==================== [PASSED] no_relay ===================== [11:45:52] ================== pf_relay (14 subtests) ================== [11:45:52] [PASSED] pf_rejects_guc2pf_too_short [11:45:52] [PASSED] pf_rejects_guc2pf_too_long [11:45:52] [PASSED] pf_rejects_guc2pf_no_payload [11:45:52] [PASSED] pf_fails_no_payload [11:45:52] [PASSED] pf_fails_bad_origin [11:45:52] [PASSED] pf_fails_bad_type [11:45:52] [PASSED] pf_txn_reports_error [11:45:52] [PASSED] pf_txn_sends_pf2guc [11:45:52] [PASSED] pf_sends_pf2guc [11:45:52] [SKIPPED] pf_loopback_nop [11:45:52] [SKIPPED] pf_loopback_echo [11:45:52] [SKIPPED] pf_loopback_fail [11:45:52] [SKIPPED] pf_loopback_busy [11:45:52] [SKIPPED] pf_loopback_retry [11:45:52] ==================== [PASSED] pf_relay ===================== [11:45:52] ================== vf_relay (3 subtests) =================== [11:45:52] [PASSED] vf_rejects_guc2vf_too_short [11:45:52] [PASSED] vf_rejects_guc2vf_too_long [11:45:52] [PASSED] vf_rejects_guc2vf_no_payload [11:45:52] ==================== [PASSED] vf_relay ===================== [11:45:52] ================ pf_gt_config (6 subtests) ================= [11:45:52] [PASSED] fair_contexts_1vf [11:45:52] [PASSED] fair_doorbells_1vf [11:45:52] [PASSED] fair_ggtt_1vf [11:45:52] ====================== fair_contexts ====================== [11:45:52] [PASSED] 1 VF [11:45:52] [PASSED] 2 VFs [11:45:52] [PASSED] 3 VFs [11:45:52] [PASSED] 4 VFs [11:45:52] [PASSED] 5 VFs [11:45:52] [PASSED] 6 VFs [11:45:52] [PASSED] 7 VFs [11:45:52] [PASSED] 8 VFs [11:45:52] [PASSED] 9 VFs [11:45:52] [PASSED] 10 VFs [11:45:52] [PASSED] 11 VFs [11:45:52] [PASSED] 12 VFs [11:45:52] [PASSED] 13 VFs [11:45:52] [PASSED] 14 VFs [11:45:52] [PASSED] 15 VFs [11:45:52] [PASSED] 16 VFs [11:45:52] [PASSED] 17 VFs [11:45:52] [PASSED] 18 VFs [11:45:52] [PASSED] 19 VFs [11:45:52] [PASSED] 20 VFs [11:45:52] [PASSED] 21 VFs [11:45:52] [PASSED] 22 VFs [11:45:52] [PASSED] 23 VFs [11:45:52] [PASSED] 24 VFs [11:45:52] [PASSED] 25 VFs [11:45:52] [PASSED] 26 VFs [11:45:52] [PASSED] 27 VFs [11:45:52] [PASSED] 28 VFs [11:45:52] [PASSED] 29 VFs [11:45:52] [PASSED] 30 VFs [11:45:52] [PASSED] 31 VFs [11:45:52] [PASSED] 32 VFs [11:45:52] [PASSED] 33 VFs [11:45:52] [PASSED] 34 VFs [11:45:52] [PASSED] 35 VFs [11:45:52] [PASSED] 36 VFs [11:45:52] [PASSED] 37 VFs [11:45:52] [PASSED] 38 VFs [11:45:52] [PASSED] 39 VFs [11:45:52] [PASSED] 40 VFs [11:45:52] [PASSED] 41 VFs [11:45:52] [PASSED] 42 VFs [11:45:52] [PASSED] 43 VFs [11:45:52] [PASSED] 44 VFs [11:45:52] [PASSED] 45 VFs [11:45:52] [PASSED] 46 VFs [11:45:52] [PASSED] 47 VFs [11:45:52] [PASSED] 48 VFs [11:45:52] [PASSED] 49 VFs [11:45:52] [PASSED] 50 VFs [11:45:52] [PASSED] 51 VFs [11:45:52] [PASSED] 52 VFs [11:45:52] [PASSED] 53 VFs [11:45:52] [PASSED] 54 VFs [11:45:52] [PASSED] 55 VFs [11:45:52] [PASSED] 56 VFs [11:45:52] [PASSED] 57 VFs [11:45:52] [PASSED] 58 VFs [11:45:52] [PASSED] 59 VFs [11:45:52] [PASSED] 60 VFs [11:45:52] [PASSED] 61 VFs [11:45:52] [PASSED] 62 VFs [11:45:52] [PASSED] 63 VFs [11:45:52] ================== [PASSED] fair_contexts ================== [11:45:52] ===================== fair_doorbells ====================== [11:45:52] [PASSED] 1 VF [11:45:52] [PASSED] 2 VFs [11:45:52] [PASSED] 3 VFs [11:45:52] [PASSED] 4 VFs [11:45:52] [PASSED] 5 VFs [11:45:52] [PASSED] 6 VFs [11:45:52] [PASSED] 7 VFs [11:45:52] [PASSED] 8 VFs [11:45:52] [PASSED] 9 VFs [11:45:52] [PASSED] 10 VFs [11:45:52] [PASSED] 11 VFs [11:45:52] [PASSED] 12 VFs [11:45:52] [PASSED] 13 VFs [11:45:52] [PASSED] 14 VFs [11:45:52] [PASSED] 15 VFs [11:45:52] [PASSED] 16 VFs [11:45:52] [PASSED] 17 VFs [11:45:52] [PASSED] 18 VFs [11:45:52] [PASSED] 19 VFs [11:45:52] [PASSED] 20 VFs [11:45:52] [PASSED] 21 VFs [11:45:52] [PASSED] 22 VFs [11:45:52] [PASSED] 23 VFs [11:45:52] [PASSED] 24 VFs [11:45:52] [PASSED] 25 VFs [11:45:52] [PASSED] 26 VFs [11:45:52] [PASSED] 27 VFs [11:45:52] [PASSED] 28 VFs [11:45:52] [PASSED] 29 VFs [11:45:52] [PASSED] 30 VFs [11:45:52] [PASSED] 31 VFs [11:45:52] [PASSED] 32 VFs [11:45:52] [PASSED] 33 VFs [11:45:52] [PASSED] 34 VFs [11:45:52] [PASSED] 35 VFs [11:45:52] [PASSED] 36 VFs [11:45:52] [PASSED] 37 VFs [11:45:52] [PASSED] 38 VFs [11:45:52] [PASSED] 39 VFs [11:45:52] [PASSED] 40 VFs [11:45:52] [PASSED] 41 VFs [11:45:52] [PASSED] 42 VFs [11:45:52] [PASSED] 43 VFs [11:45:52] [PASSED] 44 VFs [11:45:52] [PASSED] 45 VFs [11:45:52] [PASSED] 46 VFs [11:45:52] [PASSED] 47 VFs [11:45:52] [PASSED] 48 VFs [11:45:52] [PASSED] 49 VFs [11:45:52] [PASSED] 50 VFs [11:45:52] [PASSED] 51 VFs [11:45:52] [PASSED] 52 VFs [11:45:52] [PASSED] 53 VFs [11:45:52] [PASSED] 54 VFs [11:45:52] [PASSED] 55 VFs [11:45:52] [PASSED] 56 VFs [11:45:52] [PASSED] 57 VFs [11:45:52] [PASSED] 58 VFs [11:45:52] [PASSED] 59 VFs [11:45:52] [PASSED] 60 VFs [11:45:52] [PASSED] 61 VFs [11:45:52] [PASSED] 62 VFs [11:45:52] [PASSED] 63 VFs [11:45:52] ================= [PASSED] fair_doorbells ================== [11:45:52] ======================== fair_ggtt ======================== [11:45:52] [PASSED] 1 VF [11:45:52] [PASSED] 2 VFs [11:45:52] [PASSED] 3 VFs [11:45:52] [PASSED] 4 VFs [11:45:52] [PASSED] 5 VFs [11:45:52] [PASSED] 6 VFs [11:45:52] [PASSED] 7 VFs [11:45:52] [PASSED] 8 VFs [11:45:52] [PASSED] 9 VFs [11:45:52] [PASSED] 10 VFs [11:45:52] [PASSED] 11 VFs [11:45:52] [PASSED] 12 VFs [11:45:52] [PASSED] 13 VFs [11:45:52] [PASSED] 14 VFs [11:45:52] [PASSED] 15 VFs [11:45:52] [PASSED] 16 VFs [11:45:52] [PASSED] 17 VFs [11:45:52] [PASSED] 18 VFs [11:45:52] [PASSED] 19 VFs [11:45:52] [PASSED] 20 VFs [11:45:52] [PASSED] 21 VFs [11:45:52] [PASSED] 22 VFs [11:45:52] [PASSED] 23 VFs [11:45:52] [PASSED] 24 VFs [11:45:52] [PASSED] 25 VFs [11:45:52] [PASSED] 26 VFs [11:45:52] [PASSED] 27 VFs [11:45:52] [PASSED] 28 VFs [11:45:52] [PASSED] 29 VFs [11:45:52] [PASSED] 30 VFs [11:45:52] [PASSED] 31 VFs [11:45:52] [PASSED] 32 VFs [11:45:52] [PASSED] 33 VFs [11:45:52] [PASSED] 34 VFs [11:45:52] [PASSED] 35 VFs [11:45:52] [PASSED] 36 VFs [11:45:52] [PASSED] 37 VFs [11:45:52] [PASSED] 38 VFs [11:45:52] [PASSED] 39 VFs [11:45:52] [PASSED] 40 VFs [11:45:52] [PASSED] 41 VFs [11:45:52] [PASSED] 42 VFs [11:45:52] [PASSED] 43 VFs [11:45:52] [PASSED] 44 VFs [11:45:52] [PASSED] 45 VFs [11:45:52] [PASSED] 46 VFs [11:45:52] [PASSED] 47 VFs [11:45:52] [PASSED] 48 VFs [11:45:52] [PASSED] 49 VFs [11:45:52] [PASSED] 50 VFs [11:45:52] [PASSED] 51 VFs [11:45:52] [PASSED] 52 VFs [11:45:52] [PASSED] 53 VFs [11:45:52] [PASSED] 54 VFs [11:45:52] [PASSED] 55 VFs [11:45:52] [PASSED] 56 VFs [11:45:52] [PASSED] 57 VFs [11:45:52] [PASSED] 58 VFs [11:45:52] [PASSED] 59 VFs [11:45:52] [PASSED] 60 VFs [11:45:52] [PASSED] 61 VFs [11:45:52] [PASSED] 62 VFs [11:45:52] [PASSED] 63 VFs [11:45:52] ==================== [PASSED] fair_ggtt ==================== [11:45:52] ================== [PASSED] pf_gt_config =================== [11:45:52] ===================== lmtt (1 subtest) ===================== [11:45:52] ======================== test_ops ========================= [11:45:52] [PASSED] 2-level [11:45:52] [PASSED] multi-level [11:45:52] ==================== [PASSED] test_ops ===================== [11:45:52] ====================== [PASSED] lmtt ======================= [11:45:52] ================= pf_service (11 subtests) ================= [11:45:52] [PASSED] pf_negotiate_any [11:45:52] [PASSED] pf_negotiate_base_match [11:45:52] [PASSED] pf_negotiate_base_newer [11:45:52] [PASSED] pf_negotiate_base_next [11:45:52] [SKIPPED] pf_negotiate_base_older [11:45:52] [PASSED] pf_negotiate_base_prev [11:45:52] [PASSED] pf_negotiate_latest_match [11:45:52] [PASSED] pf_negotiate_latest_newer [11:45:52] [PASSED] pf_negotiate_latest_next [11:45:52] [SKIPPED] pf_negotiate_latest_older [11:45:52] [SKIPPED] pf_negotiate_latest_prev [11:45:52] =================== [PASSED] pf_service ==================== [11:45:52] ================= xe_guc_g2g (2 subtests) ================== [11:45:52] ============== xe_live_guc_g2g_kunit_default ============== [11:45:52] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [11:45:52] ============== xe_live_guc_g2g_kunit_allmem =============== [11:45:52] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [11:45:52] =================== [SKIPPED] xe_guc_g2g =================== [11:45:52] =================== xe_mocs (2 subtests) =================== [11:45:52] ================ xe_live_mocs_kernel_kunit ================ [11:45:52] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [11:45:52] ================ xe_live_mocs_reset_kunit ================= [11:45:52] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [11:45:52] ==================== [SKIPPED] xe_mocs ===================== [11:45:52] ================= xe_migrate (2 subtests) ================== [11:45:52] ================= xe_migrate_sanity_kunit ================= [11:45:52] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [11:45:52] ================== xe_validate_ccs_kunit ================== [11:45:52] ============= [SKIPPED] xe_validate_ccs_kunit ============== [11:45:52] =================== [SKIPPED] xe_migrate =================== [11:45:52] ================== xe_dma_buf (1 subtest) ================== [11:45:52] ==================== xe_dma_buf_kunit ===================== [11:45:52] ================ [SKIPPED] xe_dma_buf_kunit ================ [11:45:52] =================== [SKIPPED] xe_dma_buf =================== [11:45:52] ================= xe_bo_shrink (1 subtest) ================= [11:45:52] =================== xe_bo_shrink_kunit ==================== [11:45:52] =============== [SKIPPED] xe_bo_shrink_kunit =============== [11:45:52] ================== [SKIPPED] xe_bo_shrink ================== [11:45:52] ==================== xe_bo (2 subtests) ==================== [11:45:52] ================== xe_ccs_migrate_kunit =================== [11:45:52] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [11:45:52] ==================== xe_bo_evict_kunit ==================== [11:45:52] =============== [SKIPPED] xe_bo_evict_kunit ================ [11:45:52] ===================== [SKIPPED] xe_bo ====================== [11:45:52] ==================== args (11 subtests) ==================== [11:45:52] [PASSED] count_args_test [11:45:52] [PASSED] call_args_example [11:45:52] [PASSED] call_args_test [11:45:52] [PASSED] drop_first_arg_example [11:45:52] [PASSED] drop_first_arg_test [11:45:52] [PASSED] first_arg_example [11:45:52] [PASSED] first_arg_test [11:45:52] [PASSED] last_arg_example [11:45:52] [PASSED] last_arg_test [11:45:52] [PASSED] pick_arg_example [11:45:52] [PASSED] sep_comma_example [11:45:52] ====================== [PASSED] args ======================= [11:45:52] =================== xe_pci (3 subtests) ==================== [11:45:52] ==================== check_graphics_ip ==================== [11:45:52] [PASSED] 12.00 Xe_LP [11:45:52] [PASSED] 12.10 Xe_LP+ [11:45:52] [PASSED] 12.55 Xe_HPG [11:45:52] [PASSED] 12.60 Xe_HPC [11:45:52] [PASSED] 12.70 Xe_LPG [11:45:52] [PASSED] 12.71 Xe_LPG [11:45:52] [PASSED] 12.74 Xe_LPG+ [11:45:52] [PASSED] 20.01 Xe2_HPG [11:45:52] [PASSED] 20.02 Xe2_HPG [11:45:52] [PASSED] 20.04 Xe2_LPG [11:45:52] [PASSED] 30.00 Xe3_LPG [11:45:52] [PASSED] 30.01 Xe3_LPG [11:45:52] [PASSED] 30.03 Xe3_LPG [11:45:52] [PASSED] 30.04 Xe3_LPG [11:45:52] [PASSED] 30.05 Xe3_LPG [11:45:52] [PASSED] 35.11 Xe3p_XPC [11:45:52] ================ [PASSED] check_graphics_ip ================ [11:45:52] ===================== check_media_ip ====================== [11:45:52] [PASSED] 12.00 Xe_M [11:45:52] [PASSED] 12.55 Xe_HPM [11:45:52] [PASSED] 13.00 Xe_LPM+ [11:45:52] [PASSED] 13.01 Xe2_HPM [11:45:52] [PASSED] 20.00 Xe2_LPM [11:45:52] [PASSED] 30.00 Xe3_LPM [11:45:52] [PASSED] 30.02 Xe3_LPM [11:45:52] [PASSED] 35.00 Xe3p_LPM [11:45:52] [PASSED] 35.03 Xe3p_HPM [11:45:52] ================= [PASSED] check_media_ip ================== [11:45:52] =================== check_platform_desc =================== [11:45:52] [PASSED] 0x9A60 (TIGERLAKE) [11:45:52] [PASSED] 0x9A68 (TIGERLAKE) [11:45:52] [PASSED] 0x9A70 (TIGERLAKE) [11:45:52] [PASSED] 0x9A40 (TIGERLAKE) [11:45:52] [PASSED] 0x9A49 (TIGERLAKE) [11:45:52] [PASSED] 0x9A59 (TIGERLAKE) [11:45:52] [PASSED] 0x9A78 (TIGERLAKE) [11:45:52] [PASSED] 0x9AC0 (TIGERLAKE) [11:45:52] [PASSED] 0x9AC9 (TIGERLAKE) [11:45:52] [PASSED] 0x9AD9 (TIGERLAKE) [11:45:52] [PASSED] 0x9AF8 (TIGERLAKE) [11:45:52] [PASSED] 0x4C80 (ROCKETLAKE) [11:45:52] [PASSED] 0x4C8A (ROCKETLAKE) [11:45:52] [PASSED] 0x4C8B (ROCKETLAKE) [11:45:52] [PASSED] 0x4C8C (ROCKETLAKE) [11:45:52] [PASSED] 0x4C90 (ROCKETLAKE) [11:45:52] [PASSED] 0x4C9A (ROCKETLAKE) [11:45:52] [PASSED] 0x4680 (ALDERLAKE_S) [11:45:52] [PASSED] 0x4682 (ALDERLAKE_S) [11:45:52] [PASSED] 0x4688 (ALDERLAKE_S) [11:45:52] [PASSED] 0x468A (ALDERLAKE_S) [11:45:52] [PASSED] 0x468B (ALDERLAKE_S) [11:45:52] [PASSED] 0x4690 (ALDERLAKE_S) [11:45:52] [PASSED] 0x4692 (ALDERLAKE_S) [11:45:52] [PASSED] 0x4693 (ALDERLAKE_S) [11:45:52] [PASSED] 0x46A0 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46A1 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46A2 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46A3 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46A6 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46A8 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46AA (ALDERLAKE_P) [11:45:52] [PASSED] 0x462A (ALDERLAKE_P) [11:45:52] [PASSED] 0x4626 (ALDERLAKE_P) [11:45:52] [PASSED] 0x4628 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46B0 (ALDERLAKE_P) stty: 'standard input': Inappropriate ioctl for device [11:45:52] [PASSED] 0x46B1 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46B2 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46B3 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46C0 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46C1 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46C2 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46C3 (ALDERLAKE_P) [11:45:52] [PASSED] 0x46D0 (ALDERLAKE_N) [11:45:52] [PASSED] 0x46D1 (ALDERLAKE_N) [11:45:52] [PASSED] 0x46D2 (ALDERLAKE_N) [11:45:52] [PASSED] 0x46D3 (ALDERLAKE_N) [11:45:52] [PASSED] 0x46D4 (ALDERLAKE_N) [11:45:52] [PASSED] 0xA721 (ALDERLAKE_P) [11:45:52] [PASSED] 0xA7A1 (ALDERLAKE_P) [11:45:52] [PASSED] 0xA7A9 (ALDERLAKE_P) [11:45:52] [PASSED] 0xA7AC (ALDERLAKE_P) [11:45:52] [PASSED] 0xA7AD (ALDERLAKE_P) [11:45:52] [PASSED] 0xA720 (ALDERLAKE_P) [11:45:52] [PASSED] 0xA7A0 (ALDERLAKE_P) [11:45:52] [PASSED] 0xA7A8 (ALDERLAKE_P) [11:45:52] [PASSED] 0xA7AA (ALDERLAKE_P) [11:45:52] [PASSED] 0xA7AB (ALDERLAKE_P) [11:45:52] [PASSED] 0xA780 (ALDERLAKE_S) [11:45:52] [PASSED] 0xA781 (ALDERLAKE_S) [11:45:52] [PASSED] 0xA782 (ALDERLAKE_S) [11:45:52] [PASSED] 0xA783 (ALDERLAKE_S) [11:45:52] [PASSED] 0xA788 (ALDERLAKE_S) [11:45:52] [PASSED] 0xA789 (ALDERLAKE_S) [11:45:52] [PASSED] 0xA78A (ALDERLAKE_S) [11:45:52] [PASSED] 0xA78B (ALDERLAKE_S) [11:45:52] [PASSED] 0x4905 (DG1) [11:45:52] [PASSED] 0x4906 (DG1) [11:45:52] [PASSED] 0x4907 (DG1) [11:45:52] [PASSED] 0x4908 (DG1) [11:45:52] [PASSED] 0x4909 (DG1) [11:45:52] [PASSED] 0x56C0 (DG2) [11:45:52] [PASSED] 0x56C2 (DG2) [11:45:52] [PASSED] 0x56C1 (DG2) [11:45:52] [PASSED] 0x7D51 (METEORLAKE) [11:45:52] [PASSED] 0x7DD1 (METEORLAKE) [11:45:52] [PASSED] 0x7D41 (METEORLAKE) [11:45:52] [PASSED] 0x7D67 (METEORLAKE) [11:45:52] [PASSED] 0xB640 (METEORLAKE) [11:45:52] [PASSED] 0x56A0 (DG2) [11:45:52] [PASSED] 0x56A1 (DG2) [11:45:52] [PASSED] 0x56A2 (DG2) [11:45:52] [PASSED] 0x56BE (DG2) [11:45:52] [PASSED] 0x56BF (DG2) [11:45:52] [PASSED] 0x5690 (DG2) [11:45:52] [PASSED] 0x5691 (DG2) [11:45:52] [PASSED] 0x5692 (DG2) [11:45:52] [PASSED] 0x56A5 (DG2) [11:45:52] [PASSED] 0x56A6 (DG2) [11:45:52] [PASSED] 0x56B0 (DG2) [11:45:52] [PASSED] 0x56B1 (DG2) [11:45:52] [PASSED] 0x56BA (DG2) [11:45:52] [PASSED] 0x56BB (DG2) [11:45:52] [PASSED] 0x56BC (DG2) [11:45:52] [PASSED] 0x56BD (DG2) [11:45:52] [PASSED] 0x5693 (DG2) [11:45:52] [PASSED] 0x5694 (DG2) [11:45:52] [PASSED] 0x5695 (DG2) [11:45:52] [PASSED] 0x56A3 (DG2) [11:45:52] [PASSED] 0x56A4 (DG2) [11:45:52] [PASSED] 0x56B2 (DG2) [11:45:52] [PASSED] 0x56B3 (DG2) [11:45:52] [PASSED] 0x5696 (DG2) [11:45:52] [PASSED] 0x5697 (DG2) [11:45:52] [PASSED] 0xB69 (PVC) [11:45:52] [PASSED] 0xB6E (PVC) [11:45:52] [PASSED] 0xBD4 (PVC) [11:45:52] [PASSED] 0xBD5 (PVC) [11:45:52] [PASSED] 0xBD6 (PVC) [11:45:52] [PASSED] 0xBD7 (PVC) [11:45:52] [PASSED] 0xBD8 (PVC) [11:45:52] [PASSED] 0xBD9 (PVC) [11:45:52] [PASSED] 0xBDA (PVC) [11:45:52] [PASSED] 0xBDB (PVC) [11:45:52] [PASSED] 0xBE0 (PVC) [11:45:52] [PASSED] 0xBE1 (PVC) [11:45:52] [PASSED] 0xBE5 (PVC) [11:45:52] [PASSED] 0x7D40 (METEORLAKE) [11:45:52] [PASSED] 0x7D45 (METEORLAKE) [11:45:52] [PASSED] 0x7D55 (METEORLAKE) [11:45:52] [PASSED] 0x7D60 (METEORLAKE) [11:45:52] [PASSED] 0x7DD5 (METEORLAKE) [11:45:52] [PASSED] 0x6420 (LUNARLAKE) [11:45:52] [PASSED] 0x64A0 (LUNARLAKE) [11:45:52] [PASSED] 0x64B0 (LUNARLAKE) [11:45:52] [PASSED] 0xE202 (BATTLEMAGE) [11:45:52] [PASSED] 0xE209 (BATTLEMAGE) [11:45:52] [PASSED] 0xE20B (BATTLEMAGE) [11:45:52] [PASSED] 0xE20C (BATTLEMAGE) [11:45:52] [PASSED] 0xE20D (BATTLEMAGE) [11:45:52] [PASSED] 0xE210 (BATTLEMAGE) [11:45:52] [PASSED] 0xE211 (BATTLEMAGE) [11:45:52] [PASSED] 0xE212 (BATTLEMAGE) [11:45:52] [PASSED] 0xE216 (BATTLEMAGE) [11:45:52] [PASSED] 0xE220 (BATTLEMAGE) [11:45:52] [PASSED] 0xE221 (BATTLEMAGE) [11:45:52] [PASSED] 0xE222 (BATTLEMAGE) [11:45:52] [PASSED] 0xE223 (BATTLEMAGE) [11:45:52] [PASSED] 0xB080 (PANTHERLAKE) [11:45:52] [PASSED] 0xB081 (PANTHERLAKE) [11:45:52] [PASSED] 0xB082 (PANTHERLAKE) [11:45:52] [PASSED] 0xB083 (PANTHERLAKE) [11:45:52] [PASSED] 0xB084 (PANTHERLAKE) [11:45:52] [PASSED] 0xB085 (PANTHERLAKE) [11:45:52] [PASSED] 0xB086 (PANTHERLAKE) [11:45:52] [PASSED] 0xB087 (PANTHERLAKE) [11:45:52] [PASSED] 0xB08F (PANTHERLAKE) [11:45:52] [PASSED] 0xB090 (PANTHERLAKE) [11:45:52] [PASSED] 0xB0A0 (PANTHERLAKE) [11:45:52] [PASSED] 0xB0B0 (PANTHERLAKE) [11:45:52] [PASSED] 0xD740 (NOVALAKE_S) [11:45:52] [PASSED] 0xD741 (NOVALAKE_S) [11:45:52] [PASSED] 0xD742 (NOVALAKE_S) [11:45:52] [PASSED] 0xD743 (NOVALAKE_S) [11:45:52] [PASSED] 0xD744 (NOVALAKE_S) [11:45:52] [PASSED] 0xD745 (NOVALAKE_S) [11:45:52] [PASSED] 0x674C (CRESCENTISLAND) [11:45:52] [PASSED] 0xFD80 (PANTHERLAKE) [11:45:52] [PASSED] 0xFD81 (PANTHERLAKE) [11:45:52] =============== [PASSED] check_platform_desc =============== [11:45:52] ===================== [PASSED] xe_pci ====================== [11:45:52] =================== xe_rtp (2 subtests) ==================== [11:45:52] =============== xe_rtp_process_to_sr_tests ================ [11:45:52] [PASSED] coalesce-same-reg [11:45:52] [PASSED] no-match-no-add [11:45:52] [PASSED] match-or [11:45:52] [PASSED] match-or-xfail [11:45:52] [PASSED] no-match-no-add-multiple-rules [11:45:52] [PASSED] two-regs-two-entries [11:45:52] [PASSED] clr-one-set-other [11:45:52] [PASSED] set-field [11:45:52] [PASSED] conflict-duplicate [11:45:52] [PASSED] conflict-not-disjoint [11:45:52] [PASSED] conflict-reg-type [11:45:52] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [11:45:52] ================== xe_rtp_process_tests =================== [11:45:52] [PASSED] active1 [11:45:52] [PASSED] active2 [11:45:52] [PASSED] active-inactive [11:45:52] [PASSED] inactive-active [11:45:52] [PASSED] inactive-1st_or_active-inactive [11:45:52] [PASSED] inactive-2nd_or_active-inactive [11:45:52] [PASSED] inactive-last_or_active-inactive [11:45:52] [PASSED] inactive-no_or_active-inactive [11:45:52] ============== [PASSED] xe_rtp_process_tests =============== [11:45:52] ===================== [PASSED] xe_rtp ====================== [11:45:52] ==================== xe_wa (1 subtest) ===================== [11:45:52] ======================== xe_wa_gt ========================= [11:45:52] [PASSED] TIGERLAKE B0 [11:45:52] [PASSED] DG1 A0 [11:45:52] [PASSED] DG1 B0 [11:45:52] [PASSED] ALDERLAKE_S A0 [11:45:52] [PASSED] ALDERLAKE_S B0 [11:45:52] [PASSED] ALDERLAKE_S C0 [11:45:52] [PASSED] ALDERLAKE_S D0 [11:45:52] [PASSED] ALDERLAKE_P A0 [11:45:52] [PASSED] ALDERLAKE_P B0 [11:45:52] [PASSED] ALDERLAKE_P C0 [11:45:52] [PASSED] ALDERLAKE_S RPLS D0 [11:45:52] [PASSED] ALDERLAKE_P RPLU E0 [11:45:52] [PASSED] DG2 G10 C0 [11:45:52] [PASSED] DG2 G11 B1 [11:45:52] [PASSED] DG2 G12 A1 [11:45:52] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [11:45:52] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [11:45:52] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [11:45:52] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [11:45:52] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [11:45:52] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [11:45:52] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [11:45:52] ==================== [PASSED] xe_wa_gt ===================== [11:45:52] ====================== [PASSED] xe_wa ====================== [11:45:52] ============================================================ [11:45:52] Testing complete. Ran 510 tests: passed: 492, skipped: 18 [11:45:52] Elapsed time: 35.083s total, 4.241s configuring, 30.373s building, 0.459s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [11:45:52] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [11:45:54] 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 [11:46:19] Starting KUnit Kernel (1/1)... [11:46:19] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [11:46:19] ============ drm_test_pick_cmdline (2 subtests) ============ [11:46:19] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [11:46:19] =============== drm_test_pick_cmdline_named =============== [11:46:19] [PASSED] NTSC [11:46:19] [PASSED] NTSC-J [11:46:19] [PASSED] PAL [11:46:19] [PASSED] PAL-M [11:46:19] =========== [PASSED] drm_test_pick_cmdline_named =========== [11:46:19] ============== [PASSED] drm_test_pick_cmdline ============== [11:46:19] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [11:46:19] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [11:46:19] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [11:46:19] =========== drm_validate_clone_mode (2 subtests) =========== [11:46:19] ============== drm_test_check_in_clone_mode =============== [11:46:19] [PASSED] in_clone_mode [11:46:19] [PASSED] not_in_clone_mode [11:46:19] ========== [PASSED] drm_test_check_in_clone_mode =========== [11:46:19] =============== drm_test_check_valid_clones =============== [11:46:19] [PASSED] not_in_clone_mode [11:46:19] [PASSED] valid_clone [11:46:19] [PASSED] invalid_clone [11:46:19] =========== [PASSED] drm_test_check_valid_clones =========== [11:46:19] ============= [PASSED] drm_validate_clone_mode ============= [11:46:19] ============= drm_validate_modeset (1 subtest) ============= [11:46:19] [PASSED] drm_test_check_connector_changed_modeset [11:46:19] ============== [PASSED] drm_validate_modeset =============== [11:46:19] ====== drm_test_bridge_get_current_state (2 subtests) ====== [11:46:19] [PASSED] drm_test_drm_bridge_get_current_state_atomic [11:46:19] [PASSED] drm_test_drm_bridge_get_current_state_legacy [11:46:19] ======== [PASSED] drm_test_bridge_get_current_state ======== [11:46:19] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [11:46:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [11:46:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [11:46:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [11:46:19] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [11:46:19] ============== drm_bridge_alloc (2 subtests) =============== [11:46:19] [PASSED] drm_test_drm_bridge_alloc_basic [11:46:19] [PASSED] drm_test_drm_bridge_alloc_get_put [11:46:19] ================ [PASSED] drm_bridge_alloc ================= [11:46:19] ================== drm_buddy (8 subtests) ================== [11:46:19] [PASSED] drm_test_buddy_alloc_limit [11:46:19] [PASSED] drm_test_buddy_alloc_optimistic [11:46:19] [PASSED] drm_test_buddy_alloc_pessimistic [11:46:19] [PASSED] drm_test_buddy_alloc_pathological [11:46:19] [PASSED] drm_test_buddy_alloc_contiguous [11:46:19] [PASSED] drm_test_buddy_alloc_clear [11:46:19] [PASSED] drm_test_buddy_alloc_range_bias [11:46:19] [PASSED] drm_test_buddy_fragmentation_performance [11:46:19] ==================== [PASSED] drm_buddy ==================== [11:46:19] ============= drm_cmdline_parser (40 subtests) ============= [11:46:19] [PASSED] drm_test_cmdline_force_d_only [11:46:19] [PASSED] drm_test_cmdline_force_D_only_dvi [11:46:19] [PASSED] drm_test_cmdline_force_D_only_hdmi [11:46:19] [PASSED] drm_test_cmdline_force_D_only_not_digital [11:46:19] [PASSED] drm_test_cmdline_force_e_only [11:46:19] [PASSED] drm_test_cmdline_res [11:46:19] [PASSED] drm_test_cmdline_res_vesa [11:46:19] [PASSED] drm_test_cmdline_res_vesa_rblank [11:46:19] [PASSED] drm_test_cmdline_res_rblank [11:46:19] [PASSED] drm_test_cmdline_res_bpp [11:46:19] [PASSED] drm_test_cmdline_res_refresh [11:46:19] [PASSED] drm_test_cmdline_res_bpp_refresh [11:46:19] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [11:46:19] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [11:46:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [11:46:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [11:46:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [11:46:19] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [11:46:19] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [11:46:19] [PASSED] drm_test_cmdline_res_margins_force_on [11:46:19] [PASSED] drm_test_cmdline_res_vesa_margins [11:46:19] [PASSED] drm_test_cmdline_name [11:46:19] [PASSED] drm_test_cmdline_name_bpp [11:46:19] [PASSED] drm_test_cmdline_name_option [11:46:19] [PASSED] drm_test_cmdline_name_bpp_option [11:46:19] [PASSED] drm_test_cmdline_rotate_0 [11:46:19] [PASSED] drm_test_cmdline_rotate_90 [11:46:19] [PASSED] drm_test_cmdline_rotate_180 [11:46:19] [PASSED] drm_test_cmdline_rotate_270 [11:46:19] [PASSED] drm_test_cmdline_hmirror [11:46:19] [PASSED] drm_test_cmdline_vmirror [11:46:19] [PASSED] drm_test_cmdline_margin_options [11:46:19] [PASSED] drm_test_cmdline_multiple_options [11:46:19] [PASSED] drm_test_cmdline_bpp_extra_and_option [11:46:19] [PASSED] drm_test_cmdline_extra_and_option [11:46:19] [PASSED] drm_test_cmdline_freestanding_options [11:46:19] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [11:46:19] [PASSED] drm_test_cmdline_panel_orientation [11:46:19] ================ drm_test_cmdline_invalid ================= [11:46:19] [PASSED] margin_only [11:46:19] [PASSED] interlace_only [11:46:19] [PASSED] res_missing_x [11:46:19] [PASSED] res_missing_y [11:46:19] [PASSED] res_bad_y [11:46:19] [PASSED] res_missing_y_bpp [11:46:19] [PASSED] res_bad_bpp [11:46:19] [PASSED] res_bad_refresh [11:46:19] [PASSED] res_bpp_refresh_force_on_off [11:46:19] [PASSED] res_invalid_mode [11:46:19] [PASSED] res_bpp_wrong_place_mode [11:46:19] [PASSED] name_bpp_refresh [11:46:19] [PASSED] name_refresh [11:46:19] [PASSED] name_refresh_wrong_mode [11:46:19] [PASSED] name_refresh_invalid_mode [11:46:19] [PASSED] rotate_multiple [11:46:19] [PASSED] rotate_invalid_val [11:46:19] [PASSED] rotate_truncated [11:46:19] [PASSED] invalid_option [11:46:19] [PASSED] invalid_tv_option [11:46:19] [PASSED] truncated_tv_option [11:46:19] ============ [PASSED] drm_test_cmdline_invalid ============= [11:46:19] =============== drm_test_cmdline_tv_options =============== [11:46:19] [PASSED] NTSC [11:46:19] [PASSED] NTSC_443 [11:46:19] [PASSED] NTSC_J [11:46:19] [PASSED] PAL [11:46:19] [PASSED] PAL_M [11:46:19] [PASSED] PAL_N [11:46:19] [PASSED] SECAM [11:46:19] [PASSED] MONO_525 [11:46:19] [PASSED] MONO_625 [11:46:19] =========== [PASSED] drm_test_cmdline_tv_options =========== [11:46:19] =============== [PASSED] drm_cmdline_parser ================ [11:46:19] ========== drmm_connector_hdmi_init (20 subtests) ========== [11:46:19] [PASSED] drm_test_connector_hdmi_init_valid [11:46:19] [PASSED] drm_test_connector_hdmi_init_bpc_8 [11:46:19] [PASSED] drm_test_connector_hdmi_init_bpc_10 [11:46:19] [PASSED] drm_test_connector_hdmi_init_bpc_12 [11:46:19] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [11:46:19] [PASSED] drm_test_connector_hdmi_init_bpc_null [11:46:19] [PASSED] drm_test_connector_hdmi_init_formats_empty [11:46:19] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [11:46:19] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [11:46:19] [PASSED] supported_formats=0x9 yuv420_allowed=1 [11:46:19] [PASSED] supported_formats=0x9 yuv420_allowed=0 [11:46:19] [PASSED] supported_formats=0x3 yuv420_allowed=1 [11:46:19] [PASSED] supported_formats=0x3 yuv420_allowed=0 [11:46:19] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [11:46:19] [PASSED] drm_test_connector_hdmi_init_null_ddc [11:46:19] [PASSED] drm_test_connector_hdmi_init_null_product [11:46:19] [PASSED] drm_test_connector_hdmi_init_null_vendor [11:46:19] [PASSED] drm_test_connector_hdmi_init_product_length_exact [11:46:19] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [11:46:19] [PASSED] drm_test_connector_hdmi_init_product_valid [11:46:19] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [11:46:19] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [11:46:19] [PASSED] drm_test_connector_hdmi_init_vendor_valid [11:46:19] ========= drm_test_connector_hdmi_init_type_valid ========= [11:46:19] [PASSED] HDMI-A [11:46:19] [PASSED] HDMI-B [11:46:19] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [11:46:19] ======== drm_test_connector_hdmi_init_type_invalid ======== [11:46:19] [PASSED] Unknown [11:46:19] [PASSED] VGA [11:46:19] [PASSED] DVI-I [11:46:19] [PASSED] DVI-D [11:46:19] [PASSED] DVI-A [11:46:19] [PASSED] Composite [11:46:19] [PASSED] SVIDEO [11:46:19] [PASSED] LVDS [11:46:19] [PASSED] Component [11:46:19] [PASSED] DIN [11:46:19] [PASSED] DP [11:46:19] [PASSED] TV [11:46:19] [PASSED] eDP [11:46:19] [PASSED] Virtual [11:46:19] [PASSED] DSI [11:46:19] [PASSED] DPI [11:46:19] [PASSED] Writeback [11:46:19] [PASSED] SPI [11:46:19] [PASSED] USB [11:46:19] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [11:46:19] ============ [PASSED] drmm_connector_hdmi_init ============= [11:46:19] ============= drmm_connector_init (3 subtests) ============= [11:46:19] [PASSED] drm_test_drmm_connector_init [11:46:19] [PASSED] drm_test_drmm_connector_init_null_ddc [11:46:19] ========= drm_test_drmm_connector_init_type_valid ========= [11:46:19] [PASSED] Unknown [11:46:19] [PASSED] VGA [11:46:19] [PASSED] DVI-I [11:46:19] [PASSED] DVI-D [11:46:19] [PASSED] DVI-A [11:46:19] [PASSED] Composite [11:46:19] [PASSED] SVIDEO [11:46:19] [PASSED] LVDS [11:46:19] [PASSED] Component [11:46:19] [PASSED] DIN [11:46:19] [PASSED] DP [11:46:19] [PASSED] HDMI-A [11:46:19] [PASSED] HDMI-B [11:46:19] [PASSED] TV [11:46:19] [PASSED] eDP [11:46:19] [PASSED] Virtual [11:46:19] [PASSED] DSI [11:46:19] [PASSED] DPI [11:46:19] [PASSED] Writeback [11:46:19] [PASSED] SPI [11:46:19] [PASSED] USB [11:46:19] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [11:46:19] =============== [PASSED] drmm_connector_init =============== [11:46:19] ========= drm_connector_dynamic_init (6 subtests) ========== [11:46:19] [PASSED] drm_test_drm_connector_dynamic_init [11:46:19] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [11:46:19] [PASSED] drm_test_drm_connector_dynamic_init_not_added [11:46:19] [PASSED] drm_test_drm_connector_dynamic_init_properties [11:46:19] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [11:46:19] [PASSED] Unknown [11:46:19] [PASSED] VGA [11:46:19] [PASSED] DVI-I [11:46:19] [PASSED] DVI-D [11:46:19] [PASSED] DVI-A [11:46:19] [PASSED] Composite [11:46:19] [PASSED] SVIDEO [11:46:19] [PASSED] LVDS [11:46:19] [PASSED] Component [11:46:19] [PASSED] DIN [11:46:19] [PASSED] DP [11:46:19] [PASSED] HDMI-A [11:46:19] [PASSED] HDMI-B [11:46:19] [PASSED] TV [11:46:19] [PASSED] eDP [11:46:19] [PASSED] Virtual [11:46:19] [PASSED] DSI [11:46:19] [PASSED] DPI [11:46:19] [PASSED] Writeback [11:46:19] [PASSED] SPI [11:46:19] [PASSED] USB [11:46:19] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [11:46:19] ======== drm_test_drm_connector_dynamic_init_name ========= [11:46:19] [PASSED] Unknown [11:46:19] [PASSED] VGA [11:46:19] [PASSED] DVI-I [11:46:19] [PASSED] DVI-D [11:46:19] [PASSED] DVI-A [11:46:19] [PASSED] Composite [11:46:19] [PASSED] SVIDEO [11:46:19] [PASSED] LVDS [11:46:19] [PASSED] Component [11:46:19] [PASSED] DIN [11:46:19] [PASSED] DP [11:46:19] [PASSED] HDMI-A [11:46:19] [PASSED] HDMI-B [11:46:19] [PASSED] TV [11:46:19] [PASSED] eDP [11:46:19] [PASSED] Virtual [11:46:19] [PASSED] DSI [11:46:19] [PASSED] DPI [11:46:19] [PASSED] Writeback [11:46:19] [PASSED] SPI [11:46:19] [PASSED] USB [11:46:19] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [11:46:19] =========== [PASSED] drm_connector_dynamic_init ============ [11:46:19] ==== drm_connector_dynamic_register_early (4 subtests) ===== [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [11:46:19] ====== [PASSED] drm_connector_dynamic_register_early ======= [11:46:19] ======= drm_connector_dynamic_register (7 subtests) ======== [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_on_list [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_no_init [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [11:46:19] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [11:46:19] ========= [PASSED] drm_connector_dynamic_register ========== [11:46:19] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [11:46:19] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [11:46:19] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [11:46:19] === [PASSED] drm_connector_attach_broadcast_rgb_property === [11:46:19] ========== drm_get_tv_mode_from_name (2 subtests) ========== [11:46:19] ========== drm_test_get_tv_mode_from_name_valid =========== [11:46:19] [PASSED] NTSC [11:46:19] [PASSED] NTSC-443 [11:46:19] [PASSED] NTSC-J [11:46:19] [PASSED] PAL [11:46:19] [PASSED] PAL-M [11:46:19] [PASSED] PAL-N [11:46:19] [PASSED] SECAM [11:46:19] [PASSED] Mono [11:46:19] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [11:46:19] [PASSED] drm_test_get_tv_mode_from_name_truncated [11:46:19] ============ [PASSED] drm_get_tv_mode_from_name ============ [11:46:19] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [11:46:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [11:46:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [11:46:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [11:46:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [11:46:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [11:46:19] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [11:46:19] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [11:46:19] [PASSED] VIC 96 [11:46:19] [PASSED] VIC 97 [11:46:19] [PASSED] VIC 101 [11:46:19] [PASSED] VIC 102 [11:46:19] [PASSED] VIC 106 [11:46:19] [PASSED] VIC 107 [11:46:19] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [11:46:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [11:46:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [11:46:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [11:46:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [11:46:19] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [11:46:19] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [11:46:19] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [11:46:19] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [11:46:19] [PASSED] Automatic [11:46:19] [PASSED] Full [11:46:19] [PASSED] Limited 16:235 [11:46:19] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [11:46:19] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [11:46:19] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [11:46:19] == drm_hdmi_connector_get_output_format_name (2 subtests) == [11:46:19] === drm_test_drm_hdmi_connector_get_output_format_name ==== [11:46:19] [PASSED] RGB [11:46:19] [PASSED] YUV 4:2:0 [11:46:19] [PASSED] YUV 4:2:2 [11:46:19] [PASSED] YUV 4:4:4 [11:46:19] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [11:46:19] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [11:46:19] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [11:46:19] ============= drm_damage_helper (21 subtests) ============== [11:46:19] [PASSED] drm_test_damage_iter_no_damage [11:46:19] [PASSED] drm_test_damage_iter_no_damage_fractional_src [11:46:19] [PASSED] drm_test_damage_iter_no_damage_src_moved [11:46:19] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [11:46:19] [PASSED] drm_test_damage_iter_no_damage_not_visible [11:46:19] [PASSED] drm_test_damage_iter_no_damage_no_crtc [11:46:19] [PASSED] drm_test_damage_iter_no_damage_no_fb [11:46:19] [PASSED] drm_test_damage_iter_simple_damage [11:46:19] [PASSED] drm_test_damage_iter_single_damage [11:46:19] [PASSED] drm_test_damage_iter_single_damage_intersect_src [11:46:19] [PASSED] drm_test_damage_iter_single_damage_outside_src [11:46:19] [PASSED] drm_test_damage_iter_single_damage_fractional_src [11:46:19] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [11:46:19] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [11:46:19] [PASSED] drm_test_damage_iter_single_damage_src_moved [11:46:19] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [11:46:19] [PASSED] drm_test_damage_iter_damage [11:46:19] [PASSED] drm_test_damage_iter_damage_one_intersect [11:46:19] [PASSED] drm_test_damage_iter_damage_one_outside [11:46:19] [PASSED] drm_test_damage_iter_damage_src_moved [11:46:19] [PASSED] drm_test_damage_iter_damage_not_visible [11:46:19] ================ [PASSED] drm_damage_helper ================ [11:46:19] ============== drm_dp_mst_helper (3 subtests) ============== [11:46:19] ============== drm_test_dp_mst_calc_pbn_mode ============== [11:46:19] [PASSED] Clock 154000 BPP 30 DSC disabled [11:46:19] [PASSED] Clock 234000 BPP 30 DSC disabled [11:46:19] [PASSED] Clock 297000 BPP 24 DSC disabled [11:46:19] [PASSED] Clock 332880 BPP 24 DSC enabled [11:46:19] [PASSED] Clock 324540 BPP 24 DSC enabled [11:46:19] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [11:46:19] ============== drm_test_dp_mst_calc_pbn_div =============== [11:46:19] [PASSED] Link rate 2000000 lane count 4 [11:46:19] [PASSED] Link rate 2000000 lane count 2 [11:46:19] [PASSED] Link rate 2000000 lane count 1 [11:46:19] [PASSED] Link rate 1350000 lane count 4 [11:46:19] [PASSED] Link rate 1350000 lane count 2 [11:46:19] [PASSED] Link rate 1350000 lane count 1 [11:46:19] [PASSED] Link rate 1000000 lane count 4 [11:46:19] [PASSED] Link rate 1000000 lane count 2 [11:46:19] [PASSED] Link rate 1000000 lane count 1 [11:46:19] [PASSED] Link rate 810000 lane count 4 [11:46:19] [PASSED] Link rate 810000 lane count 2 [11:46:19] [PASSED] Link rate 810000 lane count 1 [11:46:19] [PASSED] Link rate 540000 lane count 4 [11:46:19] [PASSED] Link rate 540000 lane count 2 [11:46:19] [PASSED] Link rate 540000 lane count 1 [11:46:19] [PASSED] Link rate 270000 lane count 4 [11:46:19] [PASSED] Link rate 270000 lane count 2 [11:46:19] [PASSED] Link rate 270000 lane count 1 [11:46:19] [PASSED] Link rate 162000 lane count 4 [11:46:19] [PASSED] Link rate 162000 lane count 2 [11:46:19] [PASSED] Link rate 162000 lane count 1 [11:46:19] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [11:46:19] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [11:46:19] [PASSED] DP_ENUM_PATH_RESOURCES with port number [11:46:19] [PASSED] DP_POWER_UP_PHY with port number [11:46:19] [PASSED] DP_POWER_DOWN_PHY with port number [11:46:19] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [11:46:19] [PASSED] DP_ALLOCATE_PAYLOAD with port number [11:46:19] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [11:46:19] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [11:46:19] [PASSED] DP_QUERY_PAYLOAD with port number [11:46:19] [PASSED] DP_QUERY_PAYLOAD with VCPI [11:46:19] [PASSED] DP_REMOTE_DPCD_READ with port number [11:46:19] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [11:46:19] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [11:46:19] [PASSED] DP_REMOTE_DPCD_WRITE with port number [11:46:19] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [11:46:19] [PASSED] DP_REMOTE_DPCD_WRITE with data array [11:46:19] [PASSED] DP_REMOTE_I2C_READ with port number [11:46:19] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [11:46:19] [PASSED] DP_REMOTE_I2C_READ with transactions array [11:46:19] [PASSED] DP_REMOTE_I2C_WRITE with port number [11:46:19] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [11:46:19] [PASSED] DP_REMOTE_I2C_WRITE with data array [11:46:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [11:46:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [11:46:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [11:46:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [11:46:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [11:46:19] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [11:46:19] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [11:46:19] ================ [PASSED] drm_dp_mst_helper ================ [11:46:19] ================== drm_exec (7 subtests) =================== [11:46:19] [PASSED] sanitycheck [11:46:19] [PASSED] test_lock [11:46:19] [PASSED] test_lock_unlock [11:46:19] [PASSED] test_duplicates [11:46:19] [PASSED] test_prepare [11:46:19] [PASSED] test_prepare_array [11:46:19] [PASSED] test_multiple_loops [11:46:19] ==================== [PASSED] drm_exec ===================== [11:46:19] =========== drm_format_helper_test (17 subtests) =========== [11:46:19] ============== drm_test_fb_xrgb8888_to_gray8 ============== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [11:46:19] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [11:46:19] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [11:46:19] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [11:46:19] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [11:46:19] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [11:46:19] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [11:46:19] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [11:46:19] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [11:46:19] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [11:46:19] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [11:46:19] ============== drm_test_fb_xrgb8888_to_mono =============== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [11:46:19] ==================== drm_test_fb_swab ===================== [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ================ [PASSED] drm_test_fb_swab ================= [11:46:19] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [11:46:19] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [11:46:19] [PASSED] single_pixel_source_buffer [11:46:19] [PASSED] single_pixel_clip_rectangle [11:46:19] [PASSED] well_known_colors [11:46:19] [PASSED] destination_pitch [11:46:19] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [11:46:19] ================= drm_test_fb_clip_offset ================= [11:46:19] [PASSED] pass through [11:46:19] [PASSED] horizontal offset [11:46:19] [PASSED] vertical offset [11:46:19] [PASSED] horizontal and vertical offset [11:46:19] [PASSED] horizontal offset (custom pitch) [11:46:19] [PASSED] vertical offset (custom pitch) [11:46:19] [PASSED] horizontal and vertical offset (custom pitch) [11:46:19] ============= [PASSED] drm_test_fb_clip_offset ============= [11:46:19] =================== drm_test_fb_memcpy ==================== [11:46:19] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [11:46:19] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [11:46:19] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [11:46:19] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [11:46:19] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [11:46:19] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [11:46:19] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [11:46:19] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [11:46:19] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [11:46:19] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [11:46:19] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [11:46:19] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [11:46:19] =============== [PASSED] drm_test_fb_memcpy ================ [11:46:19] ============= [PASSED] drm_format_helper_test ============== [11:46:19] ================= drm_format (18 subtests) ================= [11:46:19] [PASSED] drm_test_format_block_width_invalid [11:46:19] [PASSED] drm_test_format_block_width_one_plane [11:46:19] [PASSED] drm_test_format_block_width_two_plane [11:46:19] [PASSED] drm_test_format_block_width_three_plane [11:46:19] [PASSED] drm_test_format_block_width_tiled [11:46:19] [PASSED] drm_test_format_block_height_invalid [11:46:19] [PASSED] drm_test_format_block_height_one_plane [11:46:19] [PASSED] drm_test_format_block_height_two_plane [11:46:19] [PASSED] drm_test_format_block_height_three_plane [11:46:19] [PASSED] drm_test_format_block_height_tiled [11:46:19] [PASSED] drm_test_format_min_pitch_invalid [11:46:19] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [11:46:19] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [11:46:19] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [11:46:19] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [11:46:19] [PASSED] drm_test_format_min_pitch_two_plane [11:46:19] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [11:46:19] [PASSED] drm_test_format_min_pitch_tiled [11:46:19] =================== [PASSED] drm_format ==================== [11:46:19] ============== drm_framebuffer (10 subtests) =============== [11:46:19] ========== drm_test_framebuffer_check_src_coords ========== [11:46:19] [PASSED] Success: source fits into fb [11:46:19] [PASSED] Fail: overflowing fb with x-axis coordinate [11:46:19] [PASSED] Fail: overflowing fb with y-axis coordinate [11:46:19] [PASSED] Fail: overflowing fb with source width [11:46:19] [PASSED] Fail: overflowing fb with source height [11:46:19] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [11:46:19] [PASSED] drm_test_framebuffer_cleanup [11:46:19] =============== drm_test_framebuffer_create =============== [11:46:19] [PASSED] ABGR8888 normal sizes [11:46:19] [PASSED] ABGR8888 max sizes [11:46:19] [PASSED] ABGR8888 pitch greater than min required [11:46:19] [PASSED] ABGR8888 pitch less than min required [11:46:19] [PASSED] ABGR8888 Invalid width [11:46:19] [PASSED] ABGR8888 Invalid buffer handle [11:46:19] [PASSED] No pixel format [11:46:19] [PASSED] ABGR8888 Width 0 [11:46:19] [PASSED] ABGR8888 Height 0 [11:46:19] [PASSED] ABGR8888 Out of bound height * pitch combination [11:46:19] [PASSED] ABGR8888 Large buffer offset [11:46:19] [PASSED] ABGR8888 Buffer offset for inexistent plane [11:46:19] [PASSED] ABGR8888 Invalid flag [11:46:19] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [11:46:19] [PASSED] ABGR8888 Valid buffer modifier [11:46:19] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [11:46:19] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [11:46:19] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [11:46:19] [PASSED] NV12 Normal sizes [11:46:19] [PASSED] NV12 Max sizes [11:46:19] [PASSED] NV12 Invalid pitch [11:46:19] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [11:46:19] [PASSED] NV12 different modifier per-plane [11:46:19] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [11:46:19] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [11:46:19] [PASSED] NV12 Modifier for inexistent plane [11:46:19] [PASSED] NV12 Handle for inexistent plane [11:46:19] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [11:46:19] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [11:46:19] [PASSED] YVU420 Normal sizes [11:46:19] [PASSED] YVU420 Max sizes [11:46:19] [PASSED] YVU420 Invalid pitch [11:46:19] [PASSED] YVU420 Different pitches [11:46:19] [PASSED] YVU420 Different buffer offsets/pitches [11:46:19] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [11:46:19] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [11:46:19] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [11:46:19] [PASSED] YVU420 Valid modifier [11:46:19] [PASSED] YVU420 Different modifiers per plane [11:46:19] [PASSED] YVU420 Modifier for inexistent plane [11:46:19] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [11:46:19] [PASSED] X0L2 Normal sizes [11:46:19] [PASSED] X0L2 Max sizes [11:46:19] [PASSED] X0L2 Invalid pitch [11:46:19] [PASSED] X0L2 Pitch greater than minimum required [11:46:19] [PASSED] X0L2 Handle for inexistent plane [11:46:19] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [11:46:19] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [11:46:19] [PASSED] X0L2 Valid modifier [11:46:19] [PASSED] X0L2 Modifier for inexistent plane [11:46:19] =========== [PASSED] drm_test_framebuffer_create =========== [11:46:19] [PASSED] drm_test_framebuffer_free [11:46:19] [PASSED] drm_test_framebuffer_init [11:46:19] [PASSED] drm_test_framebuffer_init_bad_format [11:46:19] [PASSED] drm_test_framebuffer_init_dev_mismatch [11:46:19] [PASSED] drm_test_framebuffer_lookup [11:46:19] [PASSED] drm_test_framebuffer_lookup_inexistent [11:46:19] [PASSED] drm_test_framebuffer_modifiers_not_supported [11:46:19] ================= [PASSED] drm_framebuffer ================= [11:46:19] ================ drm_gem_shmem (8 subtests) ================ [11:46:19] [PASSED] drm_gem_shmem_test_obj_create [11:46:19] [PASSED] drm_gem_shmem_test_obj_create_private [11:46:19] [PASSED] drm_gem_shmem_test_pin_pages [11:46:19] [PASSED] drm_gem_shmem_test_vmap [11:46:19] [PASSED] drm_gem_shmem_test_get_pages_sgt [11:46:19] [PASSED] drm_gem_shmem_test_get_sg_table [11:46:19] [PASSED] drm_gem_shmem_test_madvise [11:46:19] [PASSED] drm_gem_shmem_test_purge [11:46:19] ================== [PASSED] drm_gem_shmem ================== [11:46:19] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [11:46:19] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [11:46:19] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [11:46:19] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [11:46:19] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [11:46:19] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [11:46:19] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [11:46:19] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [11:46:19] [PASSED] Automatic [11:46:19] [PASSED] Full [11:46:19] [PASSED] Limited 16:235 [11:46:19] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [11:46:19] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [11:46:19] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [11:46:19] [PASSED] drm_test_check_disable_connector [11:46:19] [PASSED] drm_test_check_hdmi_funcs_reject_rate [11:46:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [11:46:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [11:46:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [11:46:19] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [11:46:19] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [11:46:19] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [11:46:19] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [11:46:19] [PASSED] drm_test_check_output_bpc_dvi [11:46:19] [PASSED] drm_test_check_output_bpc_format_vic_1 [11:46:19] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [11:46:19] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [11:46:19] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [11:46:19] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [11:46:19] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [11:46:19] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [11:46:19] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [11:46:19] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [11:46:19] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [11:46:19] [PASSED] drm_test_check_broadcast_rgb_value [11:46:19] [PASSED] drm_test_check_bpc_8_value [11:46:19] [PASSED] drm_test_check_bpc_10_value [11:46:19] [PASSED] drm_test_check_bpc_12_value [11:46:19] [PASSED] drm_test_check_format_value [11:46:19] [PASSED] drm_test_check_tmds_char_value [11:46:19] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [11:46:19] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [11:46:19] [PASSED] drm_test_check_mode_valid [11:46:19] [PASSED] drm_test_check_mode_valid_reject [11:46:19] [PASSED] drm_test_check_mode_valid_reject_rate [11:46:19] [PASSED] drm_test_check_mode_valid_reject_max_clock [11:46:19] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [11:46:19] ================= drm_managed (2 subtests) ================= [11:46:19] [PASSED] drm_test_managed_release_action [11:46:19] [PASSED] drm_test_managed_run_action [11:46:19] =================== [PASSED] drm_managed =================== [11:46:19] =================== drm_mm (6 subtests) ==================== [11:46:19] [PASSED] drm_test_mm_init [11:46:19] [PASSED] drm_test_mm_debug [11:46:19] [PASSED] drm_test_mm_align32 [11:46:19] [PASSED] drm_test_mm_align64 [11:46:19] [PASSED] drm_test_mm_lowest [11:46:19] [PASSED] drm_test_mm_highest [11:46:19] ===================== [PASSED] drm_mm ====================== [11:46:19] ============= drm_modes_analog_tv (5 subtests) ============= [11:46:19] [PASSED] drm_test_modes_analog_tv_mono_576i [11:46:19] [PASSED] drm_test_modes_analog_tv_ntsc_480i [11:46:19] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [11:46:19] [PASSED] drm_test_modes_analog_tv_pal_576i [11:46:19] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [11:46:19] =============== [PASSED] drm_modes_analog_tv =============== [11:46:19] ============== drm_plane_helper (2 subtests) =============== [11:46:19] =============== drm_test_check_plane_state ================ [11:46:19] [PASSED] clipping_simple [11:46:19] [PASSED] clipping_rotate_reflect [11:46:19] [PASSED] positioning_simple [11:46:19] [PASSED] upscaling [11:46:19] [PASSED] downscaling [11:46:19] [PASSED] rounding1 [11:46:19] [PASSED] rounding2 [11:46:19] [PASSED] rounding3 [11:46:19] [PASSED] rounding4 [11:46:19] =========== [PASSED] drm_test_check_plane_state ============ [11:46:19] =========== drm_test_check_invalid_plane_state ============ [11:46:19] [PASSED] positioning_invalid [11:46:19] [PASSED] upscaling_invalid [11:46:19] [PASSED] downscaling_invalid [11:46:19] ======= [PASSED] drm_test_check_invalid_plane_state ======== [11:46:19] ================ [PASSED] drm_plane_helper ================= [11:46:19] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [11:46:19] ====== drm_test_connector_helper_tv_get_modes_check ======= [11:46:19] [PASSED] None [11:46:19] [PASSED] PAL [11:46:19] [PASSED] NTSC [11:46:19] [PASSED] Both, NTSC Default [11:46:19] [PASSED] Both, PAL Default [11:46:19] [PASSED] Both, NTSC Default, with PAL on command-line [11:46:19] [PASSED] Both, PAL Default, with NTSC on command-line [11:46:19] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [11:46:19] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [11:46:19] ================== drm_rect (9 subtests) =================== [11:46:19] [PASSED] drm_test_rect_clip_scaled_div_by_zero [11:46:19] [PASSED] drm_test_rect_clip_scaled_not_clipped [11:46:19] [PASSED] drm_test_rect_clip_scaled_clipped [11:46:19] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [11:46:19] ================= drm_test_rect_intersect ================= [11:46:19] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [11:46:19] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [11:46:19] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [11:46:19] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [11:46:19] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [11:46:19] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [11:46:19] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [11:46:19] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [11:46:19] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [11:46:19] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [11:46:19] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [11:46:19] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [11:46:19] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [11:46:19] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [11:46:19] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [11:46:19] ============= [PASSED] drm_test_rect_intersect ============= [11:46:19] ================ drm_test_rect_calc_hscale ================ [11:46:19] [PASSED] normal use [11:46:19] [PASSED] out of max range [11:46:19] [PASSED] out of min range [11:46:19] [PASSED] zero dst [11:46:19] [PASSED] negative src [11:46:19] [PASSED] negative dst [11:46:19] ============ [PASSED] drm_test_rect_calc_hscale ============ [11:46:19] ================ drm_test_rect_calc_vscale ================ [11:46:19] [PASSED] normal use stty: 'standard input': Inappropriate ioctl for device [11:46:19] [PASSED] out of max range [11:46:19] [PASSED] out of min range [11:46:19] [PASSED] zero dst [11:46:19] [PASSED] negative src [11:46:19] [PASSED] negative dst [11:46:19] ============ [PASSED] drm_test_rect_calc_vscale ============ [11:46:19] ================== drm_test_rect_rotate =================== [11:46:19] [PASSED] reflect-x [11:46:19] [PASSED] reflect-y [11:46:19] [PASSED] rotate-0 [11:46:19] [PASSED] rotate-90 [11:46:19] [PASSED] rotate-180 [11:46:19] [PASSED] rotate-270 [11:46:19] ============== [PASSED] drm_test_rect_rotate =============== [11:46:19] ================ drm_test_rect_rotate_inv ================= [11:46:19] [PASSED] reflect-x [11:46:19] [PASSED] reflect-y [11:46:19] [PASSED] rotate-0 [11:46:19] [PASSED] rotate-90 [11:46:19] [PASSED] rotate-180 [11:46:19] [PASSED] rotate-270 [11:46:19] ============ [PASSED] drm_test_rect_rotate_inv ============= [11:46:19] ==================== [PASSED] drm_rect ===================== [11:46:19] ============ drm_sysfb_modeset_test (1 subtest) ============ [11:46:19] ============ drm_test_sysfb_build_fourcc_list ============= [11:46:19] [PASSED] no native formats [11:46:19] [PASSED] XRGB8888 as native format [11:46:19] [PASSED] remove duplicates [11:46:19] [PASSED] convert alpha formats [11:46:19] [PASSED] random formats [11:46:19] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [11:46:19] ============= [PASSED] drm_sysfb_modeset_test ============== [11:46:19] ================== drm_fixp (2 subtests) =================== [11:46:19] [PASSED] drm_test_int2fixp [11:46:19] [PASSED] drm_test_sm2fixp [11:46:19] ==================== [PASSED] drm_fixp ===================== [11:46:19] ============================================================ [11:46:19] Testing complete. Ran 624 tests: passed: 624 [11:46:19] Elapsed time: 26.778s total, 1.701s configuring, 24.661s building, 0.389s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [11:46:19] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [11:46:21] 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 [11:46:30] Starting KUnit Kernel (1/1)... [11:46:30] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [11:46:30] ================= ttm_device (5 subtests) ================== [11:46:30] [PASSED] ttm_device_init_basic [11:46:30] [PASSED] ttm_device_init_multiple [11:46:30] [PASSED] ttm_device_fini_basic [11:46:30] [PASSED] ttm_device_init_no_vma_man [11:46:30] ================== ttm_device_init_pools ================== [11:46:30] [PASSED] No DMA allocations, no DMA32 required [11:46:30] [PASSED] DMA allocations, DMA32 required [11:46:30] [PASSED] No DMA allocations, DMA32 required [11:46:30] [PASSED] DMA allocations, no DMA32 required [11:46:30] ============== [PASSED] ttm_device_init_pools ============== [11:46:30] =================== [PASSED] ttm_device ==================== [11:46:30] ================== ttm_pool (8 subtests) =================== [11:46:30] ================== ttm_pool_alloc_basic =================== [11:46:30] [PASSED] One page [11:46:30] [PASSED] More than one page [11:46:30] [PASSED] Above the allocation limit [11:46:30] [PASSED] One page, with coherent DMA mappings enabled [11:46:30] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [11:46:30] ============== [PASSED] ttm_pool_alloc_basic =============== [11:46:30] ============== ttm_pool_alloc_basic_dma_addr ============== [11:46:30] [PASSED] One page [11:46:30] [PASSED] More than one page [11:46:30] [PASSED] Above the allocation limit [11:46:30] [PASSED] One page, with coherent DMA mappings enabled [11:46:30] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [11:46:30] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [11:46:30] [PASSED] ttm_pool_alloc_order_caching_match [11:46:30] [PASSED] ttm_pool_alloc_caching_mismatch [11:46:30] [PASSED] ttm_pool_alloc_order_mismatch [11:46:30] [PASSED] ttm_pool_free_dma_alloc [11:46:30] [PASSED] ttm_pool_free_no_dma_alloc [11:46:30] [PASSED] ttm_pool_fini_basic [11:46:30] ==================== [PASSED] ttm_pool ===================== [11:46:30] ================ ttm_resource (8 subtests) ================= [11:46:30] ================= ttm_resource_init_basic ================= [11:46:30] [PASSED] Init resource in TTM_PL_SYSTEM [11:46:30] [PASSED] Init resource in TTM_PL_VRAM [11:46:30] [PASSED] Init resource in a private placement [11:46:30] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [11:46:30] ============= [PASSED] ttm_resource_init_basic ============= [11:46:30] [PASSED] ttm_resource_init_pinned [11:46:30] [PASSED] ttm_resource_fini_basic [11:46:30] [PASSED] ttm_resource_manager_init_basic [11:46:30] [PASSED] ttm_resource_manager_usage_basic [11:46:30] [PASSED] ttm_resource_manager_set_used_basic [11:46:30] [PASSED] ttm_sys_man_alloc_basic [11:46:30] [PASSED] ttm_sys_man_free_basic [11:46:30] ================== [PASSED] ttm_resource =================== [11:46:30] =================== ttm_tt (15 subtests) =================== [11:46:30] ==================== ttm_tt_init_basic ==================== [11:46:30] [PASSED] Page-aligned size [11:46:30] [PASSED] Extra pages requested [11:46:30] ================ [PASSED] ttm_tt_init_basic ================ [11:46:30] [PASSED] ttm_tt_init_misaligned [11:46:30] [PASSED] ttm_tt_fini_basic [11:46:30] [PASSED] ttm_tt_fini_sg [11:46:30] [PASSED] ttm_tt_fini_shmem [11:46:30] [PASSED] ttm_tt_create_basic [11:46:30] [PASSED] ttm_tt_create_invalid_bo_type [11:46:30] [PASSED] ttm_tt_create_ttm_exists [11:46:30] [PASSED] ttm_tt_create_failed [11:46:30] [PASSED] ttm_tt_destroy_basic [11:46:30] [PASSED] ttm_tt_populate_null_ttm [11:46:30] [PASSED] ttm_tt_populate_populated_ttm [11:46:30] [PASSED] ttm_tt_unpopulate_basic [11:46:30] [PASSED] ttm_tt_unpopulate_empty_ttm [11:46:30] [PASSED] ttm_tt_swapin_basic [11:46:30] ===================== [PASSED] ttm_tt ====================== [11:46:30] =================== ttm_bo (14 subtests) =================== [11:46:30] =========== ttm_bo_reserve_optimistic_no_ticket =========== [11:46:30] [PASSED] Cannot be interrupted and sleeps [11:46:30] [PASSED] Cannot be interrupted, locks straight away [11:46:30] [PASSED] Can be interrupted, sleeps [11:46:30] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [11:46:30] [PASSED] ttm_bo_reserve_locked_no_sleep [11:46:30] [PASSED] ttm_bo_reserve_no_wait_ticket [11:46:30] [PASSED] ttm_bo_reserve_double_resv [11:46:30] [PASSED] ttm_bo_reserve_interrupted [11:46:30] [PASSED] ttm_bo_reserve_deadlock [11:46:30] [PASSED] ttm_bo_unreserve_basic [11:46:30] [PASSED] ttm_bo_unreserve_pinned [11:46:30] [PASSED] ttm_bo_unreserve_bulk [11:46:30] [PASSED] ttm_bo_fini_basic [11:46:30] [PASSED] ttm_bo_fini_shared_resv [11:46:30] [PASSED] ttm_bo_pin_basic [11:46:30] [PASSED] ttm_bo_pin_unpin_resource [11:46:30] [PASSED] ttm_bo_multiple_pin_one_unpin [11:46:30] ===================== [PASSED] ttm_bo ====================== [11:46:30] ============== ttm_bo_validate (21 subtests) =============== [11:46:30] ============== ttm_bo_init_reserved_sys_man =============== [11:46:30] [PASSED] Buffer object for userspace [11:46:30] [PASSED] Kernel buffer object [11:46:30] [PASSED] Shared buffer object [11:46:30] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [11:46:30] ============== ttm_bo_init_reserved_mock_man ============== [11:46:30] [PASSED] Buffer object for userspace [11:46:30] [PASSED] Kernel buffer object [11:46:30] [PASSED] Shared buffer object [11:46:30] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [11:46:30] [PASSED] ttm_bo_init_reserved_resv [11:46:30] ================== ttm_bo_validate_basic ================== [11:46:30] [PASSED] Buffer object for userspace [11:46:30] [PASSED] Kernel buffer object [11:46:30] [PASSED] Shared buffer object [11:46:30] ============== [PASSED] ttm_bo_validate_basic ============== [11:46:30] [PASSED] ttm_bo_validate_invalid_placement [11:46:30] ============= ttm_bo_validate_same_placement ============== [11:46:30] [PASSED] System manager [11:46:30] [PASSED] VRAM manager [11:46:30] ========= [PASSED] ttm_bo_validate_same_placement ========== [11:46:30] [PASSED] ttm_bo_validate_failed_alloc [11:46:30] [PASSED] ttm_bo_validate_pinned [11:46:30] [PASSED] ttm_bo_validate_busy_placement [11:46:30] ================ ttm_bo_validate_multihop ================= [11:46:30] [PASSED] Buffer object for userspace [11:46:30] [PASSED] Kernel buffer object [11:46:30] [PASSED] Shared buffer object [11:46:30] ============ [PASSED] ttm_bo_validate_multihop ============= [11:46:30] ========== ttm_bo_validate_no_placement_signaled ========== [11:46:30] [PASSED] Buffer object in system domain, no page vector [11:46:30] [PASSED] Buffer object in system domain with an existing page vector [11:46:30] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [11:46:30] ======== ttm_bo_validate_no_placement_not_signaled ======== [11:46:30] [PASSED] Buffer object for userspace [11:46:30] [PASSED] Kernel buffer object [11:46:30] [PASSED] Shared buffer object [11:46:30] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [11:46:30] [PASSED] ttm_bo_validate_move_fence_signaled [11:46:30] ========= ttm_bo_validate_move_fence_not_signaled ========= [11:46:30] [PASSED] Waits for GPU [11:46:30] [PASSED] Tries to lock straight away [11:46:30] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [11:46:30] [PASSED] ttm_bo_validate_happy_evict [11:46:30] [PASSED] ttm_bo_validate_all_pinned_evict [11:46:30] [PASSED] ttm_bo_validate_allowed_only_evict [11:46:30] [PASSED] ttm_bo_validate_deleted_evict [11:46:30] [PASSED] ttm_bo_validate_busy_domain_evict [11:46:30] [PASSED] ttm_bo_validate_evict_gutting [11:46:30] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [11:46:30] ================= [PASSED] ttm_bo_validate ================= [11:46:30] ============================================================ [11:46:30] Testing complete. Ran 101 tests: passed: 101 [11:46:30] Elapsed time: 11.123s total, 1.592s configuring, 9.314s building, 0.187s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.checksparse: warning for drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula ` (5 preceding siblings ...) 2025-12-05 11:46 ` ✓ CI.KUnit: success " Patchwork @ 2025-12-05 12:01 ` Patchwork 2025-12-05 12:49 ` ✓ Xe.CI.BAT: success " Patchwork 2025-12-05 14:30 ` ✗ Xe.CI.Full: failure " Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2025-12-05 12:01 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-xe == Series Details == Series: drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) URL : https://patchwork.freedesktop.org/series/158508/ State : warning == Summary == + trap cleanup EXIT + KERNEL=/kernel + MT=/root/linux/maintainer-tools + git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools Cloning into '/root/linux/maintainer-tools'... warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/ + make -C /root/linux/maintainer-tools make: Entering directory '/root/linux/maintainer-tools' cc -O2 -g -Wextra -o remap-log remap-log.c make: Leaving directory '/root/linux/maintainer-tools' + cd /kernel + git config --global --add safe.directory /kernel + /root/linux/maintainer-tools/dim sparse --fast ed8ce44996043699e633e2f9868e185193d04182 Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3) Fast mode used, each commit won't be checked separately. +drivers/gpu/drm/i915/display/intel_display_types.h:2082:24: warning: unreplaced symbol '<noident>' +drivers/gpu/drm/i915/display/intel_display_types.h:2082:24: warning: unreplaced symbol '<noident>' +drivers/gpu/drm/i915/display/intel_display_types.h:2095:24: warning: unreplaced symbol '<noident>' +drivers/gpu/drm/i915/display/intel_hdcp.c: note: in included file: +drivers/gpu/drm/i915/display/intel_hotplug.c: note: in included file: +drivers/gpu/drm/i915/gt/intel_reset.c:1569:12: warning: context imbalance in '_intel_gt_reset_lock' - different lock contexts for basic block +drivers/gpu/drm/i915/gt/intel_sseu.c:600:17: error: too long token expansion +drivers/gpu/drm/i915/i915_active.c:1062:16: warning: context imbalance in '__i915_active_fence_set' - different lock contexts for basic block +drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces): +drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces): +drivers/gpu/drm/i915/i915_drm_client.c:92:9: expected struct list_head const *list +drivers/gpu/drm/i915/i915_drm_client.c:92:9: got struct list_head [noderef] __rcu *pos +drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head * +drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head * +drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu * +drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu * +drivers/gpu/drm/i915/i915_drm_client.c:92:9: warning: incorrect type in argument 1 (different address spaces) +drivers/gpu/drm/i915/i915_gpu_error.c:692:3: warning: symbol 'guc_hw_reg_state' was not declared. Should it be static? +drivers/gpu/drm/i915/intel_uncore.c:1930:1: warning: context imbalance in 'fwtable_read8' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:1931:1: warning: context imbalance in 'fwtable_read16' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:1932:1: warning: context imbalance in 'fwtable_read32' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:1933:1: warning: context imbalance in 'fwtable_read64' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:1998:1: warning: context imbalance in 'gen6_write8' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:1999:1: warning: context imbalance in 'gen6_write16' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:2000:1: warning: context imbalance in 'gen6_write32' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:2020:1: warning: context imbalance in 'fwtable_write8' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:2021:1: warning: context imbalance in 'fwtable_write16' - unexpected unlock +drivers/gpu/drm/i915/intel_uncore.c:2022:1: warning: context imbalance in 'fwtable_write32' - unexpected unlock +drivers/gpu/drm/i915/intel_wakeref.c:148:19: warning: context imbalance in 'wakeref_auto_timeout' - unexpected unlock + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula ` (6 preceding siblings ...) 2025-12-05 12:01 ` ✗ CI.checksparse: warning " Patchwork @ 2025-12-05 12:49 ` Patchwork 2025-12-05 14:30 ` ✗ Xe.CI.Full: failure " Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2025-12-05 12:49 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 900 bytes --] == Series Details == Series: drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) URL : https://patchwork.freedesktop.org/series/158508/ State : success == Summary == CI Bug Log - changes from xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2_BAT -> xe-pw-158508v2_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * Linux: xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2 -> xe-pw-158508v2 IGT_8655: 8655 xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2: 7954eb633a41ad5f2012477cdc245ec0cf07e7a2 xe-pw-158508v2: 158508v2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/index.html [-- Attachment #2: Type: text/html, Size: 1448 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.Full: failure for drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) 2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula ` (7 preceding siblings ...) 2025-12-05 12:49 ` ✓ Xe.CI.BAT: success " Patchwork @ 2025-12-05 14:30 ` Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2025-12-05 14:30 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 154820 bytes --] == Series Details == Series: drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) URL : https://patchwork.freedesktop.org/series/158508/ State : failure == Summary == CI Bug Log - changes from xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2_FULL -> xe-pw-158508v2_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-158508v2_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-158508v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-158508v2_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: NOTRUN -> [FAIL][1] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-adlp: NOTRUN -> [DMESG-WARN][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html #### Warnings #### * igt@kms_flip@flip-vs-suspend-interruptible: - shard-adlp: [ABORT][3] ([Intel XE#6675]) -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html Known issues ------------ Here are the changes found in xe-pw-158508v2_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_3d@basic: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#6011]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_3d@basic.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2233]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#623]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1466]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x: - shard-lnl: NOTRUN -> [FAIL][9] ([Intel XE#6676]) +18 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x.html * igt@kms_async_flips@invalid-async-flip@pipe-b-edp-1: - shard-lnl: NOTRUN -> [FAIL][10] ([Intel XE#6678]) +2 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_async_flips@invalid-async-flip@pipe-b-edp-1.html * igt@kms_async_flips@test-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#664]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_async_flips@test-time-stamp: - shard-lnl: NOTRUN -> [FAIL][12] ([Intel XE#6677]) +5 other tests fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_async_flips@test-time-stamp.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3279]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2370]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +11 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +31 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) +10 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3658]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +11 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +36 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +32 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html - shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#316]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#610]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#610]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1428]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-adlp: NOTRUN -> [FAIL][26] ([Intel XE#1231]) +2 other tests fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-adlp: NOTRUN -> [FAIL][27] ([Intel XE#1874]) +2 other tests fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +38 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#619]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@kms_big_fb@yf-tiled-addfb.html - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2328]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb.html - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#619]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1467]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2191]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2191]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#367]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#367]) +7 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#367]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#367]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1512]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#787]) +356 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#2907]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2887]) +49 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +89 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#455] / [Intel XE#787]) +101 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2669]) +15 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#787]) +134 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#3432]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#3432]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#3442]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#3442]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#2907]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2887]) +55 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][55] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][56] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2652] / [Intel XE#787]) +44 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#4418]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#4418]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#4418]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#4416] / [Intel XE#455]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_cdclk@plane-scaling.html - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2724]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#4416]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#4416]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#306]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2325]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@degamma: - shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#306]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#306]) +8 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#373]) +27 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2252]) +33 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#373]) +36 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#373]) +35 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#6507]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_chamelium_sharpness_filter@filter-basic.html - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#6507]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_color@legacy-gamma@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#4445]) +4 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_color@legacy-gamma@pipe-a-dp-2.html * igt@kms_colorop@plane-xr24-xr24-pq_eotf-pq_inv_eotf: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6704]) +31 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_colorop@plane-xr24-xr24-pq_eotf-pq_inv_eotf.html - shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#6704]) +22 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_colorop@plane-xr24-xr24-pq_eotf-pq_inv_eotf.html * igt@kms_colorop@plane-xr30-xr30-bt2020_oetf: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#6704]) +32 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_colorop@plane-xr30-xr30-bt2020_oetf.html * igt@kms_colorop@plane-xr30-xr30-srgb_eotf: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6704]) +22 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_colorop@plane-xr30-xr30-srgb_eotf.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2341]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#307]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#307]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2390]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html - shard-adlp: NOTRUN -> [SKIP][84] ([Intel XE#307]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#1178]) +6 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#3278]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][87] ([Intel XE#3304]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][88] ([Intel XE#1178]) +8 other tests fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@suspend-resume: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#6705]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2320]) +14 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#308]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2321]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#308]) +6 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2321]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1424]) +15 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#309]) +16 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#323]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#323]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#323]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2286]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#1508]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1508]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4210]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#4302]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#4494] / [i915#3804]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#4354]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@kms_dp_link_training@non-uhbr-sst.html - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4354]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#4354]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-adlp: NOTRUN -> [SKIP][109] ([Intel XE#4331]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#4294]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2244]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2244]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fb_coherency@memset-crc: - shard-adlp: NOTRUN -> [CRASH][113] ([Intel XE#6706]) +1 other test crash [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@kms_fb_coherency@memset-crc.html - shard-bmg: NOTRUN -> [CRASH][114] ([Intel XE#6706]) +1 other test crash [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_fb_coherency@memset-crc.html - shard-dg2-set2: NOTRUN -> [CRASH][115] ([Intel XE#6706]) +1 other test crash [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@kms_fb_coherency@memset-crc.html * igt@kms_fb_coherency@memset-crc@mmap-offset-wc: - shard-lnl: NOTRUN -> [CRASH][116] ([Intel XE#6706]) +1 other test crash [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_fb_coherency@memset-crc@mmap-offset-wc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#4422]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html - shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#4422]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4422]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#4422]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#4156]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#776]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#776]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2372]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#701]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#701]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_feature_discovery@chamelium.html - shard-adlp: NOTRUN -> [SKIP][127] ([Intel XE#701]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#703]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#1138]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@kms_feature_discovery@display-4x.html - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#1138]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_feature_discovery@display-4x.html - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1138]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_feature_discovery@display-4x.html - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1138]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#1137]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_feature_discovery@dp-mst.html - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2375]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@kms_feature_discovery@dp-mst.html - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1137]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1137]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-adlp: NOTRUN -> [SKIP][137] ([Intel XE#1135]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_feature_discovery@psr1.html - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2374]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_feature_discovery@psr1.html - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1135]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1421]) +25 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-adlp: NOTRUN -> [SKIP][141] ([Intel XE#310]) +21 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: NOTRUN -> [FAIL][142] ([Intel XE#301]) +1 other test fail [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][143] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2293] / [Intel XE#2380]) +12 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1401]) +14 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1397] / [Intel XE#1745]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1397]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2293]) +12 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1401] / [Intel XE#1745]) +14 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_force_connector_basic@force-edid: - shard-adlp: NOTRUN -> [ABORT][150] ([Intel XE#2953]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@kms_force_connector_basic@force-edid.html - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#352]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt: - shard-adlp: NOTRUN -> [SKIP][152] ([Intel XE#6312]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt: - shard-adlp: NOTRUN -> [SKIP][153] ([Intel XE#651]) +37 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#651]) +103 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render: - shard-adlp: NOTRUN -> [FAIL][155] ([Intel XE#5671]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#4141]) +48 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-adlp: NOTRUN -> [SKIP][157] ([Intel XE#656]) +106 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#6312]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2311]) +105 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#651]) +43 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#658]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1469]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2313]) +101 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-adlp: NOTRUN -> [SKIP][164] ([Intel XE#653]) +38 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-adlp: NOTRUN -> [SKIP][165] ([Intel XE#1151]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2352]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#6312]) +13 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#656]) +119 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#653]) +103 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1470]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1470] / [Intel XE#2853]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#1503]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#1503]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#1450]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_joiner@basic-force-big-joiner: - shard-adlp: NOTRUN -> [SKIP][176] ([Intel XE#2925] / [Intel XE#3012]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#2925]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@kms_joiner@basic-max-non-joiner.html - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#2925]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_joiner@basic-max-non-joiner.html - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#6590]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2934] / [Intel XE#6590]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#2925] / [Intel XE#2927]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#2925] / [Intel XE#2927]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-adlp: NOTRUN -> [SKIP][183] ([Intel XE#2925] / [Intel XE#2927]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2927] / [Intel XE#6590]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-adlp: NOTRUN -> [SKIP][185] ([Intel XE#2925]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#5624]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-adlp: NOTRUN -> [SKIP][187] ([Intel XE#5624]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#5624]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#5624]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#4329]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#4359]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#4329]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0: - shard-lnl: NOTRUN -> [FAIL][193] ([Intel XE#5195]) +2 other tests fail [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#599]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_multiple@2x-tiling-none: - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#4596]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-adlp: NOTRUN -> [SKIP][196] ([Intel XE#4596]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_plane_multiple@2x-tiling-yf.html - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#5021]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html - shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#5021]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-adlp: NOTRUN -> [SKIP][199] ([Intel XE#5020]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [FAIL][200] ([Intel XE#4658]) +3 other tests fail [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#5020]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#5020]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@kms_plane_multiple@tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#5020]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-adlp: NOTRUN -> [SKIP][204] ([Intel XE#309]) +15 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2685] / [Intel XE#3307]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#5825]) +25 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#5825]) +9 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#2938]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#2938]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#870]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@kms_pm_backlight@fade.html - shard-adlp: NOTRUN -> [SKIP][211] ([Intel XE#870]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#870]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][213] ([Intel XE#2391]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-adlp: NOTRUN -> [SKIP][214] ([Intel XE#1122]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#1122]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#736]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#2392]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html - shard-adlp: NOTRUN -> [SKIP][218] ([Intel XE#1129]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@kms_pm_dc@dc5-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#1129]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#3309]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_pm_dc@dc5-retention-flops.html - shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#3309]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_pm_dc@dc5-retention-flops.html - shard-adlp: NOTRUN -> [SKIP][222] ([Intel XE#3309]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-adlp: NOTRUN -> [SKIP][223] ([Intel XE#734]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#2505]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_pm_dc@deep-pkgc.html - shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#908]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@kms_pm_dc@deep-pkgc.html - shard-lnl: NOTRUN -> [FAIL][226] ([Intel XE#2029]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][227] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-adlp: NOTRUN -> [SKIP][228] ([Intel XE#836]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-lnl: NOTRUN -> [SKIP][229] ([Intel XE#1439] / [Intel XE#836]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-bmg: NOTRUN -> [FAIL][230] ([Intel XE#5099]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-adlp: [PASS][231] -> [DMESG-WARN][232] ([Intel XE#2953] / [Intel XE#4173]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][234] ([Intel XE#1406] / [Intel XE#1489]) +29 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][236] ([Intel XE#1406] / [Intel XE#4608]) +11 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-adlp: NOTRUN -> [SKIP][237] ([Intel XE#1406] / [Intel XE#1489]) +25 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][238] ([Intel XE#1406] / [Intel XE#2893]) +12 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][239] ([Intel XE#1406] / [Intel XE#1489]) +25 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#1128] / [Intel XE#1406]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][241] ([Intel XE#1122] / [Intel XE#1406]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-adlp: NOTRUN -> [SKIP][242] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@kms_psr2_su@page_flip-p010.html - shard-bmg: NOTRUN -> [SKIP][243] ([Intel XE#1406] / [Intel XE#2387]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][244] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +42 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-primary-blt@edp-1: - shard-lnl: NOTRUN -> [SKIP][245] ([Intel XE#1406] / [Intel XE#4609]) +8 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][246] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +46 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][247] ([Intel XE#1406]) +23 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-basic: - shard-adlp: NOTRUN -> [SKIP][248] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +36 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_psr@psr-basic.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][249] ([Intel XE#1406] / [Intel XE#2234]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][250] ([Intel XE#1406] / [Intel XE#2414]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-adlp: NOTRUN -> [SKIP][251] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][252] ([Intel XE#3414] / [Intel XE#3904]) +6 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [FAIL][253] ([Intel XE#4689]) +1 other test fail [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][254] ([Intel XE#2330]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][255] ([Intel XE#1127]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][256] ([Intel XE#1127]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][257] ([Intel XE#3414]) +5 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-lnl: NOTRUN -> [SKIP][258] ([Intel XE#3414] / [Intel XE#3904]) +7 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-adlp: NOTRUN -> [SKIP][259] ([Intel XE#1127]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-adlp: NOTRUN -> [SKIP][260] ([Intel XE#3414]) +4 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][261] ([Intel XE#2413]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_sequence@queue-idle: - shard-adlp: NOTRUN -> [DMESG-WARN][262] ([Intel XE#2953] / [Intel XE#4173]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@kms_sequence@queue-idle.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][263] ([Intel XE#1435]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][264] ([Intel XE#1435]) +4 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][265] ([Intel XE#6503]) +8 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_tiled_display@basic-test-pattern: - shard-adlp: NOTRUN -> [SKIP][266] ([Intel XE#362]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@kms_tiled_display@basic-test-pattern.html - shard-bmg: NOTRUN -> [SKIP][267] ([Intel XE#2426]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: NOTRUN -> [FAIL][268] ([Intel XE#1729]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html - shard-lnl: NOTRUN -> [SKIP][269] ([Intel XE#362]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][270] ([Intel XE#2509]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][271] ([Intel XE#1500]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][272] ([Intel XE#330]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html - shard-adlp: NOTRUN -> [SKIP][273] ([Intel XE#330]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@kms_tv_load_detect@load-detect.html - shard-bmg: NOTRUN -> [SKIP][274] ([Intel XE#2450]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-adlp: NOTRUN -> [SKIP][275] ([Intel XE#455]) +66 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_vrr@flip-suspend.html - shard-bmg: NOTRUN -> [SKIP][276] ([Intel XE#1499]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][277] ([Intel XE#455]) +72 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-adlp: NOTRUN -> [SKIP][278] ([Intel XE#2168]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_vrr@lobf.html - shard-bmg: NOTRUN -> [SKIP][279] ([Intel XE#2168]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_vrr@lobf.html - shard-dg2-set2: NOTRUN -> [SKIP][280] ([Intel XE#2168]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@kms_vrr@lobf.html * igt@kms_vrr@lobf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][281] ([Intel XE#6390]) +1 other test fail [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_vrr@lobf@pipe-a-edp-1.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][282] ([Intel XE#1499]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@kms_vrr@negative-basic.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][283] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@testdisplay: - shard-bmg: NOTRUN -> [ABORT][284] ([Intel XE#6740]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@testdisplay.html * igt@xe_ccs@block-multicopy-inplace: - shard-adlp: NOTRUN -> [SKIP][285] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_ccs@block-multicopy-inplace.html * igt@xe_compute@loop-duration-2s: - shard-adlp: NOTRUN -> [SKIP][286] ([Intel XE#6598]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_compute@loop-duration-2s.html - shard-dg2-set2: NOTRUN -> [SKIP][287] ([Intel XE#6598]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@xe_compute@loop-duration-2s.html * igt@xe_compute_preempt@compute-preempt-many: - shard-adlp: NOTRUN -> [SKIP][288] ([Intel XE#6360]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_compute_preempt@compute-preempt-many-vram: - shard-adlp: NOTRUN -> [SKIP][289] ([Intel XE#5191]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_compute_preempt@compute-preempt-many-vram.html - shard-lnl: NOTRUN -> [SKIP][290] ([Intel XE#5191]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many-vram.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict: - shard-dg2-set2: NOTRUN -> [SKIP][291] ([Intel XE#6360]) +4 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-adlp: NOTRUN -> [SKIP][292] ([Intel XE#1123]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][293] ([Intel XE#1123]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-matrix-copy-200x127: - shard-adlp: NOTRUN -> [SKIP][294] ([Intel XE#5300]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@xe_copy_basic@mem-matrix-copy-200x127.html * igt@xe_copy_basic@mem-page-copy-1: - shard-dg2-set2: NOTRUN -> [SKIP][295] ([Intel XE#5300]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_copy_basic@mem-page-copy-1.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-adlp: NOTRUN -> [SKIP][296] ([Intel XE#1126]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x8fffe: - shard-dg2-set2: NOTRUN -> [SKIP][297] ([Intel XE#5503]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x8fffe.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][298] ([Intel XE#1126]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][299] ([Intel XE#2504]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eu_stall@blocking-re-enable: - shard-adlp: NOTRUN -> [SKIP][300] ([Intel XE#5626]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_eu_stall@blocking-re-enable.html * igt@xe_eu_stall@invalid-event-report-count: - shard-dg2-set2: NOTRUN -> [SKIP][301] ([Intel XE#5626]) +5 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_eu_stall@invalid-event-report-count.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][302] ([Intel XE#4837]) +27 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-connect: - shard-lnl: NOTRUN -> [SKIP][303] ([Intel XE#4837]) +25 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_eudebug@basic-connect.html * igt@xe_eudebug@basic-read-event: - shard-adlp: NOTRUN -> [SKIP][304] ([Intel XE#4837] / [Intel XE#5565]) +21 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][305] ([Intel XE#4837]) +28 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][306] ([Intel XE#4837] / [Intel XE#6665]) +21 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_eudebug_online@pagefault-read-stress: - shard-lnl: NOTRUN -> [SKIP][307] ([Intel XE#6665]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_eudebug_online@pagefault-read-stress.html - shard-adlp: NOTRUN -> [SKIP][308] ([Intel XE#6665]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_eudebug_online@pagefault-read-stress.html - shard-bmg: NOTRUN -> [SKIP][309] ([Intel XE#6665] / [Intel XE#6681]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@xe_eudebug_online@pagefault-read-stress.html - shard-dg2-set2: NOTRUN -> [SKIP][310] ([Intel XE#6665]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_eudebug_online@pagefault-read-stress.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-lnl: NOTRUN -> [SKIP][311] ([Intel XE#4837] / [Intel XE#6665]) +20 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-adlp: NOTRUN -> [SKIP][312] ([Intel XE#4837] / [Intel XE#5565] / [Intel XE#6665]) +17 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html - shard-bmg: NOTRUN -> [SKIP][313] ([Intel XE#4837] / [Intel XE#6665]) +20 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_evict@evict-beng-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][314] ([Intel XE#688]) +25 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html * igt@xe_evict@evict-beng-large-external-cm: - shard-adlp: NOTRUN -> [SKIP][315] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_evict@evict-beng-large-external-cm.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-adlp: NOTRUN -> [SKIP][316] ([Intel XE#261]) +12 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-small-external-cm: - shard-adlp: NOTRUN -> [SKIP][317] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +5 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_evict@evict-small-external-cm.html * igt@xe_evict@evict-threads-small: - shard-adlp: NOTRUN -> [SKIP][318] ([Intel XE#261] / [Intel XE#688]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_evict@evict-threads-small.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - shard-adlp: NOTRUN -> [SKIP][319] ([Intel XE#688]) +3 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][320] ([Intel XE#2322]) +30 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-adlp: NOTRUN -> [SKIP][321] ([Intel XE#1392] / [Intel XE#5575]) +28 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][322] ([Intel XE#1392]) +29 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm: - shard-adlp: NOTRUN -> [SKIP][323] ([Intel XE#288] / [Intel XE#5561]) +70 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][324] ([Intel XE#288]) +95 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-adlp: NOTRUN -> [SKIP][325] ([Intel XE#2360]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][326] ([Intel XE#2360]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_reset@cm-cat-error: - shard-adlp: NOTRUN -> [DMESG-WARN][327] ([Intel XE#3868]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@xe_exec_reset@cm-cat-error.html * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][328] ([Intel XE#5007]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html - shard-lnl: NOTRUN -> [SKIP][329] ([Intel XE#5007]) +3 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][330] ([Intel XE#4943]) +84 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma: - shard-lnl: NOTRUN -> [FAIL][331] ([Intel XE#5625]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][332] ([Intel XE#6196]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_exec_system_allocator@process-many-stride-mmap-prefetch-shared: - shard-dg2-set2: NOTRUN -> [SKIP][333] ([Intel XE#4915]) +1183 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@xe_exec_system_allocator@process-many-stride-mmap-prefetch-shared.html * igt@xe_exec_system_allocator@processes-evict-malloc: - shard-adlp: NOTRUN -> [SKIP][334] ([Intel XE#4915]) +908 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_exec_system_allocator@processes-evict-malloc.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge: - shard-lnl: NOTRUN -> [SKIP][335] ([Intel XE#4943]) +87 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html * igt@xe_exec_system_allocator@twice-large-malloc-prefetch-madvise: - shard-lnl: NOTRUN -> [WARN][336] ([Intel XE#5786]) +8 other tests warn [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_exec_system_allocator@twice-large-malloc-prefetch-madvise.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-adlp: NOTRUN -> [SKIP][337] ([Intel XE#6281]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html - shard-bmg: NOTRUN -> [SKIP][338] ([Intel XE#6281]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html - shard-dg2-set2: NOTRUN -> [SKIP][339] ([Intel XE#6281]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: NOTRUN -> [ABORT][340] ([Intel XE#5466] / [Intel XE#5530]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv: - shard-lnl: NOTRUN -> [ABORT][341] ([Intel XE#4757]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][342] ([Intel XE#255]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_bo: - shard-adlp: NOTRUN -> [SKIP][343] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-lnl: NOTRUN -> [SKIP][344] ([Intel XE#2229]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][345] ([Intel XE#2229]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html - shard-adlp: NOTRUN -> [SKIP][346] ([Intel XE#2229]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: NOTRUN -> [SKIP][347] ([Intel XE#2833]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html - shard-lnl: NOTRUN -> [SKIP][348] ([Intel XE#2833]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][349] ([Intel XE#2229]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][350] ([Intel XE#2459] / [Intel XE#2596]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_media_fill@media-fill.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][351] ([Intel XE#5100]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_mmap@pci-membarrier.html - shard-adlp: NOTRUN -> [SKIP][352] ([Intel XE#5100]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@xe_mmap@pci-membarrier.html * igt@xe_mmap@small-bar: - shard-adlp: NOTRUN -> [SKIP][353] ([Intel XE#512]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@xe_mmap@small-bar.html - shard-bmg: NOTRUN -> [SKIP][354] ([Intel XE#586]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@xe_mmap@small-bar.html - shard-lnl: NOTRUN -> [SKIP][355] ([Intel XE#512]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@xe_mmap@small-bar.html * igt@xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][356] ([Intel XE#1416]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_mmap@vram.html - shard-adlp: NOTRUN -> [SKIP][357] ([Intel XE#1008] / [Intel XE#5591]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_mmap@vram.html * igt@xe_module_load@force-load: - shard-adlp: NOTRUN -> [SKIP][358] ([Intel XE#378] / [Intel XE#5612]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_module_load@force-load.html - shard-dg2-set2: NOTRUN -> [SKIP][359] ([Intel XE#378]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_module_load@force-load.html - shard-lnl: NOTRUN -> [SKIP][360] ([Intel XE#378]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_module_load@force-load.html * igt@xe_module_load@load: - shard-lnl: ([PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385]) -> ([PASS][386], [SKIP][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411]) ([Intel XE#378]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-4/igt@xe_module_load@load.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-1/igt@xe_module_load@load.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-2/igt@xe_module_load@load.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-2/igt@xe_module_load@load.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-2/igt@xe_module_load@load.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-2/igt@xe_module_load@load.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-1/igt@xe_module_load@load.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-2/igt@xe_module_load@load.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-8/igt@xe_module_load@load.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-1/igt@xe_module_load@load.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-3/igt@xe_module_load@load.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-8/igt@xe_module_load@load.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-5/igt@xe_module_load@load.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-3/igt@xe_module_load@load.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-4/igt@xe_module_load@load.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-5/igt@xe_module_load@load.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-4/igt@xe_module_load@load.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-5/igt@xe_module_load@load.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-4/igt@xe_module_load@load.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-8/igt@xe_module_load@load.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-3/igt@xe_module_load@load.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-3/igt@xe_module_load@load.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-3/igt@xe_module_load@load.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-1/igt@xe_module_load@load.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-5/igt@xe_module_load@load.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_module_load@load.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@xe_module_load@load.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@xe_module_load@load.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@xe_module_load@load.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@xe_module_load@load.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_module_load@load.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_module_load@load.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@xe_module_load@load.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_module_load@load.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_module_load@load.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_module_load@load.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_module_load@load.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_module_load@load.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_module_load@load.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_module_load@load.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_module_load@load.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_module_load@load.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_module_load@load.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_module_load@load.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_module_load@load.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_module_load@load.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_module_load@load.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_module_load@load.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_module_load@load.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@xe_module_load@load.html - shard-bmg: ([PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436]) -> ([PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [PASS][448], [SKIP][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461]) ([Intel XE#2457]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-5/igt@xe_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-4/igt@xe_module_load@load.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-3/igt@xe_module_load@load.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-4/igt@xe_module_load@load.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-2/igt@xe_module_load@load.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-2/igt@xe_module_load@load.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-5/igt@xe_module_load@load.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-2/igt@xe_module_load@load.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-2/igt@xe_module_load@load.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-2/igt@xe_module_load@load.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-4/igt@xe_module_load@load.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-8/igt@xe_module_load@load.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-1/igt@xe_module_load@load.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-8/igt@xe_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-3/igt@xe_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-3/igt@xe_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-6/igt@xe_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-1/igt@xe_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-8/igt@xe_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-1/igt@xe_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-5/igt@xe_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-5/igt@xe_module_load@load.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-6/igt@xe_module_load@load.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-8/igt@xe_module_load@load.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-6/igt@xe_module_load@load.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@xe_module_load@load.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@xe_module_load@load.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_module_load@load.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-2/igt@xe_module_load@load.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@xe_module_load@load.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@xe_module_load@load.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-1/igt@xe_module_load@load.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@xe_module_load@load.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@xe_module_load@load.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@xe_module_load@load.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@xe_module_load@load.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@xe_module_load@load.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@xe_module_load@load.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@xe_module_load@load.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@xe_module_load@load.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@xe_module_load@load.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@xe_module_load@load.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@xe_module_load@load.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@xe_module_load@load.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-6/igt@xe_module_load@load.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_module_load@load.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_module_load@load.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_module_load@load.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@xe_module_load@load.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@xe_module_load@load.html - shard-adlp: ([PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [PASS][472], [PASS][473], [PASS][474], [PASS][475], [PASS][476], [PASS][477], [PASS][478], [PASS][479], [PASS][480], [PASS][481], [PASS][482], [PASS][483], [PASS][484], [PASS][485], [PASS][486]) -> ([PASS][487], [PASS][488], [PASS][489], [PASS][490], [PASS][491], [PASS][492], [PASS][493], [PASS][494], [PASS][495], [PASS][496], [PASS][497], [PASS][498], [PASS][499], [PASS][500], [SKIP][501], [PASS][502], [PASS][503], [PASS][504], [PASS][505], [PASS][506], [PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511], [PASS][512]) ([Intel XE#378] / [Intel XE#5612]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-8/igt@xe_module_load@load.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-8/igt@xe_module_load@load.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-8/igt@xe_module_load@load.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-8/igt@xe_module_load@load.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-4/igt@xe_module_load@load.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-4/igt@xe_module_load@load.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-9/igt@xe_module_load@load.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-3/igt@xe_module_load@load.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-3/igt@xe_module_load@load.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-9/igt@xe_module_load@load.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-3/igt@xe_module_load@load.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-3/igt@xe_module_load@load.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-6/igt@xe_module_load@load.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-2/igt@xe_module_load@load.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-9/igt@xe_module_load@load.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-6/igt@xe_module_load@load.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-1/igt@xe_module_load@load.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-6/igt@xe_module_load@load.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-4/igt@xe_module_load@load.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-2/igt@xe_module_load@load.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-4/igt@xe_module_load@load.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-1/igt@xe_module_load@load.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-2/igt@xe_module_load@load.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-2/igt@xe_module_load@load.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-1/igt@xe_module_load@load.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@xe_module_load@load.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@xe_module_load@load.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_module_load@load.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_module_load@load.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_module_load@load.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@xe_module_load@load.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@xe_module_load@load.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@xe_module_load@load.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-1/igt@xe_module_load@load.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@xe_module_load@load.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_module_load@load.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-6/igt@xe_module_load@load.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@xe_module_load@load.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_module_load@load.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@xe_module_load@load.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_module_load@load.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@xe_module_load@load.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-3/igt@xe_module_load@load.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@xe_module_load@load.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@xe_module_load@load.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@xe_module_load@load.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_module_load@load.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_module_load@load.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_module_load@load.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_module_load@load.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_module_load@load.html - shard-dg2-set2: ([PASS][513], [PASS][514], [PASS][515], [PASS][516], [PASS][517], [PASS][518], [PASS][519], [PASS][520], [PASS][521], [PASS][522], [PASS][523], [PASS][524], [PASS][525], [PASS][526], [PASS][527], [PASS][528], [PASS][529], [PASS][530], [PASS][531], [PASS][532], [PASS][533], [PASS][534], [PASS][535], [PASS][536], [PASS][537]) -> ([PASS][538], [PASS][539], [PASS][540], [PASS][541], [PASS][542], [PASS][543], [PASS][544], [PASS][545], [PASS][546], [PASS][547], [PASS][548], [PASS][549], [PASS][550], [PASS][551], [PASS][552], [PASS][553], [PASS][554], [PASS][555], [PASS][556], [PASS][557], [PASS][558], [PASS][559], [PASS][560], [PASS][561], [PASS][562], [SKIP][563]) ([Intel XE#378]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-432/igt@xe_module_load@load.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-464/igt@xe_module_load@load.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-434/igt@xe_module_load@load.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-464/igt@xe_module_load@load.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-436/igt@xe_module_load@load.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-436/igt@xe_module_load@load.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-436/igt@xe_module_load@load.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-436/igt@xe_module_load@load.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-464/igt@xe_module_load@load.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-432/igt@xe_module_load@load.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-435/igt@xe_module_load@load.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-432/igt@xe_module_load@load.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-464/igt@xe_module_load@load.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-463/igt@xe_module_load@load.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-463/igt@xe_module_load@load.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-463/igt@xe_module_load@load.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-435/igt@xe_module_load@load.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-433/igt@xe_module_load@load.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-434/igt@xe_module_load@load.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-435/igt@xe_module_load@load.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-435/igt@xe_module_load@load.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-433/igt@xe_module_load@load.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-433/igt@xe_module_load@load.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-434/igt@xe_module_load@load.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-434/igt@xe_module_load@load.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_module_load@load.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_module_load@load.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_module_load@load.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_module_load@load.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@xe_module_load@load.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_module_load@load.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@xe_module_load@load.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@xe_module_load@load.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@xe_module_load@load.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_module_load@load.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_module_load@load.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_module_load@load.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@xe_module_load@load.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_module_load@load.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@xe_module_load@load.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@xe_module_load@load.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-434/igt@xe_module_load@load.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_module_load@load.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@xe_module_load@load.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_module_load@load.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_module_load@load.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_module_load@load.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_module_load@load.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_module_load@load.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@xe_module_load@load.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_module_load@load.html * igt@xe_oa@buffer-size: - shard-dg2-set2: NOTRUN -> [SKIP][564] ([Intel XE#6032]) [564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@xe_oa@buffer-size.html - shard-adlp: NOTRUN -> [SKIP][565] ([Intel XE#6032]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_oa@buffer-size.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][566] ([Intel XE#3573]) +28 other tests skip [566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][567] ([Intel XE#2248]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_oa@privileged-forked-access-vaddr: - shard-adlp: NOTRUN -> [SKIP][568] ([Intel XE#3573]) +21 other tests skip [568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_oa@privileged-forked-access-vaddr.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][569] ([Intel XE#1337]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xehpc: - shard-adlp: NOTRUN -> [SKIP][570] ([Intel XE#2838] / [Intel XE#979]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_pat@pat-index-xehpc.html - shard-bmg: NOTRUN -> [SKIP][571] ([Intel XE#1420]) [571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][572] ([Intel XE#2838] / [Intel XE#979]) [572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html - shard-lnl: NOTRUN -> [SKIP][573] ([Intel XE#1420] / [Intel XE#2838]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read: - shard-adlp: NOTRUN -> [SKIP][574] ([Intel XE#1061]) +1 other test skip [574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@xe_peer2peer@read.html - shard-bmg: NOTRUN -> [SKIP][575] ([Intel XE#2427]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@xe_peer2peer@read.html - shard-lnl: NOTRUN -> [SKIP][576] ([Intel XE#1061]) +1 other test skip [576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_peer2peer@read.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [SKIP][577] ([Intel XE#6566]) +1 other test skip [577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][578] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][579] ([Intel XE#2284] / [Intel XE#366]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-2/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3cold-mocs: - shard-adlp: NOTRUN -> [SKIP][580] ([Intel XE#2284]) [580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_pm@d3cold-mocs.html - shard-bmg: NOTRUN -> [SKIP][581] ([Intel XE#2284]) +3 other tests skip [581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@xe_pm@d3cold-mocs.html - shard-dg2-set2: NOTRUN -> [SKIP][582] ([Intel XE#2284]) [582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@xe_pm@d3cold-mocs.html - shard-lnl: NOTRUN -> [SKIP][583] ([Intel XE#2284]) [583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3cold-multiple-execs: - shard-adlp: NOTRUN -> [SKIP][584] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-mmap-vram: - shard-adlp: NOTRUN -> [SKIP][585] ([Intel XE#1948]) [585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_pm@d3hot-mmap-vram.html - shard-lnl: NOTRUN -> [SKIP][586] ([Intel XE#1948]) [586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s3-mocs: - shard-lnl: NOTRUN -> [SKIP][587] ([Intel XE#584]) +5 other tests skip [587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_pm@s3-mocs.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][588] ([Intel XE#579]) [588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][589] ([Intel XE#579]) [589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_pm@vram-d3cold-threshold.html - shard-adlp: NOTRUN -> [SKIP][590] ([Intel XE#5611] / [Intel XE#579]) [590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_pm@vram-d3cold-threshold.html - shard-bmg: NOTRUN -> [SKIP][591] ([Intel XE#579]) [591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-5/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pmu@engine-activity-accuracy-50: - shard-lnl: [PASS][592] -> [FAIL][593] ([Intel XE#6251]) +1 other test fail [592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-50.html [593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-50.html * igt@xe_pmu@engine-activity-accuracy-90: - shard-lnl: NOTRUN -> [FAIL][594] ([Intel XE#6251]) +2 other tests fail [594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-adlp: NOTRUN -> [SKIP][595] ([Intel XE#4733] / [Intel XE#5594]) +4 other tests skip [595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_pxp@pxp-stale-bo-exec-post-suspend: - shard-bmg: NOTRUN -> [SKIP][596] ([Intel XE#4733]) +4 other tests skip [596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html * igt@xe_pxp@pxp-termination-key-update-post-rpm: - shard-dg2-set2: NOTRUN -> [SKIP][597] ([Intel XE#4733]) +5 other tests skip [597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_pxp@pxp-termination-key-update-post-rpm.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][598] ([Intel XE#944]) +8 other tests skip [598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-invalid-extension: - shard-adlp: NOTRUN -> [SKIP][599] ([Intel XE#944]) +9 other tests skip [599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][600] ([Intel XE#944]) +9 other tests skip [600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][601] ([Intel XE#944]) +11 other tests skip [601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-dg2-set2: NOTRUN -> [SKIP][602] ([Intel XE#4130]) +3 other tests skip [602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html - shard-lnl: NOTRUN -> [SKIP][603] ([Intel XE#4130]) +3 other tests skip [603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][604] ([Intel XE#3342]) +1 other test skip [604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html - shard-lnl: NOTRUN -> [SKIP][605] ([Intel XE#3342]) +1 other test skip [605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-8/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_scheduling@equal-throughput: - shard-dg2-set2: NOTRUN -> [SKIP][606] ([Intel XE#4351]) [606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-432/igt@xe_sriov_scheduling@equal-throughput.html - shard-lnl: NOTRUN -> [SKIP][607] ([Intel XE#4351]) [607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@xe_sriov_scheduling@equal-throughput.html * igt@xe_sriov_vram@vf-access-after-resize-down: - shard-adlp: NOTRUN -> [SKIP][608] ([Intel XE#6376]) +1 other test skip [608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-4/igt@xe_sriov_vram@vf-access-after-resize-down.html * igt@xe_sriov_vram@vf-access-after-resize-up: - shard-dg2-set2: NOTRUN -> [SKIP][609] ([Intel XE#6318]) +2 other tests skip [609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@xe_sriov_vram@vf-access-after-resize-up.html - shard-lnl: NOTRUN -> [SKIP][610] ([Intel XE#6376]) +1 other test skip [610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@xe_sriov_vram@vf-access-after-resize-up.html * igt@xe_survivability@runtime-survivability: - shard-adlp: NOTRUN -> [SKIP][611] ([Intel XE#6529]) [611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-9/igt@xe_survivability@runtime-survivability.html - shard-dg2-set2: NOTRUN -> [SKIP][612] ([Intel XE#6529]) [612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-464/igt@xe_survivability@runtime-survivability.html - shard-lnl: NOTRUN -> [SKIP][613] ([Intel XE#6529]) [613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-5/igt@xe_survivability@runtime-survivability.html #### Possible fixes #### * igt@kms_async_flips@crc: - shard-adlp: [FAIL][614] ([Intel XE#1874] / [Intel XE#3884]) -> [PASS][615] +1 other test pass [614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-6/igt@kms_async_flips@crc.html [615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@kms_async_flips@crc.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-bmg: [SKIP][616] ([Intel XE#367]) -> [PASS][617] [616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][618] ([Intel XE#3862]) -> [PASS][619] [618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [ABORT][620] ([Intel XE#6317] / [Intel XE#6675]) -> [PASS][621] [620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-3/igt@kms_flip@flip-vs-suspend-interruptible.html [621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_hdr@bpc-switch-dpms: - shard-bmg: [ABORT][622] ([Intel XE#6740]) -> [PASS][623] +3 other tests pass [622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-3/igt@kms_hdr@bpc-switch-dpms.html [623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-4/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1: - shard-lnl: [ABORT][624] ([Intel XE#6675]) -> [PASS][625] +27 other tests pass [624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html [625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html * igt@kms_psr@psr2-suspend@edp-1: - shard-lnl: [ABORT][626] ([Intel XE#2625] / [Intel XE#6675]) -> [PASS][627] +3 other tests pass [626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-lnl-5/igt@kms_psr@psr2-suspend@edp-1.html [627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-lnl-1/igt@kms_psr@psr2-suspend@edp-1.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - shard-bmg: [ABORT][628] ([Intel XE#6675]) -> [PASS][629] +25 other tests pass [628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html [629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_pm@s2idle-basic-exec: - shard-adlp: [ABORT][630] ([Intel XE#6675]) -> [PASS][631] +20 other tests pass [630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-9/igt@xe_pm@s2idle-basic-exec.html [631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-8/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [ABORT][632] ([Intel XE#6675]) -> [PASS][633] +28 other tests pass [632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-dg2-434/igt@xe_pm@s2idle-exec-after.html [633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-dg2-463/igt@xe_pm@s2idle-exec-after.html #### Warnings #### * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-adlp: [ABORT][634] ([Intel XE#6675]) -> [DMESG-WARN][635] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn [634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2/shard-adlp-2/igt@kms_vblank@ts-continuation-dpms-suspend.html [635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/shard-adlp-2/igt@kms_vblank@ts-continuation-dpms-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868 [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4445 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658 [Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5099 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191 [Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503 [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530 [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561 [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564 [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565 [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575 [Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580 [Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585 [Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591 [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594 [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607 [Intel XE#5611]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5611 [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612 [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626 [Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671 [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#5825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5825 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011 [Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6317]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6317 [Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318 [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590 [Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675 [Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676 [Intel XE#6677]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6677 [Intel XE#6678]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6678 [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681 [Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704 [Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705 [Intel XE#6706]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6706 [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740 [Intel XE#6778]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6778 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * Linux: xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2 -> xe-pw-158508v2 IGT_8655: 8655 xe-4197-7954eb633a41ad5f2012477cdc245ec0cf07e7a2: 7954eb633a41ad5f2012477cdc245ec0cf07e7a2 xe-pw-158508v2: 158508v2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158508v2/index.html [-- Attachment #2: Type: text/html, Size: 180618 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2025-12-09 14:16 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-05 10:30 [PATCH v2 0/4] drm/{i915, xe}: migrate stolen interface to parent interface, cleanups Jani Nikula
2025-12-05 10:30 ` [PATCH v2 1/4] drm/i915/fbc: let to_intel_display() do its generic magic Jani Nikula
2025-12-09 13:25 ` Govindapillai, Vinod
2025-12-05 10:30 ` [PATCH v2 2/4] drm/xe/stolen: unify interface with i915 Jani Nikula
2025-12-09 13:34 ` Govindapillai, Vinod
2025-12-05 10:30 ` [PATCH v2 3/4] drm/{i915, xe}/stolen: move stolen memory handling to display parent interface Jani Nikula
2025-12-09 14:15 ` Govindapillai, Vinod
2025-12-05 10:30 ` [PATCH v2 4/4] drm/{i915, xe}/stolen: make insert_node, area_address, area_size optional Jani Nikula
2025-12-09 14:16 ` Govindapillai, Vinod
2025-12-05 11:45 ` ✗ CI.checkpatch: warning for drm/{i915, xe}: migrate stolen interface to parent interface, cleanups (rev2) Patchwork
2025-12-05 11:46 ` ✓ CI.KUnit: success " Patchwork
2025-12-05 12:01 ` ✗ CI.checksparse: warning " Patchwork
2025-12-05 12:49 ` ✓ Xe.CI.BAT: success " Patchwork
2025-12-05 14:30 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox