* [PATCH 1/3] drm/i915: include gen 2 in HAS_128_BYTE_Y_TILING()
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
@ 2025-10-10 11:07 ` Jani Nikula
2025-10-10 13:57 ` Ville Syrjälä
2025-10-10 11:07 ` [PATCH 2/3] drm/i915/display: duplicate 128-byte Y-tiling feature check Jani Nikula
` (11 subsequent siblings)
12 siblings, 1 reply; 21+ messages in thread
From: Jani Nikula @ 2025-10-10 11:07 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
Gen 2 platforms actually have 128-byte Y-tile, it's just different from
the 128-byte Y-tile on i945+. Make the HAS_128_BYTE_Y_TILING() feature
check macro and its usage slightly less convoluted by including gen 2 in
it.
i915_tiling_ok() would strictly not need changing, but separate the if
clauses to emphasize gen 2 X-tile also being 128 bytes.
Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fb.c | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_tiling.c | 5 +++--
drivers/gpu/drm/i915/i915_drv.h | 3 +--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 99823ef42ef1..3bfd211d64ba 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -814,7 +814,7 @@ intel_tile_width_bytes(const struct drm_framebuffer *fb, int color_plane)
return 64;
fallthrough;
case I915_FORMAT_MOD_Y_TILED:
- if (DISPLAY_VER(display) == 2 || HAS_128_BYTE_Y_TILING(i915))
+ if (HAS_128_BYTE_Y_TILING(i915))
return 128;
else
return 512;
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_tiling.c b/drivers/gpu/drm/i915/gem/i915_gem_tiling.c
index 5a296ba3758a..567b97d28d30 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_tiling.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_tiling.c
@@ -145,8 +145,9 @@ i915_tiling_ok(struct drm_i915_gem_object *obj,
return false;
}
- if (GRAPHICS_VER(i915) == 2 ||
- (tiling == I915_TILING_Y && HAS_128_BYTE_Y_TILING(i915)))
+ if (tiling == I915_TILING_Y && HAS_128_BYTE_Y_TILING(i915))
+ tile_width = 128;
+ else if (GRAPHICS_VER(i915) == 2)
tile_width = 128;
else
tile_width = 512;
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 6e159bb8ad2f..4b66e5d017d9 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -602,8 +602,7 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
/* With the 945 and later, Y tiling got adjusted so that it was 32 128-byte
* rows, which changed the alignment requirements and fence programming.
*/
-#define HAS_128_BYTE_Y_TILING(i915) (GRAPHICS_VER(i915) != 2 && \
- !(IS_I915G(i915) || IS_I915GM(i915)))
+#define HAS_128_BYTE_Y_TILING(i915) (!IS_I915G(i915) && !IS_I915GM(i915))
#define HAS_RC6(i915) (INTEL_INFO(i915)->has_rc6)
#define HAS_RC6p(i915) (INTEL_INFO(i915)->has_rc6p)
--
2.47.3
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH 1/3] drm/i915: include gen 2 in HAS_128_BYTE_Y_TILING()
2025-10-10 11:07 ` [PATCH 1/3] drm/i915: include gen 2 in HAS_128_BYTE_Y_TILING() Jani Nikula
@ 2025-10-10 13:57 ` Ville Syrjälä
0 siblings, 0 replies; 21+ messages in thread
From: Ville Syrjälä @ 2025-10-10 13:57 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Fri, Oct 10, 2025 at 02:07:51PM +0300, Jani Nikula wrote:
> Gen 2 platforms actually have 128-byte Y-tile, it's just different from
> the 128-byte Y-tile on i945+. Make the HAS_128_BYTE_Y_TILING() feature
> check macro and its usage slightly less convoluted by including gen 2 in
> it.
>
> i915_tiling_ok() would strictly not need changing, but separate the if
> clauses to emphasize gen 2 X-tile also being 128 bytes.
>
> Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
I think I want to redo the gem side tile size stuff with a
bigger hammer a bit at some point, but this seems fine
for now.
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fb.c | 2 +-
> drivers/gpu/drm/i915/gem/i915_gem_tiling.c | 5 +++--
> drivers/gpu/drm/i915/i915_drv.h | 3 +--
> 3 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
> index 99823ef42ef1..3bfd211d64ba 100644
> --- a/drivers/gpu/drm/i915/display/intel_fb.c
> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
> @@ -814,7 +814,7 @@ intel_tile_width_bytes(const struct drm_framebuffer *fb, int color_plane)
> return 64;
> fallthrough;
> case I915_FORMAT_MOD_Y_TILED:
> - if (DISPLAY_VER(display) == 2 || HAS_128_BYTE_Y_TILING(i915))
> + if (HAS_128_BYTE_Y_TILING(i915))
> return 128;
> else
> return 512;
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_tiling.c b/drivers/gpu/drm/i915/gem/i915_gem_tiling.c
> index 5a296ba3758a..567b97d28d30 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_tiling.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_tiling.c
> @@ -145,8 +145,9 @@ i915_tiling_ok(struct drm_i915_gem_object *obj,
> return false;
> }
>
> - if (GRAPHICS_VER(i915) == 2 ||
> - (tiling == I915_TILING_Y && HAS_128_BYTE_Y_TILING(i915)))
> + if (tiling == I915_TILING_Y && HAS_128_BYTE_Y_TILING(i915))
> + tile_width = 128;
> + else if (GRAPHICS_VER(i915) == 2)
> tile_width = 128;
> else
> tile_width = 512;
> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> index 6e159bb8ad2f..4b66e5d017d9 100644
> --- a/drivers/gpu/drm/i915/i915_drv.h
> +++ b/drivers/gpu/drm/i915/i915_drv.h
> @@ -602,8 +602,7 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
> /* With the 945 and later, Y tiling got adjusted so that it was 32 128-byte
> * rows, which changed the alignment requirements and fence programming.
> */
> -#define HAS_128_BYTE_Y_TILING(i915) (GRAPHICS_VER(i915) != 2 && \
> - !(IS_I915G(i915) || IS_I915GM(i915)))
> +#define HAS_128_BYTE_Y_TILING(i915) (!IS_I915G(i915) && !IS_I915GM(i915))
>
> #define HAS_RC6(i915) (INTEL_INFO(i915)->has_rc6)
> #define HAS_RC6p(i915) (INTEL_INFO(i915)->has_rc6p)
> --
> 2.47.3
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH 2/3] drm/i915/display: duplicate 128-byte Y-tiling feature check
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
2025-10-10 11:07 ` [PATCH 1/3] drm/i915: include gen 2 in HAS_128_BYTE_Y_TILING() Jani Nikula
@ 2025-10-10 11:07 ` Jani Nikula
2025-10-10 14:01 ` Ville Syrjälä
2025-10-10 11:07 ` [PATCH 3/3] drm/i915/display: add HAS_AUX_CCS() " Jani Nikula
` (10 subsequent siblings)
12 siblings, 1 reply; 21+ messages in thread
From: Jani Nikula @ 2025-10-10 11:07 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
We should try to get rid of checks that depend on struct
drm_i915_private (or struct xe_device) in display
code. HAS_128_BYTE_Y_TILING() is one of them. In the interest of
simplicity, just duplicate the check as HAS_128B_Y_TILING() in display.
v2: gen2 also has 128-byte Y-tile
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
drivers/gpu/drm/i915/display/intel_fb.c | 3 +--
| 1 -
3 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 0e062753cf9b..9960ac13a6dd 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -142,6 +142,7 @@ struct intel_display_platforms {
func(overlay_needs_physical); \
func(supports_tv);
+#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
#define HAS_4TILE(__display) ((__display)->platform.dg2 || DISPLAY_VER(__display) >= 14)
#define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
#define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 3bfd211d64ba..7388791dfde0 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -777,7 +777,6 @@ unsigned int
intel_tile_width_bytes(const struct drm_framebuffer *fb, int color_plane)
{
struct intel_display *display = to_intel_display(fb->dev);
- struct drm_i915_private *i915 = to_i915(display->drm);
unsigned int cpp = fb->format->cpp[color_plane];
switch (fb->modifier) {
@@ -814,7 +813,7 @@ intel_tile_width_bytes(const struct drm_framebuffer *fb, int color_plane)
return 64;
fallthrough;
case I915_FORMAT_MOD_Y_TILED:
- if (HAS_128_BYTE_Y_TILING(i915))
+ if (HAS_128B_Y_TILING(display))
return 128;
else
return 512;
--git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index b8269391bc69..be3edf20de22 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -36,6 +36,5 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
#define IS_MOBILE(xe) (xe && 0)
#define HAS_FLAT_CCS(xe) (xe_device_has_flat_ccs(xe))
-#define HAS_128_BYTE_Y_TILING(xe) (xe || 1)
#endif
--
2.47.3
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH 2/3] drm/i915/display: duplicate 128-byte Y-tiling feature check
2025-10-10 11:07 ` [PATCH 2/3] drm/i915/display: duplicate 128-byte Y-tiling feature check Jani Nikula
@ 2025-10-10 14:01 ` Ville Syrjälä
0 siblings, 0 replies; 21+ messages in thread
From: Ville Syrjälä @ 2025-10-10 14:01 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Fri, Oct 10, 2025 at 02:07:52PM +0300, Jani Nikula wrote:
> We should try to get rid of checks that depend on struct
> drm_i915_private (or struct xe_device) in display
> code. HAS_128_BYTE_Y_TILING() is one of them. In the interest of
> simplicity, just duplicate the check as HAS_128B_Y_TILING() in display.
>
> v2: gen2 also has 128-byte Y-tile
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
> drivers/gpu/drm/i915/display/intel_fb.c | 3 +--
> drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h | 1 -
> 3 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 0e062753cf9b..9960ac13a6dd 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -142,6 +142,7 @@ struct intel_display_platforms {
> func(overlay_needs_physical); \
> func(supports_tv);
>
> +#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
> #define HAS_4TILE(__display) ((__display)->platform.dg2 || DISPLAY_VER(__display) >= 14)
> #define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
> #define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
> index 3bfd211d64ba..7388791dfde0 100644
> --- a/drivers/gpu/drm/i915/display/intel_fb.c
> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
> @@ -777,7 +777,6 @@ unsigned int
> intel_tile_width_bytes(const struct drm_framebuffer *fb, int color_plane)
> {
> struct intel_display *display = to_intel_display(fb->dev);
> - struct drm_i915_private *i915 = to_i915(display->drm);
> unsigned int cpp = fb->format->cpp[color_plane];
>
> switch (fb->modifier) {
> @@ -814,7 +813,7 @@ intel_tile_width_bytes(const struct drm_framebuffer *fb, int color_plane)
> return 64;
> fallthrough;
> case I915_FORMAT_MOD_Y_TILED:
> - if (HAS_128_BYTE_Y_TILING(i915))
> + if (HAS_128B_Y_TILING(display))
> return 128;
> else
> return 512;
I suppose we could just assume 128 byte Y-tile in the display
code since Y-tiled scanout wasn't even a thing before skl.
Ie. the else branch here should be dead code in reality.
But this isn't incorrect, so
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> index b8269391bc69..be3edf20de22 100644
> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> @@ -36,6 +36,5 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
> #define IS_MOBILE(xe) (xe && 0)
>
> #define HAS_FLAT_CCS(xe) (xe_device_has_flat_ccs(xe))
> -#define HAS_128_BYTE_Y_TILING(xe) (xe || 1)
>
> #endif
> --
> 2.47.3
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH 3/3] drm/i915/display: add HAS_AUX_CCS() feature check
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
2025-10-10 11:07 ` [PATCH 1/3] drm/i915: include gen 2 in HAS_128_BYTE_Y_TILING() Jani Nikula
2025-10-10 11:07 ` [PATCH 2/3] drm/i915/display: duplicate 128-byte Y-tiling feature check Jani Nikula
@ 2025-10-10 11:07 ` Jani Nikula
2025-10-10 13:53 ` Ville Syrjälä
2025-10-13 14:45 ` [PATCH v2] " Jani Nikula
2025-10-10 12:42 ` ✗ CI.checkpatch: warning for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Patchwork
` (9 subsequent siblings)
12 siblings, 2 replies; 21+ messages in thread
From: Jani Nikula @ 2025-10-10 11:07 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala
We should try to get rid of checks that depend on struct
drm_i915_private (or struct xe_device) in display code. HAS_FLAT_CCS()
is one of them. In the interest of simplicity, add a reversed
HAS_AUX_CCS() feature check macro, as that's we mostly use it for in
display.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
Is "display < 13 || mtl" good enough?
---
drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
drivers/gpu/drm/i915/display/intel_fb.c | 4 +---
drivers/gpu/drm/i915/display/skl_universal_plane.c | 4 ++--
| 2 --
4 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 9960ac13a6dd..3ceecfe3b1b7 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -144,6 +144,7 @@ struct intel_display_platforms {
#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
#define HAS_4TILE(__display) ((__display)->platform.dg2 || DISPLAY_VER(__display) >= 14)
+#define HAS_AUX_CCS(__display) (DISPLAY_VER(__display) < 13 || (__display)->platform.meteorlake)
#define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
#define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
#define HAS_BIGJOINER(__display) (DISPLAY_VER(__display) >= 11 && HAS_DSC(__display))
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 7388791dfde0..9c256a2805e4 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -547,8 +547,6 @@ static bool plane_has_modifier(struct intel_display *display,
u8 plane_caps,
const struct intel_modifier_desc *md)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
-
if (!IS_DISPLAY_VER(display, md->display_ver.from, md->display_ver.until))
return false;
@@ -560,7 +558,7 @@ static bool plane_has_modifier(struct intel_display *display,
* where supported.
*/
if (intel_fb_is_ccs_modifier(md->modifier) &&
- HAS_FLAT_CCS(i915) != !md->ccs.packed_aux_planes)
+ HAS_AUX_CCS(display) != !!md->ccs.packed_aux_planes)
return false;
if (md->modifier == I915_FORMAT_MOD_4_TILED_BMG_CCS &&
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index e13fb781e7b2..0319174adf95 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -1572,7 +1572,7 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
}
/* FLAT CCS doesn't need to program AUX_DIST */
- if (!HAS_FLAT_CCS(to_i915(display->drm)) && DISPLAY_VER(display) < 20)
+ if (HAS_AUX_CCS(display))
intel_de_write_dsb(display, dsb, PLANE_AUX_DIST(pipe, plane_id),
skl_plane_aux_dist(plane_state, color_plane));
@@ -2930,7 +2930,7 @@ skl_universal_plane_create(struct intel_display *display,
caps = skl_plane_caps(display, pipe, plane_id);
/* FIXME: xe has problems with AUX */
- if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
+ if (!IS_ENABLED(I915) && HAS_AUX_CCS(display))
caps &= ~(INTEL_PLANE_CAP_CCS_RC |
INTEL_PLANE_CAP_CCS_RC_CC |
INTEL_PLANE_CAP_CCS_MC);
--git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index be3edf20de22..7c657ea98a44 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -35,6 +35,4 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
#define IS_MOBILE(xe) (xe && 0)
-#define HAS_FLAT_CCS(xe) (xe_device_has_flat_ccs(xe))
-
#endif
--
2.47.3
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH 3/3] drm/i915/display: add HAS_AUX_CCS() feature check
2025-10-10 11:07 ` [PATCH 3/3] drm/i915/display: add HAS_AUX_CCS() " Jani Nikula
@ 2025-10-10 13:53 ` Ville Syrjälä
2025-10-13 14:47 ` Jani Nikula
2025-10-13 14:45 ` [PATCH v2] " Jani Nikula
1 sibling, 1 reply; 21+ messages in thread
From: Ville Syrjälä @ 2025-10-10 13:53 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Fri, Oct 10, 2025 at 02:07:53PM +0300, Jani Nikula wrote:
> We should try to get rid of checks that depend on struct
> drm_i915_private (or struct xe_device) in display code. HAS_FLAT_CCS()
> is one of them. In the interest of simplicity, add a reversed
> HAS_AUX_CCS() feature check macro, as that's we mostly use it for in
> display.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> ---
>
> Is "display < 13 || mtl" good enough?
> ---
> drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
> drivers/gpu/drm/i915/display/intel_fb.c | 4 +---
> drivers/gpu/drm/i915/display/skl_universal_plane.c | 4 ++--
> drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h | 2 --
> 4 files changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 9960ac13a6dd..3ceecfe3b1b7 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -144,6 +144,7 @@ struct intel_display_platforms {
>
> #define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
> #define HAS_4TILE(__display) ((__display)->platform.dg2 || DISPLAY_VER(__display) >= 14)
> +#define HAS_AUX_CCS(__display) (DISPLAY_VER(__display) < 13 || (__display)->platform.meteorlake)
That is missing ADL.
I think we'd need
IS_DISPLAY_VER(9, 12) || adl || mtl
or
IS_DISPLAY_VER(9, 14) && !dg2 && !bmg
Dunno which is uglier.
I was first thinking the latter could just be
'IS_DISPLAY_VER(9, 14) && !IS_DGFX' but looks like we don't have
IS_DFGX in the display code anymore, and also that would be wrong
for DG1 (assuming we'd say IS_DGFX==true for it).
> #define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
> #define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
> #define HAS_BIGJOINER(__display) (DISPLAY_VER(__display) >= 11 && HAS_DSC(__display))
> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
> index 7388791dfde0..9c256a2805e4 100644
> --- a/drivers/gpu/drm/i915/display/intel_fb.c
> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
> @@ -547,8 +547,6 @@ static bool plane_has_modifier(struct intel_display *display,
> u8 plane_caps,
> const struct intel_modifier_desc *md)
> {
> - struct drm_i915_private *i915 = to_i915(display->drm);
> -
> if (!IS_DISPLAY_VER(display, md->display_ver.from, md->display_ver.until))
> return false;
>
> @@ -560,7 +558,7 @@ static bool plane_has_modifier(struct intel_display *display,
> * where supported.
> */
> if (intel_fb_is_ccs_modifier(md->modifier) &&
> - HAS_FLAT_CCS(i915) != !md->ccs.packed_aux_planes)
> + HAS_AUX_CCS(display) != !!md->ccs.packed_aux_planes)
> return false;
>
> if (md->modifier == I915_FORMAT_MOD_4_TILED_BMG_CCS &&
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index e13fb781e7b2..0319174adf95 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -1572,7 +1572,7 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
> }
>
> /* FLAT CCS doesn't need to program AUX_DIST */
> - if (!HAS_FLAT_CCS(to_i915(display->drm)) && DISPLAY_VER(display) < 20)
> + if (HAS_AUX_CCS(display))
> intel_de_write_dsb(display, dsb, PLANE_AUX_DIST(pipe, plane_id),
> skl_plane_aux_dist(plane_state, color_plane));
>
> @@ -2930,7 +2930,7 @@ skl_universal_plane_create(struct intel_display *display,
> caps = skl_plane_caps(display, pipe, plane_id);
>
> /* FIXME: xe has problems with AUX */
> - if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
> + if (!IS_ENABLED(I915) && HAS_AUX_CCS(display))
> caps &= ~(INTEL_PLANE_CAP_CCS_RC |
> INTEL_PLANE_CAP_CCS_RC_CC |
> INTEL_PLANE_CAP_CCS_MC);
> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> index be3edf20de22..7c657ea98a44 100644
> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> @@ -35,6 +35,4 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
>
> #define IS_MOBILE(xe) (xe && 0)
>
> -#define HAS_FLAT_CCS(xe) (xe_device_has_flat_ccs(xe))
> -
> #endif
> --
> 2.47.3
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 21+ messages in thread* Re: [PATCH 3/3] drm/i915/display: add HAS_AUX_CCS() feature check
2025-10-10 13:53 ` Ville Syrjälä
@ 2025-10-13 14:47 ` Jani Nikula
0 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2025-10-13 14:47 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx, intel-xe
On Fri, 10 Oct 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Fri, Oct 10, 2025 at 02:07:53PM +0300, Jani Nikula wrote:
>> We should try to get rid of checks that depend on struct
>> drm_i915_private (or struct xe_device) in display code. HAS_FLAT_CCS()
>> is one of them. In the interest of simplicity, add a reversed
>> HAS_AUX_CCS() feature check macro, as that's we mostly use it for in
>> display.
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>>
>> ---
>>
>> Is "display < 13 || mtl" good enough?
>> ---
>> drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
>> drivers/gpu/drm/i915/display/intel_fb.c | 4 +---
>> drivers/gpu/drm/i915/display/skl_universal_plane.c | 4 ++--
>> drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h | 2 --
>> 4 files changed, 4 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
>> index 9960ac13a6dd..3ceecfe3b1b7 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
>> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
>> @@ -144,6 +144,7 @@ struct intel_display_platforms {
>>
>> #define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
>> #define HAS_4TILE(__display) ((__display)->platform.dg2 || DISPLAY_VER(__display) >= 14)
>> +#define HAS_AUX_CCS(__display) (DISPLAY_VER(__display) < 13 || (__display)->platform.meteorlake)
>
> That is missing ADL.
D'oh.
> I think we'd need
> IS_DISPLAY_VER(9, 12) || adl || mtl
> or
> IS_DISPLAY_VER(9, 14) && !dg2 && !bmg
>
> Dunno which is uglier.
>
> I was first thinking the latter could just be
> 'IS_DISPLAY_VER(9, 14) && !IS_DGFX' but looks like we don't have
> IS_DFGX in the display code anymore, and also that would be wrong
> for DG1 (assuming we'd say IS_DGFX==true for it).
We now have the "platform groups" in display->platform, including
display->platform.dgfx. But I opted to go for including adl-p.
BR,
Jani.
>
>> #define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
>> #define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
>> #define HAS_BIGJOINER(__display) (DISPLAY_VER(__display) >= 11 && HAS_DSC(__display))
>> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
>> index 7388791dfde0..9c256a2805e4 100644
>> --- a/drivers/gpu/drm/i915/display/intel_fb.c
>> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
>> @@ -547,8 +547,6 @@ static bool plane_has_modifier(struct intel_display *display,
>> u8 plane_caps,
>> const struct intel_modifier_desc *md)
>> {
>> - struct drm_i915_private *i915 = to_i915(display->drm);
>> -
>> if (!IS_DISPLAY_VER(display, md->display_ver.from, md->display_ver.until))
>> return false;
>>
>> @@ -560,7 +558,7 @@ static bool plane_has_modifier(struct intel_display *display,
>> * where supported.
>> */
>> if (intel_fb_is_ccs_modifier(md->modifier) &&
>> - HAS_FLAT_CCS(i915) != !md->ccs.packed_aux_planes)
>> + HAS_AUX_CCS(display) != !!md->ccs.packed_aux_planes)
>> return false;
>>
>> if (md->modifier == I915_FORMAT_MOD_4_TILED_BMG_CCS &&
>> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
>> index e13fb781e7b2..0319174adf95 100644
>> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
>> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
>> @@ -1572,7 +1572,7 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
>> }
>>
>> /* FLAT CCS doesn't need to program AUX_DIST */
>> - if (!HAS_FLAT_CCS(to_i915(display->drm)) && DISPLAY_VER(display) < 20)
>> + if (HAS_AUX_CCS(display))
>> intel_de_write_dsb(display, dsb, PLANE_AUX_DIST(pipe, plane_id),
>> skl_plane_aux_dist(plane_state, color_plane));
>>
>> @@ -2930,7 +2930,7 @@ skl_universal_plane_create(struct intel_display *display,
>> caps = skl_plane_caps(display, pipe, plane_id);
>>
>> /* FIXME: xe has problems with AUX */
>> - if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
>> + if (!IS_ENABLED(I915) && HAS_AUX_CCS(display))
>> caps &= ~(INTEL_PLANE_CAP_CCS_RC |
>> INTEL_PLANE_CAP_CCS_RC_CC |
>> INTEL_PLANE_CAP_CCS_MC);
>> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> index be3edf20de22..7c657ea98a44 100644
>> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> @@ -35,6 +35,4 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
>>
>> #define IS_MOBILE(xe) (xe && 0)
>>
>> -#define HAS_FLAT_CCS(xe) (xe_device_has_flat_ccs(xe))
>> -
>> #endif
>> --
>> 2.47.3
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH v2] drm/i915/display: add HAS_AUX_CCS() feature check
2025-10-10 11:07 ` [PATCH 3/3] drm/i915/display: add HAS_AUX_CCS() " Jani Nikula
2025-10-10 13:53 ` Ville Syrjälä
@ 2025-10-13 14:45 ` Jani Nikula
2025-10-13 17:21 ` Ville Syrjälä
1 sibling, 1 reply; 21+ messages in thread
From: Jani Nikula @ 2025-10-13 14:45 UTC (permalink / raw)
To: Jani Nikula, intel-gfx, intel-xe; +Cc: ville.syrjala
We should try to get rid of checks that depend on struct
drm_i915_private (or struct xe_device) in display code. HAS_FLAT_CCS()
is one of them. In the interest of simplicity, add a reversed
HAS_AUX_CCS() feature check macro, as that's we mostly use it for in
display.
v2: include adl-p (Ville)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
drivers/gpu/drm/i915/display/intel_fb.c | 4 +---
drivers/gpu/drm/i915/display/skl_universal_plane.c | 4 ++--
| 2 --
4 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 9960ac13a6dd..2d856c5fcbed 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -144,6 +144,7 @@ struct intel_display_platforms {
#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
#define HAS_4TILE(__display) ((__display)->platform.dg2 || DISPLAY_VER(__display) >= 14)
+#define HAS_AUX_CCS(__display) (IS_DISPLAY_VER(__display, 9, 12) || (__display)->platform.alderlake_p || (__display)->platform.meteorlake)
#define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
#define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
#define HAS_BIGJOINER(__display) (DISPLAY_VER(__display) >= 11 && HAS_DSC(__display))
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 7388791dfde0..9c256a2805e4 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -547,8 +547,6 @@ static bool plane_has_modifier(struct intel_display *display,
u8 plane_caps,
const struct intel_modifier_desc *md)
{
- struct drm_i915_private *i915 = to_i915(display->drm);
-
if (!IS_DISPLAY_VER(display, md->display_ver.from, md->display_ver.until))
return false;
@@ -560,7 +558,7 @@ static bool plane_has_modifier(struct intel_display *display,
* where supported.
*/
if (intel_fb_is_ccs_modifier(md->modifier) &&
- HAS_FLAT_CCS(i915) != !md->ccs.packed_aux_planes)
+ HAS_AUX_CCS(display) != !!md->ccs.packed_aux_planes)
return false;
if (md->modifier == I915_FORMAT_MOD_4_TILED_BMG_CCS &&
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index e13fb781e7b2..0319174adf95 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -1572,7 +1572,7 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
}
/* FLAT CCS doesn't need to program AUX_DIST */
- if (!HAS_FLAT_CCS(to_i915(display->drm)) && DISPLAY_VER(display) < 20)
+ if (HAS_AUX_CCS(display))
intel_de_write_dsb(display, dsb, PLANE_AUX_DIST(pipe, plane_id),
skl_plane_aux_dist(plane_state, color_plane));
@@ -2930,7 +2930,7 @@ skl_universal_plane_create(struct intel_display *display,
caps = skl_plane_caps(display, pipe, plane_id);
/* FIXME: xe has problems with AUX */
- if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
+ if (!IS_ENABLED(I915) && HAS_AUX_CCS(display))
caps &= ~(INTEL_PLANE_CAP_CCS_RC |
INTEL_PLANE_CAP_CCS_RC_CC |
INTEL_PLANE_CAP_CCS_MC);
--git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
index be3edf20de22..7c657ea98a44 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
@@ -35,6 +35,4 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
#define IS_MOBILE(xe) (xe && 0)
-#define HAS_FLAT_CCS(xe) (xe_device_has_flat_ccs(xe))
-
#endif
--
2.47.3
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH v2] drm/i915/display: add HAS_AUX_CCS() feature check
2025-10-13 14:45 ` [PATCH v2] " Jani Nikula
@ 2025-10-13 17:21 ` Ville Syrjälä
2025-10-14 9:50 ` Jani Nikula
0 siblings, 1 reply; 21+ messages in thread
From: Ville Syrjälä @ 2025-10-13 17:21 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Mon, Oct 13, 2025 at 05:45:52PM +0300, Jani Nikula wrote:
> We should try to get rid of checks that depend on struct
> drm_i915_private (or struct xe_device) in display code. HAS_FLAT_CCS()
> is one of them. In the interest of simplicity, add a reversed
> HAS_AUX_CCS() feature check macro, as that's we mostly use it for in
> display.
>
> v2: include adl-p (Ville)
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
> drivers/gpu/drm/i915/display/intel_fb.c | 4 +---
> drivers/gpu/drm/i915/display/skl_universal_plane.c | 4 ++--
> drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h | 2 --
> 4 files changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 9960ac13a6dd..2d856c5fcbed 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -144,6 +144,7 @@ struct intel_display_platforms {
>
> #define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
> #define HAS_4TILE(__display) ((__display)->platform.dg2 || DISPLAY_VER(__display) >= 14)
> +#define HAS_AUX_CCS(__display) (IS_DISPLAY_VER(__display, 9, 12) || (__display)->platform.alderlake_p || (__display)->platform.meteorlake)
Looks about right.
> #define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
> #define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
Should it go here to keep these sorted?
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> #define HAS_BIGJOINER(__display) (DISPLAY_VER(__display) >= 11 && HAS_DSC(__display))
> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
> index 7388791dfde0..9c256a2805e4 100644
> --- a/drivers/gpu/drm/i915/display/intel_fb.c
> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
> @@ -547,8 +547,6 @@ static bool plane_has_modifier(struct intel_display *display,
> u8 plane_caps,
> const struct intel_modifier_desc *md)
> {
> - struct drm_i915_private *i915 = to_i915(display->drm);
> -
> if (!IS_DISPLAY_VER(display, md->display_ver.from, md->display_ver.until))
> return false;
>
> @@ -560,7 +558,7 @@ static bool plane_has_modifier(struct intel_display *display,
> * where supported.
> */
> if (intel_fb_is_ccs_modifier(md->modifier) &&
> - HAS_FLAT_CCS(i915) != !md->ccs.packed_aux_planes)
> + HAS_AUX_CCS(display) != !!md->ccs.packed_aux_planes)
> return false;
>
> if (md->modifier == I915_FORMAT_MOD_4_TILED_BMG_CCS &&
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index e13fb781e7b2..0319174adf95 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -1572,7 +1572,7 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
> }
>
> /* FLAT CCS doesn't need to program AUX_DIST */
> - if (!HAS_FLAT_CCS(to_i915(display->drm)) && DISPLAY_VER(display) < 20)
> + if (HAS_AUX_CCS(display))
> intel_de_write_dsb(display, dsb, PLANE_AUX_DIST(pipe, plane_id),
> skl_plane_aux_dist(plane_state, color_plane));
>
> @@ -2930,7 +2930,7 @@ skl_universal_plane_create(struct intel_display *display,
> caps = skl_plane_caps(display, pipe, plane_id);
>
> /* FIXME: xe has problems with AUX */
> - if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
> + if (!IS_ENABLED(I915) && HAS_AUX_CCS(display))
> caps &= ~(INTEL_PLANE_CAP_CCS_RC |
> INTEL_PLANE_CAP_CCS_RC_CC |
> INTEL_PLANE_CAP_CCS_MC);
> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> index be3edf20de22..7c657ea98a44 100644
> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
> @@ -35,6 +35,4 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
>
> #define IS_MOBILE(xe) (xe && 0)
>
> -#define HAS_FLAT_CCS(xe) (xe_device_has_flat_ccs(xe))
> -
> #endif
> --
> 2.47.3
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 21+ messages in thread* Re: [PATCH v2] drm/i915/display: add HAS_AUX_CCS() feature check
2025-10-13 17:21 ` Ville Syrjälä
@ 2025-10-14 9:50 ` Jani Nikula
0 siblings, 0 replies; 21+ messages in thread
From: Jani Nikula @ 2025-10-14 9:50 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx, intel-xe
On Mon, 13 Oct 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Mon, Oct 13, 2025 at 05:45:52PM +0300, Jani Nikula wrote:
>> We should try to get rid of checks that depend on struct
>> drm_i915_private (or struct xe_device) in display code. HAS_FLAT_CCS()
>> is one of them. In the interest of simplicity, add a reversed
>> HAS_AUX_CCS() feature check macro, as that's we mostly use it for in
>> display.
>>
>> v2: include adl-p (Ville)
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>> drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
>> drivers/gpu/drm/i915/display/intel_fb.c | 4 +---
>> drivers/gpu/drm/i915/display/skl_universal_plane.c | 4 ++--
>> drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h | 2 --
>> 4 files changed, 4 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
>> index 9960ac13a6dd..2d856c5fcbed 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
>> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
>> @@ -144,6 +144,7 @@ struct intel_display_platforms {
>>
>> #define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
>> #define HAS_4TILE(__display) ((__display)->platform.dg2 || DISPLAY_VER(__display) >= 14)
>> +#define HAS_AUX_CCS(__display) (IS_DISPLAY_VER(__display, 9, 12) || (__display)->platform.alderlake_p || (__display)->platform.meteorlake)
>
> Looks about right.
>
>> #define HAS_ASYNC_FLIPS(__display) (DISPLAY_VER(__display) >= 5)
>> #define HAS_AS_SDP(__display) (DISPLAY_VER(__display) >= 13)
>
> Should it go here to keep these sorted?
Dang it. Fixed while applying. There's nothing to see here, please move
along.
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Thanks for the reviews, pushed the lot to din.
>
>> #define HAS_BIGJOINER(__display) (DISPLAY_VER(__display) >= 11 && HAS_DSC(__display))
>> diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
>> index 7388791dfde0..9c256a2805e4 100644
>> --- a/drivers/gpu/drm/i915/display/intel_fb.c
>> +++ b/drivers/gpu/drm/i915/display/intel_fb.c
>> @@ -547,8 +547,6 @@ static bool plane_has_modifier(struct intel_display *display,
>> u8 plane_caps,
>> const struct intel_modifier_desc *md)
>> {
>> - struct drm_i915_private *i915 = to_i915(display->drm);
>> -
>> if (!IS_DISPLAY_VER(display, md->display_ver.from, md->display_ver.until))
>> return false;
>>
>> @@ -560,7 +558,7 @@ static bool plane_has_modifier(struct intel_display *display,
>> * where supported.
>> */
>> if (intel_fb_is_ccs_modifier(md->modifier) &&
>> - HAS_FLAT_CCS(i915) != !md->ccs.packed_aux_planes)
>> + HAS_AUX_CCS(display) != !!md->ccs.packed_aux_planes)
>> return false;
>>
>> if (md->modifier == I915_FORMAT_MOD_4_TILED_BMG_CCS &&
>> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
>> index e13fb781e7b2..0319174adf95 100644
>> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
>> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
>> @@ -1572,7 +1572,7 @@ icl_plane_update_noarm(struct intel_dsb *dsb,
>> }
>>
>> /* FLAT CCS doesn't need to program AUX_DIST */
>> - if (!HAS_FLAT_CCS(to_i915(display->drm)) && DISPLAY_VER(display) < 20)
>> + if (HAS_AUX_CCS(display))
>> intel_de_write_dsb(display, dsb, PLANE_AUX_DIST(pipe, plane_id),
>> skl_plane_aux_dist(plane_state, color_plane));
>>
>> @@ -2930,7 +2930,7 @@ skl_universal_plane_create(struct intel_display *display,
>> caps = skl_plane_caps(display, pipe, plane_id);
>>
>> /* FIXME: xe has problems with AUX */
>> - if (!IS_ENABLED(I915) && !HAS_FLAT_CCS(to_i915(display->drm)))
>> + if (!IS_ENABLED(I915) && HAS_AUX_CCS(display))
>> caps &= ~(INTEL_PLANE_CAP_CCS_RC |
>> INTEL_PLANE_CAP_CCS_RC_CC |
>> INTEL_PLANE_CAP_CCS_MC);
>> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> index be3edf20de22..7c657ea98a44 100644
>> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h
>> @@ -35,6 +35,4 @@ static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
>>
>> #define IS_MOBILE(xe) (xe && 0)
>>
>> -#define HAS_FLAT_CCS(xe) (xe_device_has_flat_ccs(xe))
>> -
>> #endif
>> --
>> 2.47.3
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 21+ messages in thread
* ✗ CI.checkpatch: warning for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (2 preceding siblings ...)
2025-10-10 11:07 ` [PATCH 3/3] drm/i915/display: add HAS_AUX_CCS() " Jani Nikula
@ 2025-10-10 12:42 ` Patchwork
2025-10-10 12:43 ` ✓ CI.KUnit: success " Patchwork
` (8 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-10 12:42 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
URL : https://patchwork.freedesktop.org/series/155739/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 8bfae57eb6e1a9e33d46f3ae9f80a4a2408307aa
Author: Jani Nikula <jani.nikula@intel.com>
Date: Fri Oct 10 14:07:53 2025 +0300
drm/i915/display: add HAS_AUX_CCS() feature check
We should try to get rid of checks that depend on struct
drm_i915_private (or struct xe_device) in display code. HAS_FLAT_CCS()
is one of them. In the interest of simplicity, add a reversed
HAS_AUX_CCS() feature check macro, as that's we mostly use it for in
display.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch a83c7590b57a56cfc1f4d9e1c07948643c9ed165 drm-intel
0b7ccc5b100f drm/i915: include gen 2 in HAS_128_BYTE_Y_TILING()
-:59: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'i915' - possible side-effects?
#59: FILE: drivers/gpu/drm/i915/i915_drv.h:605:
+#define HAS_128_BYTE_Y_TILING(i915) (!IS_I915G(i915) && !IS_I915GM(i915))
total: 0 errors, 0 warnings, 1 checks, 28 lines checked
f7cbc1999dca drm/i915/display: duplicate 128-byte Y-tiling feature check
-:23: WARNING:LONG_LINE: line length of 103 exceeds 100 columns
#23: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:145:
+#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
-:23: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__display' - possible side-effects?
#23: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:145:
+#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
total: 0 errors, 1 warnings, 1 checks, 28 lines checked
8bfae57eb6e1 drm/i915/display: add HAS_AUX_CCS() feature check
-:22: WARNING:LONG_LINE: line length of 105 exceeds 100 columns
#22: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:147:
+#define HAS_AUX_CCS(__display) (DISPLAY_VER(__display) < 13 || (__display)->platform.meteorlake)
-:22: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__display' - possible side-effects?
#22: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:147:
+#define HAS_AUX_CCS(__display) (DISPLAY_VER(__display) < 13 || (__display)->platform.meteorlake)
-:66: WARNING:IS_ENABLED_CONFIG: IS_ENABLED(I915) is normally used as IS_ENABLED(CONFIG_I915)
#66: FILE: drivers/gpu/drm/i915/display/skl_universal_plane.c:2933:
+ if (!IS_ENABLED(I915) && HAS_AUX_CCS(display))
total: 0 errors, 2 warnings, 1 checks, 45 lines checked
^ permalink raw reply [flat|nested] 21+ messages in thread* ✓ CI.KUnit: success for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (3 preceding siblings ...)
2025-10-10 12:42 ` ✗ CI.checkpatch: warning for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Patchwork
@ 2025-10-10 12:43 ` Patchwork
2025-10-10 13:01 ` ✗ CI.checksparse: warning " Patchwork
` (7 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-10 12:43 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
URL : https://patchwork.freedesktop.org/series/155739/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:42:22] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:42:27] 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=25
[12:43:03] Starting KUnit Kernel (1/1)...
[12:43:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:43:03] ================== guc_buf (11 subtests) ===================
[12:43:03] [PASSED] test_smallest
[12:43:03] [PASSED] test_largest
[12:43:03] [PASSED] test_granular
[12:43:03] [PASSED] test_unique
[12:43:03] [PASSED] test_overlap
[12:43:03] [PASSED] test_reusable
[12:43:03] [PASSED] test_too_big
[12:43:03] [PASSED] test_flush
[12:43:03] [PASSED] test_lookup
[12:43:03] [PASSED] test_data
[12:43:03] [PASSED] test_class
[12:43:03] ===================== [PASSED] guc_buf =====================
[12:43:03] =================== guc_dbm (7 subtests) ===================
[12:43:03] [PASSED] test_empty
[12:43:03] [PASSED] test_default
[12:43:03] ======================== test_size ========================
[12:43:03] [PASSED] 4
[12:43:03] [PASSED] 8
[12:43:03] [PASSED] 32
[12:43:03] [PASSED] 256
[12:43:03] ==================== [PASSED] test_size ====================
[12:43:03] ======================= test_reuse ========================
[12:43:03] [PASSED] 4
[12:43:03] [PASSED] 8
[12:43:03] [PASSED] 32
[12:43:03] [PASSED] 256
[12:43:03] =================== [PASSED] test_reuse ====================
[12:43:03] =================== test_range_overlap ====================
[12:43:03] [PASSED] 4
[12:43:03] [PASSED] 8
[12:43:03] [PASSED] 32
[12:43:03] [PASSED] 256
[12:43:03] =============== [PASSED] test_range_overlap ================
[12:43:03] =================== test_range_compact ====================
[12:43:03] [PASSED] 4
[12:43:03] [PASSED] 8
[12:43:03] [PASSED] 32
[12:43:03] [PASSED] 256
[12:43:03] =============== [PASSED] test_range_compact ================
[12:43:03] ==================== test_range_spare =====================
[12:43:03] [PASSED] 4
[12:43:03] [PASSED] 8
[12:43:03] [PASSED] 32
[12:43:03] [PASSED] 256
[12:43:03] ================ [PASSED] test_range_spare =================
[12:43:03] ===================== [PASSED] guc_dbm =====================
[12:43:03] =================== guc_idm (6 subtests) ===================
[12:43:03] [PASSED] bad_init
[12:43:03] [PASSED] no_init
[12:43:03] [PASSED] init_fini
[12:43:03] [PASSED] check_used
[12:43:03] [PASSED] check_quota
[12:43:03] [PASSED] check_all
[12:43:03] ===================== [PASSED] guc_idm =====================
[12:43:03] ================== no_relay (3 subtests) ===================
[12:43:03] [PASSED] xe_drops_guc2pf_if_not_ready
[12:43:03] [PASSED] xe_drops_guc2vf_if_not_ready
[12:43:03] [PASSED] xe_rejects_send_if_not_ready
[12:43:03] ==================== [PASSED] no_relay =====================
[12:43:03] ================== pf_relay (14 subtests) ==================
[12:43:03] [PASSED] pf_rejects_guc2pf_too_short
[12:43:03] [PASSED] pf_rejects_guc2pf_too_long
[12:43:03] [PASSED] pf_rejects_guc2pf_no_payload
[12:43:03] [PASSED] pf_fails_no_payload
[12:43:03] [PASSED] pf_fails_bad_origin
[12:43:03] [PASSED] pf_fails_bad_type
[12:43:03] [PASSED] pf_txn_reports_error
[12:43:03] [PASSED] pf_txn_sends_pf2guc
[12:43:03] [PASSED] pf_sends_pf2guc
[12:43:03] [SKIPPED] pf_loopback_nop
[12:43:03] [SKIPPED] pf_loopback_echo
[12:43:03] [SKIPPED] pf_loopback_fail
[12:43:03] [SKIPPED] pf_loopback_busy
[12:43:03] [SKIPPED] pf_loopback_retry
[12:43:03] ==================== [PASSED] pf_relay =====================
[12:43:03] ================== vf_relay (3 subtests) ===================
[12:43:03] [PASSED] vf_rejects_guc2vf_too_short
[12:43:03] [PASSED] vf_rejects_guc2vf_too_long
[12:43:03] [PASSED] vf_rejects_guc2vf_no_payload
[12:43:03] ==================== [PASSED] vf_relay =====================
[12:43:03] ===================== lmtt (1 subtest) =====================
[12:43:03] ======================== test_ops =========================
[12:43:03] [PASSED] 2-level
[12:43:03] [PASSED] multi-level
[12:43:03] ==================== [PASSED] test_ops =====================
[12:43:03] ====================== [PASSED] lmtt =======================
[12:43:03] ================= pf_service (11 subtests) =================
[12:43:03] [PASSED] pf_negotiate_any
[12:43:03] [PASSED] pf_negotiate_base_match
[12:43:03] [PASSED] pf_negotiate_base_newer
[12:43:03] [PASSED] pf_negotiate_base_next
[12:43:03] [SKIPPED] pf_negotiate_base_older
[12:43:03] [PASSED] pf_negotiate_base_prev
[12:43:03] [PASSED] pf_negotiate_latest_match
[12:43:03] [PASSED] pf_negotiate_latest_newer
[12:43:03] [PASSED] pf_negotiate_latest_next
[12:43:03] [SKIPPED] pf_negotiate_latest_older
[12:43:03] [SKIPPED] pf_negotiate_latest_prev
[12:43:03] =================== [PASSED] pf_service ====================
[12:43:03] ================= xe_guc_g2g (2 subtests) ==================
[12:43:03] ============== xe_live_guc_g2g_kunit_default ==============
[12:43:03] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:43:03] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:43:03] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:43:03] =================== [SKIPPED] xe_guc_g2g ===================
[12:43:03] =================== xe_mocs (2 subtests) ===================
[12:43:03] ================ xe_live_mocs_kernel_kunit ================
[12:43:03] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:43:03] ================ xe_live_mocs_reset_kunit =================
[12:43:03] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:43:03] ==================== [SKIPPED] xe_mocs =====================
[12:43:03] ================= xe_migrate (2 subtests) ==================
[12:43:03] ================= xe_migrate_sanity_kunit =================
[12:43:03] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:43:03] ================== xe_validate_ccs_kunit ==================
[12:43:03] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:43:03] =================== [SKIPPED] xe_migrate ===================
[12:43:03] ================== xe_dma_buf (1 subtest) ==================
[12:43:03] ==================== xe_dma_buf_kunit =====================
[12:43:03] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:43:03] =================== [SKIPPED] xe_dma_buf ===================
[12:43:03] ================= xe_bo_shrink (1 subtest) =================
[12:43:03] =================== xe_bo_shrink_kunit ====================
[12:43:03] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:43:03] ================== [SKIPPED] xe_bo_shrink ==================
[12:43:03] ==================== xe_bo (2 subtests) ====================
[12:43:03] ================== xe_ccs_migrate_kunit ===================
[12:43:03] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:43:03] ==================== xe_bo_evict_kunit ====================
[12:43:03] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:43:03] ===================== [SKIPPED] xe_bo ======================
[12:43:03] ==================== args (11 subtests) ====================
[12:43:03] [PASSED] count_args_test
[12:43:03] [PASSED] call_args_example
[12:43:03] [PASSED] call_args_test
[12:43:03] [PASSED] drop_first_arg_example
[12:43:03] [PASSED] drop_first_arg_test
[12:43:03] [PASSED] first_arg_example
[12:43:03] [PASSED] first_arg_test
[12:43:03] [PASSED] last_arg_example
[12:43:03] [PASSED] last_arg_test
[12:43:03] [PASSED] pick_arg_example
[12:43:03] [PASSED] sep_comma_example
[12:43:03] ====================== [PASSED] args =======================
[12:43:03] =================== xe_pci (3 subtests) ====================
[12:43:03] ==================== check_graphics_ip ====================
[12:43:03] [PASSED] 12.00 Xe_LP
[12:43:03] [PASSED] 12.10 Xe_LP+
[12:43:03] [PASSED] 12.55 Xe_HPG
[12:43:03] [PASSED] 12.60 Xe_HPC
[12:43:03] [PASSED] 12.70 Xe_LPG
[12:43:03] [PASSED] 12.71 Xe_LPG
[12:43:03] [PASSED] 12.74 Xe_LPG+
[12:43:03] [PASSED] 20.01 Xe2_HPG
[12:43:03] [PASSED] 20.02 Xe2_HPG
[12:43:03] [PASSED] 20.04 Xe2_LPG
[12:43:03] [PASSED] 30.00 Xe3_LPG
[12:43:03] [PASSED] 30.01 Xe3_LPG
[12:43:03] [PASSED] 30.03 Xe3_LPG
[12:43:03] ================ [PASSED] check_graphics_ip ================
[12:43:03] ===================== check_media_ip ======================
[12:43:03] [PASSED] 12.00 Xe_M
[12:43:03] [PASSED] 12.55 Xe_HPM
[12:43:03] [PASSED] 13.00 Xe_LPM+
[12:43:03] [PASSED] 13.01 Xe2_HPM
[12:43:03] [PASSED] 20.00 Xe2_LPM
[12:43:03] [PASSED] 30.00 Xe3_LPM
[12:43:03] [PASSED] 30.02 Xe3_LPM
[12:43:03] ================= [PASSED] check_media_ip ==================
[12:43:03] ================= check_platform_gt_count =================
[12:43:03] [PASSED] 0x9A60 (TIGERLAKE)
[12:43:03] [PASSED] 0x9A68 (TIGERLAKE)
[12:43:03] [PASSED] 0x9A70 (TIGERLAKE)
[12:43:03] [PASSED] 0x9A40 (TIGERLAKE)
[12:43:03] [PASSED] 0x9A49 (TIGERLAKE)
[12:43:03] [PASSED] 0x9A59 (TIGERLAKE)
[12:43:03] [PASSED] 0x9A78 (TIGERLAKE)
[12:43:03] [PASSED] 0x9AC0 (TIGERLAKE)
[12:43:03] [PASSED] 0x9AC9 (TIGERLAKE)
[12:43:03] [PASSED] 0x9AD9 (TIGERLAKE)
[12:43:03] [PASSED] 0x9AF8 (TIGERLAKE)
[12:43:03] [PASSED] 0x4C80 (ROCKETLAKE)
[12:43:03] [PASSED] 0x4C8A (ROCKETLAKE)
[12:43:03] [PASSED] 0x4C8B (ROCKETLAKE)
[12:43:03] [PASSED] 0x4C8C (ROCKETLAKE)
[12:43:03] [PASSED] 0x4C90 (ROCKETLAKE)
[12:43:03] [PASSED] 0x4C9A (ROCKETLAKE)
[12:43:03] [PASSED] 0x4680 (ALDERLAKE_S)
[12:43:03] [PASSED] 0x4682 (ALDERLAKE_S)
[12:43:03] [PASSED] 0x4688 (ALDERLAKE_S)
[12:43:03] [PASSED] 0x468A (ALDERLAKE_S)
[12:43:03] [PASSED] 0x468B (ALDERLAKE_S)
[12:43:03] [PASSED] 0x4690 (ALDERLAKE_S)
[12:43:03] [PASSED] 0x4692 (ALDERLAKE_S)
[12:43:03] [PASSED] 0x4693 (ALDERLAKE_S)
[12:43:03] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46AA (ALDERLAKE_P)
[12:43:03] [PASSED] 0x462A (ALDERLAKE_P)
[12:43:03] [PASSED] 0x4626 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x4628 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:43:03] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:43:03] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:43:03] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:43:03] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:43:03] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:43:03] [PASSED] 0xA721 (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA720 (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:43:03] [PASSED] 0xA780 (ALDERLAKE_S)
[12:43:03] [PASSED] 0xA781 (ALDERLAKE_S)
[12:43:03] [PASSED] 0xA782 (ALDERLAKE_S)
[12:43:03] [PASSED] 0xA783 (ALDERLAKE_S)
[12:43:03] [PASSED] 0xA788 (ALDERLAKE_S)
[12:43:03] [PASSED] 0xA789 (ALDERLAKE_S)
[12:43:03] [PASSED] 0xA78A (ALDERLAKE_S)
[12:43:03] [PASSED] 0xA78B (ALDERLAKE_S)
[12:43:03] [PASSED] 0x4905 (DG1)
[12:43:03] [PASSED] 0x4906 (DG1)
[12:43:03] [PASSED] 0x4907 (DG1)
[12:43:03] [PASSED] 0x4908 (DG1)
[12:43:03] [PASSED] 0x4909 (DG1)
[12:43:03] [PASSED] 0x56C0 (DG2)
[12:43:03] [PASSED] 0x56C2 (DG2)
[12:43:03] [PASSED] 0x56C1 (DG2)
[12:43:03] [PASSED] 0x7D51 (METEORLAKE)
[12:43:03] [PASSED] 0x7DD1 (METEORLAKE)
[12:43:03] [PASSED] 0x7D41 (METEORLAKE)
[12:43:03] [PASSED] 0x7D67 (METEORLAKE)
[12:43:03] [PASSED] 0xB640 (METEORLAKE)
[12:43:03] [PASSED] 0x56A0 (DG2)
[12:43:03] [PASSED] 0x56A1 (DG2)
[12:43:03] [PASSED] 0x56A2 (DG2)
[12:43:03] [PASSED] 0x56BE (DG2)
[12:43:03] [PASSED] 0x56BF (DG2)
[12:43:03] [PASSED] 0x5690 (DG2)
[12:43:03] [PASSED] 0x5691 (DG2)
[12:43:03] [PASSED] 0x5692 (DG2)
[12:43:03] [PASSED] 0x56A5 (DG2)
[12:43:03] [PASSED] 0x56A6 (DG2)
[12:43:03] [PASSED] 0x56B0 (DG2)
[12:43:03] [PASSED] 0x56B1 (DG2)
[12:43:03] [PASSED] 0x56BA (DG2)
[12:43:03] [PASSED] 0x56BB (DG2)
[12:43:03] [PASSED] 0x56BC (DG2)
[12:43:03] [PASSED] 0x56BD (DG2)
[12:43:03] [PASSED] 0x5693 (DG2)
[12:43:03] [PASSED] 0x5694 (DG2)
[12:43:03] [PASSED] 0x5695 (DG2)
[12:43:03] [PASSED] 0x56A3 (DG2)
[12:43:03] [PASSED] 0x56A4 (DG2)
[12:43:03] [PASSED] 0x56B2 (DG2)
[12:43:03] [PASSED] 0x56B3 (DG2)
[12:43:03] [PASSED] 0x5696 (DG2)
[12:43:03] [PASSED] 0x5697 (DG2)
[12:43:03] [PASSED] 0xB69 (PVC)
[12:43:03] [PASSED] 0xB6E (PVC)
[12:43:03] [PASSED] 0xBD4 (PVC)
[12:43:03] [PASSED] 0xBD5 (PVC)
[12:43:03] [PASSED] 0xBD6 (PVC)
[12:43:03] [PASSED] 0xBD7 (PVC)
[12:43:03] [PASSED] 0xBD8 (PVC)
[12:43:03] [PASSED] 0xBD9 (PVC)
[12:43:03] [PASSED] 0xBDA (PVC)
[12:43:03] [PASSED] 0xBDB (PVC)
[12:43:03] [PASSED] 0xBE0 (PVC)
[12:43:03] [PASSED] 0xBE1 (PVC)
[12:43:03] [PASSED] 0xBE5 (PVC)
[12:43:03] [PASSED] 0x7D40 (METEORLAKE)
[12:43:03] [PASSED] 0x7D45 (METEORLAKE)
[12:43:03] [PASSED] 0x7D55 (METEORLAKE)
[12:43:03] [PASSED] 0x7D60 (METEORLAKE)
[12:43:03] [PASSED] 0x7DD5 (METEORLAKE)
[12:43:03] [PASSED] 0x6420 (LUNARLAKE)
[12:43:03] [PASSED] 0x64A0 (LUNARLAKE)
[12:43:03] [PASSED] 0x64B0 (LUNARLAKE)
[12:43:03] [PASSED] 0xE202 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE209 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE20B (BATTLEMAGE)
[12:43:03] [PASSED] 0xE20C (BATTLEMAGE)
[12:43:03] [PASSED] 0xE20D (BATTLEMAGE)
[12:43:03] [PASSED] 0xE210 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE211 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE212 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE216 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE220 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE221 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE222 (BATTLEMAGE)
[12:43:03] [PASSED] 0xE223 (BATTLEMAGE)
[12:43:03] [PASSED] 0xB080 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB081 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB082 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB083 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB084 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB085 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB086 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB087 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB08F (PANTHERLAKE)
[12:43:03] [PASSED] 0xB090 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:43:03] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:43:03] [PASSED] 0xFD80 (PANTHERLAKE)
[12:43:03] [PASSED] 0xFD81 (PANTHERLAKE)
[12:43:03] ============= [PASSED] check_platform_gt_count =============
[12:43:03] ===================== [PASSED] xe_pci ======================
[12:43:03] =================== xe_rtp (2 subtests) ====================
[12:43:03] =============== xe_rtp_process_to_sr_tests ================
[12:43:03] [PASSED] coalesce-same-reg
[12:43:03] [PASSED] no-match-no-add
[12:43:03] [PASSED] match-or
[12:43:03] [PASSED] match-or-xfail
[12:43:03] [PASSED] no-match-no-add-multiple-rules
[12:43:03] [PASSED] two-regs-two-entries
[12:43:03] [PASSED] clr-one-set-other
[12:43:03] [PASSED] set-field
[12:43:03] [PASSED] conflict-duplicate
[12:43:03] [PASSED] conflict-not-disjoint
[12:43:03] [PASSED] conflict-reg-type
[12:43:03] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:43:03] ================== xe_rtp_process_tests ===================
[12:43:03] [PASSED] active1
[12:43:03] [PASSED] active2
[12:43:03] [PASSED] active-inactive
[12:43:03] [PASSED] inactive-active
[12:43:03] [PASSED] inactive-1st_or_active-inactive
[12:43:03] [PASSED] inactive-2nd_or_active-inactive
[12:43:03] [PASSED] inactive-last_or_active-inactive
[12:43:03] [PASSED] inactive-no_or_active-inactive
[12:43:03] ============== [PASSED] xe_rtp_process_tests ===============
[12:43:03] ===================== [PASSED] xe_rtp ======================
[12:43:03] ==================== xe_wa (1 subtest) =====================
[12:43:03] ======================== xe_wa_gt =========================
[12:43:03] [PASSED] TIGERLAKE B0
[12:43:03] [PASSED] DG1 A0
[12:43:03] [PASSED] DG1 B0
[12:43:03] [PASSED] ALDERLAKE_S A0
[12:43:03] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[12:43:03] [PASSED] ALDERLAKE_S C0
[12:43:03] [PASSED] ALDERLAKE_S D0
[12:43:03] [PASSED] ALDERLAKE_P A0
[12:43:03] [PASSED] ALDERLAKE_P B0
[12:43:03] [PASSED] ALDERLAKE_P C0
[12:43:03] [PASSED] ALDERLAKE_S RPLS D0
[12:43:03] [PASSED] ALDERLAKE_P RPLU E0
[12:43:03] [PASSED] DG2 G10 C0
[12:43:03] [PASSED] DG2 G11 B1
[12:43:03] [PASSED] DG2 G12 A1
[12:43:03] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:43:03] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:43:03] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:43:03] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:43:03] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:43:03] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:43:03] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:43:03] ==================== [PASSED] xe_wa_gt =====================
[12:43:03] ====================== [PASSED] xe_wa ======================
[12:43:03] ============================================================
[12:43:03] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[12:43:03] Elapsed time: 40.891s total, 4.384s configuring, 36.140s building, 0.334s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:43:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:43:05] 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=25
[12:43:34] Starting KUnit Kernel (1/1)...
[12:43:34] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:43:34] ============ drm_test_pick_cmdline (2 subtests) ============
[12:43:34] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:43:34] =============== drm_test_pick_cmdline_named ===============
[12:43:34] [PASSED] NTSC
[12:43:34] [PASSED] NTSC-J
[12:43:34] [PASSED] PAL
[12:43:34] [PASSED] PAL-M
[12:43:34] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:43:34] ============== [PASSED] drm_test_pick_cmdline ==============
[12:43:34] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:43:34] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:43:34] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:43:34] =========== drm_validate_clone_mode (2 subtests) ===========
[12:43:34] ============== drm_test_check_in_clone_mode ===============
[12:43:34] [PASSED] in_clone_mode
[12:43:34] [PASSED] not_in_clone_mode
[12:43:34] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:43:34] =============== drm_test_check_valid_clones ===============
[12:43:34] [PASSED] not_in_clone_mode
[12:43:34] [PASSED] valid_clone
[12:43:34] [PASSED] invalid_clone
[12:43:34] =========== [PASSED] drm_test_check_valid_clones ===========
[12:43:34] ============= [PASSED] drm_validate_clone_mode =============
[12:43:34] ============= drm_validate_modeset (1 subtest) =============
[12:43:34] [PASSED] drm_test_check_connector_changed_modeset
[12:43:34] ============== [PASSED] drm_validate_modeset ===============
[12:43:34] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:43:34] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:43:34] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:43:34] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:43:34] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:43:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:43:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:43:34] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:43:34] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:43:34] ============== drm_bridge_alloc (2 subtests) ===============
[12:43:34] [PASSED] drm_test_drm_bridge_alloc_basic
[12:43:34] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:43:34] ================ [PASSED] drm_bridge_alloc =================
[12:43:34] ================== drm_buddy (8 subtests) ==================
[12:43:34] [PASSED] drm_test_buddy_alloc_limit
[12:43:34] [PASSED] drm_test_buddy_alloc_optimistic
[12:43:34] [PASSED] drm_test_buddy_alloc_pessimistic
[12:43:34] [PASSED] drm_test_buddy_alloc_pathological
[12:43:34] [PASSED] drm_test_buddy_alloc_contiguous
[12:43:34] [PASSED] drm_test_buddy_alloc_clear
[12:43:34] [PASSED] drm_test_buddy_alloc_range_bias
[12:43:34] [PASSED] drm_test_buddy_fragmentation_performance
[12:43:34] ==================== [PASSED] drm_buddy ====================
[12:43:34] ============= drm_cmdline_parser (40 subtests) =============
[12:43:34] [PASSED] drm_test_cmdline_force_d_only
[12:43:34] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:43:34] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:43:34] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:43:34] [PASSED] drm_test_cmdline_force_e_only
[12:43:34] [PASSED] drm_test_cmdline_res
[12:43:34] [PASSED] drm_test_cmdline_res_vesa
[12:43:34] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:43:34] [PASSED] drm_test_cmdline_res_rblank
[12:43:34] [PASSED] drm_test_cmdline_res_bpp
[12:43:34] [PASSED] drm_test_cmdline_res_refresh
[12:43:34] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:43:34] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:43:34] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:43:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:43:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:43:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:43:34] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:43:34] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:43:34] [PASSED] drm_test_cmdline_res_margins_force_on
[12:43:34] [PASSED] drm_test_cmdline_res_vesa_margins
[12:43:34] [PASSED] drm_test_cmdline_name
[12:43:34] [PASSED] drm_test_cmdline_name_bpp
[12:43:34] [PASSED] drm_test_cmdline_name_option
[12:43:34] [PASSED] drm_test_cmdline_name_bpp_option
[12:43:34] [PASSED] drm_test_cmdline_rotate_0
[12:43:34] [PASSED] drm_test_cmdline_rotate_90
[12:43:34] [PASSED] drm_test_cmdline_rotate_180
[12:43:34] [PASSED] drm_test_cmdline_rotate_270
[12:43:34] [PASSED] drm_test_cmdline_hmirror
[12:43:34] [PASSED] drm_test_cmdline_vmirror
[12:43:34] [PASSED] drm_test_cmdline_margin_options
[12:43:34] [PASSED] drm_test_cmdline_multiple_options
[12:43:34] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:43:34] [PASSED] drm_test_cmdline_extra_and_option
[12:43:34] [PASSED] drm_test_cmdline_freestanding_options
[12:43:34] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:43:34] [PASSED] drm_test_cmdline_panel_orientation
[12:43:34] ================ drm_test_cmdline_invalid =================
[12:43:34] [PASSED] margin_only
[12:43:34] [PASSED] interlace_only
[12:43:34] [PASSED] res_missing_x
[12:43:34] [PASSED] res_missing_y
[12:43:34] [PASSED] res_bad_y
[12:43:34] [PASSED] res_missing_y_bpp
[12:43:34] [PASSED] res_bad_bpp
[12:43:34] [PASSED] res_bad_refresh
[12:43:34] [PASSED] res_bpp_refresh_force_on_off
[12:43:34] [PASSED] res_invalid_mode
[12:43:34] [PASSED] res_bpp_wrong_place_mode
[12:43:34] [PASSED] name_bpp_refresh
[12:43:34] [PASSED] name_refresh
[12:43:34] [PASSED] name_refresh_wrong_mode
[12:43:34] [PASSED] name_refresh_invalid_mode
[12:43:34] [PASSED] rotate_multiple
[12:43:34] [PASSED] rotate_invalid_val
[12:43:34] [PASSED] rotate_truncated
[12:43:34] [PASSED] invalid_option
[12:43:34] [PASSED] invalid_tv_option
[12:43:34] [PASSED] truncated_tv_option
[12:43:34] ============ [PASSED] drm_test_cmdline_invalid =============
[12:43:34] =============== drm_test_cmdline_tv_options ===============
[12:43:34] [PASSED] NTSC
[12:43:34] [PASSED] NTSC_443
[12:43:34] [PASSED] NTSC_J
[12:43:34] [PASSED] PAL
[12:43:34] [PASSED] PAL_M
[12:43:34] [PASSED] PAL_N
[12:43:34] [PASSED] SECAM
[12:43:34] [PASSED] MONO_525
[12:43:34] [PASSED] MONO_625
[12:43:34] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:43:34] =============== [PASSED] drm_cmdline_parser ================
[12:43:34] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:43:34] [PASSED] drm_test_connector_hdmi_init_valid
[12:43:34] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:43:34] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:43:34] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:43:34] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:43:34] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:43:34] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:43:34] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:43:34] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:43:34] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:43:34] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:43:34] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:43:34] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:43:34] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:43:34] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:43:34] [PASSED] drm_test_connector_hdmi_init_null_product
[12:43:34] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:43:34] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:43:34] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:43:34] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:43:34] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:43:34] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:43:34] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:43:34] ========= drm_test_connector_hdmi_init_type_valid =========
[12:43:34] [PASSED] HDMI-A
[12:43:34] [PASSED] HDMI-B
[12:43:34] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:43:34] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:43:34] [PASSED] Unknown
[12:43:34] [PASSED] VGA
[12:43:34] [PASSED] DVI-I
[12:43:34] [PASSED] DVI-D
[12:43:34] [PASSED] DVI-A
[12:43:34] [PASSED] Composite
[12:43:34] [PASSED] SVIDEO
[12:43:34] [PASSED] LVDS
[12:43:34] [PASSED] Component
[12:43:34] [PASSED] DIN
[12:43:34] [PASSED] DP
[12:43:34] [PASSED] TV
[12:43:34] [PASSED] eDP
[12:43:34] [PASSED] Virtual
[12:43:34] [PASSED] DSI
[12:43:34] [PASSED] DPI
[12:43:34] [PASSED] Writeback
[12:43:34] [PASSED] SPI
[12:43:34] [PASSED] USB
[12:43:34] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:43:34] ============ [PASSED] drmm_connector_hdmi_init =============
[12:43:34] ============= drmm_connector_init (3 subtests) =============
[12:43:34] [PASSED] drm_test_drmm_connector_init
[12:43:34] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:43:34] ========= drm_test_drmm_connector_init_type_valid =========
[12:43:34] [PASSED] Unknown
[12:43:34] [PASSED] VGA
[12:43:34] [PASSED] DVI-I
[12:43:34] [PASSED] DVI-D
[12:43:34] [PASSED] DVI-A
[12:43:34] [PASSED] Composite
[12:43:34] [PASSED] SVIDEO
[12:43:34] [PASSED] LVDS
[12:43:34] [PASSED] Component
[12:43:34] [PASSED] DIN
[12:43:34] [PASSED] DP
[12:43:34] [PASSED] HDMI-A
[12:43:34] [PASSED] HDMI-B
[12:43:34] [PASSED] TV
[12:43:34] [PASSED] eDP
[12:43:34] [PASSED] Virtual
[12:43:34] [PASSED] DSI
[12:43:34] [PASSED] DPI
[12:43:34] [PASSED] Writeback
[12:43:34] [PASSED] SPI
[12:43:34] [PASSED] USB
[12:43:34] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:43:34] =============== [PASSED] drmm_connector_init ===============
[12:43:34] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_init
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:43:34] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:43:34] [PASSED] Unknown
[12:43:34] [PASSED] VGA
[12:43:34] [PASSED] DVI-I
[12:43:34] [PASSED] DVI-D
[12:43:34] [PASSED] DVI-A
[12:43:34] [PASSED] Composite
[12:43:34] [PASSED] SVIDEO
[12:43:34] [PASSED] LVDS
[12:43:34] [PASSED] Component
[12:43:34] [PASSED] DIN
[12:43:34] [PASSED] DP
[12:43:34] [PASSED] HDMI-A
[12:43:34] [PASSED] HDMI-B
[12:43:34] [PASSED] TV
[12:43:34] [PASSED] eDP
[12:43:34] [PASSED] Virtual
[12:43:34] [PASSED] DSI
[12:43:34] [PASSED] DPI
[12:43:34] [PASSED] Writeback
[12:43:34] [PASSED] SPI
[12:43:34] [PASSED] USB
[12:43:34] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:43:34] ======== drm_test_drm_connector_dynamic_init_name =========
[12:43:34] [PASSED] Unknown
[12:43:34] [PASSED] VGA
[12:43:34] [PASSED] DVI-I
[12:43:34] [PASSED] DVI-D
[12:43:34] [PASSED] DVI-A
[12:43:34] [PASSED] Composite
[12:43:34] [PASSED] SVIDEO
[12:43:34] [PASSED] LVDS
[12:43:34] [PASSED] Component
[12:43:34] [PASSED] DIN
[12:43:34] [PASSED] DP
[12:43:34] [PASSED] HDMI-A
[12:43:34] [PASSED] HDMI-B
[12:43:34] [PASSED] TV
[12:43:34] [PASSED] eDP
[12:43:34] [PASSED] Virtual
[12:43:34] [PASSED] DSI
[12:43:34] [PASSED] DPI
[12:43:34] [PASSED] Writeback
[12:43:34] [PASSED] SPI
[12:43:34] [PASSED] USB
[12:43:34] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:43:34] =========== [PASSED] drm_connector_dynamic_init ============
[12:43:34] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:43:34] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:43:34] ======= drm_connector_dynamic_register (7 subtests) ========
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:43:34] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:43:34] ========= [PASSED] drm_connector_dynamic_register ==========
[12:43:34] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:43:34] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:43:34] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:43:34] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:43:34] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:43:34] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:43:34] [PASSED] NTSC
[12:43:34] [PASSED] NTSC-443
[12:43:34] [PASSED] NTSC-J
[12:43:34] [PASSED] PAL
[12:43:34] [PASSED] PAL-M
[12:43:34] [PASSED] PAL-N
[12:43:34] [PASSED] SECAM
[12:43:34] [PASSED] Mono
[12:43:34] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:43:34] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:43:34] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:43:34] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:43:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:43:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:43:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:43:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:43:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:43:34] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:43:34] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:43:34] [PASSED] VIC 96
[12:43:34] [PASSED] VIC 97
[12:43:34] [PASSED] VIC 101
[12:43:34] [PASSED] VIC 102
[12:43:34] [PASSED] VIC 106
[12:43:34] [PASSED] VIC 107
[12:43:34] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:43:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:43:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:43:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:43:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:43:34] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:43:34] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:43:34] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:43:34] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:43:34] [PASSED] Automatic
[12:43:34] [PASSED] Full
[12:43:34] [PASSED] Limited 16:235
[12:43:34] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:43:34] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:43:34] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:43:34] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:43:34] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:43:34] [PASSED] RGB
[12:43:34] [PASSED] YUV 4:2:0
[12:43:34] [PASSED] YUV 4:2:2
[12:43:34] [PASSED] YUV 4:4:4
[12:43:34] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:43:34] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:43:34] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:43:34] ============= drm_damage_helper (21 subtests) ==============
[12:43:34] [PASSED] drm_test_damage_iter_no_damage
[12:43:34] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:43:34] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:43:34] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:43:34] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:43:34] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:43:34] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:43:34] [PASSED] drm_test_damage_iter_simple_damage
[12:43:34] [PASSED] drm_test_damage_iter_single_damage
[12:43:34] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:43:34] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:43:34] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:43:34] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:43:34] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:43:34] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:43:34] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:43:34] [PASSED] drm_test_damage_iter_damage
[12:43:34] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:43:34] [PASSED] drm_test_damage_iter_damage_one_outside
[12:43:34] [PASSED] drm_test_damage_iter_damage_src_moved
[12:43:34] [PASSED] drm_test_damage_iter_damage_not_visible
[12:43:34] ================ [PASSED] drm_damage_helper ================
[12:43:34] ============== drm_dp_mst_helper (3 subtests) ==============
[12:43:34] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:43:34] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:43:34] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:43:34] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:43:34] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:43:34] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:43:34] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:43:34] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:43:34] [PASSED] Link rate 2000000 lane count 4
[12:43:34] [PASSED] Link rate 2000000 lane count 2
[12:43:34] [PASSED] Link rate 2000000 lane count 1
[12:43:34] [PASSED] Link rate 1350000 lane count 4
[12:43:34] [PASSED] Link rate 1350000 lane count 2
[12:43:34] [PASSED] Link rate 1350000 lane count 1
[12:43:34] [PASSED] Link rate 1000000 lane count 4
[12:43:34] [PASSED] Link rate 1000000 lane count 2
[12:43:34] [PASSED] Link rate 1000000 lane count 1
[12:43:34] [PASSED] Link rate 810000 lane count 4
[12:43:34] [PASSED] Link rate 810000 lane count 2
[12:43:34] [PASSED] Link rate 810000 lane count 1
[12:43:34] [PASSED] Link rate 540000 lane count 4
[12:43:34] [PASSED] Link rate 540000 lane count 2
[12:43:34] [PASSED] Link rate 540000 lane count 1
[12:43:34] [PASSED] Link rate 270000 lane count 4
[12:43:34] [PASSED] Link rate 270000 lane count 2
[12:43:34] [PASSED] Link rate 270000 lane count 1
[12:43:34] [PASSED] Link rate 162000 lane count 4
[12:43:34] [PASSED] Link rate 162000 lane count 2
[12:43:34] [PASSED] Link rate 162000 lane count 1
[12:43:34] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:43:34] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:43:34] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:43:34] [PASSED] DP_POWER_UP_PHY with port number
[12:43:34] [PASSED] DP_POWER_DOWN_PHY with port number
[12:43:34] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:43:34] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:43:34] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:43:34] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:43:34] [PASSED] DP_QUERY_PAYLOAD with port number
[12:43:34] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:43:34] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:43:34] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:43:34] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:43:34] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:43:34] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:43:34] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:43:34] [PASSED] DP_REMOTE_I2C_READ with port number
[12:43:34] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:43:34] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:43:34] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:43:34] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:43:34] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:43:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:43:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:43:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:43:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:43:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:43:34] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:43:34] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:43:34] ================ [PASSED] drm_dp_mst_helper ================
[12:43:34] ================== drm_exec (7 subtests) ===================
[12:43:34] [PASSED] sanitycheck
[12:43:34] [PASSED] test_lock
[12:43:34] [PASSED] test_lock_unlock
[12:43:34] [PASSED] test_duplicates
[12:43:34] [PASSED] test_prepare
[12:43:34] [PASSED] test_prepare_array
[12:43:34] [PASSED] test_multiple_loops
[12:43:34] ==================== [PASSED] drm_exec =====================
[12:43:34] =========== drm_format_helper_test (17 subtests) ===========
[12:43:34] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:43:34] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:43:34] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:43:34] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:43:34] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:43:34] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:43:34] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:43:34] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:43:34] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:43:34] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:43:34] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:43:34] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:43:34] ==================== drm_test_fb_swab =====================
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ================ [PASSED] drm_test_fb_swab =================
[12:43:34] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:43:34] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:43:34] [PASSED] single_pixel_source_buffer
[12:43:34] [PASSED] single_pixel_clip_rectangle
[12:43:34] [PASSED] well_known_colors
[12:43:34] [PASSED] destination_pitch
[12:43:34] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:43:34] ================= drm_test_fb_clip_offset =================
[12:43:34] [PASSED] pass through
[12:43:34] [PASSED] horizontal offset
[12:43:34] [PASSED] vertical offset
[12:43:34] [PASSED] horizontal and vertical offset
[12:43:34] [PASSED] horizontal offset (custom pitch)
[12:43:34] [PASSED] vertical offset (custom pitch)
[12:43:34] [PASSED] horizontal and vertical offset (custom pitch)
[12:43:34] ============= [PASSED] drm_test_fb_clip_offset =============
[12:43:34] =================== drm_test_fb_memcpy ====================
[12:43:34] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:43:34] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:43:34] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:43:34] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:43:34] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:43:34] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:43:34] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:43:34] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:43:34] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:43:34] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:43:34] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:43:34] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:43:34] =============== [PASSED] drm_test_fb_memcpy ================
[12:43:34] ============= [PASSED] drm_format_helper_test ==============
[12:43:34] ================= drm_format (18 subtests) =================
[12:43:34] [PASSED] drm_test_format_block_width_invalid
[12:43:34] [PASSED] drm_test_format_block_width_one_plane
[12:43:34] [PASSED] drm_test_format_block_width_two_plane
[12:43:34] [PASSED] drm_test_format_block_width_three_plane
[12:43:34] [PASSED] drm_test_format_block_width_tiled
[12:43:34] [PASSED] drm_test_format_block_height_invalid
[12:43:34] [PASSED] drm_test_format_block_height_one_plane
[12:43:34] [PASSED] drm_test_format_block_height_two_plane
[12:43:34] [PASSED] drm_test_format_block_height_three_plane
[12:43:34] [PASSED] drm_test_format_block_height_tiled
[12:43:34] [PASSED] drm_test_format_min_pitch_invalid
[12:43:34] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:43:34] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:43:34] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:43:34] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:43:34] [PASSED] drm_test_format_min_pitch_two_plane
[12:43:34] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:43:34] [PASSED] drm_test_format_min_pitch_tiled
[12:43:34] =================== [PASSED] drm_format ====================
[12:43:34] ============== drm_framebuffer (10 subtests) ===============
[12:43:34] ========== drm_test_framebuffer_check_src_coords ==========
[12:43:34] [PASSED] Success: source fits into fb
[12:43:34] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:43:34] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:43:34] [PASSED] Fail: overflowing fb with source width
[12:43:34] [PASSED] Fail: overflowing fb with source height
[12:43:34] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:43:34] [PASSED] drm_test_framebuffer_cleanup
[12:43:34] =============== drm_test_framebuffer_create ===============
[12:43:34] [PASSED] ABGR8888 normal sizes
[12:43:34] [PASSED] ABGR8888 max sizes
[12:43:34] [PASSED] ABGR8888 pitch greater than min required
[12:43:34] [PASSED] ABGR8888 pitch less than min required
[12:43:34] [PASSED] ABGR8888 Invalid width
[12:43:34] [PASSED] ABGR8888 Invalid buffer handle
[12:43:34] [PASSED] No pixel format
[12:43:34] [PASSED] ABGR8888 Width 0
[12:43:34] [PASSED] ABGR8888 Height 0
[12:43:34] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:43:34] [PASSED] ABGR8888 Large buffer offset
[12:43:34] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:43:34] [PASSED] ABGR8888 Invalid flag
[12:43:34] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:43:34] [PASSED] ABGR8888 Valid buffer modifier
[12:43:34] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:43:34] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:43:34] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:43:34] [PASSED] NV12 Normal sizes
[12:43:34] [PASSED] NV12 Max sizes
[12:43:34] [PASSED] NV12 Invalid pitch
[12:43:34] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:43:34] [PASSED] NV12 different modifier per-plane
[12:43:34] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:43:34] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:43:34] [PASSED] NV12 Modifier for inexistent plane
[12:43:34] [PASSED] NV12 Handle for inexistent plane
[12:43:34] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:43:34] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:43:34] [PASSED] YVU420 Normal sizes
[12:43:34] [PASSED] YVU420 Max sizes
[12:43:34] [PASSED] YVU420 Invalid pitch
[12:43:34] [PASSED] YVU420 Different pitches
[12:43:34] [PASSED] YVU420 Different buffer offsets/pitches
[12:43:34] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:43:34] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:43:34] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:43:34] [PASSED] YVU420 Valid modifier
[12:43:34] [PASSED] YVU420 Different modifiers per plane
[12:43:34] [PASSED] YVU420 Modifier for inexistent plane
[12:43:34] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:43:34] [PASSED] X0L2 Normal sizes
[12:43:34] [PASSED] X0L2 Max sizes
[12:43:34] [PASSED] X0L2 Invalid pitch
[12:43:34] [PASSED] X0L2 Pitch greater than minimum required
[12:43:34] [PASSED] X0L2 Handle for inexistent plane
[12:43:34] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:43:34] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:43:34] [PASSED] X0L2 Valid modifier
[12:43:34] [PASSED] X0L2 Modifier for inexistent plane
[12:43:34] =========== [PASSED] drm_test_framebuffer_create ===========
[12:43:34] [PASSED] drm_test_framebuffer_free
[12:43:34] [PASSED] drm_test_framebuffer_init
[12:43:34] [PASSED] drm_test_framebuffer_init_bad_format
[12:43:34] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:43:34] [PASSED] drm_test_framebuffer_lookup
[12:43:34] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:43:34] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:43:34] ================= [PASSED] drm_framebuffer =================
[12:43:34] ================ drm_gem_shmem (8 subtests) ================
[12:43:34] [PASSED] drm_gem_shmem_test_obj_create
[12:43:34] [PASSED] drm_gem_shmem_test_obj_create_private
[12:43:34] [PASSED] drm_gem_shmem_test_pin_pages
[12:43:34] [PASSED] drm_gem_shmem_test_vmap
[12:43:34] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:43:34] [PASSED] drm_gem_shmem_test_get_sg_table
[12:43:34] [PASSED] drm_gem_shmem_test_madvise
[12:43:34] [PASSED] drm_gem_shmem_test_purge
[12:43:34] ================== [PASSED] drm_gem_shmem ==================
[12:43:34] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:43:34] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:43:34] [PASSED] Automatic
[12:43:34] [PASSED] Full
[12:43:34] [PASSED] Limited 16:235
[12:43:34] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:43:34] [PASSED] drm_test_check_disable_connector
[12:43:34] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:43:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:43:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:43:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:43:34] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:43:34] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:43:34] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:43:34] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:43:34] [PASSED] drm_test_check_output_bpc_dvi
[12:43:34] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:43:34] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:43:34] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:43:34] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:43:34] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:43:34] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:43:34] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:43:34] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:43:34] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:43:34] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:43:34] [PASSED] drm_test_check_broadcast_rgb_value
[12:43:34] [PASSED] drm_test_check_bpc_8_value
[12:43:34] [PASSED] drm_test_check_bpc_10_value
[12:43:34] [PASSED] drm_test_check_bpc_12_value
[12:43:34] [PASSED] drm_test_check_format_value
[12:43:34] [PASSED] drm_test_check_tmds_char_value
[12:43:34] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:43:34] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:43:34] [PASSED] drm_test_check_mode_valid
[12:43:34] [PASSED] drm_test_check_mode_valid_reject
[12:43:34] [PASSED] drm_test_check_mode_valid_reject_rate
[12:43:34] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:43:34] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:43:34] ================= drm_managed (2 subtests) =================
[12:43:34] [PASSED] drm_test_managed_release_action
[12:43:34] [PASSED] drm_test_managed_run_action
[12:43:34] =================== [PASSED] drm_managed ===================
[12:43:34] =================== drm_mm (6 subtests) ====================
[12:43:34] [PASSED] drm_test_mm_init
[12:43:34] [PASSED] drm_test_mm_debug
[12:43:34] [PASSED] drm_test_mm_align32
[12:43:34] [PASSED] drm_test_mm_align64
[12:43:34] [PASSED] drm_test_mm_lowest
[12:43:34] [PASSED] drm_test_mm_highest
[12:43:34] ===================== [PASSED] drm_mm ======================
[12:43:34] ============= drm_modes_analog_tv (5 subtests) =============
[12:43:34] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:43:34] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:43:34] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:43:34] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:43:34] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:43:34] =============== [PASSED] drm_modes_analog_tv ===============
[12:43:34] ============== drm_plane_helper (2 subtests) ===============
[12:43:34] =============== drm_test_check_plane_state ================
[12:43:34] [PASSED] clipping_simple
[12:43:34] [PASSED] clipping_rotate_reflect
[12:43:34] [PASSED] positioning_simple
[12:43:34] [PASSED] upscaling
[12:43:34] [PASSED] downscaling
[12:43:34] [PASSED] rounding1
[12:43:34] [PASSED] rounding2
[12:43:34] [PASSED] rounding3
[12:43:34] [PASSED] rounding4
[12:43:34] =========== [PASSED] drm_test_check_plane_state ============
[12:43:34] =========== drm_test_check_invalid_plane_state ============
[12:43:34] [PASSED] positioning_invalid
[12:43:34] [PASSED] upscaling_invalid
[12:43:34] [PASSED] downscaling_invalid
[12:43:34] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:43:34] ================ [PASSED] drm_plane_helper =================
[12:43:34] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:43:34] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:43:34] [PASSED] None
[12:43:34] [PASSED] PAL
[12:43:34] [PASSED] NTSC
[12:43:34] [PASSED] Both, NTSC Default
[12:43:34] [PASSED] Both, PAL Default
[12:43:34] [PASSED] Both, NTSC Default, with PAL on command-line
[12:43:34] [PASSED] Both, PAL Default, with NTSC on command-line
[12:43:34] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:43:34] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:43:34] ================== drm_rect (9 subtests) ===================
[12:43:34] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:43:34] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:43:34] [PASSED] drm_test_rect_clip_scaled_clipped
[12:43:34] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:43:34] ================= drm_test_rect_intersect =================
[12:43:34] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:43:34] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:43:34] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:43:34] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:43:34] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:43:34] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:43:34] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:43:34] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:43:34] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:43:34] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:43:34] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:43:34] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:43:34] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:43:34] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:43:34] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:43:34] ============= [PASSED] drm_test_rect_intersect =============
[12:43:34] ================ drm_test_rect_calc_hscale ================
[12:43:34] [PASSED] normal use
[12:43:34] [PASSED] out of max range
[12:43:34] [PASSED] out of min range
[12:43:34] [PASSED] zero dst
[12:43:34] [PASSED] negative src
[12:43:34] [PASSED] negative dst
[12:43:34] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:43:34] ================ drm_test_rect_calc_vscale ================
[12:43:34] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[12:43:34] [PASSED] out of max range
[12:43:34] [PASSED] out of min range
[12:43:34] [PASSED] zero dst
[12:43:34] [PASSED] negative src
[12:43:34] [PASSED] negative dst
[12:43:34] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:43:34] ================== drm_test_rect_rotate ===================
[12:43:34] [PASSED] reflect-x
[12:43:34] [PASSED] reflect-y
[12:43:34] [PASSED] rotate-0
[12:43:34] [PASSED] rotate-90
[12:43:34] [PASSED] rotate-180
[12:43:34] [PASSED] rotate-270
[12:43:34] ============== [PASSED] drm_test_rect_rotate ===============
[12:43:34] ================ drm_test_rect_rotate_inv =================
[12:43:34] [PASSED] reflect-x
[12:43:34] [PASSED] reflect-y
[12:43:34] [PASSED] rotate-0
[12:43:34] [PASSED] rotate-90
[12:43:34] [PASSED] rotate-180
[12:43:34] [PASSED] rotate-270
[12:43:34] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:43:34] ==================== [PASSED] drm_rect =====================
[12:43:34] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:43:34] ============ drm_test_sysfb_build_fourcc_list =============
[12:43:34] [PASSED] no native formats
[12:43:34] [PASSED] XRGB8888 as native format
[12:43:34] [PASSED] remove duplicates
[12:43:34] [PASSED] convert alpha formats
[12:43:34] [PASSED] random formats
[12:43:34] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:43:34] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:43:34] ============================================================
[12:43:34] Testing complete. Ran 622 tests: passed: 622
[12:43:34] Elapsed time: 30.918s total, 1.740s configuring, 28.661s building, 0.476s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:43:34] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:43:36] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[12:43:45] Starting KUnit Kernel (1/1)...
[12:43:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:43:45] ================= ttm_device (5 subtests) ==================
[12:43:45] [PASSED] ttm_device_init_basic
[12:43:45] [PASSED] ttm_device_init_multiple
[12:43:45] [PASSED] ttm_device_fini_basic
[12:43:45] [PASSED] ttm_device_init_no_vma_man
[12:43:45] ================== ttm_device_init_pools ==================
[12:43:45] [PASSED] No DMA allocations, no DMA32 required
[12:43:45] [PASSED] DMA allocations, DMA32 required
[12:43:45] [PASSED] No DMA allocations, DMA32 required
[12:43:45] [PASSED] DMA allocations, no DMA32 required
[12:43:45] ============== [PASSED] ttm_device_init_pools ==============
[12:43:45] =================== [PASSED] ttm_device ====================
[12:43:45] ================== ttm_pool (8 subtests) ===================
[12:43:45] ================== ttm_pool_alloc_basic ===================
[12:43:45] [PASSED] One page
[12:43:45] [PASSED] More than one page
[12:43:45] [PASSED] Above the allocation limit
[12:43:45] [PASSED] One page, with coherent DMA mappings enabled
[12:43:45] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:43:45] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:43:45] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:43:45] [PASSED] One page
[12:43:45] [PASSED] More than one page
[12:43:45] [PASSED] Above the allocation limit
[12:43:45] [PASSED] One page, with coherent DMA mappings enabled
[12:43:45] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:43:45] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:43:45] [PASSED] ttm_pool_alloc_order_caching_match
[12:43:45] [PASSED] ttm_pool_alloc_caching_mismatch
[12:43:45] [PASSED] ttm_pool_alloc_order_mismatch
[12:43:45] [PASSED] ttm_pool_free_dma_alloc
[12:43:45] [PASSED] ttm_pool_free_no_dma_alloc
[12:43:45] [PASSED] ttm_pool_fini_basic
[12:43:45] ==================== [PASSED] ttm_pool =====================
[12:43:45] ================ ttm_resource (8 subtests) =================
[12:43:45] ================= ttm_resource_init_basic =================
[12:43:45] [PASSED] Init resource in TTM_PL_SYSTEM
[12:43:45] [PASSED] Init resource in TTM_PL_VRAM
[12:43:45] [PASSED] Init resource in a private placement
[12:43:45] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:43:45] ============= [PASSED] ttm_resource_init_basic =============
[12:43:45] [PASSED] ttm_resource_init_pinned
[12:43:45] [PASSED] ttm_resource_fini_basic
[12:43:45] [PASSED] ttm_resource_manager_init_basic
[12:43:45] [PASSED] ttm_resource_manager_usage_basic
[12:43:45] [PASSED] ttm_resource_manager_set_used_basic
[12:43:45] [PASSED] ttm_sys_man_alloc_basic
[12:43:45] [PASSED] ttm_sys_man_free_basic
[12:43:45] ================== [PASSED] ttm_resource ===================
[12:43:45] =================== ttm_tt (15 subtests) ===================
[12:43:45] ==================== ttm_tt_init_basic ====================
[12:43:45] [PASSED] Page-aligned size
[12:43:45] [PASSED] Extra pages requested
[12:43:45] ================ [PASSED] ttm_tt_init_basic ================
[12:43:45] [PASSED] ttm_tt_init_misaligned
[12:43:45] [PASSED] ttm_tt_fini_basic
[12:43:45] [PASSED] ttm_tt_fini_sg
[12:43:45] [PASSED] ttm_tt_fini_shmem
[12:43:45] [PASSED] ttm_tt_create_basic
[12:43:45] [PASSED] ttm_tt_create_invalid_bo_type
[12:43:45] [PASSED] ttm_tt_create_ttm_exists
[12:43:45] [PASSED] ttm_tt_create_failed
[12:43:45] [PASSED] ttm_tt_destroy_basic
[12:43:45] [PASSED] ttm_tt_populate_null_ttm
[12:43:45] [PASSED] ttm_tt_populate_populated_ttm
[12:43:45] [PASSED] ttm_tt_unpopulate_basic
[12:43:45] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:43:45] [PASSED] ttm_tt_swapin_basic
[12:43:45] ===================== [PASSED] ttm_tt ======================
[12:43:45] =================== ttm_bo (14 subtests) ===================
[12:43:45] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:43:45] [PASSED] Cannot be interrupted and sleeps
[12:43:45] [PASSED] Cannot be interrupted, locks straight away
[12:43:45] [PASSED] Can be interrupted, sleeps
[12:43:45] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:43:45] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:43:45] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:43:45] [PASSED] ttm_bo_reserve_double_resv
[12:43:45] [PASSED] ttm_bo_reserve_interrupted
[12:43:45] [PASSED] ttm_bo_reserve_deadlock
[12:43:45] [PASSED] ttm_bo_unreserve_basic
[12:43:45] [PASSED] ttm_bo_unreserve_pinned
[12:43:45] [PASSED] ttm_bo_unreserve_bulk
[12:43:45] [PASSED] ttm_bo_fini_basic
[12:43:45] [PASSED] ttm_bo_fini_shared_resv
[12:43:45] [PASSED] ttm_bo_pin_basic
[12:43:45] [PASSED] ttm_bo_pin_unpin_resource
[12:43:45] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:43:45] ===================== [PASSED] ttm_bo ======================
[12:43:45] ============== ttm_bo_validate (21 subtests) ===============
[12:43:45] ============== ttm_bo_init_reserved_sys_man ===============
[12:43:45] [PASSED] Buffer object for userspace
[12:43:45] [PASSED] Kernel buffer object
[12:43:45] [PASSED] Shared buffer object
[12:43:45] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:43:45] ============== ttm_bo_init_reserved_mock_man ==============
[12:43:45] [PASSED] Buffer object for userspace
[12:43:45] [PASSED] Kernel buffer object
[12:43:45] [PASSED] Shared buffer object
[12:43:45] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:43:45] [PASSED] ttm_bo_init_reserved_resv
[12:43:45] ================== ttm_bo_validate_basic ==================
[12:43:45] [PASSED] Buffer object for userspace
[12:43:45] [PASSED] Kernel buffer object
[12:43:45] [PASSED] Shared buffer object
[12:43:45] ============== [PASSED] ttm_bo_validate_basic ==============
[12:43:45] [PASSED] ttm_bo_validate_invalid_placement
[12:43:45] ============= ttm_bo_validate_same_placement ==============
[12:43:45] [PASSED] System manager
[12:43:45] [PASSED] VRAM manager
[12:43:45] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:43:45] [PASSED] ttm_bo_validate_failed_alloc
[12:43:45] [PASSED] ttm_bo_validate_pinned
[12:43:45] [PASSED] ttm_bo_validate_busy_placement
[12:43:45] ================ ttm_bo_validate_multihop =================
[12:43:45] [PASSED] Buffer object for userspace
[12:43:45] [PASSED] Kernel buffer object
[12:43:45] [PASSED] Shared buffer object
[12:43:45] ============ [PASSED] ttm_bo_validate_multihop =============
[12:43:45] ========== ttm_bo_validate_no_placement_signaled ==========
[12:43:45] [PASSED] Buffer object in system domain, no page vector
[12:43:45] [PASSED] Buffer object in system domain with an existing page vector
[12:43:45] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:43:45] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:43:45] [PASSED] Buffer object for userspace
[12:43:45] [PASSED] Kernel buffer object
[12:43:45] [PASSED] Shared buffer object
[12:43:45] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:43:45] [PASSED] ttm_bo_validate_move_fence_signaled
[12:43:45] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:43:45] [PASSED] Waits for GPU
[12:43:45] [PASSED] Tries to lock straight away
[12:43:45] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:43:45] [PASSED] ttm_bo_validate_happy_evict
[12:43:45] [PASSED] ttm_bo_validate_all_pinned_evict
[12:43:45] [PASSED] ttm_bo_validate_allowed_only_evict
[12:43:45] [PASSED] ttm_bo_validate_deleted_evict
[12:43:45] [PASSED] ttm_bo_validate_busy_domain_evict
[12:43:45] [PASSED] ttm_bo_validate_evict_gutting
[12:43:45] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:43:45] ================= [PASSED] ttm_bo_validate =================
[12:43:45] ============================================================
[12:43:45] Testing complete. Ran 101 tests: passed: 101
[12:43:45] Elapsed time: 10.949s total, 1.692s configuring, 8.990s building, 0.224s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ CI.checksparse: warning for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (4 preceding siblings ...)
2025-10-10 12:43 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-10 13:01 ` Patchwork
2025-10-10 13:25 ` ✓ Xe.CI.BAT: success " Patchwork
` (6 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-10 13:01 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
URL : https://patchwork.freedesktop.org/series/155739/
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 a83c7590b57a56cfc1f4d9e1c07948643c9ed165
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
+drivers/gpu/drm/i915/gt/intel_reset.c:1569:12: warning: context imbalance in '_intel_gt_reset_lock' - different lock contexts for basic block
+drivers/gpu/drm/i915/gt/intel_sseu.c:598:17: error: too long token expansion
+drivers/gpu/drm/i915/i915_active.c:1062:16: warning: context imbalance in '__i915_active_fence_set' - different lock contexts for basic block
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: expected struct list_head const *list
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: got struct list_head [noderef] __rcu *pos
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: warning: incorrect type in argument 1 (different address spaces)
+drivers/gpu/drm/i915/i915_gpu_error.c:692:3: warning: symbol 'guc_hw_reg_state' was not declared. Should it be static?
+drivers/gpu/drm/i915/i915_irq.c:465:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:465:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:473:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:473:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:516:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:516:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:524:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:524:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:573:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:573:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:576:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:576:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:580:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:580:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/intel_wakeref.c:146:19: warning: context imbalance in 'wakeref_auto_timeout' - unexpected unlock
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread* ✓ Xe.CI.BAT: success for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (5 preceding siblings ...)
2025-10-10 13:01 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-10-10 13:25 ` Patchwork
2025-10-10 18:23 ` ✓ Xe.CI.Full: " Patchwork
` (5 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-10 13:25 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 886 bytes --]
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
URL : https://patchwork.freedesktop.org/series/155739/
State : success
== Summary ==
CI Bug Log - changes from xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165_BAT -> xe-pw-155739v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165 -> xe-pw-155739v1
IGT_8581: 8581
xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165: a83c7590b57a56cfc1f4d9e1c07948643c9ed165
xe-pw-155739v1: 155739v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/index.html
[-- Attachment #2: Type: text/html, Size: 1434 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread* ✓ Xe.CI.Full: success for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (6 preceding siblings ...)
2025-10-10 13:25 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-10-10 18:23 ` Patchwork
2025-10-13 15:11 ` ✗ CI.checkpatch: warning for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2) Patchwork
` (4 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-10 18:23 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 38824 bytes --]
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks
URL : https://patchwork.freedesktop.org/series/155739/
State : success
== Summary ==
CI Bug Log - changes from xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165_FULL -> xe-pw-155739v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-155739v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][1] ([Intel XE#1124]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][2] -> [SKIP][3] ([Intel XE#2314] / [Intel XE#2894])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#367])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#787]) +20 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][8] -> [INCOMPLETE][9] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][10] -> [INCOMPLETE][11] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: [PASS][12] -> [INCOMPLETE][13] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#2705] / [Intel XE#4212])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#455]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#3321])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2316]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-adlp: [PASS][22] -> [DMESG-WARN][23] ([Intel XE#4543]) +8 other tests dmesg-warn
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-4/igt@kms_flip@basic-flip-vs-wf_vblank.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-8/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#5337] / [Intel XE#5416]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-dg2-set2: [PASS][30] -> [FAIL][31] ([Intel XE#5408] / [Intel XE#5416]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-464/igt@kms_flip@plain-flip-ts-check-interruptible.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-432/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y:
- shard-adlp: [PASS][32] -> [DMESG-FAIL][33] ([Intel XE#4543])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#651])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#653]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_plane_cursor@primary:
- shard-adlp: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-3/igt@kms_plane_cursor@primary.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-1/igt@kms_plane_cursor@primary.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1406] / [Intel XE#1489])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@kms_psr@psr2-sprite-blt.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#4837]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#6321])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@many-large-mmap-free-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#4915]) +13 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@xe_exec_system_allocator@many-large-mmap-free-race-nomemset.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#378])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@xe_module_load@force-load.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#3573])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][46] -> [FAIL][47] ([Intel XE#5166]) +1 other test fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-464/igt@xe_pmu@gt-frequency.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-432/igt@xe_pmu@gt-frequency.html
#### Possible fixes ####
* igt@kms_addfb_basic@bad-pitch-65536:
- shard-dg2-set2: [SKIP][48] ([i915#6077]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_addfb_basic@bad-pitch-65536.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_addfb_basic@bad-pitch-65536.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
- shard-adlp: [DMESG-WARN][50] ([Intel XE#4543]) -> [PASS][51] +5 other tests pass
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [SKIP][52] ([Intel XE#829]) -> [PASS][53] +6 other tests pass
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_color@ctm-signed:
- shard-adlp: [DMESG-WARN][54] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][55] +4 other tests pass
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-1/igt@kms_color@ctm-signed.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-4/igt@kms_color@ctm-signed.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][56] ([Intel XE#2291]) -> [PASS][57] +3 other tests pass
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][58] ([Intel XE#5354]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [SKIP][60] ([Intel XE#4354]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][62] ([Intel XE#2316]) -> [PASS][63] +5 other tests pass
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [INCOMPLETE][64] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][65] +1 other test pass
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][66] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][68] ([Intel XE#301]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3:
- shard-bmg: [FAIL][70] ([Intel XE#5416]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y:
- shard-adlp: [DMESG-FAIL][72] ([Intel XE#4543]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x:
- shard-adlp: [FAIL][74] ([Intel XE#1874]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][76] ([Intel XE#783]) -> [PASS][77] +2 other tests pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][78] ([Intel XE#1503]) -> [PASS][79] +1 other test pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_lease@lease-invalid-connector:
- shard-dg2-set2: [SKIP][80] -> [PASS][81] +15 other tests pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_lease@lease-invalid-connector.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_lease@lease-invalid-connector.html
* igt@kms_prop_blob@invalid-get-prop:
- shard-dg2-set2: [SKIP][82] ([Intel XE#780]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_prop_blob@invalid-get-prop.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_prop_blob@invalid-get-prop.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [FAIL][84] -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@xe_module_load@reload-no-display.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-exec-after:
- shard-adlp: [DMESG-WARN][86] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-8/igt@xe_pm@s2idle-exec-after.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-9/igt@xe_pm@s2idle-exec-after.html
#### Warnings ####
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][88] ([Intel XE#829]) -> [SKIP][89] ([Intel XE#316])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_big_fb@linear-32bpp-rotate-270.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][90] ([Intel XE#829]) -> [SKIP][91] ([Intel XE#1124]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][92] -> [SKIP][93] ([Intel XE#367])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-dg2-set2: [SKIP][94] ([Intel XE#829]) -> [SKIP][95] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][96] -> [SKIP][97] ([Intel XE#306])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_chamelium_color@degamma.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_chamelium_color@degamma.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][98] ([Intel XE#1178]) -> [SKIP][99] ([Intel XE#2341])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg2-set2: [SKIP][100] -> [SKIP][101] ([Intel XE#455]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_cursor_crc@cursor-random-32x32.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: [SKIP][102] -> [SKIP][103] ([Intel XE#308])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x512.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [SKIP][104] ([Intel XE#2316]) -> [FAIL][105] ([Intel XE#3321])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][106] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-WARN][107] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][108] ([Intel XE#2311]) -> [SKIP][109] ([Intel XE#2312]) +12 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][110] ([Intel XE#783]) -> [SKIP][111] ([Intel XE#651]) +5 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][112] ([Intel XE#5390]) -> [SKIP][113] ([Intel XE#2312]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][114] ([Intel XE#2312]) -> [SKIP][115] ([Intel XE#5390]) +9 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][116] ([Intel XE#2312]) -> [SKIP][117] ([Intel XE#2311]) +13 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][118] ([Intel XE#2312]) -> [SKIP][119] ([Intel XE#2313]) +10 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][120] ([Intel XE#2313]) -> [SKIP][121] ([Intel XE#2312]) +14 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][122] ([Intel XE#783]) -> [SKIP][123] ([Intel XE#653]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][124] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][125] ([Intel XE#3544])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2-set2: [SKIP][126] ([Intel XE#829]) -> [SKIP][127] ([Intel XE#5021])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_plane_multiple@2x-tiling-y.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][128] ([Intel XE#5021]) -> [SKIP][129] ([Intel XE#4596])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][130] -> [SKIP][131] ([Intel XE#870])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][132] ([Intel XE#1406]) -> [SKIP][133] ([Intel XE#1406] / [Intel XE#1489])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@psr-primary-render:
- shard-dg2-set2: [SKIP][134] ([Intel XE#1406]) -> [SKIP][135] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-466/igt@kms_psr@psr-primary-render.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-433/igt@kms_psr@psr-primary-render.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][136] ([Intel XE#362]) -> [FAIL][137] ([Intel XE#1729])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][138] ([Intel XE#2426]) -> [SKIP][139] ([Intel XE#2509])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][140] ([Intel XE#5466]) -> [ABORT][141] ([Intel XE#4917] / [Intel XE#5466])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[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#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[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#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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[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#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
[Intel XE#5337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5337
[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#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5416
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[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#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* Linux: xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165 -> xe-pw-155739v1
IGT_8581: 8581
xe-3897-a83c7590b57a56cfc1f4d9e1c07948643c9ed165: a83c7590b57a56cfc1f4d9e1c07948643c9ed165
xe-pw-155739v1: 155739v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v1/index.html
[-- Attachment #2: Type: text/html, Size: 45440 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ CI.checkpatch: warning for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (7 preceding siblings ...)
2025-10-10 18:23 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-10-13 15:11 ` Patchwork
2025-10-13 15:13 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-13 15:11 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
URL : https://patchwork.freedesktop.org/series/155739/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit b5328b25d63833976b8b38519b370e2568ff3a65
Author: Jani Nikula <jani.nikula@intel.com>
Date: Mon Oct 13 17:45:52 2025 +0300
drm/i915/display: add HAS_AUX_CCS() feature check
We should try to get rid of checks that depend on struct
drm_i915_private (or struct xe_device) in display code. HAS_FLAT_CCS()
is one of them. In the interest of simplicity, add a reversed
HAS_AUX_CCS() feature check macro, as that's we mostly use it for in
display.
v2: include adl-p (Ville)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch 61b16793c3bbb8e740cf9afb36258dee61346626 drm-intel
2e43e4772821 drm/i915: include gen 2 in HAS_128_BYTE_Y_TILING()
-:60: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'i915' - possible side-effects?
#60: FILE: drivers/gpu/drm/i915/i915_drv.h:605:
+#define HAS_128_BYTE_Y_TILING(i915) (!IS_I915G(i915) && !IS_I915GM(i915))
total: 0 errors, 0 warnings, 1 checks, 28 lines checked
e8d53c6ef3c6 drm/i915/display: duplicate 128-byte Y-tiling feature check
-:27: WARNING:LONG_LINE: line length of 103 exceeds 100 columns
#27: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:145:
+#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
-:27: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__display' - possible side-effects?
#27: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:145:
+#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
total: 0 errors, 1 warnings, 1 checks, 28 lines checked
b5328b25d638 drm/i915/display: add HAS_AUX_CCS() feature check
-:24: WARNING:LONG_LINE: line length of 147 exceeds 100 columns
#24: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:147:
+#define HAS_AUX_CCS(__display) (IS_DISPLAY_VER(__display, 9, 12) || (__display)->platform.alderlake_p || (__display)->platform.meteorlake)
-:24: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__display' - possible side-effects?
#24: FILE: drivers/gpu/drm/i915/display/intel_display_device.h:147:
+#define HAS_AUX_CCS(__display) (IS_DISPLAY_VER(__display, 9, 12) || (__display)->platform.alderlake_p || (__display)->platform.meteorlake)
-:68: WARNING:IS_ENABLED_CONFIG: IS_ENABLED(I915) is normally used as IS_ENABLED(CONFIG_I915)
#68: FILE: drivers/gpu/drm/i915/display/skl_universal_plane.c:2933:
+ if (!IS_ENABLED(I915) && HAS_AUX_CCS(display))
total: 0 errors, 2 warnings, 1 checks, 45 lines checked
^ permalink raw reply [flat|nested] 21+ messages in thread* ✓ CI.KUnit: success for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (8 preceding siblings ...)
2025-10-13 15:11 ` ✗ CI.checkpatch: warning for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2) Patchwork
@ 2025-10-13 15:13 ` Patchwork
2025-10-13 15:29 ` ✗ CI.checksparse: warning " Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-13 15:13 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
URL : https://patchwork.freedesktop.org/series/155739/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:11:57] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:12:01] 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
[15:12:32] Starting KUnit Kernel (1/1)...
[15:12:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:12:32] ================== guc_buf (11 subtests) ===================
[15:12:32] [PASSED] test_smallest
[15:12:32] [PASSED] test_largest
[15:12:32] [PASSED] test_granular
[15:12:32] [PASSED] test_unique
[15:12:32] [PASSED] test_overlap
[15:12:32] [PASSED] test_reusable
[15:12:32] [PASSED] test_too_big
[15:12:32] [PASSED] test_flush
[15:12:32] [PASSED] test_lookup
[15:12:32] [PASSED] test_data
[15:12:32] [PASSED] test_class
[15:12:32] ===================== [PASSED] guc_buf =====================
[15:12:32] =================== guc_dbm (7 subtests) ===================
[15:12:32] [PASSED] test_empty
[15:12:32] [PASSED] test_default
[15:12:32] ======================== test_size ========================
[15:12:32] [PASSED] 4
[15:12:32] [PASSED] 8
[15:12:32] [PASSED] 32
[15:12:32] [PASSED] 256
[15:12:32] ==================== [PASSED] test_size ====================
[15:12:32] ======================= test_reuse ========================
[15:12:32] [PASSED] 4
[15:12:32] [PASSED] 8
[15:12:32] [PASSED] 32
[15:12:32] [PASSED] 256
[15:12:32] =================== [PASSED] test_reuse ====================
[15:12:32] =================== test_range_overlap ====================
[15:12:32] [PASSED] 4
[15:12:32] [PASSED] 8
[15:12:32] [PASSED] 32
[15:12:32] [PASSED] 256
[15:12:32] =============== [PASSED] test_range_overlap ================
[15:12:32] =================== test_range_compact ====================
[15:12:32] [PASSED] 4
[15:12:32] [PASSED] 8
[15:12:32] [PASSED] 32
[15:12:32] [PASSED] 256
[15:12:32] =============== [PASSED] test_range_compact ================
[15:12:32] ==================== test_range_spare =====================
[15:12:32] [PASSED] 4
[15:12:32] [PASSED] 8
[15:12:32] [PASSED] 32
[15:12:32] [PASSED] 256
[15:12:32] ================ [PASSED] test_range_spare =================
[15:12:32] ===================== [PASSED] guc_dbm =====================
[15:12:32] =================== guc_idm (6 subtests) ===================
[15:12:32] [PASSED] bad_init
[15:12:32] [PASSED] no_init
[15:12:32] [PASSED] init_fini
[15:12:32] [PASSED] check_used
[15:12:32] [PASSED] check_quota
[15:12:32] [PASSED] check_all
[15:12:32] ===================== [PASSED] guc_idm =====================
[15:12:32] ================== no_relay (3 subtests) ===================
[15:12:32] [PASSED] xe_drops_guc2pf_if_not_ready
[15:12:32] [PASSED] xe_drops_guc2vf_if_not_ready
[15:12:32] [PASSED] xe_rejects_send_if_not_ready
[15:12:32] ==================== [PASSED] no_relay =====================
[15:12:32] ================== pf_relay (14 subtests) ==================
[15:12:32] [PASSED] pf_rejects_guc2pf_too_short
[15:12:32] [PASSED] pf_rejects_guc2pf_too_long
[15:12:32] [PASSED] pf_rejects_guc2pf_no_payload
[15:12:32] [PASSED] pf_fails_no_payload
[15:12:32] [PASSED] pf_fails_bad_origin
[15:12:32] [PASSED] pf_fails_bad_type
[15:12:32] [PASSED] pf_txn_reports_error
[15:12:32] [PASSED] pf_txn_sends_pf2guc
[15:12:32] [PASSED] pf_sends_pf2guc
[15:12:32] [SKIPPED] pf_loopback_nop
[15:12:32] [SKIPPED] pf_loopback_echo
[15:12:32] [SKIPPED] pf_loopback_fail
[15:12:32] [SKIPPED] pf_loopback_busy
[15:12:32] [SKIPPED] pf_loopback_retry
[15:12:32] ==================== [PASSED] pf_relay =====================
[15:12:32] ================== vf_relay (3 subtests) ===================
[15:12:32] [PASSED] vf_rejects_guc2vf_too_short
[15:12:32] [PASSED] vf_rejects_guc2vf_too_long
[15:12:32] [PASSED] vf_rejects_guc2vf_no_payload
[15:12:32] ==================== [PASSED] vf_relay =====================
[15:12:32] ===================== lmtt (1 subtest) =====================
[15:12:32] ======================== test_ops =========================
[15:12:32] [PASSED] 2-level
[15:12:32] [PASSED] multi-level
[15:12:32] ==================== [PASSED] test_ops =====================
[15:12:32] ====================== [PASSED] lmtt =======================
[15:12:32] ================= pf_service (11 subtests) =================
[15:12:32] [PASSED] pf_negotiate_any
[15:12:32] [PASSED] pf_negotiate_base_match
[15:12:32] [PASSED] pf_negotiate_base_newer
[15:12:32] [PASSED] pf_negotiate_base_next
[15:12:32] [SKIPPED] pf_negotiate_base_older
[15:12:32] [PASSED] pf_negotiate_base_prev
[15:12:32] [PASSED] pf_negotiate_latest_match
[15:12:32] [PASSED] pf_negotiate_latest_newer
[15:12:32] [PASSED] pf_negotiate_latest_next
[15:12:32] [SKIPPED] pf_negotiate_latest_older
[15:12:32] [SKIPPED] pf_negotiate_latest_prev
[15:12:32] =================== [PASSED] pf_service ====================
[15:12:32] ================= xe_guc_g2g (2 subtests) ==================
[15:12:32] ============== xe_live_guc_g2g_kunit_default ==============
[15:12:32] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[15:12:32] ============== xe_live_guc_g2g_kunit_allmem ===============
[15:12:32] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[15:12:32] =================== [SKIPPED] xe_guc_g2g ===================
[15:12:32] =================== xe_mocs (2 subtests) ===================
[15:12:32] ================ xe_live_mocs_kernel_kunit ================
[15:12:32] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:12:32] ================ xe_live_mocs_reset_kunit =================
[15:12:32] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:12:32] ==================== [SKIPPED] xe_mocs =====================
[15:12:32] ================= xe_migrate (2 subtests) ==================
[15:12:32] ================= xe_migrate_sanity_kunit =================
[15:12:32] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:12:32] ================== xe_validate_ccs_kunit ==================
[15:12:32] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:12:32] =================== [SKIPPED] xe_migrate ===================
[15:12:32] ================== xe_dma_buf (1 subtest) ==================
[15:12:32] ==================== xe_dma_buf_kunit =====================
[15:12:32] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:12:32] =================== [SKIPPED] xe_dma_buf ===================
[15:12:32] ================= xe_bo_shrink (1 subtest) =================
[15:12:32] =================== xe_bo_shrink_kunit ====================
[15:12:32] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:12:32] ================== [SKIPPED] xe_bo_shrink ==================
[15:12:32] ==================== xe_bo (2 subtests) ====================
[15:12:32] ================== xe_ccs_migrate_kunit ===================
[15:12:32] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:12:32] ==================== xe_bo_evict_kunit ====================
[15:12:32] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:12:32] ===================== [SKIPPED] xe_bo ======================
[15:12:32] ==================== args (11 subtests) ====================
[15:12:32] [PASSED] count_args_test
[15:12:32] [PASSED] call_args_example
[15:12:32] [PASSED] call_args_test
[15:12:32] [PASSED] drop_first_arg_example
[15:12:32] [PASSED] drop_first_arg_test
[15:12:32] [PASSED] first_arg_example
[15:12:32] [PASSED] first_arg_test
[15:12:32] [PASSED] last_arg_example
[15:12:32] [PASSED] last_arg_test
[15:12:32] [PASSED] pick_arg_example
[15:12:32] [PASSED] sep_comma_example
[15:12:32] ====================== [PASSED] args =======================
[15:12:32] =================== xe_pci (3 subtests) ====================
[15:12:32] ==================== check_graphics_ip ====================
[15:12:32] [PASSED] 12.00 Xe_LP
[15:12:32] [PASSED] 12.10 Xe_LP+
[15:12:32] [PASSED] 12.55 Xe_HPG
[15:12:32] [PASSED] 12.60 Xe_HPC
[15:12:32] [PASSED] 12.70 Xe_LPG
[15:12:32] [PASSED] 12.71 Xe_LPG
[15:12:32] [PASSED] 12.74 Xe_LPG+
[15:12:32] [PASSED] 20.01 Xe2_HPG
[15:12:32] [PASSED] 20.02 Xe2_HPG
[15:12:32] [PASSED] 20.04 Xe2_LPG
[15:12:32] [PASSED] 30.00 Xe3_LPG
[15:12:32] [PASSED] 30.01 Xe3_LPG
[15:12:32] [PASSED] 30.03 Xe3_LPG
[15:12:32] ================ [PASSED] check_graphics_ip ================
[15:12:32] ===================== check_media_ip ======================
[15:12:32] [PASSED] 12.00 Xe_M
[15:12:32] [PASSED] 12.55 Xe_HPM
[15:12:32] [PASSED] 13.00 Xe_LPM+
[15:12:32] [PASSED] 13.01 Xe2_HPM
[15:12:32] [PASSED] 20.00 Xe2_LPM
[15:12:32] [PASSED] 30.00 Xe3_LPM
[15:12:32] [PASSED] 30.02 Xe3_LPM
[15:12:32] ================= [PASSED] check_media_ip ==================
[15:12:32] ================= check_platform_gt_count =================
[15:12:32] [PASSED] 0x9A60 (TIGERLAKE)
[15:12:32] [PASSED] 0x9A68 (TIGERLAKE)
[15:12:32] [PASSED] 0x9A70 (TIGERLAKE)
[15:12:32] [PASSED] 0x9A40 (TIGERLAKE)
[15:12:32] [PASSED] 0x9A49 (TIGERLAKE)
[15:12:32] [PASSED] 0x9A59 (TIGERLAKE)
[15:12:32] [PASSED] 0x9A78 (TIGERLAKE)
[15:12:32] [PASSED] 0x9AC0 (TIGERLAKE)
[15:12:32] [PASSED] 0x9AC9 (TIGERLAKE)
[15:12:32] [PASSED] 0x9AD9 (TIGERLAKE)
[15:12:32] [PASSED] 0x9AF8 (TIGERLAKE)
[15:12:32] [PASSED] 0x4C80 (ROCKETLAKE)
[15:12:32] [PASSED] 0x4C8A (ROCKETLAKE)
[15:12:32] [PASSED] 0x4C8B (ROCKETLAKE)
[15:12:32] [PASSED] 0x4C8C (ROCKETLAKE)
[15:12:32] [PASSED] 0x4C90 (ROCKETLAKE)
[15:12:32] [PASSED] 0x4C9A (ROCKETLAKE)
[15:12:32] [PASSED] 0x4680 (ALDERLAKE_S)
[15:12:32] [PASSED] 0x4682 (ALDERLAKE_S)
[15:12:32] [PASSED] 0x4688 (ALDERLAKE_S)
[15:12:32] [PASSED] 0x468A (ALDERLAKE_S)
[15:12:32] [PASSED] 0x468B (ALDERLAKE_S)
[15:12:32] [PASSED] 0x4690 (ALDERLAKE_S)
[15:12:32] [PASSED] 0x4692 (ALDERLAKE_S)
[15:12:32] [PASSED] 0x4693 (ALDERLAKE_S)
[15:12:32] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46AA (ALDERLAKE_P)
[15:12:32] [PASSED] 0x462A (ALDERLAKE_P)
[15:12:32] [PASSED] 0x4626 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x4628 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:12:32] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:12:32] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:12:32] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:12:32] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:12:32] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:12:32] [PASSED] 0xA721 (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA720 (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:12:32] [PASSED] 0xA780 (ALDERLAKE_S)
[15:12:32] [PASSED] 0xA781 (ALDERLAKE_S)
[15:12:32] [PASSED] 0xA782 (ALDERLAKE_S)
[15:12:32] [PASSED] 0xA783 (ALDERLAKE_S)
[15:12:32] [PASSED] 0xA788 (ALDERLAKE_S)
[15:12:32] [PASSED] 0xA789 (ALDERLAKE_S)
[15:12:32] [PASSED] 0xA78A (ALDERLAKE_S)
[15:12:32] [PASSED] 0xA78B (ALDERLAKE_S)
[15:12:32] [PASSED] 0x4905 (DG1)
[15:12:32] [PASSED] 0x4906 (DG1)
[15:12:32] [PASSED] 0x4907 (DG1)
[15:12:32] [PASSED] 0x4908 (DG1)
[15:12:32] [PASSED] 0x4909 (DG1)
[15:12:32] [PASSED] 0x56C0 (DG2)
[15:12:32] [PASSED] 0x56C2 (DG2)
[15:12:32] [PASSED] 0x56C1 (DG2)
[15:12:32] [PASSED] 0x7D51 (METEORLAKE)
[15:12:32] [PASSED] 0x7DD1 (METEORLAKE)
[15:12:32] [PASSED] 0x7D41 (METEORLAKE)
[15:12:32] [PASSED] 0x7D67 (METEORLAKE)
[15:12:32] [PASSED] 0xB640 (METEORLAKE)
[15:12:32] [PASSED] 0x56A0 (DG2)
[15:12:32] [PASSED] 0x56A1 (DG2)
[15:12:32] [PASSED] 0x56A2 (DG2)
[15:12:32] [PASSED] 0x56BE (DG2)
[15:12:32] [PASSED] 0x56BF (DG2)
[15:12:32] [PASSED] 0x5690 (DG2)
[15:12:32] [PASSED] 0x5691 (DG2)
[15:12:32] [PASSED] 0x5692 (DG2)
[15:12:32] [PASSED] 0x56A5 (DG2)
[15:12:32] [PASSED] 0x56A6 (DG2)
[15:12:32] [PASSED] 0x56B0 (DG2)
[15:12:32] [PASSED] 0x56B1 (DG2)
[15:12:32] [PASSED] 0x56BA (DG2)
[15:12:32] [PASSED] 0x56BB (DG2)
[15:12:32] [PASSED] 0x56BC (DG2)
[15:12:32] [PASSED] 0x56BD (DG2)
[15:12:32] [PASSED] 0x5693 (DG2)
[15:12:32] [PASSED] 0x5694 (DG2)
[15:12:32] [PASSED] 0x5695 (DG2)
[15:12:32] [PASSED] 0x56A3 (DG2)
[15:12:32] [PASSED] 0x56A4 (DG2)
[15:12:32] [PASSED] 0x56B2 (DG2)
[15:12:32] [PASSED] 0x56B3 (DG2)
[15:12:32] [PASSED] 0x5696 (DG2)
[15:12:32] [PASSED] 0x5697 (DG2)
[15:12:32] [PASSED] 0xB69 (PVC)
[15:12:32] [PASSED] 0xB6E (PVC)
[15:12:32] [PASSED] 0xBD4 (PVC)
[15:12:32] [PASSED] 0xBD5 (PVC)
[15:12:32] [PASSED] 0xBD6 (PVC)
[15:12:32] [PASSED] 0xBD7 (PVC)
[15:12:32] [PASSED] 0xBD8 (PVC)
[15:12:32] [PASSED] 0xBD9 (PVC)
[15:12:32] [PASSED] 0xBDA (PVC)
[15:12:32] [PASSED] 0xBDB (PVC)
[15:12:32] [PASSED] 0xBE0 (PVC)
[15:12:32] [PASSED] 0xBE1 (PVC)
[15:12:32] [PASSED] 0xBE5 (PVC)
[15:12:32] [PASSED] 0x7D40 (METEORLAKE)
[15:12:32] [PASSED] 0x7D45 (METEORLAKE)
[15:12:32] [PASSED] 0x7D55 (METEORLAKE)
[15:12:32] [PASSED] 0x7D60 (METEORLAKE)
[15:12:32] [PASSED] 0x7DD5 (METEORLAKE)
[15:12:32] [PASSED] 0x6420 (LUNARLAKE)
[15:12:32] [PASSED] 0x64A0 (LUNARLAKE)
[15:12:32] [PASSED] 0x64B0 (LUNARLAKE)
[15:12:32] [PASSED] 0xE202 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE209 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE20B (BATTLEMAGE)
[15:12:32] [PASSED] 0xE20C (BATTLEMAGE)
[15:12:32] [PASSED] 0xE20D (BATTLEMAGE)
[15:12:32] [PASSED] 0xE210 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE211 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE212 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE216 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE220 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE221 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE222 (BATTLEMAGE)
[15:12:32] [PASSED] 0xE223 (BATTLEMAGE)
[15:12:32] [PASSED] 0xB080 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB081 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB082 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB083 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB084 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB085 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB086 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB087 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB08F (PANTHERLAKE)
[15:12:32] [PASSED] 0xB090 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:12:32] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:12:32] [PASSED] 0xFD80 (PANTHERLAKE)
[15:12:32] [PASSED] 0xFD81 (PANTHERLAKE)
[15:12:32] ============= [PASSED] check_platform_gt_count =============
[15:12:32] ===================== [PASSED] xe_pci ======================
[15:12:32] =================== xe_rtp (2 subtests) ====================
[15:12:32] =============== xe_rtp_process_to_sr_tests ================
[15:12:32] [PASSED] coalesce-same-reg
[15:12:32] [PASSED] no-match-no-add
[15:12:32] [PASSED] match-or
[15:12:32] [PASSED] match-or-xfail
[15:12:32] [PASSED] no-match-no-add-multiple-rules
[15:12:32] [PASSED] two-regs-two-entries
[15:12:32] [PASSED] clr-one-set-other
[15:12:32] [PASSED] set-field
[15:12:32] [PASSED] conflict-duplicate
[15:12:32] [PASSED] conflict-not-disjoint
[15:12:32] [PASSED] conflict-reg-type
[15:12:32] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:12:32] ================== xe_rtp_process_tests ===================
[15:12:32] [PASSED] active1
[15:12:32] [PASSED] active2
[15:12:32] [PASSED] active-inactive
[15:12:32] [PASSED] inactive-active
[15:12:32] [PASSED] inactive-1st_or_active-inactive
[15:12:32] [PASSED] inactive-2nd_or_active-inactive
[15:12:32] [PASSED] inactive-last_or_active-inactive
[15:12:32] [PASSED] inactive-no_or_active-inactive
[15:12:32] ============== [PASSED] xe_rtp_process_tests ===============
[15:12:32] ===================== [PASSED] xe_rtp ======================
[15:12:32] ==================== xe_wa (1 subtest) =====================
[15:12:32] ======================== xe_wa_gt =========================
[15:12:32] [PASSED] TIGERLAKE B0
[15:12:32] [PASSED] DG1 A0
[15:12:32] [PASSED] DG1 B0
[15:12:32] [PASSED] ALDERLAKE_S A0
[15:12:32] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[15:12:32] [PASSED] ALDERLAKE_S C0
[15:12:32] [PASSED] ALDERLAKE_S D0
[15:12:32] [PASSED] ALDERLAKE_P A0
[15:12:32] [PASSED] ALDERLAKE_P B0
[15:12:32] [PASSED] ALDERLAKE_P C0
[15:12:32] [PASSED] ALDERLAKE_S RPLS D0
[15:12:32] [PASSED] ALDERLAKE_P RPLU E0
[15:12:32] [PASSED] DG2 G10 C0
[15:12:32] [PASSED] DG2 G11 B1
[15:12:32] [PASSED] DG2 G12 A1
[15:12:32] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:12:32] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:12:32] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[15:12:32] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[15:12:32] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[15:12:32] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[15:12:32] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[15:12:32] ==================== [PASSED] xe_wa_gt =====================
[15:12:32] ====================== [PASSED] xe_wa ======================
[15:12:32] ============================================================
[15:12:32] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[15:12:32] Elapsed time: 35.653s total, 4.476s configuring, 30.811s building, 0.338s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:12:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:12:34] 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
[15:12:59] Starting KUnit Kernel (1/1)...
[15:12:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:12:59] ============ drm_test_pick_cmdline (2 subtests) ============
[15:12:59] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[15:12:59] =============== drm_test_pick_cmdline_named ===============
[15:12:59] [PASSED] NTSC
[15:12:59] [PASSED] NTSC-J
[15:12:59] [PASSED] PAL
[15:12:59] [PASSED] PAL-M
[15:12:59] =========== [PASSED] drm_test_pick_cmdline_named ===========
[15:12:59] ============== [PASSED] drm_test_pick_cmdline ==============
[15:12:59] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:12:59] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:12:59] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:12:59] =========== drm_validate_clone_mode (2 subtests) ===========
[15:12:59] ============== drm_test_check_in_clone_mode ===============
[15:12:59] [PASSED] in_clone_mode
[15:12:59] [PASSED] not_in_clone_mode
[15:12:59] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:12:59] =============== drm_test_check_valid_clones ===============
[15:12:59] [PASSED] not_in_clone_mode
[15:12:59] [PASSED] valid_clone
[15:12:59] [PASSED] invalid_clone
[15:12:59] =========== [PASSED] drm_test_check_valid_clones ===========
[15:12:59] ============= [PASSED] drm_validate_clone_mode =============
[15:12:59] ============= drm_validate_modeset (1 subtest) =============
[15:12:59] [PASSED] drm_test_check_connector_changed_modeset
[15:12:59] ============== [PASSED] drm_validate_modeset ===============
[15:12:59] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:12:59] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:12:59] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:12:59] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:12:59] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:12:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:12:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:12:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:12:59] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:12:59] ============== drm_bridge_alloc (2 subtests) ===============
[15:12:59] [PASSED] drm_test_drm_bridge_alloc_basic
[15:12:59] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:12:59] ================ [PASSED] drm_bridge_alloc =================
[15:12:59] ================== drm_buddy (8 subtests) ==================
[15:12:59] [PASSED] drm_test_buddy_alloc_limit
[15:12:59] [PASSED] drm_test_buddy_alloc_optimistic
[15:12:59] [PASSED] drm_test_buddy_alloc_pessimistic
[15:12:59] [PASSED] drm_test_buddy_alloc_pathological
[15:12:59] [PASSED] drm_test_buddy_alloc_contiguous
[15:12:59] [PASSED] drm_test_buddy_alloc_clear
[15:12:59] [PASSED] drm_test_buddy_alloc_range_bias
[15:12:59] [PASSED] drm_test_buddy_fragmentation_performance
[15:12:59] ==================== [PASSED] drm_buddy ====================
[15:12:59] ============= drm_cmdline_parser (40 subtests) =============
[15:12:59] [PASSED] drm_test_cmdline_force_d_only
[15:12:59] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:12:59] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:12:59] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:12:59] [PASSED] drm_test_cmdline_force_e_only
[15:12:59] [PASSED] drm_test_cmdline_res
[15:12:59] [PASSED] drm_test_cmdline_res_vesa
[15:12:59] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:12:59] [PASSED] drm_test_cmdline_res_rblank
[15:12:59] [PASSED] drm_test_cmdline_res_bpp
[15:12:59] [PASSED] drm_test_cmdline_res_refresh
[15:12:59] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:12:59] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:12:59] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:12:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:12:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:12:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:12:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:12:59] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:12:59] [PASSED] drm_test_cmdline_res_margins_force_on
[15:12:59] [PASSED] drm_test_cmdline_res_vesa_margins
[15:12:59] [PASSED] drm_test_cmdline_name
[15:12:59] [PASSED] drm_test_cmdline_name_bpp
[15:12:59] [PASSED] drm_test_cmdline_name_option
[15:12:59] [PASSED] drm_test_cmdline_name_bpp_option
[15:12:59] [PASSED] drm_test_cmdline_rotate_0
[15:12:59] [PASSED] drm_test_cmdline_rotate_90
[15:12:59] [PASSED] drm_test_cmdline_rotate_180
[15:12:59] [PASSED] drm_test_cmdline_rotate_270
[15:12:59] [PASSED] drm_test_cmdline_hmirror
[15:12:59] [PASSED] drm_test_cmdline_vmirror
[15:12:59] [PASSED] drm_test_cmdline_margin_options
[15:12:59] [PASSED] drm_test_cmdline_multiple_options
[15:12:59] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:12:59] [PASSED] drm_test_cmdline_extra_and_option
[15:12:59] [PASSED] drm_test_cmdline_freestanding_options
[15:12:59] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:12:59] [PASSED] drm_test_cmdline_panel_orientation
[15:12:59] ================ drm_test_cmdline_invalid =================
[15:12:59] [PASSED] margin_only
[15:12:59] [PASSED] interlace_only
[15:12:59] [PASSED] res_missing_x
[15:12:59] [PASSED] res_missing_y
[15:12:59] [PASSED] res_bad_y
[15:12:59] [PASSED] res_missing_y_bpp
[15:12:59] [PASSED] res_bad_bpp
[15:12:59] [PASSED] res_bad_refresh
[15:12:59] [PASSED] res_bpp_refresh_force_on_off
[15:12:59] [PASSED] res_invalid_mode
[15:12:59] [PASSED] res_bpp_wrong_place_mode
[15:12:59] [PASSED] name_bpp_refresh
[15:12:59] [PASSED] name_refresh
[15:12:59] [PASSED] name_refresh_wrong_mode
[15:12:59] [PASSED] name_refresh_invalid_mode
[15:12:59] [PASSED] rotate_multiple
[15:12:59] [PASSED] rotate_invalid_val
[15:12:59] [PASSED] rotate_truncated
[15:12:59] [PASSED] invalid_option
[15:12:59] [PASSED] invalid_tv_option
[15:12:59] [PASSED] truncated_tv_option
[15:12:59] ============ [PASSED] drm_test_cmdline_invalid =============
[15:12:59] =============== drm_test_cmdline_tv_options ===============
[15:12:59] [PASSED] NTSC
[15:12:59] [PASSED] NTSC_443
[15:12:59] [PASSED] NTSC_J
[15:12:59] [PASSED] PAL
[15:12:59] [PASSED] PAL_M
[15:12:59] [PASSED] PAL_N
[15:12:59] [PASSED] SECAM
[15:12:59] [PASSED] MONO_525
[15:12:59] [PASSED] MONO_625
[15:12:59] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:12:59] =============== [PASSED] drm_cmdline_parser ================
[15:12:59] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:12:59] [PASSED] drm_test_connector_hdmi_init_valid
[15:12:59] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:12:59] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:12:59] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:12:59] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:12:59] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:12:59] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:12:59] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:12:59] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:12:59] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:12:59] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:12:59] [PASSED] supported_formats=0x3 yuv420_allowed=1
[15:12:59] [PASSED] supported_formats=0x3 yuv420_allowed=0
[15:12:59] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:12:59] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:12:59] [PASSED] drm_test_connector_hdmi_init_null_product
[15:12:59] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:12:59] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:12:59] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:12:59] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:12:59] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:12:59] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:12:59] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:12:59] ========= drm_test_connector_hdmi_init_type_valid =========
[15:12:59] [PASSED] HDMI-A
[15:12:59] [PASSED] HDMI-B
[15:12:59] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:12:59] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:12:59] [PASSED] Unknown
[15:12:59] [PASSED] VGA
[15:12:59] [PASSED] DVI-I
[15:12:59] [PASSED] DVI-D
[15:12:59] [PASSED] DVI-A
[15:12:59] [PASSED] Composite
[15:12:59] [PASSED] SVIDEO
[15:12:59] [PASSED] LVDS
[15:12:59] [PASSED] Component
[15:12:59] [PASSED] DIN
[15:12:59] [PASSED] DP
[15:12:59] [PASSED] TV
[15:12:59] [PASSED] eDP
[15:12:59] [PASSED] Virtual
[15:12:59] [PASSED] DSI
[15:12:59] [PASSED] DPI
[15:12:59] [PASSED] Writeback
[15:12:59] [PASSED] SPI
[15:12:59] [PASSED] USB
[15:12:59] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:12:59] ============ [PASSED] drmm_connector_hdmi_init =============
[15:12:59] ============= drmm_connector_init (3 subtests) =============
[15:12:59] [PASSED] drm_test_drmm_connector_init
[15:12:59] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:12:59] ========= drm_test_drmm_connector_init_type_valid =========
[15:12:59] [PASSED] Unknown
[15:12:59] [PASSED] VGA
[15:12:59] [PASSED] DVI-I
[15:12:59] [PASSED] DVI-D
[15:12:59] [PASSED] DVI-A
[15:12:59] [PASSED] Composite
[15:12:59] [PASSED] SVIDEO
[15:12:59] [PASSED] LVDS
[15:12:59] [PASSED] Component
[15:12:59] [PASSED] DIN
[15:12:59] [PASSED] DP
[15:12:59] [PASSED] HDMI-A
[15:12:59] [PASSED] HDMI-B
[15:12:59] [PASSED] TV
[15:12:59] [PASSED] eDP
[15:12:59] [PASSED] Virtual
[15:12:59] [PASSED] DSI
[15:12:59] [PASSED] DPI
[15:12:59] [PASSED] Writeback
[15:12:59] [PASSED] SPI
[15:12:59] [PASSED] USB
[15:12:59] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:12:59] =============== [PASSED] drmm_connector_init ===============
[15:12:59] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_init
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:12:59] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[15:12:59] [PASSED] Unknown
[15:12:59] [PASSED] VGA
[15:12:59] [PASSED] DVI-I
[15:12:59] [PASSED] DVI-D
[15:12:59] [PASSED] DVI-A
[15:12:59] [PASSED] Composite
[15:12:59] [PASSED] SVIDEO
[15:12:59] [PASSED] LVDS
[15:12:59] [PASSED] Component
[15:12:59] [PASSED] DIN
[15:12:59] [PASSED] DP
[15:12:59] [PASSED] HDMI-A
[15:12:59] [PASSED] HDMI-B
[15:12:59] [PASSED] TV
[15:12:59] [PASSED] eDP
[15:12:59] [PASSED] Virtual
[15:12:59] [PASSED] DSI
[15:12:59] [PASSED] DPI
[15:12:59] [PASSED] Writeback
[15:12:59] [PASSED] SPI
[15:12:59] [PASSED] USB
[15:12:59] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:12:59] ======== drm_test_drm_connector_dynamic_init_name =========
[15:12:59] [PASSED] Unknown
[15:12:59] [PASSED] VGA
[15:12:59] [PASSED] DVI-I
[15:12:59] [PASSED] DVI-D
[15:12:59] [PASSED] DVI-A
[15:12:59] [PASSED] Composite
[15:12:59] [PASSED] SVIDEO
[15:12:59] [PASSED] LVDS
[15:12:59] [PASSED] Component
[15:12:59] [PASSED] DIN
[15:12:59] [PASSED] DP
[15:12:59] [PASSED] HDMI-A
[15:12:59] [PASSED] HDMI-B
[15:12:59] [PASSED] TV
[15:12:59] [PASSED] eDP
[15:12:59] [PASSED] Virtual
[15:12:59] [PASSED] DSI
[15:12:59] [PASSED] DPI
[15:12:59] [PASSED] Writeback
[15:12:59] [PASSED] SPI
[15:12:59] [PASSED] USB
[15:12:59] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:12:59] =========== [PASSED] drm_connector_dynamic_init ============
[15:12:59] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:12:59] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:12:59] ======= drm_connector_dynamic_register (7 subtests) ========
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:12:59] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:12:59] ========= [PASSED] drm_connector_dynamic_register ==========
[15:12:59] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:12:59] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:12:59] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:12:59] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:12:59] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:12:59] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:12:59] [PASSED] NTSC
[15:12:59] [PASSED] NTSC-443
[15:12:59] [PASSED] NTSC-J
[15:12:59] [PASSED] PAL
[15:12:59] [PASSED] PAL-M
[15:12:59] [PASSED] PAL-N
[15:12:59] [PASSED] SECAM
[15:12:59] [PASSED] Mono
[15:12:59] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:12:59] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:12:59] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:12:59] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:12:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:12:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:12:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:12:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:12:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:12:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:12:59] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:12:59] [PASSED] VIC 96
[15:12:59] [PASSED] VIC 97
[15:12:59] [PASSED] VIC 101
[15:12:59] [PASSED] VIC 102
[15:12:59] [PASSED] VIC 106
[15:12:59] [PASSED] VIC 107
[15:12:59] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:12:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:12:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:12:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:12:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:12:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:12:59] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:12:59] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:12:59] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:12:59] [PASSED] Automatic
[15:12:59] [PASSED] Full
[15:12:59] [PASSED] Limited 16:235
[15:12:59] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:12:59] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:12:59] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:12:59] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:12:59] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:12:59] [PASSED] RGB
[15:12:59] [PASSED] YUV 4:2:0
[15:12:59] [PASSED] YUV 4:2:2
[15:12:59] [PASSED] YUV 4:4:4
[15:12:59] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:12:59] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:12:59] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:12:59] ============= drm_damage_helper (21 subtests) ==============
[15:12:59] [PASSED] drm_test_damage_iter_no_damage
[15:12:59] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:12:59] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:12:59] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:12:59] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:12:59] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:12:59] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:12:59] [PASSED] drm_test_damage_iter_simple_damage
[15:12:59] [PASSED] drm_test_damage_iter_single_damage
[15:12:59] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:12:59] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:12:59] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:12:59] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:12:59] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:12:59] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:12:59] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:12:59] [PASSED] drm_test_damage_iter_damage
[15:12:59] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:12:59] [PASSED] drm_test_damage_iter_damage_one_outside
[15:12:59] [PASSED] drm_test_damage_iter_damage_src_moved
[15:12:59] [PASSED] drm_test_damage_iter_damage_not_visible
[15:12:59] ================ [PASSED] drm_damage_helper ================
[15:12:59] ============== drm_dp_mst_helper (3 subtests) ==============
[15:12:59] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:12:59] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:12:59] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:12:59] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:12:59] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:12:59] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:12:59] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:12:59] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:12:59] [PASSED] Link rate 2000000 lane count 4
[15:12:59] [PASSED] Link rate 2000000 lane count 2
[15:12:59] [PASSED] Link rate 2000000 lane count 1
[15:12:59] [PASSED] Link rate 1350000 lane count 4
[15:12:59] [PASSED] Link rate 1350000 lane count 2
[15:12:59] [PASSED] Link rate 1350000 lane count 1
[15:12:59] [PASSED] Link rate 1000000 lane count 4
[15:12:59] [PASSED] Link rate 1000000 lane count 2
[15:12:59] [PASSED] Link rate 1000000 lane count 1
[15:12:59] [PASSED] Link rate 810000 lane count 4
[15:12:59] [PASSED] Link rate 810000 lane count 2
[15:12:59] [PASSED] Link rate 810000 lane count 1
[15:12:59] [PASSED] Link rate 540000 lane count 4
[15:12:59] [PASSED] Link rate 540000 lane count 2
[15:12:59] [PASSED] Link rate 540000 lane count 1
[15:12:59] [PASSED] Link rate 270000 lane count 4
[15:12:59] [PASSED] Link rate 270000 lane count 2
[15:12:59] [PASSED] Link rate 270000 lane count 1
[15:12:59] [PASSED] Link rate 162000 lane count 4
[15:12:59] [PASSED] Link rate 162000 lane count 2
[15:12:59] [PASSED] Link rate 162000 lane count 1
[15:12:59] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:12:59] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:12:59] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:12:59] [PASSED] DP_POWER_UP_PHY with port number
[15:12:59] [PASSED] DP_POWER_DOWN_PHY with port number
[15:12:59] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:12:59] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:12:59] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:12:59] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:12:59] [PASSED] DP_QUERY_PAYLOAD with port number
[15:12:59] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:12:59] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:12:59] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:12:59] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:12:59] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:12:59] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:12:59] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:12:59] [PASSED] DP_REMOTE_I2C_READ with port number
[15:12:59] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:12:59] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:12:59] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:12:59] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:12:59] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:12:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:12:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:12:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:12:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:12:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:12:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:12:59] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:12:59] ================ [PASSED] drm_dp_mst_helper ================
[15:12:59] ================== drm_exec (7 subtests) ===================
[15:12:59] [PASSED] sanitycheck
[15:12:59] [PASSED] test_lock
[15:12:59] [PASSED] test_lock_unlock
[15:12:59] [PASSED] test_duplicates
[15:12:59] [PASSED] test_prepare
[15:12:59] [PASSED] test_prepare_array
[15:12:59] [PASSED] test_multiple_loops
[15:12:59] ==================== [PASSED] drm_exec =====================
[15:12:59] =========== drm_format_helper_test (17 subtests) ===========
[15:12:59] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:12:59] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:12:59] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:12:59] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:12:59] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:12:59] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:12:59] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:12:59] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:12:59] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:12:59] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:12:59] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:12:59] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:12:59] ==================== drm_test_fb_swab =====================
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ================ [PASSED] drm_test_fb_swab =================
[15:12:59] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:12:59] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:12:59] [PASSED] single_pixel_source_buffer
[15:12:59] [PASSED] single_pixel_clip_rectangle
[15:12:59] [PASSED] well_known_colors
[15:12:59] [PASSED] destination_pitch
[15:12:59] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:12:59] ================= drm_test_fb_clip_offset =================
[15:12:59] [PASSED] pass through
[15:12:59] [PASSED] horizontal offset
[15:12:59] [PASSED] vertical offset
[15:12:59] [PASSED] horizontal and vertical offset
[15:12:59] [PASSED] horizontal offset (custom pitch)
[15:12:59] [PASSED] vertical offset (custom pitch)
[15:12:59] [PASSED] horizontal and vertical offset (custom pitch)
[15:12:59] ============= [PASSED] drm_test_fb_clip_offset =============
[15:12:59] =================== drm_test_fb_memcpy ====================
[15:12:59] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:12:59] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:12:59] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:12:59] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:12:59] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:12:59] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:12:59] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:12:59] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:12:59] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:12:59] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:12:59] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:12:59] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:12:59] =============== [PASSED] drm_test_fb_memcpy ================
[15:12:59] ============= [PASSED] drm_format_helper_test ==============
[15:12:59] ================= drm_format (18 subtests) =================
[15:12:59] [PASSED] drm_test_format_block_width_invalid
[15:12:59] [PASSED] drm_test_format_block_width_one_plane
[15:12:59] [PASSED] drm_test_format_block_width_two_plane
[15:12:59] [PASSED] drm_test_format_block_width_three_plane
[15:12:59] [PASSED] drm_test_format_block_width_tiled
[15:12:59] [PASSED] drm_test_format_block_height_invalid
[15:12:59] [PASSED] drm_test_format_block_height_one_plane
[15:12:59] [PASSED] drm_test_format_block_height_two_plane
[15:12:59] [PASSED] drm_test_format_block_height_three_plane
[15:12:59] [PASSED] drm_test_format_block_height_tiled
[15:12:59] [PASSED] drm_test_format_min_pitch_invalid
[15:12:59] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:12:59] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:12:59] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:12:59] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:12:59] [PASSED] drm_test_format_min_pitch_two_plane
[15:12:59] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:12:59] [PASSED] drm_test_format_min_pitch_tiled
[15:12:59] =================== [PASSED] drm_format ====================
[15:12:59] ============== drm_framebuffer (10 subtests) ===============
[15:12:59] ========== drm_test_framebuffer_check_src_coords ==========
[15:12:59] [PASSED] Success: source fits into fb
[15:12:59] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:12:59] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:12:59] [PASSED] Fail: overflowing fb with source width
[15:12:59] [PASSED] Fail: overflowing fb with source height
[15:12:59] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:12:59] [PASSED] drm_test_framebuffer_cleanup
[15:12:59] =============== drm_test_framebuffer_create ===============
[15:12:59] [PASSED] ABGR8888 normal sizes
[15:12:59] [PASSED] ABGR8888 max sizes
[15:12:59] [PASSED] ABGR8888 pitch greater than min required
[15:12:59] [PASSED] ABGR8888 pitch less than min required
[15:12:59] [PASSED] ABGR8888 Invalid width
[15:12:59] [PASSED] ABGR8888 Invalid buffer handle
[15:12:59] [PASSED] No pixel format
[15:12:59] [PASSED] ABGR8888 Width 0
[15:12:59] [PASSED] ABGR8888 Height 0
[15:12:59] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:12:59] [PASSED] ABGR8888 Large buffer offset
[15:12:59] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:12:59] [PASSED] ABGR8888 Invalid flag
[15:12:59] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:12:59] [PASSED] ABGR8888 Valid buffer modifier
[15:12:59] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:12:59] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:12:59] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:12:59] [PASSED] NV12 Normal sizes
[15:12:59] [PASSED] NV12 Max sizes
[15:12:59] [PASSED] NV12 Invalid pitch
[15:12:59] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:12:59] [PASSED] NV12 different modifier per-plane
[15:12:59] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:12:59] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:12:59] [PASSED] NV12 Modifier for inexistent plane
[15:12:59] [PASSED] NV12 Handle for inexistent plane
[15:12:59] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:12:59] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:12:59] [PASSED] YVU420 Normal sizes
[15:12:59] [PASSED] YVU420 Max sizes
[15:12:59] [PASSED] YVU420 Invalid pitch
[15:12:59] [PASSED] YVU420 Different pitches
[15:12:59] [PASSED] YVU420 Different buffer offsets/pitches
[15:12:59] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:12:59] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:12:59] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:12:59] [PASSED] YVU420 Valid modifier
[15:12:59] [PASSED] YVU420 Different modifiers per plane
[15:12:59] [PASSED] YVU420 Modifier for inexistent plane
[15:12:59] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:12:59] [PASSED] X0L2 Normal sizes
[15:12:59] [PASSED] X0L2 Max sizes
[15:12:59] [PASSED] X0L2 Invalid pitch
[15:12:59] [PASSED] X0L2 Pitch greater than minimum required
[15:12:59] [PASSED] X0L2 Handle for inexistent plane
[15:12:59] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:12:59] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:12:59] [PASSED] X0L2 Valid modifier
[15:12:59] [PASSED] X0L2 Modifier for inexistent plane
[15:12:59] =========== [PASSED] drm_test_framebuffer_create ===========
[15:12:59] [PASSED] drm_test_framebuffer_free
[15:12:59] [PASSED] drm_test_framebuffer_init
[15:12:59] [PASSED] drm_test_framebuffer_init_bad_format
[15:12:59] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:12:59] [PASSED] drm_test_framebuffer_lookup
[15:12:59] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:12:59] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:12:59] ================= [PASSED] drm_framebuffer =================
[15:12:59] ================ drm_gem_shmem (8 subtests) ================
[15:12:59] [PASSED] drm_gem_shmem_test_obj_create
[15:12:59] [PASSED] drm_gem_shmem_test_obj_create_private
[15:12:59] [PASSED] drm_gem_shmem_test_pin_pages
[15:12:59] [PASSED] drm_gem_shmem_test_vmap
[15:12:59] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:12:59] [PASSED] drm_gem_shmem_test_get_sg_table
[15:12:59] [PASSED] drm_gem_shmem_test_madvise
[15:12:59] [PASSED] drm_gem_shmem_test_purge
[15:12:59] ================== [PASSED] drm_gem_shmem ==================
[15:12:59] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:12:59] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[15:12:59] [PASSED] Automatic
[15:12:59] [PASSED] Full
[15:12:59] [PASSED] Limited 16:235
[15:12:59] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:12:59] [PASSED] drm_test_check_disable_connector
[15:12:59] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:12:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:12:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:12:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:12:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:12:59] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:12:59] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:12:59] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:12:59] [PASSED] drm_test_check_output_bpc_dvi
[15:12:59] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:12:59] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:12:59] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:12:59] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:12:59] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:12:59] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:12:59] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:12:59] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:12:59] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:12:59] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:12:59] [PASSED] drm_test_check_broadcast_rgb_value
[15:12:59] [PASSED] drm_test_check_bpc_8_value
[15:12:59] [PASSED] drm_test_check_bpc_10_value
[15:12:59] [PASSED] drm_test_check_bpc_12_value
[15:12:59] [PASSED] drm_test_check_format_value
[15:12:59] [PASSED] drm_test_check_tmds_char_value
[15:12:59] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:12:59] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:12:59] [PASSED] drm_test_check_mode_valid
[15:12:59] [PASSED] drm_test_check_mode_valid_reject
[15:12:59] [PASSED] drm_test_check_mode_valid_reject_rate
[15:12:59] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:12:59] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:12:59] ================= drm_managed (2 subtests) =================
[15:12:59] [PASSED] drm_test_managed_release_action
[15:12:59] [PASSED] drm_test_managed_run_action
[15:12:59] =================== [PASSED] drm_managed ===================
[15:12:59] =================== drm_mm (6 subtests) ====================
[15:12:59] [PASSED] drm_test_mm_init
[15:12:59] [PASSED] drm_test_mm_debug
[15:12:59] [PASSED] drm_test_mm_align32
[15:12:59] [PASSED] drm_test_mm_align64
[15:12:59] [PASSED] drm_test_mm_lowest
[15:12:59] [PASSED] drm_test_mm_highest
[15:12:59] ===================== [PASSED] drm_mm ======================
[15:12:59] ============= drm_modes_analog_tv (5 subtests) =============
[15:12:59] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:12:59] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:12:59] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:12:59] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:12:59] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:12:59] =============== [PASSED] drm_modes_analog_tv ===============
[15:12:59] ============== drm_plane_helper (2 subtests) ===============
[15:12:59] =============== drm_test_check_plane_state ================
[15:12:59] [PASSED] clipping_simple
[15:12:59] [PASSED] clipping_rotate_reflect
[15:12:59] [PASSED] positioning_simple
[15:12:59] [PASSED] upscaling
[15:12:59] [PASSED] downscaling
[15:12:59] [PASSED] rounding1
[15:12:59] [PASSED] rounding2
[15:12:59] [PASSED] rounding3
[15:12:59] [PASSED] rounding4
[15:12:59] =========== [PASSED] drm_test_check_plane_state ============
[15:12:59] =========== drm_test_check_invalid_plane_state ============
[15:12:59] [PASSED] positioning_invalid
[15:12:59] [PASSED] upscaling_invalid
[15:12:59] [PASSED] downscaling_invalid
[15:12:59] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:12:59] ================ [PASSED] drm_plane_helper =================
[15:12:59] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:12:59] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:12:59] [PASSED] None
[15:12:59] [PASSED] PAL
[15:12:59] [PASSED] NTSC
[15:12:59] [PASSED] Both, NTSC Default
[15:12:59] [PASSED] Both, PAL Default
[15:12:59] [PASSED] Both, NTSC Default, with PAL on command-line
[15:12:59] [PASSED] Both, PAL Default, with NTSC on command-line
[15:12:59] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:12:59] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:12:59] ================== drm_rect (9 subtests) ===================
[15:12:59] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:12:59] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:12:59] [PASSED] drm_test_rect_clip_scaled_clipped
[15:12:59] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:12:59] ================= drm_test_rect_intersect =================
[15:12:59] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:12:59] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:12:59] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:12:59] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:12:59] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:12:59] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:12:59] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:12:59] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:12:59] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:12:59] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:12:59] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:12:59] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:12:59] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:12:59] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:12:59] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:12:59] ============= [PASSED] drm_test_rect_intersect =============
[15:12:59] ================ drm_test_rect_calc_hscale ================
[15:12:59] [PASSED] normal use
[15:12:59] [PASSED] out of max range
[15:12:59] [PASSED] out of min range
[15:12:59] [PASSED] zero dst
[15:12:59] [PASSED] negative src
[15:12:59] [PASSED] negative dst
[15:12:59] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:12:59] ================ drm_test_rect_calc_vscale ================
[15:12:59] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[15:12:59] [PASSED] out of max range
[15:12:59] [PASSED] out of min range
[15:12:59] [PASSED] zero dst
[15:12:59] [PASSED] negative src
[15:12:59] [PASSED] negative dst
[15:12:59] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:12:59] ================== drm_test_rect_rotate ===================
[15:12:59] [PASSED] reflect-x
[15:12:59] [PASSED] reflect-y
[15:12:59] [PASSED] rotate-0
[15:12:59] [PASSED] rotate-90
[15:12:59] [PASSED] rotate-180
[15:12:59] [PASSED] rotate-270
[15:12:59] ============== [PASSED] drm_test_rect_rotate ===============
[15:12:59] ================ drm_test_rect_rotate_inv =================
[15:12:59] [PASSED] reflect-x
[15:12:59] [PASSED] reflect-y
[15:12:59] [PASSED] rotate-0
[15:12:59] [PASSED] rotate-90
[15:12:59] [PASSED] rotate-180
[15:12:59] [PASSED] rotate-270
[15:12:59] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:12:59] ==================== [PASSED] drm_rect =====================
[15:12:59] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:12:59] ============ drm_test_sysfb_build_fourcc_list =============
[15:12:59] [PASSED] no native formats
[15:12:59] [PASSED] XRGB8888 as native format
[15:12:59] [PASSED] remove duplicates
[15:12:59] [PASSED] convert alpha formats
[15:12:59] [PASSED] random formats
[15:12:59] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:12:59] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:12:59] ============================================================
[15:12:59] Testing complete. Ran 622 tests: passed: 622
[15:12:59] Elapsed time: 26.914s total, 1.732s configuring, 24.766s building, 0.373s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:12:59] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:13:01] 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
[15:13:11] Starting KUnit Kernel (1/1)...
[15:13:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:13:11] ================= ttm_device (5 subtests) ==================
[15:13:11] [PASSED] ttm_device_init_basic
[15:13:11] [PASSED] ttm_device_init_multiple
[15:13:11] [PASSED] ttm_device_fini_basic
[15:13:11] [PASSED] ttm_device_init_no_vma_man
[15:13:11] ================== ttm_device_init_pools ==================
[15:13:11] [PASSED] No DMA allocations, no DMA32 required
[15:13:11] [PASSED] DMA allocations, DMA32 required
[15:13:11] [PASSED] No DMA allocations, DMA32 required
[15:13:11] [PASSED] DMA allocations, no DMA32 required
[15:13:11] ============== [PASSED] ttm_device_init_pools ==============
[15:13:11] =================== [PASSED] ttm_device ====================
[15:13:11] ================== ttm_pool (8 subtests) ===================
[15:13:11] ================== ttm_pool_alloc_basic ===================
[15:13:11] [PASSED] One page
[15:13:11] [PASSED] More than one page
[15:13:11] [PASSED] Above the allocation limit
[15:13:11] [PASSED] One page, with coherent DMA mappings enabled
[15:13:11] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:13:11] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:13:11] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:13:11] [PASSED] One page
[15:13:11] [PASSED] More than one page
[15:13:11] [PASSED] Above the allocation limit
[15:13:11] [PASSED] One page, with coherent DMA mappings enabled
[15:13:11] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:13:11] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:13:11] [PASSED] ttm_pool_alloc_order_caching_match
[15:13:11] [PASSED] ttm_pool_alloc_caching_mismatch
[15:13:11] [PASSED] ttm_pool_alloc_order_mismatch
[15:13:11] [PASSED] ttm_pool_free_dma_alloc
[15:13:11] [PASSED] ttm_pool_free_no_dma_alloc
[15:13:11] [PASSED] ttm_pool_fini_basic
[15:13:11] ==================== [PASSED] ttm_pool =====================
[15:13:11] ================ ttm_resource (8 subtests) =================
[15:13:11] ================= ttm_resource_init_basic =================
[15:13:11] [PASSED] Init resource in TTM_PL_SYSTEM
[15:13:11] [PASSED] Init resource in TTM_PL_VRAM
[15:13:11] [PASSED] Init resource in a private placement
[15:13:11] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:13:11] ============= [PASSED] ttm_resource_init_basic =============
[15:13:11] [PASSED] ttm_resource_init_pinned
[15:13:11] [PASSED] ttm_resource_fini_basic
[15:13:11] [PASSED] ttm_resource_manager_init_basic
[15:13:11] [PASSED] ttm_resource_manager_usage_basic
[15:13:11] [PASSED] ttm_resource_manager_set_used_basic
[15:13:11] [PASSED] ttm_sys_man_alloc_basic
[15:13:11] [PASSED] ttm_sys_man_free_basic
[15:13:11] ================== [PASSED] ttm_resource ===================
[15:13:11] =================== ttm_tt (15 subtests) ===================
[15:13:11] ==================== ttm_tt_init_basic ====================
[15:13:11] [PASSED] Page-aligned size
[15:13:11] [PASSED] Extra pages requested
[15:13:11] ================ [PASSED] ttm_tt_init_basic ================
[15:13:11] [PASSED] ttm_tt_init_misaligned
[15:13:11] [PASSED] ttm_tt_fini_basic
[15:13:11] [PASSED] ttm_tt_fini_sg
[15:13:11] [PASSED] ttm_tt_fini_shmem
[15:13:11] [PASSED] ttm_tt_create_basic
[15:13:11] [PASSED] ttm_tt_create_invalid_bo_type
[15:13:11] [PASSED] ttm_tt_create_ttm_exists
[15:13:11] [PASSED] ttm_tt_create_failed
[15:13:11] [PASSED] ttm_tt_destroy_basic
[15:13:11] [PASSED] ttm_tt_populate_null_ttm
[15:13:11] [PASSED] ttm_tt_populate_populated_ttm
[15:13:11] [PASSED] ttm_tt_unpopulate_basic
[15:13:11] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:13:11] [PASSED] ttm_tt_swapin_basic
[15:13:11] ===================== [PASSED] ttm_tt ======================
[15:13:11] =================== ttm_bo (14 subtests) ===================
[15:13:11] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[15:13:11] [PASSED] Cannot be interrupted and sleeps
[15:13:11] [PASSED] Cannot be interrupted, locks straight away
[15:13:11] [PASSED] Can be interrupted, sleeps
[15:13:11] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:13:11] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:13:11] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:13:11] [PASSED] ttm_bo_reserve_double_resv
[15:13:11] [PASSED] ttm_bo_reserve_interrupted
[15:13:11] [PASSED] ttm_bo_reserve_deadlock
[15:13:11] [PASSED] ttm_bo_unreserve_basic
[15:13:11] [PASSED] ttm_bo_unreserve_pinned
[15:13:11] [PASSED] ttm_bo_unreserve_bulk
[15:13:11] [PASSED] ttm_bo_fini_basic
[15:13:11] [PASSED] ttm_bo_fini_shared_resv
[15:13:11] [PASSED] ttm_bo_pin_basic
[15:13:11] [PASSED] ttm_bo_pin_unpin_resource
[15:13:11] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:13:11] ===================== [PASSED] ttm_bo ======================
[15:13:11] ============== ttm_bo_validate (21 subtests) ===============
[15:13:11] ============== ttm_bo_init_reserved_sys_man ===============
[15:13:11] [PASSED] Buffer object for userspace
[15:13:11] [PASSED] Kernel buffer object
[15:13:11] [PASSED] Shared buffer object
[15:13:11] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:13:11] ============== ttm_bo_init_reserved_mock_man ==============
[15:13:11] [PASSED] Buffer object for userspace
[15:13:11] [PASSED] Kernel buffer object
[15:13:11] [PASSED] Shared buffer object
[15:13:11] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:13:11] [PASSED] ttm_bo_init_reserved_resv
[15:13:11] ================== ttm_bo_validate_basic ==================
[15:13:11] [PASSED] Buffer object for userspace
[15:13:11] [PASSED] Kernel buffer object
[15:13:11] [PASSED] Shared buffer object
[15:13:11] ============== [PASSED] ttm_bo_validate_basic ==============
[15:13:11] [PASSED] ttm_bo_validate_invalid_placement
[15:13:11] ============= ttm_bo_validate_same_placement ==============
[15:13:11] [PASSED] System manager
[15:13:11] [PASSED] VRAM manager
[15:13:11] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:13:11] [PASSED] ttm_bo_validate_failed_alloc
[15:13:11] [PASSED] ttm_bo_validate_pinned
[15:13:11] [PASSED] ttm_bo_validate_busy_placement
[15:13:11] ================ ttm_bo_validate_multihop =================
[15:13:11] [PASSED] Buffer object for userspace
[15:13:11] [PASSED] Kernel buffer object
[15:13:11] [PASSED] Shared buffer object
[15:13:11] ============ [PASSED] ttm_bo_validate_multihop =============
[15:13:11] ========== ttm_bo_validate_no_placement_signaled ==========
[15:13:11] [PASSED] Buffer object in system domain, no page vector
[15:13:11] [PASSED] Buffer object in system domain with an existing page vector
[15:13:11] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:13:11] ======== ttm_bo_validate_no_placement_not_signaled ========
[15:13:11] [PASSED] Buffer object for userspace
[15:13:11] [PASSED] Kernel buffer object
[15:13:11] [PASSED] Shared buffer object
[15:13:11] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:13:11] [PASSED] ttm_bo_validate_move_fence_signaled
[15:13:11] ========= ttm_bo_validate_move_fence_not_signaled =========
[15:13:11] [PASSED] Waits for GPU
[15:13:11] [PASSED] Tries to lock straight away
[15:13:11] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:13:11] [PASSED] ttm_bo_validate_happy_evict
[15:13:11] [PASSED] ttm_bo_validate_all_pinned_evict
[15:13:11] [PASSED] ttm_bo_validate_allowed_only_evict
[15:13:11] [PASSED] ttm_bo_validate_deleted_evict
[15:13:11] [PASSED] ttm_bo_validate_busy_domain_evict
[15:13:11] [PASSED] ttm_bo_validate_evict_gutting
[15:13:11] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[15:13:11] ================= [PASSED] ttm_bo_validate =================
[15:13:11] ============================================================
[15:13:11] Testing complete. Ran 101 tests: passed: 101
[15:13:11] Elapsed time: 11.422s total, 1.672s configuring, 9.483s building, 0.227s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ CI.checksparse: warning for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (9 preceding siblings ...)
2025-10-13 15:13 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-13 15:29 ` Patchwork
2025-10-13 16:04 ` ✓ Xe.CI.BAT: success " Patchwork
2025-10-13 17:51 ` ✗ Xe.CI.Full: failure " Patchwork
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-13 15:29 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
URL : https://patchwork.freedesktop.org/series/155739/
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 61b16793c3bbb8e740cf9afb36258dee61346626
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
+drivers/gpu/drm/i915/gt/intel_reset.c:1569:12: warning: context imbalance in '_intel_gt_reset_lock' - different lock contexts for basic block
+drivers/gpu/drm/i915/gt/intel_sseu.c:598:17: error: too long token expansion
+drivers/gpu/drm/i915/i915_active.c:1062:16: warning: context imbalance in '__i915_active_fence_set' - different lock contexts for basic block
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: error: incompatible types in comparison expression (different address spaces):
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: expected struct list_head const *list
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: got struct list_head [noderef] __rcu *pos
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: struct list_head [noderef] __rcu *
+drivers/gpu/drm/i915/i915_drm_client.c:92:9: warning: incorrect type in argument 1 (different address spaces)
+drivers/gpu/drm/i915/i915_gpu_error.c:692:3: warning: symbol 'guc_hw_reg_state' was not declared. Should it be static?
+drivers/gpu/drm/i915/i915_irq.c:465:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:465:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:473:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:473:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:478:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:516:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:516:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:524:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:524:16: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:529:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:573:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:573:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:576:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:576:15: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:580:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:580:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/i915_irq.c:587:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/intel_wakeref.c:146:19: warning: context imbalance in 'wakeref_auto_timeout' - unexpected unlock
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread* ✓ Xe.CI.BAT: success for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (10 preceding siblings ...)
2025-10-13 15:29 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-10-13 16:04 ` Patchwork
2025-10-13 17:51 ` ✗ Xe.CI.Full: failure " Patchwork
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-13 16:04 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 893 bytes --]
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
URL : https://patchwork.freedesktop.org/series/155739/
State : success
== Summary ==
CI Bug Log - changes from xe-3907-2616f0b6323b19231220951e777f3a9f393011e9_BAT -> xe-pw-155739v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3907-2616f0b6323b19231220951e777f3a9f393011e9 -> xe-pw-155739v2
IGT_8582: 8582
xe-3907-2616f0b6323b19231220951e777f3a9f393011e9: 2616f0b6323b19231220951e777f3a9f393011e9
xe-pw-155739v2: 155739v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/index.html
[-- Attachment #2: Type: text/html, Size: 1441 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ Xe.CI.Full: failure for drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
2025-10-10 11:07 [PATCH 0/3] drm/i915/display: 128-byte Y-tiling and flat CCS feature checks Jani Nikula
` (11 preceding siblings ...)
2025-10-13 16:04 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-10-13 17:51 ` Patchwork
12 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-13 17:51 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 70231 bytes --]
== Series Details ==
Series: drm/i915/display: 128-byte Y-tiling and flat CCS feature checks (rev2)
URL : https://patchwork.freedesktop.org/series/155739/
State : failure
== Summary ==
CI Bug Log - changes from xe-3907-2616f0b6323b19231220951e777f3a9f393011e9_FULL -> xe-pw-155739v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-155739v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-155739v2_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-155739v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_edge_walk@256x256-right-edge:
- shard-bmg: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-right-edge.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-right-edge.html
New tests
---------
New tests have been introduced between xe-3907-2616f0b6323b19231220951e777f3a9f393011e9_FULL and xe-pw-155739v2_FULL:
### New IGT tests (1) ###
* igt@kms_atomic@crtc-invalid-params@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.95] s
Known issues
------------
Here are the changes found in xe-pw-155739v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
- shard-adlp: NOTRUN -> [DMESG-WARN][3] ([Intel XE#4543]) +17 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +9 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][5] ([Intel XE#316]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +5 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][8] ([Intel XE#2191]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][12] ([Intel XE#455] / [Intel XE#787]) +37 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#787]) +56 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#2907]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][16] ([Intel XE#3862]) +1 other test incomplete
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#3442])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][19] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) +1 other test incomplete
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#6168])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][24] -> [DMESG-WARN][25] ([Intel XE#1727] / [Intel XE#3113])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#4418])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2724]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#306]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2325])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#373]) +12 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2252]) +6 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#307])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_content_protection@dp-mst-type-0.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-155739v2/shard-bmg-8/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-256x256:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#2320])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x256.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x256.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2321]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#308]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#309]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2291]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2291])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][43] -> [FAIL][44] ([Intel XE#5299])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#1340])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#4354])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#4356])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2244])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#776])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#1138])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2316]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2316])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#310]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-adlp: NOTRUN -> [DMESG-WARN][58] ([Intel XE#4543] / [Intel XE#5208]) +1 other test dmesg-warn
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@plain-flip-ts-check:
- shard-adlp: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#4543]) +1 other test dmesg-warn
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-adlp-2/igt@kms_flip@plain-flip-ts-check.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#651]) +12 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [DMESG-FAIL][66] ([Intel XE#4543]) +3 other tests dmesg-fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#5390]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#1151])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2311]) +8 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2312]) +11 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#653]) +16 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#656]) +44 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2313]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2352])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_hdr@static-toggle:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1503])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2927])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#3012]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#2925])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#356])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-adlp: NOTRUN -> [FAIL][80] ([Intel XE#5195]) +4 other tests fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane_cursor@viewport:
- shard-adlp: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-adlp-1/igt@kms_plane_cursor@viewport.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#4596])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#5021])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#5020])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_pm_dc@dc5-psr:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#1129])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#2007])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1439] / [Intel XE#836])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +14 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2330])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#3414]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#455]) +24 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2413])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1435])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-adlp: NOTRUN -> [SKIP][100] ([Intel XE#362]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@cmrr:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#2168])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@kms_vrr@cmrr.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#1499])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_compute_preempt@compute-preempt-many-all-ram:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#455] / [Intel XE#5632])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][104] ([Intel XE#1123]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_create@create-big-vram:
- shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#1062])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2504])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#944]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@non-blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][108] ([Intel XE#5626])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@xe_eu_stall@non-blocking-re-enable.html
* igt@xe_eudebug_online@interrupt-other:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#4837]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@xe_eudebug_online@interrupt-other.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#4837] / [Intel XE#5565]) +15 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#4519])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#261]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#261] / [Intel XE#688])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#6321])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-cm:
- shard-adlp: NOTRUN -> [SKIP][117] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_evict@evict-small-cm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#688]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
- shard-adlp: NOTRUN -> [SKIP][119] ([Intel XE#1392] / [Intel XE#5575]) +10 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2322]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#288] / [Intel XE#5561]) +30 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-adlp: NOTRUN -> [SKIP][122] ([Intel XE#2360])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: NOTRUN -> [DMESG-FAIL][123] ([Intel XE#3868])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_exec_reset@cm-cat-error.html
* igt@xe_exec_system_allocator@once-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#4943]) +12 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@xe_exec_system_allocator@once-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset:
- shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#4915]) +309 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset.html
* igt@xe_exec_threads@threads-bal-mixed-fd-rebind:
- shard-bmg: [PASS][126] -> [DMESG-WARN][127] ([Intel XE#3428]) +8 other tests dmesg-warn
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-7/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html
* igt@xe_mmap@pci-membarrier-bad-pagesize:
- shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#5100])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_mmap@pci-membarrier-bad-pagesize.html
* igt@xe_mmap@vram:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#1008] / [Intel XE#5591])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_mmap@vram.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][130] -> [DMESG-WARN][131] ([Intel XE#3428] / [Intel XE#5244])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-7/igt@xe_module_load@many-reload.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@xe_module_load@many-reload.html
* igt@xe_oa@create-destroy-userspace-config:
- shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#3573]) +9 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_oa@create-destroy-userspace-config.html
* igt@xe_peer2peer@write:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#1061] / [Intel XE#5568])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-system:
- shard-adlp: NOTRUN -> [SKIP][134] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_pm@d3cold-mmap-system.html
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2284])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#1948])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pmu@gt-frequency:
- shard-lnl: [PASS][137] -> [FAIL][138] ([Intel XE#5166]) +1 other test fail
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-lnl-3/igt@xe_pmu@gt-frequency.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-lnl-2/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-adlp: NOTRUN -> [SKIP][139] ([Intel XE#4733])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#4733]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-adlp: NOTRUN -> [SKIP][141] ([Intel XE#4733] / [Intel XE#5594]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-2/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#944]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#4814] / [Intel XE#5614])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-8/igt@xe_render_copy@render-stress-2-copies.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][144] ([Intel XE#4912]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-436/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-4.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-464/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-4.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][146] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][147] +1 other test pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][148] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-alpha-transparent:
- shard-bmg: [SKIP][150] ([Intel XE#2320]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@kms_cursor_crc@cursor-alpha-transparent.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@kms_cursor_crc@cursor-alpha-transparent.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [SKIP][152] ([Intel XE#2291]) -> [PASS][153] +4 other tests pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][154] ([Intel XE#2316]) -> [PASS][155] +5 other tests pass
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][156] ([Intel XE#301]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][158] ([Intel XE#4543]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-adlp-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][160] ([Intel XE#1503]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@kms_hdr@static-swap.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-force-big-joiner@single:
- shard-bmg: [DMESG-WARN][162] ([Intel XE#3428]) -> [PASS][163] +5 other tests pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner@single.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner@single.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][164] ([Intel XE#3012]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [SKIP][166] ([Intel XE#4596]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][168] ([Intel XE#1435]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vblank@wait-forked-busy@pipe-a-dp-2:
- shard-bmg: [FAIL][170] -> [PASS][171] +2 other tests pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@kms_vblank@wait-forked-busy@pipe-a-dp-2.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@kms_vblank@wait-forked-busy@pipe-a-dp-2.html
* {igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1}:
- shard-bmg: [DMESG-WARN][172] ([Intel XE#3876]) -> [PASS][173] +1 other test pass
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][175] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][176] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [INCOMPLETE][177] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][178] ([Intel XE#1178]) -> [SKIP][179] ([Intel XE#2341])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@kms_content_protection@legacy.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][180] ([Intel XE#2341]) -> [FAIL][181] ([Intel XE#1188])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_content_protection@uevent.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][182] ([Intel XE#2312]) -> [SKIP][183] ([Intel XE#2311]) +13 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][184] ([Intel XE#2312]) -> [SKIP][185] ([Intel XE#5390]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][186] ([Intel XE#5390]) -> [SKIP][187] ([Intel XE#2312]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][188] ([Intel XE#2311]) -> [SKIP][189] ([Intel XE#2312]) +7 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][190] ([Intel XE#2312]) -> [SKIP][191] ([Intel XE#2313]) +13 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][192] ([Intel XE#2313]) -> [SKIP][193] ([Intel XE#2312]) +9 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][194] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][195] ([Intel XE#3544])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][196] ([Intel XE#2426]) -> [FAIL][197] ([Intel XE#1729])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [FAIL][198] ([Intel XE#1729]) -> [SKIP][199] ([Intel XE#362])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-adlp: [ABORT][200] ([Intel XE#4917] / [Intel XE#5530]) -> [ABORT][201] ([Intel XE#5530])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][202], [PASS][203], [PASS][204], [PASS][205], [DMESG-WARN][206], [PASS][207], [DMESG-WARN][208], [DMESG-WARN][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [SKIP][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227]) ([Intel XE#2457] / [Intel XE#3428]) -> ([PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [SKIP][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253]) ([Intel XE#2457])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-5/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-3/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-3/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-6/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-8/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-8/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-8/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-1/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-7/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-7/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-4/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-5/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-5/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-2/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-2/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-bmg-2/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-2/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-7/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-3/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-2/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-2/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-2/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-4/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-1/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-5/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-5/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-5/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-8/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-3/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-3/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-bmg-6/igt@xe_module_load@load.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [DMESG-FAIL][254] ([Intel XE#3868] / [Intel XE#5213] / [Intel XE#5545]) -> [DMESG-FAIL][255] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3907-2616f0b6323b19231220951e777f3a9f393011e9/shard-adlp-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/shard-adlp-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[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#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[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#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[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#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[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#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5568
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5632]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5632
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6313
[Intel XE#6320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6320
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6326
[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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3907-2616f0b6323b19231220951e777f3a9f393011e9 -> xe-pw-155739v2
IGT_8582: 8582
xe-3907-2616f0b6323b19231220951e777f3a9f393011e9: 2616f0b6323b19231220951e777f3a9f393011e9
xe-pw-155739v2: 155739v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155739v2/index.html
[-- Attachment #2: Type: text/html, Size: 80675 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread