* [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff
@ 2025-11-07 18:11 Ville Syrjala
2025-11-07 18:11 ` [PATCH 1/9] drm/i915: Introduce intel_dumb_fb_max_stride() Ville Syrjala
` (13 more replies)
0 siblings, 14 replies; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Finish eliminating the expensive extra format info lookups.
And since I ended up strafing the cursor code in the end I included
a few additional claenups there.
Ville Syrjälä (9):
drm/i915: Introduce intel_dumb_fb_max_stride()
drm/i915: Pass drm_format_info into plane->max_stride()
drm/i915: Populate fb->format accurately in BIOS FB readout
drm/i915: Nuke intel_plane_config.tiling
drm/i915/fb: Init 'ret' in each error branch in
intel_framebuffer_init()
drm/i915/wm: Use drm_get_format_info() in SKL+ cursor DDB allocation
drm/i915: Use mode_config->cursor_width for cursor DDB allocation
drm/i915/cursor: Extract intel_cursor_mode_config_init()
drm/i915/cursor: Initialize 845 vs 865 cursor size separately
drivers/gpu/drm/i915/display/i9xx_plane.c | 32 ++++++++-----------
drivers/gpu/drm/i915/display/i9xx_plane.h | 5 +--
drivers/gpu/drm/i915/display/intel_cursor.c | 28 +++++++++++++---
drivers/gpu/drm/i915/display/intel_cursor.h | 2 ++
drivers/gpu/drm/i915/display/intel_display.c | 24 ++++++++++----
drivers/gpu/drm/i915/display/intel_display.h | 8 +++--
.../drm/i915/display/intel_display_driver.c | 13 ++------
.../drm/i915/display/intel_display_types.h | 5 ++-
drivers/gpu/drm/i915/display/intel_fb.c | 23 +++++++------
.../drm/i915/display/intel_plane_initial.c | 11 ++++---
drivers/gpu/drm/i915/display/intel_sprite.c | 10 +++---
.../drm/i915/display/skl_universal_plane.c | 22 ++++++-------
drivers/gpu/drm/i915/display/skl_watermark.c | 15 ++++++---
drivers/gpu/drm/i915/gem/i915_gem_create.c | 4 +--
14 files changed, 118 insertions(+), 84 deletions(-)
--
2.49.1
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH 1/9] drm/i915: Introduce intel_dumb_fb_max_stride()
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-07 18:11 ` [PATCH 2/9] drm/i915: Pass drm_format_info into plane->max_stride() Ville Syrjala
` (12 subsequent siblings)
13 siblings, 0 replies; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Wrap intel_plane_fb_max_stride() in intel_dumb_fb_max_stride()
for the purposes of dumb fb creation. I want to change
intel_plane_fb_max_stride() to take a 'struct drm_format_info'
instead of the 'u32 pixel_format' so we need an excplicit format
info lookup in the dumb fb path and I don't really want to have
that in i915_gem_dumb_create() directly.
This makes intel_plane_fb_max_stride() internal to the display
code again, and thus we can pass in struct intel_display instead
of struct drm_device.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 17 ++++++++++++-----
drivers/gpu/drm/i915/display/intel_display.h | 4 +++-
drivers/gpu/drm/i915/display/intel_fb.c | 4 ++--
drivers/gpu/drm/i915/gem/i915_gem_create.c | 4 ++--
4 files changed, 19 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 25986bd8fbdd..c5ce481b26b1 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -547,16 +547,12 @@ void intel_disable_transcoder(const struct intel_crtc_state *old_crtc_state)
intel_wait_for_pipe_off(old_crtc_state);
}
-u32 intel_plane_fb_max_stride(struct drm_device *drm,
+u32 intel_plane_fb_max_stride(struct intel_display *display,
u32 pixel_format, u64 modifier)
{
- struct intel_display *display = to_intel_display(drm);
struct intel_crtc *crtc;
struct intel_plane *plane;
- if (!HAS_DISPLAY(display))
- return 0;
-
/*
* We assume the primary plane for pipe A has
* the highest stride limits of them all,
@@ -572,6 +568,17 @@ u32 intel_plane_fb_max_stride(struct drm_device *drm,
DRM_MODE_ROTATE_0);
}
+u32 intel_dumb_fb_max_stride(struct drm_device *drm,
+ u32 pixel_format, u64 modifier)
+{
+ struct intel_display *display = to_intel_display(drm);
+
+ if (!HAS_DISPLAY(display))
+ return 0;
+
+ return intel_plane_fb_max_stride(display, pixel_format, modifier);
+}
+
void intel_set_plane_visible(struct intel_crtc_state *crtc_state,
struct intel_plane_state *plane_state,
bool visible)
diff --git a/drivers/gpu/drm/i915/display/intel_display.h b/drivers/gpu/drm/i915/display/intel_display.h
index fc2ef92ccf68..9e3fe0bcf62e 100644
--- a/drivers/gpu/drm/i915/display/intel_display.h
+++ b/drivers/gpu/drm/i915/display/intel_display.h
@@ -402,8 +402,10 @@ void intel_link_compute_m_n(u16 bpp, int nlanes,
int pixel_clock, int link_clock,
int bw_overhead,
struct intel_link_m_n *m_n);
-u32 intel_plane_fb_max_stride(struct drm_device *drm,
+u32 intel_plane_fb_max_stride(struct intel_display *display,
u32 pixel_format, u64 modifier);
+u32 intel_dumb_fb_max_stride(struct drm_device *drm,
+ u32 pixel_format, u64 modifier);
enum drm_mode_status
intel_mode_valid_max_plane_size(struct intel_display *display,
const struct drm_display_mode *mode,
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index f9e0333e2674..19e3dc008caf 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -1982,7 +1982,7 @@ u32 intel_fb_max_stride(struct intel_display *display,
*/
if (DISPLAY_VER(display) < 4 || intel_fb_is_ccs_modifier(modifier) ||
intel_fb_modifier_uses_dpt(display, modifier))
- return intel_plane_fb_max_stride(display->drm, pixel_format, modifier);
+ return intel_plane_fb_max_stride(display, pixel_format, modifier);
else if (DISPLAY_VER(display) >= 7)
return 256 * 1024;
else
@@ -1996,7 +1996,7 @@ intel_fb_stride_alignment(const struct drm_framebuffer *fb, int color_plane)
unsigned int tile_width;
if (is_surface_linear(fb, color_plane)) {
- unsigned int max_stride = intel_plane_fb_max_stride(display->drm,
+ unsigned int max_stride = intel_plane_fb_max_stride(display,
fb->format->format,
fb->modifier);
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_create.c b/drivers/gpu/drm/i915/gem/i915_gem_create.c
index cd9686a7ded2..189ecdd0a9c1 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_create.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_create.c
@@ -194,8 +194,8 @@ i915_gem_dumb_create(struct drm_file *file,
args->pitch = ALIGN(args->width * cpp, 64);
/* align stride to page size so that we can remap */
- if (args->pitch > intel_plane_fb_max_stride(dev, format,
- DRM_FORMAT_MOD_LINEAR))
+ if (args->pitch > intel_dumb_fb_max_stride(dev, format,
+ DRM_FORMAT_MOD_LINEAR))
args->pitch = ALIGN(args->pitch, 4096);
if (args->pitch < args->width)
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 2/9] drm/i915: Pass drm_format_info into plane->max_stride()
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
2025-11-07 18:11 ` [PATCH 1/9] drm/i915: Introduce intel_dumb_fb_max_stride() Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-07 18:11 ` [PATCH 3/9] drm/i915: Populate fb->format accurately in BIOS FB readout Ville Syrjala
` (11 subsequent siblings)
13 siblings, 0 replies; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Pass the format info into plane->max_stride() from the
caller instead of doing yet another drm_format_info()
lookup on the spot.
drm_format_info() is both rather expensive, and technically
incorrect since it doesn't return the correct format info
for compressed formats (though that doesn't actually matter
for the current .max_stride() implementations since they
are just interested in the cpp value).
Most callers already have the format info available. The
only exception is intel_dumb_fb_max_stride() where we shall
use the actually correct drm_get_format_info() variant.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/i9xx_plane.c | 23 ++++++++-----------
drivers/gpu/drm/i915/display/i9xx_plane.h | 5 ++--
drivers/gpu/drm/i915/display/intel_cursor.c | 8 +++----
drivers/gpu/drm/i915/display/intel_display.c | 9 +++++---
drivers/gpu/drm/i915/display/intel_display.h | 4 +++-
.../drm/i915/display/intel_display_types.h | 4 ++--
drivers/gpu/drm/i915/display/intel_fb.c | 14 +++++------
drivers/gpu/drm/i915/display/intel_sprite.c | 10 ++++----
.../drm/i915/display/skl_universal_plane.c | 17 +++++++-------
9 files changed, 47 insertions(+), 47 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.c b/drivers/gpu/drm/i915/display/i9xx_plane.c
index 6e39d7f2e0c2..b962d9f78b2c 100644
--- a/drivers/gpu/drm/i915/display/i9xx_plane.c
+++ b/drivers/gpu/drm/i915/display/i9xx_plane.c
@@ -754,10 +754,9 @@ static bool i9xx_plane_get_hw_state(struct intel_plane *plane,
static unsigned int
hsw_primary_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
- const struct drm_format_info *info = drm_format_info(pixel_format);
int cpp = info->cpp[0];
/* Limit to 8k pixels to guarantee OFFSET.x doesn't get too big. */
@@ -766,10 +765,9 @@ hsw_primary_max_stride(struct intel_plane *plane,
static unsigned int
ilk_primary_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
- const struct drm_format_info *info = drm_format_info(pixel_format);
int cpp = info->cpp[0];
/* Limit to 4k pixels to guarantee TILEOFF.x doesn't get too big. */
@@ -781,10 +779,9 @@ ilk_primary_max_stride(struct intel_plane *plane,
unsigned int
i965_plane_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
- const struct drm_format_info *info = drm_format_info(pixel_format);
int cpp = info->cpp[0];
/* Limit to 4k pixels to guarantee TILEOFF.x doesn't get too big. */
@@ -796,8 +793,8 @@ i965_plane_max_stride(struct intel_plane *plane,
static unsigned int
i915_plane_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
if (modifier == I915_FORMAT_MOD_X_TILED)
return 8 * 1024;
@@ -807,8 +804,8 @@ i915_plane_max_stride(struct intel_plane *plane,
static unsigned int
i8xx_plane_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
if (plane->i9xx_plane == PLANE_C)
return 4 * 1024;
diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.h b/drivers/gpu/drm/i915/display/i9xx_plane.h
index 565dab751301..ec78bf4dd35e 100644
--- a/drivers/gpu/drm/i915/display/i9xx_plane.h
+++ b/drivers/gpu/drm/i915/display/i9xx_plane.h
@@ -9,6 +9,7 @@
#include <linux/types.h>
enum pipe;
+struct drm_format_info;
struct drm_framebuffer;
struct intel_crtc;
struct intel_display;
@@ -18,8 +19,8 @@ struct intel_plane_state;
#ifdef I915
unsigned int i965_plane_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation);
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation);
unsigned int vlv_plane_min_alignment(struct intel_plane *plane,
const struct drm_framebuffer *fb,
int colot_plane);
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index 7aa14348aa6d..0367e6fc8de7 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -182,8 +182,8 @@ static int intel_check_cursor(struct intel_crtc_state *crtc_state,
static unsigned int
i845_cursor_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
return 2048;
}
@@ -343,8 +343,8 @@ static bool i845_cursor_get_hw_state(struct intel_plane *plane,
static unsigned int
i9xx_cursor_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
return plane->base.dev->mode_config.cursor_width * 4;
}
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index c5ce481b26b1..d02500e2641b 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -548,7 +548,8 @@ void intel_disable_transcoder(const struct intel_crtc_state *old_crtc_state)
}
u32 intel_plane_fb_max_stride(struct intel_display *display,
- u32 pixel_format, u64 modifier)
+ const struct drm_format_info *info,
+ u64 modifier)
{
struct intel_crtc *crtc;
struct intel_plane *plane;
@@ -564,7 +565,7 @@ u32 intel_plane_fb_max_stride(struct intel_display *display,
plane = to_intel_plane(crtc->base.primary);
- return plane->max_stride(plane, pixel_format, modifier,
+ return plane->max_stride(plane, info, modifier,
DRM_MODE_ROTATE_0);
}
@@ -576,7 +577,9 @@ u32 intel_dumb_fb_max_stride(struct drm_device *drm,
if (!HAS_DISPLAY(display))
return 0;
- return intel_plane_fb_max_stride(display, pixel_format, modifier);
+ return intel_plane_fb_max_stride(display,
+ drm_get_format_info(drm, pixel_format, modifier),
+ modifier);
}
void intel_set_plane_visible(struct intel_crtc_state *crtc_state,
diff --git a/drivers/gpu/drm/i915/display/intel_display.h b/drivers/gpu/drm/i915/display/intel_display.h
index 9e3fe0bcf62e..bcc6ccb69d2b 100644
--- a/drivers/gpu/drm/i915/display/intel_display.h
+++ b/drivers/gpu/drm/i915/display/intel_display.h
@@ -34,6 +34,7 @@ struct drm_atomic_state;
struct drm_device;
struct drm_display_mode;
struct drm_encoder;
+struct drm_format_info;
struct drm_modeset_acquire_ctx;
struct intel_atomic_state;
struct intel_crtc;
@@ -403,7 +404,8 @@ void intel_link_compute_m_n(u16 bpp, int nlanes,
int bw_overhead,
struct intel_link_m_n *m_n);
u32 intel_plane_fb_max_stride(struct intel_display *display,
- u32 pixel_format, u64 modifier);
+ const struct drm_format_info *info,
+ u64 modifier);
u32 intel_dumb_fb_max_stride(struct drm_device *drm,
u32 pixel_format, u64 modifier);
enum drm_mode_status
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 00600134bda0..dd39e6caa82e 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1564,8 +1564,8 @@ struct intel_plane {
const struct drm_framebuffer *fb,
int color_plane);
unsigned int (*max_stride)(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation);
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation);
bool (*can_async_flip)(u64 modifier);
/* Write all non-self arming plane registers */
void (*update_noarm)(struct intel_dsb *dsb,
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 19e3dc008caf..2eddccb1bc9e 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -1326,7 +1326,7 @@ static bool intel_plane_needs_remap(const struct intel_plane_state *plane_state)
* unclear in Bspec, for now no checking.
*/
stride = intel_fb_pitch(fb, 0, rotation);
- max_stride = plane->max_stride(plane, fb->base.format->format,
+ max_stride = plane->max_stride(plane, fb->base.format,
fb->base.modifier, rotation);
return stride > max_stride;
@@ -1972,7 +1972,8 @@ void intel_add_fb_offsets(int *x, int *y,
static
u32 intel_fb_max_stride(struct intel_display *display,
- u32 pixel_format, u64 modifier)
+ const struct drm_format_info *info,
+ u64 modifier)
{
/*
* Arbitrary limit for gen4+ chosen to match the
@@ -1982,7 +1983,7 @@ u32 intel_fb_max_stride(struct intel_display *display,
*/
if (DISPLAY_VER(display) < 4 || intel_fb_is_ccs_modifier(modifier) ||
intel_fb_modifier_uses_dpt(display, modifier))
- return intel_plane_fb_max_stride(display, pixel_format, modifier);
+ return intel_plane_fb_max_stride(display, info, modifier);
else if (DISPLAY_VER(display) >= 7)
return 256 * 1024;
else
@@ -1997,7 +1998,7 @@ intel_fb_stride_alignment(const struct drm_framebuffer *fb, int color_plane)
if (is_surface_linear(fb, color_plane)) {
unsigned int max_stride = intel_plane_fb_max_stride(display,
- fb->format->format,
+ fb->format,
fb->modifier);
/*
@@ -2055,7 +2056,7 @@ static int intel_plane_check_stride(const struct intel_plane_state *plane_state)
/* FIXME other color planes? */
stride = plane_state->view.color_plane[0].mapping_stride;
- max_stride = plane->max_stride(plane, fb->format->format,
+ max_stride = plane->max_stride(plane, fb->format,
fb->modifier, rotation);
if (stride > max_stride) {
@@ -2243,8 +2244,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
goto err_bo_framebuffer_fini;
}
- max_stride = intel_fb_max_stride(display, mode_cmd->pixel_format,
- mode_cmd->modifier[0]);
+ max_stride = intel_fb_max_stride(display, info, mode_cmd->modifier[0]);
if (mode_cmd->pitches[0] > max_stride) {
drm_dbg_kms(display->drm,
"%s pitch (%u) must be at most %d\n",
diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c
index 60f1d9ed181e..69b6873a6044 100644
--- a/drivers/gpu/drm/i915/display/intel_sprite.c
+++ b/drivers/gpu/drm/i915/display/intel_sprite.c
@@ -958,10 +958,9 @@ static int g4x_sprite_min_cdclk(const struct intel_crtc_state *crtc_state,
static unsigned int
g4x_sprite_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
- const struct drm_format_info *info = drm_format_info(pixel_format);
int cpp = info->cpp[0];
/* Limit to 4k pixels to guarantee TILEOFF.x doesn't get too big. */
@@ -973,10 +972,9 @@ g4x_sprite_max_stride(struct intel_plane *plane,
static unsigned int
hsw_sprite_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
- const struct drm_format_info *info = drm_format_info(pixel_format);
int cpp = info->cpp[0];
/* Limit to 8k pixels to guarantee OFFSET.x doesn't get too big. */
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index bc55fafe9ce3..0823ab38d1b7 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -465,12 +465,11 @@ static int icl_plane_max_height(const struct drm_framebuffer *fb,
static unsigned int
plane_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation,
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation,
unsigned int max_pixels,
unsigned int max_bytes)
{
- const struct drm_format_info *info = drm_format_info(pixel_format);
int cpp = info->cpp[0];
if (drm_rotation_90_or_270(rotation))
@@ -481,26 +480,26 @@ plane_max_stride(struct intel_plane *plane,
static unsigned int
adl_plane_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
unsigned int max_pixels = 65536; /* PLANE_OFFSET limit */
unsigned int max_bytes = 128 * 1024;
- return plane_max_stride(plane, pixel_format,
+ return plane_max_stride(plane, info,
modifier, rotation,
max_pixels, max_bytes);
}
static unsigned int
skl_plane_max_stride(struct intel_plane *plane,
- u32 pixel_format, u64 modifier,
- unsigned int rotation)
+ const struct drm_format_info *info,
+ u64 modifier, unsigned int rotation)
{
unsigned int max_pixels = 8192; /* PLANE_OFFSET limit */
unsigned int max_bytes = 32 * 1024;
- return plane_max_stride(plane, pixel_format,
+ return plane_max_stride(plane, info,
modifier, rotation,
max_pixels, max_bytes);
}
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 3/9] drm/i915: Populate fb->format accurately in BIOS FB readout
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
2025-11-07 18:11 ` [PATCH 1/9] drm/i915: Introduce intel_dumb_fb_max_stride() Ville Syrjala
2025-11-07 18:11 ` [PATCH 2/9] drm/i915: Pass drm_format_info into plane->max_stride() Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-07 18:11 ` [PATCH 4/9] drm/i915: Nuke intel_plane_config.tiling Ville Syrjala
` (10 subsequent siblings)
13 siblings, 0 replies; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Use drm_get_format_info() instead of drm_format_info() to populate
fb->format during the BIOS FB readout. The difference being that
drm_get_format_info() knows about compressed formats whereas
drm_format_info() doesn't.
This doesn't actually matter in practice since the BIOS FB should
never be compressed, but no reason we shouldn't use the more accurate
function here anyway.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/i9xx_plane.c | 3 ++-
drivers/gpu/drm/i915/display/skl_universal_plane.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.c b/drivers/gpu/drm/i915/display/i9xx_plane.c
index b962d9f78b2c..559207b23dc3 100644
--- a/drivers/gpu/drm/i915/display/i9xx_plane.c
+++ b/drivers/gpu/drm/i915/display/i9xx_plane.c
@@ -1203,7 +1203,8 @@ i9xx_get_initial_plane_config(struct intel_crtc *crtc,
pixel_format = val & DISP_FORMAT_MASK;
fourcc = i9xx_format_to_fourcc(pixel_format);
- fb->format = drm_format_info(fourcc);
+
+ fb->format = drm_get_format_info(display->drm, fourcc, fb->modifier);
if (display->platform.haswell || display->platform.broadwell) {
offset = intel_de_read(display,
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 0823ab38d1b7..7b17d1024502 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -3083,7 +3083,6 @@ skl_get_initial_plane_config(struct intel_crtc *crtc,
fourcc = skl_format_to_fourcc(pixel_format,
val & PLANE_CTL_ORDER_RGBX, alpha);
- fb->format = drm_format_info(fourcc);
tiling = val & PLANE_CTL_TILED_MASK;
switch (tiling) {
@@ -3136,6 +3135,8 @@ skl_get_initial_plane_config(struct intel_crtc *crtc,
goto error;
}
+ fb->format = drm_get_format_info(display->drm, fourcc, fb->modifier);
+
if (!display->params.enable_dpt &&
intel_fb_modifier_uses_dpt(display, fb->modifier)) {
drm_dbg_kms(display->drm, "DPT disabled, skipping initial FB\n");
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 4/9] drm/i915: Nuke intel_plane_config.tiling
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (2 preceding siblings ...)
2025-11-07 18:11 ` [PATCH 3/9] drm/i915: Populate fb->format accurately in BIOS FB readout Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-07 18:11 ` [PATCH 5/9] drm/i915/fb: Init 'ret' in each error branch in intel_framebuffer_init() Ville Syrjala
` (9 subsequent siblings)
13 siblings, 0 replies; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Use intel_fb_modifier_to_tiling() to convert the modifier into
the fence tiling mode during BIOS FB readout, rather than hand
rolling it. With this we can also stop tracking the tiling mode
in the intel_plane_config.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/i9xx_plane.c | 6 ++----
drivers/gpu/drm/i915/display/intel_display_types.h | 1 -
drivers/gpu/drm/i915/display/intel_plane_initial.c | 11 +++++++----
drivers/gpu/drm/i915/display/skl_universal_plane.c | 2 --
4 files changed, 9 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.c b/drivers/gpu/drm/i915/display/i9xx_plane.c
index 559207b23dc3..51ccc6bd5f21 100644
--- a/drivers/gpu/drm/i915/display/i9xx_plane.c
+++ b/drivers/gpu/drm/i915/display/i9xx_plane.c
@@ -1188,10 +1188,8 @@ i9xx_get_initial_plane_config(struct intel_crtc *crtc,
val = intel_de_read(display, DSPCNTR(display, i9xx_plane));
if (DISPLAY_VER(display) >= 4) {
- if (val & DISP_TILED) {
- plane_config->tiling = I915_TILING_X;
+ if (val & DISP_TILED)
fb->modifier = I915_FORMAT_MOD_X_TILED;
- }
if (val & DISP_ROTATE_180)
plane_config->rotation = DRM_MODE_ROTATE_180;
@@ -1211,7 +1209,7 @@ i9xx_get_initial_plane_config(struct intel_crtc *crtc,
DSPOFFSET(display, i9xx_plane));
base = intel_de_read(display, DSPSURF(display, i9xx_plane)) & DISP_ADDR_MASK;
} else if (DISPLAY_VER(display) >= 4) {
- if (plane_config->tiling)
+ if (fb->modifier == I915_FORMAT_MOD_X_TILED)
offset = intel_de_read(display,
DSPTILEOFF(display, i9xx_plane));
else
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index dd39e6caa82e..38702a9e0f50 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -726,7 +726,6 @@ struct intel_initial_plane_config {
struct intel_memory_region *mem;
resource_size_t phys_base;
struct i915_vma *vma;
- unsigned int tiling;
int size;
u32 base;
u8 rotation;
diff --git a/drivers/gpu/drm/i915/display/intel_plane_initial.c b/drivers/gpu/drm/i915/display/intel_plane_initial.c
index 81444e0b3c41..a1de1ec564d1 100644
--- a/drivers/gpu/drm/i915/display/intel_plane_initial.c
+++ b/drivers/gpu/drm/i915/display/intel_plane_initial.c
@@ -133,6 +133,7 @@ initial_plane_vma(struct intel_display *display,
struct drm_mm_node orig_mm = {};
struct i915_vma *vma;
resource_size_t phys_base;
+ unsigned int tiling;
u32 base, size;
u64 pinctl;
@@ -179,17 +180,19 @@ initial_plane_vma(struct intel_display *display,
i915_gem_object_set_cache_coherency(obj, HAS_WT(i915) ?
I915_CACHE_WT : I915_CACHE_NONE);
- switch (plane_config->tiling) {
+ tiling = intel_fb_modifier_to_tiling(plane_config->fb->base.modifier);
+
+ switch (tiling) {
case I915_TILING_NONE:
break;
case I915_TILING_X:
case I915_TILING_Y:
obj->tiling_and_stride =
plane_config->fb->base.pitches[0] |
- plane_config->tiling;
+ tiling;
break;
default:
- MISSING_CASE(plane_config->tiling);
+ MISSING_CASE(tiling);
goto err_obj;
}
@@ -374,7 +377,7 @@ intel_find_initial_plane_obj(struct intel_crtc *crtc,
plane_state->uapi.crtc_w = fb->width;
plane_state->uapi.crtc_h = fb->height;
- if (plane_config->tiling)
+ if (fb->modifier != DRM_FORMAT_MOD_LINEAR)
dev_priv->preserve_bios_swizzle = true;
plane_state->uapi.fb = fb;
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 7b17d1024502..89c8003ccfe7 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -3090,11 +3090,9 @@ skl_get_initial_plane_config(struct intel_crtc *crtc,
fb->modifier = DRM_FORMAT_MOD_LINEAR;
break;
case PLANE_CTL_TILED_X:
- plane_config->tiling = I915_TILING_X;
fb->modifier = I915_FORMAT_MOD_X_TILED;
break;
case PLANE_CTL_TILED_Y:
- plane_config->tiling = I915_TILING_Y;
if (val & PLANE_CTL_RENDER_DECOMPRESSION_ENABLE)
if (DISPLAY_VER(display) >= 14)
fb->modifier = I915_FORMAT_MOD_4_TILED_MTL_RC_CCS;
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 5/9] drm/i915/fb: Init 'ret' in each error branch in intel_framebuffer_init()
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (3 preceding siblings ...)
2025-11-07 18:11 ` [PATCH 4/9] drm/i915: Nuke intel_plane_config.tiling Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-10 11:07 ` Jani Nikula
2025-11-07 18:11 ` [PATCH 6/9] drm/i915/wm: Use drm_get_format_info() in SKL+ cursor DDB allocation Ville Syrjala
` (8 subsequent siblings)
13 siblings, 1 reply; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Make the order of things a bit less fragile in
intel_framebuffer_init() by assinging 'ret' in each
error branch instead of depending on some earlier
assignment.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fb.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 2eddccb1bc9e..b34b4961fe1c 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -2234,13 +2234,13 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
if (ret)
goto err_frontbuffer_put;
- ret = -EINVAL;
if (!drm_any_plane_has_format(display->drm,
mode_cmd->pixel_format,
mode_cmd->modifier[0])) {
drm_dbg_kms(display->drm,
"unsupported pixel format %p4cc / modifier 0x%llx\n",
&mode_cmd->pixel_format, mode_cmd->modifier[0]);
+ ret = -EINVAL;
goto err_bo_framebuffer_fini;
}
@@ -2251,6 +2251,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
mode_cmd->modifier[0] != DRM_FORMAT_MOD_LINEAR ?
"tiled" : "linear",
mode_cmd->pitches[0], max_stride);
+ ret = -EINVAL;
goto err_bo_framebuffer_fini;
}
@@ -2259,6 +2260,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
drm_dbg_kms(display->drm,
"plane 0 offset (0x%08x) must be 0\n",
mode_cmd->offsets[0]);
+ ret = -EINVAL;
goto err_bo_framebuffer_fini;
}
@@ -2269,6 +2271,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
if (mode_cmd->handles[i] != mode_cmd->handles[0]) {
drm_dbg_kms(display->drm, "bad plane %d handle\n", i);
+ ret = -EINVAL;
goto err_bo_framebuffer_fini;
}
@@ -2277,6 +2280,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
drm_dbg_kms(display->drm,
"plane %d pitch (%d) must be at least %u byte aligned\n",
i, fb->pitches[i], stride_alignment);
+ ret = -EINVAL;
goto err_bo_framebuffer_fini;
}
@@ -2287,6 +2291,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
drm_dbg_kms(display->drm,
"ccs aux plane %d pitch (%d) must be %d\n",
i, fb->pitches[i], ccs_aux_stride);
+ ret = -EINVAL;
goto err_bo_framebuffer_fini;
}
}
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 6/9] drm/i915/wm: Use drm_get_format_info() in SKL+ cursor DDB allocation
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (4 preceding siblings ...)
2025-11-07 18:11 ` [PATCH 5/9] drm/i915/fb: Init 'ret' in each error branch in intel_framebuffer_init() Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-10 11:08 ` Jani Nikula
2025-11-07 18:11 ` [PATCH 7/9] drm/i915: Use mode_config->cursor_width for " Ville Syrjala
` (7 subsequent siblings)
13 siblings, 1 reply; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Replace the technically inaccurate drm_format_info() with the
accurate drm_get_format_info() in the SKL+ cursor DDB
allocation code.
Since we're only interested in the linear modifier here, the two
functions do actually return the same information. But let's not
use drm_format_info() to avoid setting a bad examples.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 36a266f882d1..16d74ab3a2b5 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -635,15 +635,21 @@ skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
{
struct intel_display *display = to_intel_display(crtc_state);
struct intel_plane *plane = to_intel_plane(crtc_state->uapi.crtc->cursor);
+ const struct drm_format_info *info;
struct skl_wm_level wm = {};
int ret, min_ddb_alloc = 0;
struct skl_wm_params wp;
+ u64 modifier;
+ u32 format;
int level;
+ format = DRM_FORMAT_ARGB8888;
+ modifier = DRM_FORMAT_MOD_LINEAR;
+
+ info = drm_get_format_info(display->drm, format, modifier);
+
ret = skl_compute_wm_params(crtc_state, 256,
- drm_format_info(DRM_FORMAT_ARGB8888),
- DRM_FORMAT_MOD_LINEAR,
- DRM_MODE_ROTATE_0,
+ info, modifier, DRM_MODE_ROTATE_0,
crtc_state->pixel_rate, &wp, 0, 0);
drm_WARN_ON(display->drm, ret);
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 7/9] drm/i915: Use mode_config->cursor_width for cursor DDB allocation
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (5 preceding siblings ...)
2025-11-07 18:11 ` [PATCH 6/9] drm/i915/wm: Use drm_get_format_info() in SKL+ cursor DDB allocation Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-10 11:09 ` Jani Nikula
2025-11-07 18:11 ` [PATCH 8/9] drm/i915/cursor: Extract intel_cursor_mode_config_init() Ville Syrjala
` (6 subsequent siblings)
13 siblings, 1 reply; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Replace the hardcoded 256 with mode_config->cursor_width
when doing the cursor DDB allocation. Currently 256 is correct
for all SKL+, but this migth change in the future. One less place
to change should that happen.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 16d74ab3a2b5..54e9e0be019d 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -635,6 +635,7 @@ skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
{
struct intel_display *display = to_intel_display(crtc_state);
struct intel_plane *plane = to_intel_plane(crtc_state->uapi.crtc->cursor);
+ const struct drm_mode_config *mode_config = &display->drm->mode_config;
const struct drm_format_info *info;
struct skl_wm_level wm = {};
int ret, min_ddb_alloc = 0;
@@ -648,7 +649,7 @@ skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
info = drm_get_format_info(display->drm, format, modifier);
- ret = skl_compute_wm_params(crtc_state, 256,
+ ret = skl_compute_wm_params(crtc_state, mode_config->cursor_width,
info, modifier, DRM_MODE_ROTATE_0,
crtc_state->pixel_rate, &wp, 0, 0);
drm_WARN_ON(display->drm, ret);
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 8/9] drm/i915/cursor: Extract intel_cursor_mode_config_init()
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (6 preceding siblings ...)
2025-11-07 18:11 ` [PATCH 7/9] drm/i915: Use mode_config->cursor_width for " Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-07 18:11 ` [PATCH 9/9] drm/i915/cursor: Initialize 845 vs 865 cursor size separately Ville Syrjala
` (5 subsequent siblings)
13 siblings, 0 replies; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Move the max cursor size initialization into intel_cursor.c
so that all the platform specific details about cursors are
concentrated in one file.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cursor.c | 17 +++++++++++++++++
drivers/gpu/drm/i915/display/intel_cursor.h | 2 ++
.../gpu/drm/i915/display/intel_display_driver.c | 13 ++-----------
3 files changed, 21 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index 0367e6fc8de7..8410646a1f95 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -1092,3 +1092,20 @@ intel_cursor_plane_create(struct intel_display *display,
return ERR_PTR(ret);
}
+
+void intel_cursor_mode_config_init(struct intel_display *display)
+{
+ struct drm_mode_config *mode_config = &display->drm->mode_config;
+
+ if (display->platform.i845g || display->platform.i865g) {
+ mode_config->cursor_width = display->platform.i845g ? 64 : 512;
+ mode_config->cursor_height = 1023;
+ } else if (display->platform.i830 || display->platform.i85x ||
+ display->platform.i915g || display->platform.i915gm) {
+ mode_config->cursor_width = 64;
+ mode_config->cursor_height = 64;
+ } else {
+ mode_config->cursor_width = 256;
+ mode_config->cursor_height = 256;
+ }
+}
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.h b/drivers/gpu/drm/i915/display/intel_cursor.h
index 65a9e7eb88c2..7c269d7381ad 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.h
+++ b/drivers/gpu/drm/i915/display/intel_cursor.h
@@ -17,4 +17,6 @@ intel_cursor_plane_create(struct intel_display *display,
void intel_cursor_unpin_work(struct kthread_work *base);
+void intel_cursor_mode_config_init(struct intel_display *display);
+
#endif
diff --git a/drivers/gpu/drm/i915/display/intel_display_driver.c b/drivers/gpu/drm/i915/display/intel_display_driver.c
index 63942ebf46fb..7e000ba3e08b 100644
--- a/drivers/gpu/drm/i915/display/intel_display_driver.c
+++ b/drivers/gpu/drm/i915/display/intel_display_driver.c
@@ -29,6 +29,7 @@
#include "intel_cdclk.h"
#include "intel_color.h"
#include "intel_crtc.h"
+#include "intel_cursor.h"
#include "intel_dbuf_bw.h"
#include "intel_display_core.h"
#include "intel_display_debugfs.h"
@@ -148,17 +149,7 @@ static void intel_mode_config_init(struct intel_display *display)
mode_config->max_height = 2048;
}
- if (display->platform.i845g || display->platform.i865g) {
- mode_config->cursor_width = display->platform.i845g ? 64 : 512;
- mode_config->cursor_height = 1023;
- } else if (display->platform.i830 || display->platform.i85x ||
- display->platform.i915g || display->platform.i915gm) {
- mode_config->cursor_width = 64;
- mode_config->cursor_height = 64;
- } else {
- mode_config->cursor_width = 256;
- mode_config->cursor_height = 256;
- }
+ intel_cursor_mode_config_init(display);
}
static void intel_mode_config_cleanup(struct intel_display *display)
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 9/9] drm/i915/cursor: Initialize 845 vs 865 cursor size separately
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (7 preceding siblings ...)
2025-11-07 18:11 ` [PATCH 8/9] drm/i915/cursor: Extract intel_cursor_mode_config_init() Ville Syrjala
@ 2025-11-07 18:11 ` Ville Syrjala
2025-11-07 19:24 ` ✓ CI.KUnit: success for drm/i915: Further drm_get_format_info() stuff Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 18+ messages in thread
From: Ville Syrjala @ 2025-11-07 18:11 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The if+ternary combo used for the max cursor width initialization
on 845/865 is rather cumbersome. Just split this into a straight
up if ladder.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cursor.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index 8410646a1f95..a10b2425b94d 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -1097,8 +1097,11 @@ void intel_cursor_mode_config_init(struct intel_display *display)
{
struct drm_mode_config *mode_config = &display->drm->mode_config;
- if (display->platform.i845g || display->platform.i865g) {
- mode_config->cursor_width = display->platform.i845g ? 64 : 512;
+ if (display->platform.i845g) {
+ mode_config->cursor_width = 64;
+ mode_config->cursor_height = 1023;
+ } else if (display->platform.i865g) {
+ mode_config->cursor_width = 512;
mode_config->cursor_height = 1023;
} else if (display->platform.i830 || display->platform.i85x ||
display->platform.i915g || display->platform.i915gm) {
--
2.49.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* ✓ CI.KUnit: success for drm/i915: Further drm_get_format_info() stuff
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (8 preceding siblings ...)
2025-11-07 18:11 ` [PATCH 9/9] drm/i915/cursor: Initialize 845 vs 865 cursor size separately Ville Syrjala
@ 2025-11-07 19:24 ` Patchwork
2025-11-07 19:39 ` ✗ CI.checksparse: warning " Patchwork
` (3 subsequent siblings)
13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-11-07 19:24 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
== Series Details ==
Series: drm/i915: Further drm_get_format_info() stuff
URL : https://patchwork.freedesktop.org/series/157252/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:23:11] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:23:15] 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
[19:23:45] Starting KUnit Kernel (1/1)...
[19:23:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:23:46] ================== guc_buf (11 subtests) ===================
[19:23:46] [PASSED] test_smallest
[19:23:46] [PASSED] test_largest
[19:23:46] [PASSED] test_granular
[19:23:46] [PASSED] test_unique
[19:23:46] [PASSED] test_overlap
[19:23:46] [PASSED] test_reusable
[19:23:46] [PASSED] test_too_big
[19:23:46] [PASSED] test_flush
[19:23:46] [PASSED] test_lookup
[19:23:46] [PASSED] test_data
[19:23:46] [PASSED] test_class
[19:23:46] ===================== [PASSED] guc_buf =====================
[19:23:46] =================== guc_dbm (7 subtests) ===================
[19:23:46] [PASSED] test_empty
[19:23:46] [PASSED] test_default
[19:23:46] ======================== test_size ========================
[19:23:46] [PASSED] 4
[19:23:46] [PASSED] 8
[19:23:46] [PASSED] 32
[19:23:46] [PASSED] 256
[19:23:46] ==================== [PASSED] test_size ====================
[19:23:46] ======================= test_reuse ========================
[19:23:46] [PASSED] 4
[19:23:46] [PASSED] 8
[19:23:46] [PASSED] 32
[19:23:46] [PASSED] 256
[19:23:46] =================== [PASSED] test_reuse ====================
[19:23:46] =================== test_range_overlap ====================
[19:23:46] [PASSED] 4
[19:23:46] [PASSED] 8
[19:23:46] [PASSED] 32
[19:23:46] [PASSED] 256
[19:23:46] =============== [PASSED] test_range_overlap ================
[19:23:46] =================== test_range_compact ====================
[19:23:46] [PASSED] 4
[19:23:46] [PASSED] 8
[19:23:46] [PASSED] 32
[19:23:46] [PASSED] 256
[19:23:46] =============== [PASSED] test_range_compact ================
[19:23:46] ==================== test_range_spare =====================
[19:23:46] [PASSED] 4
[19:23:46] [PASSED] 8
[19:23:46] [PASSED] 32
[19:23:46] [PASSED] 256
[19:23:46] ================ [PASSED] test_range_spare =================
[19:23:46] ===================== [PASSED] guc_dbm =====================
[19:23:46] =================== guc_idm (6 subtests) ===================
[19:23:46] [PASSED] bad_init
[19:23:46] [PASSED] no_init
[19:23:46] [PASSED] init_fini
[19:23:46] [PASSED] check_used
[19:23:46] [PASSED] check_quota
[19:23:46] [PASSED] check_all
[19:23:46] ===================== [PASSED] guc_idm =====================
[19:23:46] ================== no_relay (3 subtests) ===================
[19:23:46] [PASSED] xe_drops_guc2pf_if_not_ready
[19:23:46] [PASSED] xe_drops_guc2vf_if_not_ready
[19:23:46] [PASSED] xe_rejects_send_if_not_ready
[19:23:46] ==================== [PASSED] no_relay =====================
[19:23:46] ================== pf_relay (14 subtests) ==================
[19:23:46] [PASSED] pf_rejects_guc2pf_too_short
[19:23:46] [PASSED] pf_rejects_guc2pf_too_long
[19:23:46] [PASSED] pf_rejects_guc2pf_no_payload
[19:23:46] [PASSED] pf_fails_no_payload
[19:23:46] [PASSED] pf_fails_bad_origin
[19:23:46] [PASSED] pf_fails_bad_type
[19:23:46] [PASSED] pf_txn_reports_error
[19:23:46] [PASSED] pf_txn_sends_pf2guc
[19:23:46] [PASSED] pf_sends_pf2guc
[19:23:46] [SKIPPED] pf_loopback_nop
[19:23:46] [SKIPPED] pf_loopback_echo
[19:23:46] [SKIPPED] pf_loopback_fail
[19:23:46] [SKIPPED] pf_loopback_busy
[19:23:46] [SKIPPED] pf_loopback_retry
[19:23:46] ==================== [PASSED] pf_relay =====================
[19:23:46] ================== vf_relay (3 subtests) ===================
[19:23:46] [PASSED] vf_rejects_guc2vf_too_short
[19:23:46] [PASSED] vf_rejects_guc2vf_too_long
[19:23:46] [PASSED] vf_rejects_guc2vf_no_payload
[19:23:46] ==================== [PASSED] vf_relay =====================
[19:23:46] ================ pf_gt_config (4 subtests) =================
[19:23:46] [PASSED] fair_contexts_1vf
[19:23:46] [PASSED] fair_doorbells_1vf
[19:23:46] ====================== fair_contexts ======================
[19:23:46] [PASSED] 1 VF
[19:23:46] [PASSED] 2 VFs
[19:23:46] [PASSED] 3 VFs
[19:23:46] [PASSED] 4 VFs
[19:23:46] [PASSED] 5 VFs
[19:23:46] [PASSED] 6 VFs
[19:23:46] [PASSED] 7 VFs
[19:23:46] [PASSED] 8 VFs
[19:23:46] [PASSED] 9 VFs
[19:23:46] [PASSED] 10 VFs
[19:23:46] [PASSED] 11 VFs
[19:23:46] [PASSED] 12 VFs
[19:23:46] [PASSED] 13 VFs
[19:23:46] [PASSED] 14 VFs
[19:23:46] [PASSED] 15 VFs
[19:23:46] [PASSED] 16 VFs
[19:23:46] [PASSED] 17 VFs
[19:23:46] [PASSED] 18 VFs
[19:23:46] [PASSED] 19 VFs
[19:23:46] [PASSED] 20 VFs
[19:23:46] [PASSED] 21 VFs
[19:23:46] [PASSED] 22 VFs
[19:23:46] [PASSED] 23 VFs
[19:23:46] [PASSED] 24 VFs
[19:23:46] [PASSED] 25 VFs
[19:23:46] [PASSED] 26 VFs
[19:23:46] [PASSED] 27 VFs
[19:23:46] [PASSED] 28 VFs
[19:23:46] [PASSED] 29 VFs
[19:23:46] [PASSED] 30 VFs
[19:23:46] [PASSED] 31 VFs
[19:23:46] [PASSED] 32 VFs
[19:23:46] [PASSED] 33 VFs
[19:23:46] [PASSED] 34 VFs
[19:23:46] [PASSED] 35 VFs
[19:23:46] [PASSED] 36 VFs
[19:23:46] [PASSED] 37 VFs
[19:23:46] [PASSED] 38 VFs
[19:23:46] [PASSED] 39 VFs
[19:23:46] [PASSED] 40 VFs
[19:23:46] [PASSED] 41 VFs
[19:23:46] [PASSED] 42 VFs
[19:23:46] [PASSED] 43 VFs
[19:23:46] [PASSED] 44 VFs
[19:23:46] [PASSED] 45 VFs
[19:23:46] [PASSED] 46 VFs
[19:23:46] [PASSED] 47 VFs
[19:23:46] [PASSED] 48 VFs
[19:23:46] [PASSED] 49 VFs
[19:23:46] [PASSED] 50 VFs
[19:23:46] [PASSED] 51 VFs
[19:23:46] [PASSED] 52 VFs
[19:23:46] [PASSED] 53 VFs
[19:23:46] [PASSED] 54 VFs
[19:23:46] [PASSED] 55 VFs
[19:23:46] [PASSED] 56 VFs
[19:23:46] [PASSED] 57 VFs
[19:23:46] [PASSED] 58 VFs
[19:23:46] [PASSED] 59 VFs
[19:23:46] [PASSED] 60 VFs
[19:23:46] [PASSED] 61 VFs
[19:23:46] [PASSED] 62 VFs
[19:23:46] [PASSED] 63 VFs
[19:23:46] ================== [PASSED] fair_contexts ==================
[19:23:46] ===================== fair_doorbells ======================
[19:23:46] [PASSED] 1 VF
[19:23:46] [PASSED] 2 VFs
[19:23:46] [PASSED] 3 VFs
[19:23:46] [PASSED] 4 VFs
[19:23:46] [PASSED] 5 VFs
[19:23:46] [PASSED] 6 VFs
[19:23:46] [PASSED] 7 VFs
[19:23:46] [PASSED] 8 VFs
[19:23:46] [PASSED] 9 VFs
[19:23:46] [PASSED] 10 VFs
[19:23:46] [PASSED] 11 VFs
[19:23:46] [PASSED] 12 VFs
[19:23:46] [PASSED] 13 VFs
[19:23:46] [PASSED] 14 VFs
[19:23:46] [PASSED] 15 VFs
[19:23:46] [PASSED] 16 VFs
[19:23:46] [PASSED] 17 VFs
[19:23:46] [PASSED] 18 VFs
[19:23:46] [PASSED] 19 VFs
[19:23:46] [PASSED] 20 VFs
[19:23:46] [PASSED] 21 VFs
[19:23:46] [PASSED] 22 VFs
[19:23:46] [PASSED] 23 VFs
[19:23:46] [PASSED] 24 VFs
[19:23:46] [PASSED] 25 VFs
[19:23:46] [PASSED] 26 VFs
[19:23:46] [PASSED] 27 VFs
[19:23:46] [PASSED] 28 VFs
[19:23:46] [PASSED] 29 VFs
[19:23:46] [PASSED] 30 VFs
[19:23:46] [PASSED] 31 VFs
[19:23:46] [PASSED] 32 VFs
[19:23:46] [PASSED] 33 VFs
[19:23:46] [PASSED] 34 VFs
[19:23:46] [PASSED] 35 VFs
[19:23:46] [PASSED] 36 VFs
[19:23:46] [PASSED] 37 VFs
[19:23:46] [PASSED] 38 VFs
[19:23:46] [PASSED] 39 VFs
[19:23:46] [PASSED] 40 VFs
[19:23:46] [PASSED] 41 VFs
[19:23:46] [PASSED] 42 VFs
[19:23:46] [PASSED] 43 VFs
[19:23:46] [PASSED] 44 VFs
[19:23:46] [PASSED] 45 VFs
[19:23:46] [PASSED] 46 VFs
[19:23:46] [PASSED] 47 VFs
[19:23:46] [PASSED] 48 VFs
[19:23:46] [PASSED] 49 VFs
[19:23:46] [PASSED] 50 VFs
[19:23:46] [PASSED] 51 VFs
[19:23:46] [PASSED] 52 VFs
[19:23:46] [PASSED] 53 VFs
[19:23:46] [PASSED] 54 VFs
[19:23:46] [PASSED] 55 VFs
[19:23:46] [PASSED] 56 VFs
[19:23:46] [PASSED] 57 VFs
[19:23:46] [PASSED] 58 VFs
[19:23:46] [PASSED] 59 VFs
[19:23:46] [PASSED] 60 VFs
[19:23:46] [PASSED] 61 VFs
[19:23:46] [PASSED] 62 VFs
[19:23:46] [PASSED] 63 VFs
[19:23:46] ================= [PASSED] fair_doorbells ==================
[19:23:46] ================== [PASSED] pf_gt_config ===================
[19:23:46] ===================== lmtt (1 subtest) =====================
[19:23:46] ======================== test_ops =========================
[19:23:46] [PASSED] 2-level
[19:23:46] [PASSED] multi-level
[19:23:46] ==================== [PASSED] test_ops =====================
[19:23:46] ====================== [PASSED] lmtt =======================
[19:23:46] ================= pf_service (11 subtests) =================
[19:23:46] [PASSED] pf_negotiate_any
[19:23:46] [PASSED] pf_negotiate_base_match
[19:23:46] [PASSED] pf_negotiate_base_newer
[19:23:46] [PASSED] pf_negotiate_base_next
[19:23:46] [SKIPPED] pf_negotiate_base_older
[19:23:46] [PASSED] pf_negotiate_base_prev
[19:23:46] [PASSED] pf_negotiate_latest_match
[19:23:46] [PASSED] pf_negotiate_latest_newer
[19:23:46] [PASSED] pf_negotiate_latest_next
[19:23:46] [SKIPPED] pf_negotiate_latest_older
[19:23:46] [SKIPPED] pf_negotiate_latest_prev
[19:23:46] =================== [PASSED] pf_service ====================
[19:23:46] ================= xe_guc_g2g (2 subtests) ==================
[19:23:46] ============== xe_live_guc_g2g_kunit_default ==============
[19:23:46] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[19:23:46] ============== xe_live_guc_g2g_kunit_allmem ===============
[19:23:46] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[19:23:46] =================== [SKIPPED] xe_guc_g2g ===================
[19:23:46] =================== xe_mocs (2 subtests) ===================
[19:23:46] ================ xe_live_mocs_kernel_kunit ================
[19:23:46] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[19:23:46] ================ xe_live_mocs_reset_kunit =================
[19:23:46] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[19:23:46] ==================== [SKIPPED] xe_mocs =====================
[19:23:46] ================= xe_migrate (2 subtests) ==================
[19:23:46] ================= xe_migrate_sanity_kunit =================
[19:23:46] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[19:23:46] ================== xe_validate_ccs_kunit ==================
[19:23:46] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[19:23:46] =================== [SKIPPED] xe_migrate ===================
[19:23:46] ================== xe_dma_buf (1 subtest) ==================
[19:23:46] ==================== xe_dma_buf_kunit =====================
[19:23:46] ================ [SKIPPED] xe_dma_buf_kunit ================
[19:23:46] =================== [SKIPPED] xe_dma_buf ===================
[19:23:46] ================= xe_bo_shrink (1 subtest) =================
[19:23:46] =================== xe_bo_shrink_kunit ====================
[19:23:46] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[19:23:46] ================== [SKIPPED] xe_bo_shrink ==================
[19:23:46] ==================== xe_bo (2 subtests) ====================
[19:23:46] ================== xe_ccs_migrate_kunit ===================
[19:23:46] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[19:23:46] ==================== xe_bo_evict_kunit ====================
[19:23:46] =============== [SKIPPED] xe_bo_evict_kunit ================
[19:23:46] ===================== [SKIPPED] xe_bo ======================
[19:23:46] ==================== args (11 subtests) ====================
[19:23:46] [PASSED] count_args_test
[19:23:46] [PASSED] call_args_example
[19:23:46] [PASSED] call_args_test
[19:23:46] [PASSED] drop_first_arg_example
[19:23:46] [PASSED] drop_first_arg_test
[19:23:46] [PASSED] first_arg_example
[19:23:46] [PASSED] first_arg_test
[19:23:46] [PASSED] last_arg_example
[19:23:46] [PASSED] last_arg_test
[19:23:46] [PASSED] pick_arg_example
[19:23:46] [PASSED] sep_comma_example
[19:23:46] ====================== [PASSED] args =======================
[19:23:46] =================== xe_pci (3 subtests) ====================
[19:23:46] ==================== check_graphics_ip ====================
[19:23:46] [PASSED] 12.00 Xe_LP
[19:23:46] [PASSED] 12.10 Xe_LP+
[19:23:46] [PASSED] 12.55 Xe_HPG
[19:23:46] [PASSED] 12.60 Xe_HPC
[19:23:46] [PASSED] 12.70 Xe_LPG
[19:23:46] [PASSED] 12.71 Xe_LPG
[19:23:46] [PASSED] 12.74 Xe_LPG+
[19:23:46] [PASSED] 20.01 Xe2_HPG
[19:23:46] [PASSED] 20.02 Xe2_HPG
[19:23:46] [PASSED] 20.04 Xe2_LPG
[19:23:46] [PASSED] 30.00 Xe3_LPG
[19:23:46] [PASSED] 30.01 Xe3_LPG
[19:23:46] [PASSED] 30.03 Xe3_LPG
[19:23:46] [PASSED] 30.04 Xe3_LPG
[19:23:46] [PASSED] 30.05 Xe3_LPG
[19:23:46] [PASSED] 35.11 Xe3p_XPC
[19:23:46] ================ [PASSED] check_graphics_ip ================
[19:23:46] ===================== check_media_ip ======================
[19:23:46] [PASSED] 12.00 Xe_M
[19:23:46] [PASSED] 12.55 Xe_HPM
[19:23:46] [PASSED] 13.00 Xe_LPM+
[19:23:46] [PASSED] 13.01 Xe2_HPM
[19:23:46] [PASSED] 20.00 Xe2_LPM
[19:23:46] [PASSED] 30.00 Xe3_LPM
[19:23:46] [PASSED] 30.02 Xe3_LPM
[19:23:46] [PASSED] 35.00 Xe3p_LPM
[19:23:46] [PASSED] 35.03 Xe3p_HPM
[19:23:46] ================= [PASSED] check_media_ip ==================
[19:23:46] =================== check_platform_desc ===================
[19:23:46] [PASSED] 0x9A60 (TIGERLAKE)
[19:23:46] [PASSED] 0x9A68 (TIGERLAKE)
[19:23:46] [PASSED] 0x9A70 (TIGERLAKE)
[19:23:46] [PASSED] 0x9A40 (TIGERLAKE)
[19:23:46] [PASSED] 0x9A49 (TIGERLAKE)
[19:23:46] [PASSED] 0x9A59 (TIGERLAKE)
[19:23:46] [PASSED] 0x9A78 (TIGERLAKE)
[19:23:46] [PASSED] 0x9AC0 (TIGERLAKE)
[19:23:46] [PASSED] 0x9AC9 (TIGERLAKE)
[19:23:46] [PASSED] 0x9AD9 (TIGERLAKE)
[19:23:46] [PASSED] 0x9AF8 (TIGERLAKE)
[19:23:46] [PASSED] 0x4C80 (ROCKETLAKE)
[19:23:46] [PASSED] 0x4C8A (ROCKETLAKE)
[19:23:46] [PASSED] 0x4C8B (ROCKETLAKE)
[19:23:46] [PASSED] 0x4C8C (ROCKETLAKE)
[19:23:46] [PASSED] 0x4C90 (ROCKETLAKE)
[19:23:46] [PASSED] 0x4C9A (ROCKETLAKE)
[19:23:46] [PASSED] 0x4680 (ALDERLAKE_S)
[19:23:46] [PASSED] 0x4682 (ALDERLAKE_S)
[19:23:46] [PASSED] 0x4688 (ALDERLAKE_S)
[19:23:46] [PASSED] 0x468A (ALDERLAKE_S)
[19:23:46] [PASSED] 0x468B (ALDERLAKE_S)
[19:23:46] [PASSED] 0x4690 (ALDERLAKE_S)
[19:23:46] [PASSED] 0x4692 (ALDERLAKE_S)
[19:23:46] [PASSED] 0x4693 (ALDERLAKE_S)
[19:23:46] [PASSED] 0x46A0 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46A1 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46A2 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46A3 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46A6 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46A8 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46AA (ALDERLAKE_P)
[19:23:46] [PASSED] 0x462A (ALDERLAKE_P)
[19:23:46] [PASSED] 0x4626 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x4628 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46B0 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46B1 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46B2 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46B3 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46C0 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46C1 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46C2 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46C3 (ALDERLAKE_P)
[19:23:46] [PASSED] 0x46D0 (ALDERLAKE_N)
[19:23:46] [PASSED] 0x46D1 (ALDERLAKE_N)
[19:23:46] [PASSED] 0x46D2 (ALDERLAKE_N)
[19:23:46] [PASSED] 0x46D3 (ALDERLAKE_N)
[19:23:46] [PASSED] 0x46D4 (ALDERLAKE_N)
[19:23:46] [PASSED] 0xA721 (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA7A1 (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA7A9 (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA7AC (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA7AD (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA720 (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA7A0 (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA7A8 (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA7AA (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA7AB (ALDERLAKE_P)
[19:23:46] [PASSED] 0xA780 (ALDERLAKE_S)
[19:23:46] [PASSED] 0xA781 (ALDERLAKE_S)
[19:23:46] [PASSED] 0xA782 (ALDERLAKE_S)
[19:23:46] [PASSED] 0xA783 (ALDERLAKE_S)
[19:23:46] [PASSED] 0xA788 (ALDERLAKE_S)
[19:23:46] [PASSED] 0xA789 (ALDERLAKE_S)
[19:23:46] [PASSED] 0xA78A (ALDERLAKE_S)
[19:23:46] [PASSED] 0xA78B (ALDERLAKE_S)
[19:23:46] [PASSED] 0x4905 (DG1)
[19:23:46] [PASSED] 0x4906 (DG1)
[19:23:46] [PASSED] 0x4907 (DG1)
[19:23:46] [PASSED] 0x4908 (DG1)
[19:23:46] [PASSED] 0x4909 (DG1)
[19:23:46] [PASSED] 0x56C0 (DG2)
[19:23:46] [PASSED] 0x56C2 (DG2)
[19:23:46] [PASSED] 0x56C1 (DG2)
[19:23:46] [PASSED] 0x7D51 (METEORLAKE)
[19:23:46] [PASSED] 0x7DD1 (METEORLAKE)
[19:23:46] [PASSED] 0x7D41 (METEORLAKE)
[19:23:46] [PASSED] 0x7D67 (METEORLAKE)
[19:23:46] [PASSED] 0xB640 (METEORLAKE)
[19:23:46] [PASSED] 0x56A0 (DG2)
[19:23:46] [PASSED] 0x56A1 (DG2)
[19:23:46] [PASSED] 0x56A2 (DG2)
[19:23:46] [PASSED] 0x56BE (DG2)
[19:23:46] [PASSED] 0x56BF (DG2)
[19:23:46] [PASSED] 0x5690 (DG2)
stty: 'standard input': Inappropriate ioctl for device
[19:23:46] [PASSED] 0x5691 (DG2)
[19:23:46] [PASSED] 0x5692 (DG2)
[19:23:46] [PASSED] 0x56A5 (DG2)
[19:23:46] [PASSED] 0x56A6 (DG2)
[19:23:46] [PASSED] 0x56B0 (DG2)
[19:23:46] [PASSED] 0x56B1 (DG2)
[19:23:46] [PASSED] 0x56BA (DG2)
[19:23:46] [PASSED] 0x56BB (DG2)
[19:23:46] [PASSED] 0x56BC (DG2)
[19:23:46] [PASSED] 0x56BD (DG2)
[19:23:46] [PASSED] 0x5693 (DG2)
[19:23:46] [PASSED] 0x5694 (DG2)
[19:23:46] [PASSED] 0x5695 (DG2)
[19:23:46] [PASSED] 0x56A3 (DG2)
[19:23:46] [PASSED] 0x56A4 (DG2)
[19:23:46] [PASSED] 0x56B2 (DG2)
[19:23:46] [PASSED] 0x56B3 (DG2)
[19:23:46] [PASSED] 0x5696 (DG2)
[19:23:46] [PASSED] 0x5697 (DG2)
[19:23:46] [PASSED] 0xB69 (PVC)
[19:23:46] [PASSED] 0xB6E (PVC)
[19:23:46] [PASSED] 0xBD4 (PVC)
[19:23:46] [PASSED] 0xBD5 (PVC)
[19:23:46] [PASSED] 0xBD6 (PVC)
[19:23:46] [PASSED] 0xBD7 (PVC)
[19:23:46] [PASSED] 0xBD8 (PVC)
[19:23:46] [PASSED] 0xBD9 (PVC)
[19:23:46] [PASSED] 0xBDA (PVC)
[19:23:46] [PASSED] 0xBDB (PVC)
[19:23:46] [PASSED] 0xBE0 (PVC)
[19:23:46] [PASSED] 0xBE1 (PVC)
[19:23:46] [PASSED] 0xBE5 (PVC)
[19:23:46] [PASSED] 0x7D40 (METEORLAKE)
[19:23:46] [PASSED] 0x7D45 (METEORLAKE)
[19:23:46] [PASSED] 0x7D55 (METEORLAKE)
[19:23:46] [PASSED] 0x7D60 (METEORLAKE)
[19:23:46] [PASSED] 0x7DD5 (METEORLAKE)
[19:23:46] [PASSED] 0x6420 (LUNARLAKE)
[19:23:46] [PASSED] 0x64A0 (LUNARLAKE)
[19:23:46] [PASSED] 0x64B0 (LUNARLAKE)
[19:23:46] [PASSED] 0xE202 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE209 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE20B (BATTLEMAGE)
[19:23:46] [PASSED] 0xE20C (BATTLEMAGE)
[19:23:46] [PASSED] 0xE20D (BATTLEMAGE)
[19:23:46] [PASSED] 0xE210 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE211 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE212 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE216 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE220 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE221 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE222 (BATTLEMAGE)
[19:23:46] [PASSED] 0xE223 (BATTLEMAGE)
[19:23:46] [PASSED] 0xB080 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB081 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB082 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB083 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB084 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB085 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB086 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB087 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB08F (PANTHERLAKE)
[19:23:46] [PASSED] 0xB090 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB0A0 (PANTHERLAKE)
[19:23:46] [PASSED] 0xB0B0 (PANTHERLAKE)
[19:23:46] [PASSED] 0xD740 (NOVALAKE_S)
[19:23:46] [PASSED] 0xD741 (NOVALAKE_S)
[19:23:46] [PASSED] 0xD742 (NOVALAKE_S)
[19:23:46] [PASSED] 0xD743 (NOVALAKE_S)
[19:23:46] [PASSED] 0xD744 (NOVALAKE_S)
[19:23:46] [PASSED] 0xD745 (NOVALAKE_S)
[19:23:46] [PASSED] 0x674C (CRESCENTISLAND)
[19:23:46] [PASSED] 0xFD80 (PANTHERLAKE)
[19:23:46] [PASSED] 0xFD81 (PANTHERLAKE)
[19:23:46] =============== [PASSED] check_platform_desc ===============
[19:23:46] ===================== [PASSED] xe_pci ======================
[19:23:46] =================== xe_rtp (2 subtests) ====================
[19:23:46] =============== xe_rtp_process_to_sr_tests ================
[19:23:46] [PASSED] coalesce-same-reg
[19:23:46] [PASSED] no-match-no-add
[19:23:46] [PASSED] match-or
[19:23:46] [PASSED] match-or-xfail
[19:23:46] [PASSED] no-match-no-add-multiple-rules
[19:23:46] [PASSED] two-regs-two-entries
[19:23:46] [PASSED] clr-one-set-other
[19:23:46] [PASSED] set-field
[19:23:46] [PASSED] conflict-duplicate
[19:23:46] [PASSED] conflict-not-disjoint
[19:23:46] [PASSED] conflict-reg-type
[19:23:46] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[19:23:46] ================== xe_rtp_process_tests ===================
[19:23:46] [PASSED] active1
[19:23:46] [PASSED] active2
[19:23:46] [PASSED] active-inactive
[19:23:46] [PASSED] inactive-active
[19:23:46] [PASSED] inactive-1st_or_active-inactive
[19:23:46] [PASSED] inactive-2nd_or_active-inactive
[19:23:46] [PASSED] inactive-last_or_active-inactive
[19:23:46] [PASSED] inactive-no_or_active-inactive
[19:23:46] ============== [PASSED] xe_rtp_process_tests ===============
[19:23:46] ===================== [PASSED] xe_rtp ======================
[19:23:46] ==================== xe_wa (1 subtest) =====================
[19:23:46] ======================== xe_wa_gt =========================
[19:23:46] [PASSED] TIGERLAKE B0
[19:23:46] [PASSED] DG1 A0
[19:23:46] [PASSED] DG1 B0
[19:23:46] [PASSED] ALDERLAKE_S A0
[19:23:46] [PASSED] ALDERLAKE_S B0
[19:23:46] [PASSED] ALDERLAKE_S C0
[19:23:46] [PASSED] ALDERLAKE_S D0
[19:23:46] [PASSED] ALDERLAKE_P A0
[19:23:46] [PASSED] ALDERLAKE_P B0
[19:23:46] [PASSED] ALDERLAKE_P C0
[19:23:46] [PASSED] ALDERLAKE_S RPLS D0
[19:23:46] [PASSED] ALDERLAKE_P RPLU E0
[19:23:46] [PASSED] DG2 G10 C0
[19:23:46] [PASSED] DG2 G11 B1
[19:23:46] [PASSED] DG2 G12 A1
[19:23:46] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:23:46] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:23:46] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[19:23:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[19:23:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[19:23:46] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[19:23:46] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[19:23:46] ==================== [PASSED] xe_wa_gt =====================
[19:23:46] ====================== [PASSED] xe_wa ======================
[19:23:46] ============================================================
[19:23:46] Testing complete. Ran 446 tests: passed: 428, skipped: 18
[19:23:46] Elapsed time: 35.187s total, 4.270s configuring, 30.450s building, 0.417s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:23:46] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:23:48] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:24:12] Starting KUnit Kernel (1/1)...
[19:24:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:24:12] ============ drm_test_pick_cmdline (2 subtests) ============
[19:24:12] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[19:24:12] =============== drm_test_pick_cmdline_named ===============
[19:24:12] [PASSED] NTSC
[19:24:12] [PASSED] NTSC-J
[19:24:12] [PASSED] PAL
[19:24:12] [PASSED] PAL-M
[19:24:12] =========== [PASSED] drm_test_pick_cmdline_named ===========
[19:24:12] ============== [PASSED] drm_test_pick_cmdline ==============
[19:24:12] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[19:24:12] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[19:24:12] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[19:24:12] =========== drm_validate_clone_mode (2 subtests) ===========
[19:24:12] ============== drm_test_check_in_clone_mode ===============
[19:24:12] [PASSED] in_clone_mode
[19:24:12] [PASSED] not_in_clone_mode
[19:24:12] ========== [PASSED] drm_test_check_in_clone_mode ===========
[19:24:12] =============== drm_test_check_valid_clones ===============
[19:24:12] [PASSED] not_in_clone_mode
[19:24:12] [PASSED] valid_clone
[19:24:12] [PASSED] invalid_clone
[19:24:12] =========== [PASSED] drm_test_check_valid_clones ===========
[19:24:12] ============= [PASSED] drm_validate_clone_mode =============
[19:24:12] ============= drm_validate_modeset (1 subtest) =============
[19:24:12] [PASSED] drm_test_check_connector_changed_modeset
[19:24:12] ============== [PASSED] drm_validate_modeset ===============
[19:24:12] ====== drm_test_bridge_get_current_state (2 subtests) ======
[19:24:12] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[19:24:12] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[19:24:12] ======== [PASSED] drm_test_bridge_get_current_state ========
[19:24:12] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[19:24:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[19:24:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[19:24:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[19:24:12] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[19:24:12] ============== drm_bridge_alloc (2 subtests) ===============
[19:24:12] [PASSED] drm_test_drm_bridge_alloc_basic
[19:24:12] [PASSED] drm_test_drm_bridge_alloc_get_put
[19:24:12] ================ [PASSED] drm_bridge_alloc =================
[19:24:12] ================== drm_buddy (8 subtests) ==================
[19:24:12] [PASSED] drm_test_buddy_alloc_limit
[19:24:12] [PASSED] drm_test_buddy_alloc_optimistic
[19:24:12] [PASSED] drm_test_buddy_alloc_pessimistic
[19:24:12] [PASSED] drm_test_buddy_alloc_pathological
[19:24:12] [PASSED] drm_test_buddy_alloc_contiguous
[19:24:12] [PASSED] drm_test_buddy_alloc_clear
[19:24:12] [PASSED] drm_test_buddy_alloc_range_bias
[19:24:13] [PASSED] drm_test_buddy_fragmentation_performance
[19:24:13] ==================== [PASSED] drm_buddy ====================
[19:24:13] ============= drm_cmdline_parser (40 subtests) =============
[19:24:13] [PASSED] drm_test_cmdline_force_d_only
[19:24:13] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:24:13] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:24:13] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:24:13] [PASSED] drm_test_cmdline_force_e_only
[19:24:13] [PASSED] drm_test_cmdline_res
[19:24:13] [PASSED] drm_test_cmdline_res_vesa
[19:24:13] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:24:13] [PASSED] drm_test_cmdline_res_rblank
[19:24:13] [PASSED] drm_test_cmdline_res_bpp
[19:24:13] [PASSED] drm_test_cmdline_res_refresh
[19:24:13] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:24:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:24:13] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:24:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:24:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:24:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:24:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:24:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:24:13] [PASSED] drm_test_cmdline_res_margins_force_on
[19:24:13] [PASSED] drm_test_cmdline_res_vesa_margins
[19:24:13] [PASSED] drm_test_cmdline_name
[19:24:13] [PASSED] drm_test_cmdline_name_bpp
[19:24:13] [PASSED] drm_test_cmdline_name_option
[19:24:13] [PASSED] drm_test_cmdline_name_bpp_option
[19:24:13] [PASSED] drm_test_cmdline_rotate_0
[19:24:13] [PASSED] drm_test_cmdline_rotate_90
[19:24:13] [PASSED] drm_test_cmdline_rotate_180
[19:24:13] [PASSED] drm_test_cmdline_rotate_270
[19:24:13] [PASSED] drm_test_cmdline_hmirror
[19:24:13] [PASSED] drm_test_cmdline_vmirror
[19:24:13] [PASSED] drm_test_cmdline_margin_options
[19:24:13] [PASSED] drm_test_cmdline_multiple_options
[19:24:13] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:24:13] [PASSED] drm_test_cmdline_extra_and_option
[19:24:13] [PASSED] drm_test_cmdline_freestanding_options
[19:24:13] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:24:13] [PASSED] drm_test_cmdline_panel_orientation
[19:24:13] ================ drm_test_cmdline_invalid =================
[19:24:13] [PASSED] margin_only
[19:24:13] [PASSED] interlace_only
[19:24:13] [PASSED] res_missing_x
[19:24:13] [PASSED] res_missing_y
[19:24:13] [PASSED] res_bad_y
[19:24:13] [PASSED] res_missing_y_bpp
[19:24:13] [PASSED] res_bad_bpp
[19:24:13] [PASSED] res_bad_refresh
[19:24:13] [PASSED] res_bpp_refresh_force_on_off
[19:24:13] [PASSED] res_invalid_mode
[19:24:13] [PASSED] res_bpp_wrong_place_mode
[19:24:13] [PASSED] name_bpp_refresh
[19:24:13] [PASSED] name_refresh
[19:24:13] [PASSED] name_refresh_wrong_mode
[19:24:13] [PASSED] name_refresh_invalid_mode
[19:24:13] [PASSED] rotate_multiple
[19:24:13] [PASSED] rotate_invalid_val
[19:24:13] [PASSED] rotate_truncated
[19:24:13] [PASSED] invalid_option
[19:24:13] [PASSED] invalid_tv_option
[19:24:13] [PASSED] truncated_tv_option
[19:24:13] ============ [PASSED] drm_test_cmdline_invalid =============
[19:24:13] =============== drm_test_cmdline_tv_options ===============
[19:24:13] [PASSED] NTSC
[19:24:13] [PASSED] NTSC_443
[19:24:13] [PASSED] NTSC_J
[19:24:13] [PASSED] PAL
[19:24:13] [PASSED] PAL_M
[19:24:13] [PASSED] PAL_N
[19:24:13] [PASSED] SECAM
[19:24:13] [PASSED] MONO_525
[19:24:13] [PASSED] MONO_625
[19:24:13] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:24:13] =============== [PASSED] drm_cmdline_parser ================
[19:24:13] ========== drmm_connector_hdmi_init (20 subtests) ==========
[19:24:13] [PASSED] drm_test_connector_hdmi_init_valid
[19:24:13] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:24:13] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:24:13] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:24:13] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:24:13] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:24:13] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:24:13] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:24:13] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:24:13] [PASSED] supported_formats=0x9 yuv420_allowed=1
[19:24:13] [PASSED] supported_formats=0x9 yuv420_allowed=0
[19:24:13] [PASSED] supported_formats=0x3 yuv420_allowed=1
[19:24:13] [PASSED] supported_formats=0x3 yuv420_allowed=0
[19:24:13] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:24:13] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:24:13] [PASSED] drm_test_connector_hdmi_init_null_product
[19:24:13] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:24:13] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:24:13] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:24:13] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:24:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:24:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:24:13] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:24:13] ========= drm_test_connector_hdmi_init_type_valid =========
[19:24:13] [PASSED] HDMI-A
[19:24:13] [PASSED] HDMI-B
[19:24:13] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:24:13] ======== drm_test_connector_hdmi_init_type_invalid ========
[19:24:13] [PASSED] Unknown
[19:24:13] [PASSED] VGA
[19:24:13] [PASSED] DVI-I
[19:24:13] [PASSED] DVI-D
[19:24:13] [PASSED] DVI-A
[19:24:13] [PASSED] Composite
[19:24:13] [PASSED] SVIDEO
[19:24:13] [PASSED] LVDS
[19:24:13] [PASSED] Component
[19:24:13] [PASSED] DIN
[19:24:13] [PASSED] DP
[19:24:13] [PASSED] TV
[19:24:13] [PASSED] eDP
[19:24:13] [PASSED] Virtual
[19:24:13] [PASSED] DSI
[19:24:13] [PASSED] DPI
[19:24:13] [PASSED] Writeback
[19:24:13] [PASSED] SPI
[19:24:13] [PASSED] USB
[19:24:13] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:24:13] ============ [PASSED] drmm_connector_hdmi_init =============
[19:24:13] ============= drmm_connector_init (3 subtests) =============
[19:24:13] [PASSED] drm_test_drmm_connector_init
[19:24:13] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:24:13] ========= drm_test_drmm_connector_init_type_valid =========
[19:24:13] [PASSED] Unknown
[19:24:13] [PASSED] VGA
[19:24:13] [PASSED] DVI-I
[19:24:13] [PASSED] DVI-D
[19:24:13] [PASSED] DVI-A
[19:24:13] [PASSED] Composite
[19:24:13] [PASSED] SVIDEO
[19:24:13] [PASSED] LVDS
[19:24:13] [PASSED] Component
[19:24:13] [PASSED] DIN
[19:24:13] [PASSED] DP
[19:24:13] [PASSED] HDMI-A
[19:24:13] [PASSED] HDMI-B
[19:24:13] [PASSED] TV
[19:24:13] [PASSED] eDP
[19:24:13] [PASSED] Virtual
[19:24:13] [PASSED] DSI
[19:24:13] [PASSED] DPI
[19:24:13] [PASSED] Writeback
[19:24:13] [PASSED] SPI
[19:24:13] [PASSED] USB
[19:24:13] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:24:13] =============== [PASSED] drmm_connector_init ===============
[19:24:13] ========= drm_connector_dynamic_init (6 subtests) ==========
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_init
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_init_properties
[19:24:13] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[19:24:13] [PASSED] Unknown
[19:24:13] [PASSED] VGA
[19:24:13] [PASSED] DVI-I
[19:24:13] [PASSED] DVI-D
[19:24:13] [PASSED] DVI-A
[19:24:13] [PASSED] Composite
[19:24:13] [PASSED] SVIDEO
[19:24:13] [PASSED] LVDS
[19:24:13] [PASSED] Component
[19:24:13] [PASSED] DIN
[19:24:13] [PASSED] DP
[19:24:13] [PASSED] HDMI-A
[19:24:13] [PASSED] HDMI-B
[19:24:13] [PASSED] TV
[19:24:13] [PASSED] eDP
[19:24:13] [PASSED] Virtual
[19:24:13] [PASSED] DSI
[19:24:13] [PASSED] DPI
[19:24:13] [PASSED] Writeback
[19:24:13] [PASSED] SPI
[19:24:13] [PASSED] USB
[19:24:13] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[19:24:13] ======== drm_test_drm_connector_dynamic_init_name =========
[19:24:13] [PASSED] Unknown
[19:24:13] [PASSED] VGA
[19:24:13] [PASSED] DVI-I
[19:24:13] [PASSED] DVI-D
[19:24:13] [PASSED] DVI-A
[19:24:13] [PASSED] Composite
[19:24:13] [PASSED] SVIDEO
[19:24:13] [PASSED] LVDS
[19:24:13] [PASSED] Component
[19:24:13] [PASSED] DIN
[19:24:13] [PASSED] DP
[19:24:13] [PASSED] HDMI-A
[19:24:13] [PASSED] HDMI-B
[19:24:13] [PASSED] TV
[19:24:13] [PASSED] eDP
[19:24:13] [PASSED] Virtual
[19:24:13] [PASSED] DSI
[19:24:13] [PASSED] DPI
[19:24:13] [PASSED] Writeback
[19:24:13] [PASSED] SPI
[19:24:13] [PASSED] USB
[19:24:13] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[19:24:13] =========== [PASSED] drm_connector_dynamic_init ============
[19:24:13] ==== drm_connector_dynamic_register_early (4 subtests) =====
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[19:24:13] ====== [PASSED] drm_connector_dynamic_register_early =======
[19:24:13] ======= drm_connector_dynamic_register (7 subtests) ========
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[19:24:13] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[19:24:13] ========= [PASSED] drm_connector_dynamic_register ==========
[19:24:13] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:24:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:24:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:24:13] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:24:13] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:24:13] ========== drm_test_get_tv_mode_from_name_valid ===========
[19:24:13] [PASSED] NTSC
[19:24:13] [PASSED] NTSC-443
[19:24:13] [PASSED] NTSC-J
[19:24:13] [PASSED] PAL
[19:24:13] [PASSED] PAL-M
[19:24:13] [PASSED] PAL-N
[19:24:13] [PASSED] SECAM
[19:24:13] [PASSED] Mono
[19:24:13] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:24:13] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:24:13] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:24:13] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:24:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:24:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:24:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:24:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:24:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:24:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:24:13] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[19:24:13] [PASSED] VIC 96
[19:24:13] [PASSED] VIC 97
[19:24:13] [PASSED] VIC 101
[19:24:13] [PASSED] VIC 102
[19:24:13] [PASSED] VIC 106
[19:24:13] [PASSED] VIC 107
[19:24:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:24:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:24:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:24:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:24:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:24:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:24:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:24:13] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:24:13] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[19:24:13] [PASSED] Automatic
[19:24:13] [PASSED] Full
[19:24:13] [PASSED] Limited 16:235
[19:24:13] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:24:13] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:24:13] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:24:13] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:24:13] === drm_test_drm_hdmi_connector_get_output_format_name ====
[19:24:13] [PASSED] RGB
[19:24:13] [PASSED] YUV 4:2:0
[19:24:13] [PASSED] YUV 4:2:2
[19:24:13] [PASSED] YUV 4:4:4
[19:24:13] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:24:13] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:24:13] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:24:13] ============= drm_damage_helper (21 subtests) ==============
[19:24:13] [PASSED] drm_test_damage_iter_no_damage
[19:24:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:24:13] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:24:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:24:13] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:24:13] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:24:13] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:24:13] [PASSED] drm_test_damage_iter_simple_damage
[19:24:13] [PASSED] drm_test_damage_iter_single_damage
[19:24:13] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:24:13] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:24:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:24:13] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:24:13] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:24:13] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:24:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:24:13] [PASSED] drm_test_damage_iter_damage
[19:24:13] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:24:13] [PASSED] drm_test_damage_iter_damage_one_outside
[19:24:13] [PASSED] drm_test_damage_iter_damage_src_moved
[19:24:13] [PASSED] drm_test_damage_iter_damage_not_visible
[19:24:13] ================ [PASSED] drm_damage_helper ================
[19:24:13] ============== drm_dp_mst_helper (3 subtests) ==============
[19:24:13] ============== drm_test_dp_mst_calc_pbn_mode ==============
[19:24:13] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:24:13] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:24:13] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:24:13] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:24:13] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:24:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:24:13] ============== drm_test_dp_mst_calc_pbn_div ===============
[19:24:13] [PASSED] Link rate 2000000 lane count 4
[19:24:13] [PASSED] Link rate 2000000 lane count 2
[19:24:13] [PASSED] Link rate 2000000 lane count 1
[19:24:13] [PASSED] Link rate 1350000 lane count 4
[19:24:13] [PASSED] Link rate 1350000 lane count 2
[19:24:13] [PASSED] Link rate 1350000 lane count 1
[19:24:13] [PASSED] Link rate 1000000 lane count 4
[19:24:13] [PASSED] Link rate 1000000 lane count 2
[19:24:13] [PASSED] Link rate 1000000 lane count 1
[19:24:13] [PASSED] Link rate 810000 lane count 4
[19:24:13] [PASSED] Link rate 810000 lane count 2
[19:24:13] [PASSED] Link rate 810000 lane count 1
[19:24:13] [PASSED] Link rate 540000 lane count 4
[19:24:13] [PASSED] Link rate 540000 lane count 2
[19:24:13] [PASSED] Link rate 540000 lane count 1
[19:24:13] [PASSED] Link rate 270000 lane count 4
[19:24:13] [PASSED] Link rate 270000 lane count 2
[19:24:13] [PASSED] Link rate 270000 lane count 1
[19:24:13] [PASSED] Link rate 162000 lane count 4
[19:24:13] [PASSED] Link rate 162000 lane count 2
[19:24:13] [PASSED] Link rate 162000 lane count 1
[19:24:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:24:13] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[19:24:13] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:24:13] [PASSED] DP_POWER_UP_PHY with port number
[19:24:13] [PASSED] DP_POWER_DOWN_PHY with port number
[19:24:13] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:24:13] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:24:13] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:24:13] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:24:13] [PASSED] DP_QUERY_PAYLOAD with port number
[19:24:13] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:24:13] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:24:13] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:24:13] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:24:13] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:24:13] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:24:13] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:24:13] [PASSED] DP_REMOTE_I2C_READ with port number
[19:24:13] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:24:13] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:24:13] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:24:13] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:24:13] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:24:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:24:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:24:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:24:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:24:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:24:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:24:13] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:24:13] ================ [PASSED] drm_dp_mst_helper ================
[19:24:13] ================== drm_exec (7 subtests) ===================
[19:24:13] [PASSED] sanitycheck
[19:24:13] [PASSED] test_lock
[19:24:13] [PASSED] test_lock_unlock
[19:24:13] [PASSED] test_duplicates
[19:24:13] [PASSED] test_prepare
[19:24:13] [PASSED] test_prepare_array
[19:24:13] [PASSED] test_multiple_loops
[19:24:13] ==================== [PASSED] drm_exec =====================
[19:24:13] =========== drm_format_helper_test (17 subtests) ===========
[19:24:13] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:24:13] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:24:13] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:24:13] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:24:13] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:24:13] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:24:13] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:24:13] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[19:24:13] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:24:13] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:24:13] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:24:13] ============== drm_test_fb_xrgb8888_to_mono ===============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:24:13] ==================== drm_test_fb_swab =====================
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ================ [PASSED] drm_test_fb_swab =================
[19:24:13] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:24:13] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[19:24:13] [PASSED] single_pixel_source_buffer
[19:24:13] [PASSED] single_pixel_clip_rectangle
[19:24:13] [PASSED] well_known_colors
[19:24:13] [PASSED] destination_pitch
[19:24:13] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:24:13] ================= drm_test_fb_clip_offset =================
[19:24:13] [PASSED] pass through
[19:24:13] [PASSED] horizontal offset
[19:24:13] [PASSED] vertical offset
[19:24:13] [PASSED] horizontal and vertical offset
[19:24:13] [PASSED] horizontal offset (custom pitch)
[19:24:13] [PASSED] vertical offset (custom pitch)
[19:24:13] [PASSED] horizontal and vertical offset (custom pitch)
[19:24:13] ============= [PASSED] drm_test_fb_clip_offset =============
[19:24:13] =================== drm_test_fb_memcpy ====================
[19:24:13] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:24:13] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:24:13] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:24:13] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:24:13] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:24:13] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:24:13] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:24:13] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:24:13] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:24:13] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:24:13] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:24:13] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:24:13] =============== [PASSED] drm_test_fb_memcpy ================
[19:24:13] ============= [PASSED] drm_format_helper_test ==============
[19:24:13] ================= drm_format (18 subtests) =================
[19:24:13] [PASSED] drm_test_format_block_width_invalid
[19:24:13] [PASSED] drm_test_format_block_width_one_plane
[19:24:13] [PASSED] drm_test_format_block_width_two_plane
[19:24:13] [PASSED] drm_test_format_block_width_three_plane
[19:24:13] [PASSED] drm_test_format_block_width_tiled
[19:24:13] [PASSED] drm_test_format_block_height_invalid
[19:24:13] [PASSED] drm_test_format_block_height_one_plane
[19:24:13] [PASSED] drm_test_format_block_height_two_plane
[19:24:13] [PASSED] drm_test_format_block_height_three_plane
[19:24:13] [PASSED] drm_test_format_block_height_tiled
[19:24:13] [PASSED] drm_test_format_min_pitch_invalid
[19:24:13] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:24:13] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:24:13] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:24:13] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:24:13] [PASSED] drm_test_format_min_pitch_two_plane
[19:24:13] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:24:13] [PASSED] drm_test_format_min_pitch_tiled
[19:24:13] =================== [PASSED] drm_format ====================
[19:24:13] ============== drm_framebuffer (10 subtests) ===============
[19:24:13] ========== drm_test_framebuffer_check_src_coords ==========
[19:24:13] [PASSED] Success: source fits into fb
[19:24:13] [PASSED] Fail: overflowing fb with x-axis coordinate
[19:24:13] [PASSED] Fail: overflowing fb with y-axis coordinate
[19:24:13] [PASSED] Fail: overflowing fb with source width
[19:24:13] [PASSED] Fail: overflowing fb with source height
[19:24:13] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[19:24:13] [PASSED] drm_test_framebuffer_cleanup
[19:24:13] =============== drm_test_framebuffer_create ===============
[19:24:13] [PASSED] ABGR8888 normal sizes
[19:24:13] [PASSED] ABGR8888 max sizes
[19:24:13] [PASSED] ABGR8888 pitch greater than min required
[19:24:13] [PASSED] ABGR8888 pitch less than min required
[19:24:13] [PASSED] ABGR8888 Invalid width
[19:24:13] [PASSED] ABGR8888 Invalid buffer handle
[19:24:13] [PASSED] No pixel format
[19:24:13] [PASSED] ABGR8888 Width 0
[19:24:13] [PASSED] ABGR8888 Height 0
[19:24:13] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:24:13] [PASSED] ABGR8888 Large buffer offset
[19:24:13] [PASSED] ABGR8888 Buffer offset for inexistent plane
[19:24:13] [PASSED] ABGR8888 Invalid flag
[19:24:13] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:24:13] [PASSED] ABGR8888 Valid buffer modifier
[19:24:13] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:24:13] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:24:13] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:24:13] [PASSED] NV12 Normal sizes
[19:24:13] [PASSED] NV12 Max sizes
[19:24:13] [PASSED] NV12 Invalid pitch
[19:24:13] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:24:13] [PASSED] NV12 different modifier per-plane
[19:24:13] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:24:13] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:24:13] [PASSED] NV12 Modifier for inexistent plane
[19:24:13] [PASSED] NV12 Handle for inexistent plane
[19:24:13] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:24:13] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:24:13] [PASSED] YVU420 Normal sizes
[19:24:13] [PASSED] YVU420 Max sizes
[19:24:13] [PASSED] YVU420 Invalid pitch
[19:24:13] [PASSED] YVU420 Different pitches
[19:24:13] [PASSED] YVU420 Different buffer offsets/pitches
[19:24:13] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:24:13] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:24:13] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:24:13] [PASSED] YVU420 Valid modifier
[19:24:13] [PASSED] YVU420 Different modifiers per plane
[19:24:13] [PASSED] YVU420 Modifier for inexistent plane
[19:24:13] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[19:24:13] [PASSED] X0L2 Normal sizes
[19:24:13] [PASSED] X0L2 Max sizes
[19:24:13] [PASSED] X0L2 Invalid pitch
[19:24:13] [PASSED] X0L2 Pitch greater than minimum required
[19:24:13] [PASSED] X0L2 Handle for inexistent plane
[19:24:13] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:24:13] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:24:13] [PASSED] X0L2 Valid modifier
[19:24:13] [PASSED] X0L2 Modifier for inexistent plane
[19:24:13] =========== [PASSED] drm_test_framebuffer_create ===========
[19:24:13] [PASSED] drm_test_framebuffer_free
[19:24:13] [PASSED] drm_test_framebuffer_init
[19:24:13] [PASSED] drm_test_framebuffer_init_bad_format
[19:24:13] [PASSED] drm_test_framebuffer_init_dev_mismatch
[19:24:13] [PASSED] drm_test_framebuffer_lookup
[19:24:13] [PASSED] drm_test_framebuffer_lookup_inexistent
[19:24:13] [PASSED] drm_test_framebuffer_modifiers_not_supported
[19:24:13] ================= [PASSED] drm_framebuffer =================
[19:24:13] ================ drm_gem_shmem (8 subtests) ================
[19:24:13] [PASSED] drm_gem_shmem_test_obj_create
[19:24:13] [PASSED] drm_gem_shmem_test_obj_create_private
[19:24:13] [PASSED] drm_gem_shmem_test_pin_pages
[19:24:13] [PASSED] drm_gem_shmem_test_vmap
[19:24:13] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:24:13] [PASSED] drm_gem_shmem_test_get_sg_table
[19:24:13] [PASSED] drm_gem_shmem_test_madvise
[19:24:13] [PASSED] drm_gem_shmem_test_purge
[19:24:13] ================== [PASSED] drm_gem_shmem ==================
[19:24:13] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:24:13] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[19:24:13] [PASSED] Automatic
[19:24:13] [PASSED] Full
[19:24:13] [PASSED] Limited 16:235
[19:24:13] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:24:13] [PASSED] drm_test_check_disable_connector
[19:24:13] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:24:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[19:24:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[19:24:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[19:24:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[19:24:13] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[19:24:13] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:24:13] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:24:13] [PASSED] drm_test_check_output_bpc_dvi
[19:24:13] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:24:13] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:24:13] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:24:13] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:24:13] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:24:13] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:24:13] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:24:13] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:24:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:24:13] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:24:13] [PASSED] drm_test_check_broadcast_rgb_value
[19:24:13] [PASSED] drm_test_check_bpc_8_value
[19:24:13] [PASSED] drm_test_check_bpc_10_value
[19:24:13] [PASSED] drm_test_check_bpc_12_value
[19:24:13] [PASSED] drm_test_check_format_value
[19:24:13] [PASSED] drm_test_check_tmds_char_value
[19:24:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:24:13] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[19:24:13] [PASSED] drm_test_check_mode_valid
[19:24:13] [PASSED] drm_test_check_mode_valid_reject
[19:24:13] [PASSED] drm_test_check_mode_valid_reject_rate
[19:24:13] [PASSED] drm_test_check_mode_valid_reject_max_clock
[19:24:13] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[19:24:13] ================= drm_managed (2 subtests) =================
[19:24:13] [PASSED] drm_test_managed_release_action
[19:24:13] [PASSED] drm_test_managed_run_action
[19:24:13] =================== [PASSED] drm_managed ===================
[19:24:13] =================== drm_mm (6 subtests) ====================
[19:24:13] [PASSED] drm_test_mm_init
[19:24:13] [PASSED] drm_test_mm_debug
[19:24:13] [PASSED] drm_test_mm_align32
[19:24:13] [PASSED] drm_test_mm_align64
[19:24:13] [PASSED] drm_test_mm_lowest
[19:24:13] [PASSED] drm_test_mm_highest
[19:24:13] ===================== [PASSED] drm_mm ======================
[19:24:13] ============= drm_modes_analog_tv (5 subtests) =============
[19:24:13] [PASSED] drm_test_modes_analog_tv_mono_576i
[19:24:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:24:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:24:13] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:24:13] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:24:13] =============== [PASSED] drm_modes_analog_tv ===============
[19:24:13] ============== drm_plane_helper (2 subtests) ===============
[19:24:13] =============== drm_test_check_plane_state ================
[19:24:13] [PASSED] clipping_simple
[19:24:13] [PASSED] clipping_rotate_reflect
[19:24:13] [PASSED] positioning_simple
[19:24:13] [PASSED] upscaling
[19:24:13] [PASSED] downscaling
[19:24:13] [PASSED] rounding1
[19:24:13] [PASSED] rounding2
[19:24:13] [PASSED] rounding3
[19:24:13] [PASSED] rounding4
[19:24:13] =========== [PASSED] drm_test_check_plane_state ============
[19:24:13] =========== drm_test_check_invalid_plane_state ============
[19:24:13] [PASSED] positioning_invalid
[19:24:13] [PASSED] upscaling_invalid
[19:24:13] [PASSED] downscaling_invalid
[19:24:13] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:24:13] ================ [PASSED] drm_plane_helper =================
[19:24:13] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:24:13] ====== drm_test_connector_helper_tv_get_modes_check =======
[19:24:13] [PASSED] None
[19:24:13] [PASSED] PAL
[19:24:13] [PASSED] NTSC
[19:24:13] [PASSED] Both, NTSC Default
[19:24:13] [PASSED] Both, PAL Default
[19:24:13] [PASSED] Both, NTSC Default, with PAL on command-line
[19:24:13] [PASSED] Both, PAL Default, with NTSC on command-line
[19:24:13] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:24:13] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:24:13] ================== drm_rect (9 subtests) ===================
[19:24:13] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:24:13] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:24:13] [PASSED] drm_test_rect_clip_scaled_clipped
[19:24:13] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:24:13] ================= drm_test_rect_intersect =================
[19:24:13] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:24:13] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:24:13] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:24:13] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:24:13] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:24:13] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:24:13] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:24:13] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:24:13] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:24:13] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:24:13] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:24:13] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:24:13] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:24:13] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:24:13] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[19:24:13] ============= [PASSED] drm_test_rect_intersect =============
[19:24:13] ================ drm_test_rect_calc_hscale ================
[19:24:13] [PASSED] normal use
[19:24:13] [PASSED] out of max range
[19:24:13] [PASSED] out of min range
[19:24:13] [PASSED] zero dst
[19:24:13] [PASSED] negative src
[19:24:13] [PASSED] negative dst
[19:24:13] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:24:13] ================ drm_test_rect_calc_vscale ================
[19:24:13] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[19:24:13] [PASSED] out of max range
[19:24:13] [PASSED] out of min range
[19:24:13] [PASSED] zero dst
[19:24:13] [PASSED] negative src
[19:24:13] [PASSED] negative dst
[19:24:13] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:24:13] ================== drm_test_rect_rotate ===================
[19:24:13] [PASSED] reflect-x
[19:24:13] [PASSED] reflect-y
[19:24:13] [PASSED] rotate-0
[19:24:13] [PASSED] rotate-90
[19:24:13] [PASSED] rotate-180
[19:24:13] [PASSED] rotate-270
[19:24:13] ============== [PASSED] drm_test_rect_rotate ===============
[19:24:13] ================ drm_test_rect_rotate_inv =================
[19:24:13] [PASSED] reflect-x
[19:24:13] [PASSED] reflect-y
[19:24:13] [PASSED] rotate-0
[19:24:13] [PASSED] rotate-90
[19:24:13] [PASSED] rotate-180
[19:24:13] [PASSED] rotate-270
[19:24:13] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:24:13] ==================== [PASSED] drm_rect =====================
[19:24:13] ============ drm_sysfb_modeset_test (1 subtest) ============
[19:24:13] ============ drm_test_sysfb_build_fourcc_list =============
[19:24:13] [PASSED] no native formats
[19:24:13] [PASSED] XRGB8888 as native format
[19:24:13] [PASSED] remove duplicates
[19:24:13] [PASSED] convert alpha formats
[19:24:13] [PASSED] random formats
[19:24:13] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[19:24:13] ============= [PASSED] drm_sysfb_modeset_test ==============
[19:24:13] ============================================================
[19:24:13] Testing complete. Ran 622 tests: passed: 622
[19:24:13] Elapsed time: 26.758s total, 1.677s configuring, 24.661s building, 0.382s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[19:24:13] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:24:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:24:24] Starting KUnit Kernel (1/1)...
[19:24:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:24:24] ================= ttm_device (5 subtests) ==================
[19:24:24] [PASSED] ttm_device_init_basic
[19:24:24] [PASSED] ttm_device_init_multiple
[19:24:24] [PASSED] ttm_device_fini_basic
[19:24:24] [PASSED] ttm_device_init_no_vma_man
[19:24:24] ================== ttm_device_init_pools ==================
[19:24:24] [PASSED] No DMA allocations, no DMA32 required
[19:24:24] [PASSED] DMA allocations, DMA32 required
[19:24:24] [PASSED] No DMA allocations, DMA32 required
[19:24:24] [PASSED] DMA allocations, no DMA32 required
[19:24:24] ============== [PASSED] ttm_device_init_pools ==============
[19:24:24] =================== [PASSED] ttm_device ====================
[19:24:24] ================== ttm_pool (8 subtests) ===================
[19:24:24] ================== ttm_pool_alloc_basic ===================
[19:24:24] [PASSED] One page
[19:24:24] [PASSED] More than one page
[19:24:24] [PASSED] Above the allocation limit
[19:24:24] [PASSED] One page, with coherent DMA mappings enabled
[19:24:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:24:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[19:24:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[19:24:24] [PASSED] One page
[19:24:24] [PASSED] More than one page
[19:24:24] [PASSED] Above the allocation limit
[19:24:24] [PASSED] One page, with coherent DMA mappings enabled
[19:24:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:24:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[19:24:24] [PASSED] ttm_pool_alloc_order_caching_match
[19:24:24] [PASSED] ttm_pool_alloc_caching_mismatch
[19:24:24] [PASSED] ttm_pool_alloc_order_mismatch
[19:24:24] [PASSED] ttm_pool_free_dma_alloc
[19:24:24] [PASSED] ttm_pool_free_no_dma_alloc
[19:24:24] [PASSED] ttm_pool_fini_basic
[19:24:24] ==================== [PASSED] ttm_pool =====================
[19:24:24] ================ ttm_resource (8 subtests) =================
[19:24:24] ================= ttm_resource_init_basic =================
[19:24:24] [PASSED] Init resource in TTM_PL_SYSTEM
[19:24:24] [PASSED] Init resource in TTM_PL_VRAM
[19:24:24] [PASSED] Init resource in a private placement
[19:24:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[19:24:24] ============= [PASSED] ttm_resource_init_basic =============
[19:24:24] [PASSED] ttm_resource_init_pinned
[19:24:24] [PASSED] ttm_resource_fini_basic
[19:24:24] [PASSED] ttm_resource_manager_init_basic
[19:24:24] [PASSED] ttm_resource_manager_usage_basic
[19:24:24] [PASSED] ttm_resource_manager_set_used_basic
[19:24:24] [PASSED] ttm_sys_man_alloc_basic
[19:24:24] [PASSED] ttm_sys_man_free_basic
[19:24:24] ================== [PASSED] ttm_resource ===================
[19:24:24] =================== ttm_tt (15 subtests) ===================
[19:24:24] ==================== ttm_tt_init_basic ====================
[19:24:24] [PASSED] Page-aligned size
[19:24:24] [PASSED] Extra pages requested
[19:24:24] ================ [PASSED] ttm_tt_init_basic ================
[19:24:24] [PASSED] ttm_tt_init_misaligned
[19:24:24] [PASSED] ttm_tt_fini_basic
[19:24:24] [PASSED] ttm_tt_fini_sg
[19:24:24] [PASSED] ttm_tt_fini_shmem
[19:24:24] [PASSED] ttm_tt_create_basic
[19:24:24] [PASSED] ttm_tt_create_invalid_bo_type
[19:24:24] [PASSED] ttm_tt_create_ttm_exists
[19:24:24] [PASSED] ttm_tt_create_failed
[19:24:24] [PASSED] ttm_tt_destroy_basic
[19:24:24] [PASSED] ttm_tt_populate_null_ttm
[19:24:24] [PASSED] ttm_tt_populate_populated_ttm
[19:24:24] [PASSED] ttm_tt_unpopulate_basic
[19:24:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[19:24:24] [PASSED] ttm_tt_swapin_basic
[19:24:24] ===================== [PASSED] ttm_tt ======================
[19:24:24] =================== ttm_bo (14 subtests) ===================
[19:24:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[19:24:24] [PASSED] Cannot be interrupted and sleeps
[19:24:24] [PASSED] Cannot be interrupted, locks straight away
[19:24:24] [PASSED] Can be interrupted, sleeps
[19:24:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[19:24:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[19:24:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[19:24:24] [PASSED] ttm_bo_reserve_double_resv
[19:24:24] [PASSED] ttm_bo_reserve_interrupted
[19:24:24] [PASSED] ttm_bo_reserve_deadlock
[19:24:24] [PASSED] ttm_bo_unreserve_basic
[19:24:24] [PASSED] ttm_bo_unreserve_pinned
[19:24:24] [PASSED] ttm_bo_unreserve_bulk
[19:24:24] [PASSED] ttm_bo_fini_basic
[19:24:24] [PASSED] ttm_bo_fini_shared_resv
[19:24:24] [PASSED] ttm_bo_pin_basic
[19:24:24] [PASSED] ttm_bo_pin_unpin_resource
[19:24:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[19:24:24] ===================== [PASSED] ttm_bo ======================
[19:24:24] ============== ttm_bo_validate (21 subtests) ===============
[19:24:24] ============== ttm_bo_init_reserved_sys_man ===============
[19:24:24] [PASSED] Buffer object for userspace
[19:24:24] [PASSED] Kernel buffer object
[19:24:24] [PASSED] Shared buffer object
[19:24:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[19:24:24] ============== ttm_bo_init_reserved_mock_man ==============
[19:24:24] [PASSED] Buffer object for userspace
[19:24:24] [PASSED] Kernel buffer object
[19:24:24] [PASSED] Shared buffer object
[19:24:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[19:24:24] [PASSED] ttm_bo_init_reserved_resv
[19:24:24] ================== ttm_bo_validate_basic ==================
[19:24:24] [PASSED] Buffer object for userspace
[19:24:24] [PASSED] Kernel buffer object
[19:24:24] [PASSED] Shared buffer object
[19:24:24] ============== [PASSED] ttm_bo_validate_basic ==============
[19:24:24] [PASSED] ttm_bo_validate_invalid_placement
[19:24:24] ============= ttm_bo_validate_same_placement ==============
[19:24:24] [PASSED] System manager
[19:24:24] [PASSED] VRAM manager
[19:24:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[19:24:24] [PASSED] ttm_bo_validate_failed_alloc
[19:24:24] [PASSED] ttm_bo_validate_pinned
[19:24:24] [PASSED] ttm_bo_validate_busy_placement
[19:24:24] ================ ttm_bo_validate_multihop =================
[19:24:24] [PASSED] Buffer object for userspace
[19:24:24] [PASSED] Kernel buffer object
[19:24:24] [PASSED] Shared buffer object
[19:24:24] ============ [PASSED] ttm_bo_validate_multihop =============
[19:24:24] ========== ttm_bo_validate_no_placement_signaled ==========
[19:24:24] [PASSED] Buffer object in system domain, no page vector
[19:24:24] [PASSED] Buffer object in system domain with an existing page vector
[19:24:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[19:24:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[19:24:24] [PASSED] Buffer object for userspace
[19:24:24] [PASSED] Kernel buffer object
[19:24:24] [PASSED] Shared buffer object
[19:24:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[19:24:24] [PASSED] ttm_bo_validate_move_fence_signaled
[19:24:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[19:24:24] [PASSED] Waits for GPU
[19:24:24] [PASSED] Tries to lock straight away
[19:24:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[19:24:24] [PASSED] ttm_bo_validate_happy_evict
[19:24:24] [PASSED] ttm_bo_validate_all_pinned_evict
[19:24:24] [PASSED] ttm_bo_validate_allowed_only_evict
[19:24:24] [PASSED] ttm_bo_validate_deleted_evict
[19:24:24] [PASSED] ttm_bo_validate_busy_domain_evict
[19:24:24] [PASSED] ttm_bo_validate_evict_gutting
[19:24:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[19:24:24] ================= [PASSED] ttm_bo_validate =================
[19:24:24] ============================================================
[19:24:24] Testing complete. Ran 101 tests: passed: 101
[19:24:24] Elapsed time: 11.365s total, 1.700s configuring, 9.398s building, 0.229s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.checksparse: warning for drm/i915: Further drm_get_format_info() stuff
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (9 preceding siblings ...)
2025-11-07 19:24 ` ✓ CI.KUnit: success for drm/i915: Further drm_get_format_info() stuff Patchwork
@ 2025-11-07 19:39 ` Patchwork
2025-11-07 20:34 ` ✓ Xe.CI.BAT: success " Patchwork
` (2 subsequent siblings)
13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-11-07 19:39 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
== Series Details ==
Series: drm/i915: Further drm_get_format_info() stuff
URL : https://patchwork.freedesktop.org/series/157252/
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 4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d
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_alpm.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_casf.c:147:21: error: too long token expansion
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2072:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2085:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2085:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2085: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/display/intel_lt_phy.c:1603:35: warning: Using plain integer as NULL pointer
+drivers/gpu/drm/i915/display/intel_pps.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file:
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915: Further drm_get_format_info() stuff
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (10 preceding siblings ...)
2025-11-07 19:39 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-11-07 20:34 ` Patchwork
2025-11-09 3:40 ` ✗ Xe.CI.Full: failure " Patchwork
2025-11-10 11:10 ` [PATCH 0/9] " Jani Nikula
13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-11-07 20:34 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 955 bytes --]
== Series Details ==
Series: drm/i915: Further drm_get_format_info() stuff
URL : https://patchwork.freedesktop.org/series/157252/
State : success
== Summary ==
CI Bug Log - changes from xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc_BAT -> xe-pw-157252v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 12)
------------------------------
Missing (1): bat-dg2-oem2
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc -> xe-pw-157252v1
IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc: d30239576eb79e395a1c8affc126688fb37b94bc
xe-pw-157252v1: 157252v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/index.html
[-- Attachment #2: Type: text/html, Size: 1503 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ Xe.CI.Full: failure for drm/i915: Further drm_get_format_info() stuff
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (11 preceding siblings ...)
2025-11-07 20:34 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-11-09 3:40 ` Patchwork
2025-11-10 11:10 ` [PATCH 0/9] " Jani Nikula
13 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-11-09 3:40 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 65495 bytes --]
== Series Details ==
Series: drm/i915: Further drm_get_format_info() stuff
URL : https://patchwork.freedesktop.org/series/157252/
State : failure
== Summary ==
CI Bug Log - changes from xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc_FULL -> xe-pw-157252v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-157252v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157252v1_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-157252v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_edge_walk@256x256-left-edge:
- shard-bmg: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-left-edge.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-left-edge.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_sequence@get-busy:
- shard-lnl: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-lnl-2/igt@kms_sequence@get-busy.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-lnl-5/igt@kms_sequence@get-busy.html
* igt@panthor/panthor_vm@vm_unbind:
- shard-dg2-set2: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@panthor/panthor_vm@vm_unbind.html
Known issues
------------
Here are the changes found in xe-pw-157252v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2370])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#316]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +5 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [PASS][10] -> [DMESG-FAIL][11] ([Intel XE#4543])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +11 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2328])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#367]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#367]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][19] -> [INCOMPLETE][20] ([Intel XE#3862]) +1 other test incomplete
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3432]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#787]) +48 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +17 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#787]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2252]) +8 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2325]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#373])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1178]) +3 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1188])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#308]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2321]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x64:
- shard-bmg: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#3428]) +5 other tests dmesg-warn
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@kms_cursor_crc@cursor-random-64x64.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x64.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#309])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#1475])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#323])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#5428])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1508]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#4356])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2244]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#5425])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#776])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2372])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2374])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#3149] / [Intel XE#3333] / [Intel XE#3650] / [Intel XE#5338] / [Intel XE#6266])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#6266]) +1 other test fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#5338] / [Intel XE#6266])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@bc-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][54] ([Intel XE#3650] / [Intel XE#6266]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@cd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#3149] / [Intel XE#3650] / [Intel XE#6266])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2316]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#4543] / [Intel XE#5208])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-2/igt@kms_flip@flip-vs-rmfb.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-rmfb@c-hdmi-a1:
- shard-adlp: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#4543]) +2 other tests dmesg-warn
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-2/igt@kms_flip@flip-vs-rmfb@c-hdmi-a1.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_flip@flip-vs-rmfb@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#455]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#656]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#5390]) +16 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2311]) +34 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2312]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#651]) +12 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#6312]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2313]) +28 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#653]) +12 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][73] ([Intel XE#653])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6535])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#4848])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@kms_plane_alpha_blend@constant-alpha-max.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#5021])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#5021])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#5020])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#870])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#870])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2391])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#836])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#1489])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1122] / [Intel XE#1406])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1406] / [Intel XE#2414])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#1127])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2330])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_sharpness_filter@filter-formats:
- shard-lnl: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#4537])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-lnl-3/igt@kms_sharpness_filter@filter-formats.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-lnl-3/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6503]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2168])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1499])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#455]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@kms_vrr@flipline.html
* igt@panthor/panthor_vm@vm_bind:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#6530])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@panthor/panthor_vm@vm_bind.html
* igt@panthor/panthor_vm@vm_create_destroy:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6530]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@panthor/panthor_vm@vm_create_destroy.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#6360])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1126])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#4837]) +10 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#4837]) +5 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@single-step:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#4837] / [Intel XE#5565])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][108] -> [INCOMPLETE][109] ([Intel XE#6321])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2322]) +11 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#1392] / [Intel XE#5575])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-imm:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#288] / [Intel XE#5561])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#288]) +14 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2360])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#5007])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@many-64k-mmap-mlock-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#4915]) +162 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@xe_exec_system_allocator@many-64k-mmap-mlock-nomemset.html
* igt@xe_exec_system_allocator@many-large-execqueues-new-race:
- shard-bmg: NOTRUN -> [DMESG-WARN][117] ([Intel XE#3428])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@xe_exec_system_allocator@many-large-execqueues-new-race.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#4943]) +23 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-race:
- shard-adlp: NOTRUN -> [SKIP][119] ([Intel XE#4915]) +21 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-race.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [PASS][120] -> [DMESG-WARN][121] ([Intel XE#5893])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#560])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#378])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@xe_module_load@force-load.html
* igt@xe_oa@non-privileged-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#3573]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@xe_oa@non-privileged-access-vaddr.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2838] / [Intel XE#979])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2284] / [Intel XE#366])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#5694])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2284])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-adlp: [PASS][129] -> [DMESG-WARN][130] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#4650])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#4733])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#944])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-adlp: NOTRUN -> [SKIP][134] ([Intel XE#944])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#944]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#4351])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@xe_sriov_scheduling@equal-throughput.html
* igt@xe_wedged@basic-wedged:
- shard-adlp: [PASS][137] -> [DMESG-WARN][138] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-3/igt@xe_wedged@basic-wedged.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-6/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-dp-2-4-rc-ccs:
- shard-bmg: [FAIL][139] -> [PASS][140] +3 other tests pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-dp-2-4-rc-ccs.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-dp-2-4-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][141] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][143] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cursor_edge_walk@256x256-top-edge:
- shard-bmg: [SKIP][145] -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-top-edge.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_cursor_edge_walk@256x256-top-edge.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-bmg: [DMESG-WARN][147] ([Intel XE#5354]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-dg2-set2: [INCOMPLETE][149] -> [PASS][150] +1 other test pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-432/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [FAIL][151] ([Intel XE#3149] / [Intel XE#3650] / [Intel XE#6266]) -> [PASS][152] +1 other test pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][153] ([Intel XE#6266]) -> [PASS][154] +2 other tests pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop@ab-dp2-hdmi-a3.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][155] ([Intel XE#3650] / [Intel XE#6266]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop@bc-dp2-hdmi-a3.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop@bc-dp2-hdmi-a3.html
* igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][157] ([Intel XE#4543]) -> [PASS][158] +7 other tests pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-1/igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-3/igt@kms_flip@basic-flip-vs-modeset@c-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [FAIL][159] ([Intel XE#301]) -> [PASS][160] +1 other test pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [INCOMPLETE][161] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][162] +1 other test pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][163] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][164] +2 other tests pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-adlp: [INCOMPLETE][165] ([Intel XE#1035] / [Intel XE#5545]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-6/igt@kms_plane@plane-panning-bottom-right-suspend.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-adlp: [DMESG-FAIL][167] ([Intel XE#5545]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-adlp: [INCOMPLETE][169] ([Intel XE#1035]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [DMESG-WARN][171] ([Intel XE#3428]) -> [PASS][172] +1 other test pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_pm_rpm@i2c.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_pm_rpm@i2c.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-dg2-set2: [DMESG-WARN][173] ([Intel XE#5893]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-432/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_module_load@many-reload:
- shard-adlp: [DMESG-WARN][175] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5244]) -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-9/igt@xe_module_load@many-reload.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-8/igt@xe_module_load@many-reload.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-adlp: [DMESG-WARN][177] ([Intel XE#2953] / [Intel XE#3088] / [Intel XE#4173]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-adlp-8/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-adlp-2/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
- shard-lnl: [FAIL][179] ([Intel XE#6251]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][181] ([Intel XE#4819]) -> [PASS][182] +1 other test pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-434/igt@xe_pmu@gt-frequency.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-464/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][183] ([Intel XE#2341]) -> [FAIL][184] ([Intel XE#1188])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_content_protection@uevent.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][185] ([Intel XE#2311]) -> [SKIP][186] ([Intel XE#2312]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][187] ([Intel XE#2312]) -> [SKIP][188] ([Intel XE#5390])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][189] ([Intel XE#5390]) -> [SKIP][190] ([Intel XE#2312]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][191] ([Intel XE#2312]) -> [SKIP][192] ([Intel XE#2311]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][193] ([Intel XE#2313]) -> [SKIP][194] ([Intel XE#2312]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][195] ([Intel XE#2312]) -> [SKIP][196] ([Intel XE#2313]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][197] ([Intel XE#362]) -> [SKIP][198] ([Intel XE#1500])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][199], [PASS][200], [PASS][201], [PASS][202], [DMESG-WARN][203], [PASS][204], [PASS][205], [SKIP][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219]) ([Intel XE#2457] / [Intel XE#3428]) -> ([PASS][220], [PASS][221], [PASS][222], [PASS][223], [SKIP][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240]) ([Intel XE#2457])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-2/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-4/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-4/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-8/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-2/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-7/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-7/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-7/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-4/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-1/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-1/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-1/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-5/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-2/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-5/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-5/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc/shard-bmg-6/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-1/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-7/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-4/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-7/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-6/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-5/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-1/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-1/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-4/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-8/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-7/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/shard-bmg-2/igt@xe_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[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#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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[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#3333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3333
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[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#3650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3650
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[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#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4848
[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#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244
[Intel XE#5338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5338
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425
[Intel XE#5428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5428
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[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#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#6530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6530
[Intel XE#6535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6535
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc -> xe-pw-157252v1
IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4072-d30239576eb79e395a1c8affc126688fb37b94bc: d30239576eb79e395a1c8affc126688fb37b94bc
xe-pw-157252v1: 157252v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157252v1/index.html
[-- Attachment #2: Type: text/html, Size: 75958 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 5/9] drm/i915/fb: Init 'ret' in each error branch in intel_framebuffer_init()
2025-11-07 18:11 ` [PATCH 5/9] drm/i915/fb: Init 'ret' in each error branch in intel_framebuffer_init() Ville Syrjala
@ 2025-11-10 11:07 ` Jani Nikula
0 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2025-11-10 11:07 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe
On Fri, 07 Nov 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Make the order of things a bit less fragile in
> intel_framebuffer_init() by assinging 'ret' in each
*assigning
> error branch instead of depending on some earlier
> assignment.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fb.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
> index 2eddccb1bc9e..b34b4961fe1c 100644
> --- a/drivers/gpu/drm/i915/display/intel_fb.c
> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
> @@ -2234,13 +2234,13 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
> if (ret)
> goto err_frontbuffer_put;
>
> - ret = -EINVAL;
> if (!drm_any_plane_has_format(display->drm,
> mode_cmd->pixel_format,
> mode_cmd->modifier[0])) {
> drm_dbg_kms(display->drm,
> "unsupported pixel format %p4cc / modifier 0x%llx\n",
> &mode_cmd->pixel_format, mode_cmd->modifier[0]);
> + ret = -EINVAL;
> goto err_bo_framebuffer_fini;
> }
>
> @@ -2251,6 +2251,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
> mode_cmd->modifier[0] != DRM_FORMAT_MOD_LINEAR ?
> "tiled" : "linear",
> mode_cmd->pitches[0], max_stride);
> + ret = -EINVAL;
> goto err_bo_framebuffer_fini;
> }
>
> @@ -2259,6 +2260,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
> drm_dbg_kms(display->drm,
> "plane 0 offset (0x%08x) must be 0\n",
> mode_cmd->offsets[0]);
> + ret = -EINVAL;
> goto err_bo_framebuffer_fini;
> }
>
> @@ -2269,6 +2271,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
>
> if (mode_cmd->handles[i] != mode_cmd->handles[0]) {
> drm_dbg_kms(display->drm, "bad plane %d handle\n", i);
> + ret = -EINVAL;
> goto err_bo_framebuffer_fini;
> }
>
> @@ -2277,6 +2280,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
> drm_dbg_kms(display->drm,
> "plane %d pitch (%d) must be at least %u byte aligned\n",
> i, fb->pitches[i], stride_alignment);
> + ret = -EINVAL;
> goto err_bo_framebuffer_fini;
> }
>
> @@ -2287,6 +2291,7 @@ int intel_framebuffer_init(struct intel_framebuffer *intel_fb,
> drm_dbg_kms(display->drm,
> "ccs aux plane %d pitch (%d) must be %d\n",
> i, fb->pitches[i], ccs_aux_stride);
> + ret = -EINVAL;
> goto err_bo_framebuffer_fini;
> }
> }
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 6/9] drm/i915/wm: Use drm_get_format_info() in SKL+ cursor DDB allocation
2025-11-07 18:11 ` [PATCH 6/9] drm/i915/wm: Use drm_get_format_info() in SKL+ cursor DDB allocation Ville Syrjala
@ 2025-11-10 11:08 ` Jani Nikula
0 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2025-11-10 11:08 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe
On Fri, 07 Nov 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Replace the technically inaccurate drm_format_info() with the
> accurate drm_get_format_info() in the SKL+ cursor DDB
> allocation code.
>
> Since we're only interested in the linear modifier here, the two
> functions do actually return the same information. But let's not
> use drm_format_info() to avoid setting a bad examples.
a bad example OR bad examples
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark.c | 12 +++++++++---
> 1 file changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
> index 36a266f882d1..16d74ab3a2b5 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -635,15 +635,21 @@ skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
> {
> struct intel_display *display = to_intel_display(crtc_state);
> struct intel_plane *plane = to_intel_plane(crtc_state->uapi.crtc->cursor);
> + const struct drm_format_info *info;
> struct skl_wm_level wm = {};
> int ret, min_ddb_alloc = 0;
> struct skl_wm_params wp;
> + u64 modifier;
> + u32 format;
> int level;
>
> + format = DRM_FORMAT_ARGB8888;
> + modifier = DRM_FORMAT_MOD_LINEAR;
> +
> + info = drm_get_format_info(display->drm, format, modifier);
> +
> ret = skl_compute_wm_params(crtc_state, 256,
> - drm_format_info(DRM_FORMAT_ARGB8888),
> - DRM_FORMAT_MOD_LINEAR,
> - DRM_MODE_ROTATE_0,
> + info, modifier, DRM_MODE_ROTATE_0,
> crtc_state->pixel_rate, &wp, 0, 0);
> drm_WARN_ON(display->drm, ret);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 7/9] drm/i915: Use mode_config->cursor_width for cursor DDB allocation
2025-11-07 18:11 ` [PATCH 7/9] drm/i915: Use mode_config->cursor_width for " Ville Syrjala
@ 2025-11-10 11:09 ` Jani Nikula
0 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2025-11-10 11:09 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe
On Fri, 07 Nov 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Replace the hardcoded 256 with mode_config->cursor_width
> when doing the cursor DDB allocation. Currently 256 is correct
> for all SKL+, but this migth change in the future. One less place
*might
Side note, this is also self-documenting the code.
> to change should that happen.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_watermark.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
> index 16d74ab3a2b5..54e9e0be019d 100644
> --- a/drivers/gpu/drm/i915/display/skl_watermark.c
> +++ b/drivers/gpu/drm/i915/display/skl_watermark.c
> @@ -635,6 +635,7 @@ skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
> {
> struct intel_display *display = to_intel_display(crtc_state);
> struct intel_plane *plane = to_intel_plane(crtc_state->uapi.crtc->cursor);
> + const struct drm_mode_config *mode_config = &display->drm->mode_config;
> const struct drm_format_info *info;
> struct skl_wm_level wm = {};
> int ret, min_ddb_alloc = 0;
> @@ -648,7 +649,7 @@ skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
>
> info = drm_get_format_info(display->drm, format, modifier);
>
> - ret = skl_compute_wm_params(crtc_state, 256,
> + ret = skl_compute_wm_params(crtc_state, mode_config->cursor_width,
> info, modifier, DRM_MODE_ROTATE_0,
> crtc_state->pixel_rate, &wp, 0, 0);
> drm_WARN_ON(display->drm, ret);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
` (12 preceding siblings ...)
2025-11-09 3:40 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-11-10 11:10 ` Jani Nikula
13 siblings, 0 replies; 18+ messages in thread
From: Jani Nikula @ 2025-11-10 11:10 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe
On Fri, 07 Nov 2025, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Finish eliminating the expensive extra format info lookups.
>
> And since I ended up strafing the cursor code in the end I included
> a few additional claenups there.
Some typo nitpicks in commit messages, otherwise series is
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
>
> Ville Syrjälä (9):
> drm/i915: Introduce intel_dumb_fb_max_stride()
> drm/i915: Pass drm_format_info into plane->max_stride()
> drm/i915: Populate fb->format accurately in BIOS FB readout
> drm/i915: Nuke intel_plane_config.tiling
> drm/i915/fb: Init 'ret' in each error branch in
> intel_framebuffer_init()
> drm/i915/wm: Use drm_get_format_info() in SKL+ cursor DDB allocation
> drm/i915: Use mode_config->cursor_width for cursor DDB allocation
> drm/i915/cursor: Extract intel_cursor_mode_config_init()
> drm/i915/cursor: Initialize 845 vs 865 cursor size separately
>
> drivers/gpu/drm/i915/display/i9xx_plane.c | 32 ++++++++-----------
> drivers/gpu/drm/i915/display/i9xx_plane.h | 5 +--
> drivers/gpu/drm/i915/display/intel_cursor.c | 28 +++++++++++++---
> drivers/gpu/drm/i915/display/intel_cursor.h | 2 ++
> drivers/gpu/drm/i915/display/intel_display.c | 24 ++++++++++----
> drivers/gpu/drm/i915/display/intel_display.h | 8 +++--
> .../drm/i915/display/intel_display_driver.c | 13 ++------
> .../drm/i915/display/intel_display_types.h | 5 ++-
> drivers/gpu/drm/i915/display/intel_fb.c | 23 +++++++------
> .../drm/i915/display/intel_plane_initial.c | 11 ++++---
> drivers/gpu/drm/i915/display/intel_sprite.c | 10 +++---
> .../drm/i915/display/skl_universal_plane.c | 22 ++++++-------
> drivers/gpu/drm/i915/display/skl_watermark.c | 15 ++++++---
> drivers/gpu/drm/i915/gem/i915_gem_create.c | 4 +--
> 14 files changed, 118 insertions(+), 84 deletions(-)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2025-11-10 11:10 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-07 18:11 [PATCH 0/9] drm/i915: Further drm_get_format_info() stuff Ville Syrjala
2025-11-07 18:11 ` [PATCH 1/9] drm/i915: Introduce intel_dumb_fb_max_stride() Ville Syrjala
2025-11-07 18:11 ` [PATCH 2/9] drm/i915: Pass drm_format_info into plane->max_stride() Ville Syrjala
2025-11-07 18:11 ` [PATCH 3/9] drm/i915: Populate fb->format accurately in BIOS FB readout Ville Syrjala
2025-11-07 18:11 ` [PATCH 4/9] drm/i915: Nuke intel_plane_config.tiling Ville Syrjala
2025-11-07 18:11 ` [PATCH 5/9] drm/i915/fb: Init 'ret' in each error branch in intel_framebuffer_init() Ville Syrjala
2025-11-10 11:07 ` Jani Nikula
2025-11-07 18:11 ` [PATCH 6/9] drm/i915/wm: Use drm_get_format_info() in SKL+ cursor DDB allocation Ville Syrjala
2025-11-10 11:08 ` Jani Nikula
2025-11-07 18:11 ` [PATCH 7/9] drm/i915: Use mode_config->cursor_width for " Ville Syrjala
2025-11-10 11:09 ` Jani Nikula
2025-11-07 18:11 ` [PATCH 8/9] drm/i915/cursor: Extract intel_cursor_mode_config_init() Ville Syrjala
2025-11-07 18:11 ` [PATCH 9/9] drm/i915/cursor: Initialize 845 vs 865 cursor size separately Ville Syrjala
2025-11-07 19:24 ` ✓ CI.KUnit: success for drm/i915: Further drm_get_format_info() stuff Patchwork
2025-11-07 19:39 ` ✗ CI.checksparse: warning " Patchwork
2025-11-07 20:34 ` ✓ Xe.CI.BAT: success " Patchwork
2025-11-09 3:40 ` ✗ Xe.CI.Full: failure " Patchwork
2025-11-10 11:10 ` [PATCH 0/9] " Jani Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox